[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Are you willing to contribute to this issue?** [Yes/No]\n\n**Desktop (please complete the following information):**\n - OS: [e.g. iOS]\n - Browser [e.g. chrome, safari]\n - Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n - Device: [e.g. iPhone6]\n - OS: [e.g. iOS8.1]\n - Browser [e.g. stock browser, safari]\n - Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Are you willing to contribute to this issue?** [Yes/No]\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "## Description\n- List out your changes\n- Link the Issue which this resolves\n\n## Affected Dependencies\n\n\n## How has this been tested?\n\n## GIF Before\n- If any UI Changes, Use [this](https://www.screentogif.com/) to record or else specify NA\n\n## GIF After\n\n## Checklist\n- [ ] I have followed the [Contribution Guidelines](https://github.com/Praful932/Kitabe/blob/master/CONTRIBUTING.md).\n- [ ] My changes do not edit/add any unrequired files.\n- [ ] My changes are covered by tests.\n\n"
  },
  {
    "path": ".github/workflows/tests.yml",
    "content": "# This is a basic workflow to help you get started with Actions\nname: Tests\n# Controls when the action will run.\non:\n  # Triggers the workflow on all branches\n  push:\n    branches: '*'\n  pull_request:\n    branches: '*'\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n  # This workflow contains a single job called \"build\"\n  build:\n    # The type of runner that the job will run on\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        python-version: ['3.8.6']\n\n    # Steps represent a sequence of tasks that will be executed as part of the job\n    steps:\n      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\n      - uses: actions/checkout@v2\n\n\n      - name: Set up Python 🐍 ${{ matrix.python-version }}\n        uses: actions/setup-python@v2\n        with:\n          python-version: ${{ matrix.python-version }}\n\n\n      - name: Install dependencies\n        run: |\n          curl -sSL https://install.python-poetry.org | python3 -\n          poetry export -f requirements.txt --output requirements.txt --without-hashes\n          pip install -r requirements.txt\n\n      - name: Run Lint and Unit Tests ⚒\n        env:\n          KITABE_SECRET_KEY: \"RANDOM_KEY\"\n        run: |\n          pre-commit run --all-files\n          python manage.py collectstatic --no-input\n          python manage.py test\n"
  },
  {
    "path": ".gitignore",
    "content": "bookenv/\n.vscode\n# colllect static output\nstaticfiles/\n\n# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\npip-wheel-metadata/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "exclude: 'wip'\nrepos:\n- repo: https://github.com/ambv/black\n  rev: 22.3.0\n  hooks:\n    - id: black\n      name: black-py\n- repo: https://github.com/asottile/pyupgrade\n  rev: v2.32.0\n  hooks:\n  -   id: pyupgrade\n      name: pyupgrade-py"
  },
  {
    "path": "BookRecSystem/__init__.py",
    "content": ""
  },
  {
    "path": "BookRecSystem/asgi.py",
    "content": "\"\"\"\nASGI config for BookRecSystem project.\n\nIt exposes the ASGI callable as a module-level variable named ``application``.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/3.1/howto/deployment/asgi/\n\"\"\"\n\nimport os\n\nfrom django.core.asgi import get_asgi_application\n\nos.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"BookRecSystem.settings\")\n\napplication = get_asgi_application()\n"
  },
  {
    "path": "BookRecSystem/settings.py",
    "content": "\"\"\"\nDjango settings for BookRecSystem project.\n\nGenerated by 'django-admin startproject' using Django 3.1.1.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/3.1/topics/settings/\n\nFor the full list of settings and their values, see\nhttps://docs.djangoproject.com/en/3.1/ref/settings/\n\"\"\"\n\nfrom pathlib import Path\nfrom django.contrib.messages import constants as messages\nimport os\n\n# Build paths inside the project like this: BASE_DIR / 'subdir'.\nBASE_DIR = Path(__file__).resolve().parent.parent\n\n\n# Quick-start development settings - unsuitable for production\n# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/\n\n# SECURITY WARNING: keep the secret key used in production secret!\nSECRET_KEY = os.environ.get(\"SECRET_KEY\", \"RANDOM_KEY\")\n\n# SECURITY WARNING: don't run with debug turned on in production!\nDEBUG = str(os.environ.get(\"DEBUG\", True)) == \"True\"\n\n# Check if production environment\nPROD_ENV = str(os.environ.get(\"PROD_ENV\", False)) == \"True\"\n\nALLOWED_HOSTS = [\n    \"kitabe-app.herokuapp.com\",\n    \"kitabe.up.railway.app\",\n    \"127.0.0.1\",\n    \"localhost\",\n]\n\nCSRF_TRUSTED_ORIGINS = [\n    \"https://kitabe-app.herokuapp.com\",\n    \"https://kitabe.up.railway.app\",\n]\n\n\n# Application definition\n\nINSTALLED_APPS = [\n    \"django.contrib.admin\",\n    \"django.contrib.auth\",\n    \"django.contrib.contenttypes\",\n    \"django.contrib.sessions\",\n    \"django.contrib.messages\",\n    # disable django static file handling during development as well\n    \"whitenoise.runserver_nostatic\",\n    \"django.contrib.staticfiles\",\n    \"django.contrib.sites\",\n    \"allauth\",\n    \"allauth.account\",\n    \"allauth.socialaccount\",\n    \"allauth.socialaccount.providers.google\",\n    \"mainapp\",\n    \"storages\",\n]\n\nMIDDLEWARE = [\n    \"django.middleware.security.SecurityMiddleware\",\n    \"whitenoise.middleware.WhiteNoiseMiddleware\",\n    \"django.contrib.sessions.middleware.SessionMiddleware\",\n    \"django.middleware.common.CommonMiddleware\",\n    \"django.middleware.csrf.CsrfViewMiddleware\",\n    \"django.contrib.auth.middleware.AuthenticationMiddleware\",\n    \"django.contrib.messages.middleware.MessageMiddleware\",\n    \"django.middleware.clickjacking.XFrameOptionsMiddleware\",\n]\n\nROOT_URLCONF = \"BookRecSystem.urls\"\n\nTEMPLATES = [\n    {\n        \"BACKEND\": \"django.template.backends.django.DjangoTemplates\",\n        \"DIRS\": [\n            os.path.join(BASE_DIR, \"templates\"),\n        ],\n        \"APP_DIRS\": True,\n        \"OPTIONS\": {\n            \"context_processors\": [\n                \"django.template.context_processors.debug\",\n                \"django.template.context_processors.request\",\n                \"django.contrib.auth.context_processors.auth\",\n                \"django.contrib.messages.context_processors.messages\",\n                # allauth\n                \"django.template.context_processors.request\",\n            ],\n        },\n    },\n]\n\nWSGI_APPLICATION = \"BookRecSystem.wsgi.application\"\n\n\n# Database\n# https://docs.djangoproject.com/en/3.1/ref/settings/#databases\nif PROD_ENV:\n    DATABASES = {\n        \"default\": {\n            \"ENGINE\": \"django.db.backends.postgresql\",\n            \"NAME\": os.environ.get(\"PGDATABASE\"),\n            \"USER\": os.environ.get(\"PGUSER\"),\n            \"PASSWORD\": os.environ.get(\"PGPASSWORD\"),\n            \"HOST\": os.environ.get(\"PGHOST\"),\n            \"PORT\": os.environ.get(\"PGPORT\"),\n        }\n    }\nelse:\n    DATABASES = {\n        \"default\": {\n            \"ENGINE\": \"django.db.backends.sqlite3\",\n            \"NAME\": BASE_DIR / \"db.sqlite3\",\n        }\n    }\n\n\n# Password validation\n# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators\n\nAUTH_PASSWORD_VALIDATORS = [\n    {\n        \"NAME\": \"django.contrib.auth.password_validation.UserAttributeSimilarityValidator\",\n    },\n    {\n        \"NAME\": \"django.contrib.auth.password_validation.MinimumLengthValidator\",\n    },\n    {\n        \"NAME\": \"django.contrib.auth.password_validation.CommonPasswordValidator\",\n    },\n    {\n        \"NAME\": \"django.contrib.auth.password_validation.NumericPasswordValidator\",\n    },\n]\n\n\n# Internationalization\n# https://docs.djangoproject.com/en/3.1/topics/i18n/\n\nLANGUAGE_CODE = \"en-us\"\n\nTIME_ZONE = \"Asia/Calcutta\"\n\nUSE_I18N = True\n\nUSE_L10N = True\n\nUSE_TZ = True\n\n\n# Static files (CSS, JavaScript, Images)\n# https://docs.djangoproject.com/en/3.1/howto/static-files/\n\n# url/placeholder path at which static files are served\nSTATIC_URL = \"/static/\"\n# other folders to look for static files\nSTATICFILES_DIRS = [os.path.join(BASE_DIR, \"static\")]\nSTATICFILES_STORAGE = \"whitenoise.storage.CompressedManifestStaticFilesStorage\"\n\n# Deployment\n# Directory where collectstatic will collect the static files for deployment\nSTATIC_ROOT = os.path.join(BASE_DIR, \"staticfiles\")\n\n\nAUTHENICATION_BACKENDS = [\n    \"django.contrib.auth.backends.ModelBackend\",\n    # allauth\n    \"allauth.account.auth_backends.AuthenicationBackend\",\n]\n\nSITE_ID = 1\n\nSOCIALACCOUNT_PROVIDERS = {\n    \"google\": {\n        \"APP\": {\n            \"client_id\": os.environ.get(\"KITABE_AUTH_ID\"),\n            \"secret\": os.environ.get(\"KITABE_AUTH_SECRET\"),\n            \"key\": \"\",\n        }\n    }\n}\n\nDEFAULT_AUTO_FIELD = \"django.db.models.BigAutoField\"\n\n# media files\nMEDIA_ROOT = os.path.join(BASE_DIR, \"media\")\nMEDIA_URL = \"/media/\"\n\nLOGIN_REDIRECT_URL = \"index\"\nLOGOUT_REDIRECT_URL = \"index\"\n\n# simple mail transfer protocal\n# EMAIL_BACKEND = \"django.core.mail.backends.smtp.EmailBackend\"\nEMAIL_HOST = \"smtp.gmail.com\"\nEMAIL_PORT = 587\nEMAIL_USE_TLS = True\nEMAIL_HOST_USER = os.environ.get(\"KITABE_EMAIL\")\nEMAIL_HOST_PASSWORD = os.environ.get(\"KITABE_PASS\")\n\n# Alluth Settings\nACCOUNT_AUTHENTICATION_METHOD = \"username\"\nACCOUNT_EMAIL_REQUIRED = True\nACCOUNT_EMAIL_VERIFICATION = \"none\"\nACCOUNT_LOGOUT_ON_GET = True\n\nif not DEBUG:\n    # access via https in production\n    ACCOUNT_DEFAULT_HTTP_PROTOCOL = \"https\"\n\nMESSAGE_TAGS = {\n    messages.DEBUG: \"alert-info\",\n    messages.INFO: \"alert-info\",\n    messages.SUCCESS: \"alert-success\",\n    messages.WARNING: \"alert-warning\",\n    messages.ERROR: \"alert-danger\",\n}\n"
  },
  {
    "path": "BookRecSystem/urls.py",
    "content": "\"\"\"BookRecSystem URL Configuration\n\nThe `urlpatterns` list routes URLs to views. For more information please see:\n    https://docs.djangoproject.com/en/3.1/topics/http/urls/\nExamples:\nFunction views\n    1. Add an import:  from my_app import views\n    2. Add a URL to urlpatterns:  path('', views.home, name='home')\nClass-based views\n    1. Add an import:  from other_app.views import Home\n    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')\nIncluding another URLconf\n    1. Import the include() function: from django.urls import include, path\n    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))\n\"\"\"\nfrom django.contrib import admin\nfrom django.urls import path, include\nfrom django.conf import settings\nfrom django.conf.urls.static import static\n\nurlpatterns = [\n    path(\"\", include(\"mainapp.urls\")),\n    path(\"admin/\", admin.site.urls),\n    path(\"accounts/\", include(\"allauth.urls\")),\n] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)\n# error handler\nhandler404 = \"mainapp.views.handler404\"\nhandler500 = \"mainapp.views.handler500\"\n"
  },
  {
    "path": "BookRecSystem/wsgi.py",
    "content": "\"\"\"\nWSGI config for BookRecSystem project.\n\nIt exposes the WSGI callable as a module-level variable named ``application``.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/\n\"\"\"\n\nimport os\n\nfrom django.core.wsgi import get_wsgi_application\n\nos.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"BookRecSystem.settings\")\n\napplication = get_wsgi_application()\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "## Contributing Guidelines\n\nYou are **Awesome!** Thank you for your Interest in Contributing to this Project 🤗\nFor Contributions we strictly follow [Github Flow](https://guides.github.com/introduction/flow/).\n\n## Contents\n\n- [Setting Up the Project](#user-content-setting-up-the-project)\n- [Contributing](#user-content-contributing)\n\n### Setting Up the Project\n\n1. The Project works seamlessly on Python version `3.8.6`\n\n2. (Optional) [Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo#fork-an-example-repository) the Repository\n\n3. Clone Your Forked copy/the original repo - `git clone https://github.com/[YOUR-USERNAME]/Kitabe.git`\n\n4.  Navigate to the directory of project -  `cd Kitabe/`\n\n\n5. (Optional) If you're intending to raise an MR else you can skip this step, Create a new branch -  `git checkout -b [branch_name]`\n\n6. Install requirements from [poetry](https://python-poetry.org/docs/#installation) - `poetry install`\n    - If you prefer the vanilla route `poetry export -f requirements.txt --output requirements.txt --without-hashes` skip to step (8)\n\n\n7. Activate the environment -  `poetry shell`\n\n8. Open `BookRecSystem/settings.py`\n\n9. Make Migrations - `python manage.py migrate`\n\n10. `python manage.py runserver` - You're good to Go!!\n\n📝 Raise an issue/start a discussion if you face difficulties while setting up the repo, we'll try to resolve it asap\n#### Optional\n\n- [Setting up Google Auth](https://django-allauth.readthedocs.io/en/latest/installation.html)\n\n- [Setting up SMTP](https://youtu.be/-tyBEsHSv7w)\n\n- [Creating Superuser](https://www.geeksforgeeks.org/how-to-create-superuser-in-django/)\n\n### Contributing\n\n- Please go through [Github Flow](https://guides.github.com/introduction/flow/), if not already. :)\n\n- Take up an [Issue](https://github.com/Praful932/Kitabe/issues) or [Raise](https://github.com/Praful932/Kitabe/issues/new) one.\n\n- Discuss your proposed changes & Get assigned.\n\n- If your changes are approved, do the changes in branch `[branch_name]`.\n\n- Run tests\n\n- `flake8`, `python manage.py test`\n\n- Fix if any test fails.\n\n- Still in branch `[branch_name].`\n\n- **Stage and Commit only the required files.**\n\n- `git push origin [branch_name] -u`\n\n- Browse [here](https://github.com/Praful932/Kitabe) and create a PR from your branch with the appropriate required details.\n\n- If your PR is accepted, it is automatically deployed once merged. :)\n\n- That's it!\n\n**Tip**: To keep your Fork Repo all branches updated with Upstream use [this](https://upriver.github.io/).\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020 Praful932\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "\n![1](https://user-images.githubusercontent.com/45713796/98271308-d18aac80-1fb5-11eb-9db3-dda942cc1b07.png)\n\n\n**Kitabe** (*Book in Hindi*) is a Book Recommendation System built for all you Book Lovers📖.\nSimply Rate ⭐ some books and get immediate recommendations tailored for you 🤩.<br>\nSee [Demo](#user-content-demo-) 🎥\n\n[![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](https://kitabe.up.railway.app/)\n[![Build Status](https://travis-ci.com/Praful932/Kitabe.svg?token=XKcoN48yFyATXWUZ6d8j&branch=master)](https://travis-ci.com/Praful932/Kitabe)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/Praful932/Kitabe/blob/master/CONTRIBUTING.md)\n[![GitHub license](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) <br>\n[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FPraful932%2FKitabe&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Praful932/Kitabe/graphs/commit-activity)\n![GitHub stars](https://img.shields.io/github/stars/Praful932/Kitabe?style=social) ![GitHub forks](https://img.shields.io/github/forks/Praful932/Kitabe?style=social) ![GitHub watchers](https://img.shields.io/github/watchers/Praful932/Kitabe?style=social)\n\nFor Contributing 💜 and setting Up head [here](https://github.com/Praful932/Kitabe/blob/master/CONTRIBUTING.md).\n\n# Contents\n- [Demo](#user-content-demo-) 🎥\n- [Approach](#objective-) 🧐\n    - [Objective](#objective-) ✍\n    - [Dataset](#dataset-) 🧾\n    - [PreProcessing](#preprocessing-) 🛠\n    - [Model Exploration](#model-exploration-) 🤯\n    - [Final Result](#final-result-) 😁\n- [Project Structure](#project-structure-%EF%B8%8F) 💁‍♀️\n- [To Do](#to-do-) 🎯\n- [Contribute](https://github.com/Praful932/Kitabe/blob/master/CONTRIBUTING.md) 🧏‍♂️\n- [Notebooks and Files](#notebooks-and-files-) 📓\n- [References](#references-) 😇\n- [Contributors](#contributors-) 🤗\n- [License](#license-) ✍\n\n### Demo 🎥\n\n![kitabe](https://user-images.githubusercontent.com/45713796/98460071-f6a23980-21c6-11eb-881f-ba0f75896751.gif)<br>\n[Live Application](https://kitabe.up.railway.app/) 🌐\n\n### Objective ✍\nOur objective is to build an application for all Book Lovers ♥ like us out there where all you have to\ndo is rate some of your favorite books and the application will do it's **voodoo magic** 🧙‍♂️ and give you some more books that you may **love😍 to read**.\n\n### Dataset 🧾\nThe Dataset that we used for this task is the [goodbooks-10k](https://github.com/zygmuntz/goodbooks-10k) dataset. It consists of 10k books with a total of 6 million ratings. That's huge right! 😮. There are some more huge datasets such as [Book-Crossings](http://www2.informatik.uni-freiburg.de/~cziegler/BX/) but they are kinda old 😬.\n\n**Dataset Structure**\n```\nGoodBooks10k\n    ├── books.csv         # Contains book info with book-id\n    ├── ratings.csv       # Maps user-id to book-id and rating\n    ├── book_tags.csv     # Contains tag-id associated with book-ids\n    ├── tags.csv          # Contains tag-name associated with tag-id\n    ├── to_read.csv       # Contains book-ids marked as to-read by user\n```\n\n### PreProcessing 🛠\nSince this is a recommendation problem, we have to make sure that the `books.csv` is as clean as possible and only consider those ratings whose book-id is present, same goes for vice versa.\n\nMore Cleaning for `books.csv`\n- Missing Book Image URLs\n- Book & Rating Duplicates\n\n### Model Exploration 🤯\nFor Recommendation Problems there are multiple approaches that are possible:\n- Embedding Matrix\n- Singular Matrix Decomposition\n- Term Frequency\n\nWe experimented with several methods and chose Embedding Matrix & Term Frequency.\n\n- **Embedding Matrix** - This method is often called [FunkSVD](https://www.coursera.org/lecture/matrix-factorization/deriving-funksvd-lyTpD) which won the Netflix Prize back in 2004. Since it is a gradient based function minimization approach we like to call it as Embedding Matrix. Calling it SVD [confuses](https://www.quora.com/What-is-the-difference-between-SVD-and-matrix-factorization-in-context-of-recommendation-engine/answer/Luis-Argerich) it with the one in Linear Algebra. This Embedding Matrix constructs a vector for each user and each book, such that when the product is applied with additional constraints it gives us the rating. For more elaborate info on FunkSVD refer [this](http://sifter.org/~simon/journal/20061211.html).\nWe used the book embedding as a representation of the books to infer underlying patterns. This led to the embedding able to detect books from the same authors and also infer genres such as Fiction, Autobiography and more.\n\n- **Term Frequency** - This method is like a helper function to above, it shines where embedding fails. Term Frequency takes into account the tokens in a book title be it the book title itself, the name of authors and also rating. Taking into consideration it finds books which match closely with the tokens in the rated book.\n\n> 🛠 Code for every step can be found in the [Notebooks and Files](#notebooks-and-files) Section.\n\n### Final Result 😁\nThe [Image](https://coggle.it/diagram/X6TOUxlMvSl8FBM4/t/dataset/7083ac4f2de39517a4d97cd9d3d211c11af6e65f9a0034c46d613ff0f9cd5) says it All.\n\n![coggle](https://user-images.githubusercontent.com/45713796/98331008-ae95e200-2021-11eb-915b-892854f88a6e.png)\n\n\n### Project Structure 💁‍♀️\n```\nKitabe\n│\n├───BookRecSystem               # Main Project Directory\n│\n├───mainapp                     # Project Main App Directory\n│   │\n│   └───migrations              # Migrations\n│\n├───static\n|   |                           # Static Directory\n│   └───mainapp\n│       ├───css                 # CSS Files\n|       |\n│       ├───dataset             # Dataset Files\n│       │\n│       ├───gif                 # GIF Media\n│       │\n│       ├───model_files         # Model Files\n|       |   |\n│       │   ├───surprise        # FunkSVD Files\n│       │   │\n│       │   └───cv              # CV Files\n│       │\n│       └───png                 # PNG Media FIles\n|\n└───templates                   # Root Template DIrectory\n    |\n    ├───account                 # Account App Templates\n    │\n    └───mainapp                 # Project Main App Templates\n\n```\n\n### To Do 🎯\n- [X] Display Popular Books Among Users\n- [X] Add AJAX View Tests\n- [X] Add Model Tests\n- [X] Use a Better Approach than Count Vectorizer\n\n### Notebooks and Files 📓\n- [All Dataset & Model Files](https://drive.google.com/drive/folders/1SvuCvfiSxwuF21EvmKyhSkuwjgK7KU6S?usp=sharing)\n- [Cleaning and Embedding Notebook](https://drive.google.com/file/d/1wlKiSvYQEXG7xtru5jDQWQwxffaVd9Ap/view?usp=sharing)\n- [Fix Missing Images Notebook](https://drive.google.com/file/d/1S0pd5t9oU9a63EdmlXmxhNWGc228W3ke/view?usp=sharing)\n- [Genre Wise & Tfidf Vectorizer Notebook](https://drive.google.com/file/d/1LRr4Nm2I2HRJUTXbRea3sK5A1Bvp_lav/view?usp=sharing)\n\n### References 😇\n\n- [Dataset](https://github.com/zygmuntz/goodbooks-10k)\n- [Count Vectorizer](https://www.kaggle.com/sasha18/recommend-books-using-count-tfidf-on-titles)\n- [Books2Rec](https://github.com/dorukkilitcioglu/books2rec)\n\n### Contributors 🤗\n![2](https://contributors-img.web.app/image?repo=Praful932/Kitabe)\n\n### License ✍\n```\nMIT License\n\nCopyright (c) 2020 Praful Mohanan & Prajakta Mane\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n"
  },
  {
    "path": "mainapp/__init__.py",
    "content": ""
  },
  {
    "path": "mainapp/admin.py",
    "content": "from django.contrib import admin\nfrom mainapp.models import UserRating, SaveForLater\n\n# Register your models here.\n\nadmin.site.register(UserRating)\nadmin.site.register(SaveForLater)\n"
  },
  {
    "path": "mainapp/apps.py",
    "content": "from django.apps import AppConfig\n\n\nclass MainappConfig(AppConfig):\n    name = \"mainapp\"\n"
  },
  {
    "path": "mainapp/forms.py",
    "content": ""
  },
  {
    "path": "mainapp/helpers.py",
    "content": "import pandas as pd\nimport numpy as np\nimport os\nimport math\nimport pickle\nimport operator\nimport random\nfrom collections import Counter\nimport BookRecSystem.settings as settings\nimport mainapp.models\n\nbook_path = os.path.join(settings.STATICFILES_DIRS[0] + \"/mainapp/dataset/books.csv\")\n\n# For Count Vectorizer\ncosine_sim_path = os.path.join(\n    settings.STATICFILES_DIRS[0] + \"/mainapp/model_files/tf-idf/cosine_rating_sim.npz\"\n)\nbook_indices_path = os.path.join(\n    settings.STATICFILES_DIRS[0] + \"/mainapp/model_files/tf-idf/indices.pkl\"\n)\n\n# For Embedding\nbook_id_map_path = os.path.join(\n    settings.STATICFILES_DIRS[0]\n    + \"/mainapp/model_files/surprise/book_raw_to_inner_id.pickle\"\n)\nbook_raw_map_path = os.path.join(\n    settings.STATICFILES_DIRS[0]\n    + \"/mainapp/model_files/surprise/book_inner_id_to_raw.pickle\"\n)\nbook_embed_path = os.path.join(\n    settings.STATICFILES_DIRS[0] + \"/mainapp/model_files/surprise/book_embedding.npy\"\n)\nsim_books_path = os.path.join(\n    settings.STATICFILES_DIRS[0] + \"/mainapp/model_files/surprise/sim_books.pickle\"\n)\n\nwith open(book_id_map_path, \"rb\") as handle:\n    book_raw_to_inner_id = pickle.load(handle)\n\nwith open(book_raw_map_path, \"rb\") as handle:\n    book_inner_id_to_raw = pickle.load(handle)\nbook_embedding = np.load(book_embed_path)\n\nwith open(sim_books_path, \"rb\") as handle:\n    sim_books_dict = pickle.load(handle)\n\ncols = [\"original_title\", \"authors\", \"average_rating\", \"image_url\", \"book_id\"]\n\ndf_book = pd.read_csv(book_path)\ntotal_books = df_book.shape[0]\n\n\ndef is_rating_invalid(rating):\n    \"\"\"Return a boolean value.\n\n    Checks if the rating is invalid.\n\n    Parameters\n    ----------\n    rating : int\n        Rating of a book, which should be a digit <= 5.\n\n    Returns\n    -------\n    bool\n        `True` if the rating is invalid, else `False`.\n\n    \"\"\"\n    if not rating or not rating.isdigit():\n        return True\n    if int(rating) > 5:\n        return True\n    return False\n\n\ndef is_bookid_invalid(bookid):\n    \"\"\"Return a boolean value.\n\n    Checks if the bookid is invalid.\n\n    Parameters\n    ----------\n    bookid : int\n        book-id of the book to be checked for existence.\n\n    Returns\n    -------\n    bool\n        `True` if the bookid exists, else `False`.\n\n    \"\"\"\n    if not bookid or not bookid.isdigit():\n        return True\n    elif sum(df_book[\"book_id\"] == int(bookid)) == 0:\n        # If bookid does not exist\n        return True\n    return False\n\n\ndef get_book_title(bookid):\n    \"\"\"Return book title given bookid.\n\n    Parameters\n    ----------\n    bookid : int\n        book-id of a book whose title needs to be determined.\n\n    Returns\n    -------\n    bookname : str\n        Title of the book corresponding the given book id.\n\n    \"\"\"\n    return df_book[df_book[\"book_id\"] == bookid][\"original_title\"].values[0]\n\n\ndef get_book_ids(index_list):\n    \"\"\"Return bookids given list of indexes.\n\n    Parameters\n    ----------\n    index_list : list\n        List of indexes for which the book-ids are to be determined.\n\n    Returns\n    -------\n    bookid_list : list\n        List of bookids corresponding to given list of indexes.\n\n    \"\"\"\n    bookid_list = list(df_book.loc[index_list].book_id.values)\n    return bookid_list\n\n\ndef get_rated_bookids(user_ratings):\n    \"\"\"Return list of already rated bookids.\n\n    Parameters\n    ----------\n    user_ratings : list\n        List of ratings by the users.\n\n    Returns\n    -------\n    already_rated : list\n        List of book-ids, corresponding to the books already rated by the users.\n\n    \"\"\"\n    already_rated = []\n    for rating in user_ratings:\n        book_id = rating.bookid\n        already_rated.append(book_id)\n    return already_rated\n\n\ndef get_raw_id(book_id):\n    \"\"\"Return raw_id given book_id.\n\n    Parameters\n    ----------\n    book_id : int\n        Integer to determine the raw-id of a book.\n\n    Returns\n    -------\n    raw_id : int\n        Corresponding raw_id of the book_id.\n\n    \"\"\"\n    raw_id = df_book[df_book.book_id == book_id][\"r_index\"].values[0]\n    return raw_id\n\n\ndef get_bookid(raw_id_list):\n    \"\"\"Return bookid list given rawid list.\n\n    Parameters\n    ----------\n    raw_id_list : list\n        List containing raw-ids to determine respective book-ids.\n\n    Returns\n    -------\n    bookid_list : list\n        List of bookids corresponding to raw ids.\n\n    \"\"\"\n    bookid_list = list(df_book[df_book.r_index.isin(raw_id_list)][\"book_id\"].values)\n    return bookid_list\n\n\ndef genre_wise(genre, percentile=0.85):\n    \"\"\"Return top genre books according to a cutoff percentile.\n\n    Parameters\n    ----------\n    genre : str\n        Genre of the book in string format.\n\n    percentile : float\n         Float determinig the cutoff percentile (Default value = `0.85`).\n\n    Returns\n    -------\n    df : pandas.core.frame.DataFrame\n        Top genre books according to a cutoff percentile.\n\n    \"\"\"\n    n_books = 16\n    min_genre_book_count = 48\n\n    qualified = df_book[df_book.genre.str.contains(genre.lower())]\n    # Imdb Formula\n    v = qualified[\"ratings_count\"]\n    m = qualified[\"ratings_count\"].quantile(percentile)\n    R = qualified[\"average_rating\"]\n    C = qualified[\"average_rating\"].mean()\n    W = (R * v + C * m) / (v + m)\n    qualified = qualified.assign(weighted_rating=W)\n    qualified.sort_values(\"weighted_rating\", ascending=False, inplace=True)\n\n    return qualified[cols].head(min_genre_book_count).sample(n_books)\n\n\ndef tfidf_recommendations(bookid):\n    \"\"\"Return recommenedations based on count vectorizer.\n\n    Parameters\n    ----------\n    bookid : int\n        Integer which needs to be passed in order to get book-title.\n\n    Returns\n    -------\n    bookid_list : list\n        List of bookids based on count vectorizer.\n\n    \"\"\"\n    indices = pd.read_pickle(book_indices_path)\n    cosine_sim = np.load(cosine_sim_path)[\"array1\"]\n    book_title = get_book_title(bookid)\n    book_title = book_title.replace(\" \", \"\").lower()\n    idx = indices[book_title]\n\n    # Get this books similarity with all other books, enum to keep track of book index\n    sim_scores = list(enumerate(cosine_sim[idx]))\n    sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)\n    sim_scores = sim_scores[1:10]\n\n    book_indices = [i[0] for i in sim_scores]\n    bookid_list = get_book_ids(book_indices)\n    return bookid_list\n\n\ndef embedding_recommendations(sorted_user_ratings):\n    \"\"\"Return recommended book ids based on embeddings.\n\n    Parameters\n    ----------\n    sorted_user_ratings : list\n        List containing the ratings given by user.\n\n    Returns\n    -------\n    similar_bookid_list : list\n        A list of recommended book ids based on embeddings.\n\n    \"\"\"\n    best_user_books = []\n    similar_bookid_list = []\n    max_user_rating_len = 10\n    # Only keep user rating >= 4\n    threshold = 4\n    top_similiar = 2\n\n    for i, rating in enumerate(sorted_user_ratings):\n        if rating.bookrating < threshold or i > max_user_rating_len:\n            break\n        else:\n            best_user_books.append(rating.bookid)\n\n    for book in best_user_books:\n        raw_id = get_raw_id(book)\n        top_sim_books = [\n            book for book, similiarity in sim_books_dict[raw_id][:top_similiar]\n        ]\n        similar_bookid_list.extend(top_sim_books)\n\n    similar_bookid_list = get_bookid(similar_bookid_list)\n\n    return similar_bookid_list\n\n\ndef get_book_dict(bookid_list):\n    \"\"\"Return book details based on provided bookids.\n\n    Parameters\n    ----------\n    bookid_list : list\n        List containing book-ids which needs to be passed to determine book-details.\n\n    Returns\n    -------\n    rec_books_dict : dict\n        Dictionary of book details based on provided list of bookids.\n\n    \"\"\"\n    rec_books_dict = df_book[df_book[\"book_id\"].isin(bookid_list)][cols].to_dict(\n        \"records\"\n    )\n    return rec_books_dict\n\n\ndef combine_ids(tfidf_bookids, embedding_bookids, already_rated, recommendations=9):\n    \"\"\"Return best bookids combining both approaches.\n\n        Embedding - Top 6\n        Tf-Idf - Top 3\n\n    Parameters\n    ----------\n    tfidf_bookids : list\n        List containing book-ids of books based on Tf-Idf.\n\n    embedding_bookids : list\n        List containing book-ids of books rated by users.\n\n    already_rated : list\n        List containing book-ids of already rated books.\n\n    recommendations : int\n         Integer denoting the number of recommendations (Default value = 9).\n\n    Returns\n    -------\n    best_bookids : list\n        List containing bookids of top books based on embeddings and tfidf.\n\n    \"\"\"\n    tfidf_bookids = list(tfidf_bookids.difference(already_rated))\n    top_3_tfidf = set(tfidf_bookids[:3])\n    embedding_bookids = embedding_bookids.difference(already_rated)\n    embedding_bookids = list(embedding_bookids.difference(top_3_tfidf))\n    top_3_tfidf = list(top_3_tfidf)\n    top_6_embed = list(embedding_bookids[:6])\n    best_bookids = top_3_tfidf + top_6_embed\n\n    # If not enough recommendations\n    if len(best_bookids) < recommendations:\n        two_n = recommendations - len(best_bookids)\n        # Divide remaining recommendations into two parts\n        n1, n2 = math.ceil(two_n / 2), math.floor(two_n / 2)\n\n        # n1 number of books from remaining tf_idf books\n        best_bookids_tfidf = tfidf_bookids[3 : (3 * 2) + n1]\n        best_bookids_tfidf = list(\n            set(best_bookids_tfidf).difference(set(best_bookids))\n        )[:n1]\n\n        # n2 number of books from list of top rated books of the most common genre among the books yet recommended\n        genre_recomm_bookids = most_common_genre_recommendations(\n            best_bookids + already_rated + best_bookids_tfidf, n2\n        )\n\n        # number of recommendations = len(best_bookids) + n1 + n2 = len(best_bookids) + two_n\n        best_bookids = best_bookids + best_bookids_tfidf + genre_recomm_bookids\n    return best_bookids\n\n\ndef most_common_genre_recommendations(books, n):\n    \"\"\"Returns n top rated of the most_common_genre among all lists taken as input\n\n    Parameters\n    ----------\n    books : list\n        List of books to find common genre for\n    n : int\n        Integer denoting the number of books required (Default value = 9).\n    Returns\n    -------\n    genre_recommendations : list\n        List containing n number of books of the most common genre among all the input books.\n    \"\"\"\n\n    # Accumulation of all the genres listed from books\n    genre_frequency = []\n    for book in books:\n        genre_frequency.append(\n            df_book[df_book[\"book_id\"] == book][\"genre\"].values[0].split(\", \")[0]\n        )\n\n    most_common_genre = sorted(Counter(genre_frequency).most_common())[0][0]\n\n    # Recommendations list, listing 2n bookids\n    genre_recommendations = genre_wise(most_common_genre).book_id.to_list()[: 2 * n]\n    # Removing common bookids from `books` and Slicing out the first n bookids\n    genre_recommendations = list(set(genre_recommendations).difference(books))[:n]\n\n    return genre_recommendations\n\n\ndef get_top_n(top_n=400):\n    \"\"\"Return a sample of top N books based on weighted average ratings.\n\n    Parameters\n    ----------\n    top_n : int\n         Number of samples to be returned (Default value = 400).\n\n    Returns\n    -------\n    df : pandas.core.frame.DataFrame\n        Sample of top N books.\n\n    \"\"\"\n    df_books_copy = df_book.copy()\n    v = df_books_copy[\"ratings_count\"]\n    m = df_books_copy[\"ratings_count\"].quantile(0.95)\n    R = df_books_copy[\"average_rating\"]\n    C = df_books_copy[\"average_rating\"].mean()\n    W = (R * v + C * m) / (v + m)\n    df_books_copy = df_books_copy.assign(weighted_rating=W)\n    qualified = df_books_copy.sort_values(\"weighted_rating\", ascending=False)[\n        cols\n    ].head(top_n)\n    return qualified.sample(top_n)\n\n\ndef popular_among_users(N=15):\n    \"\"\"Return Popular Books Among Users in the rating range 4-5.\n\n        If enough books are not available, top books are\n        sampled randomly.\n\n    Parameters\n    ----------\n    N : int\n         Number of samples to be returned (Default value = 15).\n\n    Returns\n    -------\n    book_details : dict\n        Dictionary of book details.\n\n    \"\"\"\n    all_ratings = list(mainapp.models.UserRating.objects.all().order_by(\"-bookrating\"))\n    random.shuffle(all_ratings)\n    best_user_ratings = sorted(\n        all_ratings, key=operator.attrgetter(\"bookrating\"), reverse=True\n    )\n\n    filtered_books = set()\n    for i, rating in enumerate(best_user_ratings):\n        if rating.bookrating >= 4:\n            filtered_books.add(rating.bookid)\n        elif rating.bookrating < 4 or len(filtered_books) == N:\n            break\n\n    remaining_books_nos = N - len(filtered_books)\n    if remaining_books_nos >= 0:\n        rem_books = get_top_n(2 * N)[\"book_id\"].tolist()\n        filtered_books = (\n            list(filtered_books)\n            + list(set(rem_books) - filtered_books)[:remaining_books_nos]\n        )\n\n    return get_book_dict(filtered_books)\n"
  },
  {
    "path": "mainapp/migrations/0001_initial.py",
    "content": "# Generated by Django 3.1.1 on 2020-09-27 15:02\n\nfrom django.conf import settings\nfrom django.db import migrations, models\nimport django.db.models.deletion\n\n\nclass Migration(migrations.Migration):\n\n    initial = True\n\n    dependencies = [\n        migrations.swappable_dependency(settings.AUTH_USER_MODEL),\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name=\"UserRating\",\n            fields=[\n                (\n                    \"id\",\n                    models.AutoField(\n                        auto_created=True,\n                        primary_key=True,\n                        serialize=False,\n                        verbose_name=\"ID\",\n                    ),\n                ),\n                (\"bookid\", models.IntegerField()),\n                (\"bookrating\", models.IntegerField()),\n                (\n                    \"user\",\n                    models.ForeignKey(\n                        on_delete=django.db.models.deletion.CASCADE,\n                        related_name=\"user_rating\",\n                        to=settings.AUTH_USER_MODEL,\n                    ),\n                ),\n            ],\n        ),\n    ]\n"
  },
  {
    "path": "mainapp/migrations/0002_saveforlater.py",
    "content": "# Generated by Django 3.1.6 on 2021-04-14 18:18\n\nfrom django.conf import settings\nfrom django.db import migrations, models\nimport django.db.models.deletion\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n        migrations.swappable_dependency(settings.AUTH_USER_MODEL),\n        (\"mainapp\", \"0001_initial\"),\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name=\"SaveForLater\",\n            fields=[\n                (\n                    \"id\",\n                    models.AutoField(\n                        auto_created=True,\n                        primary_key=True,\n                        serialize=False,\n                        verbose_name=\"ID\",\n                    ),\n                ),\n                (\"bookid\", models.IntegerField()),\n                (\n                    \"user\",\n                    models.ForeignKey(\n                        on_delete=django.db.models.deletion.CASCADE,\n                        to=settings.AUTH_USER_MODEL,\n                    ),\n                ),\n            ],\n        ),\n    ]\n"
  },
  {
    "path": "mainapp/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "mainapp/models.py",
    "content": "from django.db import models\nfrom django.contrib.auth.models import User\nfrom mainapp.helpers import get_book_title\n\nimport BookRecSystem.settings as settings\nimport pandas as pd\nimport os\n\nbook_path = os.path.join(settings.STATICFILES_DIRS[0] + \"/mainapp/dataset/books.csv\")\ndf_book = pd.read_csv(book_path)\n\n\nclass UserRating(models.Model):\n    user = models.ForeignKey(User, on_delete=models.CASCADE, related_name=\"user_rating\")\n    bookid = models.IntegerField()\n    bookrating = models.IntegerField()\n\n    def __str__(self):\n        return (\n            self.user.username.capitalize()\n            + \"- \"\n            + get_book_title(self.bookid)\n            + \"  - \"\n            + str(self.bookrating)\n        )\n\n\nclass SaveForLater(models.Model):\n    user = models.ForeignKey(User, on_delete=models.CASCADE)\n    bookid = models.IntegerField()\n\n    def __str__(self):\n        return self.user.username.capitalize() + \"- \" + get_book_title(self.bookid)\n"
  },
  {
    "path": "mainapp/tests.py",
    "content": "from django.urls import reverse, resolve\nfrom django.test import TestCase, Client\nfrom mainapp import views\nfrom django.contrib.auth.models import User\nfrom mainapp.models import UserRating, SaveForLater\nfrom mainapp.helpers import most_common_genre_recommendations\nimport pandas as pd\nimport os\nimport random\nimport math\nimport BookRecSystem.settings as settings\n\n\nclass HomeTests(TestCase):\n    \"\"\"\n    Index View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.url = reverse(\"index\")\n\n    def test_home_view_status_code(self):\n        \"\"\"\n        Index View Status Code\n        \"\"\"\n        response = self.client.get(self.url)\n        self.assertEqual(response.status_code, 200)\n\n    def test_home_url_resolves_home_view(self):\n        \"\"\"\n        Root URL Status Code\n        \"\"\"\n        view = resolve(\"/\")\n        self.assertEqual(view.func, views.index)\n\n\nclass GenreTestCase(TestCase):\n    \"\"\"\n    Genre View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.genres = [\n            \"art\",\n            \"biography\",\n            \"business\",\n            \"Christian\",\n            \"Comics\",\n            \"Contemporary\",\n            \"Cookbooks\",\n            \"Crime\",\n            \"Fantasy\",\n            \"Fiction\",\n            \"History\",\n            \"Horror\",\n            \"Manga\",\n            \"Memoir\",\n            \"Mystery\",\n            \"Nonfiction\",\n            \"Paranormal\",\n            \"Philosophy\",\n            \"Poetry\",\n            \"Psychology\",\n            \"Religion\",\n            \"Science\",\n            \"Suspense\",\n            \"Spirituality\",\n            \"Sports\",\n            \"Thriller\",\n            \"Travel\",\n            \"Classics\",\n        ]\n\n    def test_genre_status_code(self):\n        \"\"\"\n        All Genre Tests\n        \"\"\"\n        for genre in self.genres:\n            url = reverse(\"genre_books\", kwargs={\"genre\": genre})\n            response = self.client.get(url)\n            self.assertEqual(response.status_code, 200)\n\n\nclass ExploreTestCase(TestCase):\n    \"\"\"\n    Explore View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.url = reverse(\"explore_books\")\n\n    def test_explore_status_code(self):\n        \"\"\"\n        Explore View Status Code\n        \"\"\"\n        response = self.client.get(self.url)\n        self.assertEqual(response.status_code, 200)\n\n\nclass SearchAjaxTestCase(TestCase):\n    \"\"\"\n    AJAX Search View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.url = reverse(\"search_ajax\")\n\n    def test_search_ajax_view_status_code(self):\n        \"\"\"\n        AJAX Test request with valid and invalid Book Name\n        \"\"\"\n        response = self.client.post(\n            self.url, data={\"bookName\": \"Text\"}, HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\"\n        )\n        self.assertEqual(response.status_code, 200)\n        self.assertIn(\"true\", response.content.decode(\"utf-8\"))\n\n        response = self.client.post(\n            self.url, data={}, HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\"\n        )\n        self.assertEqual(response.status_code, 200)\n        self.assertIn(\"false\", response.content.decode(\"utf-8\"))\n\n\nclass BookSummaryTestCase(TestCase):\n    \"\"\"\n    Book Summary View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.url = reverse(\"summary_ajax\")\n        self.inputs = [\"random_text\", 1e10, \"\"]\n\n    def test_book_summary_view_status_code(self):\n        \"\"\"\n        AJAX Test request with valid and invalid Book Id\n        \"\"\"\n        for ele in self.inputs:\n            response = self.client.post(\n                self.url, data={\"bookid\": ele}, HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\"\n            )\n            self.assertEqual(response.status_code, 200)\n            self.assertIn(\"false\", response.content.decode(\"utf-8\"))\n\n\nclass BookDetailsTestCase(TestCase):\n    \"\"\"\n    AJAX Book Details View Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.url = reverse(\"book_details\")\n        self.inputs = [\"random_text\", 1e10, \"\"]\n\n    def test_book_details_view_status_code(self):\n        \"\"\"\n        AJAX Test request with valid and invalid Book Id\n        \"\"\"\n        for ele in self.inputs:\n            response = self.client.post(\n                self.url, data={\"bookid\": ele}, HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\"\n            )\n            self.assertEqual(response.status_code, 200)\n            self.assertIn(\"false\", response.content.decode(\"utf-8\"))\n\n\nclass UserRateBookTestCase(TestCase):\n    \"\"\"\n    AJAX User Rate Book Test Case\n    \"\"\"\n\n    def setUp(self):\n        self.client = Client()\n        self.user = User.objects.create_user(\n            username=\"test_user\", email=\"qwe@gmail.com\"\n        )\n        self.user.set_password(\"foopassword\")\n        self.user.save()\n        self.url = reverse(\"user_rate_book\")\n        self.inputs = [(\"random_text\", 7), (1e10, 5), (\"\", 1.0)]\n\n    def test_user_rated_book_invalid(self):\n        \"\"\"\n        Test User Rates Book with invalid bookid\n        with/out login\n        \"\"\"\n        for bookid, bookrating in self.inputs:\n            response = self.client.post(\n                self.url,\n                data={\"bookid\": bookid, \"bookrating\": bookrating},\n                HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n            )\n            self.assertEqual(response.status_code, 302)\n\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n        for bookid, bookrating in self.inputs:\n            response = self.client.post(\n                self.url,\n                data={\"bookid\": bookid, \"bookrating\": bookrating},\n                HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n            )\n            self.assertEqual(response.status_code, 200)\n            self.assertIn(\"false\", response.content.decode(\"utf-8\"))\n        self.client.logout()\n\n    def test_user_rated_book_valid(self):\n        \"\"\"\n        Test User Rates Book with valid bookid\n        with/out login\n        \"\"\"\n        valid_book_id = 2\n        valid_bookrating = 4\n\n        response = self.client.post(\n            self.url,\n            data={\"bookid\": valid_book_id, \"bookrating\": valid_bookrating},\n            HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n        )\n        self.assertEqual(response.status_code, 302)\n\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n\n        response = self.client.post(\n            self.url,\n            data={\"bookid\": valid_book_id, \"bookrating\": valid_bookrating},\n            HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n        )\n        self.assertEqual(response.status_code, 200)\n        self.assertIn(\"true\", response.content.decode(\"utf-8\"))\n\n        rating = UserRating.objects.get(bookid=valid_book_id)\n        self.assertEqual(rating.bookrating, valid_bookrating)\n        self.assertEqual(rating.user, self.user)\n        self.client.logout()\n\n\nclass MostCommonGenreTestCase(TestCase):\n    \"\"\"\n    Test most common genre books when recommendations are short\n    \"\"\"\n\n    def setUp(self):\n        self.SEED = 42\n        self.df_book = pd.read_csv(\n            os.path.join(settings.STATICFILES_DIRS[0] + \"/mainapp/dataset/books.csv\")\n        )\n\n    def test_genre_driver(self):\n        test_cases = [\n            (10, 5, 1),\n            (10, 5, 2),\n            (10, 5, 3),\n            (10, 5, 4),\n            (10, 5, 5),\n            (10, 6, 1),\n            (10, 6, 1),\n            (10, 6, 2),\n            (10, 6, 3),\n            (10, 6, 4),\n            (10, 7, 1),\n            (10, 7, 2),\n            (10, 7, 3),\n            (10, 8, 1),\n            (10, 8, 2),\n            (10, 9, 1),\n            (10, 10, 0),\n        ]\n        for tnum, already_slice, bestbookids_slice in test_cases:\n            all_books, n2 = self.template(tnum, already_slice, bestbookids_slice)\n            genre_recomm_bookids = most_common_genre_recommendations(all_books, n2)\n            if n2:\n                genre_recomm_bookids = most_common_genre_recommendations(all_books, n2)\n                self.assertEqual(len(genre_recomm_bookids), n2)\n\n    def template(self, tnum, already_slice, bestbookids_slice):\n        \"\"\"\n        Generates `tnum` random bookids, divides the bookids into 3 input variables of the function `most_common_genre_recommendations`\n        The variables store,\n        already_rated - books rated by user\n        best_bookids - books recommended consisting of top 6 bookids from embedding_bookids and top 3 from tfidf recommendations\n        best_bookids_tfidf - `n1` books taken from remaining tfidf recommendations\n        \"\"\"\n        random.seed(self.SEED)\n        books = random.sample(self.df_book.book_id.to_list(), tnum)\n        already_rated = books[:already_slice]\n        best_bookids = books[already_slice : already_slice + bestbookids_slice]\n        n1 = math.ceil((9 - len(best_bookids)) / 2)\n        n2 = math.floor((9 - len(best_bookids)) / 2)\n        best_bookids_tfidf = books[tnum - n1 + 1 :]\n        all_books = best_bookids + already_rated + best_bookids_tfidf\n        return all_books, n2\n\n\nclass RatedBooksTestCase(TestCase):\n    \"\"\"Already Read Books View Test Case\"\"\"\n\n    def setUp(self):\n        self.client = Client()\n        self.user = User.objects.create_user(\n            username=\"test_user\", email=\"qwe@gmail.com\"\n        )\n        self.user.set_password(\"foopassword\")\n        self.user.save()\n        self.url = reverse(\"read_books\")\n\n    def test_redirect_if_not_rated(self):\n        \"\"\"Test If The read_books Redirects\n        Accordingly When No Book Is Rated\n        \"\"\"\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n        response = self.client.get(self.url)\n        self.assertRedirects(response, reverse(\"index\"))\n        self.client.logout()\n\n    def test_read_book_status_code(self):\n        \"\"\"Test The Status Code Of read_books\n        When Book Has Been Rated\n        \"\"\"\n        self.userRating = UserRating.objects.create(\n            user=self.user, bookid=\"2\", bookrating=\"4\"\n        )\n        self.userRating.save()\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n        response = self.client.get(self.url)\n        self.assertEqual(response.status_code, 200)\n        self.client.logout()\n\n\nclass AddBooksTestCase(TestCase):\n    \"\"\"Saved For Later Books View Test Case\"\"\"\n\n    def setUp(self):\n        self.client = Client()\n        self.user = User.objects.create_user(\n            username=\"test_user\", email=\"qwe@gmail.com\"\n        )\n        self.user.set_password(\"foopassword\")\n        self.user.save()\n        self.book = pd.read_csv(\n            os.path.join(settings.STATICFILES_DIRS[0] + \"/mainapp/dataset/books.csv\")\n        )\n        self.bookid = self.book.iloc[0][\"book_id\"]\n\n    def test_save_book_status(self):\n        \"\"\"Test the status code of save_book\n        When a book is Saved\n        \"\"\"\n        book_id = self.bookid\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n\n        response = self.client.post(\n            reverse(\"save_book\"),\n            data={\"bookid\": book_id},\n            HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n        )\n        self.assertEqual(response.status_code, 200)\n        self.assertIn(\"true\", response.content.decode(\"utf-8\"))\n        self.client.logout()\n\n    def test_after_remove(self):\n        \"\"\"Test the status code of\n        remove_saved_book When a book is removed\n        \"\"\"\n        book_id = self.bookid\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n\n        response = self.client.post(\n            reverse(\"remove_saved_book\"),\n            data={\"bookid\": book_id},\n            HTTP_X_REQUESTED_WITH=\"XMLHttpRequest\",\n        )\n        self.assertEqual(response.status_code, 200)\n        self.assertIn(\"true\", response.content.decode(\"utf-8\"))\n        self.client.logout()\n\n    def test_redirect_if_not_saved(self):\n        \"\"\"Test If The to_read Redirects\n        Accordingly When No Book Is Saved\n        \"\"\"\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n        response = self.client.get(reverse(\"to_read\"))\n        self.assertRedirects(response, reverse(\"index\"))\n        self.client.logout()\n\n    def test_to_read_status_if_saved(self):\n        \"\"\"Test the status code of to_read\n        When a book is Saved\n        \"\"\"\n        self.client.login(username=\"test_user\", password=\"foopassword\")\n        self.saveLater = SaveForLater.objects.create(user=self.user, bookid=\"2\")\n        self.saveLater.save()\n        response = self.client.get(reverse(\"to_read\"))\n        self.assertEqual(response.status_code, 200)\n        self.client.logout()\n"
  },
  {
    "path": "mainapp/urls.py",
    "content": "from django.urls import path\nfrom mainapp import views, views_ajax\n\nurlpatterns = [\n    path(\"\", views.index, name=\"index\"),\n    path(\"genre_books/<genre>\", views.genre_books, name=\"genre_books\"),\n    path(\"explore_books/\", views.explore_books, name=\"explore_books\"),\n    path(\n        \"book_recommendations/\", views.book_recommendations, name=\"book_recommendations\"\n    ),\n    path(\"library/rated_books\", views.read_books, name=\"read_books\"),\n    path(\"library/saved_books\", views.SaveList, name=\"to_read\"),\n]\n\n# Ajax Views\nurlpatterns += [\n    path(\"search_ajax/\", views_ajax.search, name=\"search_ajax\"),\n    path(\"book_summary_ajax/\", views_ajax.book_summary, name=\"summary_ajax\"),\n    path(\"book_details_ajax/\", views_ajax.get_book_details, name=\"book_details\"),\n    path(\"user_rate_book/\", views_ajax.user_rate_book, name=\"user_rate_book\"),\n    path(\"save_book/\", views_ajax.save_book, name=\"save_book\"),\n    path(\"remove_saved_book/\", views_ajax.remove_saved_book, name=\"remove_saved_book\"),\n]\n"
  },
  {
    "path": "mainapp/views.py",
    "content": "from django.shortcuts import render, redirect\nfrom django.contrib.auth.decorators import login_required\nfrom django.views.decorators.csrf import ensure_csrf_cookie\nfrom mainapp.helpers import (\n    genre_wise,\n    tfidf_recommendations,\n    get_book_dict,\n    get_rated_bookids,\n    combine_ids,\n    embedding_recommendations,\n    get_top_n,\n    popular_among_users,\n)\nfrom mainapp.models import UserRating, SaveForLater\nfrom django.contrib import messages\nfrom django.core.paginator import Paginator\n\n\nimport random\nimport operator\n\n\n@ensure_csrf_cookie\ndef index(request):\n    \"\"\"\n    View to render Homepage\n    \"\"\"\n    books = popular_among_users()\n    return render(request, \"mainapp/index.html\", {\"books\": books})\n\n\n@ensure_csrf_cookie\ndef genre_books(request, genre):\n    \"\"\"\n    View to render Books in a particular genre\n    \"\"\"\n    genre_topbooks = genre_wise(genre)\n    genre_topbooks = genre_topbooks.to_dict(\"records\")\n    context = {\n        \"genre\": genre.capitalize(),\n        \"genre_topbook\": genre_topbooks,\n    }\n    return render(request, \"mainapp/genre.html\", context)\n\n\n@ensure_csrf_cookie\ndef explore_books(request):\n    \"\"\"\n    View to Render Explore Page\n    Renders Top N Books\n    \"\"\"\n    N = 152\n    sample = get_top_n().sample(N).to_dict(\"records\")\n    return render(request, \"mainapp/explore.html\", {\"book\": sample})\n\n\n@login_required\n@ensure_csrf_cookie\ndef book_recommendations(request):\n    \"\"\"\n    View to render book recommendations\n\n    Count Vectorizer Approach:\n        1. Get Ratings of User\n        2. Shuffle by Top Ratings(For Randomness each time)\n        3. Recommend according to Top Rated Book\n    \"\"\"\n    user_ratings = list(\n        UserRating.objects.filter(user=request.user).order_by(\"-bookrating\")\n    )\n    random.shuffle(user_ratings)\n    best_user_ratings = sorted(\n        user_ratings, key=operator.attrgetter(\"bookrating\"), reverse=True\n    )\n\n    if len(best_user_ratings) < 4:\n        messages.info(request, \"Please rate atleast 5 books\")\n        return redirect(\"index\")\n    if best_user_ratings:\n        # If one or more book is rated\n        bookid = best_user_ratings[0].bookid\n        already_rated_books = get_rated_bookids(user_ratings)\n        # Get bookids based on TF-IDF weighing\n        tfidf_bookids = set(tfidf_recommendations(bookid))\n\n        # Shuffle again for randomness for second approach\n        random.shuffle(user_ratings)\n        best_user_ratings = sorted(\n            user_ratings, key=operator.attrgetter(\"bookrating\"), reverse=True\n        )\n        # Get Top 10 bookids based on embedding\n        embedding_bookids = set(embedding_recommendations(best_user_ratings))\n\n        best_bookids = combine_ids(\n            tfidf_bookids, embedding_bookids, already_rated_books\n        )\n        all_books_dict = get_book_dict(best_bookids)\n    else:\n        return redirect(\"index\")\n    return render(request, \"mainapp/recommendation.html\", {\"books\": all_books_dict})\n\n\n@login_required\n@ensure_csrf_cookie\ndef read_books(request):\n    \"\"\"View To Render Library Page\"\"\"\n    user_ratings = list(\n        UserRating.objects.filter(user=request.user).order_by(\"-bookrating\")\n    )\n    if len(user_ratings) == 0:\n        messages.info(request, \"Please rate some books\")\n        return redirect(\"index\")\n    if user_ratings:\n        rated_books = set(get_rated_bookids(user_ratings))\n        books = get_book_dict(rated_books)\n        num = len(books)\n        # Add pagination to the page showing 10 books\n        paginator = Paginator(books, 10)\n        page_number = request.GET.get(\"page\")\n        page_obj = paginator.get_page(page_number)\n    else:\n        return redirect(\"index\")\n    return render(request, \"mainapp/read.html\", {\"page_obj\": page_obj, \"num\": num})\n\n\ndef handler404(request, *args, **argv):\n    response = render(request, \"mainapp/error_handler.html\")\n    response.status_code = 404\n    return response\n\n\ndef handler500(request, *args, **argv):\n    response = render(request, \"mainapp/error_handler.html\")\n    response.status_code = 500\n    return response\n\n\ndef SaveList(request):\n    \"\"\"View to render Saved books page\"\"\"\n    user_ratings = list(\n        UserRating.objects.filter(user=request.user).order_by(\"-bookrating\")\n    )\n    rated_books = set(get_rated_bookids(user_ratings))\n    book = set(\n        SaveForLater.objects.filter(user=request.user).values_list(\"bookid\", flat=True)\n    )\n    book_id = list(book)\n    for i in range(len(book_id)):\n        if book_id[i] in rated_books:\n            saved_book = SaveForLater.objects.filter(\n                user=request.user, bookid=book_id[i]\n            )\n            saved_book.delete()\n            book_id.remove(book_id[i])\n    if len(book_id) == 0:\n        messages.info(request, \"Please Add Some Books\")\n        return redirect(\"index\")\n    books = get_book_dict(book_id)\n    total_books = len(books)\n    paginator = Paginator(books, 10)\n    page_number = request.GET.get(\"page\")\n    page_obj = paginator.get_page(page_number)\n    return render(\n        request, \"mainapp/saved_book.html\", {\"page_obj\": page_obj, \"num\": total_books}\n    )\n"
  },
  {
    "path": "mainapp/views_ajax.py",
    "content": "from django.http import JsonResponse\nfrom django.contrib.auth.decorators import login_required\nfrom mainapp.helpers import is_bookid_invalid, is_rating_invalid, get_rated_bookids\nimport BookRecSystem.settings as settings\nfrom mainapp.models import UserRating, SaveForLater\nfrom bs4 import BeautifulSoup\nimport pandas as pd\nimport os\nimport json\nimport requests\n\n\"\"\"\n    Production File Path :  staticfiles_storage.url(file)\n    Developement File Path : settings.STATICFILES_DIRS[0] + 'app/.../file'\n\"\"\"\nbook_path = os.path.join(settings.STATICFILES_DIRS[0] + \"/mainapp/dataset/books.csv\")\nuser_ratings_path = os.path.join(\n    settings.STATICFILES_DIRS[0] + \"/mainapp/csv/userratings.csv\"\n)\n\n\ndef is_ajax(request):\n    return request.META.get(\"HTTP_X_REQUESTED_WITH\") == \"XMLHttpRequest\"\n\n\ndef search(request):\n    \"\"\"\n    AJAX request for search bar functionality\n    \"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        query = request.POST.get(\"bookName\", None)\n        if not query:\n            return JsonResponse({\"success\": False}, status=200)\n        df_book = pd.read_csv(book_path)\n        top5_result = df_book[\n            df_book[\"original_title\"].str.contains(query, regex=False, case=False)\n        ][:5]\n        top5_result = json.dumps(top5_result.to_dict(\"records\"))\n\n        return JsonResponse({\"success\": True, \"top5_result\": top5_result}, status=200)\n\n\ndef book_summary(request):\n    \"\"\"\n    AJAX request for book summary\n    \"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        bookid = request.POST.get(\"bookid\", None)\n        if is_bookid_invalid(bookid):\n            return JsonResponse({\"success\": False}, status=200)\n        URL = \"https://www.goodreads.com/book/show/\" + bookid\n        page = requests.get(URL)\n        soup = BeautifulSoup(page.content, \"html.parser\")\n        div_container = soup.find(id=\"description\")\n        full_book_summary = \"\"\n        if not div_container:\n            return JsonResponse({\"success\": False}, status=200)\n        for spantag in div_container.find_all(\"span\"):\n            try:\n                # When text is too long, consider till last complete sentence\n                full_book_summary += spantag.text[: spantag.text.rindex(\".\")] + \". \"\n            except ValueError:\n                full_book_summary += spantag.text + \" \"\n            break\n        part_summary = \" \".join(full_book_summary.split()[:65]) + \" . . .\"\n        return JsonResponse({\"success\": True, \"booksummary\": part_summary}, status=200)\n\n\ndef get_book_details(request):\n    \"\"\"\n    AJAX request for book details\n    \"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        bookid = request.POST.get(\"bookid\", None)\n        if is_bookid_invalid(bookid):\n            return JsonResponse({\"success\": False}, status=200)\n\n        df_book = pd.read_csv(book_path)\n        book_details = df_book[df_book[\"book_id\"] == int(bookid)]\n        if not len(book_details):\n            return JsonResponse({\"success\": False}, status=200)\n\n        book_details = json.dumps(book_details.to_dict(\"records\"))\n        return JsonResponse({\"success\": True, \"book_details\": book_details}, status=200)\n\n\n@login_required\ndef user_rate_book(request):\n    \"\"\"\n    AJAX request when user rates book\n    \"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        bookid = request.POST.get(\"bookid\", None)\n        bookrating = request.POST.get(\"bookrating\", None)\n        if is_bookid_invalid(bookid) or is_rating_invalid(bookrating):\n            return JsonResponse({\"success\": False}, status=200)\n\n        # Using Inbuilt Model\n        query = UserRating.objects.filter(user=request.user).filter(bookid=bookid)\n        if not query:\n            # Create Rating\n            UserRating.objects.create(\n                user=request.user, bookid=bookid, bookrating=bookrating\n            )\n        else:\n            # Update Rating\n            rating_object = query[0]\n            rating_object.bookrating = bookrating\n            rating_object.save()\n        return JsonResponse({\"success\": True}, status=200)\n\n\ndef save_book(request):\n    \"\"\"AJAX request when user saves book\"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        bookid = request.POST.get(\"bookid\", None)\n        user_ratings = list(UserRating.objects.filter(user=request.user))\n        rated_books = set(get_rated_bookids(user_ratings))\n        if is_bookid_invalid(bookid) or bookid in rated_books:\n            return JsonResponse({\"success\": False}, status=200)\n\n        SaveForLater.objects.create(user=request.user, bookid=bookid)\n        return JsonResponse({\"success\": True}, status=200)\n\n\ndef remove_saved_book(request):\n    \"\"\"AJAX request when user removes book\"\"\"\n    if request.method == \"POST\" and is_ajax(request=request):\n        bookid = request.POST.get(\"bookid\", None)\n        if is_bookid_invalid(bookid):\n            return JsonResponse({\"success\": False}, status=200)\n\n        saved_book = SaveForLater.objects.filter(user=request.user, bookid=bookid)\n        saved_book.delete()\n        return JsonResponse({\"success\": True}, status=200)\n"
  },
  {
    "path": "manage.py",
    "content": "#!/usr/bin/env python\n\"\"\"Django's command-line utility for administrative tasks.\"\"\"\nimport os\nimport sys\n\n\ndef main():\n    \"\"\"Run administrative tasks.\"\"\"\n    os.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"BookRecSystem.settings\")\n    try:\n        from django.core.management import execute_from_command_line\n    except ImportError as exc:\n        raise ImportError(\n            \"Couldn't import Django. Are you sure it's installed and \"\n            \"available on your PYTHONPATH environment variable? Did you \"\n            \"forget to activate a virtual environment?\"\n        ) from exc\n    execute_from_command_line(sys.argv)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[tool.poetry]\nname = \"kitabe\"\nversion = \"0.1.0\"\ndescription = \"Book Recommendation System\"\nauthors = [\"maneprajakta <prajakta916mane1@gmail.com>\", \"Praful932 <praful.mohanan@gmail.com>\"]\nlicense = \"MIT\"\n\n[tool.poetry.dependencies]\npython = \"^3.8\"\nDjango = \"^4.1.2\"\ndjango-allauth = \"^0.51.0\"\ndjango-storages = \"^1.13.1\"\npandas = \"^1.5.0\"\nnumpy = \"^1.23.3\"\nbs4 = \"^0.0.1\"\npre-commit = \"^2.20.0\"\npylint = \"^2.15.4\"\ngunicorn = \"^20.1.0\"\nwhitenoise = \"^6.2.0\"\npsycopg2-binary = \"*\"\n\n[tool.poetry.dev-dependencies]\n\n[build-system]\nrequires = [\"poetry-core>=1.0.0\"]\nbuild-backend = \"poetry.core.masonry.api\"\n"
  },
  {
    "path": "requirements.txt",
    "content": "asgiref==3.5.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\nastroid==2.12.11 ; python_version >= \"3.8\" and python_version < \"4.0\"\nbackports-zoneinfo==0.2.1 ; python_version >= \"3.8\" and python_version < \"3.9\"\nbeautifulsoup4==4.11.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\nbs4==0.0.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ncertifi==2022.9.24 ; python_version >= \"3.8\" and python_version < \"4\"\ncffi==1.15.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ncfgv==3.3.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ncharset-normalizer==2.1.1 ; python_version >= \"3.8\" and python_version < \"4\"\ncolorama==0.4.5 ; python_version >= \"3.8\" and python_version < \"4.0\" and sys_platform == \"win32\"\ncryptography==38.0.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndefusedxml==0.7.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndill==0.3.5.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndistlib==0.3.6 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndjango-allauth==0.51.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndjango-storages==1.13.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\ndjango==4.1.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\nfilelock==3.8.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\ngunicorn==20.1.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nidentify==2.5.6 ; python_version >= \"3.8\" and python_version < \"4.0\"\nidna==3.4 ; python_version >= \"3.8\" and python_version < \"4\"\nisort==5.10.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\nlazy-object-proxy==1.7.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\nmccabe==0.7.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nnodeenv==1.7.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nnumpy==1.23.3 ; python_version < \"4.0\" and python_version >= \"3.8\"\noauthlib==3.2.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\npandas==1.5.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nplatformdirs==2.5.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\npre-commit==2.20.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\npsycopg2-binary==2.9.5 ; python_version >= \"3.8\" and python_version < \"4.0\"\npycparser==2.21 ; python_version >= \"3.8\" and python_version < \"4.0\"\npyjwt[crypto]==2.5.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\npylint==2.15.4 ; python_version >= \"3.8\" and python_version < \"4.0\"\npython-dateutil==2.8.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\npython3-openid==3.2.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\npytz==2022.4 ; python_version >= \"3.8\" and python_version < \"4.0\"\npyyaml==6.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nrequests-oauthlib==1.3.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\nrequests==2.28.1 ; python_version >= \"3.8\" and python_version < \"4\"\nsetuptools==65.6.3 ; python_version >= \"3.8\" and python_version < \"4.0\"\nsix==1.16.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nsoupsieve==2.3.2.post1 ; python_version >= \"3.8\" and python_version < \"4.0\"\nsqlparse==0.4.3 ; python_version >= \"3.8\" and python_version < \"4.0\"\ntoml==0.10.2 ; python_version >= \"3.8\" and python_version < \"4.0\"\ntomli==2.0.1 ; python_version >= \"3.8\" and python_version < \"3.11\"\ntomlkit==0.11.5 ; python_version >= \"3.8\" and python_version < \"4.0\"\ntypes-cryptography==3.3.23 ; python_version >= \"3.8\" and python_version < \"4.0\"\ntyping-extensions==4.4.0 ; python_version >= \"3.8\" and python_version < \"3.10\"\ntzdata==2022.4 ; python_version >= \"3.8\" and python_version < \"4.0\" and sys_platform == \"win32\"\nurllib3==1.26.12 ; python_version >= \"3.8\" and python_version < \"4\"\nvirtualenv==20.16.5 ; python_version >= \"3.8\" and python_version < \"4.0\"\nwhitenoise==6.2.0 ; python_version >= \"3.8\" and python_version < \"4.0\"\nwrapt==1.14.1 ; python_version >= \"3.8\" and python_version < \"4.0\"\n"
  },
  {
    "path": "setup.cfg",
    "content": "[flake8]\nexclude = .git,*migrations*,__pycache__,.vscode,bookenv\nmax-line-length = 1196\n[coverage:run]\nomit =\n    BookRecSystem/*\n    *env/*\n    mainapp/tests.py\n    mainapp/urls.py\n    manage.py"
  },
  {
    "path": "static/mainapp/css/explore.css",
    "content": ".hide {\n    display: none;\n}\n\n.centre {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n    padding: 1rem;\n}\n\n.data:hover+.hide {\n    display: block;\n    color: red;\n}\n\n.hide:hover {\n    display: block;\n    color: red;\n}\n\n.cover-img-size {\n    width: 200px;\n    height: 300px;\n    margin-right: 22px;\n    margin-top: 2px;\n    margin-bottom: 4px;\n}\n\n.content {\n    width: 200px;\n}\n\n.title {\n    font-family: \"Sora\", sans-serif;\n    color: #d7722c;\n}\n\n.author {\n    font-family: \"Rockwell\", serif;\n    font-weight: bold;\n}\n\n#demo,\n#demo2,\n#demo3 {\n    padding-left: 6.5%;\n    padding-bottom: 1%;\n}\n\n.rateYo {\n    margin-left: auto;\n    margin-right: auto;\n    display: none;\n}\n\n.small-screen {\n    display: none;\n}\n\n.card-deck {\n    padding-left: 5%;\n    padding-right: 5%;\n    padding-bottom: 2%;\n}\n\n.card {\n    transition: 0.5s;\n    cursor: pointer;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n}\n\n.card-img {\n    flex-shrink: 0;\n    bottom: -35px;\n    left: 35px;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    transition: 0.3s ease;\n    width: 85%;\n    height: 60%;\n    margin: 0 auto;\n}\n\n.card-img:hover {\n    transform: scale(1.07);\n}\n\n.card-horizontal {\n    display: flex;\n    flex: 1 1 auto;\n}\n\n.card-body-wrap {\n    display: flex;\n}\n\n.card-title {\n    font-family: \"Sora\", sans-serif;\n    font-size: large;\n    color: #d7722c;\n}\n\n.card::before,\n.card::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    transform: scale3d(0, 0, 1);\n    transition: transform 0.3s ease-out 0s;\n    content: \"\";\n    pointer-events: none;\n}\n\n.card::before {\n    transform-origin: left top;\n}\n\n.card::after {\n    transform-origin: right bottom;\n}\n\n.card:hover::before,\n.card:hover::after,\n.card:focus::before,\n.card:focus::after {\n    transform: scale3d(1, 1, 1);\n}\n\n.more-details {\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 11px;\n    border-radius: 20px;\n    position: absolute;\n    bottom: 10px;\n    right: 2%;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid #3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    display: inline-block;\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 11px;\n    border-radius: 20px;\n    position: absolute;\n    bottom: 10px;\n    left: 4%;\n    padding: 8px;\n}\n\n.rating-block.btn,\n.btn.more-details {\n    padding: 8px;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.card-text {\n    font-family: \"Rockwell\", serif;\n    color: black;\n    font-weight: bold;\n    font-size: 15px;\n    padding-bottom: 1px;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    display: -webkit-box;\n    -webkit-line-clamp: 3;\n    /* number of lines to show */\n    -webkit-box-orient: vertical;\n}\n\n@media (max-width: 420px) {\n    .cover-img-size {\n        margin-left: 53px;\n    }\n    .content {\n        margin-left: 53px;\n    }\n    .hide {\n        display: block;\n    }\n    .rating-block {\n        margin-left: 5%;\n    }\n    .more-details {\n        right: 15%;\n    }\n    .large-screen {\n        display: none;\n    }\n    .small-screen {\n        display: inline;\n    }\n    .card,\n    .card-deck {\n        margin: auto;\n    }\n    .cover-img-size {\n        margin: auto;\n        margin-top: 8%;\n    }\n    .row {\n        margin-bottom: 5%;\n    }\n}\n\n@media (max-width: 390px) {\n    .card,\n    .card-deck {\n        margin-left: -1.5%;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/genre.css",
    "content": ".genre-head,\n.topbook-head {\n    font-family: \"Lobster\", cursive;\n    font-size: 300%;\n    background-color: #d7722c;\n    margin-top: 0px;\n    color: white;\n}\n\n.card-horizontal {\n    display: flex;\n    flex: 1 1 auto;\n}\n\n.card-img {\n    flex-shrink: 0;\n    bottom: -35px;\n    left: 35px;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    transition: 0.3s ease;\n    width: 85%;\n    height: 60%;\n    margin: 0 auto;\n}\n\n.card-img:hover {\n    transform: scale(1.07);\n}\n\n.card-body-wrap {\n    display: flex;\n}\n\n.card {\n    transition: 0.5s;\n    cursor: pointer;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n}\n\n.card-title {\n    font-family: \"Sora\", sans-serif;\n    font-size: large;\n    color: #d7722c;\n}\n\n.card-text {\n    font-family: \"Rockwell\", serif;\n    color: black;\n    font-weight: bold;\n    font-size: 15px;\n    padding-bottom: 1px;\n}\n\n.card::before,\n.card::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    transform: scale3d(0, 0, 1);\n    transition: transform 0.3s ease-out 0s;\n    content: \"\";\n    pointer-events: none;\n}\n\n.card::before {\n    transform-origin: left top;\n}\n\n.card::after {\n    transform-origin: right bottom;\n}\n\n.card:hover::before,\n.card:hover::after,\n.card:focus::before,\n.card:focus::after {\n    transform: scale3d(1, 1, 1);\n}\n\n.more-details {\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 11px;\n    border-radius: 20px;\n    position: absolute;\n    bottom: 10px;\n    right: 10%;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid #3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    display: inline-block;\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 11px;\n    border-radius: 20px;\n    position: absolute;\n    padding: 8px;\n    bottom: 10px;\n    left: 10%;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.rateYo {\n    display: none;\n}\n\n.card-deck {\n    padding-left: 5%;\n    padding-right: 5%;\n    padding-bottom: 2%;\n}\n\n.card-text {\n    overflow: hidden;\n    text-overflow: ellipsis;\n    display: -webkit-box;\n    -webkit-line-clamp: 3;\n    /* number of lines to show */\n    -webkit-box-orient: vertical;\n}\n\n@media screen and (max-width: 600px) {\n    .card-text {\n        margin-bottom: 10px !important;\n    }\n    .rating-block {\n        left: 5%;\n        font-size: 12px;\n    }\n    .more-details {\n        right: 10px;\n        font-size: 12px;\n    }\n    .card-deck {\n        padding-right: 0;\n        padding-left: 8%;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/index.css",
    "content": "/*---------------------------------------- preloader ----------------------------------*/\n\n.preloader-container {\n    position: fixed;\n    top: 0;\n    left: 0;\n    height: 100vh;\n    width: 100vw;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin: 0;\n    background-color: #FFDAB9;\n    z-index: 99;\n}\n\n.spinner {\n    width: 270px;\n    height: 45px;\n    text-align: center;\n}\n\n.rect1,\n.rect2,\n.rect3,\n.rect4,\n.rect5 {\n    height: 45px;\n    width: 12px;\n    display: inline-block;\n    -webkit-animation: updown 1.2s infinite;\n    animation: updown 1.2s ease infinite;\n}\n\n.stand {\n    width: 90px;\n    height: 9px;\n    background: #000;\n    display: block;\n    border-radius: 15px;\n    margin: auto;\n}\n\n.spinner .rect2 {\n    -webkit-animation-delay: -1.1s;\n    animation-delay: -1.1s;\n}\n\n.spinner .rect3 {\n    -webkit-animation-delay: -1.0s;\n    animation-delay: -1.0s;\n}\n\n.spinner .rect4 {\n    -webkit-animation-delay: -0.9s;\n    animation-delay: -0.9s;\n}\n\n.spinner .rect5 {\n    -webkit-animation-delay: -0.8s;\n    animation-delay: -0.8s;\n}\n\n@keyframes updown {\n    0% {\n        transform: translateY(0%);\n    }\n    40% {\n        transform: translateY(-100%);\n    }\n    100% {\n        transform: translateY(0%);\n    }\n}\n\n@-webkit-keyframes updown {\n    0% {\n        transform: translateY(0%);\n    }\n    40% {\n        transform: translateY(100%);\n    }\n    100% {\n        transform: translateY(0%);\n    }\n}\n\n\n/* ---------------------- banner ------------------------------------- */\n\n@media screen and (min-width: 250px) {\n    .banner .carousel-item {\n        height: 180px;\n    }\n    .banner .banner-img {\n        height: 82%;\n        object-fit: cover;\n    }\n}\n\n@media screen and (min-width: 620px) {\n    .banner .carousel-item {\n        height: 240px;\n    }\n    .banner .banner-img {\n        height: 100%;\n        object-fit: cover;\n    }\n}\n\n@media screen and (min-width:1000px) {\n    .banner .carousel-item,\n    .banner .banner-img {\n        height: auto;\n    }\n}\n\n\n/* ---------------------- carousel -------------------------------------*/\n\n.carousel img {\n    width: 100%;\n    height: auto;\n}\n\n#demo img {\n    height: 160px;\n}\n\n.genre-head,\n.topbook-head {\n    font-family: \"Lobster\", cursive;\n}\n\n.heading-genre {\n    padding: 30px 30px;\n    font-size: 47px;\n}\n\n.genre-container,\n.top-books {\n    background-color: #153450;\n    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);\n}\n\n.col-lg-3:hover {\n    transform: scale(1.07);\n    transition: all 0.5s ease;\n    border-radius: 10px;\n    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);\n}\n\n.top-books-carousel {\n    align-items: center;\n    margin-left: -13%;\n    margin-right: -13%;\n}\n\n.navbar-nav .nav-link {\n    color: black;\n}\n\n\n/* Genre wise */\n\n.carousel-indicators {\n    bottom: -28px;\n}\n\nol.carousel-indicators li {\n    width: 7px;\n    height: 7px;\n    border: none;\n    border-radius: 10px;\n    background-color: #dc3545;\n    opacity: 0.6;\n    margin: 0 5px;\n}\n\nol.carousel-indicators li.active {\n    height: 7px;\n    width: 20px;\n}\n\n.inner-row {\n    place-content: center;\n    height: auto;\n    min-width: auto;\n}\n\n.genre-img {\n    width: 80%;\n    height: auto;\n    margin: 1rem auto;\n}\n\n#carousel-2 .carousel-control-prev,\n#carousel-2 .carousel-control-next {\n    width: 50px;\n    height: 50px;\n    top: 50%;\n    border-radius: 50%;\n    background-color: #dc3545;\n}\n\n@media screen and (min-width: 992px) {\n    .carousel-indicators {\n        bottom: -8px;\n    }\n    .inner-row {\n        height: 17rem;\n        min-width: 57rem;\n    }\n    #carousel-2 .carousel-control-prev,\n    #carousel-2 .carousel-control-next {\n        top: 6.5rem;\n        transform: translateY(0px);\n    }\n}\n\n\n/*---------------------------------------- book card ----------------------------------*/\n\n.card {\n    transition: 0.5s;\n    cursor: pointer;\n    border-radius: 3px;\n    height: 300px;\n    display: inline-flex;\n}\n\n.card-img {\n    flex-shrink: 0;\n    bottom: -35px;\n    left: 35px;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    transition: 0.3s ease;\n    height: 200px;\n    width: 100px;\n}\n\n.card-title {\n    font-family: \"Sora\", sans-serif;\n    font-size: x-large;\n    color: #d7722c;\n}\n\n.card-img:hover {\n    transform: scale(1.07);\n}\n\n.card-body-wrap {\n    display: flex;\n}\n\n.card-text {\n    font-family: \"Rockwell\", serif;\n    color: black;\n    font-weight: bold;\n    font-size: large;\n}\n\n.card:hover {\n    transform: scale(1.02);\n    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);\n}\n\n.card::before,\n.card::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    transform: scale3d(0, 0, 1);\n    transition: transform 0.3s ease-out 0s;\n    content: \"\";\n    pointer-events: none;\n}\n\n.card::before {\n    transform-origin: left top;\n}\n\n.card::after {\n    transform-origin: right bottom;\n}\n\n.card:hover::before,\n.card:hover::after,\n.card:focus::before,\n.card:focus::after {\n    transform: scale3d(1, 1, 1);\n}\n\n.more-details {\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 14px;\n    border-radius: 20px;\n    position: absolute;\n    bottom: 10px;\n    right: 10px;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid#3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    display: inline-block;\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 14px;\n    border-radius: 20px;\n    position: absolute;\n    bottom: 10px;\n    right: 35%;\n    padding: 6px 12px;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.rateYo {\n    display: none;\n}\n\n@media only screen and (min-width: 996px) {\n    .col-md-3point9 {\n        max-width: 33%;\n    }\n    #demo .card-title {\n        margin-top: 0rem;\n    }\n}\n\n\n/* media query*/\n\n@media screen and (max-width: 575px) {\n    .col-lg-3:hover {\n        transform: scale(1.03);\n    }\n    #demo .card-title {\n        margin-top: 2rem;\n    }\n}\n\n@media screen and (max-width: 600px) {\n    .genre-head {\n        font-size: 29px;\n    }\n    .heading-genre {\n        padding: 9px 9px;\n        font-size: 29px;\n    }\n    .genre-container:hover {\n        transform: none;\n    }\n    /* card image */\n    .card-img {\n        height: 240px;\n        width: 120px !important;\n    }\n    .card-body {\n        margin-top: -220px;\n        margin-left: 130px;\n    }\n    .card-title {\n        font-size: 18px;\n    }\n    .rating-block {\n        padding-top: 1px;\n        right: 50%;\n        padding: 6px 12px;\n    }\n    .more-details {\n        margin-top: 2px;\n        right: 30px;\n    }\n    .top-books-carousel {\n        align-items: center;\n        margin-left: -9%;\n        margin-right: -9%;\n    }\n}\n\n@media screen and (min-width: 600px) {\n    #demo .card-title {\n        margin-top: 0rem;\n        margin-bottom: 0rem;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/layout.css",
    "content": "html,\nbody {\n    background-color: #ffdab9;\n    height: 100%;\n    max-width: 100%;\n    overflow-x: hidden;\n}\n\n#navbarNav {\n    float: right;\n}\n\n\n/* Custom Scrollbar */\n\nbody::-webkit-scrollbar {\n    width: 13px;\n    background-color: #fff;\n}\n\nbody::-webkit-scrollbar-thumb {\n    border-radius: 10px;\n    background-color: #FE7D6A;\n}\n\nbody::-webkit-scrollbar-thumb:hover {\n    background-color: #f86751;\n}\n\n\n/* For Firefox */\n\nbody {\n    overflow-y: scroll;\n    scrollbar-color: #ec9108 rgb(255, 255, 255);\n    scrollbar-width: thin;\n}\n\n\n/* nav bar css */\n\n.nav-item {\n    display: flex !important;\n    flex-direction: column !important;\n    align-items: center !important;\n    font-family: 'Lato', sans-serif;\n}\n\n.navbrandimg {\n    width: 94px;\n}\n\n.navbar-toggler {\n    border-color: black;\n    background-color: white;\n}\n\n.img-book {\n    height: 200px !important;\n}\n\n.model-rate {\n    position: inherit !important;\n    margin-bottom: 12px !important;\n    margin-top: 12px !important;\n}\n\n\n/*-------------------------Drop down library -----------------------*/\n\n.dropdown:hover .dropdown-menu {\n    display: block;\n}\n\n.dropdown-item:hover {\n    text-shadow: 2px 2px 5px #d7722c;\n    background-color: peachpuff;\n}\n\n\n/* -------------------------search bar-----------------------  */\n\n.searchbar {\n    font-family: \"Kumbh Sans\", sans-serif;\n}\n\n#bookrating {\n    padding-top: 2%;\n}\n\n#bookName {\n    border-radius: 50px;\n}\n\n#searchdropdown {\n    margin-left: 50%;\n    width: 260px;\n}\n\n#searchdropdown #bookName {\n    width: 100%;\n    font-size: 16px;\n    padding: 12px 16px;\n    border: 1px solid #ddd;\n}\n\n#searchdropdown .dropdown-content {\n    display: block;\n    position: absolute;\n    background-color: #f1f1f1;\n    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);\n    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);\n    z-index: 1;\n    border-radius: 10px;\n    max-width: 260.33px;\n}\n\n#searchdropdown .dropdown-content a {\n    color: black;\n    padding: 12px 16px;\n    text-decoration: none;\n    display: block;\n}\n\n#searchdropdown .dropdown-content a:hover {\n    background-color: #ddd;\n    border-radius: 10px;\n}\n\n.modal {\n    line-height: 1.5;\n}\n\n.modal .modal-header {\n    display: -webkit-box;\n    display: -ms-flexbox;\n    display: flex;\n    padding: 1rem 1rem;\n    background-color: #ffc107;\n}\n\n.modal .modal-title {\n    padding: 0.3rem;\n    margin: 0;\n    font-size: 1.15rem;\n    color: #fff;\n}\n\n.modal .close {\n    opacity: 1;\n    padding: 1rem 1rem;\n    margin: -1rem -1rem -1rem auto;\n    cursor: pointer;\n    background-color: transparent;\n    border: 0;\n    font-size: 1.5rem;\n    font-weight: 700;\n    text-shadow: 0 1px 0 #fff;\n}\n\n.modal-footer {\n    color: white;\n}\n\n#save-book-button {\n    display: inline-block;\n    text-align: center;\n    background-color: #ffc107;\n    font-weight: 600;\n    font-size: 11px;\n    border-radius: 20px;\n    padding: 8px;\n    margin-left: 10px;\n    margin-bottom: 10px;\n    margin-top: 10px;\n}\n\n\n/*  -------------------------------------------------------------------------------fotter css -------------------------------------------------*/\n\n\n/*FOOTER*/\n\n.footer-content {\n    padding: 15px;\n}\n\nstrong {\n    color: red;\n}\n\nfooter {\n    background-color: black;\n    color: white;\n    margin-top: 10%;\n    text-align: center;\n}\n\nfooter a {\n    color: #fff;\n    font-size: 14px;\n    transition-duration: 0.2s;\n    padding: 3px;\n}\n\nfooter a:hover {\n    color: #fa944b;\n    text-decoration: none;\n}\n\n.copy {\n    font-size: 12px;\n}\n\n\n/* media query */\n\n@media screen and (max-width: 768px) and (min-width: 600px) {\n    #searchdropdown #bookName {\n        position: relative;\n        top: 0px;\n        right: 75px;\n        margin: 10px;\n    }\n    .navbar-light .navbar-toggler {\n        position: absolute;\n        right: 1rem;\n        top: 1.4rem;\n    }\n    .navbrandimg {\n        position: absolute;\n        top: 15px;\n    }\n    .nav-icon-s {\n        display: none;\n    }\n    li.nav-item {\n        margin-top: -25px;\n        margin-bottom: 15px;\n    }\n}\n\n@media screen and (max-width: 600px) {\n    #searchdropdown {\n        margin-left: 8%;\n        padding-left: 0%;\n        width: 200px;\n    }\n    .navbar-brand {\n        width: 8px;\n        margin-right: 28px;\n        padding-left: 0;\n    }\n    .navbrandimg {\n        width: 65px;\n        padding-right: 5px;\n    }\n    .img-book {\n        height: 140px !important;\n    }\n    .nav-icon-s {\n        display: none;\n    }\n    .nav-link {\n        margin-top: -2px;\n        margin-top: -25px;\n    }\n    .nav-link:hover {\n        text-decoration: underline;\n        font-weight: 100;\n    }\n    body::-webkit-scrollbar {\n        width: 5px;\n    }\n}\n\nbody {\n    scroll-behavior: smooth;\n}\n\n#topBtn {\n    display: none;\n    position: fixed;\n    bottom: 1rem;\n    right: 1.5rem;\n    z-index: 100;\n    border: 0.1rem solid white;\n    outline: none;\n    background-color: black;\n    color: white;\n    cursor: pointer;\n    padding: 0.2rem 0.8rem 0.2rem 0.8rem;\n    border-radius: 30rem;\n    font-size: 1.2rem;\n}\n\n@media screen and (max-width: 760px) {\n    #topBtn {\n        right: 1rem;\n    }\n}\n\n@media screen and (min-width:800px) {\n    #topBtn:hover {\n        background-color: #ff6666;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/login.css",
    "content": ".account-block {\n    margin: auto;\n    height: 80%;\n    width: 70%;\n    background-color: white;\n}\n\n.signin-block {\n    text-align: center;\n}\n\n.img-block {\n    color: white;\n    background-size: cover;\n    background-position: center;\n}\n\n.btn-bot {\n    font-family: \"Fredoka One\", cursive;\n    position: absolute;\n    margin-left: -45px;\n    left: 50%;\n    padding: 5px 10px 5px 10px;\n    border: 2px solid white;\n    border-radius: 10px;\n    bottom: 25px;\n    text-decoration: none !important;\n    color: white;\n}\n\n.btn-bot:hover {\n    color: black;\n    border: 2px solid black;\n    background-color: rgba(255, 255, 255, 0.891);\n}\n\n.welcome {\n    font-family: \"Pacifico\", cursive;\n    position: relative;\n    top: 12%;\n    left: 28%;\n    border-radius: 50px;\n    font-size: 2.2rem;\n    background-color: #ffdab9;\n    width: 44%;\n}\n\nlabel {\n    font-family: \"Kalam\", cursive;\n    font-size: 1.2em;\n}\n\n.form-group {\n    padding: 6% 8% 8% 8%;\n    position: relative;\n    display: inline-block;\n    top: 80px;\n    color: black;\n}\n\n#id_login,\n#id_password {\n    border-top: none;\n    border-left: none;\n    border-right: none;\n    color: #000;\n}\n\n.loginbutton {\n    font-family: \"Fredoka One\", cursive;\n    padding: 8px 10px 5px 10px;\n    font-size: 1rem;\n    margin-bottom: 1.6rem;\n    margin-top: 1rem;\n    border: 2px solid white;\n    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5);\n    border: 3px solid #fff;\n    color: #fff;\n    background: rgba(1, 1, 1);\n    border-radius: 15px;\n    outline: none;\n}\n\n.loginbutton:hover {\n    background-color: #ffdab9;\n    color: black;\n    border: 3px solid black;\n}\n\nfa-google {\n    padding-right: 5px;\n}\n\n.googlebutton {\n    position: relative;\n    background-color: #f25f5c;\n    font-family: \"Fredoka One\", cursive;\n    color: white;\n    padding: 7px 5px;\n    border: 2px solid white;\n    border-radius: 15px;\n    text-decoration: none !important;\n    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5);\n    border: 3px solid #fff;\n    bottom: -1%;\n    left: 3px;\n}\n\n.forgotpassword {\n    font-family: 'Raleway', sans-serif;\n    font-size: 15px;\n    position: relative;\n    left: 30px;\n    top: 10px;\n}\n\n.googlebutton:hover {\n    color: #f25f5c;\n    background-color: white;\n    border: 3px solid #f25f5c;\n}\n\nstrong {\n    color: red;\n}\n\n@media only screen and (max-width: 1200px) {\n    .img-block {\n        display: none;\n    }\n    .googlebutton {\n        bottom: 2%;\n    }\n}\n\n@media only screen and (max-width: 900px) {\n    .loginbutton {\n        font-family: \"Fredoka One\", cursive;\n        padding: 8px 10px 5px 10px;\n        font-size: 1rem;\n        margin-bottom: 2rem;\n        margin-top: 1rem;\n    }\n    .form-group {\n        padding: 5% 5% 13% 5%;\n        margin-top: -1rem;\n    }\n    .account-block {\n        margin: auto;\n        height: 70%;\n        background-color: white;\n    }\n    .welcome {\n        font-size: 1.5rem;\n        width: 40%;\n        left: 30%;\n    }\n    .googlebutton {\n        bottom: 5%;\n    }\n}\n\n@media only screen and (max-width: 600px) {\n    .loginbutton {\n        font-family: \"Fredoka One\", cursive;\n        padding: 8px 10px 5px 10px;\n        font-size: 1rem;\n        margin-bottom: 5rem;\n        margin-top: 1rem;\n        margin-left: -1rem;\n    }\n    .welcome {\n        font-size: 1.75rem;\n        margin-top: -2rem;\n    }\n    .form-group {\n        padding: 7% 5% 5% 5%;\n    }\n    .forgotpassword {\n        font-size: 16px;\n        position: relative;\n        left: 30px;\n        top: 10px;\n    }\n    .welcome {\n        font-size: 1.5rem;\n        width: 60%;\n        left: 20%;\n    }\n}\n\n::placeholder {\n    color: #000;\n    font-weight: normal;\n}"
  },
  {
    "path": "static/mainapp/css/password_reset.css",
    "content": ".heading {\n  font-family: \"Lobster\", cursive;\n  font-size: xx-large;\n}\n\n.resetButton {\n  font-family: \"Fredoka One\", cursive;\n  padding: 5px 10px 5px 10px;\n  background-color: #09bc8a;\n  color: white;\n  border-radius: 25px;\n}\n\n#id_email {\n  border-top: none;\n  border-left: none;\n  border-right: none;\n  text-align: center;\n  height: 35px;\n}\n\nlabel {\n  font-family: \"Kalam\", cursive;\n  font-size: 35px;\n}\n\n.content {\n  text-align: center;\n  font-family: \"Sora\", sans-serif;\n  font-size: 20px;\n}\n\n.form-content {\n  text-align: center;\n}\n\n.head2 {\n  padding-top: 8%;\n}\n\n.head3 {\n  padding-top: 5%;\n  padding-bottom: 3%;\n}\n\n.reset {\n  padding-top: 3%;\n  padding-bottom: 19%;\n}\n\n.pass-form {\n  padding-top: 5%;\n  padding-bottom: 13.5%;\n}\n\n@media screen and (max-width: 600px) {\n  .head3 {\n    padding-bottom: 32%;\n  }\n  .reset {\n    padding-top: 15%;\n    padding-bottom: 80%;\n  }\n  .done {\n    padding-bottom: 110% !important;\n  }\n  .pass-form {\n    padding-bottom: 57%;\n  }\n}\n"
  },
  {
    "path": "static/mainapp/css/read.css",
    "content": ".card-deck {\n    padding-left: 3.5%;\n}\n\n.genre-head,\n.topbook-head {\n    font-family: \"Lobster\", cursive;\n    font-size: 300%;\n    background-color: #d7722c;\n    margin-top: 0px;\n    color: white;\n}\n\n.card-img {\n    flex-shrink: 0;\n    bottom: -35px;\n    left: 35px;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    transition: 0.3s ease;\n    max-width: 100%;\n    max-height: 232px;\n    margin: 0;\n    padding: 0;\n}\n\n.card {\n    transition: 0.5s;\n    cursor: pointer;\n    border-radius: 3px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    margin-left: auto;\n    margin-right: auto;\n}\n\n.card-title {\n    font-family: \"Sora\", sans-serif;\n    font-size: 1.5rem;\n    color: #d7722c;\n    padding-bottom: 20px;\n}\n\n.card-text {\n    font-family: \"Rockwell\", serif;\n    color: black;\n    font-weight: bold;\n    font-size: 1 rem;\n    padding-bottom: 25px;\n}\n\n.card::before,\n.card::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    transform: scale3d(0, 0, 1);\n    transition: transform 0.3s ease-out 0s;\n    content: \"\";\n    pointer-events: none;\n}\n\n.card::before {\n    transform-origin: left top;\n}\n\n.card::after {\n    transform-origin: right bottom;\n}\n\n.card:hover::before,\n.card:hover::after,\n.card:focus::before,\n.card:focus::after {\n    transform: scale3d(1, 1, 1);\n}\n\n.more-details {\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 1rem;\n    border-radius: 20px;\n    margin-right: 20px;\n    margin-left: 30px;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid #3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    display: inline-block;\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 1rem;\n    border-radius: 20px;\n    padding: 8px;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.rateYo {\n    display: none;\n}\n\n.card-text {\n    overflow: hidden;\n    text-overflow: ellipsis;\n    display: -webkit-box;\n    -webkit-line-clamp: 3;\n    /* number of lines to show */\n    -webkit-box-orient: vertical;\n}\n\n.link {\n    background-color: white;\n    color: #d7722c;\n}\n\n.link:hover {\n    color: #d7722c;\n    background-color: #e5e4e2;\n}\n\n.des {\n    background-color: #d7722c;\n    color: white;\n}\n\n.pagination {\n    margin-top: 50px;\n}\n\n@media screen and (max-width: 600px) {\n    .more-details {\n        font-size: 12px;\n        right: 10px;\n        position: absolute;\n        bottom: 10px;\n    }\n    .rating-block {\n        left: 10%;\n        font-size: 12px;\n        position: absolute;\n        bottom: 10px;\n    }\n    .card-deck {\n        padding-left: 0%;\n    }\n    .card-text {\n        margin-bottom: 10px !important;\n        font-size: 14px;\n    }\n    .card-title {\n        padding-bottom: 0;\n        font-size: large;\n    }\n    .card {\n        margin: 50px;\n    }\n    .card img {\n        height: auto;\n        width: 100%;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/recommendation.css",
    "content": "@import url(\"https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap\");\n@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);\n* {\n    outline: none;\n    box-sizing: border-box;\n}\n\n.heading {\n    font-family: \"Lobster\", cursive;\n    font-size: 300%;\n    background-color: #d7722c;\n    margin-top: 0px;\n    color: white;\n}\n\n.cover-img {\n    max-width: 100%;\n}\n\n.book-cell {\n    position: relative;\n    display: flex;\n    padding: 25px;\n    width: 33.33%;\n    height: 250px;\n    background-color: #133050;\n}\n\n.book-photo {\n    width: 180px;\n    flex-shrink: 0;\n    bottom: -35px;\n    left: 35px;\n    border-radius: 2px;\n    box-shadow: -2px 6px 19px 0px #7f818e;\n    transition: 0.3s ease;\n}\n\n.book-photo:hover {\n    transform: scale(1.03);\n}\n\n.book-img {\n    flex-shrink: 0;\n}\n\n.book-title {\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    overflow: hidden;\n    color: #ffffff;\n    font-weight: 600;\n    font-size: larger;\n}\n\n.book-author {\n    margin-top: 3px;\n    font-size: 18px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    overflow: hidden;\n}\n\n.book-content {\n    padding: 0 20px;\n    color: #ffffff;\n    overflow: hidden;\n}\n\n.book-voters {\n    color: #fff;\n    vertical-align: sub;\n    font-size: 18px;\n    margin-left: 7px;\n    white-space: nowrap;\n    margin-top: 7px;\n}\n\n.book-see {\n    margin-top: 10px;\n    text-align: center;\n    background-color: #fff;\n    color: #d7722c;\n    font-weight: 600;\n    padding: 8px;\n    font-size: 14px;\n    width: 160px;\n    border-radius: 20px;\n}\n\n.book-see:hover {\n    color: black;\n}\n\n@media (max-width: 1103px) {\n    .book-cell {\n        width: 60%;\n    }\n}\n\n@media (max-width: 765px) {\n    .book-cell {\n        width: 80%;\n    }\n}\n\n@media (max-width: 575px) {\n    .book-cell {\n        width: 100%;\n    }\n}\n\n@media (max-width: 458px) {\n    .book-photo {\n        width: 180px;\n    }\n}\n\n@media (max-width: 421px) {\n    .book-see {\n        width: 120px;\n        font-size: 13px;\n    }\n    .book-photo {\n        width: 130px;\n    }\n    .more-details {\n        font-size: 13px !important;\n        right: 22% !important;\n    }\n    .rating-block {\n        font-size: 13px !important;\n    }\n}\n\n.more-details {\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 15px;\n    border-radius: 20px;\n    position: absolute;\n    right: 26%;\n    margin-top: 20%;\n    bottom: 70px;\n    margin-right: -12px;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid #3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 15px;\n    border-radius: 20px;\n    padding: 8px;\n    bottom: 10px;\n    position: absolute;\n    left: 50%;\n}\n\n.more-details {\n    padding-left: -2px;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.rateYo {\n    display: none;\n}"
  },
  {
    "path": "static/mainapp/css/saved_book.css",
    "content": ".genre-head {\n    font-family: \"Lobster\", cursive;\n    font-size: 300%;\n    background-color: #d7722c;\n    margin-top: 0px;\n    color: white;\n}\n\n#sekil img {\n    padding-left: 10px;\n    margin-top: -60px;\n    width: 200px;\n    height: 260px;\n    box-shadow: 2px 2px 2px #9e9e9e;\n    -webkit-box-shadow: 5px 5px 3px #9e9e9e;\n    -moz-box-shadow: 3px 3px 1px #9e9e9e;\n}\n\n.obsu {\n    margin-top: 70px;\n    width: 550px;\n    background-color: white;\n    border-radius: 10px;\n    margin-left: 6.5%;\n}\n\n#book_name {\n    margin-top: -190px;\n    padding-left: 220px;\n    font-family: \"Sora\", sans-serif;\n    font-size: 1.2rem;\n    color: #d7722c;\n}\n\n#author_name {\n    padding-left: 220px;\n    font-family: \"Rockwell\", serif;\n    color: black;\n    font-weight: bold;\n    font-size: 1 rem;\n    padding-bottom: 25px;\n    padding-top: 9px;\n}\n\n#content {\n    display: absolute;\n}\n\n.remove {\n    margin-top: 10px;\n    background-color: red;\n    text-align: center;\n    font-weight: 600;\n    font-size: 1rem;\n    border-radius: 20px;\n    color: #fff;\n    margin-left: 53%;\n    margin-bottom: 3%;\n}\n\n.remove:hover {\n    color: red;\n    background: white;\n    border: 2px solid red;\n    text-shadow: 1px 1px 3px #ffcccb;\n}\n\n.more-details {\n    margin-left: 40%;\n    text-align: center;\n    background-color: #3d348b;\n    color: #fff;\n    font-weight: 600;\n    font-size: 1rem;\n    border-radius: 20px;\n    margin-right: 20px;\n}\n\n.more-details:hover {\n    color: #3d348b;\n    background: white;\n    border: 2px solid #3d348b;\n    text-shadow: 1px 1px 3px #727ff0;\n}\n\n.rating-block {\n    display: inline-block;\n    text-align: center;\n    background-color: #31c2cf;\n    font-weight: 600;\n    font-size: 1rem;\n    border-radius: 20px;\n    padding: 8px;\n}\n\n.rating-block:hover {\n    text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);\n    transition: all 0.4s ease 0s;\n}\n\n.rateYo {\n    display: none;\n}\n\n.link {\n    background-color: white;\n    color: #d7722c;\n}\n\n.link:hover {\n    color: #d7722c;\n    background-color: #e5e4e2;\n}\n\n.des {\n    background-color: #d7722c;\n    color: white;\n}\n\n.pagination {\n    margin-top: 50px;\n}\n\n@media screen and (max-width: 600px) {\n    .obsu {\n        width: 323px;\n    }\n    #sekil img {\n        width: 160px;\n        height: 200px;\n    }\n    #book_name {\n        font-size: 18px;\n        padding-top: 22%;\n        padding-left: 54%;\n    }\n    #author_name {\n        padding-left: 54%;\n    }\n    .more-details {\n        font-size: 12px;\n        margin-left: 13%;\n    }\n    .rating-block {\n        font-size: 12px;\n    }\n    .remove {\n        font-size: 12px;\n        margin-left: 28%;\n    }\n    #content {\n        padding-top: 13%;\n    }\n}"
  },
  {
    "path": "static/mainapp/css/signup.css",
    "content": ".account-block {\n    margin: auto;\n    height: 80%;\n    width: 70%;\n    background-color: white;\n}\n\n.signup-block {\n    text-align: center;\n}\n\nfa-google {\n    padding-right: 5px;\n}\n\n.googlebutton {\n    position: relative;\n    background-color: #f25f5c;\n    font-family: \"Fredoka One\", cursive;\n    color: white;\n    padding: 6px 5px;\n    border: 2px solid white;\n    border-radius: 15px;\n    text-decoration: none !important;\n    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5);\n    border: 3px solid #fff;\n    bottom: 9%;\n    left: 1px;\n}\n\n.googlebutton:hover {\n    color: #f25f5c;\n    background-color: white;\n    border: 3px solid #f25f5c;\n}\n\n.img-block {\n    color: white;\n    background-size: cover;\n    background-position: center;\n}\n\n.btn-bot {\n    font-family: \"Fredoka One\", cursive;\n    position: absolute;\n    margin-left: -45px;\n    left: 50%;\n    padding: 5px 10px 5px 10px;\n    border: 2px solid white;\n    border-radius: 25px;\n    bottom: 250px;\n    text-decoration: none !important;\n    color: white;\n}\n\n.btn-bot:hover {\n    color: black;\n    border: 2px solid black;\n    background-color: rgba(255, 255, 255, 0.891);\n}\n\n.welcome {\n    font-family: \"Pacifico\", cursive;\n    position: relative;\n    top: 4%;\n    left: 32%;\n    border-radius: 50px;\n    font-size: 2.5rem;\n    background-color: #ffdab9;\n    width: 35%;\n}\n\nlabel {\n    font-family: \"Kalam\", cursive;\n    font-size: 1.2em;\n}\n\n.form-group {\n    padding: 3% 4% 4% 3%;\n    position: relative;\n    display: inline-block;\n    top: 25px;\n    color: black;\n}\n\n#id_username,\n#id_email,\n#id_password1,\n#id_password2 {\n    border-top: none;\n    border-left: none;\n    border-right: none;\n    color: #000;\n}\n\n.signupbutton {\n    font-family: \"Fredoka One\", cursive;\n    padding: 8px 10px 5px 10px;\n    font-size: 1rem;\n    margin-bottom: 3rem;\n    margin-top: 0.5rem;\n    border: 2px solid white;\n    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.5);\n    border: 3px solid #fff;\n    color: #fff;\n    background: rgba(1, 1, 1);\n    border-radius: 15px;\n    outline: none;\n}\n\n.signupbutton:hover {\n    background-color: #ffdab9;\n    color: black;\n    border: 3px solid black;\n}\n\nstrong {\n    color: red;\n    font-size: 0.9rem;\n}\n\n::placeholder {\n    color: #000;\n    font-weight: normal;\n}\n\n.error_div {\n    margin-top: 10px !important;\n}\n\n@media only screen and (max-width: 1200px) {\n    .img-block {\n        display: none;\n    }\n    .account-block {\n        width: 70%;\n    }\n    .welcome {\n        font-size: 2rem;\n        width: 35%;\n        left: 32%;\n        margin-top: -0.2rem;\n    }\n}\n\n@media only screen and (max-width: 600px) {\n    .signupbutton {\n        margin-bottom: 3.8rem;\n        margin-top: 0.5rem;\n    }\n    .welcome {\n        font-size: 1.5rem;\n        width: 60%;\n        left: 20%;\n        margin-top: -0.5rem;\n    }\n    .form-group {\n        padding: 3% 6% 3% 3%;\n        margin-top: 1rem;\n    }\n    .account-block {\n        width: 60%;\n    }\n}\n\n@media only screen and (max-width: 450px) {\n    .form-group {\n        padding: 4% 3% 3% 3%;\n        margin-top: 0rem;\n    }\n    .signupbutton {\n        margin-bottom: 3.5rem;\n    }\n    .account-block {\n        width: 70%;\n    }\n}\n\n@media only screen and (min-width: 1200px) {\n    .form-group {\n        padding: 4% 3% 3% 3%;\n        margin-top: 0rem;\n    }\n    .signupbutton {\n        margin-bottom: 2.3rem;\n        margin-top: 1.5rem;\n    }\n    .googlebutton {\n        margin-top: 1rem;\n    }\n}"
  },
  {
    "path": "static/mainapp/dataset/books.csv",
    "content": ",r_index,book_id,authors,original_title,image_url,average_rating,ratings_count,genre,desc\r\n0,1,2767052,Suzanne Collins,The Hunger Games,https://images.gr-assets.com/books/1447303603l/2767052.jpg,4.34,4780653,\"fiction, fantasy\",\"In a future North America, where the rulers of Panem maintain control\nthrough an annual televised survival competition pitting young people from\neach of the twelve districts against one another, sixteen-year-old\nKatniss's skills are put to the test when she voluntarily takes her younger\nsister's place.\"\r\n1,2,3,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Philosopher's Stone,https://images.gr-assets.com/books/1474154022l/3.jpg,4.44,4602479,\"fantasy, fiction\",\"Rescued from the outrageous neglect of his aunt and uncle, a young boy with\na great destiny proves his worth while attending Hogwarts School for\nWitchcraft and Wizardry.\"\r\n2,3,41865,Stephenie Meyer,Twilight,https://images.gr-assets.com/books/1361039443l/41865.jpg,3.57,3866839,\"fantasy, fiction\",\"With 160 million copies of the Twilight Saga sold worldwide, this addictive\nlove story between a teenage girl and a vampire redefined romance for a\ngeneration. Here's the book that started it all. Isabella Swan's move to\nForks, a small, perpetually rainy town in Washington, could have been the\nmost boring move she ever made. But once she meets the mysterious and\nalluring Edward Cullen, Isabella's life takes a thrilling and terrifying\nturn. Up until now, Edward has managed to keep his vampire identity a\nsecret in the small community he lives in, but now nobody is safe,\nespecially Isabella, the person Edward holds most dear. The lovers find\nthemselves balanced precariously on the point of a knife-between desire and\ndanger. Deeply romantic and extraordinarily suspenseful, Twilightcaptures\nthe struggle between defying our instincts and satisfying our desires. This\nis a love story with bite. \"\"People do not want to just read Meyer's books;\nthey want to climb inside them and live there.\"\"-Time \"\"A literary\nphenomenon.\"\"-The New York Times\"\r\n3,4,2657,Harper Lee,To Kill a Mockingbird,https://images.gr-assets.com/books/1361975680l/2657.jpg,4.25,3198671,\"classics, fiction\",\"The unforgettable novel of a childhood in a sleepy Southern town and the\ncrisis of conscience that rocked it, To Kill A Mockingbird became both an\ninstant bestseller and a critical success when it was first published in\n1960. It went on to win the Pulitzer Prize in 1961 and was later made into\nan Academy Award-winning film, also a classic. Compassionate, dramatic, and\ndeeply moving, To Kill A Mockingbird takes readers to the roots of human\nbehavior - to innocence and experience, kindness and cruelty, love and\nhatred, humor and pathos. Now with over 18 million copies in print and\ntranslated into forty languages, this regional story by a young Alabama\nwoman claims universal appeal. Harper Lee always considered her book to be\na simple love story. Today it is regarded as a masterpiece of American\nliterature.\"\r\n4,5,4671,F. Scott Fitzgerald,The Great Gatsby,https://images.gr-assets.com/books/1490528560l/4671.jpg,3.89,2683664,\"classics, fiction\",\"A young man newly rich tries to recapture the past and win back his former\nlove, despite the fact that she has married.\"\r\n5,6,11870085,John Green,The Fault in Our Stars,https://images.gr-assets.com/books/1360206420l/11870085.jpg,4.26,2346404,\"fiction, romance\",\"Despite the medical miracle that has bought her a few more years, Hazel has\nnever been anything but terminal, but when Augustus Waters suddenly appears\nat the Cancer Kid Support Group, Hazel's story is about to be rewritten.\"\r\n6,7,5907,J.R.R. Tolkien,The Hobbit or There and Back Again,https://images.gr-assets.com/books/1372847500l/5907.jpg,4.25,2071616,\"fantasy, classics\",\"Chronicles the adventures of the inhabitants of Middle-earth and Bilbo\nBaggins, the hobbit who brought home to The Shire the One Ring of Power\"\r\n7,8,5107,J.D. Salinger,The Catcher in the Rye,https://images.gr-assets.com/books/1398034300l/5107.jpg,3.79,2044241,\"classics, fiction\",\"The \"\"brilliant, funny, meaningful novel\"\" (The New Yorker) that established\nJ. D. Salinger as a leading voice in American literature--and that has\ninstilled in millions of readers around the world a lifelong love of books.\n\"\"If you really want to hear about it, the first thing you'll probably want\nto know is where I was born, and what my lousy childhood was like, and how\nmy parents were occupied and all before they had me, and all that David\nCopperfield kind of crap, but I don't feel like going into it, if you want\nto know the truth.\"\" The hero-narrator of The Catcher in the Rye is an\nancient child of sixteen, a native New Yorker named Holden Caufield.\nThrough circumstances that tend to preclude adult, secondhand description,\nhe leaves his prep school in Pennsylvania and goes underground in New York\nCity for three days.\"\r\n8,9,960,Dan Brown,Angels & Demons ,https://images.gr-assets.com/books/1303390735l/960.jpg,3.85,2001311,\"fiction, mystery\",\"The explosive Robert Langdon thriller from Dan Brown, the #1 New York Times\nbestselling author of The Da Vinci Code and Inferno—now a major film\ndirected by Ron Howard and starring Tom Hanks and Felicity Jones. Angels &\nDemons careens from enlightening epiphanies to dark truths as the battle\nbetween science and religion turns to war. This is the book that started it\nall: we meet Robert Langdon for the first time, caught up in a race against\ntime to find an apocalyptic time-bomb, planted by an ancient secret society\nthat has surfaced to carry out its ultimate threat: to destroy the Vatican.\"\r\n9,10,1885,Jane Austen,Pride and Prejudice,https://images.gr-assets.com/books/1320399351l/1885.jpg,4.24,2035490,\"classics, fiction\",\"In early nineteenth-century England, a spirited young woman copes with the\nsuit of a snobbish gentleman, as well as the romantic entanglements of her\nfour sisters.\"\r\n10,11,77203,Khaled Hosseini,The Kite Runner ,https://images.gr-assets.com/books/1484565687l/77203.jpg,4.26,1813044,\"fiction, contemporary\",The Kite Runner Khaled Hosseini\r\n11,12,13335037,Veronica Roth,Divergent,https://images.gr-assets.com/books/1328559506l/13335037.jpg,4.24,1903563,\"fiction, fantasy\",\"Paperback features over fifty pages of bonus materials, including a sneak\npeek of Insurgent, an author Q&A, a discussion guide, a Divergent playlist,\nfaction manifestos, and more! In Beatrice Prior's dystopian Chicago world,\nsociety is divided into five factions, each dedicated to the cultivation of\na particular virtue—Candor (the honest), Abnegation (the selfless),\nDauntless (the brave), Amity (the peaceful), and Erudite (the intelligent).\nOn an appointed day of every year, all sixteen-year-olds must select the\nfaction to which they will devote the rest of their lives. For Beatrice,\nthe decision is between staying with her family and being who she really\nis—she can't have both. So she makes a choice that surprises everyone,\nincluding herself. During the highly competitive initiation that follows,\nBeatrice renames herself Tris and struggles alongside her fellow initiates\nto live out the choice they have made. Together they must undergo extreme\nphysical tests of endurance and intense psychological simulations, some\nwith devastating consequences. As initiation transforms them all, Tris must\ndetermine who her friends really are—and where, exactly, a romance with a\nsometimes fascinating, sometimes exasperating boy fits into the life she's\nchosen. But Tris also has a secret, one she's kept hidden from everyone\nbecause she's been warned it can mean death. And as she discovers unrest\nand growing conflict that threaten to unravel her seemingly perfect\nsociety, she also learns that her secret might help her save those she\nloves . . . or it might destroy her. Veronica Roth is the New York Times\nbestselling author of Divergent, the first in a trilogy of dystopian\nthrillers filled with electrifying decisions, heartbreaking betrayals,\nstunning consequences, and unexpected romance.\"\r\n12,13,5470,\"George Orwell, Erich Fromm, Celâl Üster\",Nineteen Eighty-Four,https://images.gr-assets.com/books/1348990566l/5470.jpg,4.14,1956832,\"fiction, fantasy\",\"Renowned urban artist Shepard Fairey's new look for Orwell's classic\ndystopian tale One of Britain's most popular novels, George Orwell's\nNineteen Eighty-Four is set in a society terrorised by a totalitarian\nideology propagated by The Party. Winston Smith works for the Ministry of\nTruth in London, chief city of Airstrip One. Big Brother stares out from\nevery poster, the Thought Police uncover every act of betrayal. When\nWinston finds love with Julia, he discovers that life does not have to be\ndull and deadening, and awakens to new possibilities. Despite the police\nhelicopters that hover and circle overhead, Winston and Julia begin to\nquestion the Party; they are drawn towards conspiracy. Yet Big Brother will\nnot tolerate dissent - even in the mind. For those with original thoughts\nthey invented Room 101. . . Nineteen Eighty-Four is George Orwell's\nterrifying vision of a totalitarian future in which everything and everyone\nis slave to a tyrannical regime. The novel also coined many new words and\nphrases which regular appear in popular culture, such as 'Big Brother',\n'thoughtcrime', 'doublethink' and 'Newspeak'.\"\r\n13,14,7613,George Orwell,Animal Farm: A Fairy Story,https://images.gr-assets.com/books/1424037542l/7613.jpg,3.87,1881700,\"classics, fiction\",\"A satire on totalitarianism in which farm animals overthrow their human\nowner and set up their own government\"\r\n14,15,48855,\"Anne Frank, Eleanor Roosevelt, B.M. Mooyaart-Doubleday\",Het Achterhuis: Dagboekbrieven 14 juni 1942 - 1 augustus 1944,https://images.gr-assets.com/books/1358276407l/48855.jpg,4.1,1972666,\"classics, history\",\"Dagboek waarin een gevoelig joods meisje, ondergedoken in een achterhuis op\néén der Amsterdamse grachten, zich met grote openhartigheid uitspreekt over\nales wat haar van haar 13e tot haar 15e jaar bezighoudt.\"\r\n15,16,2429135,\"Stieg Larsson, Reg Keeland\",Män som hatar kvinnor,https://images.gr-assets.com/books/1327868566l/2429135.jpg,4.11,1808403,\"fiction, mystery\",\"Forty years after the disappearance of Harriet Vanger from the secluded\nisland owned and inhabited by the powerful Vanger family, her octogenarian\nuncle hires journalist Mikael Blomqvist and Lisbeth Salander, an\nunconventional young hacker, to investigate.\"\r\n16,17,6148028,Suzanne Collins,Catching Fire,https://images.gr-assets.com/books/1358273780l/6148028.jpg,4.3,1831039,\"fantasy, romance\",\"By winning the Hunger Games, Katniss and Peeta have secured a life of\nsafety and plenty for themselves and their families, but because they won\nby defying the rules, they unwittingly become the faces of an impending\nrebellion.\"\r\n17,18,5,\"J.K. Rowling, Mary GrandPré, Rufus Beck\",Harry Potter and the Prisoner of Azkaban,https://images.gr-assets.com/books/1499277281l/5.jpg,4.53,1832823,\"fantasy, fiction\",\"Harry Potter and the Prisoner of AzkabanJ.K. Rowling, Mary GrandPré, Rufus Beck\"\r\n18,19,34,J.R.R. Tolkien, The Fellowship of the Ring,https://images.gr-assets.com/books/1298411339l/34.jpg,4.34,1766803,\"fantasy, classics\",\"In anticipation of the new film The Hobbit, opening in December 2012, comes\na reissue of the first book in The Lord of the Rings series. Reissue.\n200,000 first printing.\"\r\n19,20,7260188,Suzanne Collins,Mockingjay,https://images.gr-assets.com/books/1358275419l/7260188.jpg,4.03,1719760,\"fiction, fantasy\",\"Two-time Hunger Games survivor Katniss Everdeen is targeted by a vengeful\nCapitol that vows to make Katniss and all of District 12 pay for the\ncurrent unrest.\"\r\n20,21,2,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Order of the Phoenix,https://images.gr-assets.com/books/1387141547l/2.jpg,4.46,1735368,\"fantasy, fiction\",\"When the government of the magic world and authorities at Hogwarts School\nof Witchcraft and Wizardry refuse to believe in the growing threat of a\nfreshly revived Lord Voldemort, fifteen-year-old Harry Potter finds support\nfrom his loyal friends in facingthe evil wizard and other new terrors.\"\r\n21,22,12232938,Alice Sebold,The Lovely Bones,https://images.gr-assets.com/books/1457810586l/12232938.jpg,3.77,1605173,\"fiction, mystery\",\"The spirit of fourteen-year-old Susie Salmon describes her murder, her\nsurprise at her new home in heaven, and her witness to her family's grief,\nefforts to find the killer, and attempts to come to terms with what has\nhappened. A first novel. Reader's Guide included. Reprint. 750,000 first\nprinting.\"\r\n22,23,15881,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Chamber of Secrets,https://images.gr-assets.com/books/1474169725l/15881.jpg,4.37,1779331,\"fantasy, fiction\",\"Harry Potter and the Chamber of SecretsJ.K. Rowling, Mary GrandPré\"\r\n23,24,6,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Goblet of Fire,https://images.gr-assets.com/books/1361482611l/6.jpg,4.53,1753043,\"fantasy, fiction\",\"In Harry Potter and the Goblet of Fire, Harry is midway through both his\ntraining as a wizard and his coming of age. He wants to get away from the\nmalicious Dursleys and go to the Quidditch World Cup with Hermione, Ron,\nand the Weasleys. He wants to dream about his crush, Cho Chang (and maybe\ndo more than dream). And now that he’s gotten the hang of things at\nHogwarts—he hopes—he just wants to be a normal fourteen-year-old wizard.\nBut even by his standards, Harry's year is anything but normal. First\nDumbledore announces the revival of a grand competition that hasn't taken\nplace for one hundred years: the Triwizard Tournament, where a Hogwarts\nchampion will compete against rivals from two other schools of magic in\nthree highly dangerous tasks. Then someone frames Harry to participate in\nthe tournament—which really means someone wants him dead. Harry is guided\nthrough the competition by Professor Alastor Moody, this year's Defense\nAgainst the Dark Arts teacher, but he must also contend with a nasty\nreporter named Rita Skeeter, who digs up some highly unflattering secrets\nabout Hagrid; a terrible fight with Ron, who is deeply jealous of Harry's\nfame; Hermione's newfound activism on behalf of house-elves; and the\nterrifying prospect of asking a date to the Yule Ball. Worst of all, Lord\nVoldemort may finally have gathered the materials necessary for his\nrejuvenation... and he has a faithful servant at Hogwarts waiting only for\na sign. No, nothing is ever normal for Harry Potter. And in his case,\ndifferent can be deadly.\"\r\n24,25,136251,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Deathly Hallows,https://images.gr-assets.com/books/1474171184l/136251.jpg,4.61,1746574,\"fantasy, fiction\",\"In Harry Potter and the Deathly Hallows, the seventh and final book in the\nepic tale of Harry Potter, Harry and Lord Voldemort each prepare for their\nultimate encounter. Voldemort takes control of the Ministry of Magic,\ninstalls Severus Snape as headmaster at Hogwarts, and sends his Death\nEaters across the country to wreak havoc and find Harry. Meanwhile, Harry,\nRon, and Hermione embark on a desperate quest the length and breadth of\nBritain, trying to locate and destroy Voldemort’s four remaining Horcruxes,\nthe magical objects in which he has hidden parts of his broken soul. They\nvisit the Burrow, Grimmauld Place, the Ministry, Godric’s Hollow, Malfoy\nManor, Diagon Alley…But every time they solve one mystery, three more\nevolve—and not just about Voldemort, but about Dumbledore, and Harry’s own\npast, and three mysterious objects called the Deathly Hallows. The Hallows\nare literally things out of a children’s tale, which, if real, promise to\nmake their possessor the “Master of Death;” and they ensnare Harry with\ntheir tantalizing claim of invulnerability. It is only after a nigh-\nunbearable loss that he is brought back to his true purpose, and the trio\nreturns to Hogwarts for the final breathtaking battle between the forces of\ngood and evil. They fight the Death Eaters alongside members of the Order\nof the Phoenix, Dumbledore’s Army, the Weasley clan, and the full array of\nHogwarts teachers and students. Yet everything turns upon the moment the\nentire series has been building up to, the same meeting with which our\nstory began: the moment when Harry and Voldemort face each other at last.\"\r\n25,26,968,Dan Brown,The Da Vinci Code,https://images.gr-assets.com/books/1303252999l/968.jpg,3.79,1447148,\"fiction, thriller\",\"Harvard symbologist Robert Langdon and French cryptologist Sophie Neveu\nwork to solve the murder of an elderly curator of the Louvre, a case which\nleads to clues hidden in the works of Da Vinci and a centuries-old secret\nsociety.\"\r\n26,27,1,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Half-Blood Prince,https://images.gr-assets.com/books/1361039191l/1.jpg,4.54,1678823,\"fantasy, fiction\",\"As Harry enters his sixth year at Hogwarts, a storm is brewing in the\nbattle between good and evil, a battle that promises to have incredible\nconsequences for the magic world.\"\r\n27,28,7624,William Golding,Lord of the Flies ,https://images.gr-assets.com/books/1327869409l/7624.jpg,3.64,1605019,\"classics, fiction\",\"The classic study of human nature which depicts the degeneration of a group\nof schoolboys marooned on a desert island.\"\r\n28,29,18135,\"William Shakespeare, Robert           Jackson\",An Excellent conceited Tragedie of Romeo and Juliet,https://images.gr-assets.com/books/1327872146l/18135.jpg,3.73,1628519,\"classics, fiction\",\"An Excellent conceited Tragedie of Romeo and JulietWilliam Shakespeare, Robert           Jackson\"\r\n29,30,8442457,Gillian Flynn,Gone Girl,https://images.gr-assets.com/books/1339602131l/8442457.jpg,4.03,512475,\"mystery, crime\",\"When a woman goes missing on her fifth wedding anniversary, her diary\nreveals hidden turmoil in her marriage, while her husband, desperate to\nclear himself of suspicion, realizes that something more disturbing than\nmurder may have occurred.\"\r\n30,31,4667024,Kathryn Stockett,The Help,https://images.gr-assets.com/books/1346100365l/4667024.jpg,4.45,1531753,\"fiction, contemporary\",\"Limited and persecuted by racial divides in 1962 Jackson, Mississippi,\nthree women, including an African-American maid, her sassy and chronically\nunemployed friend and a recently graduated white woman, team up for a\nclandestine project against a backdrop of the budding civil rights era.\nReprint. A #1 best-selling novel. 2 million first printing.\"\r\n31,32,890,John Steinbeck,Of Mice and Men ,https://images.gr-assets.com/books/1437235233l/890.jpg,3.84,1467496,\"classics, fiction\",\"The tragic story of the friendship between two migrant workers, George and\nmentally retarded Lenny, and their dream of owning a farm\"\r\n32,33,930,Arthur Golden,Memoirs of a Geisha,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388367666l/930.jpg,4.08,1300209,\"fiction, romance\",\"National best seller, Japan's most celebrated geisha, confessions novel.\"\r\n33,34,10818853,E.L. James,Fifty Shades of Grey,https://images.gr-assets.com/books/1385207843l/10818853.jpg,3.67,1338493,\"romance, fiction\",\"When Anastasia Steele, a young literature student, interviews wealthy young\nentrepreneur Christian Grey for her campus magazine, their initial meeting\nintroduces Anastasia to an exciting new world that will change them both\nforever.\"\r\n34,35,865,\"Paulo Coelho, Alan R. Clarke\",O Alquimista,https://images.gr-assets.com/books/1483412266l/865.jpg,3.82,1299566,\"fiction, classics\",\"\"\"My heart is afraid that it will have to suffer,\"\" the boy told the\nalchemist one night as they looked up at the moonless sky.\"\" Tell your heart\nthat the fear of suffering is worse than the suffering itself. And that no\nheart has ever suffered when it goes in search of its dreams.\"\" Every few\ndecades a book is published that changes the lives of its readers forever.\nThe Alchemist is such a book. With over a million and a half copies sold\naround the world, The Alchemist has already established itself as a modern\nclassic, universally admired. Paulo Coelho's charming fable, now available\nin English for the first time, will enchant and inspire an even wider\naudience of readers for generations to come. The Alchemist is the magical\nstory of Santiago, an Andalusian shepherd boy who yearns to travel in\nsearch of a worldly treasure as extravagant as any ever found. From his\nhome in Spain he journeys to the markets of Tangiers and across the\nEgyptian desert to a fateful encounter with the alchemist. The story of the\ntreasures Santiago finds along the way teaches us, as only a few stories\nhave done, about the essential wisdom of listening to our hearts, learning\nto read the omens strewn along life's path, and, above all, following our\ndreams.\"\r\n35,36,3636,Lois Lowry,The Giver,https://images.gr-assets.com/books/1342493368l/3636.jpg,4.12,1296825,\"fiction, classics\",\"Given his lifetime assignment at the Ceremony of Twelve, Jonas becomes the\nreceiver of memories shared by only one other in his community and\ndiscovers the terrible truth about the society in which he lives.\"\r\n36,37,100915,C.S. Lewis,\"The Lion, the Witch and the Wardrobe\",https://images.gr-assets.com/books/1353029077l/100915.jpg,4.19,1531800,\"fantasy, classics\",They open a door and enter a world.\r\n37,38,14050,Audrey Niffenegger,The Time Traveler's Wife,https://images.gr-assets.com/books/1437728815l/14050.jpg,3.95,746287,\"fiction, romance\",\"Passionately in love, Clare and Henry vow to hold onto each other and their\nmarriage as they struggle with the effects of Chrono-Displacement Disorder,\na condition that casts Henry involuntarily into the world of time travel.\"\r\n38,39,13496,George R.R. Martin,A Game of Thrones,https://images.gr-assets.com/books/1436732693l/13496.jpg,4.45,1319204,\"fiction, fantasy\",\"The kingdom of the royal Stark family faces its ultimate challenge in the\nonset of a generation-long winter, the poisonous plots of the rival\nLannisters, the emergence of the Neverborn demons and the arrival of\nbarbarian hordes. Reissue. TV tie-in.\"\r\n39,40,19501,Elizabeth Gilbert,\"Eat, pray, love: one woman's search for everything across Italy, India and Indonesia\",https://images.gr-assets.com/books/1503066414l/19501.jpg,3.51,1181647,\"memoir, travel\",\"Eat, pray, love: one woman's search for everything across Italy, India and IndonesiaElizabeth Gilbert\"\r\n40,41,28187,Rick Riordan,The Lightning Thief,https://images.gr-assets.com/books/1400602609l/28187.jpg,4.23,1366265,\"fantasy, fiction\",The Lightning ThiefRick Riordan\r\n41,42,1934,Louisa May Alcott,Little Women,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562690475l/1934._SY475_.jpg,4.04,1257121,\"classics, fiction\",Little WomenLouisa May Alcott\r\n42,43,10210,\"Charlotte Brontë, Michael Mason\",Jane Eyre,https://images.gr-assets.com/books/1327867269l/10210.jpg,4.1,1198557,\"fiction, ebooks\",\"Retells the classic story of an orphaned young woman who accepts employment\nas a governess and soon finds herself in love with her employer.\"\r\n43,44,15931,Nicholas Sparks,The Notebook,https://images.gr-assets.com/books/1385738917l/15931.jpg,4.06,1053403,\"fiction, romance\",The NotebookNicholas Sparks\r\n44,45,4214,Yann Martel,Life of Pi,https://images.gr-assets.com/books/1320562005l/4214.jpg,3.88,1003228,\"fantasy, classics\",\"Possessing encyclopedia-like intelligence, unusual zookeeper's son Pi Patel\nsets sail for America, but when the ship sinks, he escapes on a life boat\nand is lost at sea with a dwindling number of animals until only he and a\nhungry Bengal tiger remain.\"\r\n45,46,43641,Sara Gruen,Water for Elephants,https://images.gr-assets.com/books/1494428973l/43641.jpg,4.07,1068146,\"fiction, romance\",Water for ElephantsSara Gruen\r\n46,47,19063,Markus Zusak,The Book Thief,https://images.gr-assets.com/books/1390053681l/19063.jpg,4.36,1159741,\"fiction, classics\",\"Trying to make sense of the horrors of World War II, Death relates the\nstory of Liesel--a young German girl whose book-stealing and story-telling\ntalents help sustain her family and the Jewish man they are hiding, as well\nas their neighbors.\"\r\n47,48,4381,Ray Bradbury,Fahrenheit 451,https://images.gr-assets.com/books/1351643740l/4381.jpg,3.97,570498,\"classics, fiction\",\"A totalitarian regime has ordered all books to be destroyed, but one of the\nbook burners, Guy Montag, suddenly realizes their merit.\"\r\n48,49,49041,Stephenie Meyer,\"New Moon (Twilight, #2)\",https://images.gr-assets.com/books/1361039440l/49041.jpg,3.52,1149630,\"fantasy, romance\",\"New Moon (Twilight, #2)Stephenie Meyer\"\r\n49,50,30119,Shel Silverstein,Where the Sidewalk Ends: The Poems and Drawings of Shel Silverstein,https://images.gr-assets.com/books/1168052448l/30119.jpg,4.29,1016888,\"poetry, classics\",\"If you are a dreamer, come in, If you are a dreamer, A wisher, a liar, A\nhope-er, a pray-er, A magic bean buyer … Come in … for where the sidewalk\nends, Shel Silverstein’s world begins. You’ll meet a boy who turns into a\nTV set, and a girl who eats a whale. The Unicorn and the Bloath live there,\nand so does Sarah Cynthia Sylvia Stout who will not take the garbage out.\nIt is a place where you wash your shadow and plant diamond gardens, a place\nwhere shoes fly, sisters are auctioned off, and crocodiles go to the\ndentist. Shel Silverstein’s masterful collection of poems and drawings is\nat once outrageously funny and profound.\"\r\n50,51,256683,Cassandra Clare,City of Bones,https://images.gr-assets.com/books/1432730315l/256683.jpg,4.12,1154031,\"paranormal, romance\",\"Suddenly able to see demons and the Shadowhunters who are dedicated to\nreturning them to their own dimension, fifteen-year-old Clary Fray is drawn\ninto this bizarre world when her mother disappears and Clary herself is\nalmost killed by a monster.\"\r\n51,52,428263,Stephenie Meyer,Eclipse,https://images.gr-assets.com/books/1361038355l/428263.jpg,3.69,1134511,\"fantasy, romance\",\"Readers captivated by Twilight and New Moon will eagerly devour the\npaperback edition Eclipse, the third book in Stephenie Meyer's riveting\nvampire love saga. As Seattle is ravaged by a string of mysterious killings\nand a malicious vampire continues her quest for revenge, Bella once again\nfinds herself surrounded by danger. In the midst of it all, she is forced\nto choose between her love for Edward and her friendship with Jacob ---\nknowing that her decision has the potential to ignite the ageless struggle\nbetween vampire and werewolf. With her graduation quickly approaching,\nBella has one more decision to make: life or death. But which is which?\"\r\n52,53,113436,Christopher Paolini,Eragon,https://images.gr-assets.com/books/1366212852l/113436.jpg,3.86,1104021,\"fantasy, fiction\",\"In Alagaèesia, a fifteen-year-old boy of unknown lineage called Eragon\nfinds a mysterious stone that weaves his life into an intricate tapestry of\ndestiny, magic, and power, peopled with dragons, elves, and monsters.\"\r\n53,54,11,Douglas Adams,The Hitchhiker's Guide to the Galaxy,https://images.gr-assets.com/books/1327656754l/11.jpg,4.2,936782,\"fiction, fantasy\",\"Chronicles the journeys, notions, and acquaintances of reluctant galactic\ntraveler Arthur Dent, accompanied by never-before-published material from\nthe late author's archives as well as commentary by famous fans.\"\r\n54,55,5129,Aldous Huxley,Brave New World,https://images.gr-assets.com/books/1487389574l/5129.jpg,3.97,1022601,\"classics, fiction\",\"Huxley's classic prophetic novel describes the socialized horrors of a\nfuturistic utopia devoid of individual freedom.\"\r\n55,56,1162543,Stephenie Meyer,Breaking Dawn,https://images.gr-assets.com/books/1361039438l/1162543.jpg,3.7,1070245,\"fantasy, contemporary\",\"In an addition to the author's vampire love saga, following New Moon and\nEclipse, questions are answered about the fate of Bella and Edward.\nReissue.\"\r\n56,57,37435,Sue Monk Kidd,The Secret Life of Bees,https://images.gr-assets.com/books/1473454532l/37435.jpg,4.01,916189,\"fiction, classics\",\"After her \"\"stand-in mother,\"\" a bold black woman named Rosaleen, insults the\nthree biggest racists in town, Lily Owens joins Rosaleen on a journey to\nTiburon, South Carolina, where they are taken in by three black, bee-\nkeeping sisters.\"\r\n57,58,2956,\"Mark Twain, John Seelye, Guy Cardwell\",The Adventures of Huckleberry Finn,https://images.gr-assets.com/books/1405973850l/2956.jpg,3.8,953758,\"classics, fiction\",\"A feisty young boy fakes his own death to escape his abusive father and\nheads off down the Mississippi River with his newfound friend Jim, a\nrunaway slave.\"\r\n58,59,24178,\"E.B. White, Garth Williams, Rosemary Wells\",Charlotte's Web,https://images.gr-assets.com/books/1439632243l/24178.jpg,4.15,1064521,\"classics, fiction\",\"Beloved by generations, Charlotte's Web and Stuart Little are two of the\nmost cherished stories of all time. Now, for the first time ever, these\ntreasured classics are available in lavish new collectors' editions. In\naddition to a larger trim size, the original black-and-white art by Garth\nWilliams has been lovingly colorized by renowned illustrator Rosemary\nWells, adding another dimension to these two perfect books for young and\nold alike.\"\r\n59,60,1618,Mark Haddon,The Curious Incident of the Dog in the Night-Time,https://images.gr-assets.com/books/1479863624l/1618.jpg,3.85,867553,\"fiction, classics\",The Curious Incident of the Dog in the Night-TimeMark Haddon\r\n60,61,22557272,Paula Hawkins,The Girl on the Train,https://images.gr-assets.com/books/1490903702l/22557272.jpg,3.88,1008778,\"mystery, fiction\",The Girl on the TrainPaula Hawkins\r\n61,62,119322,Philip Pullman,Northern Lights,https://images.gr-assets.com/books/1451271747l/119322.jpg,3.94,953970,\"fantasy, fiction\",\"Accompanied by her daemon, Lyra Belacqua sets out to prevent her best\nfriend and other kidnapped children from becoming the subject of gruesome\nexperiments in the Far North.\"\r\n62,63,6185,\"Emily Brontë, Richard J. Dunn\",Wuthering Heights,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587655304l/6185._SY475_.jpg,3.82,899195,\"classics, fiction\",\"Wuthering HeightsEmily Brontë, Richard J. Dunn\"\r\n63,64,10917,Jodi Picoult,My Sister's Keeper,https://images.gr-assets.com/books/1369504683l/10917.jpg,4.06,863879,\"fiction, contemporary\",\"Written with grace, wisdom, and sensitivity, this novel is about a teen who\nwas conceived as a bone marrow match for her sister Kate, and what happens\nwhen she begins to question who she really is.\"\r\n64,65,4981,Kurt Vonnegut Jr.,\"Slaughterhouse-Five, or The Children's Crusade: A Duty-Dance with Death \",https://images.gr-assets.com/books/1440319389l/4981.jpg,4.06,846488,\"classics, fiction\",\"Slaughterhouse-Five, or The Children's Crusade: A Duty-Dance with Death Kurt Vonnegut Jr.\"\r\n65,66,18405,Margaret Mitchell,Gone with the Wind,https://images.gr-assets.com/books/1328025229l/18405.jpg,4.28,873981,\"classics, fiction\",\"The turbulent romance of Scarlett O'Hara and Rhett Butler is shaped by the\nravages of the Civil War and Reconstruction.\"\r\n66,67,128029,Khaled Hosseini,A Thousand Splendid Suns,https://images.gr-assets.com/books/1345958969l/128029.jpg,4.34,818742,\"fiction, contemporary\",A Thousand Splendid SunsKhaled Hosseini\r\n67,68,22628,Stephen Chbosky,The Perks of Being a Wallflower,https://images.gr-assets.com/books/1167352178l/22628.jpg,4.21,888806,\"fiction, contemporary\",\"A series of letters to an unknown correspondent reveals the coming-of-age\ntrials of a high-schooler named Charlie\"\r\n68,69,11735983,Veronica Roth,Insurgent,https://images.gr-assets.com/books/1325667729l/11735983.jpg,4.07,836362,\"fiction, fantasy\",\"As war surges in the dystopian society around her, sixteen-year-old\nDivergent Tris Prior must continue trying to save those she loves--and\nherself--while grappling with haunting questions of grief and forgiveness,\nidentity and loyalty, politics, and love.\"\r\n69,70,375802,Orson Scott Card,Ender's Game,https://images.gr-assets.com/books/1408303130l/375802.jpg,4.3,813439,\"fiction, fantasy\",\"From New York Times bestselling author Orson Scott Card, Ender's Game is\nthe classic Hugo and Nebula award-winning science fiction novel of a young\nboy's recruitment into the midst of an interstellar war. In order to\ndevelop a secure defense against a hostile alien race's next attack,\ngovernment agencies breed child geniuses and train them as soldiers. A\nbrilliant young boy, Andrew \"\"Ender\"\" Wiggin lives with his kind but distant\nparents, his sadistic brother Peter, and the person he loves more than\nanyone else, his sister Valentine. Peter and Valentine were candidates for\nthe soldier-training program but didn't make the cut—young Ender is the\nWiggin drafted to the orbiting Battle School for rigorous military\ntraining. Ender's skills make him a leader in school and respected in the\nBattle Room, where children play at mock battles in zero gravity. Yet\ngrowing up in an artificial community of young soldiers Ender suffers\ngreatly from isolation, rivalry from his peers, pressure from the adult\nteachers, and an unsettling fear of the alien invaders. His psychological\nbattles include loneliness, fear that he is becoming like the cruel brother\nhe remembers, and fanning the flames of devotion to his beloved sister. Is\nEnder the general Earth needs? But Ender is not the only result of the\ngenetic experiments. The war with the Buggers has been raging for a hundred\nyears, and the quest for the perfect general has been underway for almost\nas long. Ender's two older siblings are every bit as unusual as he is, but\nin very different ways. Between the three of them lie the abilities to\nremake a world. If, that is, the world survives. Orson Scott Card's Ender's\nGame is the winner of the 1985 Nebula Award for Best Novel and the 1986\nHugo Award for Best Novel. THE ENDER UNIVERSE Ender Quintet series Ender’s\nGame / Ender in Exile / Speaker for the Dead / Xenocide / Children of the\nMind Ender’s Shadow series Ender’s Shadow / Shadow of the Hegemon / Shadow\nPuppets / Shadow of the Giant / Shadows in Flight Children of the Fleet The\nFirst Formic War (with Aaron Johnston) Earth Unaware / Earth Afire / Earth\nAwakens The Second Formic War (with Aaron Johnston) The Swarm /The Hive\nEnder novellas A War of Gifts /First Meetings\"\r\n70,71,18490,\"Mary Wollstonecraft Shelley, Percy Bysshe Shelley, Maurice Hindle\",\"Frankenstein; or, The Modern Prometheus\",https://images.gr-assets.com/books/1381512375l/18490.jpg,3.75,808589,\"classics, fiction\",Edited by Maurice Hindle.\r\n71,72,11588,Stephen King,The Shining,https://images.gr-assets.com/books/1353277730l/11588.jpg,4.17,791850,\"fiction, fantasy\",\"Jack Torrance sees his stint as winter caretaker of a Colorado hotel as a\nway back from failure, his wife sees it as a chance to preserve their\nfamily, and their five-year-old son sees the evil waiting just for them.\"\r\n72,73,1656001,Stephenie Meyer,The Host,https://images.gr-assets.com/books/1318009171l/1656001.jpg,3.84,749780,\"fiction, paranormal\",\"A member of a species that takes over the minds of human bodies, Wanderer\nis unable to disregard his host's love for a man in hiding, a situation\nthat forces both possessor and host to become unwilling allies. A first\nadult novel by the author of Eclipse.\"\r\n73,74,99561,John Green,Looking for Alaska,https://images.gr-assets.com/books/1394798630l/99561.jpg,4.09,783470,\"fiction, contemporary\",\"Sixteen-year-old Miles' first year at Culver Creek Preparatory School in\nAlabama includes good friends and great pranks, but is defined by the\nsearch for answers about life and death after a fatal car crash. An ALA\nBest Book for Young Adults & ALA Quick Pick. Reprint.\"\r\n74,76,14935,\"Jane Austen, Tony Tanner, Ros Ballaster\",Sense and Sensibility,https://images.gr-assets.com/books/1397245675l/14935.jpg,4.06,738894,\"fiction, ebooks\",\"Sisters Elinor and Marianne Dashwood set their sights on men to perfectly\nmatch their disparate personalities, with unexpected results.\"\r\n75,77,38709,\"Louis Sachar, Louis Sachar\",Holes,https://images.gr-assets.com/books/1327781893l/38709.jpg,3.93,747445,\"fiction, mystery\",\"HolesLouis Sachar, Louis Sachar\"\r\n76,78,5139,Lauren Weisberger,The Devil Wears Prada,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179604l/5139.jpg,3.7,665930,\"fiction, contemporary\",\"A small-town girl fresh out of an Ivy League college lands a job at a\nprestigious fashion magazine, but wonders if the glamorous perks are worth\nworking for the editor from hell.\"\r\n77,79,1381,\"Homer, Robert Fagles, E.V. Rieu, Frédéric Mugler, Bernard Knox\",Ὀδύσσεια,https://images.gr-assets.com/books/1390173285l/1381.jpg,3.73,670326,\"classics, fiction\",\"A new translation of the epic poem retells the story of Odysseus's ten-year\nvoyage home to Ithaca after the Trojan War.\"\r\n78,80,157993,\"Antoine de Saint-Exupéry, Richard Howard, Dom Marcos Barbosa, Melina Karakosta\",Le Petit Prince,https://images.gr-assets.com/books/1367545443l/157993.jpg,4.28,738757,\"fantasy, philosophy\",\"An aviator whose plane is forced down in the Sahara Desert encounters a\nlittle prince from a small planet who relates his adventures in seeking the\nsecret of what is important in life. Howard's new translation of this\nbeloved classic beautifully reflects Saint-Exupery's unique, gifted style.\nColor and b&w illustrations.\"\r\n79,81,7445,Jeannette Walls,The Glass Castle,https://images.gr-assets.com/books/1400930557l/7445.jpg,4.24,621099,\"memoir, nonfiction\",\"Now a major motion picture from Lionsgate starring Brie Larson, Woody\nHarrelson, and Naomi Watts. MORE THAN SEVEN YEARS ON THE NEW YORK TIMES\nBESTSELLER LIST The perennially bestselling, extraordinary, one-of-a-kind,\n“nothing short of spectacular” (Entertainment Weekly) memoir from one of\nthe world’s most gifted storytellers. The Glass Castle is a remarkable\nmemoir of resilience and redemption, and a revelatory look into a family at\nonce deeply dysfunctional and uniquely vibrant. When sober, Jeannette’s\nbrilliant and charismatic father captured his children’s imagination,\nteaching them physics, geology, and how to embrace life fearlessly. But\nwhen he drank, he was dishonest and destructive. Her mother was a free\nspirit who abhorred the idea of domesticity and didn’t want the\nresponsibility of raising a family. The Walls children learned to take care\nof themselves. They fed, clothed, and protected one another, and eventually\nfound their way to New York. Their parents followed them, choosing to be\nhomeless even as their children prospered. The Glass Castle is truly\nastonishing—a memoir permeated by the intense love of a peculiar but loyal\nfamily.\"\r\n80,82,1845,Jon Krakauer,Into the Wild,https://images.gr-assets.com/books/1403173986l/1845.jpg,3.94,647684,\"nonfiction, biography\",\"In April 1992, a young man from a well-to-do family hitchhikes to Alaska\nand walks alone into the wilderness north of Mt. McKinley. Four months\nlater, his decomposed body is found by a moose hunter. How Chris McCandless\ncame to die is the unforgettable story of Into the Wild.\"\r\n81,83,1953,\"Charles Dickens, Richard Maxwell, Hablot Knight Browne\",A Tale of Two Cities,https://images.gr-assets.com/books/1344922523l/1953.jpg,3.81,637412,\"classics, fiction\",Edited with an Introduction and Notes by Richard Maxwell.\r\n82,84,7677,Michael Crichton,Jurassic Park,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348796998l/7677.jpg,3.96,447833,\"fiction, thriller\",\"An American bioengineering research firm erects a theme park on a Caribbean\nisland, complete with living dinosaurs, and invites a group of scientists\nto be its first terrified guests.\"\r\n83,85,370493,Shel Silverstein,The Giving Tree,https://images.gr-assets.com/books/1174210942l/370493.jpg,4.38,702332,\"classics, fiction\",\"\"\"Once there was a tree ... and she loved a little boy.\"\" So begins a story\nof unforgettable perception, beautifully written and illustrated by the\ngifted and versatile Shel Silverstein. Every day the boy would come to the\ntree to eat her apples, swing from her branches, or slide down her trunk\n... and the tree was happy. But as the boy grew older he began to want more\nfrom the tree, and the tree gave and gave and gave. This is a tender story,\ntouched with sadness, aglow with consolation. Shel Silverstein has created\na moving parable for readers of all ages that offers an affecting\ninterpretation of the gift of giving and a serene acceptance of another's\ncapacity to love in return. This miniature full-cloth, gold-stamped edition\nwill be treasured by all ages.\"\r\n84,86,32542,John Grisham,A Time to Kill,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554303029l/32542.jpg,4.03,597775,\"fiction, mystery\",\"A Southern town is shocked when a 10-year-old black girl is raped by two\nwhite men--until the girl's father takes the law into his own hands.\"\r\n85,87,1617,\"Elie Wiesel, Marion Wiesel\",Un di Velt Hot Geshvign,https://images.gr-assets.com/books/1473495285l/1617.jpg,4.3,691231,\"classics, history\",\"The narrative of a boy who lived through Auschwitz and Buchenwald provides\na short and terrible indictment of modern humanity.\"\r\n86,88,6442769,John Green,Paper Towns,https://images.gr-assets.com/books/1349013610l/6442769.jpg,3.88,461311,\"contemporary, fiction\",\"One month before graduating from his Central Florida high school, Quentin\n\"\"Q\"\" Jacobsen basks in the predictable boringness of his life until the\nbeautiful and exciting Margo Roth Spiegelman, Q's neighbor and classmate,\ntakes him on a midnight adventure and then mysteriously disappears. An ALA\nBest Book for Young Adults. Reprint.\"\r\n87,89,21787,William Goldman,The Princess Bride,https://images.gr-assets.com/books/1327903636l/21787.jpg,4.25,628637,\"ebooks, contemporary\",\"A classic swashbuckling romance retells the tale of a drunken swordsman and\na gentle giant who come to the aid of Westley, a handsome farm boy, and\nButtercup, a princess in dire need of rescue from the evil schemers\nsurrounding her. Reader's Guide available. Simultaneous.\"\r\n88,90,231804,S.E. Hinton,The Outsiders,https://images.gr-assets.com/books/1442129426l/231804.jpg,4.06,659248,\"fiction, classics\",\"The struggle of three brothers to stay together after their parent's death\nand their quest for identity among the conflicting values of their\nadolescent society.\"\r\n89,91,6186357,James Dashner,The Maze Runner,https://images.gr-assets.com/books/1375596592l/6186357.jpg,4.02,719925,\"fiction, fantasy\",\"Sixteen-year-old Thomas wakes up with no memory in the middle of a maze and\nrealizes he must work with the community in which he finds himself if he is\nto escape.\"\r\n90,92,1202,\"Steven D. Levitt, Stephen J. Dubner\",Freakonomics: A Rogue Economist Explores the Hidden Side of Everything,https://images.gr-assets.com/books/1327909092l/1202.jpg,3.93,524191,\"nonfiction, science\",\"Which is more dangerous, a gun or a swimming pool? What do schoolteachers\nand sumo wrestlers have in common? How much do parents really matter? These\nmay not sound like typical questions for an economist to ask. But Steven D.\nLevitt is not a typical economist. He studies the riddles of everyday\nlife—from cheating and crime to parenting and sports—and reaches\nconclusions that turn conventional wisdom on its head. Freakonomics is a\ngroundbreaking collaboration between Levitt and Stephen J. Dubner, an\naward-winning author and journalist. They set out to explore the inner\nworkings of a crack gang, the truth about real estate agents, the secrets\nof the Ku Klux Klan, and much more. Through forceful storytelling and wry\ninsight, they show that economics is, at root, the study of incentives—how\npeople get what they want or need, especially when other people want or\nneed the same thing.\"\r\n91,93,2998,Frances Hodgson Burnett,The Secret Garden,https://images.gr-assets.com/books/1327873635l/2998.jpg,4.12,639357,\"classics, fiction\",\"A ten-year-old orphan comes to live in a lonely house on the Yorkshire\nmoors where she discovers an invalid cousin and the mysteries of a locked\ngarden.\"\r\n92,94,320,\"Gabriel García Márquez, Gregory Rabassa\",Cien años de soledad,https://images.gr-assets.com/books/1327881361l/320.jpg,4.04,490565,\"classics, fiction\",\"Cien años de soledadGabriel García Márquez, Gregory Rabassa\"\r\n93,95,5297,\"Oscar Wilde, Jeffrey Eugenides\",The Picture of Dorian Gray,https://images.gr-assets.com/books/1424596966l/5297.jpg,4.06,590014,\"classics, fiction\",\"The handsome appearance of dissolute young Dorian Gray remains unchanged\nwhile the features in his portrait become distorted as his degeneration\nprogresses\"\r\n94,96,13536860,E.L. James,Fifty Shades Freed,https://images.gr-assets.com/books/1336418837l/13536860.jpg,3.88,387290,\"fiction, contemporary\",\"Even though Christian and Anastasia are now a proper couple, they still\nhave many obstacles to overcome, including Christian's past coming back to\nhaunt Anastasia.\"\r\n95,97,17245,\"Bram Stoker, Nina Auerbach, David J. Skal\",Dracula,https://images.gr-assets.com/books/1387151694l/17245.jpg,3.98,618973,\"classics, horror\",\"This Norton Critical Edition presents fully annotated the text of the 1897\nFirst Edition.\"\r\n96,98,5060378,\"Stieg Larsson, Reg Keeland\",Flickan som lekte med elden,https://images.gr-assets.com/books/1351778881l/5060378.jpg,4.22,563994,\"fiction, mystery\",\"Flickan som lekte med eldenStieg Larsson, Reg Keeland\"\r\n97,99,11857408,E.L. James,Fifty Shades Darker,https://images.gr-assets.com/books/1358266080l/11857408.jpg,3.87,552059,\"romance, fiction\",\"Fifty Shades Darker is a 2012 erotic romance novel by British author E. L.\nJames. It is the second installment in the Fifty Shades trilogy that traces\nthe deepening relationship between a college graduate, Anastasia Steele,\nand a young business magnate, Christian Grey. The first and third volumes,\nFifty Shades of Grey and Fifty Shades Freed, were published in 2011 and\n2012. The novel is published by Vintage Books and reached #1 on the USA\nToday best seller list.\"\r\n98,100,7244,Barbara Kingsolver,The Poisonwood Bible,https://images.gr-assets.com/books/1412242487l/7244.jpg,4.02,546502,\"fiction, classics\",\"The Poisonwood Bible is a story told by the wife and four daughters of\nNathan Price, a fierce, evangelical Baptist who takes his family and\nmission to the Belgian Congo in 1959. They carry with them everything they\nbelieve they will need from home, but soon find that all of it -- from\ngarden seeds to Scripture -- is calamitously transformed on African soil.\nWhat follows is a suspenseful epic of one family's tragic undoing and\nremarkable reconstruction over the course of three decades in postcolonial\nAfrica. This P.S. edition features an extra 16 pages of insights into the\nbook, including author interviews, recommended reading, and more.\"\r\n99,101,4137,David Sedaris,Me Talk Pretty One Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431013639l/4137.jpg,3.97,495736,\"memoir, nonfiction\",\"A recent transplant to Paris, humorist David Sedaris, bestselling author of\n\"\"Naked\"\", presents a collection of his strongest work yet, including the\ntitle story about his hilarious attempt to learn French. A number one\nnational bestseller now in paperback.\"\r\n100,102,19543,Maurice Sendak,Where the Wild Things Are,https://images.gr-assets.com/books/1384434560l/19543.jpg,4.22,620618,\"fiction, classics\",\"Max is sent to bed without supper and imagines sailing away to the land of\nWild Things,where he is made king.\"\r\n101,103,7126,\"Alexandre Dumas, Robin Buss\",Le Comte de Monte-Cristo,https://images.gr-assets.com/books/1309203605l/7126.jpg,4.21,555822,\"classics, fiction\",Translated with an Introduction by Robin Buss\r\n102,104,6288,Cormac McCarthy,The Road,https://images.gr-assets.com/books/1439197219l/6288.jpg,3.95,504793,\"fiction, horror\",\"In a novel set in an indefinite, futuristic, post-apocalyptic world, a\nfather and his young son make their way through the ruins of a devastated\nAmerican landscape, struggling to survive and preserve the last remnants of\ntheir own humanity.\"\r\n103,105,18710190,Veronica Roth,Allegiant,https://images.gr-assets.com/books/1395582745l/18710190.jpg,3.63,463257,\"fiction, fantasy\",\"The explosive conclusion to Veronica Roth's #1 New York Times bestselling\nDivergent trilogy reveals the secrets of the dystopian world that\ncaptivated millions of readers and film fans in Divergent and Insurgent.\nThis paperback edition includes bonus content by Veronica Roth! One choice\nwill define you. What if your whole world was a lie? What if a single\nrevelation—like a single choice—changed everything? What if love and\nloyalty made you do things you never expected? Told from a riveting dual\nperspective, this third installment in the series follows Tris and Tobias\nas they battle to comprehend the complexities of human nature—and their\nselves—while facing impossible choices of courage, allegiance, sacrifice,\nand love.\"\r\n104,106,9418327,Tina Fey,Bossypants,https://images.gr-assets.com/books/1481509554l/9418327.jpg,3.94,506250,\"memoir, nonfiction\",BossypantsTina Fey\r\n105,107,3473,Nicholas Sparks,A Walk to Remember,https://images.gr-assets.com/books/1385738968l/3473.jpg,4.15,546948,\"romance, fiction\",\"A high school rebel and a minister's daughter find strength in each other\nin this star-crossed tale of \"\"young but everlasting love\"\" (Chicago Sun-\nTimes). There was a time when the world was sweeter....when the women in\nBeaufort, North Carolina, wore dresses, and the men donned hats.... Every\nApril, when the wind smells of both the sea and lilacs, Landon Carter\nremembers 1958, his last year at Beaufort High. Landon had dated a girl or\ntwo, and even once sworn that he'd been in love. Certainly the last person\nhe thought he'd fall for was Jamie, the shy, almost ethereal daughter of\nthe town's Baptist minister....Jamie, who was destined to show him the\ndepths of the human heart-and the joy and pain of living. The inspiration\nfor this novel came from Nicholas Sparks's sister: her life and her\ncourage. From the internationally bestselling author Nicholas Sparks, comes\nhis most moving story yet....\"\r\n106,108,9416,Sophie Kinsella,Confessions of a Shopaholic,https://images.gr-assets.com/books/1327872404l/9416.jpg,3.61,543658,\"fiction, romance\",\"Financial journalist Rebecca Bloomwood seeks solace from the boredom and\npressures in life with her shopping, a solution that brings her close to\nfinancial disaster, until she encounters a story that will change her life.\"\r\n107,109,24280,\"Victor Hugo, Lee Fahnestock, Norman MacAfee\",Les Misérables,https://images.gr-assets.com/books/1411852091l/24280.jpg,4.14,513407,\"classics, fiction\",\"Les MisérablesVictor Hugo, Lee Fahnestock, Norman MacAfee\"\r\n108,110,10572,George R.R. Martin,A Clash of Kings,https://images.gr-assets.com/books/1358254974l/10572.jpg,4.4,523303,\"fantasy, fiction\",\"Six separate factions vie for control of the realm of the late Lord Eddard\nStark, while an ancient form of magic, an everlasting winter, and an\nunearthly army threaten to return.\"\r\n109,111,10441,Kim Edwards,The Memory Keeper's Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1552112312l/10441._SY475_.jpg,3.64,501430,\"fiction, contemporary\",\"In a tale spanning twenty-five years, a doctor delivers his newborn twin\ndaughter during a snowstorm and, rashly deciding to protect his wife from\nthe baby's affliction with Down Syndrome, turns her over to a nurse, who\nsecretly raises the child. A first novel. Reader's Guide included. Reprint.\n100,000 first printing.\"\r\n110,112,15507958,Jojo Moyes,Me Before You,https://images.gr-assets.com/books/1357108762l/15507958.jpg,4.27,587647,\"romance, fiction\",\"Taking a job as an assistant to extreme sports enthusiast Will, who is\nwheelchair bound after a motorcycle accident, Louisa struggles with her\nemployer's acerbic moods and learns of his shocking plans before\ndemonstrating to him that life is still worth living.\"\r\n111,113,168668,Joseph Heller,Catch-22,https://images.gr-assets.com/books/1463157317l/168668.jpg,3.98,563265,\"classics, fiction\",Catch-22Joseph Heller\r\n112,114,6900,\"Mitch Albom, Saulius Dagys\",Tuesdays with Morrie,https://images.gr-assets.com/books/1423763749l/6900.jpg,4.06,556518,\"fiction, nonfiction\",\"When an eighty-two-year-old rabbi from Albom's old hometown asks him to\ndeliver his eulogy, Albom goes back to his nonfiction roots and becomes\ninvolved with a Detroit pastor--a reformed drug dealer and convict--who\npreaches to the poor and homeless in a decaying church with a hole in its\nroof. A timely, moving, and inspiring look at faith: not just who believes,\nbut why.\"\r\n113,115,2187,Jeffrey Eugenides,Middlesex,https://images.gr-assets.com/books/1437029776l/2187.jpg,3.98,488243,\"fiction, contemporary\",MiddlesexJeffrey Eugenides\r\n114,116,24583,\"Mark Twain, Guy Cardwell, John Seelye\",The Adventures of Tom Sawyer,https://images.gr-assets.com/books/1404811979l/24583.jpg,3.89,555359,\"classics, fiction\",\"The classic adventure story of boyhood escapades on the shores of the\nMississippi chronicles the exploits of the mischievous Tom Sawyer and his\nfriends. Reissue.\"\r\n115,117,18131,Madeleine L'Engle,A Wrinkle in Time,https://images.gr-assets.com/books/1329061522l/18131.jpg,4.04,615907,\"fantasy, fiction\",\"A midnight visitor escorts Meg, Calvin, and Charles across the barriers of\nspace and time to another world.\"\r\n116,118,7763,Amy Tan,The Joy Luck Club,https://images.gr-assets.com/books/1304978653l/7763.jpg,3.9,515090,\"classics, fiction\",\"Encompassing two generations and a rich blend of Chinese and American\nhistory, the story of four struggling, strong women also reveals their\ndaughter's memories and feelings.\"\r\n117,119,38447,Margaret Atwood,The Handmaid's Tale,https://images.gr-assets.com/books/1498057733l/38447.jpg,4.06,607889,\"fiction, classics\",The Handmaid's TaleMargaret Atwood\r\n118,120,452306,Ann Brashares,The Sisterhood of the Traveling Pants,https://images.gr-assets.com/books/1461611233l/452306.jpg,3.75,525706,\"fiction, contemporary\",\"During their first summer apart, four teenage girls, best friends since\nearliest childhood, stay in touch through a shared pair of secondhand jeans\nthat magically adapts to each of their figures and affects their attitudes\nto their different summer experiences.\"\r\n119,121,7604,\"Vladimir Nabokov, Craig Raine\",Lolita,https://images.gr-assets.com/books/1377756377l/7604.jpg,3.88,469836,\"fiction, classics\",\"In this Readers' Guide, Christine Clegg examines the critical history of\n\"\"Lolita\"\" through a broad range of interpretations. Although early criticism\nof the text polarized around 'that' question - is it literature or\npornography? - the influence of American critics such as Lionel Trilling\nquickly secured canonical status for the novel. A compelling aspect of\n\"\"Lolita\"\" criticism is the way in which that question continues to return in\ndifferent forms. In the 1980s and 1990s, \"\"Lolita\"\" has been the subject of\ndiverse critical attention, beyond 'Nabokov Studies': from Richard Rorty's\nphilosophical inquiry into the ethics of cruelty, to Rachel Bowlby's\nfeminist analysis of the rhetoric of consumer culture in the novel. All of\nthe main critical approaches to the novel are covered by this indispensable\nsourcebook.\"\r\n120,122,37442,\"Gregory Maguire, Douglas Smith\",Wicked: The Life and Times of the Wicked Witch of the West,https://images.gr-assets.com/books/1437733293l/37442.jpg,3.52,506900,\"fantasy, classics\",\"Following the traditions of Gabriel GarcÍa Marquez, John Gardner and J.R.R.\nTolkien, Wicked is a richly woven tale that takes us to the other, darker\nside of the rainbow as novelist Gregory Maguire chronicles the Wicked Witch\nof the West's odyssey through the complex world of Oz -- where people call\nyou wicked if you tell the truth. Years before Dorothy and her dog crash-\nland, another little girl makes her presence known in Oz. This girl,\nElphaba, is born with emerald-green skin -- no easy burden in a land as\nmean and poor as Oz, where superstition and magic are not strong enough to\nexplain or to overcome the natural disasters of flood and famine. But\nElphaba is smart, and by the time she enters the university in Shiz, she\nbecomes a member of a charmed circle of Oz' most promising young citizens.\nElphaba's Oz is no utopia. The Wizard's secret police are everywhere.\nAnimals -- those creatures with voices, souls and minds -- are threatened\nwith exile. Young Elphaba, green and wild and misunderstood, is determined\nto protect the Animals -- even it means combating the mysterious Wizard,\neven if it means risking her single chance at romance. Even wiser in guilt\nand sorrow, she can find herself grateful when the world declares her a\nwitch. And she can even make herself glad for that young girl from Kansas.\nIn Wicked, Gregory Maguire has taken the largely unknown world of Oz and\npopulated it with the power of his own imagination. Fast-paced,\nfantastically real and supremely entertaining, this is a novel of vision\nand re-vision. Oz never will be the same again.\"\r\n121,123,5358,John Grisham,The Firm,https://images.gr-assets.com/books/1418465200l/5358.jpg,3.99,488269,\"fiction, thriller\",\"Originally published: [New York]: Doubleday, 1991.\"\r\n122,124,7937843,Emma Donoghue,Room,https://images.gr-assets.com/books/1344265419l/7937843.jpg,4.03,511360,\"fiction, contemporary\",\"Held captive for years in a small shed, a woman and her precocious young\nson finally gain their freedom, and the boy experiences the outside world\nfor the first time. Inspiration for the MAJOR MOTION PICTURE starring\nAcademy Award winner Brie Larson To five-year-old-Jack, Room is the world.\n. . . It's where he was born, it's where he and his Ma eat and sleep and\nplay and learn. At night, his Ma shuts him safely in the wardrobe, where he\nis meant to be asleep when Old Nick visits. Room is home to Jack, but to Ma\nit's the prison where she has been held for seven years. Through her fierce\nlove for her son, she has created a life for him in this eleven-by-eleven-\nfoot space. But with Jack's curiosity building alongside her own\ndesperation, she knows that Room cannot contain either much longer. Room is\na tale at once shocking, riveting, exhilarating--a story of unconquerable\nlove in harrowing circumstances, and of the diamond-hard bond between a\nmother and her child.\"\r\n123,125,1420,\"William Shakespeare, Richard Andrews, Rex Gibson\",\"The Tragicall Historie of Hamlet, Prince of Denmark\",https://images.gr-assets.com/books/1351051208l/1420.jpg,4,515820,\"classics, fiction\",\"The Tragicall Historie of Hamlet, Prince of DenmarkWilliam Shakespeare, Richard Andrews, Rex Gibson\"\r\n124,126,234225,Frank Herbert,Dune,https://images.gr-assets.com/books/1434908555l/234225.jpg,4.19,485032,\"fiction, fantasy\",\"Opposing forces struggle for control of the universe when the archenemy of\nthe cosmic emperor is banished to a barren world where savages fight for\nwater\"\r\n125,127,2612,Malcolm Gladwell,The Tipping Point: How Little Things Can Make a Big Difference,https://images.gr-assets.com/books/1473396980l/2612.jpg,3.92,490504,\"nonfiction, business\",The Tipping Point: How Little Things Can Make a Big DifferenceMalcolm Gladwell\r\n126,128,11084145,Walter Isaacson,Steve Jobs,https://images.gr-assets.com/books/1327861368l/11084145.jpg,4.09,560715,\"biography, business\",\"Draws on more than forty interviews with Steve Jobs, as well as interviews\nwith family members, friends, competitors, and colleagues to offer a look\nat the co-founder and leading creative force behind the Apple computer\ncompany.\"\r\n127,129,332613,Ken Kesey,One Flew Over the Cuckoo's Nest,https://images.gr-assets.com/books/1485308778l/332613.jpg,4.18,491642,\"classics, fiction\",\"McMurphy, a criminal who feigns insanity, is admitted to a mental hospital\nwhere he challenges the autocratic authority of the head nurse.\"\r\n128,130,2165,Ernest Hemingway,The Old Man and the Sea,https://images.gr-assets.com/books/1329189714l/2165.jpg,3.73,520630,\"classics, fiction\",\"Told in language of great simplicity and power, this story of courage and\npersonal triumph remains one of Ernest Hemingway’s most enduring works. The\nOld Man and the Sea is one of Hemingway’s most enduring works. Told in\nlanguage of great simplicity and power, it is the story of an old Cuban\nfisherman, down on his luck, and his supreme ordeal—a relentless, agonizing\nbattle with a giant marlin far out in the Gulf Stream. Here Hemingway\nrecasts, in strikingly contemporary style, the classic theme of courage in\nthe face of defeat, of personal triumph won from loss. Written in 1952,\nthis hugely successful novella confirmed his power and presence in the\nliterary world and played a large part in his winning the 1954 Nobel Prize\nfor Literature.\"\r\n129,131,4395,John Steinbeck,The Grapes of Wrath,https://images.gr-assets.com/books/1352912927l/4395.jpg,3.92,322321,\"classics, fiction\",STEINBECK/GRAPES OF WRATH (BC)\r\n130,132,3431,Mitch Albom,The Five People You Meet in Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200541l/3431.jpg,3.9,449501,\"fiction, christian\",\"A specially produced paperback edition -- with flaps -- of the phenomenal\n#1 New York Times bestseller, that has sold more than six million copies in\nhardcover Eddie is a grizzled war veteran who feels trapped in a\nmeaningless life of fixing rides at a seaside amusement park. His days are\na dull routine of work, loneliness, and regret. Then, on his 83rd birthday,\nEddie dies in a tragic accident, trying to save a little girl from a\nfalling cart. He awakens in the afterlife, where he learns that heaven is\nnot a lush Garden of Eden, but a place where your earthly life is explained\nto you by five people. These people may have been loved ones or distant\nstrangers. Yet each of them changed your path forever. One by one, Eddie's\nfive people illuminate the unseen connections of his earthly life. As the\nstory builds to its stunning conclusion, Eddie desperately seeks redemption\nin the still-unknown last act of his life: Was it a heroic success or a\ndevastating failure The answer, which comes from the most unlikely of\nsources, is as inspirational as a glimpse of heaven itself. In The Five\nPeople You Meet in Heaven, Mitch Albom gives us an astoundingly original\nstory that will change everything you've ever thought about the afterlife\n-- and the meaning of our lives here on earth. With a timeless tale,\nappealing to all, this is a book that readers of fine fiction, and those\nwho loved Tuesdays with Morrie, will treasure.\"\r\n131,133,8127,L.M. Montgomery,Anne of Green Gables,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789015l/8127.jpg,4.23,502247,\"fiction, romance\",\"Anne, an eleven-year-old orphan, is sent by mistake to live with a lonely,\nmiddle-aged brother and sister on a Prince Edward Island farm and proceeds\nto make an indelible impression on everyone around her.\"\r\n132,134,3777732,Cassandra Clare,City of Glass,https://images.gr-assets.com/books/1369452339l/3777732.jpg,4.34,593173,\"fantasy, paranormal\",\"Still pursuing a cure for her mother's enchantment, Clary uses all her\npowers and ingenuity to get into Idris, the forbidden country of the\nsecretive Shadowhunters, and to its capital, the City of Glass, where with\nthe help of a newfound friend, Sebastian, she uncovers important truths\nabout her family's past that will not only help save her mother but all\nthose that she holds most dear.\"\r\n133,135,62291,George R.R. Martin,A Storm of Swords,https://images.gr-assets.com/books/1497931121l/62291.jpg,4.54,469022,\"fantasy, fiction\",\"The three surviving contenders for the throne of the Seven Kingdoms\ncontinue to struggle among themselves, Robb defends his kingdom from the\nGreyjoys, Jon confronts an escalating threat, and Daenerys and her dragon\nallies continue to grow in power.\"\r\n134,136,137791,Rebecca Wells,Divine Secrets of the Ya-Ya Sisterhood,https://images.gr-assets.com/books/1408313524l/137791.jpg,3.79,465676,\"fiction, contemporary\",Divine Secrets of the Ya-Ya SisterhoodRebecca Wells\r\n135,137,10964,Diana Gabaldon,Outlander,https://images.gr-assets.com/books/1402600310l/10964.jpg,4.2,515547,\"romance, fantasy\",\"Claire Randall is leading a double life. She has a husband in one century,\nand a lover in another... In 1945, Claire Randall, a former combat nurse,\nis back from the war and reunited with her husband on a second honeymoon--\nwhen she innocently touches a boulder in one of the ancient stone circles\nthat dot the British Isles. Suddenly she is a Sassenach—an \"\"outlander\"\"—in a\nScotland torn by war and raiding border clans in the year of our\nLord...1743. Hurled back in time by forces she cannot understand, Claire's\ndestiny in soon inextricably intertwined with Clan MacKenzie and the\nforbidden Castle Leoch. She is catapulted without warning into the\nintrigues of lairds and spies that may threaten her life ...and shatter her\nheart. For here, James Fraser, a gallant young Scots warrior, shows her a\npassion so fierce and a love so absolute that Claire becomes a woman torn\nbetween fidelity and desire...and between two vastly different men in two\nirreconcilable lives.\"\r\n136,138,12296,\"Nathaniel Hawthorne, Thomas E. Connolly, Nina Baym\",The Scarlet Letter,https://images.gr-assets.com/books/1404810944l/12296.jpg,3.37,509883,\"romance, history\",\"A young woman, publicly scorned for bearing an illegitimate child, refuses\nto be vanquished by the seventeenth-century Boston community.\"\r\n137,139,9460487,Ransom Riggs,Miss Peregrine’s Home for Peculiar Children,https://images.gr-assets.com/books/1472782916l/9460487.jpg,3.89,613674,\"fantasy, fiction\",\"After a family tragedy, Jacob feels compelled to explore an abandoned\norphanage on an island off the coast of Wales, discovering disturbing facts\nabout the children who were kept there.\"\r\n138,140,6892870,\"Stieg Larsson, Reg Keeland\",Luftslottet som sprängdes,https://images.gr-assets.com/books/1327708260l/6892870.jpg,4.2,443951,\"fiction, mystery\",\"While recovering in the hospital, Lisbeth Salander enlists the aid of\njournalist Mikael Blomkvist to prove her innocent of three murders and\nidentify the corrupt politicians who have allowed her to suffer, and, on\nher own, Lisbeth plots revenge against the man who tried to kill her. By\nthe best-selling author of The Girl Who Played With Fire.\"\r\n139,141,18007564,Andy Weir,The Martian,https://images.gr-assets.com/books/1413706054l/18007564.jpg,4.39,423344,\"science, thriller\",\"Stranded on Mars by a dust storm that compromised his space suit and forced\nhis crew to leave him behind, astronaut Watney struggles to survive in\nspite of minimal supplies and harsh environmental challenges that test his\ningenuity in unique ways. A first novel.\"\r\n140,142,5043,Ken Follett,The Pillars of the Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1576956100l/5043.jpg,4.29,462517,\"fiction, history\",\"Set in twelfth-century England, this epic of kings and peasants juxtaposes\nthe building of a magnificent church with the violence and treachery that\noften characterized the Middle Ages. Reissue.\"\r\n141,144,8664353,Laura Hillenbrand,\"Unbroken: A World War II Story of Survival, Resilience, and Redemption\",https://images.gr-assets.com/books/1327861115l/8664353.jpg,4.4,487775,\"history, biography\",\"Relates the story of a U.S. airman who survived when his bomber crashed\ninto the sea during World War II, spent forty-seven days adrift in the\nocean before being rescued by the Japanese Navy, and was held as a prisoner\nuntil the end of the war.\"\r\n142,145,976,Dan Brown,Deception Point,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1551277487l/976._SY475_.jpg,3.67,455610,\"fiction, thriller\",\"On the eve of a presidential race in which NASA's budget is a pivotal\nissue, the space agency announces the discovery of an ancient meteorite\nfilled with fossils deep in the Arctic ice.\"\r\n143,146,17333223,Donna Tartt,The Goldfinch,https://images.gr-assets.com/books/1451554970l/17333223.jpg,3.87,396756,\"fiction, contemporary\",The GoldfinchDonna Tartt\r\n144,147,1217100,Jay Asher,Thirteen Reasons Why,https://images.gr-assets.com/books/1333822506l/1217100.jpg,4.02,463783,\"romance, contemporary\",\"\"\"Now a Netflix original series-- photos and exclusive interviews inside\"\"--\nCover.\"\r\n145,148,2865,Tracy Chevalier,Girl with a Pearl Earring,https://images.gr-assets.com/books/1327197580l/2865.jpg,3.85,467577,\"fiction, art\",\"A poor seventeenth-century servant girl knows her place in the household of\nthe painter Johannes Vermeer, but when he begins to paint her, nasty\nwhispers and rumors circulate throughout the town. Reprint.\"\r\n146,149,4374400,Gayle Forman,If I Stay,https://images.gr-assets.com/books/1347462970l/4374400.jpg,3.96,503527,\"romance, contemporary\",\"With no memory of the car accident itself, 17-year-old Mia must come to\nterms with never really knowing what happened one horrific winter's day\nthat changed her life forever. Reprint.\"\r\n147,150,4989,Anita Diamant,The Red Tent,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405739117l/4989.jpg,4.16,424981,\"history, fiction\",The Red TentAnita Diamant\r\n148,151,28186,Rick Riordan,The Sea of Monsters,https://images.gr-assets.com/books/1400602661l/28186.jpg,4.23,514932,\"fantasy, fiction\",\"When Camp Half-Blood, the only safe haven for demigods, comes close to\nbeing overrun by mythological monsters, Percy must find his best friend\nGrover, who is prisoner on an island in the Bermuda Triangle, and then set\nout to save the Camp.\"\r\n149,152,5526,Nicholas Sparks,Dear John,https://images.gr-assets.com/books/1397749854l/5526.jpg,4.01,441062,\"romance, fiction\",\"John, a rebel who dropped out of school to enlist in the army, meets\nSavannah, the girl of his dreams, but the events of September 11, 2001,\nJohn's decision to re-enlist, and Savannah's marriage to another man\nthreaten their love.\"\r\n150,153,1582996,Cassandra Clare,City of Ashes,https://images.gr-assets.com/books/1432730356l/1582996.jpg,4.21,541117,\"fantasy, paranormal\",\"Sixteen-year-old Clary continues trying to make sense of the swiftly\nchanging events and relationships in her life as she becomes further\ninvolved with the Shadowhunters and their pursuit of demons and discovers\nsome terrifying truths about her parents, her brother Jace, and her\nboyfriend Simon.\"\r\n151,154,8852,William Shakespeare,The Tragedy of Macbeth,https://images.gr-assets.com/books/1459795224l/8852.jpg,3.88,496018,\"fiction, poetry\",The Tragedy of MacbethWilliam Shakespeare\r\n152,155,15241,J.R.R. Tolkien,The Two Towers,https://images.gr-assets.com/books/1298415523l/15241.jpg,4.42,480446,\"fantasy, classics\",\"The second volume in J.R.R. Tolkien's epic adventure The Lord of the Rings\nOne Ring to rule them all, One Ring to find them, One Ring to bring them\nall and in the darkness bind them Frodo and his Companions of the Ring have\nbeen beset by danger during their quest to prevent the Ruling Ring from\nfalling into the hands of the Dark Lord by destroying it in the Cracks of\nDoom. They have lost the wizard, Gandalf, in a battle in the Mines of\nMoria. And Boromir, seduced by the power of the Ring, tried to seize it by\nforce. While Frodo and Sam made their escape, the rest of the company was\nattacked by Orcs. Now they continue the journey alone down the great River\nAnduin-alone, that is, save for the mysterious creeping figure that follows\nwherever they go.\"\r\n153,156,42156,Emily Giffin,Something Borrowed,https://images.gr-assets.com/books/1305063535l/42156.jpg,3.83,403601,\"romance, fiction\",\"After a night of indiscriminate partying, Rachel sleeps with a close\nfriend's fianc and is consumed with guilt, until the intensity of her\nfeelings forces her to make a difficult choice. A first novel. Reprint.\n125,000 first printing.\"\r\n154,157,23772,\"Dr. Seuss, לאה נאור\",Green Eggs and Ham,https://images.gr-assets.com/books/1468680100l/23772.jpg,4.29,457475,\"classics, fiction\",\"Green Eggs and HamDr. Seuss, לאה נאור\"\r\n155,158,6310,\"Roald Dahl, Quentin Blake\",Charlie and the Chocolate Factory,https://images.gr-assets.com/books/1309211401l/6310.jpg,4.1,453959,\"fiction, classics\",\"Each of five children lucky enough to discover an entry ticket into Mr.\nWilly Wonka's mysterious chocolate factory takes advantage of the situation\nin his own way.\"\r\n156,159,2120932,Rick Riordan,The Battle of the Labyrinth,https://images.gr-assets.com/books/1443142158l/2120932.jpg,4.39,508214,\"fantasy, fiction\",The Battle of the LabyrinthRick Riordan\r\n157,160,2623,Charles Dickens,Great Expectations,https://images.gr-assets.com/books/1327920219l/2623.jpg,3.75,459247,\"classics, fiction\",Great ExpectationsCharles Dickens\r\n158,161,18512,J.R.R. Tolkien,The Return of the King,https://images.gr-assets.com/books/1389977161l/18512.jpg,4.51,463959,\"fantasy, fiction\",An adult fairy tale which takes place in the third age of middle- earth.\r\n159,162,49552,\"Albert Camus, Matthew    Ward\",L’Étranger,https://images.gr-assets.com/books/1349927872l/49552.jpg,3.96,420600,\"classics, fiction\",An ordinary man is unwittingly caught up in a senseless murder in Algeria\r\n160,163,7736182,Rick Riordan,The Lost Hero,https://images.gr-assets.com/books/1464201003l/7736182.jpg,4.35,271576,\"fantasy, fiction\",The Lost HeroRick Riordan\r\n161,164,15745753,Rainbow Rowell,Eleanor & Park,https://images.gr-assets.com/books/1341952742l/15745753.jpg,4.11,514312,\"romance, contemporary\",\"\"\"Set over the course of one school year in 1986, this is the story of two\nstar-crossed misfits--smart enough to know that first love almost never\nlasts, but brave and desperate enough to try\"\"--\"\r\n162,165,13497,George R.R. Martin,A Feast for Crows,https://images.gr-assets.com/books/1429538615l/13497.jpg,4.1,428186,\"fantasy, fiction\",\"The uneasy peace that exists following the death of Robb Stark is\nthreatened by new plots, intrigues, and alliances that once again will\nplunge the Seven Kingdoms into all-out war for control of the Iron Throne.\"\r\n163,166,7735333,Ally Condie,Matched,https://images.gr-assets.com/books/1367706191l/7735333.jpg,3.68,511815,\"romance, fiction\",\"Cassia has always trusted the Society to make the right choices for her. So\nwhen Xander's face appears on-screen at her Matching ceremony, Cassia knows\nhe is her ideal mate . . . until she sees Ky Markham's face flash for an\ninstant before the screen fades to black.\"\r\n164,167,4407,Neil Gaiman,American Gods,https://images.gr-assets.com/books/1258417001l/4407.jpg,4.11,378019,\"fantasy, fiction\",American GodsNeil Gaiman\r\n165,168,149267,\"Stephen King, Bernie Wrightson\",The Stand,https://images.gr-assets.com/books/1213131305l/149267.jpg,4.34,438832,\"horror, fiction\",\"The StandStephen King, Bernie Wrightson\"\r\n166,169,6400090,Nicholas Sparks,The Last Song,https://images.gr-assets.com/books/1286549186l/6400090.jpg,4.14,424637,\"romance, fiction\",\"Seventeen year old Veronica \"\"Ronnie\"\" Miller's life was turned upside-down\nwhen her parents divorced and her father moved from New York City to\nWrightsville Beach, North Carolina. Three years later, she remains angry\nand alientated from her parents, especially her father...until her mother\ndecides it would be in everyone's best interest if she spent the summer in\nWilmington with him. Ronnie's father, a former concert pianist and teacher,\nis living a quiet life in the beach town, immersed in creating a work of\nart that will become the centerpiece of a local church. The tale that\nunfolds is an unforgettable story of love on many levels--first love, love\nbetween parents and children -- that demonstrates, as only a Nicholas\nSparks novel can, the many ways that love can break our hearts...and heal\nthem.\"\r\n167,170,11125,Dan Brown,Digital Fortress,https://images.gr-assets.com/books/1360095966l/11125.jpg,3.6,423019,\"fiction, thriller\",\"When the NSA's invincible code-breaking machine encounters a mysterious\ncode it cannot break, the agency calls its head cryptographer, Susan\nFletcher, a brilliant, beautiful mathematician. What she uncovers sends\nshock waves through the corridors of power. The NSA is being held hostage--\nnot by guns or bombs -- but by a code so complex that if released would\ncripple U.S. intelligence. Caught in an accelerating tempest of secrecy and\nlies, Fletcher battles to save the agency she believes in. Betrayed on all\nsides, she finds herself fighting not only for her country but for her\nlife, and in the end, for the life of the man she loves.\"\r\n168,171,6969,\"Jane Austen, Fiona Stafford\",Emma,https://images.gr-assets.com/books/1373627931l/6969.jpg,3.99,459826,\"classics, fiction\",\"New chronology and further reading; Tony Tanner's original introduction\nreinstated Edited with an introduction and notes by Flora Stafford.\"\r\n169,172,15823480,\"Leo Tolstoy, Louise Maude, Leo Tolstoj, Aylmer Maude\",Анна Каренина,https://images.gr-assets.com/books/1352422904l/15823480.jpg,4.02,297472,\"classics, fiction\",\"Presents the nineteenth-century Russian novelist's classic in which a young\nwoman is destroyed when she attempts to live outside the moral law of her\nsociety\"\r\n170,173,227463,Anthony Burgess,A Clockwork Orange,https://images.gr-assets.com/books/1348339306l/227463.jpg,3.98,431195,\"classics, fiction\",\"Great Music, it said, and Great Poetry would like quieten Modern Youth down\nand make Modern Youth more Civilized. Civilized my syphilised yarbles. A\nvicious fifteen-year-old droog is the central character of this 1963\nclassic. In Anthony Burgess's nightmare vision of the future, where the\ncriminals take over after dark, the story is told by the central character,\nAlex, who talks in a brutal invented slang that brilliantly renders his and\nhis friends' social pathology. A Clockwork Orange is a frightening fable\nabout good and evil, and the meaning of human freedom. When the state\nundertakes to reform Alex to \"\"redeem\"\" him, the novel asks, \"\"At what cost?\"\"\nThis edition includes the controversial last chapter not published in the\nfirst edition and Burgess's introduction \"\"A Clockwork Orange Resucked.\"\"\"\r\n171,174,1812457,William Paul Young,The Shack: Where Tragedy Confronts Eternity,https://images.gr-assets.com/books/1344270232l/1812457.jpg,3.74,419539,\"fiction, christian\",The Shack: Where Tragedy Confronts EternityWilliam Paul Young\r\n172,175,4502507,Rick Riordan,The Last Olympian,https://images.gr-assets.com/books/1327924597l/4502507.jpg,4.5,397500,\"fantasy, fiction\",\"All year the half-bloods have been preparing for battle against the Titans,\nknowing the odds are against them. Kronos is stronger than ever, and with\nevery god and half-blood he recruits, his power only grows. In this\nmomentous final book in the New York Times best-selling series, the\nprophecy surrounding Percy’s sixteenth birthday unfolds. And as the battle\nfor Western civilization rages on the streets of Manhattan, Percy faces a\nterrifying suspicion that he may be fighting against his own fate.\"\r\n173,176,18342,Stephen King,It,https://images.gr-assets.com/books/1309376909l/18342.jpg,4.18,292592,\"horror, fiction\",\"They were seven teenagers when they first stumbled upon the horror. Now\nthey were grown-up men and women who had gone out into the big world to\ngain success and happiness. But none of them could withstand the force that\ndrew them back to Derry, Maine to face the nightmare without an end, and\nthe evil without a name.\"\r\n174,177,7144,\"Fyodor Dostoyevsky, David McDuff\",Преступление и наказание,https://images.gr-assets.com/books/1382846449l/7144.jpg,4.18,380903,\"fiction, philosophy\",\"Supreme masterpiece recounts in feverish, compelling tones the story of\nRaskolnikov, an impoverished student tormented by his own nihilism, and the\nstruggle between good and evil.\"\r\n175,178,6514,Sylvia Plath,The Bell Jar,https://images.gr-assets.com/books/1473890514l/6514.jpg,3.98,401605,\"classics, fiction\",\"Esther Greenwood, a talented and successful writer, finally succumbs to\nmadness when the world around her begins to falter.\"\r\n176,179,252577,Frank McCourt,Angela's Ashes: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348317139l/252577.jpg,4.07,392103,\"memoir, biography\",\"The author recounts his childhood in Depression-era Brooklyn as the child\nof Irish immigrants who decide to return to worse poverty in Ireland when\nhis infant sister dies\"\r\n177,180,52036,\"Hermann Hesse, Hilda Rosner\",Siddhartha,https://images.gr-assets.com/books/1428715580l/52036.jpg,3.99,372099,\"classics, fiction\",\"Blends elements of psychoanalysis and Asian religions to probe an Indian\naristocrat's efforts to renounce sensual and material pleasures and\ndiscover ultimate spiritual truths\"\r\n178,181,168642,Truman Capote,In Cold Blood,https://images.gr-assets.com/books/1424931136l/168642.jpg,4.05,381652,\"classics, nonfiction\",\"An account of the senseless murder of a Kansas farm family and the search\nfor the killers\"\r\n179,182,6304335,\"Kami Garcia, Margaret Stohl\",Beautiful Creatures,https://images.gr-assets.com/books/1327873282l/6304335.jpg,3.76,436093,\"fantasy, paranormal\",\"This edition features exclusive movie cover art! Lena Duchannes is unlike\nanyone the small Southern town of Gatlin has ever seen, and she's\nstruggling to conceal her power, and a curse that has haunted her family\nfor generations. But even within the overgrown gardens, murky swamps and\ncrumbling graveyards of the forgotten South, a secret cannot stay hidden\nforever. Ethan Wate, who has been counting the months until he can escape\nfrom Gatlin, is haunted by dreams of a beautiful girl he has never met.\nWhen Lena moves into the town's oldest and most infamous plantation, Ethan\nis inexplicably drawn to her and determined to uncover the connection\nbetween them. In a town with no surprises, one secret could change\neverything.\"\r\n180,183,7171637,Cassandra Clare,Clockwork Angel,https://images.gr-assets.com/books/1454962884l/7171637.jpg,4.33,490890,\"fantasy, paranormal\",\"Includes excerpts from Clock prince, City of bones, Lady Midnight, and a\nsneak peek at Vampires, scones, and Edmund Herondale.\"\r\n181,184,39988,\"Roald Dahl, Quentin Blake\",Matilda,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388793265l/39988.jpg,4.29,440743,\"fiction, fantasy\",\"Now reissued--Dahl's tale of a sweet five-year-old little girl with\nextraordinary mental powers that she uses to teach her school's evil head\nmistress a lesson she'll never forget.\"\r\n182,185,9361589,Erin Morgenstern,The Night Circus,https://images.gr-assets.com/books/1387124618l/9361589.jpg,4.03,429543,\"fantasy, fiction\",\"Waging a fierce competition for which they have trained since childhood,\ncircus magicians Celia and Marco unexpectedly fall in love with each other\nand share a fantastical romance that manifests in fateful ways. A first\nnovel. Reprint.\"\r\n183,186,37470,Philippa Gregory,The Other Boleyn Girl,https://images.gr-assets.com/books/1355932638l/37470.jpg,4.04,381080,\"fiction, romance\",\"The #1 New York Times bestseller from “the queen of royal fiction” (USA\nTODAY) Philippa Gregory is a rich, compelling novel of love, sex, ambition,\nand intrigue surrounding the Tudor court of Henry VIII, Anne Boleyn, and\nthe infamous Boleyn family. When Mary Boleyn comes to court as an innocent\ngirl of fourteen, she catches the eye of the handsome and charming Henry\nVIII. Dazzled by the king, Mary falls in love with both her golden prince\nand her growing role as unofficial queen. However, she soon realizes just\nhow much she is a pawn in her family’s ambitious plots as the king’s\ninterest begins to wane, and soon she is forced to step aside for her best\nfriend and rival: her sister, Anne. With her own destiny suddenly unknown,\nMary realizes that she must defy her family and take fate into her own\nhands. With more than one million copies in print and adapted for the big\nscreen, The Other Boleyn Girl is a riveting historical drama. It brings to\nlight a woman of extraordinary determination and desire who lived at the\nheart of the most exciting and glamorous court in Europe, and survived a\ntreacherous political landscape by following her heart.\"\r\n184,187,24770,Scott Westerfeld,Uglies,https://images.gr-assets.com/books/1443904172l/24770.jpg,3.86,449073,\"fiction, fantasy\",\"A fresh repackaging of the bestselling Uglies boks...the series that\nstarted the whole dystopian trend!\"\r\n185,188,10664113,George R.R. Martin,A Dance with Dragons,https://images.gr-assets.com/books/1327885335l/10664113.jpg,4.31,365954,\"fantasy, fiction\",\"A latest installment of the popular series follows a showdown set in the\nnorth of the Seven Kingdoms and reveals the circumstances that shaped\nsouthern-region events. By the best-selling author of A Feast for Crows.\nReprint. 400,000 first printing.\"\r\n186,189,33,J.R.R. Tolkien,The Lord of the Rings,https://images.gr-assets.com/books/1411114164l/33.jpg,4.47,389054,\"fantasy, classics\",\"Presents the epic depicting the Great War of the Ring, a struggle between\ngood and evil in Middle-earth, following the odyssey of Frodo the hobbit\nand his companions on a quest to destroy the Ring of Power.\"\r\n187,190,12262741,Cheryl Strayed,Wild: From Lost to Found on the Pacific Crest Trail ,https://images.gr-assets.com/books/1453189881l/12262741.jpg,3.96,379872,\"memoir, nonfiction\",\"Traces the personal crisis the author endured after the death of her mother\nand a painful divorce, which prompted her ambition to undertake a dangerous\nthousand-mile solo hike that both drove her to rock bottom and helped her\nto heal.\"\r\n188,191,472331,\"Alan Moore, Dave Gibbons, John Higgins\",Watchmen,https://images.gr-assets.com/books/1442239711l/472331.jpg,4.35,398018,\"fiction, fantasy\",\"As former members of a disbanded group of superheroes called the\nCrimebusters start turning up dead, the remaining members of the group try\nto discover the identity of the murderer before they, too, are killed.\"\r\n189,192,186074,Patrick Rothfuss,The Name of the Wind,https://images.gr-assets.com/books/1472068073l/186074.jpg,4.55,400101,\"fantasy, fiction\",\"A hero named Kvothe, now living under an assumed name as the humble\nproprietor of an inn, recounts his transformation from a magically gifted\nyoung man into the most notorious wizard, musician, thief, and assassin in\nhis world. Reprint.\"\r\n190,193,3228917,Malcolm Gladwell,Outliers: The Story of Success,https://images.gr-assets.com/books/1344266315l/3228917.jpg,4.11,353011,\"nonfiction, psychology\",Outliers: The Story of SuccessMalcolm Gladwell\r\n191,194,153747,\"Herman Melville, Andrew Delbanco, Tom Quirk\",\"Moby Dick; or, The Whale\",https://images.gr-assets.com/books/1327940656l/153747.jpg,3.46,358050,\"classics, fiction\",\"On board the whaling ship Pequod a crew of wise men and fools, renegades\nand seeming phantoms is hurled through treacherous seas by a crazed captain\nhell-bent on hunting down the mythic White Whale. Melville transforms the\nlittle world of the whale-ship into a crucible where mankind¿s fears, faith\nand frailties are pitted against a relentless fate. Teeming with ideas and\nimagery, and with its extraordinary, compressed intensity sustained by\nmischievous irony and moments of exquisite beauty, Moby-Dick is both a\ngreat American epic and a most profoundly imaginative literary creation.\nWith an afterword by Nigel Cliff. Designed to appeal to the book lover, the\nMacmillan Collector's Library is a series of beautifully bound pocket-sized\ngift editions of much loved classic titles. Bound in real cloth, printed on\nhigh quality paper, and featuring ribbon markers and gilt edges, Macmillan\nCollector's Library are books to love and treasure.\"\r\n192,195,2728527,\"Mary Ann Shaffer, Annie Barrows\",The Guernsey Literary and Potato Peel Pie Society,https://images.gr-assets.com/books/1351979318l/2728527.jpg,4.12,393626,\"fiction, romance\",\"In 1946, writer Juliet Ashton receives a letter from a stranger, a founding\nmember of the Guernsey Literary and Potato Peel Pie Society. And so begins\na remarkable tale of the island of Guernsey during the German occupation,\nand of a society as extraordinary as its name.\"\r\n193,196,5759,Chuck Palahniuk,Fight Club,https://images.gr-assets.com/books/1357128997l/5759.jpg,4.2,365349,\"fiction, contemporary\",\"In a confusing world poised on the brink of mayhem, Tyler Durden, a\nprojectionist, waiter, and anarchic genius, comes up with an idea to create\nclubs in which young men can escape their humdrum existence and prove\nthemselves in barehanded fights. Reprint. 50,000 first printing.\"\r\n194,197,301082,Charlaine Harris,Dead Until Dark,https://images.gr-assets.com/books/1468560853l/301082.jpg,3.96,420764,\"fantasy, paranormal\",\"Love blossoms between Sookie Stackhouse, a cocktail waitress in rural\nLouisiana who keeps to herself because of her ability to read minds, and\nBill, a tall, dark, and handsome vampire with ties to a creepy crowd that\nmay be responsible for the death of one of Sookie's coworkers. Original.\"\r\n195,198,11486,Alice Walker,The Color Purple,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556348375l/11486.jpg,4.17,376766,\"fiction, classics\",\"The Pulitzer Prize-winning novel that tells the story of two sisters\nthrough their correspondence. With a new Preface by the author.\"\r\n196,199,12691,John Grogan,Marley & Me: Life and Love with the World's Worst Dog,https://images.gr-assets.com/books/1308858322l/12691.jpg,4.12,367304,\"nonfiction, memoir\",\"The heartwarming and unforgettable story of a family and the wondrously\nneurotic dog who taught them what really matters in life. Now with photos\nand new material\"\r\n197,200,16299,Agatha Christie,Ten Little Niggers,https://images.gr-assets.com/books/1391120695l/16299.jpg,4.23,408983,\"mystery, classics\",Ten Little NiggersAgatha Christie\r\n198,201,6411961,Dan Brown,The Lost Symbol,https://images.gr-assets.com/books/1358274396l/6411961.jpg,3.66,369428,\"fiction, mystery\",\"Symbologist Robert Langdon returns in this new thriller follow-up to The Da\nVinci Code.\"\r\n199,202,6339664,Becca Fitzpatrick,\"Hush, Hush\",https://images.gr-assets.com/books/1358261334l/6339664.jpg,4,448166,\"fantasy, paranormal\",\"Sixteen-year old Nora finds forbidden love with a fallen angel, the New\nYork Times Bestseller, now in paperback!\"\r\n200,203,11505797,Jamie McGuire,Beautiful Disaster,https://images.gr-assets.com/books/1358259032l/11505797.jpg,4.15,418309,\"romance, contemporary\",\"Travis Maddox, Eastern University's playboy, makes a bet with good girl\nAbby that if he loses, he will remain abstinent for a month, but if he\nwins, Abby must live in his apartment for the same amount of time.\"\r\n201,204,5326,Charles Dickens,A Christmas Carol,https://images.gr-assets.com/books/1406512317l/5326.jpg,4.02,394540,\"classics, fiction\",\"A Christmas Carol is a novella by English author Charles Dickens. It was\nfirst published by Chapman & Hall on 19 December 1843. Carol tells the\nstory of a bitter old miser named Ebenezer Scrooge and his transformation\nresulting from a supernatural visit by the ghost of his former business\npartner Jacob Marley and the Ghosts of Christmases Past, Present and Yet to\nCome. The novella met with instant success and critical acclaim.The book\nwas written and published in early Victorian era Britain, a period when\nthere was strong nostalgia for old Christmas traditions together with the\nintroduction of new customs, such as Christmas trees and greeting cards.\nDickens' sources for the tale appear to be many and varied, but are,\nprincipally, the humiliating experiences of his childhood, his sympathy for\nthe poor, and various Christmas stories and fairy tales\"\r\n202,205,43763,Anne Rice,Interview with the Vampire,https://images.gr-assets.com/books/1380631642l/43763.jpg,3.97,372566,\"fantasy, horror\",\"Recounting his first two hundred years of life, a vampire tells of his\nerotic alliance with Claudia, whose passions are forever locked up in the\nbody of a child\"\r\n203,206,10507293,Kiera Cass,The Selection,https://images.gr-assets.com/books/1322103400l/10507293.jpg,4.15,505340,\"romance, fantasy\",\"For thirty-five girls, the Selection is the chance of a lifetime. The\nopportunity to escape the life laid out for them since birth. To be swept\nup in a world of glittering gowns and priceless jewels. To live in a palace\nand compete for the heart of gorgeous Prince Maxon. But for America Singer,\nbeing Selected is a nightmare. It means turning her back on her secret love\nwith Aspen, who is a caste below her. Leaving her home to enter a fierce\ncompetition for a crown she doesn't want. Living in a palace that is\nconstantly threatened by violent rebel attacks. Then America meets Prince\nMaxon. Gradually, she starts to question all the plans she's made for\nherself—and realizes that the life she's always dreamed of may not compare\nto a future she never imagined.\"\r\n204,207,6853,Janet Evanovich,One for the Money,https://images.gr-assets.com/books/1316730230l/6853.jpg,4.03,391007,\"mystery, fiction\",One for the MoneyJanet Evanovich\r\n205,208,6493208,Rebecca Skloot,The Immortal Life of Henrietta Lacks,https://images.gr-assets.com/books/1327878144l/6493208.jpg,4.04,377249,\"nonfiction, science\",\"Documents the story of how scientists took cells from an unsuspecting\ndescendant of freed slaves and created a human cell line that has been kept\nalive indefinitely, enabling discoveries in such areas as cancer research,\nin vitro fertilization and gene mapping. Includes reading-group guide.\nReprint. A best-selling book.\"\r\n206,209,23807,Thomas Harris,The Silence of the Lambs,https://images.gr-assets.com/books/1390426249l/23807.jpg,4.14,351107,\"horror, fiction\",\"As part of the search for a serial murderer nicknames \"\"Buffalo Bill,\"\" FBI\ntrainee Clarice Starling is given an assignment. She must visit a man\nconfined to a high-security facility for the criminally insane and\ninterview him. That man, Dr. Hannibal Lecter, is a former psychiatrist with\nunusual tastes and an intense curiosity about the darker corners of the\nmind. His intimate understanding of the killer and of Clarice herself form\nthe core of Thomas Harris' The Silence of the Lambs--an unforgettable\nclassic of suspense fiction.\"\r\n207,211,40102,Malcolm Gladwell,Blink: The Power of Thinking Without Thinking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440763417l/40102._SX318_.jpg,3.89,348196,\"psychology, nonfiction\",Blink: The Power of Thinking Without ThinkingMalcolm Gladwell\r\n208,212,6867,Ian McEwan,Atonement,https://images.gr-assets.com/books/1320449708l/6867.jpg,3.88,347006,\"romance, classics\",\"In 1935 England, thirteen-year-old Briony Tallis witnesses an event\ninvolving her sister Cecilia and her childhood friend Robbie Turner, and\nshe becomes the victim of her own imagination, which leads her on a\nlifelong search for truth and absolution.\"\r\n209,213,485894,\"Franz Kafka, Stanley Corngold\",Die Verwandlung,https://images.gr-assets.com/books/1359061917l/485894.jpg,3.78,364933,\"classics, fiction\",\"For use in schools and libraries only. Writings by and about Kafka and\ntextual notes accompany his translations of his early 20th-century work.\"\r\n210,214,561456,Rick Riordan,The Titan's Curse,https://images.gr-assets.com/books/1361038385l/561456.jpg,4.33,446668,\"fantasy, fiction\",\"When the goddess Artemis goes missing, she is believed to have been\nkidnapped. And now it’s up to Percy and his friends to find out what\nhappened. Who is powerful enough to kidnap a goddess? They must find\nArtemis before the winter solstice, when her influence on the Olympian\nCouncil could swing an important vote on the war with the titans. Not only\nthat, but first Percy will have to solve the mystery of a rare monster that\nArtemis was hunting when she disappeared—a monster rumored to be so\npowerful it could destroy Olympus forever.\"\r\n211,216,3153910,Garth Stein,The Art of Racing in the Rain,https://images.gr-assets.com/books/1377206302l/3153910.jpg,4.19,327409,\"fiction, contemporary\",\"Nearing the end of his life, Enzo, a dog with a philosopher's soul, tries\nto bring together the family, pulled apart by a three year custody battle\nbetween daughter Zoe's maternal grandparents and her father Denny, a race\ncar driver.\"\r\n212,217,21996,\"Erik Larson, Tony Goldwyn\",\"The Devil in the White City: Murder, Magic, and Madness at the Fair that Changed America\",https://images.gr-assets.com/books/1312066724l/21996.jpg,3.98,309385,\"history, nonfiction\",\"The Devil in the White City: Murder, Magic, and Madness at the Fair that Changed AmericaErik Larson, Tony Goldwyn\"\r\n213,218,13572249,Sylvia Day,Bared to You,https://images.gr-assets.com/books/1477803272l/13572249.jpg,4.19,222678,\"romance, contemporary\",Bared to YouSylvia Day\r\n214,219,11127,\"C.S. Lewis, Pauline Baynes\",The Chronicles of Narnia,https://images.gr-assets.com/books/1449868701l/11127.jpg,4.24,376385,\"religion, fiction\",\"When Digory and Polly try to return the wicked witch Jadis to her own\nworld, the magic gets mixed up and they all land in Narnia where they\nwitness Aslan blessing the animals with human speech.\"\r\n215,220,3609760,Mark Cotta Vaz,Twilight: The Complete Illustrated Movie Companion,https://images.gr-assets.com/books/1352539022l/3609760.jpg,4.23,291411,\"fantasy, paranormal\",Twilight: The Complete Illustrated Movie CompanionMark Cotta Vaz\r\n216,221,60748,Dave Pelzer,\"A Child Called \"\"It\"\": One Child's Courage to Survive\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438400434l/60748._SY475_.jpg,4.08,311543,\"nonfiction, memoir\",\"This book chronicles the unforgettable account of one of the most severe\nchild abuse cases in California history. It is the story of Dave Pelzer,\nwho was brutally beaten and starved by his emotionally unstable, alcoholic\nmother: a mother who played tortuous, unpredictable games--games that left\nhim nearly dead. He had to learn how to play his mother's games in order to\nsurvive because she no longer considered him a son, but a slave; and no\nlonger a boy, but an \"\"it.\"\" Dave's bed was an old army cot in the basement,\nand his clothes were torn and raunchy. When his mother allowed him the\nluxury of food, it was nothing more than spoiled scraps that even the dogs\nrefused to eat. The outside world knew nothing of his living nightmare. He\nhad nothing or no one to turn to, but his dreams kept him alive--dreams of\nsomeone taking care of him, loving him and calling him their son.\"\r\n217,222,7869,Robert Ludlum,The Bourne Identity,https://images.gr-assets.com/books/1335860740l/7869.jpg,3.98,327122,\"fiction, thriller\",\"Jason Bourne. He has no past. And he may have no future. His memory is\nblank. He only knows that he was flushed out of the Mediterranean Sea, his\nbody riddled with bullets. There are a few clues. A frame of microfilm\nsurgically implanted beneath the flesh of his hip. Evidence that plastic\nsurgery has altered his face. Strange things that he says in his delirium\n-- maybe code words. Initial: \"\"J.B.\"\" And a number on the film negative that\nleads to a Swiss bank account, a fortune of four million dollars, and, at\nlast, a name: Jason Bourne. But now he is marked for death, caught in a\nmaddening puzzle, racing for survival through the deep layers of his buried\npast into a bizarre world of murderous conspirators -- led by Carlos, the\nworld's most dangerous assassin. And no one can help Jason Bourne but the\nwoman who once wanted to escape him.\"\r\n218,223,249747,Eoin Colfer,Artemis Fowl,https://images.gr-assets.com/books/1327945104l/249747.jpg,3.82,386923,\"fantasy, fiction\",\"When twelve-year-old evil genius Artemis Fowl tries to restore his family\nfortune by capturing a fairy and demanding a ransom in gold, the fairies\nfight back with magic, technology, and a particularly nasty troll.\"\r\n219,224,6487308,Lauren Kate,Fallen,https://images.gr-assets.com/books/1440619649l/6487308.jpg,3.74,395296,\"fantasy, romance\",\"Seventeen-year-old Luce, who is suspected of killing her boyfriend, is sent\nto a Savannah, Georgia, reform school where she meets two intriguing boys\nand learns the truth about the strange shadows that have always haunted\nher.\"\r\n220,225,4406,John Steinbeck,East of Eden  ,https://images.gr-assets.com/books/1441547516l/4406.jpg,4.35,320919,\"classics, fiction\",\"The biblical account of Cain and Abel is echoed in the history of two\ngenerations of the Trask family in California\"\r\n221,226,5886881,Gillian Flynn,Dark Places,https://images.gr-assets.com/books/1354988288l/5886881.jpg,3.92,333452,\"mystery, fiction\",\"After witnessing the murder of her mother and sisters, 7-year-old Libby Day\ntestifies against her brother Ben, but 25 years later she tries to profit\nfrom her tragic history and admit that her story might not have been\naccurate. Reprint. A best-selling novel.\"\r\n222,227,5359,John Grisham,The Client,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554192326l/5359._SY475_.jpg,3.97,320083,\"fiction, mystery\",The ClientJohn Grisham\r\n223,228,228333,\"Emma McLaughlin, Nicola Kraus\",The Nanny Diaries,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390018191l/228333.jpg,3.4,323762,\"fiction, contemporary\",\"Wanted: One young woman to take care of four-year-old boy. Must be\ncheerful, enthusiastic and selfless--bordering on masochistic. Must relish\nsixteen-hour shifts with a deliberately nap-deprived preschooler. Must love\ngetting thrown up on, literally and figuratively, by everyone in his\nfamily. Must enjoy the delicious anticipation of ridiculously erratic pay.\nMostly, must love being treated like fungus found growing out of employers\nHermès bag. Those who take it personally need not apply. Who wouldn't want\nthis job? Struggling to graduate from NYU and afford her microscopic studio\napartment, Nanny takes a position caring for the only son of the wealthy X\nfamily. She rapidly learns the insane amount of juggling involved to ensure\nthat a Park Avenue wife who doesn't work, cook, clean, or raise her own\nchild has a smooth day. When the Xs' marriage begins to disintegrate, Nanny\nends up involved way beyond the bounds of human decency or good taste. Her\ntenure with the X family becomes a nearly impossible mission to maintain\nthe mental health of their four-year-old, her own integrity and, most\nimportantly, her sense of humor. Over nine tense months, Mrs. X and Nanny\nperform the age-old dance of decorum and power as they test the limits of\nmodern-day servitude. Written by two former nannies, The Nanny Diaries\ndeftly punctures the glamour of Manhattan's upper class.\"\r\n224,229,24213,\"Lewis Carroll, John Tenniel, Martin Gardner\",Alice's Adventures in Wonderland,https://images.gr-assets.com/books/1327872220l/24213.jpg,4.06,340920,\"classics, fantasy\",A scholarly analysis accompanies the text of Carroll's work about Alice.\r\n225,230,2156,\"Jane Austen, James Kinsley, Deidre Shauna Lynch\",Persuasion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385172413l/2156.jpg,4.13,365425,\"classics, fiction\",\"The romance between Captain Wentworth and Anne, the daughter of Sir Walter\nElliot, seems doomed because of the young man's family connections and lack\nof wealth.\"\r\n226,231,556602,Tatiana de Rosnay,Elle s'appelait Sarah,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438863728l/556602._SX318_.jpg,4.14,312444,\"fiction, history\",Elle s'appelait SarahTatiana de Rosnay\r\n227,232,43615,Stephen King,The Gunslinger,https://images.gr-assets.com/books/1375776480l/43615.jpg,3.99,332494,\"fantasy, fiction\",The GunslingerStephen King\r\n228,233,9712,\"Gabriel García Márquez, Edith Grossman\",El amor en los tiempos del cólera,https://images.gr-assets.com/books/1327124987l/9712.jpg,3.89,283806,\"fiction, classics\",\"El amor en los tiempos del cóleraGabriel García Márquez, Edith Grossman\"\r\n229,234,439288,Laurie Halse Anderson,Speak,https://images.gr-assets.com/books/1310121762l/439288.jpg,4,360156,\"fiction, contemporary\",\"The first ten lies they tell you in high school. \"\"Speak up for yourself--we\nwant to know what you have to say.\"\" From the first moment of her freshman\nyear at Merryweather High, Melinda knows this is a big fat lie, part of the\nnonsense of high school. She is friendless, outcast, because she busted an\nend-of-summer party by calling the cops, so now nobody will talk to her,\nlet alone listen to her. As time passes, she becomes increasingly isolated\nand practically stops talking altogether. Only her art class offers any\nsolace, and it is through her work on an art project that she is finally\nable to face what really happened at that terrible party: she was raped by\nan upperclassman, a guy who still attends Merryweather and is still a\nthreat to her. Her healing process has just begun when she has another\nviolent encounter with him. But this time Melinda fights back, refuses to\nbe silent, and thereby achieves a measure of vindication. In Laurie Halse\nAnderson's powerful novel, an utterly believable heroine with a bitterly\nironic voice delivers a blow to the hypocritical world of high school. She\nspeaks for many a disenfranchised teenager while demonstrating the\nimportance of speaking up for oneself. Speak was a 1999 National Book Award\nFinalist for Young People's Literature.\"\r\n230,235,17802724,Liane Moriarty,The Husband's Secret ,https://images.gr-assets.com/books/1460577225l/17802724.jpg,3.92,232106,\"mystery, fiction\",\"Discovering a tattered letter that says she is to open it only in the event\nof her husband's death, Cecelia, a successful family woman, is unable to\nresist reading the letter and discovers a secret that shatters her life and\nthe lives of two other women.\"\r\n231,236,1898,Jon Krakauer,Into Thin Air: A Personal Account of the Mt. Everest Disaster,https://images.gr-assets.com/books/1463384482l/1898.jpg,4.11,291258,\"nonfiction, memoir\",\"The author describes his spring 1996 trek to Mt. Everest, a disastrous\nexpedition that claimed the lives of eight climbers, and explains why he\nsurvived\"\r\n232,237,10592,Stephen King,Carrie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166254258l/10592._SY475_.jpg,3.93,356814,\"horror, fiction\",\"Presents the unnerving story of a terribly ostracized young girl with\nsupernatural powers of telekinesis.\"\r\n233,238,242006,Augusten Burroughs,Running with Scissors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438898196l/242006._SY475_.jpg,3.7,293878,\"memoir, nonfiction\",Running with ScissorsAugusten Burroughs\r\n234,239,8908,Max Brooks,World War Z: An Oral History of the Zombie War,https://images.gr-assets.com/books/1386328204l/8908.jpg,4.01,312969,\"horror, fiction\",\"An account of the decade-long conflict between humankind and hordes of the\npredatory undead is told from the perspective of dozens of survivors who\ndescribe in their own words the epic human battle for survival.\"\r\n235,240,17212231,Dan Brown,Inferno,https://images.gr-assets.com/books/1397093185l/17212231.jpg,3.8,287533,\"fiction, mystery\",\"In Italy, Harvard professor Robert Langdon is drawn into a world centered\non one of history's most mysterious literary masterpieces--Dante's\n\"\"Inferno\"\"--as he battles a chilling adversary and grapples with an\ningenious riddle.\"\r\n236,241,47281,Lois Lowry,Number the Stars,https://images.gr-assets.com/books/1370917812l/47281.jpg,4.11,333638,\"fiction, classics\",\"In 1943, during the German occupation of Denmark, ten-year-old Annemarie\nlearns how to be brave and courageous when she helps shelter her Jewish\nfriend from the Nazis.\"\r\n237,242,13145,James Patterson,Along Came a Spider,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388272560l/13145.jpg,4.08,311499,\"mystery, fiction\",\"Discover the classic thriller that launched the #1 detective series of the\npast twenty-five years, now one of PBS's \"\"100 Great American Reads\"\" Alex\nCross is a homicide detective with a Ph.D. in psychology. He works and\nlives in the ghettos of D. C. and looks like Muhammad Ali in his prime.\nHe's a tough guy from a tough part of town who wears Harris Tweed jackets\nand likes to relax by banging out Gershwin tunes on his baby grand piano.\nBut he also has two adorable kids of his own, and they are his own special\nvulnerabilities. Jezzie Flanagan is the first woman ever to hold the highly\nsensitive job as supervisor of the Secret Service in Washington. Blond,\nmysterious, seductive, she's got an outer shell that's as tough as it is\nbeautiful. She rides her black BMW motorcycle at speeds of no less than 100\nmph. What is she running from? What is her secret? Alex Cross and Jezzie\nFlanagan are about to have a forbidden love affair-at the worst possible\ntime for both of them. Because Gary Soneji, who wants to commit the \"\"crime\nof the century,\"\" is playing at the top of his game. Soneji has outsmarted\nthe FBI, the Secret Service, and the police. Who will be his next victim?\nGary Soneji is every parent's worst nightmare. He has become Alex Cross's\nnightmare. And now, reader, he's about to become yours.\"\r\n238,243,10614,Stephen King,Misery,https://images.gr-assets.com/books/1270545451l/10614.jpg,4.11,334647,\"horror, fiction\",\"Originally published: New York: Viking, 1987.\"\r\n239,244,66559,Gillian Flynn,Sharp Objects,https://images.gr-assets.com/books/1423241485l/66559.jpg,3.92,207889,\"mystery, fiction\",\"Reluctantly returning to her hometown after an eight-year absence to\ninvestigate the murders of two preteen girls, reporter Camille Preaker is\nreunited with her neurotic mother and enigmatic, thirteen-year-old half-\nsister as she works to uncover the truth about the killings, a probe that\nleads her all too close to the secrets of her own past. A first novel.\nReprint. 75,000 first printing.\"\r\n240,245,2839,Katherine Paterson,Bridge to Terabithia,https://images.gr-assets.com/books/1327880087l/2839.jpg,3.98,337644,\"fiction, fantasy\",\"Jess Aarons' greatest ambition is to be the fastest runner in his grade.\nHe's been practicing all summer and can't wait to see his classmates' faces\nwhen he beats them all. But on the first day of school, a new girl boldly\ncrosses over to the boys' side and outruns everyone. That's not a very\npromising beginning for a friendship, but Jess and Leslie Burke become\ninseparable. Together they create Terabithia, a magical kingdom in the\nwoods where the two of them reign as king and queen, and their imaginations\nset the only limits. Then one morning a terrible tragedy occurs. Only when\nJess is able to come to grips with this tragedy does he finally understand\nthe strength and courage Leslie has given him.\"\r\n241,246,30183,\"P.C. Cast, Kristin Cast\",Marked,https://images.gr-assets.com/books/1317067002l/30183.jpg,3.79,360044,\"fantasy, paranormal\",\"Sixteen-year-old Zoey Redbird is Marked as a fledging vampyre and joins the\nHouse of Night where she will train to become an adult vampyre.\"\r\n242,247,36072,Stephen R. Covey,The 7 Habits of Highly Effective People,https://images.gr-assets.com/books/1421842784l/36072.jpg,4.05,314700,\"business, nonfiction\",\"In The 7 Habits of Highly Effective People, author Stephen R. Covey\npresents a holistic, integrated, principle-centered approach for solving\npersonal and professional problems. With penetrating insights and pointed\nanecdotes, Covey reveals a step-by-step pathway for living with fairness,\nintegrity, service, and human dignity—principles that give us the security\nto adapt to change and the wisdom and power to take advantage of the\nopportunities that change creates.\"\r\n243,248,1622,\"William Shakespeare, Barbara A. Mowat, Paul Werstine, Catherine Belsey\",A Midsummer Night's Dream,https://images.gr-assets.com/books/1327874534l/1622.jpg,3.94,334241,\"classics, fiction\",\"A Midsummer Night's DreamWilliam Shakespeare, Barbara A. Mowat, Paul Werstine, Catherine Belsey\"\r\n244,249,4588,Jonathan Safran Foer,Extremely Loud and Incredibly Close,https://images.gr-assets.com/books/1327879967l/4588.jpg,3.97,294726,\"fiction, contemporary\",\"Oskar Schell, the nine-year-old son of a man killed in the World Trade\nCenter attacks, searches the five boroughs of New York City for a lock that\nfits a black key his father left behind.\"\r\n245,250,11387515,R.J. Palacio,Wonder,https://images.gr-assets.com/books/1309285027l/11387515.jpg,4.43,228538,\"fiction, contemporary\",\"Born with a facial deformity that initially prevented his attendance at\npublic school, Auggie Pullman enters the fifth grade at Beecher Prep and\nstruggles with the dynamics of being both new and different, in a sparsely\nwritten tale about acceptance and self-esteem.\"\r\n246,251,233093,Dr. Seuss,The Cat in the Hat,https://images.gr-assets.com/books/1468890477l/233093.jpg,4.15,314016,\"fiction, poetry\",\"Two children sitting at home on a rainy day are visited by the Cat in the\nHat who shows them some tricks and games.\"\r\n247,252,11235712,Marissa Meyer,Cinder,https://images.gr-assets.com/books/1470056948l/11235712.jpg,4.15,427663,\"fantasy, romance\",\"As plague ravages the overcrowded Earth, observed by a ruthless lunar\npeople, Cinder, a gifted mechanic and cyborg, becomes involved with\nhandsome Prince Kai and must uncover secrets about her past in order to\nprotect the world in this futuristic take onthe Cinderella story.\"\r\n248,253,16160797,\"Robert Galbraith, J.K. Rowling\",The Cuckoo's Calling,https://images.gr-assets.com/books/1358716559l/16160797.jpg,3.83,297712,\"mystery, fiction\",\"The Cuckoo's CallingRobert Galbraith, J.K. Rowling\"\r\n249,254,6068551,Maggie Stiefvater,Shiver,https://images.gr-assets.com/books/1409283154l/6068551.jpg,3.78,356625,\"romance, fiction\",\"In all the years she has watched the wolves in the woods behind her house,\nGrace has been particularly drawn to an unusual yellow-eyed wolf who, in\nhis turn, has been watching her with increasing intensity.\"\r\n250,255,662,\"Ayn Rand, Leonard Peikoff\",Atlas Shrugged,https://images.gr-assets.com/books/1405868167l/662.jpg,3.68,283295,\"fiction, classics\",\"The decisions of a few industrial leaders shake the roots of capitalism and\nreawaken man's awareness of himself as a heroic being, in a special\ncentennial edition of the seminal novel, first published in 1957. Reissue.\"\r\n251,256,49436,\"Greg Mortenson, David Oliver Relin\",Three Cups of Tea ,https://images.gr-assets.com/books/1395407074l/49436.jpg,3.64,283516,\"nonfiction, memoir\",\"Three Cups of Tea Greg Mortenson, David Oliver Relin\"\r\n252,258,1232,\"Carlos Ruiz Zafón, Lucia Graves\",La sombra del viento,https://images.gr-assets.com/books/1344545047l/1232.jpg,4.24,263685,\"fiction, mystery\",\"A boy named Daniel selects a novel from a library of rare books, enjoying\nit so much that he searches for the rest of the author's works, only to\ndiscover that someone is destroying every book the author has ever written.\nReprint.\"\r\n253,259,7631105,James Dashner,The Scorch Trials,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240248l/7631105.jpg,3.93,305643,\"fiction, fantasy\",\"After surviving horrific conditions in the Maze, Thomas is entrapped, along\nwith nineteen other boys, in a scientific experiment designed to observe\ntheir responses and gather data believed to be essential for the survival\nof the human race.\"\r\n254,260,4865,Dale Carnegie,How to Win Friends and Influence People,https://images.gr-assets.com/books/1442726934l/4865.jpg,4.13,282623,\"nonfiction, classics\",\"Provides suggestions for successfully dealing with people both in social\nand business situations\"\r\n255,261,480479,Frances Mayes,Under the Tuscan Sun,https://images.gr-assets.com/books/1320524083l/480479.jpg,3.72,279264,\"travel, memoir\",\"Applies a poet's sensibility, a traveler's eye, and a cook's palate to the\npleasures of the Tuscan countryside, where the author began restoring an\nabandoned villa\"\r\n256,262,19486412,Liane Moriarty,Big Little Lies,https://images.gr-assets.com/books/1492239430l/19486412.jpg,4.2,306186,\"mystery, contemporary\",\"Follows three mothers, each at a crossroads, and their potential\ninvolvement in a riot at a school trivia night that leaves one parent dead\nin what appears to be a tragic accident, but which evidence shows might\nhave been premeditated.\"\r\n257,263,24337,Gail Carson Levine,Ella Enchanted,https://images.gr-assets.com/books/1410727190l/24337.jpg,3.97,339117,\"fantasy, fiction\",\"Ella is a girl with a most unusual gift, and her story has charmed readers\nand critics alike. Now Miramax Films brings this wholly original Cinderella\nstory to the silver screen, complete with princes, ogres, wicked\nstepsisters, and a fairy-tale ending fit for a princess.\"\r\n258,264,3876,Ernest Hemingway,The Sun Also Rises,https://images.gr-assets.com/books/1331828228l/3876.jpg,3.83,284988,\"classics, fiction\",\"A profile of the Lost Generation captures life among the expatriates on\nParis' Left Bank during the 1920s, the brutality of bullfighting in Spain,\nand the moral and spiritual dissolution of a generation.\"\r\n259,265,14891,Betty  Smith,A Tree Grows In Brooklyn ,https://images.gr-assets.com/books/1327883484l/14891.jpg,4.24,291909,\"classics, fiction\",\"The American classic about a young girl's coming-of-age at the turn of the\ncentury. This P.S. edition features an extra 16 pages of insights into the\nbook, including author interviews, recommended reading, and more.\"\r\n260,266,13148,James Patterson,Kiss the Girls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390010470l/13148.jpg,3.93,274639,\"mystery, fiction\",Kiss the GirlsJames Patterson\r\n261,267,21853621,Kristin Hannah,The Nightingale,https://images.gr-assets.com/books/1451446316l/21853621.jpg,4.54,253606,\"fiction, history\",The NightingaleKristin Hannah\r\n262,268,6334,Kazuo Ishiguro,Never Let Me Go,https://images.gr-assets.com/books/1353048590l/6334.jpg,3.8,294123,\"fiction, contemporary\",\"A reunion with two childhood friends draws Kathy and her companions on a\nnostalgic odyssey into their lives at Hailsham, an isolated private school\nin the English countryside, and a confrontation with the truth about their\nchildhoods.\"\r\n263,269,366522,Cecelia Ahern,\"PS, I Love You\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392344536l/366522.jpg,4.01,262921,\"romance, fiction\",\"PS, I Love YouCecelia Ahern\"\r\n264,270,12873,\"Daphne du Maurier, Sally Beauman\",Rebecca,https://images.gr-assets.com/books/1327871977l/12873.jpg,4.2,177384,\"classics, fiction\",\"RebeccaDaphne du Maurier, Sally Beauman\"\r\n265,271,18373,Daniel Keyes,Flowers for Algernon,https://images.gr-assets.com/books/1367141311l/18373.jpg,4.07,313044,\"fiction, classics\",\"Oscar-winning film Charly starring Cliff Robertson and Claire Bloom-a\nmentally challenged man receives an operation that turns him into a\ngenius...and introduces him to heartache.\"\r\n266,272,6952,\"Laura Esquivel, Thomas  Christensen, Carol Christensen\",Como agua para chocolate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1550721459l/6952.jpg,3.94,263199,\"fiction, romance\",\"Como agua para chocolateLaura Esquivel, Thomas  Christensen, Carol Christensen\"\r\n267,273,1103,Lisa See,Snow Flower and the Secret Fan,https://images.gr-assets.com/books/1327880508l/1103.jpg,4.05,280475,\"fiction, history\",\"A story of friendship set in nineteenth-century China follows an elderly\nwoman and her companion as they communicate their hopes, dreams, joys, and\ntragedies through a unique secret language.\"\r\n268,274,22034,\"Mario Puzo, Robert Thompson, Peter Bart\",The Godfather,https://images.gr-assets.com/books/1394988109l/22034.jpg,4.36,256480,\"fiction, classics\",\"The GodfatherMario Puzo, Robert Thompson, Peter Bart\"\r\n269,275,49750,John Green,An Abundance of Katherines,https://images.gr-assets.com/books/1360206426l/49750.jpg,3.63,312754,\"contemporary, fiction\",\"After he is dumped for the nineteenth time by a girl named Katherine, Colin\nsets off on a road trip with his best friend to find a new direction in\nlife, while trying to create a mathematical formula to explain his\nrelationships.\"\r\n270,276,29579,Isaac Asimov,Foundation,https://images.gr-assets.com/books/1417900846l/29579.jpg,4.13,279688,\"fiction, classics\",\"A band of psychologists, under the leadership of psychohistorian Hari\nSeldon, plant a colony to encourage art, science, and technology in the\ndeclining Galactic Empire and to preserve the accumulated knowledge of\nhumankind. Reader's Guide available. Reissue.\"\r\n271,277,15783514,Neil Gaiman,The Ocean at the End of the Lane,https://images.gr-assets.com/books/1497098563l/15783514.jpg,3.99,293844,\"fiction, fantasy\",The Ocean at the End of the LaneNeil Gaiman\r\n272,278,30118,Shel Silverstein,A Light in the Attic,https://images.gr-assets.com/books/1427169918l/30118.jpg,4.34,297861,\"poetry, fiction\",Poems and drawings by Shel Silverstein.\r\n273,279,29056083,\"John Tiffany, Jack Thorne, J.K. Rowling\",\"Harry Potter and the Cursed Child, Parts One and Two\",https://images.gr-assets.com/books/1470082995l/29056083.jpg,3.75,270603,\"fantasy, fiction\",\"The Eighth Story. Nineteen Years Later. Based on an original story by J.K.\nRowling, John Tiffany, and Jack Thorne, a play by Jack Thorne. It was\nalways difficult being Harry Potter and it isn't much easier now that he is\nan overworked employee of the Ministry of Magic, a husband, and father of\nthree school-age children. While Harry grapples with a past that refuses to\nstay where it belongs, his youngest son, Albus, must struggle with the\nweight of a family legacy he never wanted. As past and present fuse\nominously, both father and son learn the uncomfortable truth: Sometimes,\ndarkness comes from unexpected places. The playscript for Harry Potter and\nthe Cursed Child was originally released as a \"\"special rehearsal edition\"\"\nalongside the opening of Jack Thorne's play in London's West End in summer\n2016. Based on an original story by J.K. Rowling, John Tiffany, and Jack\nThorne, the play opened to rapturous reviews from theatergoers and critics\nalike, while the official playscript became an immediate global bestseller.\nThis revised paperback edition updates the \"\"special rehearsal edition\"\" with\nthe conclusive and final dialogue from the play, which has subtly changed\nsince its rehearsals, as well as a conversation piece between director John\nTiffany and writer Jack Thorne, who share stories and insights about\nreading playscripts. This edition also includes useful background\ninformation including the Potter family tree and a timeline of events from\nthe wizarding world prior to the beginning of Harry Potter and the Cursed\nChild.\"\r\n274,280,11614718,Lauren Oliver,Delirium,https://images.gr-assets.com/books/1327890411l/11614718.jpg,3.99,256975,\"romance, fantasy\",DeliriumLauren Oliver\r\n275,281,32499,John Grisham,The Pelican Brief,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389486877l/32499.jpg,3.95,288376,\"mystery, suspense\",\"When the Supreme Court's most liberal and most conservative justices are\ngunned down, law student Darby Shaw builds a case against a powerful\nsuspect, whose threats send her underground. By the author of The Firm.\n250,000 first printing. $500,000 ad/promo. Tour.\"\r\n276,282,17061,Neil Gaiman,Coraline,https://images.gr-assets.com/books/1493497435l/17061.jpg,4.03,316379,\"fantasy, fiction\",\"\"\"Coraline discovered the door a little while after they moved into the\nhouse. . . .\"\" When Coraline steps through a door to find another house\nstrangely similar to her own (only better), things seem marvelous. But\nthere's another mother there, and another father, and they want her to stay\nand be their little girl. They want to change her and never let her go.\nCoraline will have to fight with all her wit and courage if she is to save\nherself and return to her ordinary life. Celebrating ten years of Neil\nGaiman's first modern classic for young readers, this edition is enriched\nwith a brand-new foreword from the author, a reader's guide, and more.\"\r\n277,283,12067,\"Terry Pratchett, Neil Gaiman\",\"Good Omens: The Nice and Accurate Prophecies of Agnes Nutter, Witch\",https://images.gr-assets.com/books/1392528568l/12067.jpg,4.25,298304,\"fantasy, fiction\",\"According to The Nice and Accurate Prophecies of Agnes Nutter, Witch (the\nworld's only completely accurate book of prophecies, written in 1655,\nbefore she exploded), the world will end on a Saturday. Next Saturday, in\nfact. Just before dinner. So the armies of Good and Evil are amassing,\nAtlantis is rising, frogs are falling, tempers are flaring. Everything\nappears to be going according to Divine Plan. Except a somewhat fussy angel\nand a fast-living demon—both of whom have lived amongst Earth's mortals\nsince The Beginning and have grown rather fond of the lifestyle—are not\nactually looking forward to the coming Rapture. And someone seems to have\nmisplaced the Antichrist . . .\"\r\n278,284,70401,Jack Kerouac,On the Road,https://images.gr-assets.com/books/1413588576l/70401.jpg,3.64,246602,\"classics, fiction\",\"Follows the counterculture escapades of members of the Beat generation as\nthey seek pleasure and meaning while traveling coast to coast\"\r\n279,285,16181775,Graeme Simsion,The Rosie Project,https://images.gr-assets.com/books/1371651741l/16181775.jpg,4.01,251703,\"contemporary, fiction\",\"A socially awkward genetics professor who has never been on a second date\nsets out to find the perfect wife, but instead finds Rosie Jarman, a\nfiercely independent barmaid who is on a quest to find her biological\nfather. Reprint.\"\r\n280,286,3063499,Nicholas Sparks,The Lucky One,https://images.gr-assets.com/books/1420816338l/3063499.jpg,4.1,267166,\"romance, fiction\",The Lucky OneNicholas Sparks\r\n281,287,2122,\"Ayn Rand, Leonard Peikoff\",The Fountainhead,https://images.gr-assets.com/books/1491163636l/2122.jpg,3.85,244545,\"fiction, classics\",\"For use in schools and libraries only. The story of a gifted architect, his\nstruggle against conventional standards, and his violent love affair.\"\r\n282,288,19691,Tom Clancy,The Hunt for Red October,https://images.gr-assets.com/books/1281995542l/19691.jpg,4.01,270318,\"fiction, thriller\",The Hunt for Red OctoberTom Clancy\r\n283,289,76620,Richard Adams,Watership Down,https://images.gr-assets.com/books/1405136931l/76620.jpg,4.05,292426,\"classics, fiction\",\"An allegorical tale of survival about a band of wild rabbits who leave\ntheir ancestral home to build a more humane society chronicles their\nadventures as they search for a safe place to establish a new warren where\nthey can live in peace.\"\r\n284,290,10335308,Mindy Kaling,Is Everyone Hanging Out Without Me? (And Other Concerns),https://images.gr-assets.com/books/1443264638l/10335308.jpg,3.84,290674,\"memoir, nonfiction\",\"The writer and actress from \"\"The Office\"\" shares observations on topics\nranging from favorite male archetypes and her hatred of dieting to her\nrelationship with her mother and the haphazard creative process on the\nshow.\"\r\n285,291,3591262,Abraham Verghese,Cutting for Stone,https://images.gr-assets.com/books/1327931601l/3591262.jpg,4.28,258319,\"fiction, contemporary\",\"Twin brothers born from a secret love affair between an Indian nun and a\nBritish surgeon in Addis Ababa, Marion and Shiva Stone come of age in\nEthiopia, where their love for the same woman drives them apart.\"\r\n286,292,140225,\"C.S. Lewis, Pauline Baynes\",The Voyage of the Dawn Treader,https://images.gr-assets.com/books/1343185059l/140225.jpg,4.08,306492,\"classics, religion\",\"Book five of The Chronicles of Narnia continues the saga of C.S. Lewis's\nbeloved land of fantastic creatures and unlikely heroes. Readers of any age\nwill be entranced as the crew of the Dawn Treader approaches the \"\"Worlds\nEnd.\"\"\"\r\n287,293,295,Robert Louis Stevenson,Treasure Island,https://images.gr-assets.com/books/1485248909l/295.jpg,3.82,268012,\"classics, fiction\",Treasure IslandRobert Louis Stevenson\r\n288,294,9520360,Rick Riordan,The Son of Neptune ,https://images.gr-assets.com/books/1464201114l/9520360.jpg,4.44,299980,\"fantasy, fiction\",The Son of Neptune Rick Riordan\r\n289,295,10644930,Stephen King,11/22/63,https://images.gr-assets.com/books/1327876792l/10644930.jpg,4.29,258464,\"fiction, fantasy\",\"\"\"Published in 2012 by arrangement with Scribner, a division of Simon &\nSchuster, Inc.) --T.p. verso.\"\r\n290,296,4948,Eric Carle,The Very Hungry Caterpillar,https://images.gr-assets.com/books/1327878225l/4948.jpg,4.29,296952,\"fiction, classics\",\"Colorful and full of imagination, the world of Eric Carle is a delight!\nSings songs, cook, and create with the book box based of the worl of Eric\nCarle.\"\r\n291,297,135479,Kurt Vonnegut Jr.,Cat's Cradle,https://images.gr-assets.com/books/1327867150l/135479.jpg,4.18,238940,\"fiction, classics\",\"A young writer decides to interview the children of a scientist primarily\nresponsible for the creation of the atomic bomb\"\r\n292,298,2493,\"H.G. Wells, Greg Bear, Carlo Pagetti\",The Time Machine,https://images.gr-assets.com/books/1327942880l/2493.jpg,3.87,276076,\"classics, fiction\",\"A classic novel of the future follows the Time Traveller as he hurtles one\nmillion years into the future and encounters a world populated by two\ndistinct races, the childlike Eloi and the disgusting Morlocks who prey on\nthe Eloi. Reprint.\"\r\n293,300,39999,John Boyne,The Boy in the Striped Pyjamas,https://images.gr-assets.com/books/1366228171l/39999.jpg,4.1,285692,\"fiction, classics\",\"Bored and lonely after his family moves from Berlin to a place called \"\"Out-\nWith\"\" in 1942, Bruno, the son of a Nazi officer, befriends a boy in striped\npajamas who lives behind a wire fence.\"\r\n294,301,4900,Joseph Conrad,Heart of Darkness,https://images.gr-assets.com/books/1392799983l/4900.jpg,3.42,255576,\"classics, fiction\",Heart of DarknessJoseph Conrad\r\n295,302,7812659,Nicholas Sparks,Safe Haven,https://images.gr-assets.com/books/1344268800l/7812659.jpg,4.19,255531,\"romance, fiction\",Safe HavenNicholas Sparks\r\n296,303,52529,Rhonda Byrne,The Secret,https://images.gr-assets.com/books/1482865039l/52529.jpg,3.62,241537,\"spirituality, nonfiction\",\"Argues that The Secret, a way of thinking, has been found in oral\ntraditions throughout history and that by understanding it and using it in\nevery aspect of life, money, health, and happiness will follow.\"\r\n297,304,227711,Wally Lamb,I Know This Much Is True ,https://images.gr-assets.com/books/1373532198l/227711.jpg,4.17,246917,\"fiction, contemporary\",\"With his stunning debut novel, She's Come Undone, Wally Lamb won the\nadulation of critics and readers with his mesmerizing tale of one woman's\npainful yet triumphant journey of self-discovery. Now, this brilliantly\ntalented writer returns with I Know This Much Is True, a heartbreaking and\npoignant multigenerational saga of the reproductive bonds of destruction\nand the powerful force of forgiveness. A masterpiece that breathtakingly\ntells a story of alienation and connection, power and abuse, devastation\nand renewal--this novel is a contemporary retelling of an ancient Hindu\nmyth. A proud king must confront his demons to achieve salvation. Change\nyourself, the myth instructs, and you will inhabit a renovated world. When\nyou're the same brother of a schizophrenic identical twin, the tricky thing\nabout saving yourself is the blood it leaves on your bands--the little\ninconvenience of the look-alike corpse at your feet. And if you're into\nboth survival of the fittest and being your brother's keeper--if you've\npromised your dying mother--then say so long to sleep and hello to the\nmiddle of the night. Grab a book or a beer. Get used to Letterman's gap-\ntoothed smile of the absurd, or the view of the bedroom ceiling, or the\ninfluence of random selection. Take it from a godless insomniac. Take it\nfrom the uncrazy twin--the guy who beat the biochemical rap. Dominick\nBirdsey's entire life has been compromised and constricted by anger and\nfear, by the paranoid schizophrenic twin brother he both deeply loves and\nresents, and by the past they shared with their adoptive father, Ray, a\nspit-and-polish ex-Navy man (the five-foot-six-inch sleeping giant who\nsnoozed upstairs weekdays in the spare room and built submarines at night),\nand their long-suffering mother, Concettina, a timid woman with a harelip\nthat made her shy and self-conscious: She holds a loose fist to her face to\ncover her defective mouth--her perpetual apology to the world for a birth\ndefect over which she'd had no control. Born in the waning moments of 1949\nand the opening minutes of 1950, the twins are physical mirror images who\ngrow into separate yet connected entities: the seemingly strong and\nprotective yet fearful Dominick, his mother's watchful \"\"monkey\"\"; and the\nseemingly weak and sweet yet noble Thomas, his mother's gentle \"\"bunny.\"\"\nFrom childhood, Dominick fights for both separation and wholeness--and\nultimately self-protection--in a house of fear dominated by Ray, a bully\nwho abuses his power over these stepsons whose biological father is a\nmystery. I was still afraid of his anger but saw how he punished weakness--\npounced on it. Out of self-preservation I hid my fear, Dominick confesses.\nAs for Thomas, he just never knew how to play defense. He just didn't get\nit. But Dominick's talent for survival comes at an enormous cost, including\nthe breakup of his marriage to the warm, beautiful Dessa, whom he still\nloves. And it will be put to the ultimate test when Thomas, a Bible-\nspouting zealot, commits an unthinkable act that threatens the tenuous\nbalance of both his and Dominick's lives. To save himself, Dominick must\nconfront not only the pain of his past but the dark secrets he has locked\ndeep within himself, and the sins of his ancestors--a quest that will lead\nhim beyond the confines of his blue-collar New England town to the volcanic\nfoothills of Sicily 's Mount Etna, where his ambitious and vengefully proud\ngrandfather and a namesake Domenico Tempesta, the sostegno del famiglia,\nwas born. Each of the stories Ma told us about Papa reinforced the message\nthat he was the boss, that he ruled the roost, that what he said went.\nSearching for answers, Dominick turns to the whispers of the dead, to the\npages of his grandfather's handwritten memoir, The History of Domenico\nOnofrio Tempesta, a Great Man from Humble Beginnings. Rendered with touches\nof magic realism, Domenico's fablelike tale--in which monkeys enchant and\nreligious statues weep--becomes the old man's confession--an unwitting\nlegacy of contrition that reveals the truth's of Domenico's life, Dominick\nlearns that power, wrongly used, defeats the oppressor as well as the\noppressed, and now, picking through the humble shards of his deconstructed\nlife, he will search for the courage and love to forgive, to expiate his\nand his ancestors' transgressions, and finally to rebuild himself beyond\nthe haunted shadow of his twin. Set against the vivid panoply of twentieth-\ncentury America and filled with richly drawn, memorable characters, this\ndeeply moving and thoroughly satisfying novel brings to light humanity's\ndeepest needs and fears, our aloneness, our desire for love and acceptance,\nour struggle to survive at all costs. Joyous, mystical, and exquisitely\nwritten, I Know This Much Is True is an extraordinary reading experience\nthat will leave no reader untouched.\"\r\n298,305,10583,Stephen King,Pet Sematary,https://images.gr-assets.com/books/1308894674l/10583.jpg,3.91,256383,\"horror, fiction\",\"A family moves into a beautiful old home in rural Maine, not realizing the\nhorror that awaits them from the pet cemetery and Indian burial ground\nbehind the house.\"\r\n299,306,5203,Wally Lamb,She's Come Undone,https://images.gr-assets.com/books/1408313457l/5203.jpg,3.84,259576,\"fiction, contemporary\",\"In this extraordinary coming-of-age odyssey, Wally Lamb invites us to hitch\na wild ride on a journey of love, pain, and renewal with the most\nheartbreakingly comical heroine to come along in years. Meet Dolores Price.\nShe's 13, wise-mouthed but wounded, having bid her childhood goodbye.\nStranded in front of her bedroom TV, she spends the next few years\nnourishing herself with the Mallomars, potato chips, and Pepsi her anxious\nmother supplies. When she finally orbits into young womanhood at 257\npounds, Dolores is no stronger and life is no kinder. But this time she's\ndetermined to rise to the occasion and give herself one more chance before\nshe really goes under.\"\r\n300,307,1215032,Patrick Rothfuss,The Wise Man's Fear,https://images.gr-assets.com/books/1452624392l/1215032.jpg,4.57,245686,\"fantasy, fiction\",\"Kvothe continues on his quest to reclaim the honor of his family in the Fae\nrealm and learn the truth about the death of his parents and Amyr, the\nChandrian.\"\r\n301,308,33724,Sophie Kinsella,Can You Keep a Secret?,https://images.gr-assets.com/books/1330464293l/33724.jpg,3.83,278747,\"romance, fiction\",\"After the worst day of her life, Emma Corrigan spills her darkest secrets\nto a stranger on an airplane, but when he re-emerges in her life, she will\nhave to face the things she said to him, and her growing feelings for him.\nReprint.\"\r\n302,309,6752378,Cassandra Clare,City of Fallen Angels,https://images.gr-assets.com/books/1369452302l/6752378.jpg,4.16,341826,\"fantasy, paranormal\",\"City of Fallen Angels is the fourth book in the bestselling series The\nMortal Instruments.\"\r\n303,310,14748,Jennifer Weiner,Good in Bed,https://images.gr-assets.com/books/1327936464l/14748.jpg,3.7,248804,\"fiction, romance\",\"Humiliated to discover that her ex-boyfriend has been chronicling their\nformer sex life in a series of articles called \"\"Loving a Larger Woman\"\" in a\npopular women's magazine, pop-culture journalist Cannie Shapiro embarks on\nan adventure-filled odyssey as she confronts her losses, makes peace with\nthe past, and comes to terms with herself, her dreams, and her goals in\nlife. A first novel. Reprint. 50,000 first printing.\"\r\n304,311,3412,Colleen McCullough,The Thorn Birds,https://images.gr-assets.com/books/1391416796l/3412.jpg,4.22,255651,\"fiction, romance\",\"Now, 25 years after it first took the world by storm, Colleen McCullough's\nsweeping family saga of dreams, titanic struggles, dark passions, and\nforbidden love in the Australian Outback returns to enthrall a new\ngeneration. As powerful, moving, and unforgettable as when it originally\nappeared, it remains a monumental literary achievement—a landmark novel to\nbe read . . . and read again!\"\r\n305,312,2213661,\"Neil Gaiman, Dave McKean\",The Graveyard Book,https://images.gr-assets.com/books/1303859949l/2213661.jpg,4.12,302303,\"fantasy, fiction\",\"It takes a graveyard to raise a child. Nobody Owens, known as Bod, is a\nnormal boy. He would be completely normal if he didn't live in a graveyard,\nbeing raised by ghosts, with a guardian who belongs to neither the world of\nthe living nor the dead. There are adventures in the graveyard for a boy—an\nancient Indigo Man, a gateway to the abandoned city of ghouls, the strange\nand terrible Sleer. But if Bod leaves the graveyard, he will be in danger\nfrom the man Jack—who has already killed Bod's family.\"\r\n306,313,13158800,M.L. Stedman,The Light Between Oceans,https://images.gr-assets.com/books/1336683021l/13158800.jpg,4,243526,\"fiction, romance\",\"\"\"Now a major motion picture\"\"--Front cover.\"\r\n307,314,28194,\"Cornelia Funke, Anthea Bell\",Tintenherz,https://images.gr-assets.com/books/1328866790l/28194.jpg,3.86,285011,\"fantasy, fiction\",\"Twelve-year-old Meggie learns that her father Mo, a bookbinder, can \"\"read\"\"\nfictional characters to life when an evil ruler named Capricorn, freed from\nthe novel \"\"Inkheart\"\" years earlier, tries to force Mo to release an\nimmortal monster from the story.\"\r\n308,315,4894,\"Spencer Johnson, Kenneth H. Blanchard\",Who Moved My Cheese?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388639717l/4894.jpg,3.74,237272,\"business, nonfiction\",\"Relates a highly meaningful parable intended to help one deal with change\nquickly and prevail, offering readers a simple way to progress in their\nwork and lives.\"\r\n309,316,9791,Bill Bryson,A Walk in the Woods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189974l/9791.jpg,4.05,250192,\"travel, nonfiction\",\"Traces the author's adventurous trek along the Appalachian Trail past its\nnatural pleasures, human eccentrics, and offbeat comforts\"\r\n310,317,13214,Maya Angelou,I Know Why the Caged Bird Sings,https://images.gr-assets.com/books/1327957927l/13214.jpg,4.19,270859,\"classics, memoir\",\"The critically acclaimed author and poet recalls the anguish of her\nchildhood in Arkansas and her adolescence in northern slums. Reissue.\"\r\n311,318,15818107,Christina Baker Kline,Orphan Train,https://images.gr-assets.com/books/1362409483l/15818107.jpg,4.14,226091,\"fiction, history\",Orphan TrainChristina Baker Kline\r\n312,319,8755776,Cassandra Clare,City of Lost Souls,https://images.gr-assets.com/books/1460477703l/8755776.jpg,4.3,300553,\"fantasy, paranormal\",City of Lost SoulsCassandra Clare\r\n313,320,13526165,Maria Semple,\"Where'd You Go, Bernadette\",https://images.gr-assets.com/books/1338822317l/13526165.jpg,3.9,215453,\"fiction, contemporary\",\"Where'd You Go, BernadetteMaria Semple\"\r\n314,321,10365,Wilson Rawls,Where the Red Fern Grows,https://images.gr-assets.com/books/1166154337l/10365.jpg,4.04,268548,\"classics, fiction\",Where the Red Fern GrowsWilson Rawls\r\n315,322,14497,Neil Gaiman,Neverwhere,https://images.gr-assets.com/books/1348747943l/14497.jpg,4.18,268318,\"fantasy, fiction\",NeverwhereNeil Gaiman\r\n316,323,9717,\"Milan Kundera, Michael Henry Heim\",Nesnesitelná lehkost bytí,https://images.gr-assets.com/books/1265401884l/9717.jpg,4.08,205279,\"fiction, classics\",\"Nesnesitelná lehkost bytíMilan Kundera, Michael Henry Heim\"\r\n317,325,4473,John Irving,A Prayer for Owen Meany,https://images.gr-assets.com/books/1260470010l/4473.jpg,4.22,226964,\"fiction, classics\",\"\"\"I am doomed to remember a boy with a wrecked voice—not because of his\nvoice, or because he was the smallest person I ever knew, or even because\nhe was the instrument of my mother's death, but because he is the reason I\nbelieve in God; I am a Christian because of Owen Meany.\"\" In the summer of\n1953, two eleven-year-old boys—best friends—are playing in a Little League\nbaseball game in Gravesend, New Hampshire. One of the boys hits a foul ball\nthat kills the other boy's mother. The boy who hits the ball doesn't\nbelieve in accidents; Owen Meany believes he is God's instrument. What\nhappens to Owen, after that 1953 foul ball, is extraordinary.\"\r\n318,326,32234,Janet Fitch,White Oleander,https://images.gr-assets.com/books/1501159524l/32234.jpg,3.93,245674,\"fiction, contemporary\",\"Everywhere hailed as a novel of rare beauty and power, White Oleander tells\nthe unforgettable story of Ingrid, a brilliant poet imprisoned for murder,\nand her daughter, Astrid, whose odyssey through a series of Los Angeles\nfoster homes-each its own universe, with its own laws, its own dangers, its\nown hard lessons to be learned-becomes a redeeming and surprising journey\nof self-discovery.\"\r\n319,327,9275658,Marie Lu,Legend,https://images.gr-assets.com/books/1501368160l/9275658.jpg,4.19,299998,\"romance, fantasy\",\"In a dark future, when North America has split into two warring nations,\n15-year-olds Day, a famous criminal, and June, the brilliant soldier hired\nto capture him, discover that they have a common enemy.P. Putnam's Sons.\"\r\n320,328,14866,Jodi Picoult,Nineteen Minutes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348577596l/14866.jpg,4.1,235978,\"fiction, contemporary\",\"In the aftermath of a horrific small-town school shooting, lawyer Jordan\nMcAfee finds himself defending a youth who desperately needs someone on his\nside, while intrepid detective Patrick DuCharme works with a primary\nwitness in the daughter of the superior court judge assigned to the case.\nBy the author of The Tenth Circle. Reprint. 800,000 first printing.\"\r\n321,329,2318271,\"Randy Pausch, Jeffrey Zaslow\",The Last Lecture,https://images.gr-assets.com/books/1388075896l/2318271.jpg,4.25,241869,\"nonfiction, biography\",\"The author, a computer science professor diagnosed with terminal cancer,\nexplores his life, the lessons that he has learned, how he has worked to\nachieve his childhood dreams, and the effect of his diagnosis on him and\nhis family.\"\r\n322,330,228665,Robert Jordan,The Eye of the World,https://images.gr-assets.com/books/1337818095l/228665.jpg,4.18,260184,\"fantasy, fiction\",The Eye of the WorldRobert Jordan\r\n323,331,10916,Jodi Picoult,The Pact,https://images.gr-assets.com/books/1410754561l/10916.jpg,4,221225,\"fiction, romance\",\"Until the phone calls came at three o'clock on a November morning, the\nGolds and their neighbors, the Hartes, had been inseparable. It was no\nsurprise to anyone when their teenage children, Chris and Emily, began\nshowing signs that their relationship was moving beyond that of lifelong\nfriends. But now seventeen-year-old Emily is dead—shot with a gun her\nbeloved and devoted Chris pilfered from his father's cabinet as part of an\napparent suicide pact—leaving two devastated families stranded in the dark\nand dense predawn, desperate for answers about an unthinkable act and the\nchildren they never really knew. From New York Times bestselling author\nJodi Picoult—one of the most powerful writers in contemporary fiction—comes\na riveting, timely, heartbreaking, and terrifying novel of families in\nanguish and friendships ripped apart by inconceivable violence.\"\r\n324,332,65605,C.S. Lewis,The magician's nephew,https://images.gr-assets.com/books/1308814770l/65605.jpg,4.01,268355,\"christian, fiction\",\"The adventure begins Narnia ... where Talking Beasts walk ... where a witch\nwaits ... where a new world is about to be born. On a daring quest to save\na life, two friends are hurled into another world, where an evil sorceress\nseeks to enslave them. But then the lion Aslan's song weaves itself into\nthe fabric of a new land, a land that will be known as Narnia. And in\nNarnia, all things are possible ...\"\r\n325,333,2153405,Lisa Genova,Still Alice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236089972l/2153405.jpg,4.3,223432,\"contemporary, fiction\",Still AliceLisa Genova\r\n326,334,13596809,Sylvia Day,Reflected in You,https://images.gr-assets.com/books/1477802540l/13596809.jpg,4.33,252564,\"romance, contemporary\",Reflected in YouSylvia Day\r\n327,335,6689,\"Roald Dahl, Quentin Blake\",James and the Giant Peach,https://images.gr-assets.com/books/1320412586l/6689.jpg,3.99,270402,\"fantasy, fiction\",\"James and the Giant PeachRoald Dahl, Quentin Blake\"\r\n328,336,13137,James Patterson,1st To Die,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522906581l/13137._SY475_.jpg,4.05,233984,\"mystery, fiction\",\"Four crime-solving friends face off against a killer in San Francisco in\nthe Women's Murder Club novel that started James Patterson's thrilling\nseries. Each one holds a piece of the puzzle: Lindsay Boxer is a homicide\ninspector in the San Francisco Police Department, Claire Washburn is a\nmedical examiner, Jill Bernhardt is an assistant D.A., and Cindy Thomas\njust started working the crime desk of the San Francisco Chronicle. But the\nusual procedures aren't bringing them any closer to stopping the killings.\nSo these women form a Women's Murder Club to collaborate outside the box\nand pursue the case by sidestepping their bosses and giving each other a\nhand. The four women develop intense bonds as they pursue a killer whose\ncrimes have stunned an entire city. Working together, they track down the\nmost terrifying and unexpected killer they have ever encountered--before a\nshocking conclusion in which everything they knew turns out to be\ndevastatingly wrong. Full of the breathtaking drama and unforgettable\nemotions for which James Patterson is famous, 1st to Die is the start of\nthe #1 New York Times bestselling series of crime thrillers.\"\r\n329,337,13,Douglas Adams,The Ultimate Hitchhiker's Guide: Five Complete Novels and One Story,https://images.gr-assets.com/books/1404613595l/13.jpg,4.37,222842,\"fiction, fantasy\",6 Science fiction-romaner.\r\n330,338,6280118,David Nicholls,One Day,https://images.gr-assets.com/books/1327873020l/6280118.jpg,3.77,222926,\"fiction, romance\",\"'I can imagine you at forty,' she said, a hint of malice in her voice. 'I\ncan picture it right now.' He smiled without opening his eyes. 'Go on\nthen.' 15th July 1988. Emma and Dexter meet for the first time on the night\nof their graduation. Tomorrow they must go their separate ways. So where\nwill they be on this one day next year? And the year after that? And every\nyear that follows? Twenty years, two people, ONE DAY. From the author of\nthe massive bestseller STARTER FOR TEN.\"\r\n331,340,7747374,Pittacus Lore,I Am Number Four,https://images.gr-assets.com/books/1305807140l/7747374.jpg,3.94,253437,\"fantasy, fiction\",\"John Smith--one of nine aliens from the planet Lorien--struggles to outrun\nhis past, discover his future and live a normal life in Paradise, Ohio, as\none by one his fellow Loriens are being killed by evil beings. 150,000\nfirst printing.\"\r\n332,341,1371,\"Homer, Robert Fagles, Frédéric Mugler, Bernard Knox\",Ἰλιάς,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188509l/1371.jpg,3.83,241088,\"classics, poetry\",\"The centuries-old epic about the wrath of Achilles is rendered into modern\nEnglish verse by a renowned translator\"\r\n333,342,13497818,J.K. Rowling,The Casual Vacancy,https://images.gr-assets.com/books/1358266832l/13497818.jpg,3.28,231835,\"fiction, fantasy\",\"A big novel about a small town... When Barry Fairbrother dies in his early\nforties, the town of Pagford is left in shock. Pagford is, seemingly, an\nEnglish idyll, with a cobbled market square and an ancient abbey, but what\nlies behind the pretty façade is a town at war. Rich at war with poor,\nteenagers at war with their parents, wives at war with their husbands,\nteachers at war with their pupils...Pagford is not what it first seems. And\nthe empty seat left by Barry on the parish council soon becomes the\ncatalyst for the biggest war the town has yet seen. Who will triumph in an\nelection fraught with passion, duplicity, and unexpected revelations? A big\nnovel about a small town, The Casual Vacancy is J.K. Rowling's first novel\nfor adults. It is the work of a storyteller like no other.\"\r\n334,343,24192,John Grisham,The Runaway Jury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388444668l/24192.jpg,3.96,222712,\"fiction, thriller\",The Runaway JuryJohn Grisham\r\n335,344,4138,David Sedaris,Naked,https://images.gr-assets.com/books/1394178867l/4138.jpg,4.08,201337,\"memoir, nonfiction\",NakedDavid Sedaris\r\n336,345,45978,Christopher Paolini,Eldest,https://images.gr-assets.com/books/1387119654l/45978.jpg,3.96,250000,\"fantasy, fiction\",EldestChristopher Paolini\r\n337,346,236093,\"L. Frank Baum, W.W. Denslow\",The Wonderful Wizard of Oz,https://images.gr-assets.com/books/1398003737l/236093.jpg,3.98,247521,\"classics, fiction\",\"The Wonderful Wizard of OzL. Frank Baum, W.W. Denslow\"\r\n338,347,121749,C.S. Lewis,Prince Caspian: The Return to Narnia,https://images.gr-assets.com/books/1308814880l/121749.jpg,3.96,250221,\"classics, religion\",\"A prince fights for his crown Narnia ... where animals talk ... where trees\nwalk ... where a battle is about to begin. A prince denied his rightful\nthrone gathers an army in a desperate attempt to rid his land of a false\nking. But in the end, it is a battle of honor between two men alone that\nwill decide the fate of an entire world.\"\r\n339,348,16143347,E. Lockhart,We Were Liars,https://images.gr-assets.com/books/1402749479l/16143347.jpg,3.85,273442,\"mystery, fiction\",\"Spending the summers on her family's private island off the coast of\nMassachusetts with her cousins and a special boy named Gat, teenaged\nCadence struggles to remember what happened during her fifteenth summer.\"\r\n340,349,11590,Stephen King,Salem's Lot,https://images.gr-assets.com/books/1327891565l/11590.jpg,3.99,228680,\"horror, thriller\",\"With the addition of fifty pages of material deleted from the 1975\nmanuscript as well as material that has since been modified by King, an\nintroduction by him, and two short stories related to the events of the\nnovel, this edition represents the text as the author envisioned it. It\nalso features photographs by photographer Jerry Uelsmann.\"\r\n341,350,7745,\"Hunter S. Thompson, Ralph Steadman\",Fear and Loathing in Las Vegas: A Savage Journey to the Heart of the American Dream,https://images.gr-assets.com/books/1394204569l/7745.jpg,4.08,232489,\"fiction, classics\",\"Records the experiences of a free-lance writer who embarked on a zany\njourney into the drug culture\"\r\n342,351,10025305,Cassandra Clare,Clockwork Prince,https://images.gr-assets.com/books/1460477747l/10025305.jpg,4.46,307994,\"fantasy, paranormal\",\"As the Council attempts to strip Charlotte of her power, sixteen-year-old\norphaned shapechanger Tessa Gray works with the London Shadowhunters to\nfind the Magister and destroy his clockwork army, learning the secret of\nher own identity while investigating his past.\"\r\n343,352,20910157,Amy Poehler,Yes Please,https://images.gr-assets.com/books/1402815435l/20910157.jpg,3.81,251082,\"memoir, nonfiction\",\"#1 NEW YORK TIMES BESTSELLER Do you want to get to know the woman we first\ncame to love on Comedy Central's Upright Citizens Brigade? Do you want to\nspend some time with the lady who made you howl with laughter on Saturday\nNight Live, and in movies like Baby Mama, Blades of Glory, and They Came\nTogether? Do you find yourself daydreaming about hanging out with the actor\nbehind the brilliant Leslie Knope on Parks and Recreation? Did you wish you\nwere in the audience at the last two Golden Globes ceremonies, so you could\nbask in the hilarity of Amy's one-liners? If your answer to these questions\nis \"\"Yes Please!\"\" then you are in luck. In her first book, one of our most\nbeloved funny folk delivers a smart, pointed, and ultimately inspirational\nread. Full of the comedic skill that makes us all love Amy, Yes Please is a\nrich and varied collection of stories, lists, poetry (Plastic Surgery\nHaiku, to be specific), photographs, mantras and advice. With chapters like\n\"\"Treat Your Career Like a Bad Boyfriend,\"\" \"\"Plain Girl Versus the Demon\"\" and\n\"\"The Robots Will Kill Us All\"\" Yes Please will make you think as much as it\nwill make you laugh. Honest, personal, real, and righteous, Yes Please is\nfull of words to live by.\"\r\n344,353,12996,William Shakespeare,\"The Tragedy of Othello, The Moor of Venice\",https://images.gr-assets.com/books/1459795105l/12996.jpg,3.88,238875,\"classics, fiction\",\"The Tragedy of Othello, The Moor of VeniceWilliam Shakespeare\"\r\n345,354,6149,Toni Morrison,Beloved,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347984578l/6149.jpg,3.77,233825,\"fiction, classics\",\"Sethe, an escaped slave living in post-Civil War Ohio with her daughter and\nmother-in-law, is haunted persistently by the ghost of the dead baby girl\nwhom she sacrificed, in a new edition of the Nobel Laureate's Pulitzer\nPrize-winning novel. Reader's Guide available. Reprint. 60,000 first\nprinting.\"\r\n346,355,3236307,Kristin Cashore,Graceling,https://images.gr-assets.com/books/1331548394l/3236307.jpg,4.1,281185,\"fantasy, romance\",GracelingKristin Cashore\r\n347,356,78411,\"Lemony Snicket, Brett Helquist\",The Bad Beginning,https://images.gr-assets.com/books/1490085391l/78411.jpg,3.89,275670,\"fiction, fantasy\",\"Imagine tales so terrible that as many as fifty million innocents have been\nruined by them – tales so indelibly horrid that the New York Times\nbestseller list has been unable to rid itself of them for seven years. Now\nimagine if this scourge suddenly became available in a shameful new edition\nso sensational, so irresistible, so riddled with lurid new pictures that\neven a common urchin would wish for it. Who among us would be safe? Begin\nat the beginning – evenif it is a bad one – with the first in A Series of\nUnfortunate Events, now even more disposable in paperback!\"\r\n348,357,355697,\"Erich Maria Remarque, A.W. Wheen\",Im Westen nichts Neues,https://images.gr-assets.com/books/1441227765l/355697.jpg,3.92,249113,\"classics, fiction\",\"The testament of Paul Baumer, who enlists with his classmates in the German\narmy of World War I, illuminates the savagery and futility of war\"\r\n349,358,191139,Dr. Seuss,\"Oh, the Places You'll Go!\",https://images.gr-assets.com/books/1421708635l/191139.jpg,4.34,257260,\"fiction, classics\",\"Advice in rhyme for voyaging through life, from weathering fear,\nloneliness, and confusion to assuming responsibility for one's actions.\"\r\n350,359,16115612,Khaled Hosseini,And The Mountains Echoed,https://images.gr-assets.com/books/1358190204l/16115612.jpg,4.03,199326,\"contemporary, fiction\",And The Mountains EchoedKhaled Hosseini\r\n351,360,7082,\"Philip K. Dick, Roger Zelazny\",Do Androids Dream of Electric Sheep?,https://images.gr-assets.com/books/1435458683l/7082.jpg,4.08,223828,\"fantasy, science\",\"Do Androids Dream of Electric Sheep?Philip K. Dick, Roger Zelazny\"\r\n352,361,18254,\"Charles Dickens, George Cruikshank, Philip Horne\",Oliver Twist,https://images.gr-assets.com/books/1327868529l/18254.jpg,3.85,230181,\"classics, fiction\",DICKENS/OLIVER TWIST (BC)\r\n353,362,11149,C.S. Lewis,A Grief Observed,https://images.gr-assets.com/books/1347801873l/11149.jpg,4.21,116277,\"fiction, classics\",\"Written after his wife's tragic death as a way of surviving the \"\"mad\nmidnight moment,\"\" A Grief Observed is C.S. Lewis's honest reflection on the\nfundamental issues of life, death, and faith in the midst of loss. This\nwork contains his concise, genuine reflections on that period: \"\"Nothing\nwill shake a man -- or at any rate a man like me -- out of his merely\nverbal thinking and his merely notional beliefs. He has to be knocked silly\nbefore he comes to his senses. Only torture will bring out the truth. Only\nunder torture does he discover it himself.\"\" This is a beautiful and\nunflinchingly homest record of how even a stalwart believer can lose all\nsense of meaning in the universe, and how he can gradually regain his\nbearings.\"\r\n354,363,6936382,Stephanie Perkins,Anna and the French Kiss,https://images.gr-assets.com/books/1358271931l/6936382.jpg,4.08,259479,\"romance, contemporary\",\"When Anna's father sends her to an American boarding school in Paris for\nher senior year of high school, she reluctantly goes, and meets a boy who\nbecomes her best friend, in spite of the fact that they both want something\nmore.\"\r\n355,364,113946,Dr. Seuss,How the Grinch Stole Christmas!,https://images.gr-assets.com/books/1327958149l/113946.jpg,4.36,250602,\"classics, fiction\",\"The Grinch tries to stop Christmas from arriving by stealing all the\npresents and food from the village of Who-ville, but much to his surprise,\nit comes anyway.\"\r\n356,365,5805,\"Alan Moore, David   Lloyd\",V for Vendetta,https://images.gr-assets.com/books/1343668985l/5805.jpg,4.25,210682,\"comics, fiction\",\"In a futuristic Britain where a totalitarian regime rules, a young woman is\nrescued from death by a masked vigilante calling himself \"\"V,\"\" who launches\na one-man crusade against government tyranny and oppression.\"\r\n357,366,2203,David McCullough,John Adams,https://images.gr-assets.com/books/1478144278l/2203.jpg,4.05,215780,\"history, biography\",\"The Pulitzer Prize–winning, bestselling biography of America’s founding\nfather and second president that was the basis for the acclaimed HBO\nseries, brilliantly told by master historian David McCullough. In this\npowerful, epic biography, David McCullough unfolds the adventurous life\njourney of John Adams, the brilliant, fiercely independent, often\nirascible, always honest Yankee patriot who spared nothing in his zeal for\nthe American Revolution; who rose to become the second president of the\nUnited States and saved the country from blundering into an unnecessary\nwar; who was learned beyond all but a few and regarded by some as “out of\nhis senses”; and whose marriage to the wise and valiant Abigail Adams is\none of the moving love stories in American history. This is history on a\ngrand scale—a book about politics and war and social issues, but also about\nhuman nature, love, religious faith, virtue, ambition, friendship, and\nbetrayal, and the far-reaching consequences of noble ideas. Above all, John\nAdams is an enthralling, often surprising story of one of the most\nimportant and fascinating Americans who ever lived.\"\r\n358,367,14995,Dean Koontz,Odd Thomas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245669l/14995.jpg,3.94,205986,\"horror, fiction\",\"Over the course of two days, Odd Thomas, his soulmate Stormy Llewellyn, and\nan assortment of allies make their way through a dark, terrifying world in\nwhich past and present, and life and death collide as they try to avert a\ncataclysm.\"\r\n359,368,119324,Philip Pullman,The Subtle Knife,https://images.gr-assets.com/books/1451271814l/119324.jpg,4.1,242503,\"fantasy, fiction\",\"As the boundaries between worlds begin to dissolve, Lyra and her daemon\nhelp Will Parry in his search for his father and for a powerful, magical\nknife.\"\r\n360,369,22232,Jerry Spinelli,Stargirl,https://images.gr-assets.com/books/1335947642l/22232.jpg,3.74,237560,\"fiction, romance\",\"Although Stargirl is shunned by many at school for her unique presence, Leo\nBorlock, a fellow classmate, finds her inspiring and soon finds himself\nhead-over-heels in love. Reprint.\"\r\n361,370,7090447,Rick Riordan,The Red Pyramid,https://images.gr-assets.com/books/1366227978l/7090447.jpg,4.06,232791,\"fantasy, fiction\",\"Egyptologist Dr. Julius Kane accidentally unleashes the Egyptian god Set,\nwho banishes the doctor to oblivion and forces his two children to embark\non a dangerous journey to save him.\"\r\n362,371,350,Robert A. Heinlein,Stranger in a Strange Land,https://images.gr-assets.com/books/1156897088l/350.jpg,3.91,220301,\"fiction, classics\",\"Here at last is the complete, uncut version of Heinlein's all-time\nmasterpiece, the brilliant novel that grew from a cult favorite to a\nbestseller to a classic in a few short years. It is the story of Valentine\nMichael Smith, the man from Mars who taught humankind grokking and water-\nsharing. And love.\"\r\n363,372,10176,David Sedaris,Dress Your Family in Corduroy and Denim,https://images.gr-assets.com/books/1352983006l/10176.jpg,4.08,191923,\"memoir, nonfiction\",\"David Sedaris plays in the snow with his sisters. He goes on vacation with\nhis family. He gets a job selling drinks. He attends his brother's wedding.\nHe mops his sister's floor. He gives directions to a lost traveler. He eats\na hamburger. He has his blood sugar tested. It all sounds so normal,\ndoesn't it? In his newest collection of essays, David Sedaris lifts the\ncorner of ordinary life, revealing the absurdity teeming below its surface.\nHis world is alive with obscure desires and hidden motives -- a world where\nforgiveness is automatic and an argument can be the highest form of love.\nDress Your Family in Corduroy and Denim is another unforgettable collection\nfrom one of the wittiest and most original writers at work today.\"\r\n364,373,6319,\"Roald Dahl, Quentin Blake\",The BFG,https://images.gr-assets.com/books/1327872673l/6319.jpg,4.22,245855,\"fantasy, classics\",\"The BFG--Big Friendly Giant--kidnaps Sophie from her bed in the orphanage\nand takes her back to Giantland where she becomes involved in a scheme to\nend the loathsome activities of nine evil giants.\"\r\n365,374,21,Bill Bryson,A Short History of Nearly Everything,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433086293l/21._SY475_.jpg,4.19,191535,\"history, nonfiction\",\"The author of A Walk in the Woods traces the Big Bang through the rise of\ncivilization, documenting his work with a host of the world's most advanced\nscientists and mathematicians to explain why things are the way they are.\nReprint. 125,000 first printing.\"\r\n366,375,1852,Jack London,The Call of the Wild,https://images.gr-assets.com/books/1452291694l/1852.jpg,3.83,223932,\"classics, fiction\",The Call of the WildJack London\r\n367,376,7864437,James Dashner,The Death Cure,https://images.gr-assets.com/books/1303997647l/7864437.jpg,3.77,223674,\"fiction, fantasy\",\"As the third Trial draws to a close, Thomas and some of his cohorts manage\nto escape from WICKED, their memories having been restored, only to face\nnew dangers as WICKED claims to be trying to protect the human race from\nthe deadly FLARE virus.\"\r\n368,377,16793,Neil Gaiman,Stardust,https://images.gr-assets.com/books/1459127484l/16793.jpg,4.07,237602,\"fantasy, fiction\",\"Catch a fallen star . . . Tristran thorn promised to bring back a fallen\nstar. So he sets out on a journey to fulfill the request of his beloved,\nthe hauntingly beautiful Victoria Forester—and stumbles into the enchanted\nrealm that lies beyond the wall of his English country town. Rich with\nadventure and magic, Stardust is one of master storyteller Neil Gaiman's\nmost beloved tales, and the inspiration for the hit movie.\"\r\n369,378,33917,Jhumpa Lahiri,The Namesake,https://images.gr-assets.com/books/1480106986l/33917.jpg,3.96,184211,\"fiction, classics\",\"An incisive portrait of the immigrant experience follows the Ganguli family\nfrom their traditional life in India through their arrival in Massachusetts\nin the late 1960s and their difficult melding into an American way of life,\nin a debut novel that spans three decades, two continents, and two\ngenerations. By the Pulitzer Prize-winning author of Interpreter of\nMaladies. Reprint.\"\r\n370,379,8667848,Deborah Harkness,A Discovery of Witches,https://images.gr-assets.com/books/1322168805l/8667848.jpg,3.99,226622,\"fantasy, fiction\",\"Discovering a magical manuscript in Oxford's library, scholar Diana Bishop,\na descendant of witches who has rejected her heritage, inadvertently\nunleashes a fantastical underworld of daemons, witches and vampires whose\nactivities center around an enchanted treasure. Reprint. 500,000 first\nprinting.\"\r\n371,380,11297,\"Haruki Murakami, Jay Rubin\",ノルウェイの森 [Noruwei no Mori],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924361l/11297.jpg,4.02,183988,\"fiction, romance\",\"ノルウェイの森 [Noruwei no Mori]Haruki Murakami, Jay Rubin\"\r\n372,381,5168,Billie Letts,Where the Heart Is,https://images.gr-assets.com/books/1327959469l/5168.jpg,4,208333,\"fiction, contemporary\",Where the Heart IsBillie Letts\r\n373,382,6567017,\"John Green, David Levithan\",\"Will Grayson, Will Grayson\",https://images.gr-assets.com/books/1368393890l/6567017.jpg,3.84,236431,\"contemporary, fiction\",\"When two teens, one gay and one straight, meet accidentally and discover\nthat they share the same name, their lives become intertwined as one begins\ndating the other's best friend, who produces a play revealing his\nrelationship with them both.\"\r\n374,383,1241,James Frey,A Million Little Pieces,https://images.gr-assets.com/books/1483206985l/1241.jpg,3.62,184241,\"biography, fiction\",\"A memoir of drug and alcohol abuse and the rehabilitation experience\nexamines addiction and recovery through the eyes of a man who had taken his\naddictions to deadly extremes, describing the battle to confront the\nconsequences of his life.\"\r\n375,384,2282133,Richelle Mead,Frostbite,https://images.gr-assets.com/books/1361098960l/2282133.jpg,4.3,256745,\"fantasy, paranormal\",\"Love gone awry, secret crushes, an upcoming holiday ski trip, and a recent\nattack by Strigoi has got Rose and the Academy on edge, especially when\nRose's friends set off to fight Strigoi and end up in desperate need of a\nrescue by Rose and Christian. Original.\"\r\n376,385,8520610,Susan Cain,Quiet: The Power of Introverts in a World that Can't Stop Talking,https://images.gr-assets.com/books/1328562861l/8520610.jpg,4.04,202135,\"nonfiction, psychology\",\"Demonstrates how introverted people are misunderstood and undervalued in\nmodern culture, charting the rise of extrovert ideology while sharing\nanecdotal examples of how to use introvert talents to adapt to various\nsituations.\"\r\n377,386,233818,Scott O'Dell,Island of the Blue Dolphins,https://images.gr-assets.com/books/1475166260l/233818.jpg,3.8,236015,\"fiction, classics\",Island of the Blue DolphinsScott O'Dell\r\n378,387,17250,\"Arthur Miller, Christopher Bigsby\",The Crucible,https://images.gr-assets.com/books/1447764813l/17250.jpg,3.55,242980,\"classics, fiction\",\"A play revealing the Salem witch trials of the late seventeenth century and\nthe problem of guilt by association.\"\r\n379,388,50,Gary Paulsen,Hatchet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385297074l/50.jpg,3.68,222553,\"fiction, classics\",\"Headed for Canada to visit his father for the first time since his parents'\ndivorce, thirteen-year-old Brian is the sole survivor of a plane crash,\nwith only the clothes he has on and a hatchet to help him live in the\nwilderness. A Newbery Honor Book. Reprint.\"\r\n380,389,68428,Brandon Sanderson,Mistborn : The Final Empire,https://images.gr-assets.com/books/1480717416l/68428.jpg,4.43,208944,\"fantasy, fiction\",\"Experiencing an epiphany within the most daunting prison of the monstrous\nLord Ruler who has enslaved his people for a thousand years, half-Skaa\nKelsier finds himself taking on the powers of a Mistborn and teams up with\nragged orphan Vin in a desperate plot to save their world. By the author of\nElantris. Reprint.\"\r\n381,390,51496,\"Robert Louis Stevenson, Vladimir Nabokov, Mervyn Peake, Dan Chaon\",The Strange Case of Dr Jekyll and Mr Hyde,https://images.gr-assets.com/books/1318116526l/51496.jpg,3.79,223535,\"classics, fiction\",\"In a classic story of good and evil, a gentle doctor's experiment into the\nduality of the soul goes awry and he is transformed into a hideous monster\nat night. Reissue.\"\r\n382,391,7784,Dr. Seuss,The Lorax,https://images.gr-assets.com/books/1327879938l/7784.jpg,4.35,226564,\"classics, fantasy\",The Once-ler describes the results of the local pollution problem.\r\n383,392,389627,Jeff Kinney,Greg Heffley's Journal,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.96,254852,\"fiction, comics\",\"Greg records his sixth-grade experiences in a middle school where he and\nhis best friend, Rowley, undersized weaklings amid boys who need to shave\ntwice daily, hope just to survive, but when Rowley grows more popular, Greg\nmust take drastic measures to save their friendship.\"\r\n384,393,7896527,Sarah J. Maas,Throne of Glass,https://images.gr-assets.com/books/1495278054l/7896527.jpg,4.24,274987,\"romance, paranormal\",\"After she has served a year of hard labor in the salt mines of Endovier for\nher crimes, Crown Prince Dorian offers eighteen-year-old assassin Celaena\nSardothien her freedom on the condition that she act as his champion in a\ncompetition to find a new royal assassin.\"\r\n385,394,2802316,Richelle Mead,Shadow Kiss,https://images.gr-assets.com/books/1361099049l/2802316.jpg,4.37,266742,\"fantasy, paranormal\",\"While Rose is coping with the darker effects of being shadow-kissed, her\nrelationship with Dimitri is finally taking off, and when he disappears\nduring a Strigoi attack on St. Vladimir's Academy, she must make a terrible\nchoice.\"\r\n386,395,46170,Ernest Hemingway,For Whom the Bell Tolls,https://images.gr-assets.com/books/1492591524l/46170.jpg,3.95,195063,\"classics, fiction\",\"Ernest Hemingway's masterpiece on war, love, loyalty, and honor tells the\nstory of Robert Jordan, an antifascist American fighting in the Spanish\nCivil War. In 1937 Ernest Hemingway traveled to Spain to cover the civil\nwar there for the North American Newspaper Alliance. Three years later he\ncompleted the greatest novel to emerge from “the good fight,” and one of\nthe foremost classics of war literature in history. Published in 1940, For\nWhom the Bell Tolls tells the story of Robert Jordan, a young American in\nthe International Brigades attached to an antifascist guerilla unit in the\nmountains of Spain. In his portrayal of Jordan’s love for the beautiful\nMaria and his superb account of El Sordo’s last stand, in his brilliant\ntravesty of La Pasionaria and his unwillingness to believe in blind faith,\nHemingway surpasses his achievement in The Sun Also Rises and A Farewell to\nArms to create a work at once rare and beautiful, strong and brutal,\ncompassionate, moving, and wise. “If the function of a writer is to reveal\nreality,” Maxwell Perkins wrote Hemingway after reading the manuscript, “no\none ever so completely performed it.” Greater in power, broader in scope,\nand more intensely emotional than any of the author’s previous works, For\nWhom the Bell Tolls tells of loyalty and courage, love and defeat, and the\ntragic death of an ideal. When it was first published, The New York Times\ncalled it “a tremendous piece of work,” and it still stands today as one of\nthe best war novels of all time.\"\r\n387,396,3367956,Jamie Ford,Hotel on the Corner of Bitter and Sweet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348332221l/3367956.jpg,3.98,197294,\"fiction, romance\",\"When artifacts from Japanese families sent to internment camps during World\nWar II are uncovered in Seattle, Henry Lee embarks on a quest that leads to\nmemories of growing up Chinese in a city rife with anti-Japanese sentiment.\"\r\n388,397,343,\"Patrick Süskind, John E. Woods\",Das Parfum. Die Geschichte eines Mörders,https://images.gr-assets.com/books/1409112276l/343.jpg,4,178135,\"fiction, classics\",\"An odorless baby found orphaned in a Paris gutter in 1738 grows to become a\nmonster obsessed with his perfect sense of smell and a desire to capture,\nby any means, the ultimate scent that will make him human. Reader's Guide\navailable. Reprint. 20,000 first printing.\"\r\n389,398,1097,Eric Schlosser,Fast Food Nation : The Dark Side of the All-American Meal ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554229727l/1097._SY475_.jpg,3.73,179347,\"nonfiction, history\",\"Explores the homogenization of American culture and the impact of the fast\nfood industry on modern-day health, economy, politics, popular culture,\nentertainment, and food production.\"\r\n390,399,3950967,J.K. Rowling,The Tales of Beedle the Bard,https://images.gr-assets.com/books/1373467575l/3950967.jpg,4.06,284833,\"fantasy, fiction\",\"The Tales of Beedle the Bard, a wizarding classic, first came to Muggle\nreaders' attention in the book known as Harry Potter and the Deathly\nHallows. Now, thanks to Hermione Granger's new translation from the ancient\nrunes, we present this stunning edition with an introduction, notes, and\nillustrations by J.K. Rowling, and extensive commentary by Albus\nDumbledore. Never before have Muggles been privy to these richly\nimaginative tales: \"\"The Wizard and the Hopping Pot,\"\" \"\"The Fountain of Fair\nFortune,\"\" \"\"The Warlock's Hairy Heart,\"\" \"\"Babbitty Rabbitty and Her Cackling\nStump,\"\" and of course \"\"The Tale of the Three Brothers.\"\" But not only are\nthey the equal of fairy tales we know and love, reading them gives new\ninsight into the wizarding world. This purchase also represents another\nvery important form of giving: From every sale of this book, Scholastic\nwill give its net proceeds to Lumos, an international non-profit\norganization founded by J.K. Rowling that works globally to transform the\nlives of disadvantaged children. wearelumos.org\"\r\n391,400,22328,William Gibson,Neuromancer,https://images.gr-assets.com/books/1167348726l/22328.jpg,3.88,183878,\"fiction, classics\",\"Case, a burned out computer whiz, is asked to steal a security code that is\nlocked in the most heavily guarded databank in the solar system\"\r\n392,401,10799,Ernest Hemingway,A Farewell to Arms,https://images.gr-assets.com/books/1313714836l/10799.jpg,3.79,186613,\"classics, fiction\",\"The best American novel to emerge from World War I, A Farewell to Arms is\nthe unforgettable story of an American ambulance driver on the Italian\nfront and his passion for a beautiful English nurse. The best American\nnovel to emerge from World War I, A Farewell to Arms is the unforgettable\nstory of an American ambulance driver on the Italian front and his passion\nfor a beautiful English nurse. Hemingway’s frank portrayal of the love\nbetween Lieutenant Henry and Catherine Barkley, caught in the inexorable\nsweep of war, glows with an intensity unrivaled in modern literature, while\nhis description of the German attack on Caporetto—of lines of fired men\nmarching in the rain, hungry, weary, and demoralized—is one of the greatest\nmoments in literary history. A story of love and pain, of loyalty and\ndesertion, A Farewell to Arms, written when he was thirty years old,\nrepresents a new romanticism for Hemingway.\"\r\n393,402,391729,Edgar Allan Poe,The Tell-Tale Heart,https://images.gr-assets.com/books/1327936583l/391729.jpg,4.15,195689,\"classics, fiction\",The Tell-Tale HeartEdgar Allan Poe\r\n394,403,10534,\"Sun Tzu, Thomas Cleary\",孫子兵法 [Sūnzi bīngfǎ],https://images.gr-assets.com/books/1453417993l/10534.jpg,3.95,167332,\"philosophy, nonfiction\",\"孫子兵法 [Sūnzi bīngfǎ]Sun Tzu, Thomas Cleary\"\r\n395,404,11367726,William Landay,Defending Jacob,https://images.gr-assets.com/books/1329612158l/11367726.jpg,3.97,182025,\"fiction, mystery\",\"When his fourteen-year-old son is charged with the murder of a fellow\nstudent, assistant district attorney Andy Barber is torn between loyalty\nand justice as facts come to light that lead him to question how well he\nknows his own son.\"\r\n396,405,4980,Kurt Vonnegut Jr.,Breakfast of Champions,https://images.gr-assets.com/books/1327934446l/4980.jpg,4.08,178154,\"classics, contemporary\",\"The author questions the condition of modern man in this novel depicting a\nscience fiction writer's struggle to find peace and sanity in the world.\"\r\n397,406,627206,Betty Edwards,Drawing on the Right Side of the Brain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348133732l/627206.jpg,3.84,218264,\"art, science\",Drawing on the Right Side of the BrainBetty Edwards\r\n398,407,5826,Ann Patchett,Bel Canto,https://images.gr-assets.com/books/1352997328l/5826.jpg,3.92,192330,\"fiction, contemporary\",\"Somewhere in South America, at the home of the country's vice president, a\nlavish birthday party is being held in honor of Mr. Hosokawa, a powerful\nJapanese businessman. Roxanne Coss, opera's most revered soprano, has\nmesmerized the international guests with her singing. It is a perfect\nevening—until a band of gun-wielding terrorists breaks in through the air-\nconditioning vents and takes the entire party hostage. But what begins as a\npanicked, life-threatening scenario slowly evolves into something quite\ndifferent, as terrorists and hostages forge unexpected bonds and people\nfrom different countries and continents become compatriots. Without the\ndemands of the world to shape their days, life on the inside becomes more\nbeautiful than anything they had known before. At once riveting and\nimpassioned, the narrative becomes a moving exploration of how people\ncommunicate when music is the only common language. Friendship, compassion,\nand the chance for great love lead the characters to forget the real danger\nthat has been set in motion and cannot be stopped. Ann Patchett has written\na novel that is as lyrical and profound as it is unforgettable. Bel Canto\nengenders in the reader the very passion for art and the language of music\nthat its characters discover. As a reader, you find yourself fervently\nwanting this captivity to continue forever, even though you know that real\nlife waits on the other side of the garden wall. A virtuoso performance by\none of our best and most important writers, Bel Canto is a novel to be\ncherished.\"\r\n399,408,1842,Jared Diamond,\"Guns, Germs, and Steel: The Fates of Human Societies\",https://images.gr-assets.com/books/1453215833l/1842.jpg,4,171558,\"history, nonfiction\",\"Dismantles racially based theories of human history by revealing the\nenvironmental factors he feels are responsible for history's broadest\npatterns\"\r\n400,409,9375,Fannie Flagg,Fried Green Tomatoes at the Whistle Stop Cafe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165961740l/9375.jpg,4.26,207508,\"fiction, classics\",Friendship between two women.\r\n401,410,37781,Chinua Achebe,Things Fall Apart,https://images.gr-assets.com/books/1352082529l/37781.jpg,3.61,199346,\"fiction, classics\",\"The contemporary African writer's classic novel depicting the destruction\nof traditional tribal life by the white man\"\r\n402,411,33722,Sophie Kinsella,The Undomestic Goddess,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546431135l/33722._SY475_.jpg,3.82,200509,\"romance, fiction\",\"After making a mistake that will ruin any chance of a partnership,\nworkaholic attorney Samantha Sweeting suffers a breakdown, gets on a train,\nand ends up in the middle of nowhere, where she is mistaken for someone\nlooking for a job and is hired as a housekeeper, but her new employers are\nunaware that she is an attorney with no housekeeping skills at all.\nReprint.\"\r\n403,412,567795,Gary Chapman,The Five Love Languages: How to Express Heartfelt Commitment to Your Mate,https://images.gr-assets.com/books/1369401342l/567795.jpg,4.23,165675,\"nonfiction, christian\",The Five Love Languages: How to Express Heartfelt Commitment to Your MateGary Chapman\r\n404,413,7190,Alexandre Dumas,Les Trois Mousquetaires,https://images.gr-assets.com/books/1320436982l/7190.jpg,4.06,195274,\"classics, fiction\",Les Trois MousquetairesAlexandre Dumas\r\n405,414,6948436,Chris Cleave,The Other Hand,https://images.gr-assets.com/books/1344401905l/6948436.jpg,3.7,116784,\"fiction, contemporary\",The Other HandChris Cleave\r\n406,415,3975774,Alyson Noel,Evermore,https://images.gr-assets.com/books/1362336360l/3975774.jpg,3.59,230031,\"fantasy, paranormal\",EvermoreAlyson Noel\r\n407,416,6327,\"Roald Dahl, Quentin Blake\",The Witches,https://images.gr-assets.com/books/1351707720l/6327.jpg,4.17,221431,\"fantasy, fiction\",\"The WitchesRoald Dahl, Quentin Blake\"\r\n408,417,40440,Diane Setterfield,The Thirteenth Tale,https://images.gr-assets.com/books/1346267826l/40440.jpg,3.95,213200,\"fiction, mystery\",\"When her health begins failing, the mysterious author Vida Winter decides\nto let Margaret Lea, a biographer, write the truth about her life, but\nMargaret needs to verify the facts since Vida has a history of telling\noutlandish tales.\"\r\n409,418,6479259,Richelle Mead,Spirit Bound,https://images.gr-assets.com/books/1291168967l/6479259.jpg,4.37,224247,\"paranormal, fantasy\",\"When she returns to St. Vladimir's after a heartbreaking journey to\nDimitri's birthplace, Rose eagerly anticipates graduation despite her fears\nthat Dimitri will not be able to resist his vampire drive to stalk and\ntransform her.\"\r\n410,419,5996153,Richelle Mead,Blood Promise,https://images.gr-assets.com/books/1442530605l/5996153.jpg,4.35,231853,\"fantasy, paranormal\",Blood PromiseRichelle Mead\r\n411,420,3478,Nicholas Sparks,Message in a Bottle,https://images.gr-assets.com/books/1163789140l/3478.jpg,3.95,185116,\"romance, fiction\",\"In this New York Times bestseller, a single mother sets out to find the\nNorth Carolina man who sent a message meant for someone else . . . and the\njourney may change her life forever. Divorced and disillusioned about\nrelationships, Theresa Osborne is jogging when she finds a bottle on the\nbeach. Inside is a letter of love and longing to \"\"Catherine,\"\" signed simply\n\"\"Garrett.\"\" Challenged by the mystery and pulled by emotions she doesn't\nfully understand, Theresa begins a search for this man that will change her\nlife. What happens to her is unexpected, perhaps miraculous-an encounter\nthat embraces all our hopes for finding someone special, for having a love\nthat is timeless and everlasting.... Nicholas Sparks exquisitely chronicles\nthe human heart. In his first bestselling novel, The Notebook, he created a\ntestament to romantic love that touched readers around the world. Now in\nthis New York Times bestseller, he renews our faith in destiny, in the\nability of lovers to find each other no matter where, no matter when...\"\r\n412,421,8683812,Paula McLain,The Paris Wife,https://images.gr-assets.com/books/1320545874l/8683812.jpg,3.79,191850,\"fiction, romance\",\"Follows the life of Ernest Hemingway's first wife, Hadley, as she navigates\n1920s Paris. By the author of A Ticket to Ride. Reprint.\"\r\n413,422,862041,J.K. Rowling,Complete Harry Potter Boxed Set,https://images.gr-assets.com/books/1392579059l/862041.jpg,4.74,190050,\"fiction, fantasy\",\"Collects the complete series that relates the adventures of young Harry\nPotter, who attends Hogwarts School of Witchcraft and Wizardry, where he\nand others of his kind learn their craft.\"\r\n414,423,16248068,Kiera Cass,The Elite,https://images.gr-assets.com/books/1391454595l/16248068.jpg,4.02,234247,\"romance, fantasy\",\"Kiera Cass’s #1 New York Times bestseller The Elite is a must-read for fans\nof dystopian fiction, fairy tales, and reality TV. This second book in the\nbestselling Selection series will enchant teens who love Divergent and The\nBachelor. The paperback also includes a sneak peek at The One—the thrilling\nthird novel in the Selection series! In America Singer’s world, a bride is\nchosen for the prince through an elaborate, televised competition. In The\nElite, America is one of only six girls left in the running. But is it\nPrince Maxon—and life as the queen—that she wants? Or is it Aspen, her\nfirst love? The Elite delivers the adventure, glamour, political intrigue,\nand romance that readers of The Selection expect, and continues the love\ntriangle that captivated them.\"\r\n415,424,119073,\"Umberto Eco, William Weaver, Seán Barrett\",Il nome della rosa,https://images.gr-assets.com/books/1415375471l/119073.jpg,4.11,200217,\"fiction, mystery\",\"Il nome della rosaUmberto Eco, William Weaver, Seán Barrett\"\r\n416,425,46799,\"Beatrice Sparks, Anonymous\",Go Ask Alice,https://images.gr-assets.com/books/1327870536l/46799.jpg,3.77,196677,\"fiction, classics\",\"A teen plunges into a downward spiral of addiction in this classic\ncautionary tale. January 24th After you've had it, there isn't even life\nwithout drugs.... It started when she was served a soft drink laced with\nLSD in a dangerous party game. Within months, she was hooked, trapped in a\ndownward spiral that took her from her comfortable home and loving family\nto the mean streets of an unforgiving city. It was a journey that would rob\nher of her innocence, her youth -- and ultimately her life. Read her diary.\nEnter her world. You will never forget her. For thirty-five years, the\nacclaimed, bestselling first-person account of a teenage girl's harrowing\ndecent into the nightmarish world of drugs has left an indelible mark on\ngenerations of teen readers. As powerful -- and as timely -- today as ever,\nGo Ask Alice remains the definitive book on the horrors of addiction.\"\r\n417,426,310612,\"John Kennedy Toole, Walker Percy\",A Confederacy of Dunces,https://images.gr-assets.com/books/1436747103l/310612.jpg,3.89,170776,\"fiction, classics\",\"An obese New Orleans misanthrope who constantly rebukes society, Ignatius\nReilly gets a job at his mother's urging but ends up leading a workers'\nrevolt, in a twentieth anniversary edition of the Pulitzer Prize-winning\nnovel. Reprint.\"\r\n418,427,92303,Oscar Wilde,The Importance of Being Earnest,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298438452l/92303.jpg,4.17,210630,\"classics, fiction\",\"Witty and buoyant comedy of manners is brilliantly plotted from its\neffervescent first act to its hilarious denouement, and filled with some of\nliterature's most famous epigrams. Widely considered Wilde's most perfect\nwork, the play is reprinted here from an authoritative early British\nedition. Note to the Dover Edition.\"\r\n419,428,12127750,Rick Riordan,The Mark of Athena,https://images.gr-assets.com/books/1464201354l/12127750.jpg,4.47,277491,\"fantasy, fiction\",\"In The Son of Neptune, Percy, Hazel, and Frank met in Camp Jupiter, the\nRoman equivalent of Camp Halfblood, and traveled to the land beyond the\ngods to complete a dangerous quest. The third book in the Heroes of Olympus\nseries will unite them with Jason, Piper, and Leo. But they number only six\n--who will complete the Prophecy of Seven? The Greek and Roman demigods\nwill have to cooperate in order to defeat the giants released by the Earth\nMother, Gaea. Then they will have to sail together to the ancient land to\nfind the Doors of Death. What exactly are the Doors of Death? Much of the\nprophecy remains a mystery. . . . With old friends and new friends joining\nforces, a marvelous ship, fearsome foes, and an exotic setting, The Mark of\nAthena is be another unforgettable adventure by master storyteller Rick\nRiordan.\"\r\n420,429,34497,Terry Pratchett,The Colour of Magic,https://images.gr-assets.com/books/1407111017l/34497.jpg,3.97,190590,\"fantasy, fiction\",\"The beginning of the hilarious and irreverent series that has more than 80\nmillion copies worldwide, The Color of Magic is where we meet tourist\nTwoflower and wizard guide Ricewind, and follow them on their always-\nbizarre journeys. A writer who has been compared to Mark Twain, Kurt\nVonnegut, and Douglas Adams, Sir Terry Pratchett has created a complex, yet\nzany world filled with a host of unforgettable characters who navigate\naround a profound fantasy universe, complete with its own set of cultures\nand rules.\"\r\n421,430,4929,\"Haruki Murakami, Philip Gabriel\",海辺のカフカ [Umibe no Kafuka],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429638085l/4929.jpg,4.13,167593,\"fiction, fantasy\",\"海辺のカフカ [Umibe no Kafuka]Haruki Murakami, Philip Gabriel\"\r\n422,431,28877,Thomas Harris,Red Dragon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1593241110l/28877.jpg,4.01,194013,\"horror, fiction\",\"Will Graham's unusual, fearful ability to project himself into the minds of\npsychopaths puts him on the trail of Francis Dolorhyde, whose bizarre and\nbloody murders of two suburban families have been triggered by his viewing\nof a William Blake watercolor. Reprint.\"\r\n423,432,41804,Isaac Asimov,\"I, Robot\",https://images.gr-assets.com/books/1388321463l/41804.jpg,4.17,198368,\"fiction, classics\",\"Nine science fiction stories explore the development of robot technology to\na perfection by future civilizations.\"\r\n424,433,42899,J.R. Ward,Dark Lover,https://images.gr-assets.com/books/1429676285l/42899.jpg,4.21,227021,\"romance, paranormal\",Dark LoverJ.R. Ward\r\n425,434,7791997,Becca Fitzpatrick,Crescendo,https://images.gr-assets.com/books/1362408146l/7791997.jpg,4.07,226237,\"fantasy, paranormal\",\"The second book in the breathtaking New York Times bestselling Hush, Hush\nsaga, soon to be a major motion picture! Nora should have known her life\nwouldn’t stay perfect for long. Despite starting a relationship with her\nbad boy guardian angel, Patch, and surviving an attempt on her life, things\nare not looking up. Patch is starting to pull away and Nora can’t figure\nout if it’s for her best interest or if his interest has shifted to her\narch-enemy Marcie Millar. Not to mention that Nora is haunted by images of\nher father and starting to become obsessed with finding out what really\nhappened to him that night he left for Portland and never came home. The\nfarther Nora delves into the mystery of her father’s death, the more she\ncomes to question if her Nephilim blood line has something to do with it as\nwell as why she seems to be in danger more than the average girl when she\nhas a guardian angel. Since Patch isn’t answering her questions, she has to\nstart finding the answers on her own. But when she finds them, will she be\nable to count on Patch or are the things he’s hiding from her darker than\nshe can imagine?\"\r\n426,435,6482837,Lauren Oliver,Before I Fall,https://images.gr-assets.com/books/1361044695l/6482837.jpg,3.92,220160,\"contemporary, romance\",Before I FallLauren Oliver\r\n427,436,9777,Arundhati Roy,The God of Small Things,https://images.gr-assets.com/books/1436217001l/9777.jpg,3.91,165378,\"fiction, contemporary\",\"The year is 1969. In the state of Kerala, on the southernmost tip of India,\na skyblue Plymouth with chrome tailfins is stranded on the highway amid a\nMarxist workers' demonstration. Inside the car sit two-egg twins Rahel and\nEsthappen, and so begins their tale.... Armed only with the invincible\ninnocence of children, they fashion a childhood for themselves in the shade\nof the wreck that is their family - their lonely, lovely mother, Ammu (who\nloves by night the man her children love by day), their blind grandmother,\nMammachi (who plays Handel on her violin), their beloved uncle Chacko\n(Rhodes scholar, pickle baron, radical Marxist, bottom-pincher), their\nenemy, Baby Kochamma (ex-nun and incumbent grandaunt), and the ghost of an\nimperial entomologist's moth (with unusually dense dorsal tufts). When\ntheir English cousin, Sophie Mol, and her mother, Margaret Kochamma, arrive\non a Christmas visit, Esthappen and Rahel learn that Things Can Change in a\nDay. That lives can twist into new, ugly shapes, even cease forever, beside\ntheir river \"\"graygreen. With fish in it. With the sky and trees in it. And\nat night, the broken yellow moon in it.\"\"\"\r\n428,437,18079776,Sue Monk Kidd,The Invention of Wings,https://images.gr-assets.com/books/1386699861l/18079776.jpg,4.23,168006,\"fiction, history\",\"\"\"The story follows Hetty \"\"Handful\"\" Grimke, a Charleston slave, and Sarah,\nthe daughter of the wealthy Grimke family. The novel begins on Sarah's\neleventh birthday, when she is given ownership over Handful, who is to be\nher handmaid. \"\"The Invention of Wings\"\" follows the next thirty-five years\nof their lives. Inspired in part by the historical figure of Sarah Grimke\n(a feminist, suffragist and, importantly, an abolitionist), Kidd allows\nherself to go beyond the record to flesh out the inner lives of all the\ncharacters, both real and imagined\"\"--Provided by publisher.\"\r\n429,438,6469165,Liane Moriarty,What Alice Forgot,https://images.gr-assets.com/books/1377159022l/6469165.jpg,4.05,165704,\"fiction, contemporary\",\"Suffering an accident that causes her to forget the last 10 years of her\nlife, Alice is astonished to discover that she is 39 years old, a mother of\nthree children and in the midst of an acrimonious divorce from a man she\ndearly loves. By the author of Three Wishes. Reprint.\"\r\n430,439,3869,\"Stephen Hawking, Cao Chi, Phạm Văn Thiều\",A Brief History of Time: From the Big Bang to Black Holes,https://images.gr-assets.com/books/1333578746l/3869.jpg,4.12,165628,\"science, nonfiction\",\"#1 NEW YORK TIMES BESTSELLER Published more than two decades ago to great\ncritical acclaim and commercial success, A Brief History of Time has become\na landmark volume in science writing. Stephen Hawking, one of the great\nminds of our time, explores such profound questions as: How did the\nuniverse begin--and what made its start possible? Does time always flow\nforward? Is the universe unending--or are there boundaries? Are there other\ndimensions in space? What will happen when it all ends? Told in language we\nall can understand, A Brief History of Time plunges into the exotic realms\nof black holes and quarks, of antimatter and \"\"arrows of time,\"\" of the big\nbang and a bigger God--where the possibilities are wondrous and unexpected.\nWith exciting images and profound imagination, Stephen Hawking brings us\ncloser to the ultimate secrets at the very heart of creation.\"\r\n431,440,7315573,Ken Follett,Fall of Giants,https://images.gr-assets.com/books/1470384630l/7315573.jpg,4.26,168911,\"fiction, history\",\"The first novel in The Century Trilogy follows the fates of five\ninterrelated familiesNAmerican, German, Russian, English, and WelshNas they\nmove through the world-shaking dramas of the First World War, the Russian\nRevolution, and the struggle for women's suffrage.\"\r\n432,441,6320534,Stephen King,Under the Dome,https://images.gr-assets.com/books/1268982908l/6320534.jpg,3.89,183292,\"horror, fiction\",\"After an invisible force field seals off Chester Mills, Maine, from the\nrest of the world, it is up to Dale Barbara, an Iraq veteran, and a select\ngroup of citizens to save the town, if they can get past Big Jim Rennie, a\nmurderous politician, and his son, who hides a horrible secret in his dark\npantry. By the best-selling author of Just After Sunset. Two million first\nprinting.\"\r\n433,442,830,Neal Stephenson,Snow Crash,https://images.gr-assets.com/books/1477624625l/830.jpg,4.02,175883,\"fiction, fantasy\",Snow CrashNeal Stephenson\r\n434,443,51738,Sarah Dessen,Just Listen,https://images.gr-assets.com/books/1358270741l/51738.jpg,4.06,202180,\"romance, contemporary\",\"Isolated from friends who believe the worst because she has not been\ntruthful with them, sixteen-year-old Annabel finds an ally in classmate\nOwen, whose honesty and passion for music help her to face and share what\nreally happened at the end-of-the-year party that changed her life.\"\r\n435,444,99107,\"A.A. Milne, Ernest H. Shepard\",Winnie-the-Pooh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298440130l/99107.jpg,4.34,207550,\"fiction, fantasy\",\"Edward Bear acquires a new name and with it a new life of many good times\nand adventures\"\r\n436,445,9736930,S.J. Watson,Before I Go to Sleep,https://images.gr-assets.com/books/1358353512l/9736930.jpg,3.87,180896,\"fiction, mystery\",Before I Go to SleepS.J. Watson\r\n437,446,102868,Arthur Conan Doyle,A Study in Scarlet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519031842l/102868._SX318_.jpg,4.15,201499,\"classics, mystery\",A Study in ScarletArthur Conan Doyle\r\n438,447,2248573,Christopher Paolini,Brisingr,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391443970l/2248573.jpg,4.03,211645,\"fantasy, fiction\",\"Presents the further adventures of Eragon and his dragon Saphira as they\ncontinue to aid the Varden in the struggle against the evil king,\nGalbatorix.\"\r\n439,448,56495,Rick Warren,The Purpose Driven Life: What on Earth am I Here For?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440111652l/56495._SY475_.jpg,3.9,170491,\"christian, religion\",\"Offers spiritual fulfillment through an understanding of God's plan for a\nmeaningful life.\"\r\n440,449,676924,\"P.C. Cast, Kristin Cast\",Betrayed: a House of Night Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406941788l/676924.jpg,3.93,205340,\"romance, fiction\",\"Betrayed, the second installment in the bestselling House of Night series\nfrom P. C. Cast and Kristin Cast, is dark and sexy, and as thrilling as it\nis utterly shocking. Fledgling vampyre Zoey Redbird has managed to settle\nin at the House of Night. She's come to terms with the vast powers the\nvampyre goddess, Nyx, has given her, and is getting a handle on being the\nnew Leader of the Dark Daughters. Best of all, Zoey finally feels like she\nbelongs--like she really fits in. She actually has a boyfriend...or two.\nThen the unthinkable happens: Human teenagers are being killed, and all the\nevidence points to the House of Night. While danger stalks the humans from\nZoey's old life, she begins to realize that the very powers that make her\nso unique might also threaten those she loves. Then, when she needs her new\nfriends the most, death strikes the House of Night, and Zoey must find the\ncourage to face a betrayal that could break her heart, her soul, and\njeopardize the very fabric of her world.\"\r\n441,450,47212,Jim Butcher,Storm Front,https://images.gr-assets.com/books/1419456275l/47212.jpg,4.02,203053,\"fantasy, mystery\",Storm FrontJim Butcher\r\n442,451,50398,\"Jane Austen, Alfred MacAdam\",Northanger Abbey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201718l/50398.jpg,3.8,205167,\"classics, fiction\",\"Northanger AbbeyJane Austen, Alfred MacAdam\"\r\n443,452,16101128,Rick Yancey,The 5th Wave,https://images.gr-assets.com/books/1359853842l/16101128.jpg,4.1,260048,\"fiction, fantasy\",\"A New York Times bestseller A USA Today bestseller Winner of the 2014 Red\nHouse Children's Book Award 2014 Children's Choice Book Awards Finalist for\nTeen Book of the Year A YALSA 2014 Best Fiction for Young Adults A YALSA\n2014 Quick Picks for Reluctant Young Readers A Booklist 2014 Best Fiction\nfor Young Adults A VOYA 2013 Perfect Ten An Amazon Best Book of the Year\n\"\"Remarkable, not-to-be-missed-under-any-circumstances.\"\"?Entertainment\nWeekly The Passage meets Ender's Game in an epic New York Times bestselling\nseries debut from award-winning author Rick Yancey. After the 1st wave,\nonly darkness remains. After the 2nd, only the lucky escape. And after the\n3rd, only the unlucky survive. After the 4th wave, only one rule applies:\ntrust no one. Now, it's the dawn of the 5th wave, and on a lonely stretch\nof highway, Cassie runs from Them. The beings who only look human, who roam\nthe countryside killing anyone they see. Who have scattered Earth's last\nsurvivors. To stay alone is to stay alive, Cassie believes, until she meets\nEvan Walker. Beguiling and mysterious, Evan Walker may be Cassie's only\nhope for rescuing her brother--or even saving herself. But Cassie must\nchoose: between trust and despair, between defiance and surrender, between\nlife and death. To give up or to get up. \"\"Wildly entertaining . . . I\ncouldn't turn the pages fast enough.\"\"?Justin Cronin, The New York Times\nBook Review \"\"A modern sci-fi masterpiece . . . should do for aliens what\nTwilight did for vampires.\"\"?USAToday.com Books in the series: The 5th Wave\n(The First Book of The 5th Wave) The Infinite Sea (The Second Book of The\n5th Wave) Title still to come! (The Third Book of the The 5th Wave)\"\r\n444,453,10920,Charles Frazier,Cold Mountain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442416348l/10920._SY475_.jpg,3.83,185979,\"fiction, romance\",\"Inman, an injured and disillusioned Confederate soldier, embarks on a\nharrowing journey home to his sweetheart, Ada, who herself is struggling to\nrun the farm left her at her father's sudden death.\"\r\n445,454,767680,\"Laura Joffe Numeroff, Felicia Bond\",If You Give a Mouse a Cookie,https://images.gr-assets.com/books/1276046901l/767680.jpg,4.24,198083,\"fiction, classics\",\"If a hungry little traveler shows up at your house, you might want to give\nhim a cookie. If you give him a cookie, he's going to ask for a glass of\nmilk. He'll want to look in a mirror to make sure he doesn't have a milk\nmustache, and then he'll ask for a pair of scissors to give himself a\ntrim.... The consequences of giving a cookie to this energetic mouse run\nthe young host ragged, but young readers will come away smiling at the\nantics that tumble like dominoes through the pages of this delightful\npicture book.\"\r\n446,455,42155,Emily Giffin,Something Blue,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.92,172417,\"fiction, romance\",\"Her belief in the power of beauty shattered when her fiancâe dumps her for\na plain woman, a pregnant Darcy flees to London and struggles to rebuild\nher glamorous life before realizing that her past methods no longer work.\"\r\n447,456,12220,Tennessee Williams,A Streetcar Named Desire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389153133l/12220.jpg,3.97,194493,\"classics, fiction\",\"Tennessee Williams' classic drama studies the emotional disintegration of a\nSouthern woman whose last chance for happiness is destroyed by her\nvindictive brother-in-law.\"\r\n448,457,10692,Elizabeth Kostova,The Historian,https://images.gr-assets.com/books/1338298031l/10692.jpg,3.77,190473,\"fiction, fantasy\",The HistorianElizabeth Kostova\r\n449,458,20170404,Emily St. John Mandel,Station Eleven,https://images.gr-assets.com/books/1451446835l/20170404.jpg,4.02,160466,\"fiction, fantasy\",\"A National Book Award Finalist A PEN/Faulkner Award Finalist Kirsten\nRaymonde will never forget the night Arthur Leander, the famous Hollywood\nactor, had a heart attack on stage during a production of King Lear. That\nwas the night when a devastating flu pandemic arrived in the city, and\nwithin weeks, civilization as we know it came to an end. Twenty years\nlater, Kirsten moves between the settlements of the altered world with a\nsmall troupe of actors and musicians. They call themselves The Traveling\nSymphony, and they have dedicated themselves to keeping the remnants of art\nand humanity alive. But when they arrive in St. Deborah by the Water, they\nencounter a violent prophet who will threaten the tiny band's existence.\nAnd as the story takes off, moving back and forth in time, and vividly\ndepicting life before and after the pandemic, the strange twist of fate\nthat connects them all will be revealed.\"\r\n450,459,18774964,\"Fredrik Backman, Henning Koch\",En man som heter Ove,https://images.gr-assets.com/books/1405259930l/18774964.jpg,4.35,183777,\"fiction, contemporary\",\"En man som heter OveFredrik Backman, Henning Koch\"\r\n451,460,18335634,Cassandra Clare,Clockwork Princess,https://images.gr-assets.com/books/1436788488l/18335634.jpg,4.59,162099,\"fantasy, romance\",Clockwork PrincessCassandra Clare\r\n452,461,1078,Pearl S. Buck,The Good Earth,https://images.gr-assets.com/books/1312497600l/1078.jpg,3.97,182220,fiction,\"Corrie ten Boom's account of her amazing family's experiences during the\nGerman occupation of Holland reveals her indomitable Christian faith\"\r\n453,462,2784,John Berger,Ways of Seeing,https://images.gr-assets.com/books/1464018308l/2784.jpg,3.75,155658,\"philosophy, nonfiction\",\"Presents twelve of Holmes and Watson's best-known cases, including \"\"The\nSpeckled Band,\"\" \"\"The Red-Headed League,\"\" The Five Orange Pips,\"\" \"\"The Copper\nBeeches,\"\" and \"\"A Scandal in Bohemia.\"\"\"\r\n454,463,5364,Diana Gabaldon,Dragonfly in Amber,https://images.gr-assets.com/books/1456114344l/5364.jpg,4.31,178110,\"romance, fantasy\",\"Interweaves the events of Tom Wingo's summer in New York and his\nrelationship to Susan Lowenstein, his sister Savannah's beautiful\npsychiatrist, and the complex history of the South Carolinian Wingo family,\nfrom World War II through Vietnam. Reprint.\"\r\n455,465,14758,Jennifer Weiner,In Her Shoes,https://images.gr-assets.com/books/1435252471l/14758.jpg,3.78,167400,\"fiction, romance\",In Her ShoesJennifer Weiner\r\n456,466,659469,\"Chuck Dixon, J.R.R. Tolkien, David Wenzel, Sean Deming\",The Hobbit,https://images.gr-assets.com/books/1374681632l/659469.jpg,4.48,155338,\"fantasy, classics\",\"When wealthy, seemingly perfect Brittany and Alex Fuentes, a gang member\nfrom the other side of town, develop a relationship after Alex discovers\nthat Brittany is not exactly who she seems to be, they must face the\ndisapproval of their schoolmates--and others.\"\r\n457,467,297673,Junot Díaz,The Brief Wondrous Life of Oscar Wao,https://images.gr-assets.com/books/1391409748l/297673.jpg,3.89,160330,\"fiction, classics\",\"Follows the adventures of Peter Pan, the boy who would not grow up.\"\r\n458,468,37415,Zora Neale Hurston,Their Eyes Were Watching God,https://images.gr-assets.com/books/1368072803l/37415.jpg,3.87,181106,\"classics, fiction\",Their Eyes Were Watching GodZora Neale Hurston\r\n459,469,41899,\"Newt Scamander, J.K. Rowling, Albus Dumbledore\",Fantastic Beasts and Where to Find Them,https://images.gr-assets.com/books/1303738520l/41899.jpg,3.95,185928,\"fiction, fantasy\",\"Okada is apparently a happy man - his domestic life seems familiar and\ncomfortable, but admittedly he has just quit his job, the cat has\ndisappeared and a strange woman is bothering him with explicit phone calls.\"\r\n460,470,17851885,\"Malala Yousafzai, Christina Lamb\",I Am Malala: The Girl Who Stood Up for Education and Was Shot by the Taliban,https://images.gr-assets.com/books/1375414895l/17851885.jpg,4.06,214412,\"biography, nonfiction\",\"I Am Malala: The Girl Who Stood Up for Education and Was Shot by the TalibanMalala Yousafzai, Christina Lamb\"\r\n461,471,45032,\"Jane Austen, Kathryn Sutherland, Tony Tanner, Claire Lamont\",Mansfield Park,https://images.gr-assets.com/books/1397063295l/45032.jpg,3.84,205064,\"fiction, romance\",\"Recounts the connected stories of people from the past and the distant\nfuture, from a nineteenth-century notary and an investigative journalist in\nthe 1970s to a young man who searches for meaning in a post-apocalyptic\nworld.\"\r\n462,472,4069,Viktor E. Frankl,…trotzdem Ja zum Leben sagen: Ein Psychologe erlebt das Konzentrationslager,https://images.gr-assets.com/books/1467136625l/4069.jpg,4.33,171281,\"psychology, philosophy\",\"Heroic young men carry the emotional weight of their lives to war in\nVietnam in a patchwork account of a modern journey into the heart of\ndarkness.\"\r\n463,473,237209,Tana French,In the Woods,https://images.gr-assets.com/books/1348442606l/237209.jpg,3.74,188024,\"mystery, fiction\",Monkeys - Cops - Rats - Cows - Art - Street furniture.\r\n464,474,14743,Richard Dawkins,The God Delusion,https://images.gr-assets.com/books/1347220693l/14743.jpg,3.89,162740,\"religion, science\",The God DelusionRichard Dawkins\r\n465,475,8492825,Gayle Forman,Where She Went,https://images.gr-assets.com/books/1347810457l/8492825.jpg,4.06,193141,\"romance, contemporary\",\"Hiding a secret life as an assassin while working as a murder analyst for\nthe Miami police, Dexter Morgan is intrigued by the work of a new serial\nkiller whose style mimics his own and who Morgan realizes is inviting him\ninto a deadly competition. Reprint. 15,000 first printing. (A Showtime\nseries, premiering Fall 2006, starring Michael C. Hall, Jennifer Carpenter,\nand others) (Suspense)\"\r\n466,476,7069,John Irving,The World According to Garp,https://images.gr-assets.com/books/1447234581l/7069.jpg,4.07,167106,\"fiction, classics\",\"When a vampire enlists the aid of cocktail waitress Sookie Stackhouse to\nuse her telepathic talents to find a missing vampire in Dallas, she agrees\nto the deal if the vampires promise to behave and to let the humans go\nunharmed. Original.\"\r\n467,477,78129,Lee Child,Killing Floor,https://images.gr-assets.com/books/1399313258l/78129.jpg,4.04,162972,\"thriller, mystery\",Killing FloorLee Child\r\n468,478,2932,\"Daniel Defoe, Gerald McCann, Virginia Woolf\",\"The Life and Strange Surprising Adventures of Robinson Crusoe of York, Mariner\",https://images.gr-assets.com/books/1403180114l/2932.jpg,3.66,178188,\"classics, fiction\",\"The unusual voyages of Englishman Lemuel Gulliver carry him to such strange\nlocales as Lilliput, where the inhabitants are six inches tall;\nBrobdingnag, a land of giants; an island of sorcerers; and a nation ruled\nby horses.\"\r\n469,479,28862,\"Niccolò Machiavelli, Adolph Caso, Rufus Goodwin, Benjamin Martinez\",Il Principe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390055828l/28862.jpg,3.78,153128,\"classics, philosophy\",\"Il PrincipeNiccolò Machiavelli, Adolph Caso, Rufus Goodwin, Benjamin Martinez\"\r\n470,480,18122,Philip Pullman,The Amber Spyglass,https://images.gr-assets.com/books/1329189152l/18122.jpg,4.06,192315,\"fantasy, fiction\",\"Presents a new translation of the Anglo-Saxon epic chronicling the heroic\nadventures of Beowulf, the Scandinavian warrior who saves his people from\nthe ravages of the monster Grendel and Grendel's mother.\"\r\n471,481,43889,Terry Goodkind,Wizard's First Rule,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385248539l/43889.jpg,4.13,175771,\"fantasy, fiction\",\"Chronicles the events that led to Bruce Wayne's becoming Batman and his\nfirst year fighting crime.\"\r\n472,482,6837103,Kathleen Grissom,The Kitchen House,https://images.gr-assets.com/books/1463229128l/6837103.jpg,4.18,168082,\"fiction, history\",The Kitchen HouseKathleen Grissom\r\n473,483,5113,J.D. Salinger,Franny and Zooey,https://images.gr-assets.com/books/1355037988l/5113.jpg,3.98,152906,\"fiction, classics\",\"\"\"David Sedaris's ability to transform the mortification of everyday life\ninto wildly entertaining art,\"\" (The Christian Science Monitor) is elevated\nto wilder and more entertaining heights than ever in this remarkable new\nbook. Trying to make coffee when the water is shut off, David considers\nusing the water in a vase of flowers and his chain of associations takes\nhim from the French countryside to a hilariously uncomfortable memory of\nbuying drugs in a mobile home in rural North Carolina. In essay after\nessay, Sedaris proceeds from bizarre conundrums of daily life-having a\nlozenge fall from your mouth into the lap of a fellow passenger on a plane\nor armoring the windows with LP covers to protect the house from neurotic\nsongbirds-to the most deeply resonant human truths. Culminating in a\nbrilliant account of his venture to Tokyo in order to quit smoking, David\nSedaris's sixth essay collection is a new masterpiece of comic writing from\n\"\"a writer worth treasuring\"\" (Seattle Times). Praise for When You Are\nEngulfed in Flames: \"\"Older, wiser, smarter and meaner, Sedaris...defies the\nodds once again by delivering an intelligent take on the banalities of an\nabsurd life.\"\" --Kirkus Reviews This latest collection proves that not only\ndoes Sedaris still have it, but he's also getting better....Sedaris's best\nstuff will still--after all this time--move, surprise, and entertain.\"\"\n--Booklist Table of Contents: It's Catching Keeping Up The Understudy This\nOld House Buddy, Can You Spare a Tie? Road Trips What I Learned That's\nAmore The Monster Mash In the Waiting Room Solutions to Saturday's Puzzle\nAdult Figures Charging Toward a Concrete Toadstool Memento Mori All the\nBeauty You Will Ever Need Town and Country Aerial The Man in the Hut Of\nMice and Men April in Paris Crybaby Old Faithful The Smoking Section\"\r\n474,484,29059,Chuck Palahniuk,Choke,https://images.gr-assets.com/books/1403186013l/29059.jpg,3.69,154643,\"fiction, contemporary\",ChokeChuck Palahniuk\r\n475,485,4934,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",Братья Карамазовы,https://images.gr-assets.com/books/1427728126l/4934.jpg,4.3,155838,\"classics, philosophy\",\"The #1 New York Times bestselling series! Red Queen, by #1 New York Times\nbestselling author Victoria Aveyard, is a sweeping tale of power, intrigue,\nand betrayal, perfect for fans of George R.R. Martin’s Game of Thrones\nseries. Mare Barrow's world is divided by blood—those with common, Red\nblood serve the Silver-blooded elite, who are gifted with superhuman\nabilities. Mare is a Red, scraping by as a thief in a poor, rural village,\nuntil a twist of fate throws her in front of the Silver court. Before the\nking, princes, and all the nobles, she discovers she has an ability of her\nown. To cover up this impossibility, the king forces her to play the role\nof a lost Silver princess and betroths her to one of his own sons. As Mare\nis drawn further into the Silver world, she risks everything and uses her\nnew position to help the Scarlet Guard—a growing Red rebellion—even as her\nheart tugs her in an impossible direction. One wrong move can lead to her\ndeath, but in the dangerous game she plays, the only certainty is betrayal.\nAnd don’t miss Broken Throne: A Red Queen Collection, featuring three\nbrand-new novellas and other exclusive content, coming in April!\"\r\n476,486,307791,Jeanne DuPrau,The City of Ember,https://images.gr-assets.com/books/1397931596l/307791.jpg,3.85,198809,\"fantasy, fiction\",The City of EmberJeanne DuPrau\r\n477,487,7670,Michael Crichton,The Andromeda Strain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587497243l/7670.jpg,3.87,173186,\"thriller, fiction\",\"In charming, beautiful, and wealthy old-South Savannah, Georgia, the local\nbad boy is shot dead inside of the opulent mansion of a gay antiques\ndealer, and a gripping trial follows. Reprint.\"\r\n478,488,11566,Stephen King,The Green Mile,https://images.gr-assets.com/books/1373903563l/11566.jpg,4.42,173950,\"horror, fiction\",The Green MileStephen King\r\n479,489,2547,Kahlil Gibran,The Prophet,https://images.gr-assets.com/books/1355046521l/2547.jpg,4.22,142641,\"poetry, philosophy\",The ProphetKahlil Gibran\r\n480,490,15196,Art Spiegelman,Maus: A Survivor's Tale : My Father Bleeds History,https://images.gr-assets.com/books/1327884972l/15196.jpg,4.35,184007,\"comics, history\",\"The summer following her father's death, Macy plans to work at the library\nand wait for her brainy boyfriend to return from camp, but instead she goes\nto work at a catering business where she makes new friends and finally\nfaces her grief.\"\r\n481,491,2866718,\"P.C. Cast, Kristin Cast\",Untamed: A House of Night Novel,https://images.gr-assets.com/books/1438037020l/2866718.jpg,3.95,191743,\"fantasy, paranormal\",An orphaned boy and a kidnapped horse gallop for Narnia...and freedom.\r\n482,492,7967,Orson Scott Card,Speaker for the Dead,https://images.gr-assets.com/books/1295660894l/7967.jpg,4.04,164287,\"fiction, science\",\"Framed for the murder of Queen Tatiana, bodyguard Rose faces the trial of\nher life as best friend Lissa, a vampire princess, becomes first in line\nfor the royal throne.\"\r\n483,493,11138,C.S. Lewis,Mere Christianity,https://images.gr-assets.com/books/1468102872l/11138.jpg,4.31,184759,\"christian, religion\",\"The adventures continue for Laura Ingalls and her family as they leave\ntheir little house in the Big Woods of Wisconsin and set out for Kansas.\nThey travel for many days in their covered wagon until they find the best\nspot to build their little house on the prairie. Soon they are planting and\nplowing, hunting wild ducks and turkeys, and gathering grass for their\ncows. Sometimes pioneer life is hard, but Laura and her folks are always\nbusy and happy in their new little house.\"\r\n484,494,29044,Donna Tartt,The Secret History,https://images.gr-assets.com/books/1451554846l/29044.jpg,4.07,168405,\"fiction, mystery\",\"2017 Reprint of 1922 Edition with All Original Illustrations in Color. Full\nfacsimile of the original edition, not reproduced with Optical Recognition\nsoftware. The Velveteen Rabbit (or How Toys Become Real) is a children's\nbook written by Margery Williams (also known as Margery Williams Bianco)\nand illustrated by William Nicholson. It chronicles the story of a stuffed\nrabbit and his desire to become real, through the love of his owner. The\nbook was first published in 1922 and has been republished many times since.\nThe Velveteen Rabbit was Williams' first children's book. It has been\nawarded the IRA/CBC Children's Choice award. Based on a 2007 online poll,\nthe National Education Association named the book one of its \"\"Teachers' Top\n100 Books for Children.\"\r\n485,495,4953,Dave Eggers,A Heartbreaking Work of Staggering Genius,https://images.gr-assets.com/books/1327714834l/4953.jpg,3.68,145459,\"fiction, memoir\",\"One of the most important and influential books written in the past half-\ncentury, Robert M. Pirsig's Zen and the Art of Motorcycle Maintenance is a\npowerful, moving, and penetrating examination of how we live . . . and a\nbreathtaking meditation on how to live better. Here is the book that\ntransformed a generation: an unforgettable narration of a summer motorcycle\ntrip across America's Northwest, undertaken by a father and his young son.\nA story of love and fear -- of growth, discovery, and acceptance -- that\nbecomes a profound personal and philosophical odyssey into life's\nfundamental questions, this uniquely exhilarating modern classic is both\ntouching and transcendent, resonant with the myriad confusions of existence\n. . . and the small, essential triumphs that propel us forward.\"\r\n486,496,1295,Jean M. Auel,The Clan of the Cave Bear,https://images.gr-assets.com/books/1385331302l/1295.jpg,4.02,176062,\"fiction, romance\",\"An English astronomer, in company with an artilleryman, a country curate,\nand others, struggle to survive the invasion of Earth by Martians in 1894.\"\r\n487,497,3685,Anna Sewell,Black Beauty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1578265482l/3685._SY475_.jpg,3.94,183255,\"classics, fiction\",\"Among the mega mansions and perfectly manicured hedges of Rosewood,\nPennsylvania, everyone has something to hide—especially four very pretty\nlittle liars. High school juniors Spencer, Hanna, Aria, and Emily have been\nkeeping secrets ever since their best friend, Alison DiLaurentis,\ndisappeared three years ago. But when the girls begin receiving threatening\nnotes from someone named “A,” their secrets—the big ones, the little ones,\neven the long-buried ones—no longer seem so safe. Unravel the Pretty Little\nLiars’ wildest mysteries in this special box set. But remember, nothing is\nas it seems in Rosewood . . . Pretty Little Liars Box Set includes books 1\nto 4\"\r\n488,498,656,\"Leo Tolstoy, Henry Gifford, Aylmer Maude, Louise Maude\",Война и миръ,https://images.gr-assets.com/books/1413215930l/656.jpg,4.11,168037,\"classics, fiction\",\"Война и миръLeo Tolstoy, Henry Gifford, Aylmer Maude, Louise Maude\"\r\n489,499,28676,Bret Easton Ellis,American Psycho,https://images.gr-assets.com/books/1436934349l/28676.jpg,3.81,166083,\"fiction, horror\",\"An ecological and anthropological study of eating offers insight into food\nconsumption in the twenty-first century, explaining how an abundance of\nunlimited food varieties reveals the responsibilities of everyday consumers\nto protect their health and the environment. By the author of The Botany of\nDesire. 125,000 first printing.\"\r\n490,500,38980,Meg Cabot,The Princess Diaries,https://images.gr-assets.com/books/1355011082l/38980.jpg,3.76,193140,\"romance, fiction\",The Princess DiariesMeg Cabot\r\n491,501,7061,Alexander McCall Smith,The No. 1 Ladies' Detective Agency ,https://images.gr-assets.com/books/1459953654l/7061.jpg,3.75,180320,\"mystery, fiction\",\"In this heartfelt Southern love story from the #1 New York Times\nbestselling author of The Notebook, a daring fireman rescues a single mom\n-- and learns that falling in love is the greatest risk of all. When\nconfronted by raging fires or deadly accidents, volunteer fireman Taylor\nMcAden feels compelled to take terrifying risks to save lives. But there is\none leap of faith Taylor can't bring himself to make: he can't fall in\nlove. For all his adult years, Taylor has sought out women who need to be\nrescued, women he leaves as soon as their crisis is over and the\nrelationship starts to become truly intimate. When a raging storm hits his\nsmall Southern town, single mother Denise Holton's car skids off the road.\nThe young mom is with her four-year-old son Kyle, a boy with severe\nlearning disabilities and for whom she has sacrificed everything. Taylor\nMcAden finds her unconscious and bleeding, but does not find Kyle. When\nDenise wakes, the chilling truth becomes clear to both of them. Kyle is\ngone. During the search for Kyle, a connection between Taylor and Denise\ntakes root. But Taylor doesn't know that this rescue will be different from\nall the others.\"\r\n492,502,138398,\"Robert Kirkman, Tony Moore\",\"The Walking Dead, Vol. 1: Days Gone Bye\",https://images.gr-assets.com/books/1389233242l/138398.jpg,4.3,164530,\"comics, fiction\",\"Now available for the first time in a mass-market premium paperback\nedition—master storyteller Stephen King presents the classic #1 New York\nTimes bestseller about a mysterious store than can sell you whatever you\ndesire—but not without exacting a terrible price in return. “There are two\nprices for this. Half…and half. One half is cash. The other is a deed. Do\nyou understand?” The town of Castle Rock, Maine has seen its fair share of\noddities over the years, but nothing is a peculiar as the little curio shop\nthat’s just opened for business. Its mysterious proprietor, Leland Gaunt,\nseems to have something for everyone out on display at Needful\nThings…interesting items that run the gamut from worthless to priceless.\nNothing has a price tag in this place, but everything is certainly for\nsale. The heart’s desire for any resident of Castle Rock can easily be\nfound among the curiosities…in exchange for a little money and—at the\nspecific request of Leland Gaunt—a whole lot of menace against their fellow\nneighbors. Everyone in town seems willing to make a deal at Needful Things,\nbut the devil is in the details. And no one takes heed of the little sign\nhanding on the wall: Caveat emptor. In other words, let the buyer beware…\"\r\n493,503,70535,Arthur C. Clarke,2001: A Space Odyssey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432468943l/70535._SY475_.jpg,4.12,170841,\"fiction, classics\",\"Time-travelling Claire Randall returns to her own time, pregnant and weary,\nand resumes her life, but her memories of her eighteenth-century Scottish\nlover Jamie Fraser will not die, leading her to a desperate decision to\nreturn to him\"\r\n494,505,27523,\"Tim LaHaye, Jerry B. Jenkins\",Left Behind:  A Novel of the Earth's Last Days,https://images.gr-assets.com/books/1406505054l/27523.jpg,3.81,161173,\"christian, fantasy\",\"\"\"A family's two-hundred-pound Saint Bernard is transformed by rabies and\nthe insidious guidance of demonic forces into a terrifying monster\"\" --\"\r\n495,506,18635016,Kiera Cass,The One,https://images.gr-assets.com/books/1395612906l/18635016.jpg,4.21,139544,\"romance, fantasy\",\"First published in 1993, The Virgin Suicides announced the arrival of a\nmajor new American novelist. In a quiet suburb of Detroit, the five Lisbon\nsisters--beautiful, eccentric, and obsessively watched by the neighborhood\nboys--commit suicide one by one over the course of a single year. As the\nboys observe them from afar, transfixed, they piece together the mystery of\nthe family's fatal melancholy, in this hypnotic and unforgettable novel of\nadolescent love, disquiet, and death. Jeffrey Eugenides evokes the emotions\nof youth with haunting sensitivity and dark humor and creates a coming-of-\nage story unlike any of our time. Adapted into a critically acclaimed film\nby Sofia Coppola, The Virgin Suicides is a modern classic, a lyrical and\ntimeless tale of sex and suicide that transforms and mythologizes suburban\nmiddle-American life.\"\r\n496,507,7938275,Suzanne Collins,The Hunger Games Box Set,https://images.gr-assets.com/books/1360094673l/7938275.jpg,4.49,129665,\"fiction, romance\",The Hunger Games Box SetSuzanne Collins\r\n497,508,1869,Barbara Ehrenreich,Nickel and Dimed: On (Not) Getting By in America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442378091l/1869._SY475_.jpg,3.6,152786,\"nonfiction, memoir\",Nickel and Dimed: On (Not) Getting By in AmericaBarbara Ehrenreich\r\n498,509,1358844,Sophie Kinsella,Remember Me?,https://images.gr-assets.com/books/1276963901l/1358844.jpg,3.76,170096,\"romance, fiction\",\"Emma Bovary yearns for a life of luxury and passion of the kind she reads\nabout in romantic novels. But life with her country doctor husband in the\nprovinces is unutterably boring, and she embarks on love affairs to realize\nher fantasies. This new translation by Margaret Mauldon perfectly captures\nFlaubert's distinctive style.\"\r\n499,510,233649,Robert Jordan,The Great Hunt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437870280l/233649._SY475_.jpg,4.2,162595,\"fantasy, fiction\",\"A journey through a land where Milo learns the importance of words and\nnumbers provides a cure for his boredom.\"\r\n500,511,6534,Patricia Cornwell,Post-Mortem:  A Mystery Introducing Dr. Kay Scarpetta,https://images.gr-assets.com/books/1341835831l/6534.jpg,4.01,167379,\"mystery, crime\",Post-Mortem:  A Mystery Introducing Dr. Kay ScarpettaPatricia Cornwell\r\n501,512,23919,Edgar Allan Poe,The Complete Tales of Edgar Allan Poe,https://images.gr-assets.com/books/1327942676l/23919.jpg,4.37,160063,\"classics, poetry\",The Complete Tales of Edgar Allan PoeEdgar Allan Poe\r\n502,513,561909,\"Corrie ten Boom, John Sherrill, Elizabeth Sherrill\",The Hiding Place,https://images.gr-assets.com/books/1320418824l/561909.jpg,4.42,171384,\"biography, history\",\"Corrie ten Boom's account of her amazing family's experiences during the\nGerman occupation of Holland reveals her indomitable Christian faith\"\r\n503,514,3590,Arthur Conan Doyle,The Adventures of Sherlock Holmes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1164045516l/3590.jpg,4.29,139816,\"classics, mystery\",\"Presents twelve of Holmes and Watson's best-known cases, including \"\"The\nSpeckled Band,\"\" \"\"The Red-Headed League,\"\" The Five Orange Pips,\"\" \"\"The Copper\nBeeches,\"\" and \"\"A Scandal in Bohemia.\"\"\"\r\n504,515,16735,Pat Conroy,The Prince of Tides,https://images.gr-assets.com/books/1320541074l/16735.jpg,4.22,159596,\"contemporary, classics\",\"Interweaves the events of Tom Wingo's summer in New York and his\nrelationship to Susan Lowenstein, his sister Savannah's beautiful\npsychiatrist, and the complex history of the South Carolinian Wingo family,\nfrom World War II through Vietnam. Reprint.\"\r\n505,516,3985,Michael Chabon,The Amazing Adventures of Kavalier & Clay,https://images.gr-assets.com/books/1479660066l/3985.jpg,4.17,147717,\"fiction, contemporary\",The Amazing Adventures of Kavalier & ClayMichael Chabon\r\n506,517,4268157,Simone Elkeles,Perfect Chemistry,https://images.gr-assets.com/books/1439792475l/4268157.jpg,4.07,198627,\"romance, contemporary\",\"When wealthy, seemingly perfect Brittany and Alex Fuentes, a gang member\nfrom the other side of town, develop a relationship after Alex discovers\nthat Brittany is not exactly who she seems to be, they must face the\ndisapproval of their schoolmates--and others.\"\r\n507,518,34268,\"J.M. Barrie, Michael Hague\",Peter Pan,https://images.gr-assets.com/books/1337714526l/34268.jpg,4.1,169306,\"classics, fantasy\",\"Follows the adventures of Peter Pan, the boy who would not grow up.\"\r\n508,519,24768,Scott Westerfeld,Pretties,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388314207l/24768.jpg,3.85,193405,\"fiction, fantasy\",PrettiesScott Westerfeld\r\n509,520,11275,\"Haruki Murakami, Jay Rubin\",ねじまき鳥クロニクル [Nejimakidori kuronikuru],https://images.gr-assets.com/books/1327872639l/11275.jpg,4.17,133408,\"fiction, fantasy\",\"Okada is apparently a happy man - his domestic life seems familiar and\ncomfortable, but admittedly he has just quit his job, the cat has\ndisappeared and a strange woman is bothering him with explicit phone calls.\"\r\n510,521,79885,Michael Connelly,The Lincoln Lawyer ,https://images.gr-assets.com/books/1370140049l/79885.jpg,4.14,149438,\"mystery, fiction\",The Lincoln Lawyer Michael Connelly\r\n511,522,49628,David Mitchell,Cloud Atlas,https://images.gr-assets.com/books/1406383769l/49628.jpg,4.01,152441,\"fiction, fantasy\",\"Recounts the connected stories of people from the past and the distant\nfuture, from a nineteenth-century notary and an investigative journalist in\nthe 1970s to a young man who searches for meaning in a post-apocalyptic\nworld.\"\r\n512,523,133518,Tim O'Brien,The Things They Carried,https://images.gr-assets.com/books/1424663847l/133518.jpg,4.12,168678,\"nonfiction, fiction\",\"Heroic young men carry the emotional weight of their lives to war in\nVietnam in a patchwork account of a modern journey into the heart of\ndarkness.\"\r\n513,524,114683,Banksy,Wall and Piece,https://images.gr-assets.com/books/1327904853l/114683.jpg,3.83,149453,\"art, nonfiction\",Monkeys - Cops - Rats - Cows - Art - Street furniture.\r\n514,525,9593911,Lauren Oliver,Pandemonium,https://images.gr-assets.com/books/1310371414l/9593911.jpg,4.07,181656,\"fantasy, ebooks\",PandemoniumLauren Oliver\r\n515,526,17231,Jeff Lindsay,Darkly Dreaming Dexter,https://images.gr-assets.com/books/1334404607l/17231.jpg,3.89,150055,\"fiction, mystery\",\"Hiding a secret life as an assassin while working as a murder analyst for\nthe Miami police, Dexter Morgan is intrigued by the work of a new serial\nkiller whose style mimics his own and who Morgan realizes is inviting him\ninto a deadly competition. Reprint. 15,000 first printing. (A Showtime\nseries, premiering Fall 2006, starring Michael C. Hall, Jennifer Carpenter,\nand others) (Suspense)\"\r\n516,527,110494,Charlaine Harris,Living Dead in Dallas,https://images.gr-assets.com/books/1329501808l/110494.jpg,3.97,190565,\"fantasy, paranormal\",\"When a vampire enlists the aid of cocktail waitress Sookie Stackhouse to\nuse her telepathic talents to find a missing vampire in Dallas, she agrees\nto the deal if the vampires promise to behave and to let the humans go\nunharmed. Original.\"\r\n517,528,34897,Robert Jordan,The Dragon Reborn ,https://images.gr-assets.com/books/1480096580l/34897.jpg,4.23,153809,\"fantasy, fiction\",The Dragon Reborn Robert Jordan\r\n518,529,7733,\"Jonathan Swift, Robert DeMaria Jr.\",Gulliver’s Travels,https://images.gr-assets.com/books/1427829692l/7733.jpg,3.55,168727,\"classics, fiction\",\"The unusual voyages of Englishman Lemuel Gulliver carry him to such strange\nlocales as Lilliput, where the inhabitants are six inches tall;\nBrobdingnag, a land of giants; an island of sorcerers; and a nation ruled\nby horses.\"\r\n519,530,12957,\"William Shakespeare, Barbara A. Mowat, Paul Werstine, Gail Kern Paster, Robert          Jackson\",Much Ado About Nothing,https://images.gr-assets.com/books/1327885569l/12957.jpg,4.06,175616,\"classics, fiction\",\"Much Ado About NothingWilliam Shakespeare, Barbara A. Mowat, Paul Werstine, Gail Kern Paster, Robert          Jackson\"\r\n520,531,52357,\"Unknown, Seamus Heaney\",Beowulf,https://images.gr-assets.com/books/1327878125l/52357.jpg,3.42,155903,\"classics, poetry\",\"Presents a new translation of the Anglo-Saxon epic chronicling the heroic\nadventures of Beowulf, the Scandinavian warrior who saves his people from\nthe ravages of the monster Grendel and Grendel's mother.\"\r\n521,532,59980,\"Frank Miller, David Mazzucchelli, Richmond Lewis, Dennis O'Neil\",Batman: Year One,https://images.gr-assets.com/books/1327940389l/59980.jpg,4.23,145267,\"fiction, crime\",\"Chronicles the events that led to Bruce Wayne's becoming Batman and his\nfirst year fighting crime.\"\r\n522,533,24817626,Harper Lee,Go Set a Watchman,https://images.gr-assets.com/books/1451442088l/24817626.jpg,3.31,138669,\"fiction, classics\",Go Set a WatchmanHarper Lee\r\n523,534,1044355,David Sedaris,When You Are Engulfed in Flames,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547552824l/1044355._SX318_.jpg,4.04,150898,\"memoir, nonfiction\",\"\"\"David Sedaris's ability to transform the mortification of everyday life\ninto wildly entertaining art,\"\" (The Christian Science Monitor) is elevated\nto wilder and more entertaining heights than ever in this remarkable new\nbook. Trying to make coffee when the water is shut off, David considers\nusing the water in a vase of flowers and his chain of associations takes\nhim from the French countryside to a hilariously uncomfortable memory of\nbuying drugs in a mobile home in rural North Carolina. In essay after\nessay, Sedaris proceeds from bizarre conundrums of daily life-having a\nlozenge fall from your mouth into the lap of a fellow passenger on a plane\nor armoring the windows with LP covers to protect the house from neurotic\nsongbirds-to the most deeply resonant human truths. Culminating in a\nbrilliant account of his venture to Tokyo in order to quit smoking, David\nSedaris's sixth essay collection is a new masterpiece of comic writing from\n\"\"a writer worth treasuring\"\" (Seattle Times). Praise for When You Are\nEngulfed in Flames: \"\"Older, wiser, smarter and meaner, Sedaris...defies the\nodds once again by delivering an intelligent take on the banalities of an\nabsurd life.\"\" --Kirkus Reviews This latest collection proves that not only\ndoes Sedaris still have it, but he's also getting better....Sedaris's best\nstuff will still--after all this time--move, surprise, and entertain.\"\"\n--Booklist Table of Contents: It's Catching Keeping Up The Understudy This\nOld House Buddy, Can You Spare a Tie? Road Trips What I Learned That's\nAmore The Monster Mash In the Waiting Room Solutions to Saturday's Puzzle\nAdult Figures Charging Toward a Concrete Toadstool Memento Mori All the\nBeauty You Will Ever Need Town and Country Aerial The Man in the Hut Of\nMice and Men April in Paris Crybaby Old Faithful The Smoking Section\"\r\n524,535,8490112,Laini Taylor,Daughter of Smoke & Bone,https://images.gr-assets.com/books/1461353773l/8490112.jpg,4.04,198283,\"fantasy, romance\",Daughter of Smoke & BoneLaini Taylor\r\n525,536,17878931,Victoria Aveyard,Red Queen,https://images.gr-assets.com/books/1411472322l/17878931.jpg,4.08,83354,\"fantasy, fiction\",\"The #1 New York Times bestselling series! Red Queen, by #1 New York Times\nbestselling author Victoria Aveyard, is a sweeping tale of power, intrigue,\nand betrayal, perfect for fans of George R.R. Martin’s Game of Thrones\nseries. Mare Barrow's world is divided by blood—those with common, Red\nblood serve the Silver-blooded elite, who are gifted with superhuman\nabilities. Mare is a Red, scraping by as a thief in a poor, rural village,\nuntil a twist of fate throws her in front of the Silver court. Before the\nking, princes, and all the nobles, she discovers she has an ability of her\nown. To cover up this impossibility, the king forces her to play the role\nof a lost Silver princess and betroths her to one of his own sons. As Mare\nis drawn further into the Silver world, she risks everything and uses her\nnew position to help the Scarlet Guard—a growing Red rebellion—even as her\nheart tugs her in an impossible direction. One wrong move can lead to her\ndeath, but in the dangerous game she plays, the only certainty is betrayal.\nAnd don’t miss Broken Throne: A Red Queen Collection, featuring three\nbrand-new novellas and other exclusive content, coming in April!\"\r\n526,537,12609433,Charles Duhigg,The Power of Habit,https://images.gr-assets.com/books/1366758683l/12609433.jpg,4.03,155977,\"science, psychology\",The Power of HabitCharles Duhigg\r\n527,538,386187,John Berendt,Midnight in the Garden of Good and Evil,https://images.gr-assets.com/books/1427166915l/386187.jpg,3.9,167997,\"nonfiction, fiction\",\"In charming, beautiful, and wealthy old-South Savannah, Georgia, the local\nbad boy is shot dead inside of the opulent mansion of a gay antiques\ndealer, and a gripping trial follows. Reprint.\"\r\n528,539,15717943,Colleen Hoover,Hopeless,https://images.gr-assets.com/books/1353489892l/15717943.jpg,4.34,189938,\"romance, contemporary\",HopelessColleen Hoover\r\n529,540,3008,\"Frances Hodgson Burnett, Nancy Bond\",A Little Princess,https://images.gr-assets.com/books/1327868556l/3008.jpg,4.2,199872,\"classics, fiction\",\"A Little PrincessFrances Hodgson Burnett, Nancy Bond\"\r\n530,541,51737,Sarah Dessen,The Truth About Forever,https://images.gr-assets.com/books/1362767907l/51737.jpg,4.13,179415,\"romance, contemporary\",\"The summer following her father's death, Macy plans to work at the library\nand wait for her brainy boyfriend to return from camp, but instead she goes\nto work at a catering business where she makes new friends and finally\nfaces her grief.\"\r\n531,542,84119,C.S. Lewis,The horse and his boy,https://images.gr-assets.com/books/1388210968l/84119.jpg,3.9,189671,\"fantasy, classics\",An orphaned boy and a kidnapped horse gallop for Narnia...and freedom.\r\n532,543,6527740,Richelle Mead,Last Sacrifice ,https://images.gr-assets.com/books/1319850978l/6527740.jpg,4.42,206792,\"paranormal, fantasy\",\"Framed for the murder of Queen Tatiana, bodyguard Rose faces the trial of\nher life as best friend Lissa, a vampire princess, becomes first in line\nfor the royal throne.\"\r\n533,544,77767,\"Laura Ingalls Wilder, Garth Williams\",Little House on the Prairie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559209202l/77767._SX318_.jpg,4.18,195424,\"classics, fiction\",\"The adventures continue for Laura Ingalls and her family as they leave\ntheir little house in the Big Woods of Wisconsin and set out for Kansas.\nThey travel for many days in their covered wagon until they find the best\nspot to build their little house on the prairie. Soon they are planting and\nplowing, hunting wild ducks and turkeys, and gathering grass for their\ncows. Sometimes pioneer life is hard, but Laura and her folks are always\nbusy and happy in their new little house.\"\r\n534,545,144974,\"Margery Williams Bianco, William   Nicholson\",The Velveteen Rabbit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347748913l/144974.jpg,4.29,173469,\"classics, fiction\",\"2017 Reprint of 1922 Edition with All Original Illustrations in Color. Full\nfacsimile of the original edition, not reproduced with Optical Recognition\nsoftware. The Velveteen Rabbit (or How Toys Become Real) is a children's\nbook written by Margery Williams (also known as Margery Williams Bianco)\nand illustrated by William Nicholson. It chronicles the story of a stuffed\nrabbit and his desire to become real, through the love of his owner. The\nbook was first published in 1922 and has been republished many times since.\nThe Velveteen Rabbit was Williams' first children's book. It has been\nawarded the IRA/CBC Children's Choice award. Based on a 2007 online poll,\nthe National Education Association named the book one of its \"\"Teachers' Top\n100 Books for Children.\"\r\n535,546,629,Robert M. Pirsig,Zen and the Art of Motorcycle Maintenance,https://images.gr-assets.com/books/1410136019l/629.jpg,3.76,139411,\"philosophy, fiction\",\"One of the most important and influential books written in the past half-\ncentury, Robert M. Pirsig's Zen and the Art of Motorcycle Maintenance is a\npowerful, moving, and penetrating examination of how we live . . . and a\nbreathtaking meditation on how to live better. Here is the book that\ntransformed a generation: an unforgettable narration of a summer motorcycle\ntrip across America's Northwest, undertaken by a father and his young son.\nA story of love and fear -- of growth, discovery, and acceptance -- that\nbecomes a profound personal and philosophical odyssey into life's\nfundamental questions, this uniquely exhilarating modern classic is both\ntouching and transcendent, resonant with the myriad confusions of existence\n. . . and the small, essential triumphs that propel us forward.\"\r\n536,547,8909,\"H.G. Wells, Arthur C. Clarke\",The War of the Worlds,https://images.gr-assets.com/books/1320391644l/8909.jpg,3.8,159752,\"classics, fiction\",\"An English astronomer, in company with an artilleryman, a country curate,\nand others, struggle to survive the invasion of Earth by Martians in 1894.\"\r\n537,548,162085,Sara Shepard,Pretty Little Liars,https://images.gr-assets.com/books/1377830522l/162085.jpg,3.9,156328,\"mystery, contemporary\",\"Among the mega mansions and perfectly manicured hedges of Rosewood,\nPennsylvania, everyone has something to hide—especially four very pretty\nlittle liars. High school juniors Spencer, Hanna, Aria, and Emily have been\nkeeping secrets ever since their best friend, Alison DiLaurentis,\ndisappeared three years ago. But when the girls begin receiving threatening\nnotes from someone named “A,” their secrets—the big ones, the little ones,\neven the long-buried ones—no longer seem so safe. Unravel the Pretty Little\nLiars’ wildest mysteries in this special box set. But remember, nothing is\nas it seems in Rosewood . . . Pretty Little Liars Box Set includes books 1\nto 4\"\r\n538,549,231850,Don Freeman,Corduroy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347517273l/231850.jpg,4.28,160860,\"fiction, classics\",CorduroyDon Freeman\r\n539,550,3109,Michael Pollan,The Omnivore's Dilemma,https://images.gr-assets.com/books/1393804353l/3109.jpg,4.17,133271,\"nonfiction, science\",\"An ecological and anthropological study of eating offers insight into food\nconsumption in the twenty-first century, explaining how an abundance of\nunlimited food varieties reveals the responsibilities of everyday consumers\nto protect their health and the environment. By the author of The Botany of\nDesire. 125,000 first printing.\"\r\n540,551,15790842,Kate Atkinson,Life After Life,https://images.gr-assets.com/books/1358173808l/15790842.jpg,3.74,138454,\"fiction, contemporary\",Life After LifeKate Atkinson\r\n541,552,3462,Nicholas Sparks,The Rescue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385055753l/3462.jpg,4.1,142092,\"romance, fiction\",\"In this heartfelt Southern love story from the #1 New York Times\nbestselling author of The Notebook, a daring fireman rescues a single mom\n-- and learns that falling in love is the greatest risk of all. When\nconfronted by raging fires or deadly accidents, volunteer fireman Taylor\nMcAden feels compelled to take terrifying risks to save lives. But there is\none leap of faith Taylor can't bring himself to make: he can't fall in\nlove. For all his adult years, Taylor has sought out women who need to be\nrescued, women he leaves as soon as their crisis is over and the\nrelationship starts to become truly intimate. When a raging storm hits his\nsmall Southern town, single mother Denise Holton's car skids off the road.\nThe young mom is with her four-year-old son Kyle, a boy with severe\nlearning disabilities and for whom she has sacrificed everything. Taylor\nMcAden finds her unconscious and bleeding, but does not find Kyle. When\nDenise wakes, the chilling truth becomes clear to both of them. Kyle is\ngone. During the search for Kyle, a connection between Taylor and Denise\ntakes root. But Taylor doesn't know that this rescue will be different from\nall the others.\"\r\n542,553,107291,Stephen King,Needful Things,https://images.gr-assets.com/books/1315767817l/107291.jpg,3.87,153821,\"fiction, horror\",\"Now available for the first time in a mass-market premium paperback\nedition—master storyteller Stephen King presents the classic #1 New York\nTimes bestseller about a mysterious store than can sell you whatever you\ndesire—but not without exacting a terrible price in return. “There are two\nprices for this. Half…and half. One half is cash. The other is a deed. Do\nyou understand?” The town of Castle Rock, Maine has seen its fair share of\noddities over the years, but nothing is a peculiar as the little curio shop\nthat’s just opened for business. Its mysterious proprietor, Leland Gaunt,\nseems to have something for everyone out on display at Needful\nThings…interesting items that run the gamut from worthless to priceless.\nNothing has a price tag in this place, but everything is certainly for\nsale. The heart’s desire for any resident of Castle Rock can easily be\nfound among the curiosities…in exchange for a little money and—at the\nspecific request of Leland Gaunt—a whole lot of menace against their fellow\nneighbors. Everyone in town seems willing to make a deal at Needful Things,\nbut the devil is in the details. And no one takes heed of the little sign\nhanding on the wall: Caveat emptor. In other words, let the buyer beware…\"\r\n543,554,10987,Diana Gabaldon,Voyager,https://images.gr-assets.com/books/1483278195l/10987.jpg,4.38,157395,\"romance, fantasy\",\"Time-travelling Claire Randall returns to her own time, pregnant and weary,\nand resumes her life, but her memories of her eighteenth-century Scottish\nlover Jamie Fraser will not die, leading her to a desperate decision to\nreturn to him\"\r\n544,556,10603,Stephen King,Cujo,https://images.gr-assets.com/books/1394208144l/10603.jpg,3.65,158215,\"horror, fiction\",\"\"\"A family's two-hundred-pound Saint Bernard is transformed by rabies and\nthe insidious guidance of demonic forces into a terrifying monster\"\" --\"\r\n545,557,10956,Jeffrey Eugenides,The Virgin Suicides,https://images.gr-assets.com/books/1319032910l/10956.jpg,3.83,159249,\"fiction, classics\",\"First published in 1993, The Virgin Suicides announced the arrival of a\nmajor new American novelist. In a quiet suburb of Detroit, the five Lisbon\nsisters--beautiful, eccentric, and obsessively watched by the neighborhood\nboys--commit suicide one by one over the course of a single year. As the\nboys observe them from afar, transfixed, they piece together the mystery of\nthe family's fatal melancholy, in this hypnotic and unforgettable novel of\nadolescent love, disquiet, and death. Jeffrey Eugenides evokes the emotions\nof youth with haunting sensitivity and dark humor and creates a coming-of-\nage story unlike any of our time. Adapted into a critically acclaimed film\nby Sofia Coppola, The Virgin Suicides is a modern classic, a lyrical and\ntimeless tale of sex and suicide that transforms and mythologizes suburban\nmiddle-American life.\"\r\n546,558,140077,Charlaine Harris,Dead to the World,https://images.gr-assets.com/books/1468561630l/140077.jpg,4.13,199572,\"fantasy, paranormal\",Dead to the WorldCharlaine Harris\r\n547,559,32261,\"Thomas Hardy, Tim Dolin, Margaret R. Higonnet\",Tess of the d'Urbervilles: A Pure Woman Faithfully Presented,https://images.gr-assets.com/books/1497218117l/32261.jpg,3.77,171599,\"classics, fiction\",\"Tess of the d'Urbervilles: A Pure Woman Faithfully PresentedThomas Hardy, Tim Dolin, Margaret R. Higonnet\"\r\n548,560,2175,\"Gustave Flaubert, Margaret Mauldon, Malcolm Bowie, Mark Overstall\",Madame Bovary,https://images.gr-assets.com/books/1335676143l/2175.jpg,3.64,158877,\"classics, fiction\",\"Emma Bovary yearns for a life of luxury and passion of the kind she reads\nabout in romantic novels. But life with her country doctor husband in the\nprovinces is unutterably boring, and she embarks on love affairs to realize\nher fantasies. This new translation by Margaret Mauldon perfectly captures\nFlaubert's distinctive style.\"\r\n549,561,378,\"Norton Juster, Jules Feiffer\",The Phantom Tollbooth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1558858485l/378._SX318_.jpg,4.22,178432,\"fantasy, fiction\",\"A journey through a land where Milo learns the importance of words and\nnumbers provides a cure for his boredom.\"\r\n550,562,7235533,Brandon Sanderson,The Way of Kings,https://images.gr-assets.com/books/1388184640l/7235533.jpg,4.64,144822,\"fantasy, fiction\",\"A new epic series by the best-selling writer of Robert Jordan's final Wheel\nof Time® novels introduces the world of Roshar through the experiences of a\nwar-weary royal compelled by visions, a highborn youth condemned to\nmilitary slavery and a woman who would save her impoverished house.\nReprint. A best-selling novel.\"\r\n551,563,140082,Charlaine Harris,Club Dead,https://images.gr-assets.com/books/1329501590l/140082.jpg,4.03,181323,\"fantasy, paranormal\",\"When her boyfriend Bill, a vampire who has been rather distracted of late,\ndisappears, Sookie Stackhouse journeys to Jackson, Mississippi, to find her\nbeloved, who has gotten himself caught in a dangerous web of murder and\nbetrayal at Club Dead, an elite underground society. Original.\"\r\n552,564,248704,Ned Vizzini,It's Kind of a Funny Story,https://images.gr-assets.com/books/1420629730l/248704.jpg,4.14,161001,\"contemporary, fiction\",\"A humorous account of a New York City teenager's battle with depression and\nhis time spent in a psychiatric hospital.\"\r\n553,566,25041504,Jojo Moyes,After You,https://images.gr-assets.com/books/1429029729l/25041504.jpg,3.7,99342,\"fiction, contemporary\",\"\"\"After the transformative six months she spent with Will Traynor, Louisa\nClark is struggling without him. And when an extraordinary accident forces\nLou to return home to her family, she can't help but feel she's right back\nwhere she started. Her body heals, but Lou knows that she needs to be kick-\nstarted back to life. Reluctantly, she joins the Moving On support group\nand meets the one man who might be able to understand her. Then a figure\nfrom Will's past appears and hijacks all her plans, propelling Lou into a\nvery different future ...\"\"--Page [4] cover.\"\r\n554,567,10032672,Vanessa Diffenbaugh,The Language of Flowers,https://images.gr-assets.com/books/1333577674l/10032672.jpg,4.07,140076,\"fiction, contemporary\",\"Discovering the symbolic meanings of flowers while languishing in the\nfoster-care system, eighteen-year-old Victoria is hired by a florist when\nher talent for helping others is discovered, a situation that leads her to\nconfront a painful secret from her past.\"\r\n555,568,59960,\"Frank Miller, Klaus Janson, Lynn Varley\",Batman: The Dark Knight Returns,https://images.gr-assets.com/books/1327892039l/59960.jpg,4.25,135979,\"fiction, fantasy\",\"Batman: The Dark Knight ReturnsFrank Miller, Klaus Janson, Lynn Varley\"\r\n556,569,13152,James Patterson,The Angel Experiment,https://images.gr-assets.com/books/1339277875l/13152.jpg,4.08,172302,\"fantasy, fiction\",\"After the mutant Erasers abduct the youngest member of their group, the\n\"\"bird kids,\"\" who are the result of genetic experimentation, take off in\npursuit and find themselves struggling to understand their own origins and\npurpose.\"\r\n557,570,285092,Nick Hornby,High Fidelity,https://images.gr-assets.com/books/1327928082l/285092.jpg,3.94,134849,\"fiction, romance\",\"Follows the love affairs and belated growing up of a \"\"Generation X\"\" pop\nmusic fanatic and record store owner\"\r\n558,571,15925,Nicholas Sparks,The Guardian,https://images.gr-assets.com/books/1388195339l/15925.jpg,4.14,136427,\"romance, fiction\",\"The riveting New York Times bestselling tale of romance and suspense with\nan \"\"edge-of-your-seat conclusion\"\" (Booklist). Julie Barenson's young\nhusband left her two unexpected gifts before he died - a Great Dane puppy\nnamed Singer and the promise that he would always be watching over her. Now\nfour years have passed. Still living in the small town of Swansboro, North\nCarolina, twenty-nine-year-old Julie is emotionally ready to make a\ncommitment to someone again. But who? Should it be Richard Franklin, the\nhandsome, sophisticated engineer who treats her like a queen? Or Mike\nHarris, the down-to-earth nice guy who was her husband's best friend?\nChoosing one of them should bring her more happiness than she's had in\nyears. Instead, Julie is soon fighting for her life in a nightmare spawned\nby a chilling deception and jealousy so poisonous that it has become a\nmurderous desire...\"\r\n559,572,46756,Margaret Atwood,Oryx and Crake,https://images.gr-assets.com/books/1494109986l/46756.jpg,4,151500,\"fiction, fantasy\",\"A novel of the future explores a world that has been devastated by\necological and scientific disasters.\"\r\n560,573,1274,John Gray,\"Men Are from Mars, Women Are from Venus Book of Days: 365 Inspirations to Enrich Your Relationships\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441636319l/1274._SY475_.jpg,3.52,113915,\"psychology, nonfiction\",\"There's no doubt about it; the relationship between men and women is\nextremely complex. We often forget just how different the sexes are, and\nbecome frustrated and confused by a loved one's behaviour. In this volume\nJohn Gray's expert relationship advice is distilled into powerful, daily\ninspirations that lovingly and insightfully remind us of the contrasts\nbetween Mars and Venus, allowing us to resolve conflicts in our\nrelationships. It includes comforting and helpful advise on: * giving and\nreceiving emotional support * discovering and awakening your hidden\nqualities * keeping passion alive * reacting to, and coping with, stress *\nmaintaining your zest for life Whether you need thoughtful reminders\nyourself or know a friend or loved one who will benefit from these\nbeautiful reflections, Men are from Mars, Women are from Venus Book of Days\nis a must.\"\r\n561,574,33313,Anthony Bourdain,Kitchen Confidential: Adventures in the Culinary Underbelly,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433739086l/33313._SY475_.jpg,4,134177,\"memoir, nonfiction\",\"A New York City chef who is also a novelist recounts his experiences in the\nrestaurant business, and exposes abuses of power, sexual promiscuity, drug\nuse, and other secrets of life behind kitchen doors.\"\r\n562,575,7669,Michael Crichton,Timeline,https://images.gr-assets.com/books/1405420745l/7669.jpg,3.83,148563,\"fiction, thriller\",\"In this thriller from the author of Jurassic Park, Sphere, and Congo, a\ngroup of young scientists travel back in time to medieval France on a\ndaring rescue mission that becomes a struggle to stay alive. #1 NEW YORK\nTIMES BESTSELLER “Compulsive reading . . . brilliantly imagined.”—Los\nAngeles Times In an Arizona desert, a man wanders in a daze, speaking words\nthat make no sense. Within twenty-four hours he is dead, his body swiftly\ncremated by his only known associates. Halfway around the world,\narchaeologists make a shocking discovery at a medieval site. Suddenly they\nare swept off to the headquarters of a secretive multinational corporation\nthat has developed an astounding technology. Now this group is about to get\na chance not to study the past but to enter it. And with history opened up\nto the present, the dead awakened to the living, these men and women will\nsoon find themselves fighting for their very survival—six hundred years\nago. “Exciting . . . classic adventure . . . [a] swashbuckling novel . . .\nCrichton delivers.”—USA Today “More screams per page . . . than Jurassic\nPark and The Lost World combined . . . The pace will leave many\nbreathlessly grasping for oxygen masks.”—The San Diego Union-Tribune “One\nof his best . . . [a] nonstop roller coaster of a novel.”—The Philadelphia\nInquirer\"\r\n563,576,19380,Voltaire,Candide,https://images.gr-assets.com/books/1345060082l/19380.jpg,3.76,151471,\"fiction, philosophy\",CandideVoltaire\r\n564,577,84981,Natalie Babbitt,Tuck Everlasting,https://images.gr-assets.com/books/1445184695l/84981.jpg,3.85,174280,\"fantasy, classics\",\"Blessed with-or doomed to-eternal life after drinking from a magic spring,\nthe Tuck family wanders about trying to live as inconspicuously and\ncomfortably as they can. When ten-year-old Winnie Foster stumbles on their\nsecret, the Tucks take her home and explain why living forever at one age\nis less of a blessing than it might seem. Complications arise when Winnie\nis followed by a stranger who wants to market the spring water for a\nfortune. A brand-new introduction from Gregory Maguire, the author of\nWicked, and additional bonus materials make this special edition of Natalie\nBabbitt's Tuck Everlasting a must-have for lovers of the book and a great\nway to introduce a new generation to a classic. This title has Common Core\nconnections. Tuck Everlasting, the musical based on Natalie Babbitt's\ntimeless bestselling novel, will play Broadway's Broadhurst Theatre this\nspring with opening night set for Sunday, April 17, 2016.\"\r\n565,578,10629,\"Stephen King, Marie Milpois\",Christine,https://images.gr-assets.com/books/1327270815l/10629.jpg,3.72,151160,\"horror, thriller\",\"ChristineStephen King, Marie Milpois\"\r\n566,579,197084,P.D. Eastman,Are You My Mother?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389098758l/197084.jpg,4.16,174204,\"fiction, classics\",\"Never having seen his mother, a baby bird makes humorous mistakes trying to\nfind her. On board pages.\"\r\n567,580,222078,E.H. Gombrich,The Story of Art,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389274650l/222078.jpg,3.83,164708,\"art, history\",\"\"\" The Story of Art, one of the most famous and popular books on art ever\nwritten, has been a world bestseller for over four decades. Attracted by\nthe simplicity and clarity of his writing, readers of all ages and\nbackgrounds have found in Professor Gombrich a true master, and one who\ncombines knowledge and wisdom with a unique gift for communicating his deep\nlove of the subject. For the first time in many years the book has been\ncompletely redesigned. The illustrations, now in color throughout, have all\nbeen improved and reoriginated, and include six fold‐outs. The text has\nbeen revised and updated where appropriate, and a number of significant new\nartists have been incorporated. The bibliographies have been expanded and\nupdated, and the maps and charts redrawn. The Story of Art has always been\nadmired for two key qualities: it is a pleasure to read and a pleasure to\nhandle. In these respects the new edition is true to its much‐loved\npredecessors: the text runs as smoothly as ever and the improved\nillustrations are always on the page where the reader needs them. In its\nnew edition, this classic work continues its triumphant progress tirelessly\nfor yet another generation, to remain the title of first choice for any\nnewcomer to art or the connoisseur. \"\"\"\r\n568,581,13206760,Marissa Meyer,Scarlet,https://images.gr-assets.com/books/1470056982l/13206760.jpg,4.3,193766,\"fantasy, romance\",\"The second book in the #1 New York Times- and USA Today- Bestselling Lunar\nChronicles series by Marissa Meyer! Our cyborg heroine teams up with two\nnew characters, Scarlet and Wolf, to defend Earth against a wicked space\nqueen. \"\"An interesting mash up of fairy tales and sciencefiction . . . a\ncross between Cinderella, Terminator, and Star Wars.\"\"—Entertainment Weekly\non the Lunar Chronicles \"\"Prince Charming among the cyborgs.\"\" —The Wall\nStreet Journal on the Lunar Chronicles Cinder is back and trying to break\nout of prison—even though she'll be the Commonwealth's most wanted fugitive\nif she does—in this second installment from Marissa Meyer. Halfway around\nthe world, Scarlet Benoit's grandmother is missing. It turns out there are\nmany things Scarlet doesn't know about her grandmother, or the grave danger\nshe has lived in her whole life. When Scarlet encounters Wolf, a street\nfighter who may have information as to her grandmother's whereabouts, she\nis loath to trust this stranger, but is inexplicably drawn to him, and he\nto her. As Scarlet and Wolf unravel one mystery, they encounter another\nwhen they meet Cinder. Now, all of them must stay one step ahead of the\nvicious Lunar Queen Levana. The adventure continues in this fresh fairytale\nretelling that combines elements of Cinderella and Little Red Riding Hood.\nAn NPR Best Book of 2013 Don't miss these other books from #1 New York\nTimes- and USA Today-Bestselling author Marissa Meyer: The Lunar\nChronicles: Cinder Scarlet Cress Winter Stars Above Fairest The Lunar\nChronicles Coloring Book Wires and Nerve: Vol. 1 Wires and Nerve: Vol. 2\nRenegades: Renegades: Book One Heartless Praise for the Lunar Chronicles:\n#1 New York Times-Bestselling Series USA Today Bestseller Publishers Weekly\nBestseller \"\"Terrific.\"\" —Los Angeles Times \"\"Marissa Meyer rocks the\nfractured fairytalegenre.\"\" —The Seattle Times \"\"Epic awesome.\"\" —Bustle \"\"A\nbinge-reading treat.\"\" —MTV \"\"Takes the classic to a whole new level.\"\" —NPR\n“A great choice for all ages, with strong appeal for both girls and boys,\nthese novels will be read and enjoyed—repeatedly.” —VOYA, starred review on\nScarlet “It's another Marissa Meyer roller coaster ride, part science\nfiction/fantasy, part political machination with a hint of romance.”\n—Booklist, starred review on Scarlet “Returning fans of Meyer's Cinder will\ngladly sink their teeth into this ambitious, wholly satisfying sequel.”\n—Publishers Weekly, starred review on Scarlet “The author has stepped up\nthe intrigue and plot from the first novel, and readers will be eagerly\nawaiting the next.” —School Library Journal on Scarlet “The sci-fi elements\nare stronger than the fairy-tale allusions this time out, but the story\nremains just as absorbing. . . . Readers will be thrilled to discover that\nthis steampunky fairy-tale/sci-fi mashup promises two more installments.”\n—BCCB on Scarlet “Further development of this futuristic world plus plenty\nof action, surprises, and a fast pace will keep readers invested in their\njourney.” —The Horn Book on Scarlet\"\r\n569,582,69571,Robert T. Kiyosaki,\"Rich Dad , Poor Dad\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211242l/69571.jpg,3.95,153764,\"business, nonfiction\",\"Argues that a good education and a secure job are not guarantees for\nfinancial success, and describes six guidelines for making money work for\nyou.\"\r\n570,583,10637766,Becca Fitzpatrick,Silence ,https://images.gr-assets.com/books/1362408152l/10637766.jpg,4.16,190722,\"paranormal, romance\",\"After having overcome tremendous challenges to save a love that transcends\nthe boundary between heaven and earth, Nora and Patch must face an\nadversary with the power to destroy all that they have worked for.\"\r\n571,584,6101718,Lev Grossman,The Magicians,https://images.gr-assets.com/books/1313772941l/6101718.jpg,3.47,147908,\"fantasy, fiction\",\"Haboring secret preoccupations with a magical land he read about in a\nchildhood fantasy series, Quentin Coldwater is unexpectedly admitted into\nan exclusive college of magic and rigorously educated in modern sorcery.\"\r\n572,585,13615,\"Tsugumi Ohba, Takeshi Obata\",デスノート #1 (Desu Nōto) Taikutsu (退屈),https://images.gr-assets.com/books/1419952134l/13615.jpg,4.42,139501,\"horror, fiction\",\"\"\"First published in Japan in 2003 by Shueisha, Inc., Tokyo\"\"--P. facing t.p.\"\r\n573,586,3682,Libba Bray,A Great and Terrible Beauty,https://images.gr-assets.com/books/1284558475l/3682.jpg,3.79,173613,\"fantasy, paranormal\",\"After the suspicious death of her mother in 1895, sixteen-year-old Gemma\nDoyle returns to England, after many years in India, to attend a finishing\nschool where she becomes aware of her magical powers and ability to see\ninto the spirit world. Reprint.\"\r\n574,587,256566,Jonathan Safran Foer,Everything Is Illuminated,https://images.gr-assets.com/books/1479774440l/256566.jpg,3.9,131492,\"fiction, contemporary\",\"With only a yellowing photograph in hand, a young man -- also named\nJonathan Safran Foer -- sets out to find the woman who may or may not have\nsaved his grandfather from the Nazis. Accompanied by an old man haunted by\nmemories of the war; an amorous dog named Sammy Davis, Junior, Junior; and\nthe unforgettable Alex, a young Ukrainian translator who speaks in a\nsublimely butchered English, Jonathan is led on a quixotic journey over a\ndevastated landscape and into an unexpected past.\"\r\n575,588,15769,Robert Ludlum,The Bourne Supremacy,https://images.gr-assets.com/books/1335860600l/15769.jpg,4.09,142168,\"fiction, thriller\",\"Super-diplomat Raymond Havilland sets up the kidnapping of Jason Bourne's\nwife, in order to draw Bourne out of retirement and into a Taiwanese plot\nto seize Hong Kong and incite China against the West.\"\r\n576,589,16056408,Tammara Webber,Easy,https://images.gr-assets.com/books/1349370267l/16056408.jpg,4.11,133937,\"romance, contemporary\",\"\"\"When Jacqueline follows her longtime boyfriend to the college of his\nchoice, the last thing she expects is a breakup. After two weeks in shock,\nshe wakes up to her new reality: she's single, attending a state university\ninstead of a music conservatory, ignored by her former circle of friends,\nstalked by her ex's frat brother, and failing a class for the first time in\nher life. Her econ professor gives her an email address for Landon, the\nclass tutor, who shows her that she's still the same intelligent girl she's\nalways been. As Jacqueline becomes interested in more from her tutor than a\nbetter grade, his teasing responses make the feeling seem mutual. There's\njust one problem-- their only interactions are through email. Meanwhile, a\nguy in her econ class proves his worth the first night she meets him.\nNothing like her popular ex or her brainy tutor, Lucas sits on the back\nrow, sketching in a notebook and staring at her. At a downtown club, he\ndisappears after several dances that leave her on fire. When he asks if he\ncan sketch her, alone in her room, she agrees-- hoping for more. Then\nJacqueline discovers a withheld connection between her supportive tutor and\nher seductive classmate, her ex comes back into the picture, and her\nstalker escalates his attention by spreading rumors that they've hooked up.\nSuddenly appearances are everything, and knowing who to trust is anything\nbut easy\"\" -- from author's web site.\"\r\n577,590,58696,\"Charles Dickens, Jeremy Tambling\",David Copperfield,https://images.gr-assets.com/books/1461452762l/58696.jpg,3.96,150512,\"classics, fiction\",\"The classic coming-of-age story presents David Copperfield, who suffers the\nwrath of his stepfather, the abusive Mr. Mudstone, and the betrayal of the\nscheming Uriah Heep, finds a new life with his formidable aunt, Betsey\nTrotwood, and falls deeply in love with child-like Dora, as he struggles to\nescape his impoverished and unhappy childhood. Reprint\"\r\n578,591,693208,\"Sherman Alexie, Ellen Forney\",The Absolutely True Diary of a Part-Time Indian,https://images.gr-assets.com/books/1327908992l/693208.jpg,4.11,160607,\"fiction, contemporary\",\"Budding cartoonist Junior leaves his troubled school on the Spokane Indian\nReservation to attend an all-white farm town school where the only other\nIndian is the school mascot.\"\r\n579,592,117833,\"Mikhail Bulgakov, Katherine Tiernan O'Connor, Diana Burgin, Ellendea Proffer\",Мастер и Маргарита,https://images.gr-assets.com/books/1327867963l/117833.jpg,4.32,131389,\"fiction, classics\",(Book Jacket Status: Jacketed) From the Hardcover edition.\r\n580,593,13642,Ursula K. Le Guin,A Wizard of Earthsea,https://images.gr-assets.com/books/1353424536l/13642.jpg,3.99,155042,\"fiction, classics\",\"A boy grows to manhood while attempting to subdue the evil he unleashed on\nthe world as an apprentice to the Master Wizard.\"\r\n581,594,357664,\"Kate DiCamillo, Chris Sheban\",Because of Winn-Dixie,https://images.gr-assets.com/books/1456871914l/357664.jpg,4,154476,\"fiction, classics\",\"Eleven-year-old Rob Horton, who passes the time in his rural Florida\ncommunity by wood carving, is drawn by his spunky but angry friend Sistine\ninto a plan to free a caged tiger. Reprint.\"\r\n582,595,5148,John Knowles,A Separate Peace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1528860889l/5148._SY475_.jpg,3.56,155901,\"classics, fiction\",\"An American classic and great bestseller for over thirty years, A Separate\nPeace is timeless in its description of adolescence during a period when\nthe entire country was losing its innocence to the second world war. Set at\na boys’ boarding school in New England during the early years of World War\nII, A Separate Peace is a harrowing and luminous parable of the dark side\nof adolescence. Gene is a lonely, introverted intellectual. Phineas is a\nhandsome, taunting, daredevil athlete. What happens between the two friends\none summer, like the war itself, banishes the innocence of these boys and\ntheir world. A bestseller for more than thirty years, A Separate Peace is\nJohn Knowles’s crowning achievement and an undisputed American classic.\"\r\n583,596,5349,John Grisham,The Rainmaker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265477l/5349.jpg,3.91,137412,\"fiction, thriller\",\"The intricacies of the American legal system come alive in a suspenseful\ntale of courtroom drama, corporate greed, intrigue, and danger, by the\nbest-selling author of A Time to Kill and The Pelican Brief. 2,500,000\nfirst printing. $1,000,000 ad/promo.\"\r\n584,597,3836,\"Miguel de Cervantes Saavedra, Roberto González Echevarría, John Rutherford\",Don Quijote de La Mancha,https://images.gr-assets.com/books/1364958765l/3836.jpg,3.85,134931,\"classics, fiction\",\"Retells the adventures of an eccentric country gentleman and his companion\nwho set out as knight and squire of old to right wrongs and punish evil.\"\r\n585,598,45107,Robin Hobb,Assassin's Apprentice,https://images.gr-assets.com/books/1320339497l/45107.jpg,4.14,132777,\"fantasy, fiction\",\"Raised by a stableman and trained in the arts of the assassin, bastard\nnobleman's son Fitz realizes his magical skills and finds a first test of\nmanhood in a band of raiders and a group of murderous nobles. Reprint. K.\"\r\n586,599,8695,Douglas Adams,The Restaurant at the End of the Universe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1521213881l/8695._SY475_.jpg,4.22,153838,\"fiction, fantasy\",The Restaurant at the End of the UniverseDouglas Adams\r\n587,600,7740152,Lauren Kate,Torment,https://images.gr-assets.com/books/1362339749l/7740152.jpg,3.89,174393,\"fantasy, paranormal\",\"Hidden by her cursed angelic boyfriend in a school for Nephilim, Luce\ndiscovers the meaning of the Shadows that have always followed her and\nbegins manipulating them to learn about her past lives.\"\r\n588,601,19321,Beatrix Potter,The Tale of Peter Rabbit,https://images.gr-assets.com/books/1485118382l/19321.jpg,4.17,162373,\"classics, fiction\",\"This original, authorised version has been lovingly recreated\nelectronically for the first time, with reproductions of Potter's\nunmistakeable artwork optimised for use on colour devices such as the iPad.\nThe Tale of Peter Rabbit was first published by Frederick Warne in 1902 and\nendures as Beatrix Potter's most popular and well-loved tale. Re-originated\nin 2002 to mark the centenary of publication bringing it closer to the\noriginal edition, six illustrations were restored, four that were removed\nin 1903 to make room for endpapers and two that have never been used\nbefore, Beatrix having initially prepared more illustrations than could be\naccommodated in the original format.\"\r\n589,602,65641,\"C.S. Lewis, Pauline Baynes\",The Silver Chair,https://images.gr-assets.com/books/1336139237l/65641.jpg,3.95,170453,\"fantasy, fiction\",\"Narnia ... where giants wreak havoc ... where evil weaves a spell ... where\nenchantment rules. Through dangers untold and caverns deep and dark, a\nnoble band of friends are sent to rescue a prince held captive. But their\nmission to Underland brings them face-to-face with an evil more beautiful\nand more deadly than they ever expected.\"\r\n590,603,2767793,Brandon Sanderson,The Hero of Ages,https://images.gr-assets.com/books/1480717763l/2767793.jpg,4.46,143622,\"fantasy, fiction\",\"Emperor Elend Venture, having survived only to become a Mistborn himself,\nstruggles to find clues by the Lord Ruler that will save his world, while a\nguilt-consumed Vin takes on a task of ending the cosmic power of the Ruin\nmystic force.\"\r\n591,604,68783,Susanna Kaysen,\"Girl, Interrupted\",https://images.gr-assets.com/books/1475482930l/68783.jpg,3.9,145161,\"memoir, psychology\",\"The author offers a compelling memoir of her two years as a teenager in a\npsychiatric hospital, sharing vivid portraits of her fellow patients, their\nkeepers, and her experiences during treatment\"\r\n592,605,40173,Chelsea Handler,\"Are You There, Vodka? It's Me, Chelsea\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215803088l/40173.jpg,3.85,127096,\"memoir, nonfiction\",\"Are You There, Vodka? It's Me, ChelseaChelsea Handler\"\r\n593,606,71728,\"Richard Bach, Russell Munson\",Jonathan Livingston Seagull,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432222358l/71728._SX318_.jpg,3.8,133728,\"philosophy, fantasy\",\"Jonathan Livingston Seagull is an icon—a phenomenal bestseller celebrating\nthe strength of the individual and the joy of finding one’s way. This is a\nstory for people who follow their hearts and make their own rules...people\nwho get special pleasure out of doing something well, even if only for\nthemselves...people who know there's more to this living than meets the\neye: they’ll be right there with Jonathan, flying higher and faster than\never they dreamed.\"\r\n594,607,8755785,Cassandra Clare,City of Heavenly Fire,https://images.gr-assets.com/books/1460477794l/8755785.jpg,4.48,177796,\"fantasy, paranormal\",\"\"\"Darkness has descended on the Shadowhunter world. Chaos and destruction\noverwhelm the Nephilim as Clary, Jace, Simon, and their friends band\ntogether to fight the greatest evil they have ever faced-- Clary's own\nbrother. Nothing in this world can defeat Sebastian-- but if they journey\nto the realm of demons, they just might have a chance ...\"\"--Provided by\npublisher.\"\r\n595,608,310259,\"Robert Munsch, Sheila McGraw\",Love You Forever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348832754l/310259.jpg,4.34,159703,\"fiction, classics\",\"As her son grows up from little boy to adult man, a mother secretly rocks\nhim each night as he sleeps.\"\r\n596,609,10567,Stephen King,Cell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432828013l/10567._SY475_.jpg,3.64,144591,\"horror, fiction\",\"\"\"Now a major motion picture\"\"--Front cover.\"\r\n597,610,16158542,Daniel James Brown,The Boys in the Boat: Nine Americans and Their Epic Quest for Gold at the 1936 Berlin Olympics,https://images.gr-assets.com/books/1354683116l/16158542.jpg,4.32,113565,\"history, nonfiction\",\"Traces the story of an American rowing team from the University of\nWashington that defeated elite rivals at Hitler's 1936 Berlin Olympics,\nsharing the experiences of such contributors as their enigmatic coach, a\nvisionary boat builder and a homeless teen rower. By the author of Under a\nFlaming Sky. Reprint.\"\r\n598,611,7332,\"J.R.R. Tolkien, Christopher Tolkien, Ted Nasmith\",The Silmarillion,https://images.gr-assets.com/books/1336502583l/7332.jpg,3.87,134106,\"fiction, classics\",\"Tales and legends chronicling the world's beginnings and the happenings of\nthe First Age set the stage for Tolkien's other classic works and focus on\nthe theft of the Elves' jewels by Morgoth, first dark Lord of Middle-earth.\nReissue.\"\r\n599,612,5094,Stephen King,The Drawing of the Three,https://images.gr-assets.com/books/1370918050l/5094.jpg,4.23,139052,\"fantasy, fiction\",\"The Dark Tower #1: The Gunslinger))The Dark Tower #2: The Drawing of the\nThree))2 Vols.\"\r\n600,613,3407877,Kate Morton,The Forgotten Garden,https://images.gr-assets.com/books/1455283767l/3407877.jpg,4.12,138377,\"fiction, romance\",\"Abandoned on a 1913 voyage to Australia, Nell is raised by a dock master\nand his wife who do not tell her until she grows up that she is not their\nchild, a situation that causes her to return to England and eventually hand\ndown her quest for answers to her granddaughter. Reprint.\"\r\n601,614,17690,\"Franz Kafka, Edwin Muir, Willa Muir, Max Brod\",Der Prozeß,https://images.gr-assets.com/books/1320399438l/17690.jpg,3.98,131856,\"classics, fiction\",\"The story of the indictment, trial and reckoning of Joseph K.\"\r\n602,615,22205,Sarah Dessen,This Lullaby,https://images.gr-assets.com/books/1397779294l/22205.jpg,4.03,151829,\"romance, contemporary\",\"Raised by a mother who has had five husbands, eighteen-year-old Remy\nbelieves in short-term, no-commitment relationships until she meets Dexter,\na rock band musician.\"\r\n603,616,14864,Jodi Picoult,Plain Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389750843l/14864.jpg,3.97,128406,\"fiction, mystery\",\"The discovery of a dead baby under a pile of old blankets in Aaron Fisher's\nbarn sets off a scandal in Amish country and an investigation that could\nimplicate Fisher's eighteen-year-old daughter.\"\r\n604,617,6314763,Piper Kerman,Orange Is the New Black: My Year in a Women's Prison,https://images.gr-assets.com/books/1320520714l/6314763.jpg,3.7,127186,\"memoir, nonfiction\",Orange Is the New Black: My Year in a Women's PrisonPiper Kerman\r\n605,618,8921,\"Arthur Conan Doyle, Anne Perry\",The Hound of the Baskervilles,https://images.gr-assets.com/books/1355929358l/8921.jpg,4.09,154517,\"classics, mystery\",\"Sherlock Holmes and Dr. Watson face a mystery on the moors in this classic\ncaper from Sir Arthur Conan Doyle. The country doctor had come to 221B\nBaker Street, the famous lodgings of Sherlock Holmes, with an eerie\ntale—the legend of the Hound of the Baskervilles, the devil-beast that\nhaunted the lonely moors around the Baskervilles’ ancestral home. The tale\nwarned the descendants of that ancient family never to venture out on the\nmoor. But Sir Charles Baskerville was now dead—and the footprints of a\ngiant hound have been found near his body. Would the new heir of the\nBaskervilles meet the same dreadful fate? Sherlock Holmes and his faithful\nfriend, Dr. Watson, are faced with their most terrifying case in this\nwonderful classic of masterful detection and bone-chilling suspense.\nIncludes an Afterword by Anne Perry\"\r\n606,619,11468377,Daniel Kahneman,\"Thinking, Fast and Slow\",https://images.gr-assets.com/books/1317793965l/11468377.jpg,4.08,136950,\"psychology, science\",\"Thinking, Fast and SlowDaniel Kahneman\"\r\n607,620,402045,Marion Zimmer Bradley,The Mists of Avalon,https://images.gr-assets.com/books/1388857089l/402045.jpg,4.12,157736,\"fantasy, fiction\",\"Retells the legend of Arthur as perceived by Viviane, the Lady of the Lake\nand high priestess of Avalon, Arthur's mother Igraine, his Christian wife\nGuinevere, and the sorceress Morgaine\"\r\n608,621,37732,Judy Blume,\"Are You There God? It's Me, Margaret\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388356524l/37732.jpg,3.89,151789,\"fiction, classics\",\"Faced with the difficulties of growing up and choosing a religion, eleven-\ngoing on twelve-year-old Margaret talks over her problems with her own\nprivate God.\"\r\n609,622,15926,Nicholas Sparks,Nights in Rodanthe,https://images.gr-assets.com/books/1328145638l/15926.jpg,3.82,129807,\"romance, fiction\",\"After her husband leaves her for a younger woman, forty-five-year-old\nAdrienne Willis reconsiders her entire life, until a trip to Rodanthe in\nNorth Carolina's outer banks leads to an encounter with successful surgeon\nPaul Flanner.\"\r\n610,623,18775247,Stephen King,Mr. Mercedes,https://images.gr-assets.com/books/1468705326l/18775247.jpg,3.92,125847,\"fiction, thriller\",Mr. MercedesStephen King\r\n611,624,140075,Charlaine Harris,All Together Dead,https://images.gr-assets.com/books/1417964062l/140075.jpg,4.05,162689,\"fantasy, paranormal\",\"Betrayed by her longtime vampire lover, cocktail waitress Sookie Stackhouse\nhas her hands full dealing with every kind of undead and paranormal\ncreature, as well as the new man in her life, the shapeshifter Quinn, and\nthe upcoming vampire summit. Reprint.\"\r\n612,625,5166,Chris Bohjalian,Midwives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442593918l/5166._SY475_.jpg,3.97,133155,\"fiction, contemporary\",\"In the winter of 1981, trapped by unpassable roads, midwife Sibyl Danforth\nmakes a life-altering decision when she performs an emergency cesarean\nsection on a woman she fears has died of a stroke\"\r\n613,626,420282,Chris Van Allsburg,The Polar Express,https://images.gr-assets.com/books/1356707942l/420282.jpg,4.29,168001,\"fiction, fantasy\",\"A magical train ride on Christmas Eve takes a boy to the North Pole to\nreceive a special gift from Santa Claus.\"\r\n614,627,125507,\"Jon Scieszka, Lane Smith\",The True Story of the Three Little Pigs,https://images.gr-assets.com/books/1327884731l/125507.jpg,4.29,141945,\"fiction, fantasy\",\"The wolf gives his own outlandish version of what really happened when he\ntangled with the three little pigs.\"\r\n615,628,32682,Tom Clancy,Patriot Games,https://images.gr-assets.com/books/1328007145l/32682.jpg,4.11,141674,\"fiction, thriller\",Patriot GamesTom Clancy\r\n616,629,1431,\"Paulo Coelho, Margaret Jull Costa\",Veronika decide morrer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348139939l/1431.jpg,3.69,111856,\"psychology, romance\",\"Twenty-four-year-old Veronika seems to have everything -- youth and beauty,\nboyfriends and a loving family, a fulfilling job. But something is missing\nin her life. So, one cold November morning, she takes a handful of sleeping\npills expecting never to wake up. But she does -- at a mental hospital\nwhere she is told that she has only days to live. Inspired by events in\nCoelho's own life, Veronika Decides to Die questions the meaning of madness\nand celebrates individuals who do not fit into patterns society considers\nto be normal. Bold and illuminating, it is a dazzling portrait of a young\nwoman at the crossroads of despair and liberation, and a poetic, exuberant\nappreciation of each day as a renewed opportunity.\"\r\n617,630,16071764,\"Sheryl Sandberg, Nell Scovell\",\"Lean In: Women, Work, and the Will to Lead\",https://images.gr-assets.com/books/1364250803l/16071764.jpg,3.94,135635,\"business, nonfiction\",\"The Facebook chief operating officer and Fortune top-ranked businesswoman\nshares provocative, anecdotal advice for women that urges them to take\nrisks and seek new challenges in order to find work that they can love and\nengage in passionately.\"\r\n618,631,170210,Charlaine Harris,Dead as a Doornail ,https://images.gr-assets.com/books/1468562419l/170210.jpg,4.01,169560,\"fantasy, paranormal\",Dead as a Doornail Charlaine Harris\r\n619,632,10429045,Tahereh Mafi,\"Shatter Me (Shatter Me, #1)\",https://images.gr-assets.com/books/1310649047l/10429045.jpg,4.01,176433,\"romance, fantasy\",\"I have a curse. I have a gift. I'm a monster. I'm more than human. My touch\nis lethal. My touch is power. I am their weapon. I will fight back. No one\nknows why Juliette's touch is fatal, but The Reestablishment has plans for\nher. Plans to use her as a weapon. But Juliette has plans of her own. After\na lifetime without freedom, she's finally discovering a strength to fight\nback for the very first time—and to find a future with the one boy she\nthought she'd lost forever. In this electrifying debut, Tahereh Mafi\npresents a riveting dystopian world, a thrilling superhero story, and an\nunforgettable heroine.\"\r\n620,633,17214,Robert A. Heinlein,Starship Troopers,https://images.gr-assets.com/books/1406457252l/17214.jpg,3.99,136886,\"fiction, classics\",\"In a futuristic military adventure a recruit goes through the roughest boot\ncamp in the universe and into battle with the Terran Mobile Infantry in\nwhat historians would come to call the First Interstellar War\"\r\n621,634,12033455,Sophie Kinsella,I've Got Your Number,https://images.gr-assets.com/books/1327956732l/12033455.jpg,3.93,144533,\"romance, contemporary\",\"After she loses her engagement ring and her phone is stolen during a hotel\nfire drill, Poppy Wyatt, discovering an abandoned phone in a trash can,\ncrashes into the life of the phone's owner, businessman Sam Roxton, when\nshe uses his phone to make her wedding preparations. Reprint. 125,000 first\nprinting.\"\r\n622,635,10959,\"Jostein Gaarder, Paulette Møller\",Sofies Verden,https://images.gr-assets.com/books/1343459906l/10959.jpg,3.88,109692,\"philosophy, nonfiction\",\"A page-turning novel that is also an exploration of the great philosophical\nconcepts of Western thought, Sophie's World has fired the imagination of\nreaders all over the world, with more than twenty million copies in print.\nOne day fourteen-year-old Sophie Amundsen comes home from school to find in\nher mailbox two notes, with one question on each: \"\"Who are you?\"\" and \"\"Where\ndoes the world come from?\"\" From that irresistible beginning, Sophie becomes\nobsessed with questions that take her far beyond what she knows of her\nNorwegian village. Through those letters, she enrolls in a kind of\ncorrespondence course, covering Socrates to Sartre, with a mysterious\nphilosopher, while receiving letters addressed to another girl. Who is\nHilde? And why does her mail keep turning up? To unravel this riddle,\nSophie must use the philosophy she is learning--but the truth turns out to\nbe far more complicated than she could have imagined.\"\r\n623,637,76778,Ray Bradbury,The Martian Chronicles,https://images.gr-assets.com/books/1374049948l/76778.jpg,4.12,143236,\"fiction, classics\",\"The tranquility of Mars is disrupted by humans who want to conquer space,\ncolonize the planet, and escape a doomed Earth.\"\r\n624,638,7331435,Jennifer Egan,A Visit From the Goon Squad,https://images.gr-assets.com/books/1356844046l/7331435.jpg,3.64,120126,\"fiction, contemporary\",\"Working side-by-side for a record label, former punk rocker Bennie Salazar\nand the passionate Sasha hide illicit secrets from one another while\ninteracting with a motley assortment of equally troubled people from 1970s\nSan Francisco to the post-war future.\"\r\n625,639,93,\"Johanna Spyri, Angelo  Rinaldi, Beverly Cleary\",Heidi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462714l/93.jpg,3.97,144497,\"classics, fiction\",\"HeidiJohanna Spyri, Angelo  Rinaldi, Beverly Cleary\"\r\n626,640,83763,Michael Crichton,Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556292204l/83763._SY475_.jpg,3.72,131352,\"thriller, horror\",\"Deep in the remote Nevada desert, eight people are trapped inside of the\nXymos Corporation by a rapidly evolving swarm of predatory molecules that\nhave massed together to form a powerful and intelligent organism that is\ntargeting its creators.\"\r\n627,641,84369,C.S. Lewis,The Last Battle,https://images.gr-assets.com/books/1308814830l/84369.jpg,4.02,158701,\"fiction, classics\",\"The last battle is the greatest of all battles Narnia ... where lies breed\nfear ... where loyalty is tested ... where all hope seems lost. During the\nlast days of Narnia, the land faces its fiercest challenge -- not an\ninvader from without but an enemy from within. Lies and treachery have\ntaken root, and only the king and a small band of loyal followers can\nprevent the destruction of all they hold dear in this, the magnificent\nending to The Chronicles of Narnia.\"\r\n628,642,5064,Ken Follett,World Without End,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1509545511l/5064._SY475_.jpg,4.23,128715,\"fiction, history\",\"Two centuries after the building of the elaborate Gothic cathedral in\nKingsbridge, its prior finds himself at the center of a web of ambition and\nrevenge that places the city at a crossroad of commerce, medicine, and\narchitecture.\"\r\n629,643,1326258,\"P.C. Cast, Kristin Cast\",Chosen: A House of Night Novel,https://images.gr-assets.com/books/1393192825l/1326258.jpg,3.9,180961,\"fantasy, paranormal\",\"Chosen: A House of Night NovelP.C. Cast, Kristin Cast\"\r\n630,644,13372690,Colleen Hoover,Slammed,https://images.gr-assets.com/books/1328530463l/13372690.jpg,4.29,153882,\"fiction, romance\",\"Eighteen-year-old Layken struggles with holding her family together after\nher father dies, until she develops a relationship with her new neighbor,\nWill, who has a passion for poetry slams and gives her a new sense of hope.\"\r\n631,645,544891,Alex Flinn,\"Beastly (Beastly, #1, Kendra Chronicles, #1)\",https://images.gr-assets.com/books/1334260193l/544891.jpg,3.84,150003,\"fantasy, romance\",\"Love is never ugly Now a major motion picture starring Vanessa Hudgens and\nAlex Pettyfer I am a beast. A beast! Not quite wolf or bear, gorilla or dog\nbut a horrible new creature who walks upright. I am a monster. You think\nI'm talking fairy tales? No way. The place is New York City. The time is\nnow. It's no deformity, no disease. And I'll,stay this way\nforever—ruined—unless I can break the spell. Yes, the spell, the one the\nwitch in my English class cast on me. Why did she turn me into a beast who\nhides by day and prowls by night? I'll tell you. I'll tell you how I used\nto be Kyle Kingsbury, the guy you wished you were, with money, perfect\nlooks, and the perfect life. And then, I'll tell you how I became perfectly\n. . . beastly.\"\r\n632,646,2696,\"Geoffrey Chaucer, Nevill Coghill\",Tales of Caunterbury,https://images.gr-assets.com/books/1261208589l/2696.jpg,3.48,148480,\"poetry, history\",\"'Now as I've drunk a draught of corn-ripe ale, By God it stands to reason I\ncan strike On some good story that you all will like' In The Canterbury\nTales Chaucer created one of the great touchstones of English literature, a\nmasterly collection of chivalric romances, moral allegories and low farce.\nA story-telling competition within a group of pilgrims from all walks of\nlife is the occasion for a series of tales that range from the Knight's\naccount of courtly love and the ebullient Wife of Bath's Arthurian legend,\nto the ribald anecdotes of the Miller and the Cook. Rich and diverse, The\nCanterbury tales offers us an unrivalled glimpse into the life and mind of\nmedieval England. Nevill Coghill's masterly and vivid modern English verse\ntranslation is rendered with consummate skill to retain all the vigour and\npoetry of Chaucer's fourteenth-century Middle English.\"\r\n633,647,42149,Emily Giffin,Baby Proof,https://images.gr-assets.com/books/1361466583l/42149.jpg,3.71,124371,\"romance, fiction\",\"Having agreed from the start of their relationship that they did not want\nchildren, Claudia and Ben find their previously idyllic marriage tested\nwhen Ben realizes that he wants to be a father after all. By the author of\nSomething Borrowed and Something Blue. Reprint.\"\r\n634,648,7664041,Christopher Paolini,Inheritance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390886502l/7664041.jpg,4.08,146905,\"fantasy, fiction\",\"The young Dragon Rider Eragon must finally confront the evil king\nGalbatorix to free Alagaesia from his rule once and for all.\"\r\n635,649,10357575,\"Haruki Murakami, Jay Rubin, Philip Gabriel\",いちきゅうはちよん [Ichi-Kyū-Hachi-Yon],https://images.gr-assets.com/books/1483103331l/10357575.jpg,3.89,125195,\"fiction, fantasy\",\"The internationally best-selling and award-winning author of such works as\nWhat I Talk About When I Talk About Running presents a psychologically\ncharged tale that draws on Orwellian themes. Reprint. 125,000 first\nprinting.\"\r\n636,650,46787,Harriet Beecher Stowe,Uncle Tom's Cabin or Life Among the Lowly,https://images.gr-assets.com/books/1414349231l/46787.jpg,3.83,137858,\"classics, fiction\",\"Progressive for her time, Harriet Beecher Stowe was one of the earliest\nwriters to offer a shockingly realistic depiction of slavery. Her stirring\nindictment and portrait of human dignity in the most inhumane circumstances\nenlightened hundreds of thousands by revealing the human costs of slavery,\nwhich had until then been cloaked and justified by the racist\nmisperceptions of the time.\"\r\n637,651,480204,\"Gaston Leroux, Alexander Teixeira de Mattos\",Le Fantôme de l'Opéra,https://images.gr-assets.com/books/1327867727l/480204.jpg,3.97,141110,\"classics, fiction\",\"Le Fantôme de l'OpéraGaston Leroux, Alexander Teixeira de Mattos\"\r\n638,652,140079,Charlaine Harris,\"Definitely Dead (Sookie Stackhouse, #6)\",https://images.gr-assets.com/books/1468562748l/140079.jpg,4.02,163054,\"fantasy, paranormal\",\"Definitely Dead (Sookie Stackhouse, #6)Charlaine Harris\"\r\n639,653,2526,\"José Saramago, Giovanni Pontiero\",Ensaio Sobre a Cegueira,https://images.gr-assets.com/books/1327866409l/2526.jpg,4.08,98738,\"fiction, classics\",\"A city is hit by an epidemic of \"\"white blindness\"\" whose victims are\nconfined to a vacant mental hospital, while a single eyewitness to the\nnightmare guides seven oddly assorted strangers through the barren urban\nlandscape.\"\r\n640,654,7905092,Jonathan Franzen,Freedom,https://images.gr-assets.com/books/1316729686l/7905092.jpg,3.73,119213,\"fiction, contemporary\",FreedomJonathan Franzen\r\n641,655,15812814,Ally Condie,Crossed,https://images.gr-assets.com/books/1374335939l/15812814.jpg,3.52,100886,\"romance, fiction\",\"Seventeen-year-old Cassia sacrifices everything and heads to the Outer\nProvinces in search of Ky, where she is confronted with shocking\nrevelations about Society and the promise of rebellion.\"\r\n642,656,852470,Ally Carter,\"I'd Tell You I Love You, But Then I'd Have to Kill You\",https://images.gr-assets.com/books/1334491180l/852470.jpg,3.82,150222,\"romance, mystery\",\"Celebrate the 10th anniversary of the New York Times best-selling Gallagher\nGirls series with this new edition, featuring an exclusive new epilogue\nfrom Ally Carter! Cammie Morgan is a student at the Gallagher Academy for\nExceptional Young Women, a fairly typical all-girls school-that is, if\nevery school taught advanced martial arts in PE and the latest in chemical\nwarfare in science, and students received extra credit for breaking CIA\ncodes in computer class. The Gallagher Academy might claim to be a school\nfor geniuses but it's really a school for spies. Even though Cammie is\nfluent in fourteen languages and capable of killing a man in seven\ndifferent ways, she has no idea what to do when she meets an ordinary boy\nwho thinks she's an ordinary girl. Sure, she can tap his phone, hack into\nhis computer, or track him through town with the skill of a real \"\"pavement\nartist\"\"-but can she maneuver a relationship with someone who can never know\nthe truth about her? Cammie Morgan may be an elite spy-in-training, but in\nher sophomore year, she's on her most dangerous mission-falling in love.\"\r\n643,657,1768603,Aravind Adiga,The White Tiger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347754998l/1768603.jpg,3.71,114531,\"fiction, contemporary\",\"When he relocates to New Delhi to take a new job, Balram Halwai is\ndisillusioned by the city's materialism and technology-spawned violence, a\ncircumstance that forces him to question his loyalties, ambitions, and\npast.\"\r\n644,658,3805,Jonathan Franzen,The Corrections,https://images.gr-assets.com/books/1355011305l/3805.jpg,3.78,117657,\"fiction, contemporary\",\"Winner of the 2001 National Book Award for Fiction After almost fifty years\nas a wife and mother, Enid Lambert is ready to have some fun.\nUnfortunately, her husband, Alfred, is losing his sanity to Parkinson's\ndisease, and their children have long since flown the family nest to the\ncatastrophes of their own lives. The oldest, Gary, a once-stable portfolio\nmanager and family man, is trying to convince his wife and himself, despite\nclear signs to the contrary, that he is not clinically depressed. The\nmiddle child, Chip, has lost his seemingly secure academic job and is\nfailing spectacularly at his new line of work. And Denise, the youngest,\nhas escaped a disastrous marriage only to pour her youth and beauty down\nthe drain of an affair with a married man-or so her mother fears. Desperate\nfor some pleasure to look forward to, Enid has set her heart on an elusive\ngoal: bringing her family together for one last Christmas at home.\"\r\n645,659,88061,Barack Obama,Dreams from My Father,https://images.gr-assets.com/books/1352340675l/88061.jpg,3.81,128961,\"biography, history\",\"The son of an African father and white American mother discusses his\nchildhood in Hawaii, his struggle to find his identity as an African\nAmerican, and his life accomplishments.\"\r\n646,660,7672,Michael Crichton,Congo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388889401l/7672.jpg,3.55,129811,\"fiction, thriller\",\"Armed with the latest gifts of advanced technology, a California scientist,\na ruthless corporation agent, and a mercenary hunter face the dangers of\nthe Congo jungle in search of the diamonds of the lost city of Zinj.\nReprint.\"\r\n647,661,46677,\"Judith Viorst, Ray Cruz\",\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\",https://images.gr-assets.com/books/1405259744l/46677.jpg,4.22,146073,\"fiction, classics\",\"The perennially popular tale of Alexander’s worst day is now a board book\nthat belongs on every child’s bookshelf. Alexander is not having a great\nday. He has to endure gum in his hair, sitting in the middle of the\nbackseat, third-best-friend status, no dessert at lunch, lima beans,\nrailroad pajamas, and kissing on TV—all in one day! Maybe he’ll just move\nto Australia. This funny and endearing story has delighted readers for more\nthan forty years, and now it’s available as Classic Board Book with artwork\nthat showcases Alexander—and only Alexander—in full color, underscoring the\nmisery (and comedy) of his awful day.\"\r\n648,662,5439,Jhumpa Lahiri,Interpreter of Maladies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442586143l/5439._SY475_.jpg,4.12,110651,\"fiction, contemporary\",\"A debut collection of short fiction blends elements of Indian traditions\nwith the complexities of American culture in such tales as \"\"A Temporary\nMatter,\"\" in which a young Indian-American couple confronts their grief over\nthe loss of a child, while their Boston neighborhood copes with a nightly\nblackout. Original. 20,000 first printing.\"\r\n649,663,2767,Howard Zinn,A People's History of the United States: 1492 to Present ,https://images.gr-assets.com/books/1494279423l/2767.jpg,4.07,137372,\"history, nonfiction\",\"Known for its lively, clear prose as well as its scholarly research, A\nPeople's History of the United States is the only volume to tell America's\nstory from the point of view of -- and in the words of -- America's women,\nfactory workers, African Americans, Native Americans, working poor, and\nimmigrant laborers. Covering Christopher Columbus's arrival through\nPresident Clinton's first term, A People's History of the United States\nfeatures insightful analysis of the most important events in our history.\nRevised, updated, and featuring a new afterword by the author, this is \"\"a\nbrilliant and moving history of the American people\"\" (Library Journal).\"\r\n650,664,251688,Truman Capote,Breakfast at Tiffany's,https://images.gr-assets.com/books/1477015353l/251688.jpg,3.89,129778,\"classics, fiction\",\"\"\"A Christmas Memory\"\"--This is a story of a Christmas shared by a seven-\nyear-old boy and a childlike woman in her sixties, with enormous love and\nfriendship between them.\"\r\n651,665,6690798,Justin Cronin,The Passage,https://images.gr-assets.com/books/1327874267l/6690798.jpg,4.04,126993,\"horror, fiction\",The PassageJustin Cronin\r\n652,666,2744,Neil Gaiman,Anansi Boys,https://images.gr-assets.com/books/1479778049l/2744.jpg,4,137639,\"fantasy, fiction\",Anansi BoysNeil Gaiman\r\n653,667,5664985,Sarah Dessen,Along for the Ride,https://images.gr-assets.com/books/1479692098l/5664985.jpg,4.08,151721,\"romance, contemporary\",\"When Auden goes to stay with her father, stepmother, and new baby sister\nthe summer before she starts college, all the trauma of her parents'\ndivorce is revived, even as she is making new friends and having fun new\nexperiences.\"\r\n654,668,18693763,Celeste Ng,Everything I Never Told You,https://images.gr-assets.com/books/1386795198l/18693763.jpg,3.78,108703,\"fiction, contemporary\",\"\"\"Lydia is dead. But they don't know this yet. So begins the story of this\nexquisite debut novel, about a Chinese American family living in 1970s\nsmall-town Ohio. Lydia is the favorite child of Marilyn and James Lee;\ntheir middle daughter, a girl who inherited her mother's bright blue eyes\nand her father's jet-black hair. Her parents are determined that Lydia will\nfulfill the dreams they were unable to pursue-in Marilyn's case that her\ndaughter become a doctor rather than a homemaker, in James's case that\nLydia be popular at school, a girl with a busy social life and the center\nof every party. When Lydia's body is found in the local lake, the delicate\nbalancing act that has been keeping the Lee family together tumbles into\nchaos, forcing them to confront the long-kept secrets that have been slowly\npulling them apart. James, consumed by guilt, sets out on a reckless path\nthat may destroy his marriage. Marilyn, devastated and vengeful, is\ndetermined to find a responsible party, no matter what the cost. Lydia's\nolder brother, Nathan, is certain that the neighborhood bad boy Jack is\nsomehow involved. But it's the youngest of the family-Hannah-who observes\nfar more than anyone realizes and who may be the only one who knows the\ntruth about what happened. A profoundly moving story of family, history,\nand the meaning of home, Everything I Never Told You is both a gripping\npage-turner and a sensitive family portrait, exploring the divisions\nbetween cultures and the rifts within a family, and uncovering the ways in\nwhich mothers and daughters, fathers and sons, and husbands and wives\nstruggle, all their lives, to understand one another\"\"--\"\r\n655,669,9328,\"Isabel Allende, Magda Bogin\",La casa de los espíritus,https://images.gr-assets.com/books/1358615501l/9328.jpg,4.2,119930,\"fiction, classics\",\"Here, in an astonishing debut by a gifted storyteller, is the magnificent\nsaga of proud and passionate men and women and the turbulent times through\nwhich they suffer and triumph. They are the Truebas. And theirs is a world\nyou will not want to leave, and one you will not forget. Esteban -- The\npatriarch, a volatile and proud man whose lust for land is legendary and\nwho is haunted by his tyrannical passion for the wife he can never\ncompletely possess. Clara -- The matriarch, elusive and mysterious, who\nforetells family tragedy and shapes the fortunes of the house of the\nTruebas. Blanca -- Their daughter, soft-spoken yet rebellious, whose\nshocking love for the son of her father's foreman fuels Esteban's\neverlasting contempt... even as it produces the grandchild he adores. Alba\n-- The fruit of Blanca's forbidden love, a luminous bearty, a fiery and\nwillful woman... the family's break with the past and link to the future.\n\"\"From the Paperback edition.\"\"\"\r\n656,670,11573,Stephen King,The Dead Zone,https://images.gr-assets.com/books/1283509622l/11573.jpg,3.9,132723,\"thriller, horror\",\"Now available for the first time in a mass-market premium paperback\nedition—the #1 New York Times bestseller of a reluctant clairvoyant who\nmust weigh his options when he suddenly sees the terrible future awaiting\nmankind. \"\"There was only blackness and that universal emptiness... Cold\nlimbo. Johnny Smith stayed there a long, long time.\"\" When Johnny Smith was\nsix-years-old, head trauma caused by a bad ice-skating accident left him\nwith a nasty bruise on his forehead and, from time to time, those\nhunches…infrequent but accurate snippets of things to come. But it isn’t\nuntil Johnny’s a grown man—now having survived a horrifying auto injury\nthat plunged him into a coma lasting four-and-a-half years—that his special\nabilities really push to the fore. Johnny Smith comes back from the void\nwith an extraordinary gift that becomes his life’s curse…presenting visions\nof what was and what will be for the innocent and guilty alike. But when he\nencounters a ruthlessly ambitious and amoral man who promises a terrifying\nfate for all humanity, Johnny must find a way to prevent a harrowing\npredestination from becoming reality.\"\r\n657,671,16343,\"Agatha Christie, Ροζίτα Σώκου\",The Mysterious Affair at Styles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922393l/16343.jpg,3.98,135514,\"mystery, fiction\",\"The Mysterious Affair at Styles was Christie's first published novel,\nintroducing Hercule Poirot, Inspector (later, Chief Inspector) Japp, and\nArthur Hastings. Poirot, a Belgian refugee of the Great War, is settling in\nEngland near the home of Emily Inglethorp, who helped him to his new life.\nHis friend Hastings arrives as a guest at her home. When the woman is\nkilled, Poirot uses his detective skills to solve the mystery. This is also\nthe setting of Curtain, Poirot's last case. The book includes maps of the\nhouse, the murder scene, and a drawing of a fragment of a will.\"\r\n658,672,16304,Agatha Christie,Murder in the Calais Coach,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388267702l/16304.jpg,4.16,138444,\"mystery, classics\",\"Just after midnight, the famous Orient Express is stopped in its tracks by\na snowdrift. By morning, the millionaire Samuel Edward Ratchett lies dead\nin his compartment, stabbed a dozen times, his door locked from the inside.\nOne of his fellow passengers must be the murderer. Isolated by the storm,\ndetective Hercule Poirot must find the killer among a dozen of the dead\nman's enemies, before the murderer decides to strike again.\"\r\n659,673,15796700,Chimamanda Ngozi Adichie,Americanah,https://images.gr-assets.com/books/1356654499l/15796700.jpg,4.26,113252,\"fiction, contemporary\",AmericanahChimamanda Ngozi Adichie\r\n660,674,7494,James Patterson,Suzanne's Diary for Nicholas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404736778l/7494.jpg,4.16,121398,\"romance, fiction\",Suzanne's Diary for NicholasJames Patterson\r\n661,675,233667,Stephen King,Firestarter,https://images.gr-assets.com/books/1394208032l/233667.jpg,3.85,142213,\"horror, fiction\",\"Now available for the first time in a mass-market premium paperback\nedition—master storyteller Stephen King presents the classic #1 New York\nTimes bestseller! \"\"Get out. Get out quickly. She's never done anything like\nthis before and I don't know if she can stop.\"\" Andy McGee and Vicky\nTomlinson were once college students looking to make some extra cash,\nvolunteering as test subjects for an experiment orchestrated by the\nclandestine government organization known as The Shop. But the outcome\nunlocked exceptional latent psychic talents for the two of them—manifesting\nin even more terrifying ways when they fell in love and had a child. Their\ndaughter, Charlie, has been gifted with the most extraordinary and\nuncontrollable power ever seen—pyrokinesis, the ability to create fire with\nher mind. Now the merciless agents of The Shop are in hot pursuit to\napprehend this unexpected genetic anomaly for their own diabolical ends by\nany means necessary...including violent actions that may well ignite the\nentire world around them as Charlie retaliates with a fury of her own....\"\r\n662,676,15731779,Sylvia Day,Entwined with You,https://images.gr-assets.com/books/1362526983l/15731779.jpg,4.19,141641,\"romance, contemporary\",\"Continues the saga of Gideon and Eva, whose passionate bond is put to an\nultimate test by torments from their respective pasts.\"\r\n663,677,6289283,Christopher McDougall,\"Born to Run: A Hidden Tribe, Superathletes, and the Greatest Race the World Has Never Seen\",https://images.gr-assets.com/books/1320531983l/6289283.jpg,4.27,109642,\"nonfiction, sports\",\"Recounts the author's experiences with the reclusive Tarahumara Indians,\nwhose techniques allow them to run long distances with ease, and describes\nhis training for a fifty-mile race with the tribe and a number of\nultramarathoners.\"\r\n664,678,18293427,Gabrielle Zevin,The Storied Life of A.J. Fikry,https://images.gr-assets.com/books/1404582137l/18293427.jpg,3.98,115393,\"fiction, contemporary\",\"Don't miss Gabrielle Zevin's new novel, Young Jane Young, coming in August\n2017. “Funny, tender, and moving, The Storied Life of A. J. Fikry reminds\nus all exactly why we read and why we love.”* A. J. Fikry’s life is not at\nall what he expected it to be. He lives alone, his bookstore is\nexperiencing the worst sales in its history, and now his prized possession,\na rare collection of Poe poems, has been stolen. But when a mysterious\npackage appears at the bookstore, its unexpected arrival gives Fikry the\nchance to make his life over--and see everything anew. “This novel has\nhumor, romance, a touch of suspense, but most of all love--love of books\nand bookish people and, really, all of humanity in its imperfect glory.”\n—Eowyn Ivey, author of The Snow Child “Marvelously optimistic about the\nfuture of books and bookstores and the people who love both.” —The\nWashington Post “You won’t want it to end.” —Family Circle “A natural for\nbook groups.” —Richmond Times-Dispatch “A reader’s paradise of the first\norder.” —The Buffalo News “A fun, page-turning delight.” —Minneapolis Star\nTribune “Captures the joy of connecting people and books . . .\nIrresistible.” —Booklist “A wonderful, moving, endearing story of\nredemption and transformation that will sing in your heart for a very, very\nlong time.” —Garth Stein, author of The Art of Racing in the Rain “Readers\nwho delighted in The Guernsey Literary and Potato Peel Pie Society, The\nUnlikely Pilgrimage of Harold Fry, and Letters from Skye will be equally\ncaptivated by this novel.” —*Library Journal, starred review\"\r\n665,679,475339,Ludwig Bemelmans,Mad About Madeline,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175060644l/475339._SX318_.jpg,4.22,156726,\"classics, fiction\",Mad About MadelineLudwig Bemelmans\r\n666,680,1005,Napoleon Hill,Think and Grow Rich,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177008l/1005.jpg,4.17,87445,\"nonfiction, business\",\"Offers the secrets of super achievers, such as Henry Ford, Andrew Carnegie,\nand John Rockefeller, and explains how to use their secrets for success.\"\r\n667,681,8337,\"Laura Ingalls Wilder, Garth Williams\",Little House In The Big Woods,https://images.gr-assets.com/books/1475195170l/8337.jpg,4.16,165127,\"classics, fiction\",\"Laura Ingalls's story begins in 1871 in a little log cabin on the edge of\nthe Big Woods of Wisconsin. Four-year-old Laura lives in the little house\nwith her Pa, her Ma, her sisters Mary and Carrie, and their trusty dog,\nJack. Pioneer life is sometimes hard, since the family must grow or catch\nall their own food as they get ready for the cold winter. But it is also\nexciting as Laura and her folks celebrate Christmas with homemade toys and\ntreats, do the spring planting, bring in the harvest, and make their first\ntrip into town. And every night they are safe and warm in their little\nhouse, with the happy sound of Pa's fiddle sending Laura and her sisters\noff to sleep. And so begins Laura Ingalls Wilder's beloved story of a\npioneer girl and her family. The nine Little House books have been\ncherished by generations of readers as both a unique glimpse into America's\nfrontier past and a heartwarming, unforgettable story.\"\r\n668,682,14201,Susanna Clarke,Jonathan Strange & Mr Norrell,https://images.gr-assets.com/books/1357027589l/14201.jpg,3.8,133683,\"fantasy, fiction\",\"All is going well for rich, reclusive Mr Norell, who has regained some of\nthe power of England's magicians from the past, until a rival magician,\nJonathan Strange, appears and becomes Mr Norrell's pupil, in a witty\nfantasy set against the backdrop of nineteenth-century England. Reprint.\"\r\n669,683,3463,Nicholas Sparks,A Bend in the Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388453919l/3463.jpg,4.02,116800,\"romance, fiction\",A Bend in the RoadNicholas Sparks\r\n670,684,12127810,Rick Riordan,The House of Hades,https://images.gr-assets.com/books/1464201430l/12127810.jpg,4.54,159774,\"fantasy, fiction\",The House of HadesRick Riordan\r\n671,685,2536134,Michael  Grant,Gone,https://images.gr-assets.com/books/1357796831l/2536134.jpg,3.85,144606,\"fiction, paranormal\",\"In a small town on the coast of California, everyone over the age of\nfourteen suddenly disappears, setting up a battle between the remaining\ntown residents and the students from a local private school, as well as\nthose who have \"\"The Power\"\" and are able to perform supernatural feats and\nthose who do not. Reprint.\"\r\n672,686,3466,Nicholas Sparks,The Wedding,https://images.gr-assets.com/books/1385738787l/3466.jpg,3.98,118045,\"romance, fiction\",The WeddingNicholas Sparks\r\n673,687,1067,David McCullough,1776,https://images.gr-assets.com/books/1306787560l/1067.jpg,4.06,130293,\"history, nonfiction\",\"Draws on personal correspondence and period diaries to present a history of\nthe American Revolution that includes the siege of Boston, the American\ndefeat at Brooklyn, the retreat across New Jersey, and the American victory\nat Trenton.\"\r\n674,688,10847,Jon Krakauer,Under the Banner of Heaven: A Story of Violent Faith,https://images.gr-assets.com/books/1356441391l/10847.jpg,3.98,112167,\"nonfiction, religion\",\"Traces the events that surrounded the 1984 murder of a woman and her child\nby fundamentalist Mormons Ron and Dan Lafferty, exploring the belief\nsystems and traditions, including polygamy, that mark the faith's most\nextreme factions and what their practices reflect about the nature of\nreligion in America. Reader's Guide available. Reprint. 300,000 first\nprinting.\"\r\n675,689,11447921,Jess Walter,Beautiful Ruins,https://images.gr-assets.com/books/1338161553l/11447921.jpg,3.67,116053,\"fiction, romance\",\"From the moment it opens—on a rocky patch of Italian coastline, circa 1962,\nwhen a daydreaming young innkeeper looks out over the water and spies a\nmysterious woman approaching him on a boat—Jess Walter's Beautiful Ruins is\na dazzling, yet deeply human, roller coaster of a novel. From the lavish\nset of Cleopatra to the shabby revelry of the Edinburgh Fringe Festival, to\nthe back lots of contemporary Hollywood, Beautiful Ruins is gloriously\ninventive and constantly surprising—a story of flawed yet fascinating\npeople navigating the rocky shores of their lives while clinging to their\nimprobable dreams.\"\r\n676,690,9742,Barack Obama,The Audacity of Hope: Thoughts on Reclaiming the American Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925614l/9742.jpg,3.69,110873,\"biography, nonfiction\",\"The junior senator from Illinois discusses how to transform U.S. politics,\ncalling for a return to America's original ideals and revealing how they\ncan address such issues as globalization and the function of religion in\npublic life.\"\r\n677,691,10569,Stephen King,On Writing: A Memoir of the Craft,https://images.gr-assets.com/books/1436735207l/10569.jpg,4.31,131481,\"nonfiction, memoir\",\"“Long live the King” hailed Entertainment Weekly upon publication of\nStephen King’s On Writing. Part memoir, part master class by one of the\nbestselling authors of all time, this superb volume is a revealing and\npractical view of the writer’s craft, comprising the basic tools of the\ntrade every writer must have. King’s advice is grounded in his vivid\nmemories from childhood through his emergence as a writer, from his\nstruggling early career to his widely reported, near-fatal accident in\n1999—and how the inextricable link between writing and living spurred his\nrecovery. Brilliantly structured, friendly and inspiring, On Writing will\nempower and entertain everyone who reads it—fans, writers, and anyone who\nloves a great story well told.\"\r\n678,692,1472878,Kristin Hannah,Firefly Lane,https://images.gr-assets.com/books/1362435448l/1472878.jpg,4.04,121966,\"fiction, romance\",Firefly LaneKristin Hannah\r\n679,693,455373,Michael Crichton,Sphere,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174924200l/455373.jpg,3.77,128244,\"fiction, thriller\",\"In the middle of the South Pacific, a thousand feet below the surface of\nthe water, a huge vessel is discovered resting on the ocean floor. It is a\nspaceship of phenomenal dimensions, apparently undamaged by its fall from\nthe sky. And, most startling, it appears to be at least three hundred years\nold. But even more fantastic—and frightening—is what waits inside . . .\"\r\n680,694,2120652,Emily Giffin,Love the One You're With,https://images.gr-assets.com/books/1361466590l/2120652.jpg,3.7,124812,\"fiction, romance\",Love the One You're WithEmily Giffin\r\n681,695,18214414,\"Robert Galbraith, J.K. Rowling\",The Silkworm,https://images.gr-assets.com/books/1392577290l/18214414.jpg,4.03,120008,\"mystery, fiction\",\"The SilkwormRobert Galbraith, J.K. Rowling\"\r\n682,696,43814,Anne Rice,The Vampire Lestat,https://images.gr-assets.com/books/1347515742l/43814.jpg,4.05,141299,\"horror, fantasy\",The Vampire LestatAnne Rice\r\n683,697,9118135,Ann Patchett,State of Wonder,https://images.gr-assets.com/books/1454428541l/9118135.jpg,3.85,124837,\"fiction, contemporary\",State of WonderAnn Patchett\r\n684,698,13539044,Matthew Quick,The Silver Linings Playbook,https://images.gr-assets.com/books/1358277412l/13539044.jpg,4,110939,\"fiction, contemporary\",The Silver Linings PlaybookMatthew Quick\r\n685,699,33507,\"Jules Verne, Anthony Bonner\",Vingt Mille Lieues Sous les Mers,https://images.gr-assets.com/books/1494979127l/33507.jpg,3.86,121112,\"classics, fiction\",\"Vingt Mille Lieues Sous les MersJules Verne, Anthony Bonner\"\r\n686,700,16181,Philippa Gregory,The Constant Princess,https://images.gr-assets.com/books/1355932704l/16181.jpg,3.88,124786,\"fiction, romance\",\"A fictional portrait of Henry VIII's first wife, Katherine of Aragon,\nfollows her through her youthful marriage to Henry's older brother, Arthur,\nher widowhood, her marriage to Henry, and the divorce that led to Henry's\nmarriage to Anne Boleyn.\"\r\n687,701,14942,\"Virginia Woolf, Maureen Howard\",Mrs Dalloway,https://images.gr-assets.com/books/1479336522l/14942.jpg,3.78,136327,\"classics, fiction\",\"A poignant portrayal of the thoughts and events that comprise one day in a\nwoman's life.\"\r\n688,702,13486632,\"Jonas Jonasson, Rod Bradbury\",Hundraåringen som klev ut genom fönstret och försvann,https://images.gr-assets.com/books/1334848488l/13486632.jpg,3.81,92275,\"fiction, contemporary\",\"Hundraåringen som klev ut genom fönstret och försvannJonas Jonasson, Rod Bradbury\"\r\n689,703,10589,Stephen King,Bag of Bones,https://images.gr-assets.com/books/1365592796l/10589.jpg,3.87,131004,\"horror, fiction\",\"Plagued by vivid nightmares of the summer house he had shared with his late\nwife, grieving widower Mike Noonan returns to his former Maine getaway,\nonly to find a town in the grip of a ruthless millionaire and tormented by\na series of ghostly visitations. Reprint.\"\r\n690,704,4687,John Irving,The Cider House Rules,https://images.gr-assets.com/books/1327962519l/4687.jpg,4.1,124876,\"fiction, classics\",\"The practices of Dr. Wilbur Larch--obstetrician, orphanage director, ether\naddict, and abortionist--are hindered, abetted, and continued, in turn, by\nhis favorite orphan, Homer Wells.\"\r\n691,705,10605,\"Richard Bachman, Stephen King\",Thinner,https://images.gr-assets.com/books/1346947063l/10605.jpg,3.66,130219,\"horror, fiction\",\"ThinnerRichard Bachman, Stephen King\"\r\n692,706,54479,\"Jules Verne, Michael Glencross, Brian W. Aldiss\",Le tour du monde en quatre-vingts jours,https://images.gr-assets.com/books/1308815551l/54479.jpg,3.9,117108,\"classics, fiction\",\"Follows the 1872 adventures of the reserved Phileas Fogg, an imperturbable\nEnglish gentleman, and his French manservant Passepartout, as he tries to\nwin his rash wager that he can travel completely around the world in eighty\ndays. Reprint.\"\r\n693,707,53496,Sharon Creech,Walk Two Moons,https://images.gr-assets.com/books/1389035862l/53496.jpg,3.95,129350,\"fiction, classics\",\"Young Adult Edition with Reader's Guide \"\"Sometimes you know in your heart\nyou love someone, but you have to go away before your head can figure it\nout.\"\" To trace the path of her missing mother, Sal embarks on a journey\nfrom Ohio to Idaho with her grandparents. On the road, Sal tells the\nstrange and exciting story of her friend Phoebe. As the miles pass,\nPhoebe's tale becomes more and more outrageous, while Sal's own story\nbegins to emerge. In unraveling Phoebe's mystery, Sal comes ever closer to\nfinding out the truth behind her own bittersweet journey. What will she\nfind at the end of the road?\"\r\n694,708,1430,\"Paulo Coelho, Margaret Jull Costa\",Onze minutos,https://images.gr-assets.com/books/1358266987l/1430.jpg,3.69,102206,\"fiction, romance\",\"A new, international bestseller by the author of The Alchemist tells the\nstory of Maria, a young girl from a Brazilian village, whose first innocent\nbrushes with love leave her heartbroken. At a tender age, she becomes\nconvinced that she will never find true love, instead believing that \"\"Love\nis a terrible thing that will make you suffer . . .\"\" A chance meeting in\nRio takes her to Geneva, where she dreams of finding fame and fortune.\nInstead, she ends up working as a prostitute. In Geneva, Maria drifts\nfurther and further away from love as she develops a fascination with sex.\nEventually, Maria's despairing view of love is put to the test when she\nmeets a handsome young painter. In this odyssey of self-discovery, Maria\nhas to choose between pursuing a path of darkness, sexual pleasure for its\nown sake, or risking everything to find her own \"\"inner light\"\" and the\npossibility of sacred sex, sex in the context of love. In this gripping and\ndaring new novel, Paulo Coelho sensitively explores the sacred nature of\nsex and love and invites us to confront our own prejudices and demons and\nembrace our own \"\"inner light.\"\"\"\r\n695,709,4009,J.D. Salinger,Nine Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554892563l/4009.jpg,4.19,105138,contemporary,\"\"\"DeDaumier-Smith's Blue Period,\"\" \"\"Teddy,\"\" and \"\"A Perfect Day for\nBananafish\"\" are among the nine works in a collection of Salinger's\nperceptive and realistic short stories\"\r\n696,710,13747,Julie Powell,\"Julie & Julia: 365 Days, 524 Recipes, 1 Tiny Apartment Kitchen\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442804846l/13747._SY475_.jpg,3.67,121373,\"memoir, nonfiction\",\"Julie & Julia: 365 Days, 524 Recipes, 1 Tiny Apartment KitchenJulie Powell\"\r\n697,711,764347,Neal Shusterman,Unwind,https://images.gr-assets.com/books/1297677706l/764347.jpg,4.18,143892,\"fiction, fantasy\",\"In a future world where those between the ages of thirteen and eighteen can\nhave their lives \"\"unwound\"\" and their body parts harvested for use by\nothers, three teens go to extreme lengths to survive until they turn\neighteen.\"\r\n698,712,10988,Diana Gabaldon,\"Drums of Autumn (Outlander, #4)\",https://images.gr-assets.com/books/1500688941l/10988.jpg,4.34,123736,\"romance, fantasy\",\"Drums of Autumn (Outlander, #4)Diana Gabaldon\"\r\n699,713,13414446,Marie Lu,Prodigy,https://images.gr-assets.com/books/1336254717l/13414446.jpg,4.29,149702,\"romance, fantasy\",\"In this \"\"New York Times\"\"-bestselling sequel to \"\"Legend, \"\" June and Day make\ntheir way to Las Vegas where they join the rebel Patriot group and become\ninvolved in an assassination plot against the Elector in hopes of saving\nthe Republic.\"\r\n700,714,12938,William Shakespeare,The Tragedie of King Lear,https://images.gr-assets.com/books/1331563731l/12938.jpg,3.89,135448,\"classics, fiction\",The Tragedie of King LearWilliam Shakespeare\r\n701,715,12898,Arthur Miller,Death of a Salesman,https://images.gr-assets.com/books/1469024140l/12898.jpg,3.49,132061,\"classics, fiction\",\"An unsuccessful traveling salesman finally confronts, in his early sixties,\nhis shattered dreams\"\r\n702,716,531350,Nicholas Sparks,The Choice,https://images.gr-assets.com/books/1385739133l/531350.jpg,3.99,93479,\"romance, fiction\",The ChoiceNicholas Sparks\r\n703,718,10975,William Faulkner,The Sound and the Fury,https://images.gr-assets.com/books/1433089995l/10975.jpg,3.86,124665,\"fiction, ebooks\",\"Design manuscript, setting copy, four galley proofs, page proof, blue line\nand two reproduction proofs for the corrected edition of the novel edited\nby Noel Polk.\"\r\n704,719,76334,Eckhart Tolle,A New Earth: Awakening to Your Life's Purpose,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206232l/76334.jpg,4.02,106211,\"spirituality, philosophy\",\"Contends that humanity has an unprecedented opportunity to shift from its\ndangerous, ego-based state of consciousness to a saner, more loving\nexistence, and offers practical advice on how to promote kindness and\nfreedom.\"\r\n705,720,2880,Tite Kubo,BLEACH―ブリーチ―　1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388508611l/2880.jpg,4.21,120004,\"manga, fantasy\",\"霊が見える高校生・黒崎一護の前に突然現れた美少女は、「死神」と名乗った。そのときから、一護の運命は大きく動き始める...!ルキアとの出会いと、死神代行\n・黒崎一護の誕生を描いた小説版が、装いも新たに登場。書き下ろし番外編も収録したニュー・エディション。\"\r\n706,722,9539,Robert Jordan,The Shadow Rising ,https://images.gr-assets.com/books/1470841890l/9539.jpg,4.21,122524,\"fantasy, fiction\",\"Perrin Aybara must return to Emond's Field to face the occupying\nWhitecloaks, while Rand enters the Aiel Waste and the forbidden city of\nRhuidean\"\r\n707,723,33600,Gregory David Roberts,Shantaram,https://images.gr-assets.com/books/1333482282l/33600.jpg,4.26,95213,\"fiction, travel\",\"Having escaped an Australian maximum security prison, a disillusioned man\nloses himself in the slums of Bombay, where he works for a drug mafia\nkingpin, smuggles arms for a crime lord, forges bonds with fellow exiles,\nand finds love with an elusive woman. A first novel. Reprint.\"\r\n708,724,2233407,Charlaine Harris,From Dead to Worse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525214511l/2233407.jpg,4.01,151095,\"fantasy, paranormal\",From Dead to WorseCharlaine Harris\r\n709,725,34084,\"Stephen King, Ned Dameron\",The Waste Lands,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554220386l/34084.jpg,4.24,117483,\"fantasy, fiction\",\"The Waste LandsStephen King, Ned Dameron\"\r\n710,726,2373,Jeffery Deaver,The Bone Collector,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437538512l/2373._SY475_.jpg,4.18,120541,\"mystery, thriller\",\"Once the nation's foremost criminologist and the ex-head of NYPD forensics,\nquadriplegic Lincoln Rhyme abandons his forced retirement and joins forces\nwith rookie cop Amelia Sachs to track down a vicious serial killer.\"\r\n711,727,101299,\"Bernhard Schlink, Carol Brown Janeway\",Der Vorleser,https://images.gr-assets.com/books/1327936339l/101299.jpg,3.73,119911,\"fiction, romance\",\"At the age of fifteen, Michael Berg falls in love with a woman who\ndisappears, and while observing a trial as a law student years later, he is\nshocked to discover the same woman as the defendant in a horrible crime\"\r\n712,728,759611,\"Bill Martin Jr., Eric Carle\",\"Brown Bear, Brown Bear, What Do You See?\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430155496l/759611.jpg,4.19,125668,\"fiction, classics\",\"Children see a variety of animals, each one a different color, and a\nteacher looking at them. On board pages.\"\r\n713,729,77566,Dan Simmons,Hyperion,https://images.gr-assets.com/books/1405546838l/77566.jpg,4.21,122225,\"fiction, fantasy\",\"A pilgrimage to the realm of the Shrike, a part-god/part-killing machine,\nprovides the travellers the forum to tell their incredible stories\"\r\n714,730,5308,John Steinbeck,The Pearl of the World,https://images.gr-assets.com/books/1437234939l/5308.jpg,3.41,133264,\"classics, fiction\",\"A poor fisherman dreams of wealth and happiness for his family when he\nfinds a priceless pearl\"\r\n715,731,179780,William Peter Blatty,The Exorcist,https://images.gr-assets.com/books/1375168676l/179780.jpg,4.14,124467,\"horror, fiction\",\"The phenomenal bestseller that inspired the classic motion picture--newly\nre-released in a version you've never seen before!\"\r\n716,732,7937462,Stephenie Meyer,The Short Second Life of Bree Tanner,https://images.gr-assets.com/books/1274335680l/7937462.jpg,3.51,145874,\"fantasy, paranormal\",The Short Second Life of Bree TannerStephenie Meyer\r\n717,733,77142,David Guterson,Snow Falling on Cedars,https://images.gr-assets.com/books/1479863528l/77142.jpg,3.8,131945,\"fiction, mystery\",\"In 1954, Ishmael Chambers, a local reporter who lost an arm in the war,\ncovers the murder trial of a Japanese American fisherman, whose wife had\nbeen Ishmael's childhood sweetheart\"\r\n718,734,546018,Alex Haley,Roots,https://images.gr-assets.com/books/1329398936l/546018.jpg,4.42,118951,\"fiction, classics\",\"A new eight-hour event series based on Roots will be simulcast on the\nHistory Channel, Lifetime, and A&E over four consecutive nights beginning\nMemorial Day, May 30, 2016 \"\"Early in the spring of 1750, in the village of\nJuffure, four days upriver from the coast of The Gambia, West Africa, a\nman-child was born to Omoro and Binta Kinte.\"\" So begins Roots, one of the\nmost extraordinary and influential books of our time. Through the story of\none family—his family—Alex Haley unforgettably brings to life the\nmonumental two-century drama of Kunta Kinte and the six generations who\ncame after him: slaves and freedmen, farmers and blacksmiths, lumber mill\nworkmen and Pullman porters, lawyers and architects...and one author. A\nnational and international phenomenon at the time of its original\npublication, Roots continues to enthrall readers with its masterful\nnarrative drive and exceptional emotional power, speaking to us all with an\nundiminished resonance and relevance. \"\"In all of us there is a hunger,\nmarrow deep, to know our heritage.... Without this enriching knowledge,\nthere is a hollow yearning no matter what our attainments in life.\"\"—Alex\nHaley With an introduction by Michael Eric Dyson RootsTheBook.com\"\r\n719,735,96358,\"Alan Moore, Brian Bolland, Tim Sale\",Batman: The Killing Joke ,https://images.gr-assets.com/books/1346331835l/96358.jpg,4.36,113855,\"comics, fiction\",\"\"\"One bad day. According to the grinning engine of madness and mayhem known\nas The Joker, that's all that separates the sane from the psychotic. Freed\nonce again from the confines of Arkham Asylum, he's out to prove his\nderanged point. And he's going to use Gotham's top cop, Commissioner Jim\nGordon, and his brilliant and beautiful daughter Barbara to do it. Now\nBatman must race to stop his archnemesis before his reign of terror claims\ntwo of the Dark Knight's closest friends. Can he finally put an end to the\ncycle of bloodlust and lunacy that links thes two iconic foes before it\nleads to a fatal conclusion? And as the horrifying origin of the Clown\nPrince of Crime is finally revealed, will the thin line that separates\nBatman's nobility and The Joker's insanity snap once and for all? '' --\ndust jacket.\"\r\n720,736,16981,Ralph Ellison,Invisible Man,https://images.gr-assets.com/books/1352854247l/16981.jpg,3.84,123073,\"classics, fiction\",\"An African-American man's search for success and the American dream leads\nhim out of college to Harlem and a growing sense of personal rejection and\nsocial invisibility. Reissue. 30,000 first printing.\"\r\n721,737,43015,Ishmael Beah,A Long Way Gone. Memoirs of a Boy Soldier,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524839125l/43015._SY475_.jpg,4.14,116260,\"memoir, nonfiction\",\"A human rights activist offers a firsthand account of war from the\nperspective of a former child soldier, detailing the violent civil war that\nwracked his native Sierra Leone and the government forces that transformed\na gentle young boy into a killer as a member of the army.\"\r\n722,738,9822,Robert C. O'Brien,Mrs. Frisby and the Rats of NIMH,https://images.gr-assets.com/books/1351191064l/9822.jpg,4.13,135978,\"fantasy, fiction\",\"Some extraordinary rats come to the aid of a mouse family in this Newbery\nMedal Award–winning classic by notable children’s author Robert C. O’Brien.\nMrs. Frisby, a widowed mouse with four small children, is faced with a\nterrible problem. She must move her family to their summer quarters\nimmediately, or face almost certain death. But her youngest son, Timothy,\nlies ill with pneumonia and must not be moved. Fortunately, she encounters\nthe rats of NIMH, an extraordinary breed of highly intelligent creatures,\nwho come up with a brilliant solution to her dilemma. And Mrs. Frisby in\nturn renders them a great service.\"\r\n723,739,39662,Stephen King,Different Seasons,https://images.gr-assets.com/books/1329662611l/39662.jpg,4.34,105961,\"horror, fiction\",\"Four novellas from Stephen King bound together by the changing of seasons,\neach taking on the theme of a journey with strikingly different tones and\ncharacters. This gripping collection begins with \"\"Rita Hayworth and the\nShawshank Redemption,\"\" in which an unjustly imprisoned convict seeks a\nstrange and startling revenge--the basis for the Best Picture Academy\nAward-nominee The Shawshank Redemption. Next is \"\"Apt Pupil,\"\" the\ninspiration for the film of the same name about top high school student\nTodd Bowden and his obsession with the dark and deadly past of an older man\nin town. In \"\"The Body,\"\" four rambunctious young boys plunge through the\nfacade of a small town and come face-to-face with life, death, and\nintimations of their own mortality. This novella became the movie Stand By\nMe. Finally, a disgraced woman is determined to triumph over death in \"\"The\nBreathing Method.\"\"--Provided by publisher.\"\r\n724,740,114345,\"Laura Ingalls Wilder, Garth Williams\",The Little House Collection,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1577932823l/114345._SX318_.jpg,4.33,124320,\"classics, fiction\",\"The Little House CollectionLaura Ingalls Wilder, Garth Williams\"\r\n725,741,33926,Melissa Bank,The Girls' Guide to Hunting and Fishing,https://images.gr-assets.com/books/1309210476l/33926.jpg,3.29,113977,\"fiction, contemporary\",\"In the critically acclaimed collection of stories, heroine Jane Rosenal\nembarks on a perilous and hilariouis personal journey into the realm of\ndating, love, work, and relationships. Reprint. Reprint.\"\r\n726,742,13453029,Hugh Howey,Wool Omnibus,https://images.gr-assets.com/books/1349614200l/13453029.jpg,4.24,81982,\"fantasy, fiction\",\"This Omnibus Edition collects the five Wool books into a single volume. The\nfirst Wool story was released as a standalone short in July of 2011. Due to\nreviewer demand, the rest of the story was released over the next six\nmonths. My thanks go out to those reviewers who clamored for more. Without\nyou, none of this would exist. Your demand created this as much as I did.\nThis is the story of mankind clawing for survival, of mankind on the edge.\nThe world outside has grown unkind, the view of it limited, talk of it\nforbidden. But there are always those who hope, who dream. These are the\ndangerous people, the residents who infect others with their optimism.\nTheir punishment is simple. They are given the very thing they profess to\nwant: They are allowed outside.\"\r\n727,743,28881,Christopher Moore,\"Lamb: The Gospel According to Biff, Christ's Childhood Pal\",https://images.gr-assets.com/books/1331419009l/28881.jpg,4.26,118576,\"fiction, fantasy\",\"The birth of Jesus has been well chronicled, as have his glorious\nteachings, acts, and divine sacrifice after his thirtieth birthday. But no\none knows about the early life of the Son of God, the missing years --\nexcept Biff, the Messiah's best bud, who has been resurrected to tell the\nstory in the divinely hilarious yet heartfelt work \"\"reminiscent of Vonnegut\nand Douglas Adams\"\" (Philadelphia Inquirer). Verily, the story Biff has to\ntell is a miraculous one, filled with remarkable journeys, magic, healings,\nkung fu, corpse reanimations, demons, and hot babes. Even the considerable\nwiles and devotion of the Savior's pal may not be enough to divert Joshua\nfrom his tragic destiny. But there's no one who loves Josh more -- except\nmaybe \"\"Maggie,\"\" Mary of Magdala -- and Biff isn't about to let his\nextraordinary pal suffer and ascend without a fight.\"\r\n728,744,6708,Eckhart Tolle,The Power of Now,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925535l/6708.jpg,4.1,104549,\"spirituality, nonfiction\",\"The author shares the secret of his own self-realization and the philosophy\nfor living in the present he has developed.\"\r\n729,745,12868761,Jenny  Lawson,Let's Pretend This Never Happened (A Mostly True Memoir),https://images.gr-assets.com/books/1489415716l/12868761.jpg,3.9,118475,\"memoir, nonfiction\",\"In an illustrated memoir, the creator of the Bloggess web log shares\nhumorous stories from her life, including her awkward upbringing in Texas\nand her relationship with her husband. Reprint. 250,000 first printing.\"\r\n730,746,127455,Scott Lynch,The Lies of Locke Lamora,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1576333981l/127455._SY475_.jpg,4.3,118751,\"fantasy, fiction\",\"Vowing to bring down the crime boss running the city, a group of Gentlemen\nBastards, led by Locke Lamora, sets out to beat the Capa at his own game,\ntaking on other thieves, murderers, beggars, prostitutes, and thugs in the\nprocess.\"\r\n731,747,518848,Garth Nix,Sabriel,https://images.gr-assets.com/books/1293655399l/518848.jpg,4.17,137047,\"fantasy, romance\",\"Sent to a boarding school in Ancelstierre as a young child, Sabriel has had\nlittle experience with the random power of Free Magic or the Dead who\nrefuse to stay dead in the Old Kingdom. But during her final semester, her\nfather, the Abhorsen, goes missing, and Sabriel knows she must enter the\nOld Kingdom to find him. She soon finds companions in Mogget, a cat whose\naloof manner barely conceals its malevolent spirit, and Touchstone, a young\nCharter Mage long imprisoned by magic, now free in body but still trapped\nby painful memories. As the three travel deep into the Old Kingdom, threats\nmount on all sides. And every step brings them closer to a battle that will\npit them against the true forces of life and death—and bring Sabriel face-\nto-face with her own destiny. With Sabriel, the first installment in the\nAbhorsen trilogy, Garth Nix exploded onto the fantasy scene as a rising\nstar, in a novel that takes readers to a world where the line between the\nliving and the dead isn't always clear—and sometimes disappears altogether.\"\r\n732,748,5161066,Charlaine Harris,Dead and Gone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186195l/5161066.jpg,4.01,145157,\"fantasy, paranormal\",Dead and GoneCharlaine Harris\r\n733,749,15753740,Jodi Picoult,The Storyteller,https://images.gr-assets.com/books/1356328634l/15753740.jpg,4.26,109313,\"fiction, contemporary\",The StorytellerJodi Picoult\r\n734,750,12578077,Jennifer L. Armentrout,Obsidian,https://images.gr-assets.com/books/1328275091l/12578077.jpg,4.23,164832,\"paranormal, romance\",\"When seventeen-year-old Katy moves to West Virginia she expects to be\nbored, until she meets her neighbor who just happens to be an alien.\"\r\n735,751,8694,Douglas Adams,\"Life, the Universe and Everything\",https://images.gr-assets.com/books/1333577589l/8694.jpg,4.19,131562,\"fiction, fantasy\",\"Follows Arthur Dent, reluctant space and time traveler, and his wacky\nentourage on a mission to prevent the destruction of the universe by killer\nrobots.\"\r\n736,752,17167166,Sarah J. Maas,Crown of Midnight,https://images.gr-assets.com/books/1391580481l/17167166.jpg,4.49,160485,\"romance, fantasy\",\"As the royal assassin to an evil king, eighteen-year-old Celaena Sardothien\nmust decide what she will fight for--survival, love, or the future of a\nkingdom.\"\r\n737,753,29800,Bryan Lee O'Malley,\"Scott Pilgrim, Volume 1: Scott Pilgrim's Precious Little Life\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348109012l/29800.jpg,4.18,126864,\"comics, fiction\",\"Scott Pilgrim's life is totally sweet. He's 23 years old, he's in a rock\nband, he's \"\"between jobs,\"\" and he's dating a cute high school girl. Nothing\ncould possibly go wrong, unless a seriously mind-blowing, dangerously\nfashionable, rollerblading delivery girl named Ramona Flowers starts\ncruising through his dreams and sailing by him at parties. Will Scott's\nawesome life get turned upside-down? Will he have to face Ramona's seven\nevil ex-boyfriends in battle? The short answer is yes. The long answer is\nSCOTT PILGRIM, VOLUME 1: SCOTT PILGRIM'S PRECIOUS LITTLE LIFE.\"\r\n738,754,6366437,Jeannette Walls,Half Broke Horses: A True Life Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348507420l/6366437.jpg,4.05,110597,\"fiction, memoir\",Half Broke Horses: A True Life NovelJeannette Walls\r\n739,755,386372,Terry Pratchett,Mort,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181166l/386372.jpg,4.22,128450,\"fantasy, fiction\",MortTerry Pratchett\r\n740,756,6644117,Julie Kagawa,\"The Iron King (The Iron Fey, #1) \",https://images.gr-assets.com/books/1327877670l/6644117.jpg,3.92,158063,\"romance, paranormal\",\"Meghan Chase has a secret destiny—one she could never have imagined…\nSomething has always felt slightly off in Meghan's life, ever since her\nfather disappeared before her eyes when she was six. She has never quite\nfit in at school…or at home. When a dark stranger begins watching her from\nafar, and her prankster best friend becomes strangely protective of her,\nMeghan senses that everything she's known is about to change. But she could\nnever have guessed the truth—that she is the daughter of a mythical faery\nking and is a pawn in a deadly war. Now Meghan will learn just how far\nshe'll go to save someone she cares about, to stop a mysterious evil no\nfaery creature dare face…and to find love with a young prince who might\nrather see her dead than let her touch his icy heart.\"\r\n741,757,256008,Larry McMurtry,Lonesome Dove,https://images.gr-assets.com/books/1378573063l/256008.jpg,4.47,111498,\"fiction, classics\",\"Chronicles a cattle drive in the nineteenth century from Texas to Montana,\nand follows the lives of Gus and Call, the cowboys heading the drive, Gus's\nwoman, Lorena, and Blue Duck, a sinister Indian renegade.\"\r\n742,758,32145,Mary Roach,Stiff: The Curious Lives of Human Cadavers,https://images.gr-assets.com/books/1347656489l/32145.jpg,4.05,122502,\"nonfiction, science\",\"A look inside the world of forensics examines the use of human cadavers in\na wide range of endeavors, including research into new surgical procedures,\nspace exploration, and a Tennessee human decay research facility.\"\r\n743,759,8709527,Richelle Mead,Bloodlines,https://images.gr-assets.com/books/1297199431l/8709527.jpg,4.22,140599,\"fantasy, paranormal\",\"A first installment in a long-anticipated spin-off series by the\ninternationally best-selling author of the Vampire Academy novels\nintroduces a new set of characters and is presented from the viewpoint of\nSydney, an inhibited girl who endeavors to overcome her fears. 500,000\nfirst printing.\"\r\n744,760,9532,Orson Scott Card,Ender's Shadow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424904668l/9532.jpg,4.3,115521,\"fiction, fantasy\",\"The novel that launched the bestselling Ender's Shadow series. The human\nrace is at War with the \"\"Buggers,\"\" an insect-like alien race. As Earth\nprepares to defend itself from total destruction at the hands of an\ninscrutable enemy, all focus is on the development of military geniuses who\ncan fight such a war, and win. The long distances of interstellar space\nhave given hope to the defenders of Earth--they have time to train these\nfuture commanders up from childhood, forging them into an irresistible\nforce in the high orbital facility called the Battle School. Andrew \"\"Ender\"\"\nWiggin was not the only child in the Battle School; he was just the best of\nthe best. In Ender's Shadow, Card tells the story of another of those\nprecocious generals, the one they called Bean--the one who became Ender's\nright hand, part of his team, in the final battle against the Buggers.\nBean's past was a battle just to survive. His success brought him to the\nattention of the Battle School's recruiters, those people scouring the\nplanet for leaders, tacticians, and generals to save Earth from the threat\nof alien invasion. Bean was sent into orbit, to the Battle School. And\nthere he met Ender.... THE ENDER UNIVERSE Ender series Ender’s Game / Ender\nin Exile / Speaker for the Dead / Xenocide / Children of the Mind Ender’s\nShadow series Ender’s Shadow / Shadow of the Hegemon / Shadow Puppets /\nShadow of the Giant / Shadows in Flight Children of the Fleet The First\nFormic War (with Aaron Johnston) Earth Unaware / Earth Afire / Earth\nAwakens The Second Formic War (with Aaron Johnston) The Swarm /The Hive\nEnder novellas A War of Gifts /First Meetings\"\r\n745,761,6063187,Sophie Kinsella,Twenties Girl,https://images.gr-assets.com/books/1320544759l/6063187.jpg,3.82,119105,\"romance, fiction\",\"Entreated by the bossy ghost of her great aunt to track down a missing\nnecklace, Lara Lington finds her search challenged by her floundering\nstart-up business, her best friend's defection, and her unfaithful\nboyfriend. By the best-selling author of the Shopaholic series. 400,000\nfirst printing.\"\r\n746,762,375013,Thomas Keneally,Schindler's Ark,https://images.gr-assets.com/books/1348163457l/375013.jpg,4.34,108338,\"history, classics\",Based on the life of Oskar Schindler.\r\n747,763,11337,Toni Morrison,The Bluest Eye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208495l/11337.jpg,3.99,109944,\"fiction, classics\",\"The story of Pecola Breedlove profiles an eleven-year-old African-American\ngirl growing up in an America that values blue-eyed blondes and the tragedy\nthat results from her longing to be accepted.\"\r\n748,764,5971165,Philippa Gregory,The White Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439412993l/5971165._SX318_.jpg,3.9,119739,\"fiction, history\",\"A tale of the Wars of the Roses follows Elizabeth Woodville, who ascends to\nroyalty and fights for the well-being of her family, including two sons\nwhose imprisonment in the Tower of London precedes a devastating unsolved\nmystery.\"\r\n749,765,92057,\"Malcolm X, Alex Haley\",The Autobiography of Malcolm X,https://images.gr-assets.com/books/1434682864l/92057.jpg,4.29,124805,\"biography, history\",\"The Black leader discusses his political philosophy and reveals details of\nhis life, shedding light on the ideas that enabled him to gain the\nallegiance of a still growing percentage of the Black population\"\r\n750,766,23754,\"Neil Gaiman, Sam Kieth, Mike Dringenberg, Malcolm Jones III, Todd Klein, Karen  Berger\",Preludes & Nocturnes,https://images.gr-assets.com/books/1411609637l/23754.jpg,4.3,122540,\"comics, fantasy\",\"\"\"The Sandman was a groundbreaking and award-winning series that told the\ndark and tragic tale of Morpheus, the King of Dreams. A fascinating\nmythology of horror and consequence, this epic masterfully combined\nintriguing literature with captivating art. The Sandman Companion is an\nexhaustive guide to this legend. Revealing hitherto undisclosed information\nand behind-the-scenes secrets, this book features in-depth interviews,\nnever-before-seen illustrations, character origins, and story explanations\nand analysis. Also including excerpts from the original proposal for the\nseries, this handbook is the perfect complement to the Sandman graphic\nnovels.\"\"--Publisher description.\"\r\n751,767,110737,Laura Hillenbrand,Seabiscuit,https://images.gr-assets.com/books/1171644213l/110737.jpg,4.2,111497,\"nonfiction, history\",\"The author retraces the amazing journey of Seabiscuit, a horse with crooked\nlegs and a pathetic tail that nevertheless made racing history in 1938,\nthanks to the efforts of a trainer, an owner, and a jockey who transformed\na bottom-level racehorse into a legend. Reader's Guide included. Reprint.\"\r\n752,768,21686,Dennis Lehane,Shutter Island,https://images.gr-assets.com/books/1329269081l/21686.jpg,4.07,113718,\"mystery, fiction\",\"The year is 1954. U.S. Marshal Teddy Daniels and his new partner, Chuck\nAule, have come to Shutter Island, home of Ashecliffe Hospital for the\nCriminally Insane, to investigate the disappearance of a patient. Multiple\nmurderess Rachel Solando is loose somewhere on this remote and barren\nisland, despite having been kept in a locked cell under constant\nsurveillance. As a killer hurricane relentlessly bears down on them, a\nstrange case takes on even darker, more sinister shades—with hints of\nradical experimentation, horrifying surgeries, and lethal countermoves made\nin the cause of a covert shadow war. No one is going to escape Shutter\nIsland unscathed, because nothing at Ashecliffe Hospital is what it seems.\nBut then neither is Teddy Daniels.\"\r\n753,769,188572,Arthur Conan Doyle,The Complete Sherlock Holmes,https://images.gr-assets.com/books/1465539139l/188572.jpg,4.5,109754,\"classics, mystery\",\"Presents the four novels and fifty-six short stories which comprise the\nentire Sherlock Holmes saga\"\r\n754,770,13006,\"William Shakespeare, Roma Gill\",The Tragedy of Julius Caesar,https://images.gr-assets.com/books/1354574927l/13006.jpg,3.65,119933,\"classics, fiction\",\"The Tragedy of Julius CaesarWilliam Shakespeare, Roma Gill\"\r\n755,771,9938498,Erik Larson,\"In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin\",https://images.gr-assets.com/books/1327864303l/9938498.jpg,3.81,110481,\"history, nonfiction\",\"Documents the efforts of the first American ambassador to Hitler's Germany,\nWilliam E. Dodd, to acclimate to a residence in an increasingly violent\ncity where he is forced to associate with the Nazis while his daughter\npursues a relationship with Gestapochief Rudolf Diels.\"\r\n756,772,30289,\"Plato, Desmond Lee\",Πολιτεία,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925655l/30289.jpg,3.9,110274,\"philosophy, classics\",\"A model for the ideal state includes discussion of the nature and\napplication of justice, the role of the philosopher in society, the goals\nof education, and the effects of art upon character.\"\r\n757,773,47021,William Shakespeare,The Taming of the Shrew,https://images.gr-assets.com/books/1327935253l/47021.jpg,3.81,126318,\"classics, fiction\",\"A comedy of Petruchio's determination to subdue the irascible Katherine and\nto make her his wife\"\r\n758,774,13206828,Marissa Meyer,Cress,https://images.gr-assets.com/books/1470057005l/13206828.jpg,4.46,162069,\"fantasy, romance\",\"Working to overthrow Queen Levana, a fugitive Cinder and her companions\nsearch for Rapunzel-like hacker Cress, who has been trapped on a satellite\nsince childhood and who has received orders from Levana to foil Cinder's\nefforts. By the best-selling author of Scarlet.\"\r\n759,775,341879,Patti Smith,Just Kids,https://images.gr-assets.com/books/1259762407l/341879.jpg,4.14,106542,\"memoir, music\",Just KidsPatti Smith\r\n760,777,227941,Jane Green,Jemima J,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207990l/227941.jpg,3.62,101436,\"romance, fiction\",\"Plus-sized Jemima Jones struggles with weight, dating, and work issues as\nshe navigates a treacherous world dominated by thinner women, in the U.S.\ndebut of a best-selling British novelist. Reprint. 40,000 first printing.\"\r\n761,778,30597,\"Victor Hugo, Walter J. Cobb\",Notre-Dame de Paris,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342667l/30597.jpg,3.97,119851,\"classics, fiction\",\"In the famed novel set against the backdrop of medieval Paris, Quasimodo,\nthe hunchbacked bellringer of Notre-Dame Cathedral, struggles to save the\nbeautiful gypsy dancer Esmeralda from being unjustly executed. Reissue.\"\r\n762,779,5211,Rohinton Mistry,A Fine Balance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1551173390l/5211._SY475_.jpg,4.34,99252,\"fiction, contemporary\",\"In India during the mid-1970s, after a \"\"state of internal emergency\"\" is\ndeclared, four very different people--a widowed seamstress, a student, and\na man and his nephew who have fled their village's caste violence--find\ntheir lives becoming inextricably intertwined\"\r\n763,780,77727,\"Bill Watterson, G.B. Trudeau\",Calvin and Hobbes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441227694l/77727._SX318_.jpg,4.61,117788,\"comics, fiction\",Online: gocomics.com/calvinandhobbes/\r\n764,781,24765,Scott Westerfeld,Specials,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390340887l/24765.jpg,3.77,139168,\"fantasy, fiction\",\"\"\"Special Circumstances\"\": The words have sent chills down Tally's spine\nsince her days as a repellent, rebellious ugly. Back then Specials were a\nsinister rumor -- frighteningly beautiful, dangerously strong,\nbreathtakingly fast. Ordinary pretties might live their whole lives without\nmeeting a Special. But Tally's never been ordinary. And now, in the third\nbook in the series, Tally's been turned into a Special: a superamped\nfighting machine, engineered to keep the uglies down and the pretties\nstupid. The strength, the speed, and the clarity and focus of her thinking\nfeel better than anything Tally can remember. Most of the time. One tiny\ncorner of her heart still remembers something more. Still, it's easy to\ntune that out -- until Tally's offered a chance to stamp out the rebels of\nthe New Smoke permanently. It all comes down to one last choice: listen to\nthat tiny, faint heartbeat, or carry out the mission she's programmed to\ncomplete. Either way, Tally's world will never be the same.\"\r\n765,782,58345,Kate Chopin,The Awakening,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170507247l/58345._SY475_.jpg,3.63,125474,\"classics, fiction\",\"When first published in 1899, \"\"The Awakening\"\" shocked readers with its\nhonest treatment of female marital infidelity. Audiences accustomed to the\npieties of late Victorian romantic fiction were taken aback by Chopin's\ndaring portrayal of a woman trapped in a stifling marriage, who seeks and\nfinds passionate physical love outside the straitened confines of her\ndomestic situation. Aside from its unusually frank treatment of a then-\ncontroversial subject, the novel is widely admired today for its literary\nqualities. Edmund Wilson characterized it as a work \"\"quite uninhibited and\nbeautifully written, which anticipates D. H. Lawrence in its treatment of\ninfidelity.\"\" Although the theme of marital infidelity no longer shocks, few\nnovels have plumbed the psychology of a woman involved in an illicit\nrelationship with the perception, artistry, and honesty that Kate Chopin\nbrought to \"\"The Awakening.\"\" Now available in this inexpensive edition, it\noffers a powerful and provocative reading experience to modern readers.\nUnabridged Dover (1993) republication of the work first published by\nHerbert S. Stone & Co., Chicago, 1899.\"\r\n766,783,4134071,\"P.C. Cast, Kristin Cast\",Hunted,https://images.gr-assets.com/books/1438042897l/4134071.jpg,3.93,138103,\"fantasy, paranormal\",\"HuntedP.C. Cast, Kristin Cast\"\r\n767,784,10929,Mitch Albom,For One More Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438705425l/10929._SX318_.jpg,4.09,102193,\"fiction, contemporary\",For One More DayMitch Albom\r\n768,785,32669,Tom Clancy,Clear and Present Danger,https://images.gr-assets.com/books/1291440438l/32669.jpg,4.08,105317,\"fiction, thriller\",\"The assassinations of the U.S. ambassador and the visiting head of the FBI\nby Colombian drug lords trigger a mysterious covert response and an\ninvestigation of U.S. and Columbian by Jack Ryan.\"\r\n769,786,30120,Shel Silverstein,Falling Up,https://images.gr-assets.com/books/1327871908l/30120.jpg,4.33,111779,\"poetry, fantasy\",\"Millie McDeevit screamed a scream So loud it made her eyebrows steam. She\nscreamed so loud Her jawbone broke, Her tongue caught fire, Her nostrils\nsmoked... Poor Screamin' Millie is just one of the unforgettable characters\nin this wondrous new book of poems and drawings by the creator of Where the\nSidewalk Ends and A Light in the Attic. Here you will also meet Allison\nBeals and her twenty-five eels; Danny O'Dare, the dancin' bear; the Human\nBalloon; and Headphone Harold. So come, wander through the Nose Garden,\nride the Little Hoarse, eat in the Strange Restaurant, and let the magic of\nShel Silverstein open your eyes and tickle your mind.\"\r\n770,787,7821447,Justin Halpern,Sh*t My Dad Says,https://images.gr-assets.com/books/1370399211l/7821447.jpg,3.98,102560,\"nonfiction, memoir\",Sh*t My Dad SaysJustin Halpern\r\n771,788,23955,\"Irvine Welsh, Eric Lindor Fall\",Trainspotting,https://images.gr-assets.com/books/1375258001l/23955.jpg,4.07,59453,\"fiction, contemporary\",\"TrainspottingIrvine Welsh, Eric Lindor Fall\"\r\n772,789,29581,Isaac Asimov,Foundation and Empire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391454612l/29581.jpg,4.2,105595,\"fiction, classics\",\"a science-fiction narrative of the Foundation, a colony of psychologists,\nwhich forms the center of power in the Galaxy\"\r\n773,790,6596,Miguel Ruiz,\"The Four Agreements: A Practical Guide to Personal Freedom, A Toltec Wisdom Book\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348204644l/6596.jpg,4.12,97016,\"philosophy, nonfiction\",\"Identifies four self-limiting beliefs that impede one's experience of\nfreedom, true happiness, and love.\"\r\n774,791,6614960,Jodi Picoult,House Rules,https://images.gr-assets.com/books/1290479868l/6614960.jpg,4.01,111239,\"mystery, contemporary\",House RulesJodi Picoult\r\n775,792,22917,\"Jacob Grimm, Wilhelm Grimm, Josef Scharl, Padraic Colum, Joseph Campbell, Margaret Raine Hunt, James Stern\",Brüder Grimm: Kinder- und Hausmärchen,https://images.gr-assets.com/books/1369540060l/22917.jpg,4.31,116324,\"classics, fantasy\",\"Brüder Grimm: Kinder- und HausmärchenJacob Grimm, Wilhelm Grimm, Josef Scharl, Padraic Colum, Joseph Campbell, Margaret Raine Hunt, James Stern\"\r\n776,793,3980,E.L. Konigsburg,From the Mixed-Up Files of Mrs. Basil E. Frankweiler,https://images.gr-assets.com/books/1327784751l/3980.jpg,4.15,134537,\"fiction, mystery\",\"Having run away with her younger brother to live in the Metropolitan Museum\nof Art, twelve-year-old Claudia strives to keep things in order in their\nnew home and to become a changed person and a heroine to herself.\"\r\n777,794,16130549,Stephen King,Doctor Sleep,https://images.gr-assets.com/books/1362415596l/16130549.jpg,4.1,95276,\"horror, fiction\",\"After decades as an itinerant alcoholic, middle-aged Dan Torrance uses his\nremnant powers to assist the dying before coming to the aid of a twelve-\nyear-old girl being tortured by a tribe of murderous paranormals.\"\r\n778,795,4271,Nick Hornby,About a Boy,https://images.gr-assets.com/books/1382004144l/4271.jpg,3.79,101999,\"fiction, contemporary\",About a BoyNick Hornby\r\n779,796,15760001,Samantha Young,On Dublin Street,https://images.gr-assets.com/books/1490401910l/15760001.jpg,4.24,136761,\"contemporary, romance\",\"When Jocelyn leaves her tragic past behind and moves to Scotland, she meets\nBraden Carmichael, who is determined to get Jocelyn into his bed, despite\nJocelyn's hesitancy to get into a relationship.\"\r\n780,797,3206011,\"Francis Chan, Danae Yankoski, Chris Tomlin\",Crazy Love: Overwhelmed by a Relentless God,https://images.gr-assets.com/books/1328763220l/3206011.jpg,4.15,106351,\"christian, religion\",\"Explains how many practicing Christians lead lives concerned with security\nand material comfort, and advocates for a Christianity that is based on\nradical obedience to the words of scripture and a commitment to help others\nwho are in need.\"\r\n781,798,7770,Dr. Seuss,\"One Fish, Two Fish, Red Fish, Blue Fish\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165640023l/7770._SX318_.jpg,4.12,117582,\"fiction, classics\",\"A story-poem about the activities of such unusual animals as the Nook,\nWump, Yink, Yop, Gack, and the Zeds.\"\r\n782,799,32423,Dean Koontz,Watchers,https://images.gr-assets.com/books/1308458930l/32423.jpg,4.16,109595,\"fiction, thriller\",\"Two creatures, the end result of experiments in genetic engineering and\nenhanced intelligence, escape from a government laboratory and bring either\ndeath and destruction or a touching new kind of love to those they\nencounter. Reissue.\"\r\n783,800,821611,Helen Keller,The Story of My Life,https://images.gr-assets.com/books/1320429331l/821611.jpg,4.07,107313,\"biography, classics\",The Story of My LifeHelen Keller\r\n784,801,6224935,Jonathan Tropper,This Is Where I Leave You,https://images.gr-assets.com/books/1467397162l/6224935.jpg,3.88,98645,\"fiction, contemporary\",\"Judd Foxman is thrown together with his dysfunctional family when his\nfather dies, while at the same time coping with his wife's infidelity and\nthe end of his marriage.\"\r\n785,802,7108001,Seth Grahame-Smith,Abraham Lincoln: Vampire Hunter,https://images.gr-assets.com/books/1291165397l/7108001.jpg,3.7,106336,\"fiction, fantasy\",\"Indiana, 1818. Moonlight falls through the dense woods that surround a one-\nroom cabin, where a nine-year-old Abraham Lincoln kneels at his suffering\nmother's bedside. She's been stricken with something the old-timers call\n\"\"Milk Sickness.\"\" \"\"My baby boy...\"\" she whispers before dying. Only later\nwill the grieving Abe learn that his mother's fatal affliction was actually\nthe work of a vampire. When the truth becomes known to young Lincoln, he\nwrites in his journal, \"\"henceforth my life shall be one of rigorous study\nand devotion. I shall become a master of mind and body. And this mastery\nshall have but one purpose...\"\" Gifted with his legendary height, strength,\nand skill with an ax, Abe sets out on a path of vengeance that will lead\nhim all the way to the White House. While Abraham Lincoln is widely lauded\nfor saving a Union and freeing millions of slaves, his valiant fight\nagainst the forces of the undead has remained in the shadows for hundreds\nof years. That is, until Seth Grahame-Smith stumbled upon The Secret\nJournal of Abraham Lincoln, and became the first living person to lay eyes\non it in more than 140 years. Using the journal as his guide and writing in\nthe grand biographical style of Doris Kearns Goodwin and David McCullough,\nSeth has reconstructed the true life story of our greatest president for\nthe first time-all while revealing the hidden history behind the Civil War\nand uncovering the role vampires played in the birth, growth, and near-\ndeath of our nation.\"\r\n786,803,271199,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442161482l/271199._SX318_.jpg,4.23,118467,\"manga, fantasy\",\"Tohru Honda is an orphaned teenager who comes to live with the Sohma family\nin exchange for housekeeping duties, but she soon comes to know the family\nsecret.\"\r\n787,804,12985,William Shakespeare,The Tempest,https://images.gr-assets.com/books/1327793692l/12985.jpg,3.8,125178,\"classics, fiction\",\"Presents Shakespeare's play about a shipwrecked Duke who learns to command\nthe spirits\"\r\n788,805,6917952,\"P.C. Cast, Kristin Cast\",Burned: A House of Night Novel,https://images.gr-assets.com/books/1327944437l/6917952.jpg,3.98,120763,\"fantasy, paranormal\",\"Burned: A House of Night NovelP.C. Cast, Kristin Cast\"\r\n789,806,5096,\"Stephen King, Dave McKean\",Wizard and Glass,https://images.gr-assets.com/books/1327946510l/5096.jpg,4.24,105026,\"fantasy, fiction\",\"While Roland the Gunslinger and his companions leap between worlds, he\nrelates his experiences with the elusive, powerful emotion of love in a\njourney into his own past\"\r\n790,807,18302455,Dave Eggers,The Circle,https://images.gr-assets.com/books/1376419833l/18302455.jpg,3.46,109412,\"fiction, contemporary\",The CircleDave Eggers\r\n791,808,9673436,Brian Selznick,The Invention of Hugo Cabret,https://images.gr-assets.com/books/1422312376l/9673436.jpg,4.23,132159,\"fiction, fantasy\",\"When twelve-year-old Hugo, an orphan living and repairing clocks within the\nwalls of a Paris train station in 1931, meets a mysterious toyseller and\nhis goddaughter, his undercover life and his biggest secret are\njeopardized.\"\r\n792,809,5479,\"Aldous Huxley, Christopher Hitchens\",Brave New World/Brave New World Revisited,https://images.gr-assets.com/books/1331315450l/5479.jpg,4.16,108124,\"classics, fiction\",\"The astonishing novel Brave New World, originally published in 1932,\npresents Aldous Huxley's vision of the future -- of a world utterly\ntransformed. Through the most efficient scientific and psychological\nengineering, people are genetically designed to be passive and therefore\nconsistently useful to the ruling class. This powerful work of speculative\nfiction sheds a blazing critical light on the present and is considered to\nbe Huxley's most enduring masterpiece. Following Brave New World is the\nnonfiction work Brave New World Revisited, first published in 1958. It is a\nfascinating work in which Huxley uses his tremendous knowledge of human\nrelations to compare the modern-day world with the prophetic fantasy\nenvisioned in Brave New World, including threats to humanity, such as\noverpopulation, propaganda, and chemical persuasion.\"\r\n793,810,1087204,Bisco Hatori,桜蘭高校ホスト部 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328993l/1087204.jpg,4.36,113881,\"manga, romance\",桜蘭高校ホスト部 1Bisco Hatori\r\n794,811,18812405,Mary Kubica,The Good Girl,https://images.gr-assets.com/books/1388340126l/18812405.jpg,3.81,100936,\"mystery, fiction\",The Good GirlMary Kubica\r\n795,812,16070903,Abbi Glines,\"Fallen Too Far (Too Far, #1)\",https://images.gr-assets.com/books/1349565157l/16070903.jpg,4.21,138871,\"romance, contemporary\",\"Fallen Too Far (Too Far, #1)Abbi Glines\"\r\n796,813,18081809,Rainbow Rowell,Landline,https://images.gr-assets.com/books/1499378092l/18081809.jpg,3.55,113805,\"fiction, romance\",\"#1 New York Times bestselling author! A New York Times Best Seller!\nGoodreads Choice Award Winner for Best Fiction of 2014! An Indie Next Pick!\nIF YOU GOT A SECOND CHANCE AT LOVE, WOULD YOU MAKE THE SAME CALL? As far as\ntime machines go, a magic telephone is pretty useless. TV writer Georgie\nMcCool can't actually visit the past -- all she can do is call it, and hope\nit picks up. And hope he picks up. Because once Georgie realizes she has a\nmagic phone that calls into the past, all she wants to do is make things\nright with her husband, Neal. Maybe she can fix the things in their past\nthat seem unfixable in the present. Maybe this stupid phone is giving her a\nchance to start over ... Does Georgie want to start over? From Rainbow\nRowell, the New York Times bestselling author of Eleanor & Park and\nFangirl, comes this heart-wrenching - and hilarious - take on fate, time,\ntelevision and true love. Landline asks if two people are ever truly on the\nsame path, or whether love just means finding someone who will keep meeting\nyou halfway, no matter where you end up.\"\r\n797,814,6262365,\"P.C. Cast, Kristin Cast\",Tempted,https://images.gr-assets.com/books/1408633041l/6262365.jpg,3.96,127387,\"fantasy, paranormal\",\"A latest entry in the series that includes Hunted and Chosen finds High\nPriestess-in-training Zoey Redbird juggling three prospective love\ninterests while investigating a dark force lurking beneath the Tulsa Depot\nthat is forcing her into a confrontation with Kalona. Reprint.\"\r\n798,815,12497,Cormac McCarthy,No Country for Old Men,https://images.gr-assets.com/books/1443231179l/12497.jpg,4.12,100513,\"fiction, thriller\",\"Stumbling upon a bloody massacre, a cache of heroin, and more than two\nmillion in cash during a hunting trip, Llewelyn Moss removes the money, a\ndecision that draws him and his young wife into the middle of a violent\nconfrontation.\"\r\n799,816,6101138,Hilary Mantel,Wolf Hall,https://images.gr-assets.com/books/1336576165l/6101138.jpg,3.85,102936,\"fiction, history\",Wolf HallHilary Mantel\r\n800,817,6294,Diana Wynne Jones,Howl's Moving Castle,https://images.gr-assets.com/books/1407450489l/6294.jpg,4.3,123945,\"fantasy, fiction\",A new look for one of Diana Wynne Jones' funniest and most popular novels.\r\n801,818,11570,\"Stephen King, William Olivier Desmond\",Dreamcatcher,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922451l/11570.jpg,3.59,115855,\"horror, fiction\",\"DreamcatcherStephen King, William Olivier Desmond\"\r\n802,819,16902,Henry David Thoreau,Walden; or Life in the Woods,https://images.gr-assets.com/books/1465675526l/16902.jpg,3.79,108062,\"classics, philosophy\",\"The author's famous work on his time living on the shores of Walden Pond\nand ruminating on nature, life, and human existence.\"\r\n803,820,28921,Kazuo Ishiguro,The Remains of the Day,https://images.gr-assets.com/books/1327128714l/28921.jpg,4.1,105892,\"fiction, classics\",\"An English butler reflects--sometimes bitterly, sometimes humorously--on\nhis service to a lord between the two world wars and discovers doubts about\nhis master's character and about the ultimate value of his own service to\nhumanity\"\r\n804,821,10766509,Nicholas Sparks,The Best of Me,https://images.gr-assets.com/books/1301685366l/10766509.jpg,3.91,103915,\"romance, fiction\",The Best of MeNicholas Sparks\r\n805,822,10746542,Julian Barnes,The Sense of an Ending,https://images.gr-assets.com/books/1311704453l/10746542.jpg,3.7,94968,\"fiction, mystery\",\"Follows a middle-aged man as he reflects on a past he thought was behind\nhim, until he is presented with a legacy that forces him to reconsider\ndifferent decisions, and to revise his place in the world.\"\r\n806,823,64863,Sue Grafton,A is for Alibi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198817l/64863.jpg,3.82,116026,\"mystery, fiction\",A is for AlibiSue Grafton\r\n807,824,1554,\"Sophocles, J.E. Thomas\",Οἰδίπους Τύραννος,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182316l/1554.jpg,3.67,119496,\"fiction, classics\",\"To make Oedipus more accessible for the modern reader, our Prestwick House\nLiterary Touchstone Edition? includes a glossary of the more difficult\nwords, as well as convenient sidebar notes to enlighten the reader on\naspects that may be confusing or overlooked. We hope that the reader may,\nthrough this edition, more fully enjoy the beauty of the verse, the wisdom\nof the insights, and the impact of the drama.Sophocles? Oedipus Rex has\nnever been surpassed for the raw and terrible power with which its hero\nstruggles to answer the eternal question, \"\"Who am I?\"\" The play, a story of\na king who?acting entirely in ignorance?kills his father and marries his\nmother, unfolds with shattering power; we are helplessly carried along with\nOedipus towards the final, horrific truth.This vibrant, new translation\ninvites its readers to lose themselves in the unfolding of this tragic\ntale?as suspenseful as a detective mystery, yet with an outcome long ago\ndetermined by Fate.\"\r\n808,825,5960325,Lisa See,Shanghai Girls,https://images.gr-assets.com/books/1327968416l/5960325.jpg,3.87,106729,\"fiction, history\",\"Through arranged marriages, two sisters leave Shanghai in 1937 to find a\nnew life in Los Angeles. By the best-selling author of Peony in Love and\nSnow Flower and the Secret Fan. Reprint.\"\r\n809,826,5659,\"Kenneth Grahame, Gillian Avery\",The Wind in the Willows,https://images.gr-assets.com/books/1423183570l/5659.jpg,3.98,124612,\"classics, fiction\",\"The escapades of four animal friends who live along a river in the English\ncountryside--Toad, Mole, Rat, and Badger.\"\r\n810,827,15749186,Jenny Han,To All the Boys I've Loved Before,https://images.gr-assets.com/books/1372086100l/15749186.jpg,4.11,136938,ebooks,\"\"\"Lara Jean writes love letters to all the boys she has loved and then hides\nthem in a hatbox until one day those letters are accidentally sent\"\"--\"\r\n811,828,9516,\"Marjane Satrapi, Mattias Ripa\",Persepolis,https://images.gr-assets.com/books/1425871473l/9516.jpg,4.23,117103,\"comics, memoir\",\"The great-granddaughter of Iran's last emperor and the daughter of ardent\nMarxists describes growing up in Tehran in a country plagued by political\nupheaval and vast contradictions between public and private life. Reprint.\n75,000 first printing.\"\r\n812,829,3087,E.M. Forster,A Room with a View,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388781285l/3087.jpg,3.91,109994,\"classics, fiction\",\"British social comedy examines a young heroine's struggle against strait-\nlaced Victorian attitudes as she rejects the man her family has encouraged\nher to marry and chooses, instead, a socially unsuitable fellow she met on\nholiday in Italy. Classic exploration of passion, human nature and social\nconvention.\"\r\n813,830,6931356,Kody Keplinger,The DUFF: Designated Ugly Fat Friend,https://images.gr-assets.com/books/1271108843l/6931356.jpg,3.86,136736,\"contemporary, romance\",\"Seventeen-year-old Bianca Piper starts sleeping with Wesley Rush, a\nnotorious womanizer who disgusts her, in order to distract her from her\npersonal problems, and to her surprise, the two of them find they have a\nlot in common and are able to help each other find more productive ways to\ndeal with their difficulties.\"\r\n814,831,1295102,Sarah Dessen,Lock and Key,https://images.gr-assets.com/books/1479691949l/1295102.jpg,4.01,120475,\"romance, contemporary\",\"When she is abandoned by her alcoholic mother, Ruby winds up living with\nCora, the sister she has not seen for ten years, and learns about Cora's\nnew life, what makes a family, and that she too has something to offer\nothers.\"\r\n815,832,268602,J.D. Robb,Naked in Death,https://images.gr-assets.com/books/1297783540l/268602.jpg,4.13,78028,\"mystery, romance\",\"Eve Dallas, a New York police lieutenant, is in over her head when she\nbreaks the rules and falls in love with a suspect in her most recent case.\nReissue.\"\r\n816,833,5355,John Grisham,The Chamber,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388336784l/5355.jpg,3.76,102715,\"fiction, mystery\",\"In the corridors of Chicago's top law firm: Twenty -six-year-old Adam Hall\nstands on the brink of a brilliant legal career. Now he is risking it all\nfor a death-row killer and an impossible case. Maximum Security Unit,\nMississippi State Prison: Sam Cayhall is a former Klansman and unrepentant\nracist now facing the death penalty for a fatal bombing in 1967. He has run\nout of chances -- except for one: the young, liberal Chicago lawyer who\njust happens to be his grandson. While the executioners prepare the gas\nchamber, while the protesters gather and the TV cameras wait, Adam has only\ndays, hours, minutes to save his client. For between the two men is a chasm\nof shame, family lies, and secrets -- including the one secret that could\nsave Sam Cayhall's life... or cost Adam his. From the Hardcover edition.\"\r\n817,834,4502877,Stephenie Meyer,Midnight Sun (Partial Draft),https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,4.03,138118,\"fantasy, romance\",\"It's here! #1 bestselling author Stephenie Meyer makes a triumphant return\nto the world of Twilight with this highly-anticipated companion: the iconic\nlove story of Bella and Edward told from the vampire's point of view. When\nEdward Cullen and Bella Swan met in Twilight, an iconic love story was\nborn. But until now, fans have heard only Bella's side of the story. At\nlast, readers can experience Edward's version in the long-awaited companion\nnovel, Midnight Sun. This unforgettable tale as told through Edward's eyes\ntakes on a new and decidedly dark twist. Meeting Bella is both the most\nunnerving and intriguing event he has experienced in all his years as a\nvampire. As we learn more fascinating details about Edward's past and the\ncomplexity of his inner thoughts, we understand why this is the defining\nstruggle of his life. How can he justify following his heart if it means\nleading Bella into danger? In Midnight Sun, Stephenie Meyer transports us\nback to a world that has captivated millions of readers and brings us an\nepic novel about the profound pleasures and devastating consequences of\nimmortal love.\"\r\n818,835,204042,\"Masashi Kishimoto, Katy Bridges\",NARUTO -ナルト- 巻ノ一 ,https://images.gr-assets.com/books/1435524806l/204042.jpg,4.35,104633,\"fantasy, comics\",\"The world’s most popular ninja comic! Naruto is a young shinobi with an\nincorrigible knack for mischief. He’s got a wild sense of humor, but Naruto\nis completely serious about his mission to be the world’s greatest ninja!\nTwelve years ago the Village Hidden in the Leaves was attacked by a\nfearsome threat. A nine-tailed fox spirit claimed the life of the village\nleader, the Hokage, and many others. Today, the village is at peace and a\ntroublemaking kid named Naruto is struggling to graduate from Ninja\nAcademy. His goal may be to become the next Hokage, but his true destiny\nwill be much more complicated. The adventure begins now!\"\r\n819,836,13227454,Rachel Joyce,The Unlikely Pilgrimage of Harold Fry,https://images.gr-assets.com/books/1335816092l/13227454.jpg,3.89,94012,\"contemporary, fiction\",\"Harold Fry is convinced that he must deliver a letter to an old love in\norder to save her, meeting various characters along the way and reminiscing\nabout the events of his past and people he has known, as he tries to find\npeace and acceptance.\"\r\n820,837,13262783,David Levithan,Every Day,https://images.gr-assets.com/books/1356993940l/13262783.jpg,3.99,121863,\"contemporary, romance\",\"Every morning OAO wakes in a different person's body, in a different\nperson's life, learning over the years to never get too attached, until he\nwakes up in the body of Justin and falls in love with Justin's girlfriend,\nRhiannon.\"\r\n821,838,8648,Orson Scott Card,Xenocide,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924577l/8648.jpg,3.77,104467,\"fiction, fantasy\",\"The war for survival of the planet Lusitania will be fought in the heart of\na child named Gloriously Bright. On Lusitania, Ender found a world where\nhumans and pequininos and the Hive Queen could all live together; where\nthree very different intelligent species could find common ground at last.\nOr so he thought. Lusitania also harbors the descolada, a virus that kills\nall humans it infects, but which the pequininos require in order to become\nadults. The Startways Congress so fears the effects of the descolada,\nshould it escape from Lusitania, that they have ordered the destruction of\nthe entire planet, and all who live there. The Fleet is on its way, a\nsecond xenocide seems inevitable. Xenocide is the third novel in Orson\nScott Card's Ender Quintet. THE ENDER UNIVERSE Ender series Ender’s Game /\nEnder in Exile / Speaker for the Dead / Xenocide / Children of the Mind\nEnder’s Shadow series Ender’s Shadow / Shadow of the Hegemon / Shadow\nPuppets / Shadow of the Giant / Shadows in Flight Children of the Fleet The\nFirst Formic War (with Aaron Johnston) Earth Unaware / Earth Afire / Earth\nAwakens The Second Formic War (with Aaron Johnston) The Swarm /The Hive\nEnder novellas A War of Gifts /First Meetings\"\r\n822,839,24128,\"William Shakespeare, Robert          Jackson, Barbara A. Mowat, Paul Werstine\",The Merchant of Venice,https://images.gr-assets.com/books/1327871054l/24128.jpg,3.78,115621,\"classics, fiction\",\"In The Merchant of Venice, the path to marriage is hazardous. To win\nPortia, Bassanio must pass a test prescribed by her father’s will, choosing\ncorrectly among three caskets or chests. If he fails, he may never marry at\nall. Bassanio and Portia also face a magnificent villain, the moneylender\nShylock. In creating Shylock, Shakespeare seems to have shared in a\nwidespread prejudice against Jews. Shylock would have been regarded as a\nvillain because he was a Jew. Yet he gives such powerful expression to his\nalienation due to the hatred around him that, in many productions, he\nemerges as the hero. Portia is most remembered for her disguise as a\nlawyer, Balthazar, especially the speech in which she urges Shylock to show\nmercy that “droppeth as the gentle rain from heaven.” The authoritative\nedition of The Merchant of Venice from The Folger Shakespeare Library, the\ntrusted and widely used Shakespeare series for students and general\nreaders, includes: -Freshly edited text based on the best early printed\nversion of the play -Newly revised explanatory notes conveniently placed on\npages facing the text of the play -Scene-by-scene plot summaries -A key to\nthe play’s famous lines and phrases -An introduction to reading\nShakespeare’s language -An essay by a leading Shakespeare scholar providing\na modern perspective on the play -Fresh images from the Folger Shakespeare\nLibrary’s vast holdings of rare books -An up-to-date annotated guide to\nfurther reading Essay by Alexander Leggatt The Folger Shakespeare Library\nin Washington, DC, is home to the world’s largest collection of\nShakespeare’s printed works, and a magnet for Shakespeare scholars from\naround the globe. In addition to exhibitions open to the public throughout\nthe year, the Folger offers a full calendar of performances and programs.\nFor more information, visit Folger.edu.\"\r\n823,840,402093,James Clavell,Shōgun,https://images.gr-assets.com/books/1397228842l/402093.jpg,4.37,104339,\"fiction, classics\",\"An explorer in seventeenth-century Japan, ambitious Englishman Blackthorne\nencounters the powerful and power-hungry Lord Toranaga and Catholic convert\nLady Mariko. Reissue.\"\r\n824,841,42900,J.R. Ward,\"Lover Awakened (Black Dagger Brotherhood, #3)\",https://images.gr-assets.com/books/1388773547l/42900.jpg,4.45,134249,\"paranormal, romance\",\"Even within the vampire brotherhood, Zsadist is feared. Still bearing the\nscars from a tortured past, he is renowned for his unquenchable fury. Anger\nis his only companion, and terror is his only passion-until he rescues a\nbeautiful female from the evil Lessening Society.\"\r\n825,842,16096824,Sarah J. Maas,A Court of Thorns and Roses,https://images.gr-assets.com/books/1491595796l/16096824.jpg,4.29,167848,\"fantasy, romance\",A Court of Thorns and RosesSarah J. Maas\r\n826,844,293595,\"Bill Martin Jr., John Archambault, Lois Ehlert\",Chicka Chicka Boom Boom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348384871l/293595.jpg,4.21,105192,\"fiction, poetry\",\"The complete edition of the bestselling children’s favorite, Chicka Chicka\nBoom Boom, is now available as a Classic Board Book! A told B and B told C,\n“I’ll meet you at the top of the coconut tree.” When all the letters of the\nalphabet race one another up the coconut tree, will there be enough room?\nOf course there is always enough room for this rollicking alphabet chant\nthat has been a children’s favorite for more than twenty years! Bill Martin\nJr and John Archambault’s rhythmic text keeps the beat with Caldecott Honor\nillustrator Lois Ehlert’s bold, cheerful art. This winning combination has\ncreated a series of enduring Chicka Chicka favorites, and now, for the\nfirst time ever, the complete edition of the original Chicka Chicka Boom\nBoom story is available as a Classic Board Book. With sturdy pages and\nrounded corners, this portable edition of an irresistible alphabet romp\nwill delight a new generation of young readers.\"\r\n827,845,6393631,Raina Telgemeier,Smile,https://images.gr-assets.com/books/1438206850l/6393631.jpg,4.19,98628,\"comics, memoir\",\"An autobiography in graphic novel format describes how the author lost two\nof her front teeth in an accident when she was twelve, and her subsequent\nstruggles with various corrective dental techniques throughout adolescence.\"\r\n828,846,5472,\"George Orwell, Christopher Hitchens\", Animal Farm & 1984,https://images.gr-assets.com/books/1327959366l/5472.jpg,4.26,116197,\"classics, fiction\",\"George Orwell's classic satire on totalitarianism in which farm animals\noverthrow their human owner and set up their own government is accompanied\nby \"\"1984,\"\" his portrayal of life in a future time when a totalitarian\ngovernment watches over all citizens a\"\r\n829,847,5161,Jacquelyn Mitchard,The Deep End of the Ocean,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435023021l/5161._SY475_.jpg,3.84,102733,\"fiction, contemporary\",\"The disappearance of her three-year-old son Ben threatens to drive a wedge\nbetween Beth Cappadora and her husband, Pat, and transforms her older son\ninto a troubled delinquent, until one day nine years later when Ben comes\nback into their lives\"\r\n830,848,12555,Amy Tan,The Bonesetter's Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442687221l/12555._SY475_.jpg,3.98,99926,\"fiction, contemporary\",\"Struggling to regain her voice and express her true feelings to her\nhusband, ghostwriter Ruth Young discovers that her inability to speak\nclosely parallels the story of her mother LuLing's early life in China,\nwhere Ruth finds the famous bonesetter, a woman whose mouth was sealed shut\nduring a suicide attempt. Reprint.\"\r\n831,849,402013,Louise Rennison,\"Angus, Thongs and Full-Frontal Snogging\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400533444l/402013.jpg,3.74,112733,\"fiction, romance\",\"Angus: My mixed-breed cat, half domestic tabby, half Scottish wildcat. The\nsize of a small Labrador, only mad. Thongs: Stupid underwear. What's the\npoint of them, anyway? They just go up your bum, as far as I can tell.\nFull-Frontal Snogging: Kissing with all the trimmings, lip to lip, open\nmouth, tongues ... everything. Her dad's got the mentality of a Teletubby\n(only not so developed). Her cat, Angus, is trying to eat the poodle next\ndoor. And her best friend thinks she looks like an alien -- just because\nshe accidentally shaved off her eyebrows. Ergghhhlack. Still, add a little\nboy-stalking, teacher-baiting, and full-frontal snogging with a Sex God,\nand Georgia's year just might turn out to be the most fabbitty fab fab\never!\"\r\n832,850,13538873,Robin Sloan,Mr. Penumbra's 24-Hour Bookstore,https://images.gr-assets.com/books/1345089845l/13538873.jpg,3.75,110552,\"fiction, mystery\",Mr. Penumbra's 24-Hour BookstoreRobin Sloan\r\n833,851,43448,V.C. Andrews,Flowers in the Attic,https://images.gr-assets.com/books/1327880853l/43448.jpg,3.79,109063,\"fiction, horror\",\"A major Lifetime movie event—the novel that captured the world's\nimagination and earned V.C. Andrews a fiercely devoted fanbase. Book One of\nthe Dollanganger Family series. At the top of the stairs there are four\nsecrets hidden. Blond, beautiful, innocent, and struggling to stay alive…\nThey were a perfect family, golden and carefree—until a heartbreaking\ntragedy shattered their happiness. Now, for the sake of an inheritance that\nwill ensure their future, the children must be hidden away out of sight, as\nif they never existed. Kept on the top floor of their grandmother’s vast\nmansion, their loving mother assures them it will be just for a little\nwhile. But as brutal days swell into agonizing months and years, Cathy,\nChris, and twins Cory and Carrie realize their survival is at the mercy of\ntheir cruel and superstitious grandmother…and this cramped and helpless\nworld may be the only one they ever know. Book One of the Dollanganger\nseries, followed by Petals in the Wind, If There be Thorns, Seeds of\nYesterday, and Garden of Shadows.\"\r\n834,852,25899336,\"Paul Kalanithi, Abraham Verghese\",When Breath Becomes Air,https://images.gr-assets.com/books/1492677644l/25899336.jpg,4.32,116771,\"memoir, nonfiction\",A cloth bag containing eight copies of the title.\r\n835,853,139463,Jerry Spinelli,Maniac Magee,https://images.gr-assets.com/books/1395884800l/139463.jpg,3.86,99831,\"fiction, classics\",Maniac MageeJerry Spinelli\r\n836,854,22290,Chuck Palahniuk,Invisible Monsters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348348816l/22290.jpg,4,54937,\"fiction, ebooks\",\"When a freeway \"\"accident\"\" leaves a beautiful fashion model disfigured and\nincapable of speech, she seeks to reinvent herself and her world, along\nwith her new friend, Brandy Alexander, a transvestite who is one operation\naway from becoming a real woman\"\r\n837,855,1625,William Shakespeare,\"Twelfth Night; or, What You Will\",https://images.gr-assets.com/books/1416628008l/1625.jpg,3.97,119607,\"classics, fiction\",\"Delightfully comic tale of mistaken identities revolves around the physical\nlikeness between Sebastian and his twin sister Viola, each of whom, when\nseparated after a shipwreck, believes the other to be dead. Filled with\nsuperb comedy, this entertaining masterpiece remains one of Shakespeare's\nmost popular and performed comedies.\"\r\n838,856,12936,Lois Lowry,Gathering Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195391l/12936.jpg,3.8,114917,\"fiction, ebooks\",Gathering BlueLois Lowry\r\n839,857,902,Ellen Raskin,The Westing Game,https://images.gr-assets.com/books/1356850909l/902.jpg,4.03,117108,\"mystery, fiction\",\"The mysterious death of an eccentric millionaire brings together an\nunlikely assortment of heirs who must uncover the circumstances of his\ndeath before they can claim their inheritance.\"\r\n840,858,15839976,Pierce Brown,Red Rising,https://images.gr-assets.com/books/1461354651l/15839976.jpg,4.26,104939,\"fantasy, fiction\",\"A tale set in a bleak future society torn by class divisions follows the\nexperiences of secret revolutionary Darrow, who after witnessing his wife's\nexecution by an oppressive government joins a revolutionary cell and\nattempts to infiltrate an elite military academy.\"\r\n841,859,3227063,Brent Weeks,The Way of Shadows,https://images.gr-assets.com/books/1327881551l/3227063.jpg,4.15,109236,\"fantasy, fiction\",The Way of ShadowsBrent Weeks\r\n842,860,30868,Barbara Kingsolver,The Bean Trees,https://images.gr-assets.com/books/1443483961l/30868.jpg,3.94,105032,\"fiction, contemporary\",\"Clear-eyed and spirited, Taylor Greer grew up poor in rural Kentucky with\nthe goals of avoiding pregnancy and getting away. But when she heads west\nwith high hopes and a barely functional car, she meets the human condition\nhead-on. By the time Taylor arrives in Tucson, Arizona, she has acquired a\ncompletely unexpected child, a three-year-old American Indian girl named\nTurtle, and must somehow come to terms with both motherhood and the\nnecessity for putting down roots. Hers is a story about love and\nfriendship, abandonment and belonging, and the discovery of surprising\nresources in apparently empty places.\"\r\n843,861,15745950,Jamie McGuire,Walking Disaster,https://images.gr-assets.com/books/1352338368l/15745950.jpg,4.23,134022,\"romance, contemporary\",Walking DisasterJamie McGuire\r\n844,862,17332218,Brandon Sanderson,Words of Radiance,https://images.gr-assets.com/books/1391535251l/17332218.jpg,4.77,73572,\"fantasy, fiction\",\"From #1 New York Times bestselling author Brandon Sanderson, Words of\nRadiance, Book Two of the Stormlight Archive, continues the immersive\nfantasy epic that The Way of Kings began. Expected by his enemies to die\nthe miserable death of a military slave, Kaladin survived to be given\ncommand of the royal bodyguards, a controversial first for a low-status\n\"\"darkeyes.\"\" Now he must protect the king and Dalinar from every common\nperil as well as the distinctly uncommon threat of the Assassin, all while\nsecretly struggling to master remarkable new powers that are somehow linked\nto his honorspren, Syl. The Assassin, Szeth, is active again, murdering\nrulers all over the world of Roshar, using his baffling powers to thwart\nevery bodyguard and elude all pursuers. Among his prime targets is\nHighprince Dalinar, widely considered the power behind the Alethi throne.\nHis leading role in the war would seem reason enough, but the Assassin's\nmaster has much deeper motives. Brilliant but troubled Shallan strives\nalong a parallel path. Despite being broken in ways she refuses to\nacknowledge, she bears a terrible burden: to somehow prevent the return of\nthe legendary Voidbringers and the civilization-ending Desolation that will\nfollow. The secrets she needs can be found at the Shattered Plains, but\njust arriving there proves more difficult than she could have imagined.\nMeanwhile, at the heart of the Shattered Plains, the Parshendi are making\nan epochal decision. Hard pressed by years of Alethi attacks, their numbers\never shrinking, they are convinced by their war leader, Eshonai, to risk\neverything on a desperate gamble with the very supernatural forces they\nonce fled. The possible consequences for Parshendi and humans alike,\nindeed, for Roshar itself, are as dangerous as they are incalculable. Other\nTor books by Brandon Sanderson The Cosmere The Stormlight Archive The Way\nof Kings Words of Radiance Edgedancer (Novella) Oathbringer The Mistborn\ntrilogy Mistborn: The Final Empire The Well of Ascension The Hero of Ages\nMistborn: The Wax and Wayne series Alloy of Law Shadows of Self Bands of\nMourning Collection Arcanum Unbounded Other Cosmere novels Elantris\nWarbreaker The Alcatraz vs. the Evil Librarians series Alcatraz vs. the\nEvil Librarians The Scrivener's Bones The Knights of Crystallia The\nShattered Lens The Dark Talent The Rithmatist series The Rithmatist Other\nbooks by Brandon Sanderson The Reckoners Steelheart Firefight Calamity\"\r\n845,863,301736,\"Sam McBratney, Anita Jeram\",Guess How Much I Love You,https://images.gr-assets.com/books/1320457007l/301736.jpg,4.36,104690,\"fiction, classics\",\"Guess How Much I Love YouSam McBratney, Anita Jeram\"\r\n846,864,10967,Diana Gabaldon,The Fiery Cross,https://images.gr-assets.com/books/1407366842l/10967.jpg,4.26,103552,\"romance, fantasy\",\"The time is 1771 and the colony of North Carolina teeters on an uneasy\nedge. Jamie Fraser is a man of worth but he has a lot to lose. His wife,\nClaire, is known notoriously as a wisewoman or a witch. They both know they\nhave to survive\"\r\n847,865,10628,\"Stephen King, John D. MacDonald\",Night Shift,https://images.gr-assets.com/books/1342215309l/10628.jpg,3.96,104248,\"horror, fiction\",\"More than twenty-five stories of horror and nightmarish fantasy transform\neveryday situations into experiences of compelling terror in the worlds of\nthe living, the dying, and the nonliving\"\r\n848,866,126232,Peter Benchley,Jaws,https://images.gr-assets.com/books/1327958767l/126232.jpg,3.96,102574,\"horror, fiction\",\"Story about what happens when a great white shark terrorizes a small Long\nIsland town.\"\r\n849,867,3867,Nicole Krauss,The History of Love,https://images.gr-assets.com/books/1327911009l/3867.jpg,3.91,98379,\"fiction, romance\",\"Sixty years after a book's publication, its author remembers his lost love\nand missing son, while a teenage girl, named for one of the book's\ncharacters, seeks her namesake, as well as a cure for her widowed mother's\nloneliness. By the author of Man Walks Into a Room. Reader's Guide\nincluded. Reprint.\"\r\n850,868,19302,\"Astrid Lindgren, Lauren Child, Florence Lamborn, Nancy Seligsohn\",Pippi Långstrump,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519300455l/19302._SX318_.jpg,4.11,123065,\"classics, fiction\",\"Relates the antics of a rambunctious girl who lives with a horse and a\nmonkey--but without any parents--at the edge of a Swedish village. Reissue.\"\r\n851,869,2967752,\"Muriel Barbery, Alison Anderson\",L'élégance du hérisson,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347755370l/2967752.jpg,3.73,101669,fiction,\"L'élégance du hérissonMuriel Barbery, Alison Anderson\"\r\n852,870,2199,\"Doris Kearns Goodwin, Suzanne Toren\",Team of Rivals: The Political Genius of Abraham Lincoln,https://images.gr-assets.com/books/1347278868l/2199.jpg,4.3,102923,\"history, biography\",\"Team of Rivals: The Political Genius of Abraham LincolnDoris Kearns Goodwin, Suzanne Toren\"\r\n853,871,7091488,Charlaine Harris,Dead in the Family,https://images.gr-assets.com/books/1290479828l/7091488.jpg,3.88,127379,\"fantasy, paranormal\",\"Telepathic waitress Sookie Stackhouse contends with the outcome of the Fae\nWar, her feelings for vampire Eric Northman, and the Shifter community\ngoing public.\"\r\n854,872,11989,\"Albert Camus, Stuart Gilbert\",La peste,https://images.gr-assets.com/books/1342837610l/11989.jpg,3.97,95803,\"fiction, classics\",\"A haunting tale of human resilience in the face of unrelieved horror,\nCamus' novel about a bubonic plague ravaging the people of a North African\ncoastal town is a classic of twentieth-century literature.\"\r\n855,873,78418,\"Lemony Snicket, Brett Helquist\",The Reptile Room,https://images.gr-assets.com/books/1352146294l/78418.jpg,3.95,130213,\"fiction, fantasy\",\"The Reptile RoomLemony Snicket, Brett Helquist\"\r\n856,874,13547180,Susannah Cahalan,Brain on Fire,https://images.gr-assets.com/books/1353173297l/13547180.jpg,4,92849,\"memoir, nonfiction\",\"An account of the author's struggle with a rare brain-attacking autoimmune\ndisease traces how she woke up in a hospital room with no memory of\nbaffling psychotic symptoms, describing the last-minute intervention by a\ndoctor who identified the source of her illness.\"\r\n857,875,305234,Melissa Marr,Wicked Lovely ,https://images.gr-assets.com/books/1327814035l/305234.jpg,3.69,131034,\"fantasy, paranormal\",\"Seventeen-year-old Aislinn, who has the rare ability to see faeries, is\ndrawn against her will into a centuries-old battle between the Summer King\nand the Winter Queen, and the survival of her life, her love, and summer\nall hang in the balance.\"\r\n858,876,420297,H.A. Rey,Curious George,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442953450l/420297._SX318_.jpg,4.13,105473,\"fiction, classics\",\"Suggests activities to be used at home to accompany the reading of Curious\nGeorge by H.A. Rey in the classroom.\"\r\n859,877,27712,\"Michael Ende, Ralph Manheim, Roswitha Quadflieg\",Die unendliche Geschichte,https://images.gr-assets.com/books/1327871159l/27712.jpg,4.17,109110,\"fantasy, classics\",\"Bastian, a lonely boy, steps through the pages of a book and finds himself\ncaught up in a dangerous quest in a magical kingdom known as Fantastica\"\r\n860,878,13912,Sylvia Nasar,A Beautiful Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347807703l/13912.jpg,4.12,98276,\"biography, nonfiction\",\"The bestselling, prize-winning biography of a mathematical genius who\nsuffered from schizophrenia, miraculously recovered, and then won a Nobel\nPrize.\"\r\n861,879,41681,\"Upton Sinclair, Earl Lee, Kathleen DeGrave\",The Jungle,https://images.gr-assets.com/books/1332140681l/41681.jpg,3.72,97468,\"fiction, history\",\"The horrifying conditions of the Chicago stockyards are revealed through\nthis narrative of a young immigrant's struggles in America, including five\nchapters omitted from the original edition.\"\r\n862,880,2800905,Kelley Armstrong,The Summoning,https://images.gr-assets.com/books/1478986944l/2800905.jpg,4.03,132285,\"paranormal, romance\",The SummoningKelley Armstrong\r\n863,881,63697,Oliver Sacks,The Man Who Mistook His Wife for a Hat and Other Clinical Tales,https://images.gr-assets.com/books/1447047702l/63697.jpg,4.04,102419,\"psychology, science\",The Man Who Mistook His Wife for a Hat and Other Clinical TalesOliver Sacks\r\n864,882,92364,Ken Follett,Storm Island,https://images.gr-assets.com/books/1327939511l/92364.jpg,4.16,93475,\"fiction, thriller\",Storm IslandKen Follett\r\n865,883,78433,Margaret Atwood,The Blind Assassin,https://images.gr-assets.com/books/1451445426l/78433.jpg,3.95,98464,\"fiction, mystery\",\"Iris describes the 1945 death of her sister, who drives her car off a\nbridge, followed, two years later, by the death of her husband, in a story\nthat features a novel-within-a-novel about two unnamed lovers who meet in a\ndark backstreet room.\"\r\n866,884,23164983,Ransom Riggs,Hollow City,https://images.gr-assets.com/books/1429175859l/23164983.jpg,4.07,73149,\"fiction, fantasy\",\"A follow-up to the best-selling Miss Peregrine's Home for Peculiar Children\nbegins in 1940 with Jacob and his new friends escaping from Miss\nPeregrine's island and traveling to London, where they encounter new\nallies, a menagerie of peculiar animals and other unexpected surprises.\"\r\n867,885,359770,Andre Dubus III,House of Sand and Fog,https://images.gr-assets.com/books/1428883041l/359770.jpg,3.83,55381,\"fiction, contemporary\",House of Sand and FogAndre Dubus III\r\n868,886,17235026,M.R. Carey,The Girl with All the Gifts,https://images.gr-assets.com/books/1403033579l/17235026.jpg,3.93,99729,\"horror, fiction\",The Girl with All the GiftsM.R. Carey\r\n869,887,77013,William Faulkner,As I Lay Dying,https://images.gr-assets.com/books/1451810782l/77013.jpg,3.72,103547,\"classics, fiction\",\"Recounts the Bundren family's odyssey across the Mississippi countryside to\nbury Addie, their wife and mother, through the eyes of each of the family\nmembers\"\r\n870,888,98573,Crockett Johnson,Harold and the Purple Crayon,https://images.gr-assets.com/books/1327390957l/98573.jpg,4.24,107221,\"fiction, classics\",\"Essential Picture Book Classics—timeless stories for every child to\ntreasure. \"\"One night, after thinking it over for some time, Harold decided\nto go for a walk in the moonlight.\"\" Armed only with an oversized purple\ncrayon, young Harold draws himself a landscape full of wonder and\nexcitement. Full of funny twists and surprises, this joyful story shows\njust how far your imagination can take you. Harold and the Purple Crayon\nhas delighted readers of all ages for over fifty years.\"\r\n871,889,35729,J.R. Ward,\"Lover Eternal (Black Dagger Brotherhood, #2)\",https://images.gr-assets.com/books/1300845974l/35729.jpg,4.35,137558,\"paranormal, romance\",\"Fierce warrior and legendary lover, Rhage, a vampire cursed by the Scribe\nVirgin and owned by the dark side, finds salvation in Mary Luce, the\ninnocent young beauty he has sworn to protect, and together they battle\nagainst their enemies and fight for eternal love. Original.\"\r\n872,891,91477,Jim Butcher,Fool Moon ,https://images.gr-assets.com/books/1345556849l/91477.jpg,4.04,111371,\"fantasy, mystery\",\"When the corpse of a brutally mutilated murder victim turns up at the time\nof the full moon, accompanied by some most unusual paw prints, professional\nwizard and supernatural investigator Harry Dresden finds himself searching\nChicago for the werewolf stalking the city. Original.\"\r\n873,892,15751404,Malcolm Gladwell,David and Goliath,https://images.gr-assets.com/books/1391813567l/15751404.jpg,3.9,90083,\"nonfiction, psychology\",\"Malcolm Gladwell's provocative new #1 bestseller -- now in paperback. Three\nthousand years ago on a battlefield in ancient Palestine, a shepherd boy\nfelled a mighty warrior with nothing more than a pebble and a sling-and\never since, the names of David and Goliath have stood for battles between\nunderdogs and giants. David's victory was improbable and miraculous. He\nshouldn't have won. Or should he? In DAVID AND GOLIATH, Malcolm Gladwell\nchallenges how we think about obstacles and disadvantages, offering a new\ninterpretation of what it means to be discriminated against, suffer from a\ndisability, lose a parent, attend a mediocre school, or endure any number\nof other apparent setbacks. In the tradition of Gladwell's previous\nbestsellers-The Tipping Point, Blink, Outliers and What the Dog Saw-DAVID\nAND GOLIATH draws upon history, psychology and powerful story-telling to\nreshape the way we think of the world around us.\"\r\n874,893,870,\"Hiromu Arakawa, Akira Watanabe\",鋼の錬金術師 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179331l/870.jpg,4.49,93990,\"manga, fiction\",\"Bargain omnibus editions of one of the bestselling manga series of all\ntime! In an alchemical ritual gone wrong, Edward Elric lost his arm and his\nleg, and his brother Alphonse became nothing but a soul in a suit of armor.\nEquipped with mechanical \"\"\"\"auto-mail\"\"\"\" limbs, Edward becomes a state\nalchemist, seeking the one thing that can restore his and his brother's\nbodies...the legendary Philosopher's Stone. Contains volumes 13, 14 and 15\nof Fullmetal Alchemist! In the midst of heated battle, Ed, Envy and Prince\nLin of Xing are swallowed whole by the homunculus Gluttony. When they\nfinally escape, they find themselves face-to-face with the “father” of the\nhomunculi, who offers Lin immortality as the new Greed. Meanwhile, Colonel\nMustang learns the military’s corruption goes all the way to the top, and\nthe truth of what really happened in the Ishbalan War is revealed. Reads R\nto L (Japanese Style) for teen audiences.\"\r\n875,894,64216,Terry Pratchett,Guards! Guards!,https://images.gr-assets.com/books/1431127356l/64216.jpg,4.32,108652,\"fantasy, fiction\",Guards! Guards!Terry Pratchett\r\n876,895,7815,Joan Didion,The Year of Magical Thinking,https://images.gr-assets.com/books/1327878638l/7815.jpg,3.86,94590,\"memoir, nonfiction\",\"An autobiographical portrait of marriage and motherhood by the acclaimed\nauthor details her struggle to come to terms with life and death, illness,\nsanity, personal upheaval, and grief.\"\r\n877,896,80660,Lionel Shriver,We Need to Talk About Kevin,https://images.gr-assets.com/books/1327865017l/80660.jpg,4.07,101343,\"fiction, contemporary\",We Need to Talk About KevinLionel Shriver\r\n878,897,112537,Arthur C. Clarke,Rendezvous with Rama,https://images.gr-assets.com/books/1405456427l/112537.jpg,4.06,93151,\"classics, science\",\"During the twenty-second century, a space probe's investigation of a\nmysterious, cylindrical asteroid brings man into contact with an extra-\ngalactic civilization\"\r\n879,898,43758,Anne Rice,The Queen of the Damned,https://images.gr-assets.com/books/1327871992l/43758.jpg,3.86,110693,\"horror, fantasy\",\"The sequel to The Vampire Lestat intertwines the stories of rock star and\nvampire Lestat, beautiful twins haunted by a gruesome tragedy, and Akasha,\nmother of all vampires, who dreams of godhood. Reissue.\"\r\n880,899,53835,\"Edith Wharton, Maureen Howard\",The Age of Innocence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388248423l/53835.jpg,3.93,102646,\"classics, fiction\",\"Age of Innocence, by Edith Wharton, is part of the Barnes & Noble Classics\nseries, which offers quality editions at affordable prices to the student\nand the general reader, including new scholarship, thoughtful design, and\npages of carefully crafted extras. Here are some of the remarkable features\nof Barnes & Noble Classics: New introductions commissioned from today's top\nwriters and scholars Biographies of the authors Chronologies of\ncontemporary historical, biographical, and cultural events Footnotes and\nendnotes Selective discussions of imitations, parodies, poems, books,\nplays, paintings, operas, statuary, and films inspired by the work Comments\nby other famous authors Study questions to challenge the reader's\nviewpoints and expectations Bibliographies for further reading Indices &\nGlossaries, when appropriateAll editions are beautifully designed and are\nprinted to superior specifications; some include illustrations of\nhistorical interest. Barnes & Noble Classics pulls together a constellation\nof influences—biographical, historical, and literary—to enrich each\nreader's understanding of these enduring works. Winner of the 1921 Pulitzer\nPrize, The Age of Innocence is Edith Wharton’s masterful portrait of desire\nand betrayal during the sumptuous Golden Age of Old New York, a time when\nsociety people “dreaded scandal more than disease.” This is Newland\nArcher’s world as he prepares to marry the beautiful but conventional May\nWelland. But when the mysterious Countess Ellen Olenska returns to New York\nafter a disastrous marriage, Archer falls deeply in love with her. Torn\nbetween duty and passion, Archer struggles to make a decision that will\neither courageously define his life—or mercilessly destroy it. Maureen\nHoward is a critic, teacher, and writer of fiction. Her seven novels\ninclude Bridgeport Bus, Natural History, and A Lover’s Almanac. Her memoir,\nFacts of Life, won the National Book Critics’ Circle Award. She has taught\nat Yale and Columbia University.\"\r\n881,900,61535,Richard Dawkins,The Selfish Gene,https://images.gr-assets.com/books/1366758096l/61535.jpg,4.11,96564,\"nonfiction, philosophy\",With a new epilogue to the 40th anniversary edition.\r\n882,901,4965,Geraldine Brooks,Year of Wonders: A Novel of the Plague,https://images.gr-assets.com/books/1327936622l/4965.jpg,4,104283,\"fiction, history\",\"Eighteen-year-old Anna Frith tells the story of her remote English village,\nEyam, which was infected by the plague in 1666 and where, persuaded by\ntheir vicar, the townspeople decided to quarantine themselves.\"\r\n883,902,32508,Michael Connelly,The Black Echo,https://images.gr-assets.com/books/1344265342l/32508.jpg,4.08,98591,\"mystery, crime\",The Black EchoMichael Connelly\r\n884,903,667,Ayn Rand,Anthem,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190459l/667.jpg,3.62,95620,\"fiction, philosophy\",\"Equality 7-2521 dares to defy the ideals of collectivism in a futuristic\nstate\"\r\n885,904,10140661,Sylvain Reynard,Gabriel's Inferno,https://images.gr-assets.com/books/1301789770l/10140661.jpg,4.02,119633,\"romance, contemporary\",\"Gabriel Emerson, a professor who specializes in Dante, is drawn to a young\ngraduate student, Julia Mitchell, whom he idolizes, but both must face\nsecrets from their past before they can pursue their mutual attraction.\"\r\n886,905,8073,\"Judi Barrett, Ron Barrett\",Cloudy with a Chance of Meatballs,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439779831l/8073._SX318_.jpg,4.15,104677,\"fiction, fantasy\",\"Life is delicious in the town of Chewandswallow where it rains soup and\njuice, snows mashed potatoes, and blows storms of hamburgers--until the\nweather takes a turn for the worse.\"\r\n887,906,6643090,Helen Simonson,Major Pettigrew's Last Stand,https://images.gr-assets.com/books/1320539020l/6643090.jpg,3.87,97745,\"fiction, romance\",\"Forced to confront the realities of life in the 21st century when he falls\nin love with widowed Pakistani descendant Mrs. Ali, a retired Major\nPettigrew finds the relationship challenged by local prejudices that view\nMrs. Ali, a Cambridge native, as a perpetual foreigner. Reprint. A best-\nselling novel.\"\r\n888,907,5598113,Nora Roberts,Vision in White,https://images.gr-assets.com/books/1316972164l/5598113.jpg,4.1,103933,\"romance, contemporary\",Vision in WhiteNora Roberts\r\n889,908,10909,Jodi Picoult,The Tenth Circle,https://images.gr-assets.com/books/1348575053l/10909.jpg,3.48,99170,\"fiction, contemporary\",\"When the ghost of his murdered fourteen-year-old daughter identifies her\nboyfriend as the killer, an overprotective father with a secret past\ndecides to take the law into his own hands.\"\r\n890,909,9067850,Rick Riordan,The Throne of Fire,https://images.gr-assets.com/books/1366227973l/9067850.jpg,4.2,116360,\"fantasy, fiction\",\"In this exciting second installment of the three-book series, Carter and\nSadie, offspring of the brilliant Egyptologist Dr. Julius Kane, embark on a\nworldwide search for the Book of Ra, but the House of Life and the gods of\nchaos are determined to stop them.\"\r\n891,910,51964,John Scalzi,Old Man's War,https://images.gr-assets.com/books/1487044882l/51964.jpg,4.23,97653,\"fiction, fantasy\",\"John Perry did two things on his 75th birthday. First he visited his wife’s\ngrave. Then he joined the army. The good news is that humanity finally made\nit into interstellar space. The bad news is that planets fit to live on are\nscarce—and alien races willing to fight us for them are common. So: we\nfight. To defend Earth, and to stake our own claim to planetary real\nestate. Far from Earth, the war has been going on for decades: brutal,\nbloody, unyielding. Earth itself is a backwater. The bulk of humanity’s\nresources are in the hands of the Colonial Defense Force. Everybody knows\nthat when you reach retirement age, you can join the CDF. They don’t want\nyoung people; they want people who carry the knowledge and skills of\ndecades of living. You’ll be taken off Earth and never allowed to return.\nYou’ll serve two years at the front. And if you survive, you’ll be given a\ngenerous homestead stake of your own, on one of our hard-won colony\nplanets. John Perry is taking that deal. He has only the vaguest idea what\nto expect. Because the actual fight, light-years from home, is far, far\nharder than he can imagine—and what he will become is far stranger. \"\"Solid\n. . . [Scalzi] sidesteps most of the clichés of military science fiction,\ndelivers fast-paced scenes of combat and pays attention to the science\nunderpinning his premise.\"\" —San Francisco Chronicle \"\"Scalzi's imagined\ninterstellar arena is coherently and compellingly delineated . . . His\nspeculative elements are top-notch. His combat scenes are blood-roiling.\nHis dialogue is suitably snappy and profane. And the moral and\nphilosophical issues he raises . . . insert useful ethical burrs under the\nmilitary saddle of the story.\"\" —Paul Di Filippo, The Washington Post\n\"\"Thought-provoking!\"\" —Entertainment Weekly \"\"Smartly conceived and\nthoroughly entertaining, Old Man’s War is a splendid novel.\"\" –Cleveland\nPlain Dealer \"\"When humanity reaches the stars, it discovers that it must\ndefend its claim to new planets against alien races with similar\nexpansionist tendencies. To ensure the expertise of its soldiers, Earth\ncreates the Colonial Defense Force, an army of men and women otherwise\nclassified as senior citizens, who give up their lives on Earth for an\nuncertain and perilous future among the stars. Scalzi's first novel\npresents a new approach to military sf, boasting an unusual cast of senior\ncitizens as heroes. A good choice for most libraries.\"\" —Library Journal\n\"\"Though a lot of SF writers are more or less efficiently continuing the\ntradition of Robert A. Heinlein, Scalzi’s astonishingly proficient first\nnovel reads like an original work by the late grand master . . . This\nvirtuoso debut pays tribute to SF’s past while showing that well-worn\ntropes still can have real zip when they’re approached with ingenuity.\"\"\n—Publishers Weekly (starred review) \"\"Gripping and surpassingly original.\nIt's Starship Troopers without the lectures. It's The Forever War with\nbetter sex. It's funny, it's sad, and it's true.\"\" —Cory Doctorow \"\"John\nScalzi is a fresh and appealing new voice, and Old Man's War is classic SF\nseen from a modern perspective—a fast-paced tour of a daunting, hostile\nuniverse.\"\" —Robert Charles Wilson \"\"I enjoyed Old Man's War immensely. A\nspace war story with fast action, vivid characters, moral complexity and\ncool speculative physics, set in a future you almost want to live into, and\na universe you sincerely hope you don't live in already.\"\" —Ken MacLeod\"\r\n892,911,32692,Stephen King,Gerald's Game,https://images.gr-assets.com/books/1297737756l/32692.jpg,3.47,100158,\"fiction, thriller\",\"Now a Netflix movie directed by Mike Flanagan (Oculus, Hush) and starring\nCarla Gugino and Bruce Greenwood. Master storyteller Stephen King presents\nthis classic, terrifying #1 New York Times bestseller. When a game of\nseduction between a husband and wife ends in death, the nightmare has only\nbegun… “And now the voice which spoke belonged to no one but herself. Oh my\nGod, it said. Oh my God, I am all alone out here. I am all alone.” Once\nagain, Jessie Burlingame has been talked into submitting to her husband\nGerald’s kinky sex games—something that she’s frankly had enough of, and\nthey never held much charm for her to begin with. So much for a “romantic\ngetaway” at their secluded summer home. After Jessie is handcuffed to the\nbedposts—and Gerald crosses a line with his wife—the day ends with deadly\nconsequences. Now Jessie is utterly trapped in an isolated lakeside house\nthat has become her prison—and comes face-to-face with her deepest, darkest\nfears and memories. Her only company is that of the various voices filling\nher mind…as well as the shadows of nightfall that may conceal an imagined\nor very real threat right there with her…\"\r\n893,912,6427,Janet Evanovich,Two for the Dough,https://images.gr-assets.com/books/1330926461l/6427.jpg,4.11,116171,\"mystery, fiction\",\"Chasing Kenny Mancuso, who fled after inadvertently shooting his best\nfriend, New Jersey bounty hunter Stephanie Plum becomes involved in an all-\nout manhunt for gunrunners and illegal weapons and is pursued by vice cop\nJoe Morelli. Reissue.\"\r\n894,913,327847,\"Irma S. Rombauer, Marion Rombauer Becker, Ethan Becker\",The Joy of Cooking,https://images.gr-assets.com/books/1379313627l/327847.jpg,4.14,102348,\"cookbooks, nonfiction\",\"Information on foods and cooking techniques accompanies recipes for hors\nd'oeuvres, soups, salads, main dishes, side dishes, breads, pies, cookies,\ncandies, and desserts\"\r\n895,914,21611,Joe Haldeman,The Forever War,https://images.gr-assets.com/books/1386852511l/21611.jpg,4.15,87636,\"fiction, classics\",\"\"\"Del Rey book.\"\" Battling the Taurans in space was one problem as Private\nWilliam Mandella worked his way up the ranks to major. In spanning the\nstars, he aged only months while Earth aged centuries.\"\r\n896,915,10585,\"Stephen King, Bettina Blanch Tyroller\",Insomnia,https://images.gr-assets.com/books/1354355494l/10585.jpg,3.79,100972,\"horror, fiction\",\"Recently widowed septuagenarian Ralph Roberts, losing more and more sleep\neach night, comes to the realization that his hometown of Derry, Maine, has\nbeen targeted as a battleground for an epic fight between good and evil.\"\r\n897,916,7603,Azar Nafisi,Reading Lolita in Tehran: A Memoir in Books,https://images.gr-assets.com/books/1397751318l/7603.jpg,3.57,94696,\"memoir, nonfiction\",\"Describes growing up in the Islamic Republic of Iran and the group of young\nwomen who came together at her home in secret every Thursday to read and\ndiscuss great books of Western literature, explaining the influence of\nLolita, The Great Gatsby, Pride and Prejudice, and other works on their\nlives and goals. 25,000 first printing.\"\r\n898,917,944073,Joe Abercrombie,The Blade Itself,https://images.gr-assets.com/books/1284167912l/944073.jpg,4.14,97501,\"fantasy, fiction\",\"The first novel in the First Law Trilogy and debut fantasy novel from New\nYork Times bestseller, Joe Abercrombie. Logen Ninefingers, infamous\nbarbarian, has finally run out of luck. Caught in one feud too many, he's\non the verge of becoming a dead barbarian -- leaving nothing behind him but\nbad songs, dead friends, and a lot of happy enemies. Nobleman, dashing\nofficer, and paragon of selfishness, Captain Jezal dan Luthar has nothing\nmore dangerous in mind than fleecing his friends at cards and dreaming of\nglory in the fencing circle. But war is brewing, and on the battlefields of\nthe frozen North they fight by altogether bloodier rules. Inquisitor\nGlokta, cripple turned torturer, would like nothing better than to see\nJezal come home in a box. But then Glokta hates everyone: cutting treason\nout of the Union one confession at a time leaves little room for\nfriendship. His latest trail of corpses may lead him right to the rotten\nheart of government, if he can stay alive long enough to follow it. Enter\nthe wizard, Bayaz. A bald old man with a terrible temper and a pathetic\nassistant, he could be the First of the Magi, he could be a spectacular\nfraud, but whatever he is, he's about to make the lives of Logen, Jezal,\nand Glokta a whole lot more difficult. Murderous conspiracies rise to the\nsurface, old scores are ready to be settled, and the line between hero and\nvillain is sharp enough to draw blood. Unpredictable, compelling, wickedly\nfunny, and packed with unforgettable characters, The Blade Itself is noir\nfantasy with a real cutting edge. First Law Trilogy The Blade Itself Before\nThey Are Hanged Last Argument of Kings For more from Joe Abercrombie, check\nout: Novels in the First Law world Best Served Cold The Heroes Red Country\"\r\n899,918,114955,Eoin Colfer,The Arctic Incident,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388294381l/114955.jpg,3.94,108031,\"fantasy, fiction\",\"Artemis Fowl receives an urgent e-mail from Russia. In it is a plea from a\nman who has been kidnapped by the Russian Mafiya: his father. As Artemis\nrushes to his rescue, he is stopped by a familiar nemesis, Captain Holly\nShort of the LEPrecon Unit. Now, instead of battling the fairies, Artemis\nmust join forces with them if he wants to save one of the few people in the\nworld he loves.\"\r\n900,919,7354,Annie Proulx,The Shipping News,https://images.gr-assets.com/books/1469036074l/7354.jpg,3.83,103151,\"fiction, contemporary\",\"Surprising transformations take place when a newspaperman's elderly aunt\nand two daughters decide to move back to their family home on the coast of\nNewfoundland\"\r\n901,920,22318578,\"Marie Kondō, Cathy Hirano\",人生がときめく片づけの魔法,https://images.gr-assets.com/books/1418767178l/22318578.jpg,3.77,105063,\"nonfiction, psychology\",\"Presents a guide to cleaning and organizing a living space, discussing best\nmethods for decluttering and the impact that an organized home can have on\nmood and physical and mental health.\"\r\n902,921,18460392,\"Jennifer Niven, فرانک معنوی\",All the Bright Places,https://images.gr-assets.com/books/1404331702l/18460392.jpg,4.19,132087,\"contemporary, fiction\",\"This exhilarating and heart-wrenching love story is about a girl who learns\nto live from a boy who intends to die.\"\r\n903,922,231604,Kathy Reichs,Déjà Dead,https://images.gr-assets.com/books/1334157601l/231604.jpg,3.86,100369,\"mystery, crime\",\"The first Temperance Brennan novel in the “cleverly plotted and expertly\nmaintained series” (The New York Times Book Review) from the #1\ninternationally bestselling thriller writer Kathy Reichs. Her life is\ndevoted to justice—even for those she never knew. In the year since\nTemperance Brennan left behind a shaky marriage in North Carolina, work has\noften preempted her weekend plans to explore Quebec. When a female corpse\nis discovered meticulously dismembered and stashed in trash bags,\nTemperance detects an alarming pattern—and she plunges into a harrowing\nsearch for a killer. But her investigation is about to place those closest\nto her—her best friend and her own daughter—in mortal danger… “A genius at\nbuilding suspense” (Daily News, New York), Kathy Reichs’s Temperance\nBrennan books are ripe with intricate settings and memorable characters”\n(Milwaukee Journal Sentinel).\"\r\n904,923,17402605,Michael Scott,The Alchemyst: The Secrets of The Immortal Nicholas Flamel,https://images.gr-assets.com/books/1361310229l/17402605.jpg,3.84,58396,\"fantasy, fiction\",\"While working at summer jobs in San Francisco, twins Sophie and Josh find\nthemselves caught up in the deadly, centuries-old struggle between rival\nalchemists, Nicholas Flamel and John Dee, over the possession of an ancient\nand powerful book.\"\r\n905,924,10964693,Jeffrey Eugenides,The Marriage Plot,https://images.gr-assets.com/books/1328736940l/10964693.jpg,3.42,90551,\"fiction, contemporary\",\"Madeleine Hanna breaks out of her straight-and-narrow mold when she falls\nin love with charismatic loner Leonard Bankhead, while at the same time an\nold friend of hers resurfaces, obsessed with the idea that Madeleine is his\ndestiny.\"\r\n906,925,16527,\"Isabel Allende, Margaret Sayers Peden\",Hija de la fortuna,https://images.gr-assets.com/books/1299666780l/16527.jpg,3.89,89770,\"fiction, romance\",\"Hija de la fortunaIsabel Allende, Margaret Sayers Peden\"\r\n907,926,22609317,Jessica Knoll,Luckiest Girl Alive,https://images.gr-assets.com/books/1425975301l/22609317.jpg,3.48,82504,\"fiction, mystery\",\"A cloth bag containing ten copies of the title and a folder containing book\nsign out sheets.\"\r\n908,927,270730,Ellen Hopkins,\"Crank (Crank, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192181l/270730.jpg,4.16,104168,\"poetry, fiction\",\"Kristina Snow is the perfect daughter, but she meets a boy who introduces\nher to drugs and becomes a very different person, struggling to control her\nlife and her mind.\"\r\n909,928,17675462,Maggie Stiefvater,The Raven Boys,https://images.gr-assets.com/books/1477103737l/17675462.jpg,4.05,121727,\"fantasy, paranormal\",The Raven BoysMaggie Stiefvater\r\n910,929,547094,Richard Matheson,I Am Legend and Other Stories,https://images.gr-assets.com/books/1317791583l/547094.jpg,3.99,98795,\"horror, fiction\",I Am Legend and Other StoriesRichard Matheson\r\n911,930,1736739,Elizabeth Strout,Olive Kitteridge,https://images.gr-assets.com/books/1320430655l/1736739.jpg,3.78,85019,\"contemporary, fiction\",Olive KitteridgeElizabeth Strout\r\n912,931,20588698,\"Lena Dunham, Joana Avillez\",Not that Kind of Girl,https://images.gr-assets.com/books/1402816003l/20588698.jpg,3.33,88251,\"memoir, nonfiction\",\"NEW YORK TIMES BESTSELLER * Includes two new essays! NAMED ONE OF THE TEN\nBEST BOOKS OF THE YEAR BY MICHIKO KAKUTANI, THE NEW YORK TIMES * NAMED ONE\nOF THE BEST BOOKS OF THE YEAR BY BUZZFEED, THE GLOBE AND MAIL, AND LIBRARY\nJOURNAL For readers of Nora Ephron, Tina Fey, and David Sedaris, this\nhilarious, wise, and fiercely candid collection of personal essays\nestablishes Lena Dunham--the acclaimed creator, producer, and star of HBO's\nGirls--as one of the most original young talents writing today. In Not That\nKind of Girl, Dunham illuminates the experiences that are part of making\none's way in the world: falling in love, feeling alone, being ten pounds\noverweight despite eating only health food, having to prove yourself in a\nroom full of men twice your age, finding true love, and most of all, having\nthe guts to believe that your story is one that deserves to be told. \"\"Take\nMy Virginity (No Really, Take It)\"\" is the account of Dunham's first time,\nand how her expectations of sex didn't quite live up to the actual event\n(\"\"No floodgate had been opened, no vault of true womanhood unlocked\"\");\n\"\"Girls & Jerks\"\" explores her former attraction to less-than-nice guys--guys\nwho had perfected the \"\"dynamic of disrespect\"\" she found so intriguing; \"\"Is\nThis Even Real?\"\" is a meditation on her lifelong obsession with death and\ndying--what she calls her \"\"genetically predestined morbidity.\"\" And in \"\"I\nDidn't F*** Them, but They Yelled at Me,\"\" she imagines the tell-all she\nwill write when she is eighty and past caring, able to reflect honestly on\nthe sexism and condescension she has encountered in Hollywood, where women\nare \"\"treated like the paper thingies that protect glasses in hotel\nbathrooms--necessary but infinitely disposable.\"\" Exuberant, moving, and\nkeenly observed, Not That Kind of Girl is a series of dispatches from the\nfrontlines of the struggle that is growing up. \"\"I'm already predicting my\nfuture shame at thinking I had anything to offer you,\"\" Dunham writes. \"\"But\nif I can take what I've learned and make one menial job easier for you, or\nprevent you from having the kind of sex where you feel you must keep your\nsneakers on in case you want to run away during the act, then every misstep\nof mine will have been worthwhile.\"\" Praise for Not That Kind of Girl \"\"The\ngifted Ms. Dunham not only writes with observant precision, but also brings\na measure of perspective, nostalgia and an older person's sort of wisdom to\nher portrait of her (not all that much) younger self and her world. . . .\nAs acute and heartfelt as it is funny.\"\"--Michiko Kakutani, The New York\nTimes \"\"It's not Lena Dunham's candor that makes me gasp. Rather, it's her\nwriting--which is full of surprises where you least expect them. A fine,\nsubversive book.\"\"--David Sedaris \"\"This book should be required reading for\nanyone who thinks they understand the experience of being a young woman in\nour culture. I thought I knew the author rather well, and I found many (not\naltogether welcome) surprises.\"\"--Carroll Dunham \"\"Witty, illuminating,\nmaddening, bracingly bleak . . . [Dunham] is a genuine artist, and a\ndisturber of the order.\"\"--The Atlantic\"\r\n913,932,76865,James C. Collins,Good to Great: Why Some Companies Make the Leap... and Others Don't,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546097703l/76865.jpg,4.04,85277,\"business, psychology\",\"The Challenge Built to Last, the defining management study of the nineties,\nshowed how great companies triumph over time and how long-term sustained\nperformance can be engineered into the DNA of an enterprise from the\nverybeginning. But what about the company that is not born with great DNA?\nHow can good companies, mediocre companies, even bad companies achieve\nenduring greatness? The Study For years, this question preyed on the mind\nof Jim Collins. Are there companies that defy gravity and convert long-term\nmediocrity or worse into long-term superiority? And if so, what are the\nuniversal distinguishing characteristics that cause a company to go from\ngood to great? The Standards Using tough benchmarks, Collins and his\nresearch team identified a set of elite companies that made the leap to\ngreat results and sustained those results for at least fifteen years. How\ngreat? After the leap, the good-to-great companies generated cumulative\nstock returns that beat the general stock market by an average of seven\ntimes in fifteen years, better than twice the results delivered by a\ncomposite index of the world's greatest companies, including Coca-Cola,\nIntel, General Electric, and Merck. The Comparisons The research team\ncontrasted the good-to-great companies with a carefully selected set of\ncomparison companies that failed to make the leap from good to great. What\nwas different? Why did one set of companies become truly great performers\nwhile the other set remained only good? Over five years, the team analyzed\nthe histories of all twenty-eight companies in the study. After sifting\nthrough mountains of data and thousands of pages of interviews, Collins and\nhis crew discovered the key determinants of greatness -- why some companies\nmake the leap and others don't. The Findings The findings of the Good to\nGreat study will surprise many readers and shed light on virtually every\narea of management strategy and practice. The findings include: Level 5\nLeaders: The research team was shocked to discover the type of leadership\nrequired to achieve greatness. The Hedgehog Concept (Simplicity within the\nThree Circles): To go from good to great requires transcending the curse of\ncompetence. A Culture of Discipline: When you combine a culture of\ndiscipline with an ethic of entrepreneurship, you get the magical alchemy\nof great results. Technology Accelerators: Good-to-great companies think\ndifferently about the role of technology. The Flywheel and the Doom Loop:\nThose who launch radical change programs and wrenching restructurings will\nalmost certainly fail to make the leap. “Some of the key concepts discerned\nin the study,” comments Jim Collins, \"\"fly in the face of our modern\nbusiness culture and will, quite frankly, upset some people.” Perhaps, but\nwho can afford to ignore these findings?\"\r\n914,933,6137154,Kristin Cashore,Fire,https://images.gr-assets.com/books/1331535456l/6137154.jpg,4.12,98180,\"fantasy, romance\",FireKristin Cashore\r\n915,934,17716,Samuel Beckett,En attendant Godot,https://images.gr-assets.com/books/1327910301l/17716.jpg,3.81,98950,\"classics, fiction\",Théâtre avec cinq personnages: cinq hommes.\r\n916,935,43035,Jack London,White Fang,https://images.gr-assets.com/books/1475878443l/43035.jpg,3.94,100223,\"classics, fiction\",\"White Fang is a novel by American author Jack London (1876-1916) - and the\nname of the book's eponymous character, a wild wolfdog. First serialized in\nOuting magazine, it was published in 1906. The story takes place in Yukon\nTerritory, Canada, during the 1890s Klondike Gold Rush and details White\nFang's journey to domestication. It is a companion novel (and a thematic\nmirror) to London's best-known work, The Call of the Wild, which is about a\nkidnapped, domesticated dog embracing his wild ancestry to survive and\nthrive in the wild.Much of White Fang is written from the viewpoint of the\ntitular canine character, enabling London to explore how animals view their\nworld and how they view humans. White Fang examines the violent world of\nwild animals and the equally violent world of humans. The book also\nexplores complex themes including morality and redemption.\"\r\n917,936,4978,\"Stephen King, Bernie Wrightson\",Wolves of the Calla,https://images.gr-assets.com/books/1419360231l/4978.jpg,4.17,98182,\"horror, fantasy\",\"Now a major motion picture starring Matthew McConaughey and Idris Elba Set\nin a world of extraordinary circumstances, filled with stunning visual\nimagery and unforgettable characters, the DARK TOWER series is unlike\nanything you have ever read. Here is the fifth installment, \"\"one of the\nstrongest entries yet in what will surely be a master storyteller's magnum\nopus\"\" (Locus). Roland Deschain and his ka-tet are bearing southeast through\nthe forests of Mid-World on their quest for the Dark Tower. Their path\ntakes them to the outskirts of Calla Bryn Sturgis. But beyond the tranquil\nfarm town, the ground rises to the hulking darkness of Thunderclap, the\nsource of a terrible affliction that is stealing the town's soul. The\nwolves of Thunderclap and their unspeakable depredation are coming. To\nresist them is to risk all, but these are odds the gunslingers are used to.\nTheir guns, however, will not be enough....\"\r\n918,937,18116,Philip Pullman,His Dark Materials,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442329494l/18116._SY475_.jpg,4.25,88227,\"fiction, classics\",\"Lyra Belacqua tries to prevent kidnapped children from becoming the subject\nof gruesome experiments, decides to help Will Parry search for his father,\nand finds that she and Will are caught in a battle between the forces of\nthe Authority and those gathered by her uncle, Lord Asriel.\"\r\n919,938,16081272,J.A. Redmerski,The Edge of Never,https://images.gr-assets.com/books/1358810128l/16081272.jpg,4.26,117508,\"romance, contemporary\",The Edge of NeverJ.A. Redmerski\r\n920,939,15776309,Kimberly McCreight,Reconstructing Amelia,https://images.gr-assets.com/books/1350193583l/15776309.jpg,3.82,86965,\"mystery, fiction\",Reconstructing AmeliaKimberly McCreight\r\n921,940,18693716,Jojo Moyes,The One Plus One,https://images.gr-assets.com/books/1403185695l/18693716.jpg,3.94,87412,\"fiction, romance\",The One Plus OneJojo Moyes\r\n922,941,11899,Michael Cunningham,The Hours,https://images.gr-assets.com/books/1479663379l/11899.jpg,3.91,97462,\"fiction, contemporary\",Winter 2000\r\n923,942,15858248,Alice Clayton,Wallbanger,https://images.gr-assets.com/books/1352205960l/15858248.jpg,4.1,134805,\"contemporary, fiction\",\"A young woman living in a fantastic new apartment in San Francisco has\ndifficulty sleeping at night due to the late-night noises she hears from\nthe apartment next door until a chance encounter with one of her neighbors\nhelps distract her. Original.\"\r\n924,943,4136,David Sedaris,Holidays on Ice,https://images.gr-assets.com/books/1328330843l/4136.jpg,3.95,82591,\"memoir, nonfiction\",\"David Sedaris's beloved holiday collection is new again with six more\npieces, including a never before published story. Along with such favorites\nas the diaries of a Macy's elf and the annals of two very competitive\nfamilies, are Sedaris's tales of tardy trick-or-treaters (\"\"Us and Them\"\");\nthe difficulties of explaining the Easter Bunny to the French (\"\"Jesus\nShaves\"\"); what to do when you've been locked out in a snowstorm (\"\"Let It\nSnow\"\"); the puzzling Christmas traditions of other nations (\"\"Six to Eight\nBlack Men\"\"); what Halloween at the medical examiner's looks like (\"\"The\nMonster Mash\"\"); and a barnyard secret Santa scheme gone awry (\"\"Cow and\nTurkey\"\"). No matter what your favorite holiday, you won't want to miss\ncelebrating it with the author who has been called \"\"one of the funniest\nwriters alive\"\" (Economist).\"\r\n925,944,10584,Stephen King,Desperation,https://images.gr-assets.com/books/1395764566l/10584.jpg,3.8,94821,\"fiction, horror\",\"Several cross-country travelers--including a writer, a family on vacation,\nand a professor and his wife--end up in the little mining town of\nDesperation, where a crazy policeman and evil forces force them to fight\nfor their lives. 1,750,000 first printing. $1,000,000 ad/promo. BOMC Main.\"\r\n926,945,9369720,Lauren Kate,Passion,https://images.gr-assets.com/books/1362339802l/9369720.jpg,3.89,119735,\"fantasy, paranormal\",\"Desperate to unlock the curse that condemns her love for Daniel, Luce\nrevisits her past incarnations trying to understand her fate, but Daniel is\nchasing her throughout the centuries in order to keep her from rewriting\ntheir history.\"\r\n927,946,13089710,James Dashner,The Kill Order,https://images.gr-assets.com/books/1330636153l/13089710.jpg,3.69,96568,\"fiction, fantasy\",\"Traces the fateful period after the Earth is decimated by catastrophic\nsolar flares and reveals the stories behind the formation of WICKED, the\nconstruction of the Glade, and Thomas' entry into the Maze.\"\r\n928,947,11500217,Susan Ee,Angelfall,https://images.gr-assets.com/books/1423238576l/11500217.jpg,4.19,73886,\"fantasy, paranormal\",\"While trying to escape their apartment after the angels of the apocalypse\ndescended to demolish the modern world, Penryn meets Raffe, an angel whose\nwings have been cut off by the angels who kidnapped Penryn's sister, Paige.\"\r\n929,948,187020,Richard Russo,Empire Falls,https://images.gr-assets.com/books/1403184884l/187020.jpg,3.91,90811,\"fiction, contemporary\",\"Miles Roby tries to hold his family together while working at the Empire\nGrill in the once-successful logging town of Empire Falls while dealing\nwith the imperious Mrs. Whiting, the heir to a faded logging and textile\nlegacy, in this evocative novel by the author of Nobody's Fool. Reader's\nGuide available. Reprint. 150,000 first printing.\"\r\n930,949,13895,Robert Jordan,The Fires of Heaven,https://images.gr-assets.com/books/1327866286l/13895.jpg,4.13,93227,\"fantasy, fiction\",\"Rand, the Dragon Reborn, defends himself against the many Aiel who reject\nhim and ignites the purging fires of prophecy. Reprint.\"\r\n931,950,20820994,Jandy Nelson,I'll Give You the Sun,https://images.gr-assets.com/books/1496659336l/20820994.jpg,4.14,140937,\"contemporary, romance\",\"A story of first love and family loss follows the estrangement between\ndaredevil Jude and her loner twin brother, Noah, as a result of a\nmysterious event that is brought to light by a beautiful, broken boy and a\nnew mentor. Simultaneous eBook.\"\r\n932,951,22283,Chuck Palahniuk,Survivor,https://images.gr-assets.com/books/1327346693l/22283.jpg,3.93,49551,\"fiction, contemporary\",\"“A wild amphetamine ride through the vagaries of fame and the nature of\nbelief.”—San Francisco Chronicle Tender Branson—last surviving member of\nthe Creedish Death Cult—is dictating his life story into Flight 2039’s\nrecorder. He is all alone in the airplane, which will crash shortly into\nthe vast Australian outback. But before it does, he will unfold the tale of\nhis journey from an obedient Creedish child to an ultra-buffed, steroid-\nand collagen-packed media messiah. Unpredictable and unforgettable,\nSurvivor is Chuck Palahniuk at his deadpan peak: a mesmerizing, unnerving,\nand hilarious satire on the wages of fame and the bedrock lunacy of the\nmodern world.\"\r\n933,952,9420,Sophie Kinsella,Shopaholic and Baby,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274774l/9420.jpg,3.77,98130,\"fiction, romance\",\"Becky's life is perfect, with a job at London's biggest new store, house-\nhunting with husband Luke, and a baby on the way, until she discovers that\nher new celebrity obstetrician is Luke's glamorous ex-girlfriend.\"\r\n934,953,5091,Stephen King,The Dark Tower,https://images.gr-assets.com/books/1372296329l/5091.jpg,4.27,93296,\"fantasy, fiction\",The Dark TowerStephen King\r\n935,954,6202690,Catherine Hardwicke,Twilight Director's Notebook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438760194l/6202690._SY475_.jpg,4.2,88847,\"nonfiction, fantasy\",\"Follow director Catherine Hardwicke through the creative process that went\ninto transforming Stephenie Meyer's novel into box office gold. Discover\nthe inside secrets on wardrobe, storyboard sketches, behind-the-scenes\nphotographs, personal notes about Catherine's favorite scenes, and much\nmore.\"\r\n936,955,9418,Sophie Kinsella,Shopaholic Abroad,https://images.gr-assets.com/books/1266449959l/9418.jpg,3.75,93498,\"fiction, romance\",\"For Rebecca Bloomwood, life is peachy. She has a job on morning TV, telling\npeople how to manage their money - a subject on which she is an expert. Her\nbank manager is actually being nice to her, despite being just a tad\noverdrawn. And the icing on the brioche is that her boyfriend is moving to\nNew York ...and has asked her to go with him. New York! The Museum of\nModern Art! The Guggenheim! The Metropolitan Opera House! And Becky does\nmean to go to all these. Honestly. It's just that it seems silly not to\ncheck out a few other places first. Like Bloomingdales. And Saks. And that\namusing little place she's been told about where you can sometimes get a\nPrada dress for $10. Or was it $100? Anyway, it's full of fantastic\nbargains. Shopaholic Abroad - because there just aren't enough shops in\nBritain.\"\r\n937,956,5544,Richard Feynman,\"Surely You're Joking, Mr. Feynman! Adventures of a Curious Character\",https://images.gr-assets.com/books/1348445281l/5544.jpg,4.29,91625,\"science, biography\",\"The Nobel Prize-winning theoretical physicist talks about his adventure-\nfilled life in a series of transcribed taped discussions\"\r\n938,957,6654313,Maggie Stiefvater,Linger,https://images.gr-assets.com/books/1292482391l/6654313.jpg,3.91,125363,\"fantasy, ebooks\",\"As Grace hides the vast depth of her love for Sam from her parents and Sam\nstruggles to release his werewolf past and claim a human future, a new wolf\nnamed Cole wins Isabel's heart but his own past threatens to destroy the\nwhole pack.\"\r\n939,958,3579,L.M. Montgomery,The Complete Anne of Green Gables Boxed Set,https://images.gr-assets.com/books/1267721500l/3579.jpg,4.42,92142,\"romance, classics\",\"Here is a deluxe gift-box edition of L.M. Montgomery's classic stories\nabout one of the most beloved fictional heroines of all time--Anne of Green\nGables.\"\r\n940,959,7588,\"James Joyce, Seamus Deane\",A Portrait of the Artist as a Young Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554800429l/7588.jpg,3.6,92569,\"classics, fiction\",\"\"\"The first, shortest, and most approachable of James Joyce's novels, A\nPortrait of the Artist as a Young Man portrays the Dublin upbringing of\nStephen Dedalus, from his youthful days at Clongowes Wood College to his\nradical questioning of all convention. In doing so, it provides an oblique\nself-portrait of the young Joyce himself. At its center lie questions of\norigin and source, authority and authorship, and the relationship of an\nartist to his family, culture, and race. Exuberantly inventive in style,\nthe novel subtly and beautifully orchestrates the patterns of quotation and\nrepetition instrumental in its hero's quest to create his own character,\nhis own language, life, and art- 'to forge in the smithy of my soul the\nuncreated conscience of my race.' This edition, published for the novel's\ncentennial, is the definitive text, authorized by the Joyce estate and\ncollated from all known proofs, manuscripts, and impressions to reflect the\nauthor's original wishes.\"\"\"\r\n941,960,1166599,\"Robert Jordan, Brandon Sanderson\",The Gathering Storm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442815923l/1166599._SY475_.jpg,4.34,94095,\"fantasy, fiction\",\"Tarmon Gai'don, the Last Battle, looms. And mankind is not ready. The final\nvolume of the Wheel of Time, A Memory of Light, was partially written by\nRobert Jordan before his untimely passing in 2007. Brandon Sanderson, New\nYork Times bestselling author of the Mistborn books, was chosen by Jordan's\neditor--his wife, Harriet McDougal--to complete the final book. The scope\nand size of the volume was such that it could not be contained in a single\nbook, and so Tor proudly presents The Gathering Storm as the first of three\nnovels that will cover the outline left by Robert Jordan, chronicling\nTarmon Gai'don and Rand al'Thor's final confrontation with the Dark One.\nThis short sequence will complete the struggle against the Shadow, bringing\nto a close a journey begun almost twenty years ago and marking the\nconclusion of the Wheel of Time, the preeminent fantasy epic of our era. In\nthis epic novel, Robert Jordan's international bestselling series begins\nits dramatic conclusion. Rand al'Thor, the Dragon Reborn, struggles to\nunite a fractured network of kingdoms and alliances in preparation for the\nLast Battle. As he attempts to halt the Seanchan encroachment northward--\nwishing he could form at least a temporary truce with the invaders--his\nallies watch in terror the shadow that seems to be growing within the heart\nof the Dragon Reborn himself. Egwene al'Vere, the Amyrlin Seat of the rebel\nAes Sedai, is a captive of the White Tower and subject to the whims of\ntheir tyrannical leader. As days tick toward the Seanchan attack she knows\nis imminent, Egwene works to hold together the disparate factions of Aes\nSedai while providing leadership in the face of increasing uncertainty and\ndespair. Her fight will prove the mettle of the Aes Sedai, and her conflict\nwill decide the future of the White Tower--and possibly the world itself.\nThe Wheel of Time turns, and Ages come and pass. What was, what will be,\nand what is, may yet fall under the Shadow.\"\r\n942,961,19089,\"George Eliot, Michel Faber\",Middlemarch,https://images.gr-assets.com/books/1481264628l/19089.jpg,3.93,95995,\"classics, fiction\",\"Middlemarch is a town on the rise. With its old country gentry, middle\nclass, and tradesmen, it is ever growing and changing with the times, circa\n1830. Vast and crowded, rich in irony and suspense, the novel Middlemarch\nis richer still in psychological insight. One of the best-loved works of\nthe nineteenth century, it introduces two of the era's most enduring\ncharacters--Dorothea Brooke, a passionately idealistic woman, and Tertius\nLydgate, an ambitious young doctor--and explores the complex social\nrelationships in a town that moves and breathes with a life of its own.\"\r\n943,962,13496084,Colleen Hoover,Point of Retreat,https://images.gr-assets.com/books/1330543249l/13496084.jpg,4.3,109344,\"romance, contemporary\",\"Layken and Will's relationship has endured through hardships, heartache,\nand a cruel twist of fate, further solidifying the fact that they belong\ntogether. But the two lovers could not have expected that the things that\nbrought them together may ultimately be the things that tear them apart.\nTheir connection is on the brink of being destroyed forever and it will\ntake an extraordinary amount of willpower to keep their love afloat.\"\r\n944,963,5350,John Grisham,The Partner,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235158l/5350.jpg,3.89,86870,\"fiction, thriller\",The PartnerJohn Grisham\r\n945,964,30,J.R.R. Tolkien,The Hobbit and The Lord of the Rings,https://images.gr-assets.com/books/1346072396l/30.jpg,4.59,90907,\"fiction, fantasy\",\"Presents a box set including the complete \"\"Lord of the Rings\"\" trilogy, as\nwell as its prequel, \"\"The Hobbit.\"\"\"\r\n946,965,13517535,S.C. Stephens,Thoughtless,https://images.gr-assets.com/books/1331254339l/13517535.jpg,4.12,90483,\"romance, contemporary\",\"From the #1 New York Times bestselling author S.C. Stephens comes a\npowerful and emotional contemporary romance featuring a young woman in a\nnew city who finds herself torn between her handsome, reliable boyfriend\nand a sexy local rock star. For almost two years now, Kiera’s boyfriend,\nDenny, has been everything she’s ever wanted: loving, tender, and endlessly\ndevoted to her. When they head off to a new city to start their lives\ntogether—Denny at his dream job and Kiera at a top-notch\nuniversity—everything seems perfect. Then an unforeseen obligation forces\nthe happy couple apart. Feeling lonely, confused, and in need of comfort,\nKiera turns to an unexpected source—a local rock star named Kellan Kyle. At\nfirst, he’s purely a friend she can lean on, but as her loneliness grows,\nso does their relationship. And then one night everything changes…and none\nof them will ever be the same.\"\r\n947,966,425029,Scott Turow,Presumed Innocent,https://images.gr-assets.com/books/1404412704l/425029.jpg,4.1,91774,\"mystery, thriller\",Presumed InnocentScott Turow\r\n948,967,11597,Stephen King,The Dark Half,https://images.gr-assets.com/books/1430122353l/11597.jpg,3.74,94624,\"fiction, thriller\",\"Evidence indicates that Thad Beaumont whose novels seem to be the product\nof a twisted imagination, may just be quilty of a series of monstrous\nmurders. Copyright © Libri GmbH. All rights reserved.\"\r\n949,968,7968243,Stacy Schiff,Cleopatra: A Life,https://images.gr-assets.com/books/1294098301l/7968243.jpg,3.62,73994,\"biography, history\",\"Her palace shimmered with onyx and gold but was richer still in political\nand sexual intrigue. Above all else, Cleopatra was a shrewd strategist and\nan ingenious negotiator. She was married twice, each time to a brother. She\nwaged a brutal civil war against the first and poisoned the second; incest\nand assassination were family specialties. She had children by Julius\nCaesar and Mark Antony, two of the most prominent Romans of the day. With\nAntony she would attempt to forge a new empire, in an alliance that spelled\nboth their ends. Famous long before she was notorious, Cleopatra has gone\ndown in history for all the wrong reasons. Her supple personality and the\ndrama of her circumstances have been lost. In a masterly return to the\nclassical sources, Stacy Schiff boldly separates fact from fiction to\nrescue the magnetic queen whose death ushered in a new world order.\"\r\n950,969,1911,Thomas L. Friedman,The World Is Flat: A Brief History of the Twenty-first Century,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442191453l/1911._SY475_.jpg,3.66,78271,\"history, business\",\"Offers a concise history of globalization, discussing a wide range of\ntopics, from the September 11 terrorist attacks to the growth of the middle\nclass in both China and India.\"\r\n951,970,17182126,Brandon Sanderson,Steelheart,https://images.gr-assets.com/books/1357576738l/17182126.jpg,4.16,76261,\"fantasy, fiction\",\"At age eight, David watched as his father was killed by an Epic, a human\nwith superhuman powers, and now, ten years later, he joins the Reckoners--\nthe only people who are trying to kill the Epics and end their tyranny.\"\r\n952,972,32829,Jules Verne,Voyage au centre de la Terre,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389754903l/32829.jpg,3.84,89410,\"classics, fiction\",Voyage au centre de la TerreJules Verne\r\n953,973,6398634,Gretchen Rubin,The Happiness Project,https://images.gr-assets.com/books/1256849491l/6398634.jpg,3.57,94456,\"nonfiction, memoir\",The Happiness ProjectGretchen Rubin\r\n954,974,216363,Philip K. Dick,The Man in the High Castle,https://images.gr-assets.com/books/1448756803l/216363.jpg,3.66,84180,\"fiction, classics\",\"In a classic work of alternate history, the United States is divided up and\nruled by the Axis powers after the defeat of the Allies during World War\nII. Reissue. Winner of the Hugo Award for Best Novel.\"\r\n955,975,105992,\"Vincent Bugliosi, Curt Gentry\",Helter Skelter: The True Story of The Manson Murders,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347694754l/105992.jpg,4,92158,\"nonfiction, crime\",\"The inside story behind the Manson killings explains how Charles Manson was\nable to make his \"\"family\"\" murder for him, chronicles the investigation, and\ndescribes in detail the court trial that brought him and his accomplices to\njustice. Winner of the Edgar Allan Poe Award. Reprint.\"\r\n956,978,11559200,Deborah Harkness,Shadow of Night,https://images.gr-assets.com/books/1320604137l/11559200.jpg,4.04,97925,\"fiction, paranormal\",\"A follow-up to the best-selling A Discovery of Witches finds Oxford scholar\nand reluctant witch Dina and vampire geneticist Matthew Clairmont in\nElizabethan London, where Dina seeks a magical tutor and Matthew confronts\nelements from his past at the same time the mystery of Ashmole 782 deepens.\nReprint.\"\r\n957,979,18816603,Jodi Picoult,Leaving Time,https://images.gr-assets.com/books/1394487223l/18816603.jpg,3.94,76553,\"fiction, mystery\",Leaving TimeJodi Picoult\r\n958,980,71811,Patricia Briggs,Moon Called,https://images.gr-assets.com/books/1272070347l/71811.jpg,4.18,129150,\"fantasy, paranormal\",\"While trying to live a so-called normal existence, mechanic Mercy Thompson,\na shapeshifter raised by werewolves, gets into trouble with the gremlins,\nwitches, and vampires with whom she deals on a daily basis. Original.\"\r\n959,981,872333,Melissa de la Cruz,Blue Bloods,https://images.gr-assets.com/books/1322281515l/872333.jpg,3.68,116687,\"fantasy, paranormal\",\"Schuyler Van Alen is confused about what is happening to her. Her veins are\nstarting to turn blue, and she’s starting to crave raw meat. Soon, her\nworld is thrust into an intricate maze of secret societies and bitter\nintrigue. Schuyler has never been a part of the trendy crowd at her\nprestigious New York private school. Now, all of a sudden, Jack Force, the\nmost popular guy in school, is showing an interest in her. And when one of\nthe popular girls is found dead, Schuyler and Jack are determined to get to\nthe bottom of it. Schuyler wants to find out the secrets of the mysterious\nBlue Bloods. But is she putting herself in danger? Melissa de la Cruz’s\nvampire mythology, set against the glitzy backdrop of New York City, is a\njuicy and intoxicating read.\"\r\n960,982,40024,Caleb Carr,The Alienist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256626l/40024.jpg,4.05,96981,\"mystery, fiction\",\"When a madman begins stalking victims on the streets of 1896 New York, a\nteam of investigators is forced to apply radical and untested techniques\nthat include fingerprinting and the controversial science of psychology.\nReprint. 25,000 first printing.\"\r\n961,983,25489625,Ta-Nehisi Coates,Between the World and Me,https://images.gr-assets.com/books/1451435027l/25489625.jpg,4.4,74218,\"nonfiction, memoir\",Between the World and MeTa-Nehisi Coates\r\n962,984,15997,\"John Milton, John      Leonard\",Paradise Lost,https://images.gr-assets.com/books/1455618673l/15997.jpg,3.8,96316,\"classics, poetry\",Edited with an introduction and notes by John Leonard.\r\n963,985,6463967,Michael   Lewis,The Big Short: Inside the Doomsday Machine,https://images.gr-assets.com/books/1453470736l/6463967.jpg,4.26,37090,\"business, nonfiction\",\"The author examines the causes of the U.S. stock market crash of 2008 and\nits relation to overpriced real estate, bad mortgages, shareholder demand\nfor excessive profits, and the growth of toxic derivatives.\"\r\n964,986,11564,Stephen King,The Girl Who Loved Tom Gordon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1580235339l/11564._SY475_.jpg,3.56,95768,\"horror, fiction\",\"The acclaimed #1 New York Times and undisputed King of Horror Stephen King\noffers a frightening suspense novel about a young girl who becomes lost in\nthe woods as night falls. On a six-mile hike on the Maine-New Hampshire\nbranch of the Appalachian Trail, nine-year-old Trisha McFarland quickly\ntires of the constant bickering between her older brother, Pete, and her\nrecently divorced mother. But when she wanders off by herself, and then\ntries to catch up by attempting a shortcut, she becomes lost in a\nwilderness maze full of peril and terror. As night falls, Trisha has only\nher ingenuity as a defense against the elements, and only her courage and\nfaith to withstand her mounting fears. For solace she tunes her Walkman to\nbroadcasts of Boston Red Sox baseball games and follows the gritty\nperformances of her hero, relief pitcher Tom Gordon. And when her radio’s\nreception begins to fade, Trisha imagines that Tom Gordon is with\nher—protecting her from an all-too-real enemy who has left a trail of\nslaughtered animals and mangled trees in the dense, dark woods…\"\r\n965,987,8621462,\"Patrick Ness, Jim Kay, Siobhan Dowd\", A Monster Calls ,https://images.gr-assets.com/books/1485991317l/8621462.jpg,4.36,104579,\"fantasy, fiction\",\"Thirteen-year-old Conor awakens one night to find a monster outside his\nbedroom window, but not the one from the recurring nightmare that began\nwhen his mother became ill, but an ancient, wild creature that wants him to\nface truth and loss.\"\r\n966,988,8253920,\"Robert Jordan, Brandon Sanderson\",Towers of Midnight,https://images.gr-assets.com/books/1358109459l/8253920.jpg,4.42,91383,\"fantasy, fiction\",\"Towers of MidnightRobert Jordan, Brandon Sanderson\"\r\n967,989,540020,Frederick Forsyth,The Day of the Jackal,https://images.gr-assets.com/books/1405364996l/540020.jpg,4.25,85883,\"fiction, mystery\",The Day of the JackalFrederick Forsyth\r\n968,990,6732019,\"Jason Fried, David Heinemeier Hansson\",Rework,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275636l/6732019.jpg,3.93,88626,\"business, nonfiction\",\"\"\"Rework\"\" shows you a better, faster, easier way to succeed in business.\nYou'll learn how to be more productive, how to get exposure without\nbreaking the bank, and tons more counterintuitive ideas that will inspire\nand provoke you.\"\r\n969,991,8909152,Rainbow Rowell,Attachments,https://images.gr-assets.com/books/1499377988l/8909152.jpg,3.95,105414,\"romance, contemporary\",\"Gossiping and sharing their personal secrets on e-mail in spite of their\ncompany's online monitoring practices, Beth and Jennifer unwittingly amuse\nInternet security officer Lincoln, who unexpectedly falls for Beth while\nreading their correspondences. 30,000 first printing.\"\r\n970,992,3090465,\"Stephenie Meyer, Ilyana Kadushin, Matt Walters\",The Twilight Saga,https://images.gr-assets.com/books/1327930511l/3090465.jpg,3.88,89204,\"fantasy, romance\",\"The Twilight SagaStephenie Meyer, Ilyana Kadushin, Matt Walters\"\r\n971,993,12875258,Carol Rifka Brunt,Tell the Wolves I'm Home,https://images.gr-assets.com/books/1335450415l/12875258.jpg,4.04,85582,\"fiction, contemporary\",\"Her world upended by the death of a beloved artist uncle who was the only\nperson who understood her, fourteen-year-old June is mailed a teapot by her\nuncle's grieving friend, with whom June forges a poignant relationship.\"\r\n972,994,32085,James Herriot,All Creatures Great And Small,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393644607l/32085.jpg,4.31,64779,\"memoir, nonfiction\",\"The classic multimillion copy bestseller Delve into the magical,\nunforgettable world of James Herriot, the world's most beloved\nveterinarian, and his menagerie of heartwarming, funny, and tragic animal\npatients. For over forty years, generations of readers have thrilled to\nHerriot's marvelous tales, deep love of life, and extraordinary\nstorytelling abilities. For decades, Herriot roamed the remote, beautiful\nYorkshire Dales, treating every patient that came his way from smallest to\nlargest, and observing animals and humans alike with his keen, loving eye.\nIn All Creatures Great and Small, we meet the young Herriot as he takes up\nhis calling and discovers that the realities of veterinary practice in\nrural Yorkshire are very different from the sterile setting of veterinary\nschool. Some visits are heart-wrenchingly difficult, such as one to an old\nman in the village whose very ill dog is his only friend and companion,\nsome are lighthearted and fun, such as Herriot's periodic visits to the\noverfed and pampered Pekinese Tricki Woo who throws parties and has his own\nstationery, and yet others are inspirational and enlightening, such as\nHerriot's recollections of poor farmers who will scrape their meager\nearnings together to be able to get proper care for their working animals.\nFrom seeing to his patients in the depths of winter on the remotest\nhomesteads to dealing with uncooperative owners and critically ill animals,\nHerriot discovers the wondrous variety and never-ending challenges of\nveterinary practice as his humor, compassion, and love of the animal world\nshine forth. James Herriot's memoirs have sold 80 million copies worldwide,\nand continue to delight and entertain readers of all ages.\"\r\n973,995,11408650,Michelle Hodkin,The Unbecoming of Mara Dyer,https://images.gr-assets.com/books/1336655755l/11408650.jpg,4.09,83847,\"paranormal, fantasy\",\"Seventeen-year-old Mara cannot remember the accident that took the lives of\nthree of her friends, but after moving from Rhode Island to Florida,\nfinding love with Noah, and more deaths, she realizes that uncovering\nsomething buried in her memory might save her family and her future.\"\r\n974,996,6854,Janet Evanovich,Three to Get Deadly,https://images.gr-assets.com/books/1311727539l/6854.jpg,4.14,113400,\"mystery, fiction\",\"Stephanie Plum, the brassy babe in the powder blue Buick is back and she's\nhaving a bad hair day -- for the whole month of January. She's been given\nthe unpopular task of finding Mo Bedemier, Trenton's most beloved citizen,\narrested for carrying concealed, gone no-show for his court appearance. And\nto make matters worse, she's got Lula, a former hooker turned file clerk --\nnow a wannabe bounty hunter -- at her side, sticking like glue. Lula's big\nand blonde and black and itching to get the chance to lock up a crook in\nthe trunk of her car. Morelli, the New Jersey vice cop with the slow-\nburning smile that undermines a girl's strongest resolve is being polite.\nSo what does this mean? Has he found a new love? Or is he manipulating\nSteph, using her in his police investigation, counting on her unmanageable\ncuriosity and competitive Jersey attitude? Once again, the entire One for\nthe Money crew is in action, including Ranger and Grandma Mazur, searching\nfor Mo, tripping down a trail littered with dead drug dealers, leading\nStephanie to suspect Mo has traded his ice-cream scoop for a vigilante gun.\nCursed with a disastrous new hair color and an increasing sense that it's\nreally time to get a new job, Stephanie spirals and tumbles through Three\nto Get Deadly with all the wisecracks and pace her fans have come to\nexpect.\"\r\n975,997,136116,Emmuska Orczy,The Scarlet Pimpernel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406764899l/136116.jpg,4.06,93217,\"classics, fiction\",\"A band of titled Englishmen, led by the Scarlet Pimpernel, assists\ncondemned aristocrats in their escape to England during the Reign of\nTerror.\"\r\n976,998,44186,\"Jon Stone, Michael J. Smollin\",The Monster at the End of This Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193494l/44186.jpg,4.45,102184,\"fiction, classics\",\"Grover tries to prevent young readers from turning the pages of this book\nbecause he doesn't want to meet up with the monster on the last page.\"\r\n977,999,37741,Judy Blume,Tales of a Fourth Grade Nothing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390836483l/37741.jpg,4.09,106435,\"fiction, classics\",\"Peter, who is tired of having to keep mischievous two-year-old Fudge out of\ntrouble, discovers that his pet turtle is missing.\"\r\n978,1000,10194157,Leigh Bardugo,Shadow and Bone,https://images.gr-assets.com/books/1339533695l/10194157.jpg,4.05,135225,\"fantasy, paranormal\",\"Orphaned by the Border Wars, Alina Starkov is taken from obscurity and her\nonly friend, Mal, to become the protegâe of the mysterious Darkling, who\ntrains her to join the magical elite in the belief that she is the Sun\nSummoner, who can destroy the monsters of the Fold.\"\r\n979,1001,15797938,\"Herman Koch, Sam Garrett\",Het diner,https://images.gr-assets.com/books/1355949630l/15797938.jpg,3.22,74979,\"fiction, mystery\",\"An internationally bestselling phenomenon: the darkly suspenseful, highly\ncontroversial tale of two families struggling to make the hardest decision\nof their lives--all over the course of one meal.\"\r\n980,1002,14290364,Marie Lu,Champion,https://images.gr-assets.com/books/1382652310l/14290364.jpg,4.37,114623,\"romance, fantasy\",\"\"\"June and Day have sacrificed so much for the people of the Republic--and\neach other--and now their country is on the brink of a new existence. Just\nwhen a peace treaty is imminent, a plague outbreak causes panic in the\nColonies, and war threatens the Republic's border cities\"\"--\"\r\n981,1003,61666,Carl Sagan,Contact,https://images.gr-assets.com/books/1408792653l/61666.jpg,4.11,90917,\"fiction, science\",\"In 1999, a multinational team of astronauts ventures deep into outer space,\nwhere they come face to face with an advanced alien civilization, in a tie-\nin to the new blockbuster film. Reissue. Movie tie-in.\"\r\n982,1004,9961796,Stephanie Perkins,Lola and the Boy Next Door,https://images.gr-assets.com/books/1358271832l/9961796.jpg,4,108370,\"romance, contemporary\",\"Lola lives an extraordinary life in San Francisco with her two dads and\nbeloved dog, but when the Bells return to the house next door Lola recalls\nboth the friendship-ending fight with Calliope and the crush she had on\nCricket.\"\r\n983,1005,3711,Zadie Smith,White Teeth,https://images.gr-assets.com/books/1374739885l/3711.jpg,3.75,82474,\"fiction, contemporary\",\"Set in post-war London, this novel of the racial, political, and social\nupheaval of the last half-century follows two families--the Joneses and the\nIqbals, both outsiders from within the former British empire--as they make\ntheir way in modern England. A first novel. Reprint. 200,000 first\nprinting.\"\r\n984,1006,11887020,\"Chris Kyle, Scott McEwen, Jim DeFelice\",American Sniper: The Autobiography of the Most Lethal Sniper in U.S. Military History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348628279l/11887020.jpg,3.97,61422,\"biography, nonfiction\",\"NOW A BLOCKBUSTER MOTION PICTURE DIRECTED BY CLINT EASTWOOD—NOMINATED FOR\nSIX ACADEMY AWARDS, INCLUDING BEST PICTURE He is the deadliest American\nsniper ever, called \"\"the devil\"\" by the enemies he hunted and \"\"the legend\"\"\nby his Navy SEAL brothers . . . From 1999 to 2009, U.S. Navy SEAL Chris\nKyle recorded the most career sniper kills in United States military\nhistory. The Pentagon has officially confirmed more than 150 of Kyle's\nkills (the previous American record was 109), but it has declined to verify\nthe astonishing total number for this book. Iraqi insurgents feared him so\nmuch they placed a bounty on his head. Kyle earned legendary status among\nhis fellow U.S. warriors, whom he protected with deadly accuracy from\nrooftops and stealth positions. Gripping and unforgettable, Kyle's\nmasterful account of his extraordinary battlefield experiences ranks as one\nof the great war memoirs of all time.\"\r\n985,1007,35982,Chelsea Handler,My Horizontal Life: A Collection of One-Night Stands,https://images.gr-assets.com/books/1388631721l/35982.jpg,3.79,83607,\"memoir, nonfiction\",My Horizontal Life: A Collection of One-Night StandsChelsea Handler\r\n986,1008,8659601,Pittacus Lore,The Power of Six,https://images.gr-assets.com/books/1345067406l/8659601.jpg,4.17,97938,\"fantasy, fiction\",The Power of SixPittacus Lore\r\n987,1009,15815333,Meg Wolitzer,The Interestings,https://images.gr-assets.com/books/1451446889l/15815333.jpg,3.54,76566,\"fiction, contemporary\",The InterestingsMeg Wolitzer\r\n988,1010,43070,Bill Watterson,The Essential Calvin and Hobbes: A Calvin and Hobbes Treasury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422379908l/43070.jpg,4.65,93001,\"comics, fiction\",\"The Essential Calvin and Hobbes is an over-size anthology-type book\nincluding an original 16-page story and color Sunday cartoons.\"\r\n989,1011,1379961,Geraldine Brooks,People of the Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442955497l/1379961._SY475_.jpg,4,95796,\"fiction, mystery\",\"Offered a coveted job to analyze and conserve a priceless Sarajevo\nHaggadah, Australian rare-book expert Hanna Heath discovers a series of\ntiny artifacts in the volume's ancient binding that reveal its historically\nsignificant origins. By the Pulitzer Prize-winning author of March.\nReprint.\"\r\n990,1012,13508607,Kate Morton,The Secret Keeper,https://images.gr-assets.com/books/1455089196l/13508607.jpg,4.13,89460,\"fiction, mystery\",\"Withdrawing from a family party to the solitude of her tree house, 16-year-\nold Laurel Nicolson witnesses a shocking murder that throughout a\nsubsequent half century shapes her beliefs, her acting career and the lives\nof three strangers from vastly different cultures. By the best-selling\nauthor of The Distant Hours. Reprint. 200,000 first printing.\"\r\n991,1013,411053,Better Homes and Gardens,Better Homes & Gardens New Cook Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174513619l/411053._SX318_.jpg,4.14,93640,\"cookbooks, nonfiction\",Better Homes & Gardens New Cook BookBetter Homes and Gardens\r\n992,1014,8698,Douglas Adams,\"So Long, and Thanks for All the Fish\",https://images.gr-assets.com/books/1369563116l/8698.jpg,4.08,93774,\"fiction, fantasy\",\"Further adventures of Arthur Dent, Ford Prefect, and the all new voidoid\ngang upon returning to Earth after eight years of crazed wanderings around\nthe galaxy in this science fiction spoof which continues \"\"The Hitchhiker's\nGuide to the Universe.\"\"\"\r\n993,1015,16631,\"Hermann Hesse, Basil Creighton\",Der Steppenwolf: Erzählung,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389332672l/16631.jpg,4.11,80769,\"fiction, classics\",\"Der Gang eines hochbegabten, übersensiblen Menschen durch die Hölle des\nAlltags, hinter der er nur allmählich einen tieferen Sinn ahnt.\"\r\n994,1016,32263,Tess Gerritsen,The Surgeon,https://images.gr-assets.com/books/1277923728l/32263.jpg,4.1,89468,\"mystery, crime\",The SurgeonTess Gerritsen\r\n995,1017,17572903,Jojo Moyes,The Girl You Left Behind,https://images.gr-assets.com/books/1366558957l/17572903.jpg,3.95,80991,\"fiction, romance\",The Girl You Left BehindJojo Moyes\r\n996,1018,68487,Robin Hobb,Royal Assassin,https://images.gr-assets.com/books/1387145228l/68487.jpg,4.21,82608,\"fantasy, fiction\",\"Tutored in the dark arts of the assassin under the devious eye of King\nShrewd, young Fitz, the illegitimate son of the noble Prince Chivalry,\nfinds the fate of the kingdom in his hands when it is attacked by the\ntreacherous Red Ship Raiders\"\r\n997,1019,414999,Arthur C. Clarke,Childhood's End,https://images.gr-assets.com/books/1320552628l/414999.jpg,4.09,87141,\"fiction, classics\",\"The author questions the survival of mankind in this science fiction tale\nabout Overlords from outer space who dominate the world.\"\r\n998,1020,37190,\"Kate DiCamillo, Timothy Basil Ering\", The Tale of Despereaux,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412211823l/37190.jpg,4,113066,\"fantasy, fiction\",\"The adventures of Desperaux Tilling, a small mouse of unusual talents, the\nprincess that he loves, the servant girl who longs to be a princess, and a\ndevious rat determined to bring them all to ruin.\"\r\n999,1021,25460,\"Barbara Kingsolver, Steven L. Hopp, Camille Kingsolver, Richard A. Houser\",\"Animal, Vegetable, Miracle: A Year of Food Life\",https://images.gr-assets.com/books/1480104279l/25460.jpg,4.03,83881,\"nonfiction, memoir\",\"Follows the author's family's efforts to live on locally- and home-grown\nfoods, an endeavor through which they learned lighthearted truths about\nfood production and the connection between health and diet.\"\r\n1000,1022,20613470,Sarah J. Maas,Heir of Fire,https://images.gr-assets.com/books/1460846511l/20613470.jpg,4.53,123843,\"fantasy, romance\",The third and final book in the Throne of Glass series.\r\n1001,1024,6218281,Alan Bradley,The Sweetness at the Bottom of the Pie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187001l/6218281.jpg,3.81,99841,\"mystery, fiction\",The Sweetness at the Bottom of the PieAlan Bradley\r\n1002,1025,7214,Donald Miller,Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1531261584l/7214._SY475_.jpg,3.92,82090,\"christian, religion\",\"A popular minister recounts his zealous early life pursuit of the Christian\nlife and his experiences of emptiness and spiritual detachment, tracing his\nquest to connect with a God he perceived as distant.\"\r\n1003,1026,10965,Diana Gabaldon,A Breath of Snow and Ashes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197203l/10965.jpg,4.43,87098,\"history, fiction\",A Breath of Snow and AshesDiana Gabaldon\r\n1004,1027,18705209,Rick Riordan,The Blood of Olympus,https://images.gr-assets.com/books/1464201441l/18705209.jpg,4.41,110719,\"fantasy, fiction\",The Blood of OlympusRick Riordan\r\n1005,1028,26247008,Liane Moriarty,Truly Madly Guilty,https://images.gr-assets.com/books/1491249206l/26247008.jpg,3.55,90477,\"fiction, contemporary\",\"Six responsible adults. Three cute kids. One small dog. It's just a normal\nweekend. What could possibly go wrong? Sam and Clementine have a wonderful,\nalbeit busy life: they have two little girls, Sam has just started a new\ndream job, and Clementine, a cellist, is busy preparing for the audition of\na lifetime. If there's anything they can count on, it's each other.\nClementine and Erika are each other's oldest friends. A single look between\nthem can convey an entire conversation. But theirs is a complicated\nrelationship, so when Erika mentions a last-minute invitation to a barbecue\nwith her neighbors, Tiffany and Vid, Clementine and Sam don't hesitate.\nHaving Tiffany and Vid's larger-than-life personalities there will be a\nwelcome respite. Two months later, it won't stop raining, and Clementine\nand Sam can't stop asking themselves the question: What if we hadn't gone?\"\r\n1006,1029,15704307,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume One\",https://images.gr-assets.com/books/1486028947l/15704307.jpg,4.25,131906,\"comics, fantasy\",\"Saga, Volume OneBrian K. Vaughan, Fiona Staples\"\r\n1007,1030,10996342,Chad Harbach,The Art of Fielding,https://images.gr-assets.com/books/1327882787l/10996342.jpg,3.99,81712,\"fiction, sports\",\"At Westish College, baseball star Henry Skrimshander seems destined for big\nleague until a routine throw goes disastrously off course. In the aftermath\nof his error, the fates of five people are upended. Henry's fight against\nself-doubt threatens to ruin his future. College president Guert Affenlight\nhas fallen unexpectedly and helplessly in love. Owen Dunne becomes caught\nup in a dangerous affair. Mike Schwartz realizes he has guided Henry's\ncareer at the expense of his own. And Pella Affenlight returns to Westish\nafter escaping an ill-fated marriage, determined to start a new life. As\nthe season counts down to its climactic final game, these five are forced\nto confront their deepest hopes, anxieties, and secrets. Written with\nboundless intelligence and filled with the tenderness of youth, \"\"The Art of\nFielding is mere baseball fiction the way Moby Dick is just a fish story\"\"\n(Nicholas Dawidoff). It is an expansive, warmhearted novel about ambition\nand its limits, about family and friendship and love, and about commitment\n--to oneself and to others.\"\r\n1008,1031,4631,Ernest Hemingway,A Moveable Feast,https://images.gr-assets.com/books/1427463201l/4631.jpg,4.04,69992,\"travel, history\",A Moveable FeastErnest Hemingway\r\n1009,1032,44652,Brandon Mull,Fablehaven,https://images.gr-assets.com/books/1460309528l/44652.jpg,4.08,99390,\"fantasy, fiction\",\"When Kendra and Seth go to stay at their grandparents' estate, they\ndiscover that it is a sanctuary for magical creatures and that a battle\nbetween good and evil is looming.\"\r\n1010,1033,438492,\"Lemony Snicket, Brett Helquist\",The Wide Window,https://images.gr-assets.com/books/1320705923l/438492.jpg,3.91,118624,\"fiction, fantasy\",\"The Wide WindowLemony Snicket, Brett Helquist\"\r\n1011,1034,91476,Jim Butcher,Grave Peril,https://images.gr-assets.com/books/1266470209l/91476.jpg,4.18,97736,\"fantasy, mystery\",\"After Chicago's ghost population starts going seriously postal, resident\nwizard Harry Dresden much figure out who is stirring them up and why they\nall seem to be somehow connected to him.\"\r\n1012,1035,10884,Walter Isaacson,Einstein. His Life and Universe,https://images.gr-assets.com/books/1328011405l/10884.jpg,4.08,71156,\"biography, science\",\"A narrative portrait based on the complete body of Einstein's papers offers\ninsight into his contributions to science, in an account that describes the\ninfluence of his discoveries on his personal views about morality,\npolitics, and tolerance.\"\r\n1013,1036,15842441,S.C. Stephens,Effortless,https://images.gr-assets.com/books/1364805648l/15842441.jpg,4.37,83085,\"romance, contemporary\",\"From the #1 New York Times bestselling author S.C. Stephens comes the new\nadult series everyone is talking about—and a love triangle you won’t\nforget. After being caught in the middle of a love triangle that led to a\ndevastating betrayal, Kiera pledged to learn from the mistakes she’d made.\nShe was determined to never again inflict that kind of pain on anyone,\nespecially the soulful, talented man who held her heart. But life offers\nnew challenges for every relationship, and when Kiera’s love is put to the\nultimate test, will it survive? Love is easy…trust is hard.\"\r\n1014,1037,5351,John Grisham,The Street Lawyer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924300l/5351.jpg,3.81,80577,\"fiction, mystery\",\"After a violent encounter with a homeless man, talented corporate lawyer\nMichael finds himself out in the streets, lucky to be alive, and holding a\ntop-secret file belonging to his former employers.\"\r\n1015,1038,310459,Mildred D. Taylor,\"Roll of Thunder, Hear My Cry\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345167l/310459.jpg,3.79,92980,\"classics, fiction\",\"Young Cassie Logan endures humiliation and witnesses the racism of the KKK\nas they embark on a cross-burning rampage, before she fully understands the\nimportance her family attributes to having land of their own.\"\r\n1016,1039,5899779,\"Seth Grahame-Smith, Jane Austen\",Pride and Prejudice and Zombies,https://images.gr-assets.com/books/1320449653l/5899779.jpg,3.28,103995,\"horror, fantasy\",\"As a mysterious plague falls upon the village of Meryton and zombies start\nrising from the dead, Elizabeth Bennett is determined to destroy the evil\nmenace, but becomes distracted by the arrival of the dashing and arrogant\nMr. Darcy.\"\r\n1017,1040,15790837,David Sedaris,Lets Explore Diabetes with Owls,https://images.gr-assets.com/books/1359704028l/15790837.jpg,3.8,81616,\"memoir, nonfiction\",Lets Explore Diabetes with OwlsDavid Sedaris\r\n1018,1041,12505,\"Fyodor Dostoyevsky, Constance Garnett, Alan Myers, Joseph Frank, Anna Brailovsky\",Идиот,https://images.gr-assets.com/books/1327865902l/12505.jpg,4.18,74642,\"classics, fiction\",\"In an attempt to woo two wholesome women--Natasya and Aglaia--the lovesick\nPrince Myshkin's good deeds are overshadowed by Ganya, the dishonest man of\ninterest to the women, in this volume that includes an introduction and\nnotes.\"\r\n1019,1042,365,Douglas Adams,Dirk Gently's Holistic Detective Agency,https://images.gr-assets.com/books/1404697381l/365.jpg,3.97,89569,\"fiction, fantasy\",\"From Douglas Adams, the legendary author of one of the most beloved science\nfiction novels of all time, The Hitchhiker’s Guide to the Galaxy, comes a\nwildly inventive novel—in trade paperback for the first time—of ghosts,\ntime travel, and one detective’s mission to save humanity from extinction.\nDIRK GENTLY’S HOLISTIC DETECTIVE AGENCY We solve the whole crime We find\nthe whole person Phone today for the whole solution to your problem\n(Missing cats and messy divorces a specialty) Douglas Adams, the “master of\nwacky words and even wackier tales” (Entertainment Weekly) once again\nboggles the mind with a completely unbelievable story of ghosts, time\ntravel, eccentric computer geniuses, Samuel Taylor Coleridge, the end of\nthe world, and—of course—missing cats.\"\r\n1020,1043,1809465,Jeff Kinney,Rodrick Rules,https://images.gr-assets.com/books/1360095964l/1809465.jpg,4.1,91831,\"fiction, comics\",\"Greg Heffley tells about his summer vacation and his attempts to steer\nclear of trouble when he returns to middle school and tries to keep his\nolder brother Rodrick from telling everyone about Greg's most humiliating\nexperience of the summer.\"\r\n1021,1044,22716447,Mindy Kaling,Why Not Me?,https://images.gr-assets.com/books/1442548684l/22716447.jpg,3.89,74199,\"memoir, nonfiction\",\"Hollywood starlet Mindy Kaling shares her ongoing, laugh-out-loud journey\nto find contentment and excitement in her adult life.\"\r\n1022,1045,18126198,Veronica Roth,Four: A Divergent Collection,https://images.gr-assets.com/books/1393687572l/18126198.jpg,4.1,97058,\"fiction, fantasy\",\"Complete your Divergent library with Four! Fans of the Divergent series by\n#1 New York Times bestselling author Veronica Roth will be thrilled by\nFour: A Divergent Collection, a companion volume that includes four pre-\nDivergent stories plus three additional scenes from Divergent, all told\nfrom Tobias's point of view. Readers first encountered Tobias as \"\"Four\"\" in\nDivergent. His voice is an integral part of Allegiant. Readers will find\nmore of this charismatic character's backstory told from his own\nperspective in Four: A Divergent Collection. When read together, these long\nnarrative pieces illuminate the defining moments in Tobias's life. The\nfirst three pieces in this volume—\"\"The Transfer,\"\" \"\"The Initiate,\"\" and \"\"The\nSon\"\"—follow Tobias's transfer from Abnegation to Dauntless, his Dauntless\ninitiation, and the first clues that a foul plan is brewing in the\nleadership of two factions. The fourth story, \"\"The Traitor,\"\" runs parallel\nwith the events of Divergent, giving readers a glimpse into the decisions\nof loyalty—and love—that Tobias makes in the weeks after he meets Tris\nPrior. Includes three exclusive scenes!\"\r\n1023,1046,23453112,\"Aziz Ansari, Eric Klinenberg\",Modern Romance,https://images.gr-assets.com/books/1432335014l/23453112.jpg,3.85,94231,\"nonfiction, psychology\",\"The acclaimed comedian teams up with a New York University sociologist to\nexplore the nature of modern relationships, evaluating how technology is\nshaping contemporary relationships and considering the differences between\ncourtships of the past and present.\"\r\n1024,1047,11594337,\"Katherine Applegate, Patricia Castelao\",The One and Only Ivan,https://images.gr-assets.com/books/1424981397l/11594337.jpg,4.24,85136,\"fiction, fantasy\",\"Soon to be a major motion picture! Winner of the Newbery Medal and a #1 New\nYork Times bestseller This unforgettable novel from renowned author\nKatherine Applegate celebrates the transformative power of unexpected\nfriendship. Inspired by the true story of a captive gorilla known as Ivan,\nthis illustrated book is told from the point of view of Ivan himself.\nHaving spent twenty-seven years behind the glass walls of his enclosure in\na shopping mall, Ivan has grown accustomed to humans watching him. He\nhardly ever thinks about his life in the jungle. Instead, Ivan occupies\nhimself with television, his friends Stella and Bob, and painting. But when\nhe meets Ruby, a baby elephant taken from the wild, he is forced to see\ntheir home, and his art, through new eyes. In the tradition of timeless\nstories like Charlotte's Web and Stuart Little, Katherine Applegate blends\nhumor and poignancy to create an unforgettable story of friendship, art,\nand hope. The One and Only Ivan features first-person narrative; author's\nuse of literary devices (personification, imagery); and story elements\n(plot, character development, perspective). Plus don't miss Katherine\nApplegate's Endling series!\"\r\n1025,1048,108229,Sebastian Junger,The Perfect Storm: A True Story of Men Against the Sea,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387738340l/108229.jpg,4.07,45382,\"nonfiction, history\",\"A real-life thriller that leaves us with the taste of salt on our tongues\nand a terror of the deep.\"\r\n1026,1049,68427,Brandon Sanderson,Elantris,https://images.gr-assets.com/books/1475740953l/68427.jpg,4.17,95950,\"fantasy, romance\",\"In 2005, Brandon Sanderson debuted with Elantris, an epic fantasy unlike\nany other then on the market. To celebrate its tenth anniversary, Tor is\nreissuing Elantris in a special edition, a fresh chance to introduce it to\nthe myriad readers who have since become Sanderson fans. This new edition\nbegins with a preface by author Dan Wells, the first person to read the\ncompleted novel, and a new afterword by Sanderson explaining how he came to\nwrite the book and its place in the Cosmere, the unified universe of all\nhis Tor novels. Also included is an expanded version of the \"\"Ars Arcanum\"\"\nappendix, with more of the technical details of the book's magic that fans\ncan never get enough of. Elantris was truly a milestone both for Sanderson\nand for the genre of epic fantasy. It deserves this special treatment,\nsomething Tor has done only once before, with Orson Scott Card's Ender's\nGame. Sanderson fans old and new will be excited to discover it. Other Tor\nbooks by Brandon Sanderson The Cosmere The Stormlight Archive The Way of\nKings Words of Radiance Edgedancer (Novella) Oathbringer (forthcoming) The\nMistborn trilogy Mistborn: The Final Empire The Well of Ascension The Hero\nof Ages Mistborn: The Wax and Wayne series Alloy of Law Shadows of Self\nBands of Mourning Collection Arcanum Unbounded Other Cosmere novels\nElantris Warbreaker The Alcatraz vs. the Evil Librarians series Alcatraz\nvs. the Evil Librarians The Scrivener's Bones The Knights of Crystallia The\nShattered Lens The Dark Talent The Rithmatist series The Rithmatist Other\nbooks by Brandon Sanderson The Reckoners Steelheart Firefight Calamity\"\r\n1027,1050,2118745,Patrick Ness,The Knife of Never Letting Go,https://images.gr-assets.com/books/1277071696l/2118745.jpg,3.96,99638,\"fantasy, fiction\",\"Todd and Viola are pursued by power-hungry Prentiss and mad minister Aaron\nas they set out across New World, searching for answers about their\ncolony's true past and seeking a way to warn the ship bringing settlers\nfrom Old World.\"\r\n1028,1051,33512,Jim Fergus,One Thousand White Women: The Journals of May Dodd,https://images.gr-assets.com/books/1389821957l/33512.jpg,3.88,84367,\"fiction, history\",\"One Thousand White Women is the story of May Dodd and a colorful assembly\nof pioneer women who, under the auspices of the U.S. government, travel to\nthe western prairies in 1875 to intermarry among the Cheyenne Indians. The\ncovert and controversial \"\"Brides for Indians\"\" program, launched by the\nadministration of Ulysses S. Grant, is intended to help assimilate the\nIndians into the white man's world. Toward that end May and her friends\nembark upon the adventure of their lifetime. Jim Fergus has so vividly\ndepicted the American West that it is as if these diaries are a capsule in\ntime.\"\r\n1029,1052,3720975,Jodi Picoult,Handle with Care,https://images.gr-assets.com/books/1316440644l/3720975.jpg,3.96,90138,\"fiction, contemporary\",\"When Willow is born with severe osteogenesis imperfecta, her parents are\ndevastated—she will suffer hundreds of broken bones as she grows, a\nlifetime of pain. In this provocative story from the #1 New York Times\nbestselling author, “Picoult writes with unassuming brilliance” (Stephen\nKing). Every expectant parent will tell you that they don’t want a perfect\nbaby, just a healthy one. Charlotte and Sean O’Keefe would have asked for a\nhealthy baby, too, if they’d been given the choice. Instead, their lives\nare made up of sleepless nights, mounting bills, the pitying stares of\n“luckier” parents, and maybe worst of all, the what-ifs. What if their\nchild had been born healthy? But it’s all worth it because Willow is, funny\nas it seems, perfect. She’s smart as a whip, on her way to being as pretty\nas her mother, kind, brave, and for a five-year-old an unexpectedly deep\nsource of wisdom. Willow is Willow, in sickness and in health. Everything\nchanges, though, after a series of events forces Charlotte and her husband\nto confront the most serious what-ifs of all. What if Charlotte had known\nearlier of Willow’s illness? What if things could have been different? What\nif their beloved Willow had never been born? To do Willow justice,\nCharlotte must ask herself these questions and one more. What constitutes a\nvaluable life? Emotionally riveting and profoundly moving, Handle with Care\nis an unforgettable novel about the fragility of life and the lengths we\nwill go to protect it.\"\r\n1030,1053,5093,\"Stephen King, Darrel Anderson\",Song of Susannah,https://images.gr-assets.com/books/1372296326l/5093.jpg,3.98,84957,\"fantasy, fiction\",\"Song of SusannahStephen King, Darrel Anderson\"\r\n1031,1054,13125947,Ally Condie,Reached,https://images.gr-assets.com/books/1330717582l/13125947.jpg,3.56,109290,\"fantasy, romance\",\"In search of a better life, Cassia joins a widespread rebellion against\nSociety, where she is tasked with finding a cure to the threat of survival\nand must choose between Xander and Ky.\"\r\n1032,1055,14836,Salman Rushdie,Midnight's Children,https://images.gr-assets.com/books/1371063511l/14836.jpg,3.99,75502,\"fiction, classics\",\"The life of a man born at the moment of India's independence becomes\ninextricably linked to that of his nation and is a whirlwind of disasters\nand triumphs that mirror modern India's course, in a twenty-fifth\nanniversary edition of the Booker Prize-winning novel. Reprint. 10,000\nfirst printing.\"\r\n1033,1056,535441,Max Brooks,The Zombie Survival Guide: Complete Protection from the Living Dead,https://images.gr-assets.com/books/1320562270l/535441.jpg,3.86,82535,\"horror, fiction\",\"An illustrated, comprehensive guide to surviving an attack by hordes of the\npredatory undead explains zombie physiology and behavior, the most\neffective weaponry and defense strategies, how to outfit one's home for a\nlong siege, and how to survive in any territory or terrain. Original.\n35,000 first printing.\"\r\n1034,1057,5348,John Grisham,The Testament,https://images.gr-assets.com/books/1403174228l/5348.jpg,3.83,80377,\"fiction, mystery\",The TestamentJohn Grisham\r\n1035,1058,16331,Agatha Christie,Murder at the Vicarage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388386575l/16331.jpg,4.03,93963,\"mystery, classics\",\"St. Mary Mead, a peaceful village where nothing ever happens, livens up\nconsiderably when the unpopular magistrate Colonel Protheroe is found dead,\nand Miss Marple discovers that a number of people wanted him dead.\"\r\n1036,1059,227651,Margaret Peterson Haddix,Among the Hidden ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388382796l/227651.jpg,3.97,94478,\"fiction, fantasy\",\"In a future where the Population Police enforce the law limiting a family\nto only two children, Luke, an illegal third child, has lived all his\ntwelve years in isolation and fear on his family's farm in this start to\nthe Shadow Children series from Margaret Peterson Haddix. Luke has never\nbeen to school. He's never had a birthday party, or gone to a friend's\nhouse for an overnight. In fact, Luke has never had a friend. Luke is one\nof the shadow children, a third child forbidden by the Population Police.\nHe's lived his entire life in hiding, and now, with a new housing\ndevelopment replacing the woods next to his family's farm, he is no longer\neven allowed to go outside. Then, one day Luke sees a girl's face in the\nwindow of a house where he knows two other children already live. Finally,\nhe's met a shadow child like himself. Jen is willing to risk everything to\ncome out of the shadows -- does Luke dare to become involved in her\ndangerous plan? Can he afford not to?\"\r\n1037,1060,315425,Michael Pollan,In Defense of Food: An Eater's Manifesto,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442538739l/315425._SY475_.jpg,4.07,80434,\"nonfiction, science\",\"Cites the reasons why people have become so confused about their dietary\nchoices and discusses the importance of enjoyable moderate eating of mostly\ntraditional plant foods.\"\r\n1038,1061,703292,Elizabeth George Speare,The Witch of Blackbird Pond,https://images.gr-assets.com/books/1345499790l/703292.jpg,3.97,105770,\"fiction, classics\",\"In 1687 in Connecticut, Kit Tyler, feeling out of place in the Puritan\nhousehold of her aunt, befriends an old woman considered a witch by the\ncommunity and suddenly finds herself standing trial for witchcraft.\"\r\n1039,1062,22918050,Kiera Cass,The Heir,https://images.gr-assets.com/books/1422993526l/22918050.jpg,3.85,111044,\"romance, fantasy\",\"Kiera Cass’s #1 New York Times bestselling Selection series has enchanted\nreaders from the very first page. In this fourth romantic novel, follow\nIlléa’s royal family into a whole new Selection—and find out what happens\nafter happily ever after. Twenty years ago, America Singer entered the\nSelection and won Prince Maxon’s heart. Now the time has come for Princess\nEadlyn to hold a Selection of her own. Eadlyn doesn’t expect anything like\nher parents’ fairy-tale love story...but as the competition begins, she may\ndiscover that finding her own happily ever after isn’t as impossible as\nshe’s always thought. A new generation of swoon-worthy characters and\ncaptivating romance awaits in the fourth book of the Selection series!\"\r\n1040,1063,9419,Sophie Kinsella,Shopaholic Ties the Knot,https://images.gr-assets.com/books/1371383294l/9419.jpg,3.77,88139,\"fiction, romance\",\"Becky Bloomwood is delighted when her boyfriend proposes, but her visions\nof a perfect wedding day dissolve as her mother plans a backyard wedding\nand her high-society mother-in-law-to-be insists on a lavish affair at the\nPlaza Hotel.\"\r\n1041,1064,5890,\"Wilkie Collins, Matthew Sweet\",The Woman in White,https://images.gr-assets.com/books/1295661017l/5890.jpg,3.98,93134,\"classics, mystery\",\"The mysterious appearance of a woman dressed in white leads to the\ndiscovery of a complicated plot involving a stolen inheritance and an\nescape from a mental institution.\"\r\n1042,1065,25735012,\"Robert Galbraith, J.K. Rowling\",Career of Evil,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,4.21,66979,\"mystery, fiction\",\"Career of EvilRobert Galbraith, J.K. Rowling\"\r\n1043,1066,5821978,Jenny Han,The Summer I Turned Pretty,https://images.gr-assets.com/books/1361666855l/5821978.jpg,3.96,104730,\"romance, contemporary\",\"Belly spends the summer she turns sixteen at the beach just like every\nother summer of her life, but this time things are very different.\"\r\n1044,1067,6422,Janet Evanovich,Four to Score ,https://images.gr-assets.com/books/1311983211l/6422.jpg,4.17,106871,\"mystery, fiction\",\"Stephanie Plum, Trenton, New Jersey's favorite pistol-packing, condom-\ncarrying bounty hunter, is back--and on the trail of a revenge-seeking\nwaitress who's skipped bail. With then help of 73-year-old Grandma Mazur,\nex-hooker Lula, a transvestite musician named Sally Sweet, and the all-too-\nhospitable, all-too-sexy Joe Morelli, Stephanie might just catch her woman.\nThen again, with more mishaps than there are exits on the Jersey Turnpike--\nincluding murders, firebombs, and Stephanie's arch-rival bounty hunter\nchasing after the same fugative--Stephanie better watch her back big-time\nif she wants to live to crack this case.\"\r\n1045,1068,29209,James McBride,The Color of Water: A Black Man's Tribute to His White Mother,https://images.gr-assets.com/books/1401311300l/29209.jpg,4.06,80906,\"memoir, nonfiction\",The Color of Water: A Black Man's Tribute to His White MotherJames McBride\r\n1046,1069,6402364,\"Steven D. Levitt, Stephen J. Dubner\",\"SuperFreakonomics: Global Cooling, Patriotic Prostitutes, and Why Suicide Bombers Should Buy Life Insurance\",https://images.gr-assets.com/books/1308117804l/6402364.jpg,3.95,85006,\"nonfiction, business\",\"The New York Times bestselling Freakonomics was a worldwide sensation. Now,\nSteven D. Levitt and Stephen J. Dubner return with SuperFreakonomics, and\nfans and newcomers alike will find that the \"\"freakquel\"\" is even bolder,\nfunnier, and more surprising than the first. SuperFreakonomics challenges\nthe way we think all over again, exploring the hidden side of everything\nwith such questions as: How is a street prostitute like a department store\nSanta? Who adds more value: a pimp or a Realtor? What do hurricanes, heart\nattacks, and highway deaths have in common? Did TV cause a rise in crime?\nCan eating kangaroo meat save the planet? Whether investigating a solution\nto global warming or explaining why the price of oral sex has fallen so\ndrastically, Levitt and Dubner show the world for what it really is—good,\nbad, ugly, and, in the final analysis, superfreaky.\"\r\n1047,1070,112750,Karen Marie Moning,Darkfever,https://images.gr-assets.com/books/1392579949l/112750.jpg,4.14,110812,\"fantasy, paranormal\",\"Mac is stunned to discover that her sister's murder had been far more than\na random act of violence and resents the awakening of a mysterious ability\nto sense the Fae and their talismans, a talent that sends her on a quest to\nfind the Sinsar Dubh, a mystical book of dark power, and to insure that it\ncannot fall into the wrong hands. Reprint.\"\r\n1048,1071,234184,Terry Goodkind,Stone of Tears,https://images.gr-assets.com/books/1478930875l/234184.jpg,4.1,83235,\"fantasy, fiction\",\"Richard Cypher embarks on a perilous journey to the Old World, where he\nmust learn to master his own magic powers and uncover the secrets of his\nheritage\"\r\n1049,1072,7114761,Emily Giffin,Heart of the Matter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441249140l/7114761._SX318_.jpg,3.73,83461,\"fiction, romance\",Heart of the MatterEmily Giffin\r\n1050,1073,5797,\"William Makepeace Thackeray, John Carey\",Vanity Fair: A Novel Without a Hero,https://images.gr-assets.com/books/1344386439l/5797.jpg,3.76,91323,\"classics, fiction\",\"Vanity Fair: A Novel Without a HeroWilliam Makepeace Thackeray, John Carey\"\r\n1051,1074,4982,Kurt Vonnegut Jr.,The Sirens of Titan,https://images.gr-assets.com/books/1419363185l/4982.jpg,4.16,72493,\"classics, fiction\",The Sirens of TitanKurt Vonnegut Jr.\r\n1052,1075,10625,\"Stephen King, Dominique Dill\",Dolores Claiborne,https://images.gr-assets.com/books/1394213480l/10625.jpg,3.81,71053,\"horror, thriller\",\"Dolores ClaiborneStephen King, Dominique Dill\"\r\n1053,1076,25781157,Cynthia D'Aprix Sweeney,The Nest,https://images.gr-assets.com/books/1461354827l/25781157.jpg,3.45,79762,\"fiction, contemporary\",The NestCynthia D'Aprix Sweeney\r\n1054,1077,21326,\"Bill Willingham, Lan Medina, Steve Leialoha, Craig Hamilton, James Jean\",\"Fables, Volume 1: Legends in Exile\",https://images.gr-assets.com/books/1375392441l/21326.jpg,3.99,101016,\"comics, fantasy\",\"Fables, Volume 1: Legends in ExileBill Willingham, Lan Medina, Steve Leialoha, Craig Hamilton, James Jean\"\r\n1055,1078,1633,David    Allen,Getting Things Done: How To Achieve Stress-free Productivity,https://images.gr-assets.com/books/1312474060l/1633.jpg,3.98,75665,\"business, nonfiction\",ALLEN/GETTING THINGS DONE\r\n1056,1079,13103,James Redfield,The Celestine Prophecy,https://images.gr-assets.com/books/1341360412l/13103.jpg,3.6,72675,\"fiction, spirituality\",\"THE #1 BESTSELLING INTERNATIONAL PHENOMENON - NOW WITH A NEW PREFACE You\nhave never read a book like this before--a book that comes along once in a\nlifetime to change lives forever. In the rain forests of Peru, an ancient\nmanuscript has been discovered. Within its pages are 9 key insights into\nlife itself -- insights each human being is predicted to grasp\nsequentially; one insight, then another, as we move toward a completely\nspiritual culture on Earth. Drawing on ancient wisdom, it tells you how to\nmake connections among the events happening in your life right now and lets\nyou see what is going to happen to you in the years to come. The story it\ntells is a gripping one of adventure and discovery, but it is also a\nguidebook that has the power to crystallize your perceptions of why you are\nwhere you are in life and to direct your steps with a new energy and\noptimism as you head into tomorrow. Praise for The Celestine Prophecy \"\"A\ngripping adventure story filled with intrigue, suspense, and spiritual\nrevelations.\"\" - Commonwealth Journal \"\"A spiritual classic...a book to read\nand reread, to cherish, and to give to friends.\"\" - Joan Borysenko, PhD,\nauthor of Fire in the Soul \"\"In his inimitable style of great storytelling,\nRedfield opens us up to a world of insight, inspiration, synchronicity, and\npower.\"\" - Deepak Chopra\"\r\n1057,1080,12294652,Huntley Fitzpatrick,My Life Next Door ,https://images.gr-assets.com/books/1394240144l/12294652.jpg,4.02,102012,\"romance, contemporary\",\"When Samantha, the daugher of a Republican state senator, falls in love\nwith the boy next door, she discovers a different way to live, but when her\nmother is involved in an accident Sam must make some difficult choices.\"\r\n1058,1081,12959233,Ken Follett,Winter of the World,https://images.gr-assets.com/books/1369453743l/12959233.jpg,4.29,71971,\"fiction, history\",Winter of the WorldKen Follett\r\n1059,1082,19288239,\"Haruki Murakami, Philip Gabriel\",\"色彩を持たない多崎つくると、彼の巡礼の年 [Shikisai o motanai Tazaki Tsukuru to, kare no junrei no toshi]\",https://images.gr-assets.com/books/1409000450l/19288239.jpg,3.82,67873,\"fiction, contemporary\",良いニュースと悪いニュースがある。多崎つくるにとって駅をつくることは、心を世界につなぎとめておくための営みだった。あるポイントまでは...。\r\n1060,1083,82970,Alice Sebold,Lucky,https://images.gr-assets.com/books/1327190847l/82970.jpg,3.77,77462,\"memoir, nonfiction\",\"An acclaimed journalist shares the gripping story of her rape when she was\na college freshman, achieving justice in the courtroom, and triumphing in\nthe face of violence.\"\r\n1061,1084,59716,Virginia Woolf,To The Lighthouse ,https://images.gr-assets.com/books/1346239665l/59716.jpg,3.76,83066,\"classics, fiction\",\"At their second home on the Isle of Skye, the Ramsay family surrounds\nitself with friends and colleagues. They contend with World War I, family\ndeaths, and hardships both spoken and unspoken. All the while, the\nlighthouse looms in the distance. Six-year-old James asks his father to\ntake him there, but many years will pass before the voyage begins.\"\r\n1062,1085,105576,Chetan Bhagat,Five Point Someone: What Not to Do at IIT,https://images.gr-assets.com/books/1298571209l/105576.jpg,3.43,67438,\"fiction, romance\",\"Five Point Someone is Chetan Bhagat's debut novel which revolves around the\nlives of Ryan, Alok, and Hari. The three lads become close friends while\ntrying hard to survive in an exceedingly competitive environment. The three\nboys join IIT with a passion to excel and come out successfully as the best\ngraduates. However, their life turns upside down when their grades fall\nlower than they had ever expected. Meanwhile, Hari falls in love with his\nprofessor's daughter, and Alok and Ryan cannot stop disputing each other.\nFive Point Someone was successfully able to strike a chord with the\nmillions of youngsters across India. Hari, Alok and Ryan have to deal with\nunpleasant and cynical teachers, assignments and projects, stress of\nunending examinations, and a stringent academic schedule. Will they be able\nto survive the IITs? Or will they succumb to the tedious and age-old\neducation system of India? Five Point Someone has been adapted into hugely\nsuccessful motion pictures both in Tamil and Hindi.\"\r\n1063,1086,30281,Laurell K. Hamilton,Guilty Pleasures,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207930l/30281.jpg,4.02,104252,\"fantasy, paranormal\",\"Vampire hunter Anita Blake (known by the vampires she kills as \"\"The\nExecutioner\"\") is hired by the most powerful vampire in town to find out who\nhas been murdering vampires. Reprint.\"\r\n1064,1087,19057,Markus Zusak,The Messenger,https://images.gr-assets.com/books/1398483261l/19057.jpg,4.09,93119,\"fiction, mystery\",\"After capturing a bank robber, nineteen-year-old cab driver Ed Kennedy\nbegins receiving mysterious messages that direct him to addresses where\npeople need help, and he begins getting over his lifelong feeling of\nworthlessness.\"\r\n1065,1088,31463,\"Thomas Hardy, Rosemarie Morgan, Shannon Russell\",Far from the Madding Crowd,https://images.gr-assets.com/books/1388279695l/31463.jpg,3.92,87427,\"fiction, ebooks\",\"Edited with an Introduction and Notes by Rosemarie Morgan with Shannon\nRussell.\"\r\n1066,1089,34507,Terry Pratchett,Equal Rites,https://images.gr-assets.com/books/1407706800l/34507.jpg,4,88673,\"fantasy, fiction\",Equal RitesTerry Pratchett\r\n1067,1090,24800,Mark Z. Danielewski,House of Leaves,https://images.gr-assets.com/books/1403889034l/24800.jpg,4.13,75469,\"horror, fiction\",\"A family relocates to a small house on Ash Tree Lane and discovers that the\ninside of their new home seems to be without boundaries. A first novel.\nOriginal.\"\r\n1068,1091,85379,Patricia Cornwell,Cruel & Unusual,https://images.gr-assets.com/books/1327865095l/85379.jpg,4.11,83695,\"mystery, crime\",\"“A knockout” (People) of a thriller from #1 New York Times bestselling\nauthor Patricia Cornwell featuring medical examiner Kay Scarpetta. “Killing\nme won’t kill the beast” are the last words of rapist-murderer Ronnie Joe\nWaddell, written four days before his execution. But they can't explain how\nDr. Kay Scarpetta finds Waddell's fingerprints on another crime scene—after\nshe’d performed his autopsy. If this is some sort of game, Scarpetta seems\nto be the target. And if the next victim is someone she knows, the\npunishment will be cruel and unusual...\"\r\n1069,1092,17288661,John Grisham,Sycamore Row,https://images.gr-assets.com/books/1375888633l/17288661.jpg,3.98,56315,\"fiction, mystery\",\"When a wealthy man hangs himself and leaves his fortune to his black maid,\nJake Brigance finds himself embroiled in a controversial trial that will\nexpose old racial tensions and force Ford County to confront its tortured\nhistory.\"\r\n1070,1093,8652190,\"P.C. Cast, Kristin Cast\",Awakened,https://images.gr-assets.com/books/1307744664l/8652190.jpg,4.02,101234,\"fantasy, paranormal\",\"AwakenedP.C. Cast, Kristin Cast\"\r\n1071,1094,17150,Willa Cather,My Ántonia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389151307l/17150.jpg,3.76,81102,\"classics, fiction\",\"In the late nineteenth century, a fourteen-year-old immigrant girl from\nBohemia and a ten-year-old orphan boy arrive in Black Hawk, Nebraska, and\nin teaching each other form a friendship that will last a lifetime.\"\r\n1072,1095,213753,Susan Beth Pfeffer,Life As We Knew It,https://images.gr-assets.com/books/1328012816l/213753.jpg,3.89,94282,\"fiction, fantasy\",\"Through journal entries, sixteen-year-old Miranda describes her family's\nstruggle to survive after a meteor hits the moon, causing worldwide\ntsunamis, earthquakes, and volcanic eruptions.\"\r\n1073,1096,706,\"Jon Stewart, Ben Karlin, David Javerbaum, Rich Bloomquist, Steve Bodow, Tim Carvell, Eric Drysdale, J.R. Havlan, Scott Jacobson, Tom Johnson, Rob Kutner, Chris Regan, Jason Reich, Jason Ross, Stephen Colbert, Samantha Bee, Rob Corddry, Brendan Hay, Ed Helms\",America (The Book): A Citizen's Guide to Democracy Inaction,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1157224104l/706._SX318_.jpg,4.02,74511,\"nonfiction, history\",\"A parody of the best-selling pregnancy guide features off-the-cuff bogus\nadvice and whimsical illustrations on how babies in the making can best\nenjoy their nine months of development before birth, in a gift-appropriate\nvolume for anxious expectant moms. Original.\"\r\n1074,1097,89375,\"Don Piper, Cecil Murphey\",90 Minutes in Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441247008l/89375._SY475_.jpg,3.91,67937,\"religion, nonfiction\",\"90 Minutes in HeavenDon Piper, Cecil Murphey\"\r\n1075,1098,17407748,Nicholas Sparks,The Longest Ride,https://images.gr-assets.com/books/1367536453l/17407748.jpg,4.14,71276,\"contemporary, ebooks\",The Longest RideNicholas Sparks\r\n1076,1099,57854,\"Lao Tzu, Gia-Fu Feng, Jane English, Chungliang Al Huang, Rowena Pattee Kryder, Toinette Lippe\",道德經 [dào dé jīng],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520551258l/57854._SY475_.jpg,4.31,39863,\"classics, philosophy\",\"The original text of the philosophy of Taoism, the classic Chinese guide to\nspiritual well-being is presented with a new translation\"\r\n1077,1100,78983,Jeffrey Archer,Kane and Abel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388965561l/78983.jpg,4.27,74052,\"fiction, thriller\",\"William Lowell Kane and Abel Rosnovski, one the son of a Boston\nmillionaire, the other a penniless Polish immigrant. Two men, born on the\nsame day, on opposite sides of the world, their paths destined to cross in\ntheir ruthless struggle to build a fortune. An unputdownable story,\nspanning sixty years, of two powerful men linked by an all-consuming\nhatred, brought together by fate to save--and finally destroy--each other.\"\r\n1078,1101,1609451,Jodi Picoult,Change of Heart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390429931l/1609451.jpg,3.91,86471,\"fiction, contemporary\",\"Her life shattered by a devastating act of violence, June Nealson is forced\nto make a pivotal choice that involves her twelve-year-old daughter and a\nsalvation-seeking criminal. By the author of Nineteen Minutes. Reprint.\n1,000,000 first printing.\"\r\n1079,1102,32370,Augusten Burroughs,Dry: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442601868l/32370.jpg,4.01,70550,\"memoir, nonfiction\",\"An advertising executive remembers his childhood with his eccentric foster\nfamily and his early adulthood experiences of trying to establish an\nindependent life for himself. By the author of Running with Scissors.\nReader's Guide available. Reprint.\"\r\n1080,1103,80568,James Patterson,Sam's Letters To Jennifer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245317l/80568.jpg,4.15,77538,\"fiction, romance\",Sam's Letters To JenniferJames Patterson\r\n1081,1104,25644601,E.L. James,Grey,https://images.gr-assets.com/books/1433182986l/25644601.jpg,3.76,75320,\"romance, fiction\",\"\"\"'Fifty shades of Grey' as told by Christian\"\"--Cover.\"\r\n1082,1105,106,Frank Herbert,Dune Messiah ,https://images.gr-assets.com/books/1392528394l/106.jpg,3.86,82580,\"fiction, fantasy\",\"The sisterhood of the Bene Gesserit plots to seize control of the galaxy-\nwide empire of their supernatural leader.\"\r\n1083,1106,17267,C.S. Lewis,The Great Divorce,https://images.gr-assets.com/books/1166805741l/17267.jpg,4.28,75031,\"fantasy, fiction\",\"C. S. Lewis takes us on a profound journey through both heaven and hell in\nthis engaging allegorical tale. Using his extraordinary descriptive powers,\nLewis introduces us to supernatural beings who will change the way we think\nabout good and evil.\"\r\n1084,1107,80536,Jennifer Weiner,Little Earthquakes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390621844l/80536.jpg,3.76,77592,\"fiction, romance\",\"A chef, an event planner, and a basketball player's wife find their\nmarriages and careers in Philadelphia challenged by new motherhood,\ndifficult schedules, and infidelity, in a tale complicated by the return of\na woman from Los Angeles whose life was interrupted by tragedy. By the\nauthor of In Her Shoes. Reprint. 350,000 first printing.\"\r\n1085,1108,46306,\"Hans Christian Andersen, Lily Owens, Arthur Rackham, Hans Richter\",Eventyr og historier,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385233181l/46306.jpg,4.28,90999,\"classics, fiction\",\"Eventyr og historierHans Christian Andersen, Lily Owens, Arthur Rackham, Hans Richter\"\r\n1086,1109,6466909,Mark Cotta Vaz,New Moon: The Complete Illustrated Movie Companion,https://images.gr-assets.com/books/1343724104l/6466909.jpg,4.34,82399,\"fantasy, romance\",New Moon: The Complete Illustrated Movie CompanionMark Cotta Vaz\r\n1087,1110,24445517,Colleen Hoover,Maybe Someday,https://images.gr-assets.com/books/1421002815l/24445517.jpg,4.33,81707,\"romance, contemporary\",\"When she discovers that her boyfriend is cheating on her, Sydney, a\n22-year-old college student, must decide what to do next, especially when\nshe becomes captivated by her mysterious neighbor Ridge. Original.\"\r\n1088,1111,31101,Jane Green,Mr Maybe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258585l/31101.jpg,3.41,78132,\"fiction, romance\",\"Libby Mason, who dreams of marrying a wealthy man, finds herself torn\nbetween Nick, a struggling writer who makes up for his lack of funds with\nhis passion in bed, and Ed, Britain's wealthiest but stodgiest bachelor.\"\r\n1089,1112,77392,L.M. Montgomery,Anne of the Island,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435829564l/77392._SY475_.jpg,4.21,97049,\"classics, fiction\",Anne of the IslandL.M. Montgomery\r\n1090,1113,51893,\"Friedrich Nietzsche, Walter Kaufmann\",Also sprach Zarathustra,https://images.gr-assets.com/books/1480901846l/51893.jpg,4.05,65362,\"classics, fiction\",\"A 19th-century literary masterpiece, tremendously influential in the arts\nand in philosophy, uses the Persian religious leader Zarathustra to voice\nthe author’s views, including the introduction of the controversial\ndoctrine of the Übermensch, or \"\"superman,\"\" a term later perverted by Nazi\npropagandists. A passionate, quasi-biblical style is employed to inspire\nreaders to become more than they have been and to transcend the limitations\nof conventional morality. A provocative work that remains a fixture of\ncollege reading lists.\"\r\n1091,1114,156538,\"Elizabeth Gaskell, Alan Shelston\",North and South,https://images.gr-assets.com/books/1349633381l/156538.jpg,4.13,95274,\"classics, fiction\",\"North and SouthElizabeth Gaskell, Alan Shelston\"\r\n1092,1115,11330361,Jaycee Dugard,A Stolen Life,https://images.gr-assets.com/books/1327928284l/11330361.jpg,3.89,72713,\"biography, nonfiction\",\"The woman abducted at age 11 by a man and woman who subsequently held her\nhostage and sexually abused her for 18 years discusses her life. Reprint.\"\r\n1093,1116,7913305,Amish Tripathi,The Immortals of Meluha,https://images.gr-assets.com/books/1334659192l/7913305.jpg,4,62784,\"fiction, fantasy\",\"The Immortals of Meluha is The Story of Shiva, the simple man, whose Karma\nrecast him as our Mahadev. The God of Gods.\"\r\n1094,1117,8650,Michael Crichton,The Lost World,https://images.gr-assets.com/books/1386864575l/8650.jpg,3.72,83389,\"fiction, thriller\",\"Six years after the secret disaster at Jurassic Park and the destruction of\nthe dinosaurs, the dismantling of the park, and the closing of the island,\nrumors persist that some form of life has survived.\"\r\n1095,1118,9593913,Lauren Oliver,Requiem,https://images.gr-assets.com/books/1340992438l/9593913.jpg,3.74,100593,\"romance, fantasy\",\"A New York Times, USA Today, and Publishers Weekly bestseller, this\nexciting finale to Lauren Oliver's acclaimed Delirium trilogy is a riveting\nblend of nonstop action and forbidden romance in a dystopian United States.\nWith lyrical writing, Lauren Oliver seamlessly interweaves the peril that\nLena faces with the inner tumult she experiences after the reappearance of\nher first love, Alex, the boy she thought was dead. Named an Amazon Best\nBook of the Year, this sophisticated and wide-ranging novel brings the New\nYork Times bestselling Delirium trilogy to a thrilling conclusion. Now an\nactive member of the resistance, Lena has transformed. The nascent\nrebellion that was underway in Pandemonium has ignited into an all-out\nrevolution in Requiem, and Lena is at the center of the fight. After\nrescuing Julian from a death sentence, Lena and her friends fled to the\nWilds. But the Wilds are no longer a safe haven. Pockets of rebellion have\nopened throughout the country, and the government cannot deny the existence\nof Invalids. Regulators infiltrate the borderlands to stamp out the rebels.\nAs Lena navigates the increasingly dangerous terrain of the Wilds, her best\nfriend, Hana, lives a safe, loveless life in Portland as the fiancée of the\nyoung mayor. Requiem is told from both Lena and Hana's points of view. They\nlive side by side in a world that divides them until, at last, their\nstories converge.\"\r\n1096,1119,13890,Robert Jordan,A Crown of Swords,https://images.gr-assets.com/books/1358542379l/13890.jpg,4,86421,\"fantasy, fiction\",\"Elayne, Aviendha, and Mat work to restore the world's natural weather,\nwhile Egwene gathers a group of female channelers and Rand confronts the\ndread Forsaken Sammael, in the seventh volume in the Wheel of Time series.\nReprint.\"\r\n1097,1120,21348,\"Aesop, Laura Harris, Laura Gibbs\",Aesopica,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389064715l/21348.jpg,4.05,88508,\"fiction, fantasy\",A collection of familiar short moral tales.\r\n1098,1121,394535,Cormac McCarthy,Blood Meridian: Or the Evening Redness in the West,https://images.gr-assets.com/books/1453995760l/394535.jpg,4.18,71095,\"fiction, classics\",\"Based on incidents that took place in the southwestern United States and\nMexico around 1850, this novel chronicles the crimes of a band of\ndesperados, with a particular focus on one, \"\"the kid,\"\" a boy of fourteen\"\r\n1099,1122,12751687,Becca Fitzpatrick,Finale,https://images.gr-assets.com/books/1362408156l/12751687.jpg,4.22,107569,\"fantasy, paranormal\",\"Fates unfurl in the gripping conclusion to the New York Times bestselling\nHush, Hush saga. Nora is more certain than ever that she is in love with\nPatch. Fallen angel or no, he is the one for her. Her heritage and destiny\nmay mean they are fated to be enemies, but there is no turning her back on\nhim. Now Nora and Patch must gather their strength to face one last,\nperilous trial. Old enemies return, new enemies are made, and a friend’s\nultimate betrayal threatens the peace Patch and Nora so desperately want.\nThe battle lines are drawn—but which sides are they on? And in the end, are\nthere some obstacles even love can’t conquer?\"\r\n1100,1123,13440,Stephen King,Skeleton Crew,https://images.gr-assets.com/books/1271861632l/13440.jpg,3.93,82320,\"horror, fiction\",\"Age-old images of fear fuse with the iconography of contemporary American\nlife in this collection of tales from the modern master of horror\"\r\n1101,1124,22206,Chuck Palahniuk,Lullaby,https://images.gr-assets.com/books/1327268513l/22206.jpg,3.73,66713,\"fiction, horror\",\"Assigned to a story on Sudden Infant Death Syndrome, fortyish journalist\nCarl Streator finds a poetry anthology that contains an African chant that\nbecomes lethal when spoken or thought in someone's direction, is\ntransformed into an involuntary serial killer, and embarks on a cross-\ncountry odyssey to destroy all copies of the book before humankind itself\nis destroyed. Reprint. 175,000 first printing.\"\r\n1102,1125,6969361,Chetan Bhagat,Two States,https://images.gr-assets.com/books/1255292027l/6969361.jpg,3.42,67866,\"romance, contemporary\",Two StatesChetan Bhagat\r\n1103,1126,263145,\"Matsuri Hino, Tomo Kimura\",ヴァンパイア騎士 1,https://images.gr-assets.com/books/1329232329l/263145.jpg,4.1,89733,\"romance, fantasy\",\"Yuki Cross has no memory of her past prior to the moment she was saved from\na vampire attack ten years ago. She was adopted by the headmaster of Cross\nAcademy, and now works alongside Zero to guard the Academy's secret. Cross\nAdademy is attended by two groups of students: the Day Class and the Night\nClass. At twilight, when the students of the Day Class return to their\ndorm, they cross paths with the Night Class on their way to school. Yuki\nCross and Zero Kiryu are the Guardians of the school, protecting the Day\nClass from the Academy's dark secret: the Night Class is full of vampires!\nYuki Cross has no memory of her past prior to the moment she was saved from\na vampire attack ten years ago. She was adopted by the headmaster of Cross\nAcademy, and now works alongside Zero to guard the Academy's secret. Yuki\nbelieves that vampires and humans can coexist peacefully, but her partner\nhas different ideas...\"\r\n1104,1127,91478,Jim Butcher,Summer Knight,https://images.gr-assets.com/books/1345557469l/91478.jpg,4.3,91012,\"fantasy, mystery\",\"Despondent over the loss of his vampire girlfriend, private detective and\nwizard-for-hire Harry Dresden undertakes a mission for the Winter Queen of\nFaerie to find out who murdered the Summer Queen's right-hand man, the\nSummer Knight, and clear the Winter Queen of the crime. Original.\"\r\n1105,1128,61975,\"Anne McCaffrey, Teodor Panasiński\",Dragonflight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182243l/61975.jpg,4.1,95378,\"fantasy, fiction\",\"At a time when the number of Dragonriders has fallen too low for safety and\nonly one Weyr trains the creatures and their riders, the Red Star\napproaches Pern, threatening the planet with disaster. Reissue.\"\r\n1106,1129,1081560,\"John D. Rateliff, J.R.R. Tolkien\",\"The History of the Hobbit, Part One: Mr. Baggins\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388670262l/1081560.jpg,3.81,108399,\"fantasy, fiction\",\"Presents the complete text of the original manuscript of \"\"The Hobbit\"\"\naccompanied by commentary, discusses the themes, and examines the numerous\nchanges made to the story before and after publication with a reflection on\nwhy they were made.\"\r\n1107,1130,17788401,Colleen Hoover,Ugly Love,https://images.gr-assets.com/books/1399179135l/17788401.jpg,4.3,107583,\"contemporary, romance\",\"After Tate Collins and airline pilot Miles Archer agree to a no-strings\nattached relationship, they both have trouble sticking to the plan.\"\r\n1108,1131,47401,Joanne Harris,Chocolat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388674628l/47401.jpg,3.95,84770,\"romance, fiction\",\"When the beautiful and mysterious Vianne moves to Lansquenet and opens a\nchocolate shop across from the church, the inhabitants of the tiny village\nfind themselves torn between the solemn law of religion and the joyful\nrewards of Vianne's confections. Reprint.\"\r\n1109,1132,293101,Jay Anson,The Amityville Horror,https://images.gr-assets.com/books/1306079371l/293101.jpg,3.82,80959,\"horror, fiction\",\"The classic and terrifying story of one of the most famous supernatural\nevents--the infamous possessed house on Long Island from which the Lutz\nfamily fled in 1975.\"\r\n1110,1133,11713,Michael Ondaatje,The English Patient,https://images.gr-assets.com/books/1320527907l/11713.jpg,3.88,83741,\"fiction, classics\",\"Three individuals--nurse Hana, thief Caravaggio, and Kip--are brought\ntogether in an abandoned Italian villa at the end of World War II by a\nnameless and hideously burned English patient. Reprint.\"\r\n1111,1134,13639050,Sylvain Reynard,Gabriel's Rapture,https://images.gr-assets.com/books/1343962380l/13639050.jpg,4.22,91213,\"romance, contemporary\",\"Gabriel Emerson, a professor who specializes in Dante, and Julia Mitchell,\nhis graduate student, continue their affair on vacation in Italy, but when\nGabriel returns he is confronted by the university administration for\nbecoming involved with a student.\"\r\n1112,1135,11012,\"James Joyce, Jeri Johnson\",Dubliners,https://images.gr-assets.com/books/1334138184l/11012.jpg,3.85,73140,\"classics, fiction\",\"Living overseas but writing, always, about his native city, Joyce made\nDublin unforgettable. The stories in Dubliners show us truants, seducers,\ngossips, rally-drivers, generous hostesses, corrupt politicians, failing\npriests, amateur theologians, struggling musicians, moony adolescents,\nvictims of domestic brutishness, sentimental aunts and poets, patriots\nearnest or cynical, and people striving to get by.\"\r\n1113,1136,5941033,Colum McCann,Let the Great World Spin,https://images.gr-assets.com/books/1474988022l/5941033.jpg,3.93,71515,\"fiction, contemporary\",\"In 1974 Manhattan, a radical young Irish monk struggles with personal\ndemons while making his home among Bronx prostitutes, a group of mothers\nshares grief over their lost Vietnam soldier sons, and a young grandmother\nattempts to prove her worth.\"\r\n1114,1137,227865,Eoin Colfer,The Eternity Code,https://images.gr-assets.com/books/1327945417l/227865.jpg,4.04,94437,\"fantasy, fiction\",The Eternity CodeEoin Colfer\r\n1115,1138,43933,Harlan Coben,Tell No One,https://images.gr-assets.com/books/1421365049l/43933.jpg,4.11,78070,\"mystery, thriller\",\"Eight years after his beloved wife, Elizabeth, was supposedly murdered by a\nserial killer, Beck receives information that suggests she may still be\nalive, but his search for the truth could mean setting himself up as the\nprime suspect in a number of crimes.\"\r\n1116,1139,17660,Stephen King,The Tommyknockers,https://images.gr-assets.com/books/1394210331l/17660.jpg,3.48,89262,\"horror, fiction\",\"Master storyteller Stephen King presents the classic, terrifying #1 New\nYork Times bestseller about a terrifying otherworldly discovery and the\neffects it has a on a small town. “Late last night and the night before,\nTommyknockers, Tommyknockers, knocking at the door…” On a beautiful June\nday, while walking deep in the woods on her property in Haven, Maine, Bobbi\nAnderson quite literally stumbles over her own destiny and that of the\nentire town. For the dull gray metal protrusion she discovers in the ground\nis part of a mysterious and massive metal object, one that may have been\nburied there for millennia. Bobbi can’t help but become obsessed and try to\ndig it out…the consequences of which will affect and transmute every\ncitizen of Haven, young and old. It means unleashing extraordinary powers\nbeyond those of mere mortals—and certain death for any and all outsiders.\nAn alien hell has now invaded this small New England town…an aggressive and\nviolent malignancy devoid of any mercy or sanity…\"\r\n1117,1140,5287473,Rachel Hawkins,Hex Hall,https://images.gr-assets.com/books/1368393885l/5287473.jpg,3.96,109881,\"fantasy, paranormal\",\"After a prom-night spell goes badly wrong, witch Sophie Mercer is exiled to\nan isolated reform school for wayward Prodigium, supernaturally gifted\nteenagers, where she learns that an unknown predator has been attacking\nstudents.\"\r\n1118,1141,13099738,Austin Kleon,Steal Like an Artist,https://images.gr-assets.com/books/1404576602l/13099738.jpg,3.86,93625,\"art, nonfiction\",\"You don’t need to be a genius, you just need to be yourself. That’s the\nmessage from Austin Kleon, a young writer and artist who knows that\ncreativity is everywhere, creativity is for everyone. A manifesto for the\ndigital age, Steal Like an Artist is a guide whose positive message,\ngraphic look and illustrations, exercises, and examples will put readers\ndirectly in touch with their artistic side. When Mr. Kleon was asked to\naddress college students in upstate New York, he shaped his speech around\nthe ten things he wished someone had told him when he was starting out. The\ntalk went viral, and its author dug deeper into his own ideas to create\nSteal Like an Artist, the book. The result is inspiring, hip, original,\npractical, and entertaining. And filled with new truths about creativity:\nNothing is original, so embrace influence, collect ideas, and remix and re-\nimagine to discover your own path. Follow your interests wherever they take\nyou. Stay smart, stay out of debt, and risk being boring—the creative you\nwill need to make room to be wild and daring in your imagination.\"\r\n1119,1142,816,Neal Stephenson,Cryptonomicon,https://images.gr-assets.com/books/1327931476l/816.jpg,4.25,72683,\"fiction, thriller\",\"With this extraordinary first volume in what promises to be an epoch-making\nmasterpiece, Neal Stephenson hacks into the secret histories of nations and\nthe private obsessions of men, decrypting with dazzling virtuosity the\nforces that shaped this century. In 1942, Lawrence Pritchard Waterhouse -\nmathematical genius and young Captain in the U.S. Navy - is assigned to\ndetachment 2702. It is an outfit so secret that only a handful of people\nknow it exists, and some of those people have names like Churchill and\nRoosevelt. The mission of Watrehouse and Detatchment 2702-commanded by\nMarine Raider Bobby Shaftoe-is to keep the Nazis ignorant of the fact that\nAllied Intelligence has cracked the enemy's fabled Enigma code. It is a\ngame, a cryptographic chess match between Waterhouse and his German\ncounterpart, translated into action by the gung-ho Shaftoe and his forces.\nFast-forward to the present, where Waterhouse's crypto-hacker grandson,\nRandy, is attempting to create a \"\"data haven\"\" in Southeast Asia - a place\nwhere encrypted data can be stored and exchanged free of repression and\nscrutiny. As governments and multinationals attack the endeavor, Randy\njoins forces with Shaftoe's tough-as-nails grandaughter, Amy, to secretly\nsalvage a sunken Nazi sumarine that holds the key to keeping the dream of a\ndata haven afloat. But soon their scheme brings to light a massive\nconspiracy with its roots in Detachment 2702 linked to an unbreakable Nazi\ncode called Arethusa. And it will represent the path to unimaginable riches\nand a future of personal and digital liberty...or to universal\ntotalitarianism reborn. A breathtaking tour de force, and Neal Stephenson's\nmost accomplished and affecting work to date, CRYPTONOMICON is profound and\nprophetic, hypnotic and hyper-driven, as it leaps forward and back between\nWorld War II and the World Wide Web, hinting all the while at a dark day-\nafter-tomorrow. It is a work of great art, thought, and creative daring;\nthe product of a truly icon\"\r\n1120,1143,16102004,Christina Lauren,Beautiful Bastard,https://images.gr-assets.com/books/1362258921l/16102004.jpg,4.05,111668,\"romance, contemporary\",\"A rewritten formal publication of the popular online story, The Office,\ntraces the love affair between exacting office manager Bennett and his\nhard-working MBA student assistant, Chloe, whose irresistible mutual\nattraction prompts them to break office dating restrictions in spite of\ntheir clashing personalities. By the authors of A Little Crazy. Original.\"\r\n1121,1144,14249,Barbara Kingsolver,Prodigal Summer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426308771l/14249.jpg,3.98,78529,\"fiction, contemporary\",\"Barbara Kingsolver, a writer praised for her\"\"extravagantly gifted narrative\nvoice\"\" (New York Times Book Review), has created with this novel a hymn to\nwildness that celebrates the prodigal spirit of human nature, and of nature\nitself. Prodigal Summer weaves together three stories of human love within\na larger tapestry of lives inhabiting the forested mountains and struggling\nsmall farms of southern Appalachia. At the heart of these intertwined\nnarratives is a den of coyotes that have recently migrated into the region.\nDeanna Wolfe, a reclusive wildlife biologist, watches the forest from her\noutpost in an isolated mountain cabin where she is caught off-guard by\nEddie Bondo, a young hunter who comes to invade her most private spaces and\nconfound her self-assured, solitary life. On a farm several miles down the\nmountain, another web of lives unfolds as Lusa Maluf Landowski, a bookish\ncity girl turned farmer's wife, finds herself unexpectedly marooned in a\nstrange place where she must declare or lose her attachment to the land.\nAnd a few more miles down the road, a pair of elderly, feuding neighbors\ntend their respective farms and wrangle about God, pesticides, and the\ncomplexities of a world neither of them expected. Over the course of one\nhumid summer, as the urge to procreate overtakes a green and profligate\ncountryside, these characters find connections to one another and to the\nflora and fauna with which they necessarily share a place. Their\ndiscoveries are embedded inside countless intimate lessons of biology, the\nrealities of small farming, and the final, urgent truth that humans are\nonly one part of life on earth. With the richness that characterizes\nBarbara Kingsolver's finest work, Prodigal Summer embraces pure thematic\noriginality and demonstrates a balance of narrative and ideas that only an\naccomplished novelist could render so beautifully.\"\r\n1122,1145,5204,Joyce Carol Oates,We Were the Mulvaneys,https://images.gr-assets.com/books/1309282868l/5204.jpg,3.7,77251,\"fiction, contemporary\",\"The Mulvaneys, at first a close and very lucky family, drift apart over the\nyears, until the youngest son, Judd, discovers the secret of their downfall\nand sets out to help reunite the family\"\r\n1123,1146,102920,Scott McCloud,Understanding Comics: The Invisible Art,https://images.gr-assets.com/books/1328408101l/102920.jpg,3.98,77277,\"comics, nonfiction\",\"Traces the 3,000 year history of storytelling through pictures, discussing\nthe language and images used.\"\r\n1124,1147,7842288,\"Kami Garcia, Margaret Stohl\",Beautiful Darkness,https://images.gr-assets.com/books/1327879100l/7842288.jpg,3.84,95447,\"fantasy, paranormal\",\"Beautiful DarknessKami Garcia, Margaret Stohl\"\r\n1125,1148,12391521,Jon Ronson,The Psychopath Test,https://images.gr-assets.com/books/1364166270l/12391521.jpg,3.91,44097,\"psychology, nonfiction\",\"They say one out of every hundred people is a psychopath. You probably\npassed one on the street today. These are people who have no empathy, who\nare manipulative, deceitful, charming, seductive, and delusional. The\nPsychopath Test is the New York Times bestselling exploration of their\nworld and the madness industry. When Jon Ronson is drawn into an elaborate\nhoax played on some of the world's top scientists, his investigation leads\nhim, unexpectedly, to psychopaths. He meets an influential psychologist who\nis convinced that many important business leaders and politicians are in\nfact high-flying, high-functioning psychopaths, and teaches Ronson how to\nspot them. Armed with these new abilities, Ronson meets a patient inside an\nasylum for the criminally insane who insists that he's sane, a mere run-of-\nthe-mill troubled youth, not a psychopath—a claim that might be only\nmanipulation, and a sign of his psychopathy. He spends time with a death-\nsquad leader institutionalized for mortgage fraud, and with a legendary CEO\nwho took joy in shutting down factories and firing people. He delves into\nthe fascinating history of psychopathy diagnosis and treatments, from LSD-\nfueled days-long naked therapy sessions in prisons to attempts to\nunderstand serial killers. Along the way, Ronson discovers that relatively\nordinary people are, more and more, defined by their most insane edges. The\nPsychopath Test is a fascinating adventure through the minds of madness.\"\r\n1126,1149,14865,Jodi Picoult,Vanishing Acts,https://images.gr-assets.com/books/1407719603l/14865.jpg,3.68,79662,\"fiction, contemporary\",\"Working with the Search and Rescue bloodhound team to find missing people,\nsingle mother Delia Hopkins anticipates her upcoming nuptials, until a\nseries of unsettling flashbacks threatens to devastate her life and the\nlives of those she most loves. By the author of My Sister's Keeper and\nSecond Glance. Reprint. 300,000 first printing.\"\r\n1127,1150,15159,David Baldacci,Absolute Power,https://images.gr-assets.com/books/1328399707l/15159.jpg,4.15,72481,\"fiction, thriller\",\"In a heavily guarded mansion in a posh Virginia suburb, a man and a woman\nstart to make love, trapping Luther Whitney, a career break-in artist,\nbehind a secret wall. Then the passion turns deadly, and Luther is running\ninto the night. Because what he has just seen is a brutal murder involving\nAlan Richmond, the president of the United States, the man with...Absolute\nPower.\"\r\n1128,1151,6858,Janet Evanovich,Hot Six,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177839l/6858.jpg,4.18,99329,\"mystery, fiction\",Hot SixJanet Evanovich\r\n1129,1152,13624688,Mitch Albom,The Time Keeper,https://images.gr-assets.com/books/1340478576l/13624688.jpg,3.85,72277,\"fiction, fantasy\",The Time KeeperMitch Albom\r\n1130,1153,33456,Christopher Moore,A Dirty Job,https://images.gr-assets.com/books/1331323415l/33456.jpg,4.08,78523,\"fantasy, paranormal\",A Dirty JobChristopher Moore\r\n1131,1154,1301,Michael   Lewis,Moneyball: The Art of Winning an Unfair Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176510l/1301.jpg,4.24,66406,\"sports, nonfiction\",\"Explains how Billy Beene, the general manager of the Oakland Athletics, is\nusing a new kind of thinking to build a successful and winning baseball\nteam without spending enormous sums of money.\"\r\n1132,1155,334123,Jonathan Stroud,The Amulet of Samarkand,https://images.gr-assets.com/books/1327877926l/334123.jpg,3.99,86062,\"fantasy, fiction\",\"Nathaniel is a magician's apprentice, taking his first lessons in the arts\nof magic. But when a devious hot-shot wizard named Simon Lovelace\nruthlessly humiliates Nathaniel in front of his elders, Nathaniel decides\nto kick up his education a few notches and show Lovelace who's boss. With\nrevenge on his mind, he summons the powerful djinni, Bartimaeus. But\nsummoning Bartimaeus and controlling him are two different things entirely,\nand when Nathaniel sends the djinni out to steal Lovelace's greatest\ntreasure, the Amulet of Samarkand, he finds himself caught up in a\nwhirlwind of magical espionage, murder, and rebellion.\"\r\n1133,1156,611298,\"Stephen Colbert, Richard Dahm, Paul Dinello, Allison Silverman, Michael Brumm, Eric Drydale, Rob Dubbin, Glenn Eichler, Peter Grosz, Peter Gwinn, Jay Katsir, Laura Krafft, Frank Lesser, Tom Purcell\",I Am America (And So Can You!),https://images.gr-assets.com/books/1435873807l/611298.jpg,3.91,71023,\"nonfiction, fiction\",\"The host of the popular Colbert Report show celebrates the lighter side of\nthe modern world's most relevant issues, providing straightforward\ndiscussions of such topics as faith, politics, and how the author believes\nthe country can reacquire its nerve. 500,000 first printing.\"\r\n1134,1157,763362,\"Kenneth H. Blanchard, Spencer Johnson\",The One Minute Manager,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348155441l/763362.jpg,3.85,70241,\"business, nonfiction\",\"The One Minute ManagerKenneth H. Blanchard, Spencer Johnson\"\r\n1135,1158,42697,Leon Uris,Exodus,https://images.gr-assets.com/books/1359742531l/42697.jpg,4.33,77258,\"fiction, classics\",\"An American nurse becomes involved in the dramatic events leading to the\nestablishment of the Israeli nation\"\r\n1136,1159,77163,Ursula Hegi,Stones from the River,https://images.gr-assets.com/books/1366513909l/77163.jpg,4.07,80056,\"fiction, history\",\"From the acclaimed author of Floating in My Mother’s Palm and Children and\nFire, a stunning story about ordinary people living in extraordinary\ntimes—“epic, daring, magnificent, the product of a defining and mesmerizing\nvision” (Los Angeles Times). Trudi Montag is a Zwerg—a dwarf—short,\nundesirable, different, the voice of anyone who has ever tried to fit in.\nEventually she learns that being different is a secret that all humans\nshare—from her mother who flees into madness, to her friend Georg whose\nparents pretend he’s a girl, to the Jews Trudi harbors in her cellar.\nUrsula Hegi brings us a timeless and unforgettable story in Trudi and a\nsmall town, weaving together a profound tapestry of emotional power,\nhumanity, and truth.\"\r\n1137,1160,2052,Raymond Chandler,The Big Sleep,https://images.gr-assets.com/books/1371584712l/2052.jpg,4.04,84489,\"thriller, suspense\",\"When a dying millionaire hires Marlowe to handle the blackmailer of one of\nhis daughters, Marlowe finds himself involved with more than extortion.\nKidnapping, pornography, seduction, and murder are just a few of the\ncomplications.\"\r\n1138,1161,4799,John Steinbeck,Cannery Row ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188936l/4799.jpg,4.02,81598,\"classics, fiction\",\"Vividly depicts the colorful, sometimes disreputable, inhabitants of a run-\ndown area in Monterey, California\"\r\n1139,1162,11230081,Ellen DeGeneres,Seriously...I'm Kidding,https://images.gr-assets.com/books/1441195131l/11230081.jpg,3.72,74358,\"nonfiction, memoir\",\"I've experienced a whole lot the last few years and I have a lot to share.\nSo I hope that you'll take a moment to sit back, relax and enjoy the words\nI've put together for you in this book. I think you'll find I've left no\nstone unturned, no door unopened, no window unbroken, no rug unvacuumed, no\nivories untickled. What I'm saying is, let us begin, shall we?\"\r\n1140,1163,65119,\"Lemony Snicket, Brett Helquist\",The Miserable Mill,https://images.gr-assets.com/books/1352146209l/65119.jpg,3.83,101325,\"fiction, fantasy\",\"Accidents, evil plots, and general misfortune abound when, in their\ncontinuing search for a home, the Beaudelaire orphans are sent to live and\nwork in a sinister lumber mill. \"\"Wicked good fun.\"\"--\"\"Kirkus Reviews.\"\"\"\r\n1141,1164,11250053,Eowyn Ivey,The Snow Child,https://images.gr-assets.com/books/1327098624l/11250053.jpg,3.95,72328,\"fantasy, fiction\",The Snow ChildEowyn Ivey\r\n1142,1165,17314430,\"J. Lynn, Jennifer L. Armentrout\",Wait for You,https://images.gr-assets.com/books/1363819713l/17314430.jpg,4.19,106236,\"romance, contemporary\",\"Wait for YouJ. Lynn, Jennifer L. Armentrout\"\r\n1143,1166,3293821,Jeff Kinney,The Last Straw,https://images.gr-assets.com/books/1350396036l/3293821.jpg,4.11,82518,\"fiction, comics\",The Last StrawJeff Kinney\r\n1144,1167,6656,\"Dante Alighieri, Allen Mandelbaum, Eugenio Montale\",La Divina Commedia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390760180l/6656.jpg,4.06,74130,\"classics, poetry\",\"Dante Alighieri's epic poem travels through the endless agony of Hell, up\nthe treacherous slopes of Purgatory, and on to the wondrous kingdom of\nParadise--the realm of universal unity and eternal salvation.\"\r\n1145,1168,48757,\"Benjamin Hoff, Ernest H. Shepard\",The Tao of Pooh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348137748l/48757.jpg,4.01,69975,\"philosophy, nonfiction\",\"An expert in Chinese philosophy explains facets of Taoism using Milne's\nfamous character and explores the world of Winnie-the-Pooh through Tao,\ncharacterizing Pooh as a simple bear who subscribes to the principles of\nsuccessful living\"\r\n1146,1169,13047090,Jennifer L. Armentrout,Onyx,https://images.gr-assets.com/books/1329408511l/13047090.jpg,4.33,111448,\"paranormal, romance\",\"Book Two of the bestselling Lux series Being connected to Daemon Black\nsucks... Thanks to his alien mojo, Daemon's determined to prove what he\nfeels for me is more than a product of our bizarro connection. So I've\nsworn him off, even though he's running more hot than cold these days. But\nwe've got bigger problems. Something worse than the Arum has come to\ntown... The Department of Defense is here. If they ever find out what\nDaemon can do and that we're linked, I'm a goner. So is he. And there's\nthis new boy in school who's got a secret of his own. He knows what's\nhappened to me and he can help, but to do so, I have to lie to Daemon and\nstay away from him. Like that's possible. Against all common sense, I'm\nfalling for Daemon. Hard. But then everything changes... I've seen someone\nwho shouldn't be alive. And I have to tell Daemon, even though I know he's\nnever going to stop searching until he gets the truth. What happened to his\nbrother? Who betrayed him? And what does the DOD want from them—from me? No\none is who they seem. And not everyone will survive the lies... Read the\nentire bestselling series! #1: Obsidian (from Katy's point of view) #2:\nOnyx (from Katy's point of view) #3: Opal (from Katy's point of view) #4:\nOrigin #5: Opposition Oblivion (Books 1-3 from Daemon's point of view) CAN\nBE READ FIRST OR AFTER KATY'S POV! Prequel: Shadows (Dawson's story)\"\r\n1147,1170,13104080,Tahereh Mafi,\"Unravel Me (Shatter Me, #2)\",https://images.gr-assets.com/books/1340287622l/13104080.jpg,4.28,109183,\"paranormal, fiction\",\"Unravel Me (Shatter Me, #2)Tahereh Mafi\"\r\n1148,1171,28078,Sarah Dunant,The Birth of Venus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423923989l/28078.jpg,3.79,78129,\"fiction, art\",\"Turning fifteen in Renaissance Florence, Alessandra Cecchi becomes\nintoxicated with the works of a young painter whom her father has brought\nto the city to decorate the family's Florentine palazzo, a situation that\nis complicated by her unwanted arranged marriage to an older man and a\nbattle between the Medici family and the fundamentalist followers of\nSavonarola. Reader's Guide included. Reprint. 200,000 first printing.\"\r\n1149,1172,114954,Eoin Colfer,The Opal Deception,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266475201l/114954.jpg,4.04,95638,\"fiction, fantasy\",\"The evil pixie Opal Koboi has spent the last year in a self-induced coma,\nplotting her revenge on all those who foiled her attempt to destroy the\nLEPrecon fairy police. And Artemis Fowl is at the top of her list. After\nhis last run-in with the fairies, Artemis had his mind wiped of his\nmemories of the world belowground. But they have not forgotten about him.\nOnce again, he must stop the human and fairy worlds from colliding – only\nthis time, Artemis faces an enemy who may have finally outsmarted him.\"\r\n1150,1173,25074850,\"David Lagercrantz, Stieg Larsson, George Goulding\",Det som inte dödar oss,https://images.gr-assets.com/books/1427843648l/25074850.jpg,3.73,53751,\"fiction, suspense\",\"Det som inte dödar ossDavid Lagercrantz, Stieg Larsson, George Goulding\"\r\n1151,1174,26893819,Emma Cline,The Girls,https://images.gr-assets.com/books/1492065338l/26893819.jpg,3.49,76761,\"fiction, contemporary\",\"Mesmerized by a band of girls in the park whom she perceives as enjoying a\nlife of free and careless abandon, 1960s teen Evie Boyd becomes obsessed\nwith gaining acceptance into their circle. Evie, grateful for their\ncharismatic leader's attention, the sense of family the group offers, and\nthe assurance of the girls, is swept into their chaotic cult existence. As\nthings turn darker, her choices become riskier. A wonderfully written debut\nnovel about the harm we can do, to ourselves and others, in our hunger for\nbelonging and acceptance. --\"\r\n1152,1175,179064,Shannon Hale,The Goose Girl,https://images.gr-assets.com/books/1330728389l/179064.jpg,4.18,92952,\"fantasy, romance\",\"On her way to marry a prince she's never met, Princess Anidori is betrayed\nby her guards and her lady-in-waiting and must become a goose girl to\nsurvive until she can reveal her true identity and reclaim the crown that\nis rightfully hers. Reprint.\"\r\n1153,1176,21671,Dennis Lehane,Mystic River,https://images.gr-assets.com/books/1407109549l/21671.jpg,4.19,86103,\"mystery, fiction\",\"When they were children, Sean Devine, Jimmy Marcus, and Dave Boyle were\nfriends. But then a strange car pulled up to their street. One boy got into\nthe car, two did not, and something terrible happened—something that ended\ntheir friendship and changed all three boys forever. Now, years later,\nmurder has tied their lives together again . . .\"\r\n1154,1177,7619057,Isaac Marion,Warm Bodies,https://images.gr-assets.com/books/1323400027l/7619057.jpg,3.93,66381,\"romance, fiction\",\"Alienated from his fellow zombies because of his dislike of having to kill\nhumans and his enjoyment of Sinatra music, \"\"R\"\" meets a living girl who\nsharply contrasts with his cold and dreary world and who he resolves to\nprotect in spite of her delicious appearance. A first novel. Reprint.\"\r\n1155,1178,62446,\"Mark Twain, Everett H. Emerson\",The Prince and the Pauper,https://images.gr-assets.com/books/1376406798l/62446.jpg,3.84,84682,\"classics, fiction\",\"When young Edward VI of England and Tom Canty, a poor boy who looks just\nlike him, exchange places, each learns a valuable lesson about the other's\nvery different station in life in sixteenth-century England. Reissue.\"\r\n1156,1179,16690,Robert A. Heinlein,The Moon is a Harsh Mistress,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348768309l/16690.jpg,4.17,80366,\"fiction, classics\",\"A one-armed computer technician, a radical blonde bombshell, an aging\nacademic, and a sentient all-knowing computer lead the lunar population in\na revolution against Earth's colonial rule\"\r\n1157,1180,6642715,\"Elif Shafak, إليف شافاق, ارسلان فصیحی, محمد درويش\",The Forty Rules of Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442161289l/6642715._SY475_.jpg,4.17,35283,\"philosophy, romance\",\"Traces the parallel stories of unhappily married professional reader Ella\nRubinstein's fascination with the story of Shams of Tabriz and the 13th-\ncentury transformation of Rumi into a mystic and poet.\"\r\n1158,1181,6423,Janet Evanovich,High Five,https://images.gr-assets.com/books/1270849101l/6423.jpg,4.17,92737,\"mystery, fiction\",\"New Jersey bounty hunter Stephanie Plum returns in her fifth adventure as\nshe struggles to make ends meet while coping with a missing Uncle Fred,\nhomicidal rapist and stalker Benito Ramirez, amorous vice cop Joe Morelli,\nand would-be lover Ranger. Reprint.\"\r\n1159,1182,13596166,Stephen King,Joyland,https://images.gr-assets.com/books/1348154483l/13596166.jpg,3.9,75018,\"mystery, fiction\",\"In a small-town North Carolina amusement park in 1973, college student\nDevin Jones comes to work as a carny and confronts the legacy of a vicious\nmurder, the fate of a dying child and the ways both will change his life\nforever. Original.\"\r\n1160,1183,13154150,\"Hajime Isayama, Sheldon Drzka\",進撃の巨人 1,https://images.gr-assets.com/books/1432712438l/13154150.jpg,4.42,82565,\"manga, fantasy\",\"In the walled enclave where the remnants of humanity shelter from the\nTitans, giant creatures who have taken over the rest of the world, Eren and\nMikasa join the fight.\"\r\n1161,1184,46164,F. Scott Fitzgerald,Tender Is the Night,https://images.gr-assets.com/books/1438797669l/46164.jpg,3.83,79008,\"classics, fiction\",\"A story of Americans living on the French Riviera in the 1930s is a\nportrait of psychological disintegration as a wealthy couple supports\nfriends and hangers-on financially and emotionally at the cost of their own\nstability\"\r\n1162,1185,306654,Olive Ann Burns,Cold Sassy Tree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223675895l/306654.jpg,3.99,82281,\"fiction, classics\",\"Young Will Tweedy becomes chaperon, conspirator, and confidant to his\nrenegade grandpa, E. Rucker Blakeslee, and the old man's young new wife,\nMiss Love Simpson, in a new edition of the classic novel set against the\nbackdrop of Cold Sassy, Georgia, at the beginning of the twentieth century.\nReprint.\"\r\n1163,1186,92517,Tennessee Williams,The Glass Menagerie,https://images.gr-assets.com/books/1391591003l/92517.jpg,3.67,90032,\"classics, fiction\",\"A classic of modern drama about three confused family members living in\ntheir own world of illusions.\"\r\n1164,1187,13586707,\"Elena Ferrante, Ann Goldstein\",L'amica geniale,https://images.gr-assets.com/books/1343064947l/13586707.jpg,3.88,64637,\"fiction, contemporary\",\"\"\"Mi briljante venninne\"\" er ei historie fortalt av Elena, som har oppdaga at\nden beste venninna hennar gjennom eit langt liv er sporlaust forsvunnen.\nLila har tatt med seg alt ho eig og klipt vekk ansiktet sitt frå samtlege\nfamiliefotografi. Historia om dei to begynner i eit fattig, men pulserande\nnabolag i utkanten av Napoli. Dei to kløktige jentene lærer å stole på\nkvarandre - og ingen andre - i dei røffe gatene som er kontrollert av\nmafiaen. Romanen er eit portrett av to sterke kvinner, men òg historia om\neit nabolag, ein by og eit land som gjennomgår store endringar frå 50-åra\nog fram til vår tid.\"\r\n1165,1188,368593,Timothy Ferriss,\"The 4-Hour Workweek: Escape 9-5, Live Anywhere, and Join the New Rich\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442957271l/368593._SY475_.jpg,3.84,66129,\"business, nonfiction\",\"An edition expanded with more than 100 pages of new content offers a\nblueprint for a better life, whether one's dream is escaping the rat race,\nexperiencing high-end world travel, earning a monthly five-figure income\nwith zero management or just living more and working less.\"\r\n1166,1189,43877,Robin S. Sharma,The Monk Who Sold His Ferrari: A Fable About Fulfilling Your Dreams & Reaching Your Destiny,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189325l/43877.jpg,3.77,52031,\"fiction, psychology\",\"Wisdom to Create a Life of Passion, Purpose, and Peace This inspiring tale\nprovides a step-by-step approach to living with greater courage, balance,\nabundance, and joy. A wonderfully crafted fable, The Monk Who Sold His\nFerrari tells the extraordinary story of Julian Mantle, a lawyer forced to\nconfront the spiritual crisis of his out-of-balance life. On a life-\nchanging odyssey to an ancient culture, he discovers powerful, wise, and\npractical lessons that teach us to: Develop Joyful Thoughts, Follow Our\nLife's Mission and Calling, Cultivate Self-Discipline and Act Courageously,\nValue Time as Our Most Important Commodity, Nourish Our Relationships, and\nLive Fully, One Day at a Time.\"\r\n1167,1190,10054335,Amor Towles,Rules of Civility,https://images.gr-assets.com/books/1311705045l/10054335.jpg,3.99,75541,\"fiction, romance\",\"A chance encounter with a handsome banker in a Greenwich Village jazz bar\non New Year's Eve 1938 catapults witty Wall Street secretary Katey Kontent\ninto the upper echelons of New York society, where she befriends a shy\nmulti-millionaire, an Upper East Side ne'er-do-well and a single-minded\nwidow. A first novel. Reprint.\"\r\n1168,1191,61179,Larry Niven,Ringworld,https://images.gr-assets.com/books/1408793358l/61179.jpg,3.96,76925,\"fiction, fantasy\",\"A two-headed creature and a large redfurred carnivore are among the members\nof a party which arrives to explore a mysterious world fabricated in the\nshape of a ring\"\r\n1169,1192,7824322,Ruta Sepetys,Between Shades of Gray,https://images.gr-assets.com/books/1327873479l/7824322.jpg,4.36,87718,\"history, romance\",\"In 1941, fifteen-year-old Lina, her mother, and brother are pulled from\ntheir Lithuanian home by Soviet guards and sent to Siberia, where her\nfather is sentenced to death in a prison camp while she fights for her\nlife, vowing to honor her family and the thousands like hers by burying her\nstory in a jar on Lithuanian soil. Based on the author's family, includes a\nhistorical note.\"\r\n1170,1193,439173,\"Andrew Clements, Brian Selznick\",Frindle,https://images.gr-assets.com/books/1344395824l/439173.jpg,3.79,83351,\"fiction, contemporary\",\"From bestselling and award-winning author Andrew Clements, a quirky,\nimaginative tale about creative thought and the power of words that will\nhave readers inventing their own words. Is Nick Allen a troublemaker? He\nreally just likes to liven things up at school -- and he's always had\nplenty of great ideas. When Nick learns some interesting information about\nhow words are created, suddenly he's got the inspiration for his best plan\never...the frindle. Who says a pen has to be called a pen? Why not call it\na frindle? Things begin innocently enough as Nick gets his friends to use\nthe new word. Then other people in town start saying frindle. Soon the\nschool is in an uproar, and Nick has become a local hero. His teacher wants\nNick to put an end to all this nonsense, but the funny thing is frindle\ndoesn't belong to Nick anymore. The new word is spreading across the\ncountry, and there's nothing Nick can do to stop it.\"\r\n1171,1194,6578293,Jeff Kinney,Dog Days,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178896l/6578293.jpg,4.14,78592,\"fiction, comics\",\"In the latest diary of middle-schooler Greg Heffley, he records his\nattempts to spend his summer vacation sensibly indoors playing video games\nand watching television, despite his mother's other ideas.\"\r\n1172,1195,13602426,Louise Erdrich,The Round House,https://images.gr-assets.com/books/1352999408l/13602426.jpg,3.91,67928,\"fiction, mystery\",The Round HouseLouise Erdrich\r\n1173,1196,18130,Madeleine L'Engle,A Wind in the Door,https://images.gr-assets.com/books/1327464177l/18130.jpg,4.07,87277,\"fantasy, fiction\",\"With Meg Murry's help, the dragons her six-year-old brother saw in the\nvegetable garden play an important part in his struggle between life and\ndeath. Simultaneous.\"\r\n1174,1197,13615258,Veronica Roth,Free Four: Tobias Tells the Divergent Story,https://images.gr-assets.com/books/1399503802l/13615258.jpg,4.18,81621,\"fiction, fantasy\",\"#1 New York Times bestselling author Veronica Roth retells a pivotal\nDivergent scene (chapter 13) from Tobias's point of view. This thirteen-\npage scene reveals unknown facts and fascinating details about Four's\ncharacter, his past, his own initiation, and his thoughts about new\nDauntless initiate Tris Prior. And don't miss The Fates Divide, Veronica\nRoth's powerful sequel to the bestselling Carve the Mark!\"\r\n1175,1198,22822858,Hanya Yanagihara,A Little Life,https://images.gr-assets.com/books/1446469353l/22822858.jpg,4.27,66782,\"fiction, contemporary\",A Little LifeHanya Yanagihara\r\n1176,1199,156534,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",\"Y: The Last Man, Vol. 1: Unmanned\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178315l/156534.jpg,4.12,81326,\"comics, fiction\",\"Y: The Last Man, Vol. 1: UnmannedBrian K. Vaughan, Pia Guerra, José Marzán Jr.\"\r\n1177,1200,10803121,Brandon Sanderson,The Alloy of Law,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442889632l/10803121._SY475_.jpg,4.2,72185,\"fantasy, fiction\",\"After twenty years in the Roughs, Waxillium Ladrian is forced by family\ntragedy to return to Elendel, where he learns the hard way that the elegant\nstreets of the city can be more dangerous than the dusty plains of the\nRoughs.\"\r\n1178,1201,7981206,Charlaine Harris,Dead Reckoning,https://images.gr-assets.com/books/1357679465l/7981206.jpg,3.77,87066,\"fantasy, fiction\",Dead ReckoningCharlaine Harris\r\n1179,1202,60792,\"Anne Tyler, Jennifer Bassett\",The Accidental Tourist,https://images.gr-assets.com/books/1502220282l/60792.jpg,3.9,80075,\"fiction, contemporary\",\"The Accidental TouristAnne Tyler, Jennifer Bassett\"\r\n1180,1203,12000020,Benjamin Alire Sáenz,Aristotle and Dante Discover the Secrets of the Universe,https://images.gr-assets.com/books/1328320260l/12000020.jpg,4.34,108884,ebooks,\"Fifteen-year-old Ari Mendoza is an angry loner with a brother in prison,\nbut when he meets Dante and they become friends, Ari starts to ask\nquestions about himself, his parents, and his family that he has never\nasked before.\"\r\n1181,1204,17184,H.G. Wells,The Invisible Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388639080l/17184.jpg,3.62,84778,\"classics, fiction\",The Invisible ManH.G. Wells\r\n1182,1205,10374,\"Haruki Murakami, Alfred Birnbaum\",世界の終りとハードボイルド・ワンダーランド [Sekai no owari to hādoboirudo wandārando],https://images.gr-assets.com/books/1399844477l/10374.jpg,4.15,63764,\"fiction, fantasy\",\"世界の終りとハードボイルド・ワンダーランド [Sekai no owari to hādoboirudo wandārando]Haruki Murakami, Alfred Birnbaum\"\r\n1183,1206,1428,\"Paulo Coelho, Alan R. Clarke\",Na margem do rio Piedra eu sentei e chorei,https://images.gr-assets.com/books/1466877798l/1428.jpg,3.57,62106,\"fiction, romance\",\"Paulo Coelho, author of \"\"The Alchemist\"\", has crafted another gem of\nromance, adventure and spiritual insight in this bestselling story of a\nwoman and her lover facing life's most difficult choices on a trip through\nthe French Pyrenees that becomes a passionate journey of the heart.\"\r\n1184,1207,62111,\"Johann David Wyss, Scott McKowen, Arthur Pober\",Der Schweizerische Robinson,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385171459l/62111.jpg,3.92,78355,\"classics, fiction\",\"When a Swiss couple and their four sons are shipwrecked on an isolated\nisland, they adapt to their \"\"New Switzerland\"\" using many imaginative\nmethods of farming and animal taming.\"\r\n1185,1208,133266,Stephen King,Four Past Midnight,https://images.gr-assets.com/books/1321023197l/133266.jpg,3.9,76376,\"fiction, thriller\",\"The survivors of a plane crash awake in a nightmare, a writer finds himself\nat the end of an accusing finger, a businessman struggles to uncover the\nevil driving him mad, and a ravenous dog inhabits a camera, in a horror\nquartet\"\r\n1186,1209,13486122,Jennifer Probst,The Marriage Bargain,https://images.gr-assets.com/books/1329319988l/13486122.jpg,3.81,91630,\"romance, contemporary\",The Marriage BargainJennifer Probst\r\n1187,1210,77390,L.M. Montgomery,Anne of Avonlea,https://images.gr-assets.com/books/1305545757l/77390.jpg,4.21,99918,\"classics, fiction\",\"Anne returns to Avonlea to teach in her former school and discovers the\npleasures and puzzles of growing up.\"\r\n1188,1211,824204,\"Watty Piper, Doris Hauman, George Hauman\",The Little Engine That Could,https://images.gr-assets.com/books/1352736875l/824204.jpg,4.15,82102,\"fiction, classics\",\"The Little Engine That CouldWatty Piper, Doris Hauman, George Hauman\"\r\n1189,1212,16176440,Karen Joy Fowler,We Are All Completely Beside Ourselves,https://images.gr-assets.com/books/1364850195l/16176440.jpg,3.71,59973,\"fiction, contemporary\",\"Coming of age in middle America, 18-year-old Rosemary evaluates how her\nentire youth was defined by the presence and forced removal of an endearing\nchimpanzee who was secretly regarded as a family member and who Rosemary\nloved as a sister. By the best-selling author of The Jane Austen Book Club.\"\r\n1190,1213,31360,Orson Scott Card,Children of the Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390362338l/31360.jpg,3.74,74517,\"fiction, fantasy\",\"In the conclusion of the Ender saga, Ender Wiggin confronts his ultimate\nchallenge when his adopted world, Lusitania, is threatened by his old\nplanet-destroying weapon, and his ally, Jane, is about to be killed off by\nthe Starways Congress\"\r\n1191,1214,338798,James Joyce,Ulysses,https://images.gr-assets.com/books/1428891345l/338798.jpg,3.74,76791,\"classics, fiction\",\"This account of several lower class citizens of Dublin describes their\nactivities and tells what some of them were thinking one day in 1904\"\r\n1192,1215,816953,Sarah Dessen,Someone Like You,https://images.gr-assets.com/books/1336001301l/816953.jpg,3.94,84358,\"romance, contemporary\",\"Halley's junior year of high school includes the death of her best friend\nScarlett's boyfriend, the discovery that Scarlett is pregnant, and Halley's\nown first serious relationship.\"\r\n1193,1216,3273,Alan Brennert,Moloka'i,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441920261l/3273._SX318_.jpg,4.15,75307,\"fiction, history\",Moloka'iAlan Brennert\r\n1194,1217,11901,Anne Rice,The Witching Hour,https://images.gr-assets.com/books/1327289387l/11901.jpg,4.1,79824,\"horror, fantasy\",\"From the author of the extraordinary Vampire Chronicles comes a huge\nmesmerizing novel of witchcraft and the occult through four centuries. Two\npeople with special powers are drwan together and set out in a passionate\nalliance to unlock the mystery of her past and his unwelcome gift. As the\nstrane saga is played out, a world of witches is created that will\nfascinate readers for years to come.\"\r\n1195,1218,17309,Frank E. Peretti,This Present Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202265l/17309.jpg,4.24,71815,\"fiction, christian\",\"When a strange force of evil in the form of a shapeless shadow begins\ntaking over the small town of Ashton, Marshall Hogan, editor of the local\npaper, is unknowingly helped by angels as he searches for a way to save his\nfamily.\"\r\n1196,1219,16113791,Jessica Sorensen,The Coincidence of Callie & Kayden,https://images.gr-assets.com/books/1353550763l/16113791.jpg,4.21,97615,\"romance, contemporary\",The Coincidence of Callie & KaydenJessica Sorensen\r\n1197,1220,24612118,Lauren Groff,Fates and Furies,https://images.gr-assets.com/books/1434750235l/24612118.jpg,3.56,66085,\"fiction, contemporary\",Fates and FuriesLauren Groff\r\n1198,1221,22695,Judy Blume,Summer Sisters,https://images.gr-assets.com/books/1167356646l/22695.jpg,3.83,73515,\"fiction, romance\",\"Two women from very different families become inseparable companions during\nsummers on Martha's Vineyard during their coming-of-age years, forging the\nbonds of a lifelong friendship that weathers growing up, marriage,\nchildren, careers, and betrayal. Reprint.\"\r\n1199,1222,138959,\"E.B. White, Garth Williams\",Stuart Little,https://images.gr-assets.com/books/1347367311l/138959.jpg,3.88,89033,\"classics, fiction\",\"A paperback edition of E.B. White's classic novel about one small mouse on\na very big adventure! With black and white illustrations. Stuart Little is\nno ordinary mouse. Born to a family of humans, he lives in New York City\nwith his parents, his older brother George, and Snowbell the cat. Though\nhe's shy and thoughtful, he's also a true lover of adventure. Stuart's\ngreatest adventure comes when his best friend, a beautiful little bird\nnamed Margalo, disappears from her nest. Determined to track her down,\nStuart ventures away from home for the very first time in his life. He\nfinds adventure aplenty. But will he find his friend?\"\r\n1200,1223,46654,Isaac Asimov,The Foundation Trilogy,https://images.gr-assets.com/books/1316412178l/46654.jpg,4.39,72311,\"fiction, classics\",The Foundation TrilogyIsaac Asimov\r\n1201,1224,771,Brian Greene,\"The Elegant Universe: Superstrings, Hidden Dimensions, and the Quest for the Ultimate Theory\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430864039l/771.jpg,4.06,32626,\"science, nonfiction\",\"Introduces the superstring theory that attempts to unite general relativity\nand quantum mechanics.\"\r\n1202,1225,131123,\"Lemony Snicket, Brett Helquist\",The Austere Academy,https://images.gr-assets.com/books/1320706187l/131123.jpg,3.97,99311,\"fiction, fantasy\",\"As their outrageous misfortune continues, the Baudelaire orphans are\nshipped off to a miserable boarding school, where they befriend the two\nQuagmire triplets and find that they have been followed by the dreaded\nCount Olaf.\"\r\n1203,1226,6424,Janet Evanovich,Seven Up,https://images.gr-assets.com/books/1311720512l/6424.jpg,4.15,94506,\"mystery, fiction\",\"When a senior citzen is charged with smuggling contraband cigarettes,\nStephanie Plum and Lula get more than they bargained for--a corpse in the\nwoodshed and an old man on the lam--but Stephanie is more focused on vice\ncop Joe Morelli who has proposed marriage and a fellow bounty hunter Ranger\nwho is proposing one perfect night. Reprint.\"\r\n1204,1228,91479,Jim Butcher,Death Masks,https://images.gr-assets.com/books/1345557713l/91479.jpg,4.32,83664,\"fantasy, fiction\",\"Second in a new Dark Age trilogy! With the mighty Steel Wolf clan behind\nher, Anastasia Kerensky plans to seize the planet Northwind, but Ezekial\nCrow and Tara Campbell are prepared to repel her invasion-and decide the\nfate of a world.\"\r\n1205,1229,786256,Janell Cannon,Stellaluna,https://images.gr-assets.com/books/1275583521l/786256.jpg,4.22,87423,\"fiction, fantasy\",\"After she falls headfirst into a bird's nest, a baby bat is raised like a\nbird until she is reunited with her mother. On board pages.\"\r\n1206,1230,902715,Joe Abercrombie,Before They Are Hanged,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179318094l/902715._SY475_.jpg,4.27,68865,\"fantasy, fiction\",\"The second novel in the wildly popular First Law Trilogy from New York\nTimes bestseller Joe Abercrombie. Superior Glokta has a problem. How do you\ndefend a city surrounded by enemies and riddled with traitors, when your\nallies can by no means be trusted, and your predecessor vanished without a\ntrace? It's enough to make a torturer want to run -- if he could even walk\nwithout a stick. Northmen have spilled over the border of Angland and are\nspreading fire and death across the frozen country. Crown Prince Ladisla is\npoised to drive them back and win undying glory. There is only one problem\n-- he commands the worst-armed, worst-trained, worst-led army in the world.\nAnd Bayaz, the First of the Magi, is leading a party of bold adventurers on\na perilous mission through the ruins of the past. The most hated woman in\nthe South, the most feared man in the North, and the most selfish boy in\nthe Union make a strange alliance, but a deadly one. They might even stand\na chance of saving mankind from the Eaters -- if they didn't hate each\nother quite so much. Ancient secrets will be uncovered. Bloody battles will\nbe won and lost. Bitter enemies will be forgiven -- but not before they are\nhanged. First Law Trilogy The Blade Itself Before They Are Hanged Last\nArgument of Kings For more from Joe Abercrombie, check out: Novels in the\nFirst Law world Best Served Cold The Heroes Red Country\"\r\n1207,1231,898885,Nancy Horan,Loving Frank,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441383192l/898885._SY475_.jpg,3.73,72734,\"fiction, romance\",\"Fact and fiction blend in a historical novel that chronicles the\nrelationship between seminal architect Frank Lloyd Wright and Mamah Cheney,\nfrom their meeting, when they were each married to another, to the\nclandestine affair that shocked Chicago society.\"\r\n1208,1232,6425,\"Janet Evanovich, Lorelei King\",Hard Eight,https://images.gr-assets.com/books/1479699438l/6425.jpg,4.17,93057,\"mystery, fiction\",\"Hard EightJanet Evanovich, Lorelei King\"\r\n1209,1233,150037,\"Lemony Snicket, Brett Helquist\",The Vile Village,https://images.gr-assets.com/books/1352066958l/150037.jpg,3.94,89733,\"fiction, fantasy\",\"The Vile VillageLemony Snicket, Brett Helquist\"\r\n1210,1234,67920,Flora Rheta Schreiber,Sybil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388372325l/67920.jpg,3.99,72493,\"psychology, biography\",\"More amazing than any work of fiction, yet true in every word, it swept to\nthe top of the bestseller lists and riveted the consciousness of the world.\nAs an Emmy Award-winning film starring Sally Field, it captured the home\nscreens of an entire nation and has endured as the most electrifying TV\nmovie ever made. It's the story of a survivor of terrifying childhood\nabuse, victim of sudden and mystifying blackouts, and the first case of\nmultiple personality ever to be psychoanalyzed. You're about to meet Sybil-\nand the sixteen selves to whom she played host, both women and men, each\nwith a different personality, speech pattern, and even personal appearance.\nYou'll experience the strangeness and fascination of one woman's rare\naffliction-and travel with her on her long, ultimately triumphant journey\nback to wholeness.\"\r\n1211,1235,55030,Carl Sagan,Cosmos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388620656l/55030.jpg,4.35,76440,\"science, nonfiction\",\"The best-selling science book ever published in the English language,\nCOSMOS is a magnificent overview of the past, present, and future of\nscience. Brilliant and provocative, it traces today's knowledge and\nscientific methods to their historical roots, blending science and\nphilosophy in a wholly energetic and irresistible way.\"\r\n1212,1236,22288,Chuck Palahniuk,Haunted: A Novel of Stories,https://images.gr-assets.com/books/1391152326l/22288.jpg,3.59,68861,\"fiction, horror\",\"Twenty-three stories chronicle the experiences of people who have answered\nan ad for an artist's retreat, believing that they will find a peaceful\nrefuge, only to find themselves isolated and trapped in a cavernous old\ntheater.\"\r\n1213,1237,37095,Rosamunde Pilcher,The Shell Seekers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385213408l/37095.jpg,4.13,73573,\"fiction, romance\",\"Set in London and Cornwall between World War II and the present, this is\nthe story of the Keeling family, and of the passions and heart-break that\nhave held them together for three generations--a story of life, hope,\nchildren and death.\"\r\n1214,1238,4952,Dave Eggers,What Is the What: The Autobiography of Valentino Achak Deng,https://images.gr-assets.com/books/1328837457l/4952.jpg,4.16,59333,\"memoir, nonfiction\",What Is the What: The Autobiography of Valentino Achak DengDave Eggers\r\n1215,1239,23878,\"Gabriel García Márquez, Gregory Rabassa\",Crónica de una muerte anunciada,https://images.gr-assets.com/books/1430736599l/23878.jpg,3.95,56200,\"fiction, classics\",\"The Nobel laureate weaves a story of a fantastic wedding, the return of the\nbride to her parents, her brothers' resolve to murder her corruptor, and\nthe townspeoples' refusal to depart from routine.\"\r\n1216,1240,1848444,\"Ronald Holt, Arthur Conan Doyle\",A Scandal in Bohemia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189170223l/1848444._SY475_.jpg,4.22,65422,\"thriller, classics\",\"Penguin Readers is a series of simplified novels, film novelizations and\noriginal titles that introduce students at all levels to the pleasures of\nreading in English. Originally designed for teaching English as a foreign\nlanguage, the series' combination of high interest level and low reading\nage makes it suitable for both English-speaking teenagers with limited\nreading skills and students of English as a second language. Many titles in\nthe series also provide access to the pre-20th century literature strands\nof the National Curriculum English Orders.\"\r\n1217,1241,10587120,\"Bill O'Reilly, Martin Dugard\",Killing Lincoln: The Shocking Assassination that Changed America Forever,https://images.gr-assets.com/books/1317793681l/10587120.jpg,4.02,71868,\"history, biography\",\"BLOCKBUSTER BESTSELLING AUTHOR AND ANCHOR OF The O’Reilly Factor recounts\none of the most dramatic stories in American history—how one gunshot\nchanged the country forever. In the spring of 1865, the bloody saga of\nAmerica’s Civil War finally comes to an end after a series of increasingly\nharrowing battles. President Abraham Lincoln’s generous terms for Robert E.\nLee’s surrender are devised to fulfill Lincoln’s dream of healing a divided\nnation. But one man and his band of murderous accomplices, perhaps reaching\ninto the highest ranks of the U.S. government, are not appeased. “If you\nthink you know this story, you don’t until you’ve read Killing\nLincoln.”—Nelson DeMille In the midst of the patriotic celebrations in\nWashington, D.C., John Wilkes Booth—charismatic ladies’ man and impenitent\nracist—murders Abraham Lincoln at Ford’s Theatre. A furious manhunt ensues\nand Booth immediately becomes the country’s most wanted fugitive. Featuring\nsome of history’s most remarkable figures, vivid detail, and page-turning\naction, Killing Lincoln is history that reads like a thriller.\"\r\n1218,1242,17262100,Jhumpa Lahiri,The Lowland,https://images.gr-assets.com/books/1366930267l/17262100.jpg,3.82,62231,\"fiction, contemporary\",The LowlandJhumpa Lahiri\r\n1219,1243,60400,John Flanagan,The Ruins of Gorlan,https://images.gr-assets.com/books/1293952830l/60400.jpg,4.2,83085,\"fiction, fantasy\",\"When fifteen-year-old Will is rejected by battleschool, he becomes the\nreluctant apprentice to the mysterious Ranger Halt, and winds up protecting\nthe kingdom from danger.\"\r\n1220,1244,5152478,Laurie Halse Anderson,Wintergirls,https://images.gr-assets.com/books/1346343878l/5152478.jpg,3.98,87665,\"fiction, contemporary\",\"Eighteen-year-old Lia comes to terms with her best friend's death from\nanorexia as she struggles with the same disorder.\"\r\n1221,1245,5354,John Grisham,The Brethren,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923281l/5354.jpg,3.71,69351,\"fiction, thriller\",\"In a minimum security federal prison, three former judges who call\nthemselves \"\"the brethren\"\" meet in the law library to run a rougher form of\njustice inside their new community and make a little money until one of\ntheir new scams derails.\"\r\n1222,1246,45112,Robin Hobb,Assassin's Quest,https://images.gr-assets.com/books/1399584431l/45112.jpg,4.18,67125,\"fantasy, fiction\",\"In the epic conclusion to the Farseer trilogy, FitzChivalry emerges from\nthe grave to save the kingdom of the Six Duchies from the plundering Prince\nRegal, a task requiring the most turbulent magic he can summon. Original.\"\r\n1223,1247,228296,Ira Levin,Rosemary's Baby,https://images.gr-assets.com/books/1327878603l/228296.jpg,3.96,78766,\"fiction, thriller\",\"Rosemary and Guy Woodhouse were delighted at the chance to move into\nBramford, one of Manhattan's oldest and most celebrated apartment houses.\nTheir friend Hutch urged them not to; he knew of too many shadows in the\nBramford's past - unsavory tenants like Adrian Marcato, who had practiced\nwitchcraft, and the monstrous Trench sisters. But Rosemary and Guy were\nclear-thinking and not at all superstitious. They dismissed Hutch's\nwarnings and moved in. At first they were completely happy. Rosemary hung\ncurtains and planned a nursery for the baby she hoped to have some day. Guy\npursued his career as a stage and television actor. They met their\nneighbors who were friendly and unintrusive. But then, one day when\nRosemary was down in the basement laundry room, a girl her own ago came in\n..... Quietly and with a compelling matter-of-factness. Ira Levin tells a\nstory of mounting terror and icy climactic shock in a book that manages to\nbe wildly entertaining as well. Described by Truman Capote as \"\"a darkly\nbrilliant tale of modern deviltry .... that induces the reader to believe\nthe unbelievable.\"\" Rosemary's Baby was both a critical and popular success\nwhen it first appeared in 1967. And in his introductions to this exclusive\nedition discusses Levin's skill as \"\"the Swiss watchmaker of the suspense\nnovel,\"\" and expresses his utter admiration for the way the novel takes\nparanoia to the next - sheer terror.\"\r\n1224,1248,59219,\"Stephen King, Peter Straub\",The Talisman,https://images.gr-assets.com/books/1170530286l/59219.jpg,4.12,79508,\"horror, fantasy\",\"Twelve-year-old Jack Sawyer braves the mysterious dangers of the\nTerritories, a surreal parallel world, in his cross-country quest through\nthe U.S. for the Talisman, the only hope for his dying mother and for his\nown survival.\"\r\n1225,1249,140974,Robert Jordan,The Path of Daggers,https://images.gr-assets.com/books/1390508613l/140974.jpg,3.9,74815,\"fantasy, fiction\",The Path of DaggersRobert Jordan\r\n1226,1250,412732,Jack Kerouac,The Dharma Bums,https://images.gr-assets.com/books/1428986082l/412732.jpg,3.94,62454,\"fiction, classics\",\"During the 1950s the search for Buddhist truths takes two young Bohemians\nthrough a series of bizarre experiences in California.\"\r\n1227,1251,6468666,Kelley Armstrong,The Reckoning,https://images.gr-assets.com/books/1327154591l/6468666.jpg,4.21,92922,\"paranormal, fantasy\",\"The gripping finale to the New York Times bestselling Darkest Powers\ntrilogy! In the end, there's always a reckoning. Chloe Saunders's life is\nnot what you would call normal. First of all, she can't figure out how she\nfeels about a certain antisocial werewolf or his charming brother—who just\nhappens to be a sorcerer. Then there's the fact that she's running for her\nlife from an evil corporation that's trying to kill her and her\nsupernatural friends. And finally, she's a genetically altered necromancer\nwho can raise the dead, rotting corpses and all, without even trying. Not\nnormal. But Chloe has a plan. And the end is very near.\"\r\n1228,1252,11869272,Katherine Boo,\"Behind the Beautiful Forevers: Life, Death, and Hope in a Mumbai Undercity\",https://images.gr-assets.com/books/1315601232l/11869272.jpg,3.97,69596,\"nonfiction, history\",\"A first book by a Pulitzer Prize-winning journalist profiles everyday life\nin the settlement of Annawadi as experienced by a Muslim teen, an ambitious\nrural mother of a prospective female college student and a young scrap\nmetal thief, in an account that illuminates how their efforts to build\nbetter lives are challenged by regional religious, caste and economic\ntensions. 35,000 first printing.\"\r\n1229,1253,152380,\"P.L. Travers, Mary Shepard\",Mary Poppins,https://images.gr-assets.com/books/1327947805l/152380.jpg,4.05,82706,\"classics, fantasy\",\"An extraordinary English nanny blows in on the East Wind with her parrot-\nheaded umbrella and magic carpetbag and introduces her charges, Jane and\nMichael, to some delightful people and experiences. Children's BOMC.\"\r\n1230,1254,887877,Scott Lynch,Red Seas Under Red Skies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1504628967l/887877._SY475_.jpg,4.23,68255,\"fantasy, fiction\",Red Seas Under Red SkiesScott Lynch\r\n1231,1255,139253,Sandra Cisneros,The House on Mango Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348245688l/139253.jpg,3.57,81579,\"fiction, classics\",\"For Esperanza, a young girl growing up in the Hispanic quarter of Chicago,\nlife is an endless landscape of concrete and run-down tenements, and she\ntries to rise above the hopelessness\"\r\n1232,1256,1971304,David Benioff,City of Thieves,https://images.gr-assets.com/books/1392015757l/1971304.jpg,4.28,68063,\"fiction, history\",City of ThievesDavid Benioff\r\n1233,1257,1421990,Jeaniene Frost,Halfway to the Grave,https://images.gr-assets.com/books/1373855613l/1421990.jpg,4.18,106608,\"paranormal, romance\",\"Half-vampire Catherine Crawfield is going after the undead with a\nvengeance, hoping that one of these deadbeats is her father—the one\nresponsible for ruining her mother's life. Then she's captured by Bones, a\nvampire bounty hunter, and is forced into an unholy partnership. In\nexchange for finding her father, Cat agrees to train with the sexy night\nstalker until her battle reflexes are as sharp as his fangs. She's amazed\nshe doesn't end up as his dinner—are there actually good vampires? Pretty\nsoon Bones will have her convinced that being half-dead doesn't have to be\nall bad. But before she can enjoy her newfound status as kick-ass demon\nhunter, Cat and Bones are pursued by a group of killers. Now Cat will have\nto choose a side . . . and Bones is turning out to be as tempting as any\nman with a heartbeat.\"\r\n1234,1258,31456,\"Roald Dahl, Quentin Blake\",The Twits,https://images.gr-assets.com/books/1406090629l/31456.jpg,3.94,82458,\"fiction, fantasy\",\"The misadventures of two terrible old people who enjoy playing nasty tricks\nand are finally outwitted by a family of monkeys.\"\r\n1235,1259,334643,Garth Nix,Abhorsen,https://images.gr-assets.com/books/1401683669l/334643.jpg,4.29,80740,\"fantasy, fiction\",AbhorsenGarth Nix\r\n1236,1260,7510,\"James Patterson, Peter de Jonge\",The Beach House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199852l/7510.jpg,3.82,68676,\"mystery, fiction\",\"The Beach HouseJames Patterson, Peter de Jonge\"\r\n1237,1261,10611,Stephen King,Eyes of the Dragon,https://images.gr-assets.com/books/1430121758l/10611.jpg,3.92,72714,\"fantasy, fiction\",\"In the kingdom of Delain, a young prince must struggle against powerful\nforces to gain his rightful inheritance.\"\r\n1238,1262,112,Frank Herbert,Children of Dune,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391051267l/112.jpg,3.9,74133,\"fiction, fantasy\",Children of DuneFrank Herbert\r\n1239,1263,8855321,James S.A. Corey,Leviathan Wakes,https://images.gr-assets.com/books/1411013134l/8855321.jpg,4.2,68416,\"fiction, mystery\",\"The book is the basis for the first season of The Expanse, a new original\nseries premiering on Syfy in December 2015. Leviathan Wakes is James S. A.\nCorey's first novel in the epic series the Expanse, a modern masterwork of\nscience fiction where humanity has colonized the solar system. Two hundred\nyears after migrating into space, mankind is in turmoil. When a reluctant\nship's captain and washed-up detective find themselves involved in the case\nof a missing girl, what they discover brings our solar system to the brink\nof civil war, and exposes the greatest conspiracy in human history. The\nExpanseLeviathan WakesCaliban's WarAbaddon's GateCibola BurnNemesis Games\nThe Expanse Short FictionThe Butcher of Anderson StationGods of RiskThe\nChurnDrive\"\r\n1240,1264,18006496,Sarah J. Maas,Queen of Shadows,https://images.gr-assets.com/books/1441230104l/18006496.jpg,4.6,99067,\"fantasy, romance\",\"Sarah J. Maas's New York Times bestselling Throne of Glass series reaches\nnew heights in this sweeping fourth volume. Everyone Celaena Sardothien\nloves has been taken from her. But she's at last returned to the empire-for\nvengeance, to rescue her once-glorious kingdom, and to confront the shadows\nof her past... She has embraced her identity as Aelin Galathynius, Queen of\nTerrasen. But before she can reclaim her throne, she must fight. She will\nfight for her cousin, a warrior prepared to die just to see her again. She\nwill fight for her friend, a young man trapped in an unspeakable prison.\nAnd she will fight for her people, enslaved to a brutal king and awaiting\ntheir lost queen's triumphant return. Celaena's epic journey has captured\nthe hearts and imaginations of millions across the globe. This fourth\nvolume will hold readers rapt as Celaena's story builds to a passionate,\nagonizing crescendo that might just shatter her world.\"\r\n1241,1265,15197,Art Spiegelman,Maus II : And Here My Troubles Began ,https://images.gr-assets.com/books/1327887479l/15197.jpg,4.41,90147,\"comics, history\",\"The author-illustrator traces his father's imprisonment in a Nazi\nconcentration camp through a series of disarming and unusual cartoons\narranged to tell the story as a novel.\"\r\n1242,1266,310258,Ezra Jack Keats,The Snowy Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347624377l/310258.jpg,4.13,81914,\"fiction, classics\",The adventures of a little boy in the city on a very snowy day.\r\n1243,1267,40331,Janet Evanovich,To the Nines,https://images.gr-assets.com/books/1169433446l/40331.jpg,4.16,86963,\"mystery, fiction\",\"Pursuing a skip, Stephanie travels to Las Vegas, where she meets up with\nSally Sweet, Joe Morelli, and Ranger, and works to outmaneuver a trio of\nmobsters who are determined to prevent Stephanie's return home.\"\r\n1244,1268,12987977,Emily Giffin,Where We Belong,https://images.gr-assets.com/books/1340320747l/12987977.jpg,3.86,68224,\"fiction, romance\",\"Her carefully constructed life thrown into turmoil by the appearance of an\n18-year-old girl with ties to her past, New York City television producer\nMarian Caldwell is swept up in a maelstrom of personal discovery that\nchanges both of their perceptions about family. By the best-selling author\nof Baby Proof. 1,000,000 first printing.\"\r\n1245,1269,16213,Richard   Preston,The Hot Zone: The Terrifying True Story of the Origins of the Ebola Virus,https://images.gr-assets.com/books/1413747743l/16213.jpg,4.1,72207,\"science, nonfiction\",\"The virus kills nine out of ten of its victims. Its effects are so quick\nand so gruesome that even biohazard experts are terrified. It is airborne,\nit is extremely contagious, and it is about to burn through the suburbs of\nWashington, D.C. Is there any way to stop it? This doomsday scenario\nconfronted a biohazard SWAT team struggling in secret to stop the outbreak\nof an exotic \"\"hot\"\" virus at an Army research facility outside Washington.\n\"\"The Hot Zone\"\" tells the dramatic story of their dangerous race against\ntime, along with an alarming account of how previously unknown viruses that\nhave lived undetected in the rain forest for eons are now entering human\npopulations. From the airlocked confines of a biosafety level 4 military\nlab, to an airliner over Kenya carrying a passenger dissolving into a human\nvirus bomb, to a deserted jungle cave alive with deadly virus, THE HOT ZONE\nis a non-fiction thriller like no other. \"\"The Andromeda Strain\"\" was\nfiction--- \"\"this is real!\"\"\"\r\n1246,1270,9557,\"Haruki Murakami, Philip Gabriel\",スプートニクの恋人 [Supūtoniku no Koibito],https://images.gr-assets.com/books/1486764070l/9557.jpg,3.82,62229,\"fiction, contemporary\",\"スプートニクの恋人 [Supūtoniku no Koibito]Haruki Murakami, Philip Gabriel\"\r\n1247,1271,17465453,Elizabeth Gilbert,The Signature of All Things,https://images.gr-assets.com/books/1364277893l/17465453.jpg,3.81,61135,\"fiction, science\",The Signature of All ThingsElizabeth Gilbert\r\n1248,1272,8600,Lynne Truss,\"Eats, Shoots and Leaves\",https://images.gr-assets.com/books/1473392595l/8600.jpg,3.86,79117,\"nonfiction, business\",TRUSS/EATS SHOOTS AND LEAVES\r\n1249,1273,30264,Kim Harrison,Dead Witch Walking,https://images.gr-assets.com/books/1391713381l/30264.jpg,4.04,91390,\"fantasy, paranormal\",\"All the creatures of the night gather in \"\"the Hollows\"\" of Cincinnati, to\nhide, to prowl, to party ... and to feed. Vampires rule the darkness in a\npredator-eat-predator world rife with dangers beyond imagining -- and it’s\nRachel Morgan's job to keep that world civilized. A bounty hunter and witch\nwith serious sex appeal and an attitude, she'll bring 'em back alive, dead\n... or undead.\"\r\n1250,1275,2832909,Diana Gabaldon,An Echo in the Bone,https://images.gr-assets.com/books/1370918297l/2832909.jpg,4.42,68854,\"romance, fiction\",An Echo in the BoneDiana Gabaldon\r\n1251,1276,7488244,Cynthia Hand,Unearthly,https://images.gr-assets.com/books/1324782984l/7488244.jpg,4.06,99942,\"fantasy, paranormal\",UnearthlyCynthia Hand\r\n1252,1277,73186,Lee Strobel,The Case for Christ,https://images.gr-assets.com/books/1448776489l/73186.jpg,4.1,67128,\"christian, religion\",\"\"\"Retracing his own spiritual journey from atheism to faith, Lee Strobel,\nformer legal editor of the Chicago Tribune, cross-examines a dozen experts\nwho are recognized authorities in their fields of history, archaeology, and\nmanuscript studies.\"\"--Back cover.\"\r\n1253,1278,13888,Robert Jordan,Knife of Dreams,https://images.gr-assets.com/books/1397856387l/13888.jpg,4.12,71379,\"fantasy, fiction\",Knife of DreamsRobert Jordan\r\n1254,1279,13083,Carl Hiaasen,Hoot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350164l/13083.jpg,3.81,75275,\"fiction, mystery\",\"A book for young readers. It involves new kids, bullies, alligators, eco-\nwarriors, pancakes, and pint-sized owls. A hilarious Floridian adventure!\"\r\n1255,1280,12914,\"Virgil, Robert Fitzgerald\",Æneis,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923968l/12914.jpg,3.81,75051,\"classics, poetry\",Virgil's poem about the adventures of Aeneas after the fall of Troy\r\n1256,1281,13503109,Junot Díaz,This is How You Lose Her,https://images.gr-assets.com/books/1342596676l/13503109.jpg,3.75,66720,\"fiction, contemporary\",\"Presents a collection of stories that explores the heartbreak and radiance\nof love as it is shaped by passion, betrayal, and the echoes of intimacy.\"\r\n1257,1282,17803,\"Haruki Murakami, Jay Rubin\",アフターダーク [Afutā dāku],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437952316l/17803._SY475_.jpg,3.68,64278,\"fiction, contemporary\",\"アフターダーク [Afutā dāku]Haruki Murakami, Jay Rubin\"\r\n1258,1283,227265,Daniel Quinn,Ishmael: An Adventure of the Mind and Spirit,https://images.gr-assets.com/books/1388180479l/227265.jpg,3.97,63304,\"fiction, philosophy\",Ishmael: An Adventure of the Mind and SpiritDaniel Quinn\r\n1259,1284,6584188,Jenny Han,It's Not Summer Without You,https://images.gr-assets.com/books/1479864019l/6584188.jpg,4.14,80367,\"romance, contemporary\",\"In Jenny Han's follow-up to The Summer I Turned Pretty, Belly finds out\nwhat comes after falling in love. Now available in paperback!\"\r\n1260,1285,10194514,Katie McGarry,Pushing the Limits,https://images.gr-assets.com/books/1322770025l/10194514.jpg,4.08,93818,\"romance, contemporary\",\"Rendered a subject of gossip after a traumatic night that left her with\nterrible scars on her arms, Echo is dumped by her boyfriend and bonds with\nbad-boy Noah, whose tough attitude hides an understanding nature and\ndifficult secrets.\"\r\n1261,1286,111450,\"Kennilworthy Whisp, J.K. Rowling\",Quidditch Through the Ages,https://images.gr-assets.com/books/1369689506l/111450.jpg,3.85,90908,\"fantasy, fiction\",\"Quidditch Through the AgesKennilworthy Whisp, J.K. Rowling\"\r\n1262,1287,147732,\"Harry Allard, James  Marshall\",Miss Nelson Is Missing!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546976385l/147732._SX318_.jpg,4.26,77206,\"fiction, classics\",\"The arrival of a strict substitute convinces Miss Nelson's students that\nthey must get their teacher back.\"\r\n1263,1288,9014,\"Richard Bachman, Stephen King\",The Long Walk,https://images.gr-assets.com/books/1309212400l/9014.jpg,4.11,71775,\"thriller, horror\",\"In this #1 national bestseller, “master storyteller” (Houston Chronicle)\nStephen King, writing as Richard Bachman, tells the tale of the contestants\nof a grueling walking competition where there can only be one winner—the\none that survives. In the near future, when America has become a police\nstate, one hundred boys are selected to enter an annual contest where the\nwinner will be awarded whatever he wants for the rest of his life. Among\nthem is sixteen-year-old Ray Garraty, and he knows the rules—keep a steady\nwalking pace of four miles per hour without stopping. Three warnings and\nyou’re out—permanently. With an introduction by Stephen King on “The\nImportance of Being Bachman.”\"\r\n1264,1289,172327,\"Lemony Snicket, Brett Helquist\",The Ersatz Elevator,https://images.gr-assets.com/books/1352066916l/172327.jpg,4.01,90071,\"fiction, fantasy\",\"In their most daring misadventure, the Baudelaire orphans are adopted by a\nvery rich couple whose penthouse apartment is located close to the place\nwhere the orphans' misfortune all began. This sixth book in \"\"A Series of\nUnfortunate Events\"\" finds the children experiencing a darkened staircase, a\nred herring, and more.\"\r\n1265,1290,12930,Lois Lowry,Messenger ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924375l/12930.jpg,3.9,79746,\"fiction, fantasy\",\"In this novel that unites characters from \"\"The Giver\"\" and \"\"Gathering Blue,\"\"\nMatty, a young member of a utopian community that values honesty, conceals\nan emerging healing power that he cannot explain or understand.\"\r\n1266,1291,42898,J.R. Ward,Lover Revealed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389646548l/42898.jpg,4.3,97830,\"paranormal, romance\",\"The only human allowed in the inner circle of the Black Dagger Brotherhood,\nex-homicide cop Butch O'Neal, after saving a civilian vampire from the\ndreaded slayers, is left for dead and only the aristocratic vampire beauty\nhe desires can bring him back.\"\r\n1267,1292,5413,\"Stephen King, Jerry N. Uelsmann\",'Salem's Lot The Illustrated Edition,https://images.gr-assets.com/books/1320478491l/5413.jpg,4.25,72797,\"horror, fiction\",\"'Salem's Lot The Illustrated EditionStephen King, Jerry N. Uelsmann\"\r\n1268,1293,83369,\"Trenton Lee Stewart, Carson Ellis\",The Mysterious Benedict Society,https://images.gr-assets.com/books/1342715444l/83369.jpg,4.14,87335,\"mystery, fiction\",\"After passing a series of mind-bending tests, four children are selected\nfor a secret mission that requires them to go undercover at the Learning\nInstitute for the Very Enlightened, where the only rule is that there are\nno rules.\"\r\n1269,1294,43369,Christopher Hitchens,God is Not Great: How Religion Poisons Everything,https://images.gr-assets.com/books/1411218313l/43369.jpg,3.96,64347,\"religion, science\",\"In the tradition of Bertrand Russell's Why I Am Not a Christian and Sam\nHarris's recent bestseller, The End of Faith, Christopher Hitchens makes\nthe ultimate case against religion. With a close and erudite reading of the\nmajor religious texts, he documents the ways in which religion is a man-\nmade wish, a cause of dangerous sexual repression, and a distortion of our\norigins in the cosmos. With eloquent clarity, Hitchens frames the argument\nfor a more secular life based on science and reason, in which hell is\nreplaced by the Hubble Telescope's awesome view of the universe, and Moses\nand the burning bush give way to the beauty and symmetry of the double\nhelix.\"\r\n1270,1295,17029526,Abbi Glines,\"Never Too Far (Too Far, #2)\",https://images.gr-assets.com/books/1356822956l/17029526.jpg,4.21,97616,\"romance, contemporary\",\"The New York Times bestselling novel that continues the passionate story of\nRush and Blaire from Fallen Too Far. Our relationship had been short.\nIntense and brief. I wondered what it would have felt like to curl up in\nRush’s arms anytime I wanted. To know I was safe and that he loved me. We’d\nnever had that chance. Just when Blaire allowed herself to fall for her\nstepbrother, Rush, he revealed a life-altering secret so devastating that\nshe couldn’t forgive him. Unable to face him again, Blaire leaves the\npromise of true love behind in Rosemary Beach and returns to the comforts\nof her small town in Alabama, wanting nothing more than to put the summer\nbehind her. But unexpected news complicates Blaire’s plans, and she’s\nforced to trust the one man she shouldn’t. Trapped between Rush’s fierce\ndesire to win her back and her own sense of self-preservation, Blaire\ndoesn’t know if she’s doing the right thing . . . or if she’s making the\nbiggest mistake of her life.\"\r\n1271,1296,15860,Michael Crichton,State of Fear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554227284l/15860._SY475_.jpg,3.69,65397,\"fiction, thriller\",State of FearMichael Crichton\r\n1272,1297,10798416,Jennifer E. Smith,The Statistical Probability of Love at First Sight,https://images.gr-assets.com/books/1337187623l/10798416.jpg,3.8,89356,\"romance, contemporary\",The Statistical Probability of Love at First SightJennifer E. Smith\r\n1273,1298,59263,Jonathan Stroud,The Golem's Eye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441130242l/59263._SY475_.jpg,4.09,69058,\"fantasy, fiction\",\"The second adventure in the Bartimaeus trilogy finds our young apprentice\nmagician Nathaniel working his way up the ranks of the government, when\ncrisis hits. A seemingly invulnerable clay golem is making random attacks\non London. Nathaniel and the all-powerful, totally irreverent djinni,\nBartimaeus, must travel to Prague to discover the source of the golem's\npower. In the ensuing chaos, readers will chase a dancing skeleton across\nLondon's skyline, encounter the horror of the dreaded Night Police, witness\na daring kidnapping, and enter the Machiavellian world of the magician's\ngovernment. Eventually, Nathaniel and Bartimaeus have to go head to head\nwith the fearsome golem before the surprise identity of his master is\nfinally revealed.\"\r\n1274,1299,9566,Tom Robbins,Still Life with Woodpecker,https://images.gr-assets.com/books/1308749778l/9566.jpg,4.04,56802,\"fiction, contemporary\",\"A love story that takes place inside a pack of cigarettes reveals the\nmoon's purpose, differentiates between outlaws and criminals, and presents\nportraits of powerful Arabs, exiled royalty, and pregnant cheerleaders\"\r\n1275,1300,49465,Jenna Blum,Those Who Save Us,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442711741l/49465._SY475_.jpg,4.12,68480,\"fiction, history\",Those Who Save UsJenna Blum\r\n1276,1301,1110,John Grisham,The Broker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924342l/1110.jpg,3.77,65428,\"thriller, mystery\",The BrokerJohn Grisham\r\n1277,1302,8235178,Beth Revis,Across the Universe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401852218l/8235178.jpg,3.78,94176,\"romance, fantasy\",\"Teenaged Amy, a cryogenically frozen passenger on the spaceship Godspeed,\nwakes up to discover that someone may have tried to murder her.\"\r\n1278,1303,347852,M. Scott Peck,\"The Road Less Traveled:  A New Psychology of Love, Traditional Values, and Spiritual Growth\",https://images.gr-assets.com/books/1322673263l/347852.jpg,4.03,61238,\"psychology, spirituality\",\"Now featuring a new introduction by Dr. M. Scott Peck, the twenty-fifth\nanniversary edition of the classic bestseller The Road Less Traveled,\ncelebrated by The Washington Post as “not just a book but a spontaneous act\nof generosity.” Perhaps no book in this generation has had a more profound\nimpact on our intellectual and spiritual lives than The Road Less Traveled.\nWith sales of more than seven million copies in the United States and\nCanada, and translations into more than twenty-three languages, it has made\npublishing history, with more than ten years on the New York Times\nbestseller list. Written in a voice that is timeless in its message of\nunderstanding, The Road Less Traveled continues to help us explore the very\nnature of loving relationships and leads us toward a new serenity and\nfullness of life. It helps us learn how to distinguish dependency from\nlove; how to become a more sensitive parent; and ultimately how to become\none’s own true self. Recognizing that, as in the famous opening line of his\nbook, “Life is difficult” and that the journey to spiritual growth is a\nlong one, Dr. Peck never bullies his readers, but rather guides them gently\nthrough the hard and often painful process of change toward a higher level\nof self-understanding.\"\r\n1279,1304,99383,Jim Butcher,Blood Rites,https://images.gr-assets.com/books/1345557965l/99383.jpg,4.33,79627,\"fantasy, mystery\",\"While going undercover on the set of an adult film to investigate the\nmysterious deaths of several actresses, Chicago wizard Harry Desden\nunexpectedly learns the shocking truth about his vampire friend Thomas.\nOriginal.\"\r\n1280,1305,297249,\"Gertrude Chandler Warner, L. Kate Deal\",The Boxcar Children,https://images.gr-assets.com/books/1173489650l/297249.jpg,4.09,92916,\"mystery, fiction\",\"The Aldens begin their adventure by making a home in a boxcar. Their goal\nis to stay together, and in the process they find a grandfather.\"\r\n1281,1306,16171291,A.S.A. Harrison,The Silent Wife,https://images.gr-assets.com/books/1356094989l/16171291.jpg,3.3,60323,\"fiction, thriller\",\"Told in alternating voices, this gripping novel follows the events leading\nup to the violent dissolution of Jodi and Todd's marriage—a union steeped\nin lies, infidelity, jealousy and denial. Original.\"\r\n1282,1307,10600242,Caitlin Moran,How to Be a Woman,https://images.gr-assets.com/books/1405909800l/10600242.jpg,3.73,70446,\"memoir, nonfiction\",How to Be a WomanCaitlin Moran\r\n1283,1308,17927395,Sarah J. Maas,A Court of Mist and Fury,https://images.gr-assets.com/books/1485259138l/17927395.jpg,4.72,108384,\"fiction, fantasy\",\"The #1 New York Times bestselling sequel to Sarah J. Maas's stunning and\nseductive A Court of Thorns and Roses.\"\r\n1284,1309,9439303,Keith Richards,Life,https://images.gr-assets.com/books/1327960451l/9439303.jpg,3.84,60409,\"music, biography\",\"The long-awaited autobiography of the guitarist, songwriter, singer, and\nfounding member of the Rolling Stones. Ladies and gentlemen: Keith\nRichards. With The Rolling Stones, Keith Richards created the songs that\nroused the world, and he lived the original rock and roll life. Now, at\nlast, the man himself tells his story of life in the crossfire hurricane.\nListening obsessively to Chuck Berry and Muddy Waters records, learning\nguitar and forming a band with Mick Jagger and Brian Jones. The Rolling\nStones's first fame and the notorious drug busts that led to his enduring\nimage as an outlaw folk hero. Creating immortal riffs like the ones in\n\"\"Jumping Jack Flash\"\" and \"\"Honky Tonk Women.\"\" His relationship with Anita\nPallenberg and the death of Brian Jones. Tax exile in France, wildfire\ntours of the U.S., isolation and addiction. Falling in love with Patti\nHansen. Estrangement from Jagger and subsequent reconciliation. Marriage,\nfamily, solo albums and Xpensive Winos, and the road that goes on forever.\nWith his trademark disarming honesty, Keith Richard brings us the story of\na life we have all longed to know more of, unfettered, fearless, and true.\"\r\n1285,1310,85301,Jhumpa Lahiri,Unaccustomed Earth,https://images.gr-assets.com/books/1320398140l/85301.jpg,4.11,60126,\"fiction, contemporary\",\"Exploring the secrets and complexities lying at the heart of family life\nand relationships, a collection of eight stories includes the title work,\nabout a young mother in a new city whose father tends her garden while\nhiding a secret love affair, as well as \"\"Hema and Kaushik,\"\" \"\"Only\nGoodness,\"\" and \"\"A Choice of Accommodations,\"\" among others. Reprint.\"\r\n1286,1311,5191,Anita Shreve,The Pilot's Wife,https://images.gr-assets.com/books/1435011220l/5191.jpg,3.5,71777,\"fiction, mystery\",The Pilot's WifeAnita Shreve\r\n1287,1312,11762,Don DeLillo,White Noise,https://images.gr-assets.com/books/1327934706l/11762.jpg,3.86,55678,\"fiction, classics\",\"Jack Gladney, a professor of Nazi history at a Middle American liberal arts\nschool, and his family try to handle normal family life as a black cloud of\nlethal gaseous fumes threatens their town.\"\r\n1288,1313,42389,Stephen E. Ambrose,\"Band of Brothers: E Company, 506th Regiment, 101st Airborne from Normandy to Hitler's Eagle's Nest\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247701l/42389.jpg,4.42,66079,\"history, nonfiction\",\"Band of Brothers: E Company, 506th Regiment, 101st Airborne from Normandy to Hitler's Eagle's NestStephen E. Ambrose\"\r\n1289,1314,22463,Charles Darwin,On the Origin of Species by Means of Natural Selection or the Preservation of Favoured Races in the Struggle for Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298417570l/22463.jpg,3.97,64162,\"science, classics\",On the Origin of Species by Means of Natural Selection or the Preservation of Favoured Races in the Struggle for LifeCharles Darwin\r\n1290,1315,25179,Craig Thompson,Blankets,https://images.gr-assets.com/books/1460925949l/25179.jpg,4.06,70454,\"fiction, memoir\",BlanketsCraig Thompson\r\n1291,1316,2731276,David Wroblewski,The Story of Edgar Sawtelle,https://images.gr-assets.com/books/1310466361l/2731276.jpg,3.6,70382,\"fiction, contemporary\",The Story of Edgar SawtelleDavid Wroblewski\r\n1292,1317,5171,Christina Schwarz,Drowning Ruth,https://images.gr-assets.com/books/1390180160l/5171.jpg,3.73,67768,\"mystery, fiction\",\"An Oprah Book Club selection and bestseller in hardcover, \"\"Drowning Ruth\"\"--\nnow in paperback--is a stunning portrait of the ties that bind sisters\ntogether and the forces that tear them apart. Schwarz's first novel\nexplores themes of family love, sibling rivalry, duty, loyalty, and a\npossible murder.\"\r\n1293,1318,51504,Charles Bukowski,Post Office,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424999238l/51504.jpg,4.01,59295,\"fiction, classics\",Post OfficeCharles Bukowski\r\n1294,1319,469571,Cormac McCarthy,All the Pretty Horses,https://images.gr-assets.com/books/1498463335l/469571.jpg,3.97,68451,\"fiction, classics\",\"Cut off from the life of ranching he has come to love by his grandfather's\ndeath, John Grady Cole flees to Mexico, where he and his two companions\nembark on a rugged and cruelly idyllic adventure\"\r\n1295,1320,3586,\"Arthur Conan Doyle, Kyle Freeman\",\"Sherlock Holmes: The Complete Novels and Stories, Vol 2\",https://images.gr-assets.com/books/1347663158l/3586.jpg,4.46,66857,\"classics, mystery\",\"The Complete Sherlock Holmes, Volume I Sir Arthur Conan Doyle, is part of\nthe Barnes & Noble Classics series, which offers quality editions at\naffordable prices to the student and the general reader, including new\nscholarship, thoughtful design, and pages of carefully crafted extras. Here\nare some of the remarkable features of Barnes & Noble Classics - -New\nintroductions commissioned from today''s top writers and scholars -\nChronologies of contemporary historical, biographical, and cultural events\n-Selective discussions of imitations, parodies, poems, books, plays,\npaintings, operas, statuary, and films inspired by the work -Comments by\nother famous authors -Study questions to challenge the reader''s viewpoints\nand expectations -Bibliographies for further reading -Indices & Glossaries,\nwhen appropriate. All editions are beautifully designed and are printed to\nsuperior specifications; some include illustrations of historical interest.\nBarnes & Noble Classics pulls together a constellation of influences--\nbiographical, historical, and literary--to enrich each reader''s\nunderstanding of these enduring works. The Complete Sherlock Holmes\ncomprises four novels and fifty-six short stories revolving around the\nworld''s most popular and influential fictional detective--the eccentric,\narrogant, and ingenious Sherlock Holmes. He and his trusted friend, Dr.\nWatson, step from Holmes''s comfortable quarters at 221b Baker Street into\nthe swirling fog of Victorian London to exercise that unique combination of\ndetailed observation, vast knowledge, and brilliant deduction. Inevitably,\nHolmes rescues the innocent, confounds the guilty, and solves the most\nperplexing puzzles known to literature. The Complete Sherlock Holmes starts\nwith Holmes's first appearance, A Study in Scarle, a chilling murder novel\ncomplete with bloodstained walls and cryptic clues, followed by the\nbaffling The Sign of Four, which introduces Holmes's cocaine problem and\nWatson's future wife. The story collections The Adventures of Sherlock\nHolmes and The Memoirs of Sherlock Holmes feature such renowned tales as \"\"A\nScandal in Bohemia,\"\" \"\"The Red-Headed League,\"\" and \"\"The Musgrave Ritual.\"\"\nTired of writing stories about Holmes, his creator, Sir Arthur Conan Doyle,\nkilled him off at the end of \"\"The Final Problem,\"\" the last tale in The\nMemoirs. But the public outcry was so great that eight years later he\npublished the masterful The Hound of the Baskervilles, which supposedly\ntakes place before Holmes's death. The separate Volume II of The Complete\nSherlock Holmes collects the remaining accounts of Holmes''s exploits,\nincluding \"\"The Adventure of the Empty House,\"\" which reveals the elaborate\ncircumstances behind Holmes''s literary resurrection. Kyle Freeman, a\nSherlock Holmes enthusiast for many years, earned two graduate degrees in\nEnglish literature from Columbia University, where his major was twentieth-\ncentury British literature.\"\r\n1296,1321,1237398,\"Eiichirō Oda, Andy Nakatani\",\"One Piece, Volume 01\",https://images.gr-assets.com/books/1318523719l/1237398.jpg,4.42,67047,\"manga, fantasy\",\"When Monkey D. Luffy accidentally gains the power to stretch like rubber at\nthe cost of never being able to swim again, he and his crew of pirate\nwannabes set off in search of the \"\"One Piece,\"\" the greatest treasure in the\nworld.\"\r\n1297,1322,29127,Peter S. Beagle,The Last Unicorn,https://images.gr-assets.com/books/1358147318l/29127.jpg,4.18,76277,\"fantasy, fiction\",The 30th anniversary of a fantasy classic from Peter S. Beagle!\r\n1298,1323,769483,Angie Sage,Magyk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404330986l/769483.jpg,3.8,86805,\"fantasy, fiction\",\"The seventh son of the seventh son, aptly named Septimus Heap, is stolen\nthe night he is born by a midwife who pronounces him dead. That same night,\nthe baby's father, Silas Heap, comes across a bundle in the snow containing\na new born girl with violet eyes. The Heaps take this helpless newborn into\ntheir home, name her Jenna, and raise her as their own. But who is this\nmyster ious baby girl, and what really happened to their beloved son\nSeptimus? The first book in this enthralling new series by Angie Sage leads\nreaders on a fantastic journey filled with quirky characters and magykal\ncharms, potions, and spells. magyk is an original story of lost and\nrediscovered identities, rich with humor and heart.\"\r\n1299,1324,781110,Laurie Halse Anderson,Fever 1793,https://images.gr-assets.com/books/1381743126l/781110.jpg,3.89,81945,\"fiction, history\",\"From Fever 1793 \"\"Where's Polly?\"\" I asked as I dropped the bucket down the\nwell. \"\"Did you pass by the blacksmith's? \"\"I spoke with her mother, with\nMistress Logan,\"\" Mother answered softly, looking at her neat rows of\ncarrots. \"\"And?\"\" I waved a mosquito away from my face. \"\"It happened quickly.\nPolly sewed by candlelight after dinner. Her mother repeated that over and\nover, 'she sewed by candlelight after dinner.' And then she collapsed.\"\" I\nreleased the handle and the bucket splashed, a distant sound. \"\"Matilda,\nPolly's dead.\"\" August 1793. Fourteen-year-old Mattie Cook is ambitious,\nadventurous, and sick to death of listening to her mother. Mattie has plans\nof her own. She wants to turn the Cook Coffeehouse into the finest business\nin Philadelphia, the capital of the new United States. But the waterfront\nis abuzz with reports of disease. \"\"Fever\"\" spreads from the docks and creeps\ntoward Mattie's home, threatening everything she holds dear. As the\ncemeteries fill with fever victims, fear turns to panic, and thousands flee\nthe city. Then tragedy strikes the coffeehouse, and Mattie is trapped in a\nliving nightmare. Suddenly, her struggle to build a better life must give\nway to something even more important -- the fight to stay alive.\"\r\n1300,1325,1914973,Tana French,The Likeness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348934952l/1914973.jpg,4.05,72480,\"mystery, fiction\",The LikenessTana French\r\n1301,1326,22551730,Erik Larson,Dead Wake: The Last Crossing of the Lusitania,https://images.gr-assets.com/books/1408923747l/22551730.jpg,4.07,61439,\"history, nonfiction\",A cloth bag containing eight copies of the title and 1 discussion folder.\r\n1302,1327,77270,Rudyard Kipling,The Jungle Book,https://images.gr-assets.com/books/1327873594l/77270.jpg,3.94,67107,\"classics, fiction\",\"Presents the adventures of Mowgli, a boy reared by a pack of wolves, and\nthe wild animals of the jungle.\"\r\n1303,1328,18144124,Terry Hayes,I Am Pilgrim,https://images.gr-assets.com/books/1403345411l/18144124.jpg,4.23,49740,\"fiction, suspense\",\"Pilgrim is the code name for a world class and legendary secret agent. His\nadversary is known only as the Saracen. As a young boy, the Saracen saw his\ndissident father beheaded in a Saudi Arabian public square, creating a\nburning desire to destroy the special relationship between the US and the\nKingdom. When a woman's body is found in a seedy hotel near Ground Zero,\nthe techniques are pulled from a cult classic of forensic science that\nPilgrim wrote under a pen name. In offering the NYPD assistance with the\ncase, Pilgrim gets pulled back into the intelligence underground.\"\r\n1304,1329,6295,\"Allen Ginsberg, William Carlos Williams\",Howl and Other Poems ,https://images.gr-assets.com/books/1327870926l/6295.jpg,4.14,71968,\"poetry, classics\",\"The epigraph for Howl is from Walt Whitman: \"\"Unscrew the locks from the\ndoors!/Unscrew the doors themselves from their jambs!\"\" Announcing his\nintentions with this ringing motto, Allen Ginsberg published a volume of\npoetry which broke so many social...\"\r\n1305,1330,170548,Richard Carlson,Don't Sweat the Small Stuff,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172378911l/170548._SX318_.jpg,3.95,63324,\"psychology, philosophy\",\"Braille edition of the popular bestseller. \"\"Let go of the idea that gentle,\nrelaxed people can't be super-achievers,\"\" advises Dr. Richard Carlson in\nhis widely popular self-help book, DON'T SWEAT THE SMALL STUFF. In 100\nchapters--each only a few pages long--Dr. Carlson shares his ideas for\nliving a calmer, richer life. This book has been on the New York Times\nbestseller list for 38 weeks and is No. 3 on USA TODAY's Best-Selling Books\nlist. Two small volumes in braille.\"\r\n1306,1331,11192642,\"Adam Mansbach, Ricardo Cortés\",Go the Fuck to Sleep,https://images.gr-assets.com/books/1342861907l/11192642.jpg,4.26,71816,\"fiction, poetry\",The #1 New York Times best-seller for parents who live in the real world.\r\n1307,1332,360,Douglas Adams,Mostly Harmless,https://images.gr-assets.com/books/1320725132l/360.jpg,3.96,72426,\"fiction, fantasy\",\"Raised on a planet at the remote edge of the universe, the daughter of\nArthur Dent sets out on a transgalactic quest to find the planet of her\nancestors\"\r\n1308,1333,10883,Walter Isaacson,Benjamin Franklin: An American Life,https://images.gr-assets.com/books/1397772877l/10883.jpg,3.96,70335,\"biography, history\",\"Presents a portrait of Benjamin Franklin as a scientist, inventor,\ndiplomat, writer, business strategist, and statesman while tracing his life\nas one of America's Founding Fathers.\"\r\n1309,1334,8366402,Téa Obreht,The Tiger's Wife,https://images.gr-assets.com/books/1382570044l/8366402.jpg,3.37,66104,\"fiction, contemporary\",\"Struggling to understand why her beloved grandfather left his family to die\nalone in a field hospital far from home, a young doctor in a war-torn\nBalkan country takes over her grandfather's search for a mythical ageless\nvagabond while referring to a worncopy of Rudyard Kipling's \"\"The Jungle\nBook.\"\"\"\r\n1310,1335,60510,Maria V. Snyder,Poison Study,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388519019l/60510.jpg,4.16,96417,\"fantasy, fiction\",Poison StudyMaria V. Snyder\r\n1311,1336,304027,J.R. Ward,Lover Unbound,https://images.gr-assets.com/books/1351276662l/304027.jpg,4.33,97514,\"paranormal, fantasy\",\"In Caldwell, New York, war rages between vampires and their slayers. There\nexists a secret band of brothers--six vampire warriors, defenders of their\nrace. Now the cold heart of a cunning predator will be warmed against its\nwill. Possessing a destructive curse and the ability to see the future,\nVishous finds fate playing a cruel trick on him when he meets Jane\nWhitcomb, a human doctor who introduces him to true pleasure but who can\nnever be a part of his future.\"\r\n1312,1337,64222,Terry Pratchett,Going Postal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388236899l/64222.jpg,4.36,75186,\"fantasy, fiction\",\"Suddenly, condemned arch-swindler Moist von Lipwig found himself with a\nnoose around his neck and dropping through a trapdoor into ... a government\njob? By all rights, Moist should be meeting his maker rather than being\noffered a position as Postmaster by Lord Vetinari, supreme ruler of Ankh-\nMorpork. Getting the moribund Postal Service up and running again, however,\nmay prove an impossible task, what with literally mountains of decades-old\nundelivered mail clogging every nook and cranny of the broken-down post\noffice. Worse still, Moist could swear the mail is talking to him. Worst of\nall, it means taking on the gargantuan, greedy Grand Trunk clacks\ncommunication monopoly and its bloodthirsty piratical headman. But if the\nbold and undoable are what's called for, Moist's the man for the job -- to\nmove the mail, continue breathing, get the girl, and specially deliver that\ninvaluable commodity that every being, human or otherwise, requires: hope.\"\r\n1313,1338,323355,\"Anonymous, Joseph Smith Jr.\",The Book of Mormon,https://images.gr-assets.com/books/1327389004l/323355.jpg,4.37,63530,\"nonfiction, classics\",\"The Book of MormonAnonymous, Joseph Smith Jr.\"\r\n1314,1339,813214,Stephen King,The Mist,https://images.gr-assets.com/books/1331317781l/813214.jpg,3.92,82062,\"horror, fiction\",\"#1 New York Times bestselling author Stephen King’s terrifying novella\nabout a town engulfed in a dense, mysterious mist as humanity makes its\nlast stand against unholy destruction—originally published in the acclaimed\nshort story collection Skeleton Crew and made into a TV series, as well as\na feature film starring Thomas Jane and Marcia Gay Harden. In the wake of a\nsummer storm, terror descends...David Drayton, his son Billy, and their\nneighbor Brent Norton join dozens of others and head to the local grocery\nstore to replenish supplies following a freak storm. Once there, they\nbecome trapped by a strange mist that has enveloped the town. As the\nconfinement takes its toll on their nerves, a religious zealot, Mrs.\nCarmody, begins to play on their fears to convince them that this is God’s\nvengeance for their sins. She insists a sacrifice must be made and two\ngroups—those for and those against—are aligned. Clearly, staying in the\nstore may prove fatal, and the Draytons, along with store employee Ollie\nWeeks, Amanda Dumfries, Irene Reppler, and Dan Miller, attempt to make\ntheir escape. But what’s out there may be worse than what they left behind.\nThis exhilarating novella explores the horror in both the enemy you\nknow—and the one you can only imagine.\"\r\n1315,1340,17683,Jim Butcher,Dead Beat,https://images.gr-assets.com/books/1345667776l/17683.jpg,4.43,78123,\"fantasy, fiction\",Dead BeatJim Butcher\r\n1316,1341,18966819,Pierce Brown,Golden Son,https://images.gr-assets.com/books/1394684475l/18966819.jpg,4.46,57614,\"fantasy, fiction\",Golden SonPierce Brown\r\n1317,1342,47989,Terry Pratchett,Night Watch,https://images.gr-assets.com/books/1320518310l/47989.jpg,4.47,71271,\"fantasy, fiction\",\"One moment, Sir Sam Vimes is in his old patrolman form, chasing a sweet-\ntalking psychopath across the rooftops of Ankh-Morpork. The next, he's\nlying naked in the street, having been sent back thirty years courtesy of a\ngroup of time-manipulating monks who won't leave well enough alone. This\nDiscworld is a darker place that Vimes remembers too well, three decades\nbefore his title, fortune, beloved wife, and impending first child. Worse\nstill, the murderer he's pursuing has been transported back also. Worst of\nall, it's the eve of a fabled street rebellion that needlessly destroyed\nmore than a few good (and not so good) men. Sam Vimes knows his duty, and\nby changing history he might just save some worthwhile necks—though it\ncould cost him his own personal future. Plus there's a chance to steer a\nnovice watchman straight and teach him a valuable thing or three about\npolicing, an impressionable young copper named Sam Vimes.\"\r\n1318,1343,34506,Terry Pratchett,The Light Fantastic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389554927l/34506.jpg,3.94,75196,\"fantasy, fiction\",The Light FantasticTerry Pratchett\r\n1319,1344,6516450,Malcolm Gladwell,What the Dog Saw and Other Adventures,https://images.gr-assets.com/books/1344263875l/6516450.jpg,3.82,65277,\"nonfiction, psychology\",\"Malcolm Gladwell focuses on \"\"minor geniuses\"\" and idiosyncratic behavior to\nilluminate the ways all of us organize experience in this \"\"delightful\"\"\n(Bloomberg News) collection of writings from The New Yorker. What is the\ndifference between choking and panicking? Why are there dozens of varieties\nof mustard-but only one variety of ketchup? What do football players teach\nus about how to hire teachers? What does hair dye tell us about the history\nof the 20th century? In the past decade, Malcolm Gladwell has written three\nbooks that have radically changed how we understand our world and\nourselves: The Tipping Point; Blink; and Outliers. Now, in What the Dog\nSaw, he brings together, for the first time, the best of his writing from\nThe New Yorker over the same period. Here is the bittersweet tale of the\ninventor of the birth control pill, and the dazzling inventions of the\npasta sauce pioneer Howard Moscowitz. Gladwell sits with Ron Popeil, the\nking of the American kitchen, as he sells rotisserie ovens, and divines the\nsecrets of Cesar Millan, the \"\"dog whisperer\"\" who can calm savage animals\nwith the touch of his hand. He explores intelligence tests and ethnic\nprofiling and \"\"hindsight bias\"\" and why it was that everyone in Silicon\nValley once tripped over themselves to hire the same college graduate.\n\"\"Good writing,\"\" Gladwell says in his preface, \"\"does not succeed or fail on\nthe strength of its ability to persuade. It succeeds or fails on the\nstrength of its ability to engage you, to make you think, to give you a\nglimpse into someone else's head.\"\" What the Dog Saw is yet another example\nof the buoyant spirit and unflagging curiosity that have made Malcolm\nGladwell our most brilliant investigator of the hidden extraordinary.\"\r\n1320,1345,25574782,Karin Slaughter,Pretty Girls,https://images.gr-assets.com/books/1432205734l/25574782.jpg,3.95,60737,\"mystery, thriller\",Pretty GirlsKarin Slaughter\r\n1321,1346,944076,Joe Abercrombie,Last Argument of Kings,https://images.gr-assets.com/books/1302062699l/944076.jpg,4.26,65068,\"fantasy, fiction\",\"The final novel in the First Law Trilogy by New York Times bestseller Joe\nAbercrombie. Logen Ninefingers might only have one more fight in him -- but\nit's going to be a big one. Battle rages across the North, the king of the\nNorthmen still stands firm, and there's only one man who can stop him. His\noldest friend, and his oldest enemy: it's time for the Bloody-Nine to come\nhome. With too many masters and too little time, Superior Glokta is\nfighting a different kind of war. A secret struggle in which no one is\nsafe, and no one can be trusted. As his days with a sword are far behind\nhim, it's fortunate that he's deadly with his remaining weapons: blackmail,\nthreats, and torture. Jezal dan Luthar has decided that winning glory is\ntoo painful an undertaking and turned his back on soldiering for a simple\nlife with the woman he loves. But love can be painful too -- and glory has\na nasty habit of creeping up on a man when he least expects it. The king of\nthe Union lies on his deathbed, the peasants revolt, and the nobles\nscramble to steal his crown. No one believes that the shadow of war is\nabout to fall across the heart of the Union. Only the First of the Magi can\nsave the world, but there are risks. There is no risk more terrible, than\nto break the First Law... First Law Trilogy The Blade Itself Before They\nAre Hanged Last Argument of Kings For more from Joe Abercrombie, check out:\nNovels in the First Law world Best Served Cold The Heroes Red Country\"\r\n1322,1347,20926278,Stephen King,Revival,https://images.gr-assets.com/books/1394651975l/20926278.jpg,3.75,53662,\"horror, fiction\",RevivalStephen King\r\n1323,1348,7779,Dr. Seuss,Horton Hears a Who!,https://images.gr-assets.com/books/1327924655l/7779.jpg,4.16,80883,\"fiction, classics\",\"A city of Whos on a speck of dust are threatened with destruction until the\nsmallest Who of all helps convince Horton's friends that Whos really exist.\nReissue.\"\r\n1324,1349,817791,Michael   Lewis,The Blind Side: Evolution of a Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347350403l/817791.jpg,4.16,37792,\"sports, nonfiction\",\"Follows one young man from his impoverished childhood with a crack-addicted\nmother, through his discovery of the sport of football, to his rise to\nbecome one of the most successful, highly-paid players in the NFL.\"\r\n1325,1350,47624,Garth Nix,Lirael,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266458951l/47624.jpg,4.29,78903,\"fantasy, fiction\",\"Lirael has never felt like a true daughter of the Clayr. Now, two years\npast the time when she should have received the Sight that is the Clayr's\nbirthright, she feels alone, abandoned, unsure of who she is. Nevertheless,\nthe fate of the Old Kingdom lies in her hands. With only her faithful\ncompanion, the Disreputable Dog, Lirael must undertake a desperate mission\nagainst the growing shadow of an ancient evil. In this sequel to Sabriel,\nwinner of the Aurealis Award for Excellence in Australian Science Fiction,\nNew York Times bestselling author Garth Nix weaves a spellbinding tale of\ndiscovery, destiny, and danger.\"\r\n1326,1351,13139,James Patterson,School's Out Forever,https://images.gr-assets.com/books/1346079917l/13139.jpg,4.16,90157,\"fantasy, fiction\",School's Out ForeverJames Patterson\r\n1327,1352,6690979,\"Yana Toboso, Tomo Kimura\",黒執事 I [Kuroshitsuji I],https://images.gr-assets.com/books/1336691148l/6690979.jpg,4.37,74378,\"manga, fantasy\",\"黒執事 I [Kuroshitsuji I]Yana Toboso, Tomo Kimura\"\r\n1328,1353,13206900,Marissa Meyer,Winter,https://images.gr-assets.com/books/1470057036l/13206900.jpg,4.49,100464,\"fantasy, romance\",\"The much-awaited series finale in the New York Times bestselling series\nthat began with 'Cinder'. This is not the fairy tale you remember - but\nit's one you won't forget\"\r\n1329,1354,51497,\"Robert Louis Stevenson, Robert Mighall\",The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror ,https://images.gr-assets.com/books/1327927453l/51497.jpg,3.94,80299,\"classics, horror\",\"The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror Robert Louis Stevenson, Robert Mighall\"\r\n1330,1356,3428935,Peter V. Brett,The Painted Man,https://images.gr-assets.com/books/1354571949l/3428935.jpg,4.27,64416,\"fantasy, fiction\",The Painted ManPeter V. Brett\r\n1331,1358,220968,Lee Child,One Shot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425164069l/220968.jpg,4.2,63335,\"thriller, fiction\",\"THE CASE IS A COMPLEX BATTLEFIELD; BUT, AS ALWAYS, IN BATTLE, REACHER IS AT\nHIS BEST.\"\r\n1332,1359,12893742,Rick Riordan,The Serpent's Shadow,https://images.gr-assets.com/books/1366227982l/12893742.jpg,4.28,82757,\"fantasy, fiction\",The Serpent's ShadowRick Riordan\r\n1333,1360,472343,Stephen King,Duma Key,https://images.gr-assets.com/books/1470266968l/472343.jpg,3.93,73807,\"horror, fiction\",Duma KeyStephen King\r\n1334,1361,1278752,Kate Morton,The Shifting Fog,https://images.gr-assets.com/books/1356452218l/1278752.jpg,3.93,69948,\"fiction, mystery\",\"Summer 1924: on the eve of a glittering Society party, by the lake of a\ngrand English country house, a young poet takes his life. The only\nwitnesses, sisters Hannah and Emmeline Hartford, will never speak to each\nother again. Winter 1999: Grace Bradley, 98, one-time house-maid of\nRiverton Manor, is visited by a young director making a film about the\npoet's suicide. Ghosts awaken and memories, long consigned to the dark\nreaches of Grace's mind, begin to sneak back through the cracks. A shocking\nsecret threatens to emerge; something history has forgotten but Grace never\ncould. Set as the war-shattered Edwardian summer surrenders to the decadent\ntwenties, The Shifting Fog is a thrilling mystery and a compelling love\nstory.\"\r\n1335,1363,91474,Jim Butcher,Proven Guilty,https://images.gr-assets.com/books/1345667469l/91474.jpg,4.41,75133,\"fantasy, fiction\",\"The only wizard in the Chicago phone book, Harry is given the task of\ninvestigating rumors of black magic in the Windy City, while, at the same\ntime, searching for some malevolent entities that feed on fear who have\nbeen set loose on Chicago. Reprint.\"\r\n1336,1364,17876,\"Fyodor Dostoyevsky, Andrew R. MacAndrew, Ben Marcus\",Записки из подполья,https://images.gr-assets.com/books/1411241656l/17876.jpg,4.17,65900,\"classics, fiction\",\"Collects several stories and features \"\"Notes from Underground,\"\" in which\nthe narrator leaves his life as an official and goes underground, where he\nmakes obsessive observations on utopianism and the irrational nature of\nhumankind.\"\r\n1337,1365,37380,Carson McCullers,The Heart is a Lonely Hunter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385265834l/37380.jpg,3.97,67643,\"classics, fiction\",\"A quiet, sensitive girl searches for beauty in a small, but damned Southern\ntown.\"\r\n1338,1366,16131484,Rick Yancey,The Infinite Sea,https://images.gr-assets.com/books/1395351812l/16131484.jpg,3.94,78314,\"fiction, romance\",\"The riveting follow-up to the New York Times bestselling The 5th Wave,\nhailed by Justin Cronin as “wildly entertaining.” How do you rid the Earth\nof seven billion humans? Rid the humans of their humanity. Surviving the\nfirst four waves was nearly impossible. Now Cassie Sullivan finds herself\nin a new world, a world in which the fundamental trust that binds us\ntogether is gone. As the 5th Wave rolls across the landscape, Cassie, Ben,\nand Ringer are forced to confront the Others' ultimate goal: the\nextermination of the human race. Cassie and her friends haven't seen the\ndepths to which the Others will sink, nor have the Others seen the heights\nto which humanity will rise, in the ultimate battle between life and death,\nhope and despair, love and hate. Praise for The 5th Wave “Just read\nit.”—Entertainment Weekly “A modern sci-fi masterpiece.”—USA Today “Wildly\nentertaining . . . I couldn't turn the pages fast enough.”—Justin\nCronin,The New York Times Book Review “Nothing short of amazing.”—Kirkus\nReviews (starred review) “Gripping!”—Publishers Weekly (starred review)\n“Everyone I trust is telling me to read this book.”—The Atlantic Wire\"\r\n1339,1367,43545,T.H. White,The Once and Future King,https://images.gr-assets.com/books/1338741283l/43545.jpg,4.08,76911,\"classics, fantasy\",\"Buck est un chien de Californie qui appartient au juge Miller. Buck est un\njour enlevé à son maître par l'aide-jardinier du juge, et vendu à un\ntrafiquant de chiens de traîneau . Bientôt confronté à l’âpreté de sa\nnouvelle condition, Buck doit trouver la force de survivre et s’adapter au\nfroid de l’Alaska et du Yukon : devant s’imposer aux autres chiens de la\nmeute, il apprend à voler de la viande ainsi qu’à se battre. Il est vendu\nsouvent, jusqu’à ce qu’il devienne le chien d’un maître respectable, John\nThornton. Mais lorsque son maître est tué par des « Indiens Yeehat», Buck\nredevient un loup et tue une partie des assassins. Rendu à la nature au\nmilieu du Wild, la grande forêt nord-canadienne, il se mêle à une meute de\nloups dont il devient le chef.\"\r\n1340,1368,34484,Terry Pratchett,Small Gods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390899426l/34484.jpg,4.27,72588,\"fantasy, fiction\",\"Lost in the chill deeps of space between the galaxies, it sails on forever,\na flat, circular world carried on the back of a giant turtle— Discworld —a\nland where the unexpected can be expected. Where the strangest things\nhappen to the nicest people. Like Brutha, a simple lad who only wants to\ntend his melon patch. Until one day he hears the voice of a god calling his\nname. A small god, to be sure. But bossy as Hell.\"\r\n1341,1369,368468,Christopher Paul Curtis,\"Bud, Not Buddy\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388377422l/368468.jpg,3.89,73000,\"fiction, classics\",\"AfterSchool Kidzlit is a program of reading and connected activities for\ngrades K to 8, with appealing books and easy-to-use leader's guides for:\ngames; talk topics; role-play; cool words; art, music, and drama; hands-on\nprojects; reading aloud, partner groups, and book clubs.\"\r\n1342,1371,1713426,Dan Ariely,Predictably Irrational: The Hidden Forces that Shape Our Decisions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255573980l/1713426.jpg,4.1,61496,\"psychology, nonfiction\",\"Why do our headaches persist after we take a one-cent aspirin but disappear\nwhen we take a fifty-cent aspirin? Why do we splurge on a lavish meal but\ncut coupons to save twenty-five cents on a can of soup? When it comes to\nmaking decisions in our lives, we think we're making smart, rational\nchoices. But are we? In this newly revised and expanded edition of the\ngroundbreaking New York Times bestseller, Dan Ariely refutes the common\nassumption that we behave in fundamentally rational ways. From drinking\ncoffee to losing weight, from buying a car to choosing a romantic partner,\nwe consistently overpay, underestimate, and procrastinate. Yet these\nmisguided behaviors are neither random nor senseless. They're systematic\nand predictable—making us predictably irrational.\"\r\n1343,1372,16031620,أحمد مراد,الفيل الأزرق,https://images.gr-assets.com/books/1485105416l/16031620.jpg,3.8,53187,\"fiction, mystery\",الفيل الأزرقأحمد مراد\r\n1344,1373,125404,Lynne Reid Banks,The Indian in the Cupboard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171903915l/125404.jpg,3.89,77046,\"fantasy, fiction\",\"A nine-year-old boy receives a plastic Indian, a cupboard, and a little key\nfor his birthday and finds himself involved in adventure when the Indian\ncomes to life in the cupboard and befriends him.\"\r\n1345,1374,7743175,\"Robert Jordan, Brandon Sanderson\",A Memory of Light,https://images.gr-assets.com/books/1336055749l/7743175.jpg,4.5,68410,\"fantasy, fiction\",\"A Memory of LightRobert Jordan, Brandon Sanderson\"\r\n1346,1375,12700353,Jesse Andrews,Me and Earl and the Dying Girl,https://images.gr-assets.com/books/1337216932l/12700353.jpg,3.58,82270,\"contemporary, fiction\",Me and Earl and the Dying GirlJesse Andrews\r\n1347,1376,7823678,Jeff Kinney,The Ugly Truth,https://images.gr-assets.com/books/1332046095l/7823678.jpg,4.16,68701,\"fiction, comics\",\"Katherine Heigl and Gerard Butler star in this wildly funny battle of the\nsexes. Abby (Heigl), a successful morning show producer, is looking for a\nlot in a man. Mike (Butler), her obnoxious TV star, knows men only want one\nthing. Determined to prove that she's not romantically challenged, Abby\ntakes Mike's advice during a promising new romance, but the unexpected\nresults will stun everyone.\"\r\n1348,1377,147074,Janet Evanovich,\"Janet Evanovich Three and Four Two-Book Set (Stephanie Plum, #3-4)\",https://images.gr-assets.com/books/1317792858l/147074.jpg,4.34,63691,\"mystery, fiction\",\"Collects the first three mysteries featuring Trenton, New Jersey, bounty\nhunter Stephanie Plum.\"\r\n1349,1378,25019,Simon Winchester,\"The Surgeon of Crowthorne: a tale of murder, madness & the love of words\",https://images.gr-assets.com/books/1407110918l/25019.jpg,3.84,71411,\"history, nonfiction\",\"The making of the Oxford English Dictionary was a monumental 50 year task\nrequiring thousands of volunteers. One of the keenest volunteers was a W C\nMinor who astonished everyone by refusing to come to Oxford to receive his\ncongratulations. In the end, James Murray, the OED's editor, went to\nCrowthorne in Berkshire to meet him. What he found was incredible - Minor\nwas a millionaire American civil war surgeon turned lunatic, imprisoned in\nBroadmoor Asylum for murder and yet who dedicated his entire cell-bound\nlife to work on the English language.\"\r\n1350,1379,13136,\"James Patterson, Andrew Gross\",2nd Chance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522906622l/13136._SY475_.jpg,4.01,68834,\"mystery, fiction\",\"The Women's Murder Club returns for another thrilling crime investigation.\nWill their skills be enough to take down a brutal madman? A brutal madman\nsprays bullets into a crowd of children leaving a San Francisco church.\nMiraculously-or was it intentionally?-only one person dies. Then an elderly\nblack woman is hung. Police homicide inspector Lindsay Boxer senses a\nconnection and together with medical examiner Claire, assistant D. A. Jill,\nand Chronicle reporter Cindy, finds a link that sends a chill through the\nentire nation. This killer's motives are unspeakable. In this \"\"inventive\"\"\ninstallment of the Women's Murder Club, James Patterson proves once again\nwhy he is the #1 master of the murder mystery (Sunday Times).\"\r\n1351,1380,15195,Art Spiegelman,The Complete Maus,https://images.gr-assets.com/books/1327354180l/15195.jpg,4.53,76785,\"nonfiction, fiction\",\"On the occasion of the twenty-fifth anniversary of its first publication,\nhere is the definitive edition of the book acclaimed as \"\"the most affecting\nand successful narrative ever done about the Holocaust\"\" (Wall Street\nJournal) and \"\"the first masterpiece in comic book history\"\" (The New\nYorker). The Pulitzer Prize-winning Maus tells the story of Vladek\nSpiegelman, a Jewish survivor of Hitler's Europe, and his son, a cartoonist\ncoming to terms with his father's story. Maus approaches the unspeakable\nthrough the diminutive. Its form, the cartoon (the Nazis are cats, the Jews\nmice), shocks us out of any lingering sense of familiarity and succeeds in\n\"\"drawing us closer to the bleak heart of the Holocaust\"\" (The New York\nTimes). Maus is a haunting tale within a tale. Vladek's harrowing story of\nsurvival is woven into the author's account of his tortured relationship\nwith his aging father. Against the backdrop of guilt brought by survival,\nthey stage a normal life of small arguments and unhappy visits. This\nastonishing retelling of our century's grisliest news is a story of\nsurvival, not only of Vladek but of the children who survive even the\nsurvivors. Maus studies the bloody pawprints of history and tracks its\nmeaning for all of us.\"\r\n1352,1381,27003,Jasper Fforde,The Eyre Affair,https://images.gr-assets.com/books/1445540555l/27003.jpg,3.92,85683,\"fantasy, fiction\",\"In a world where one can literally get lost in literature, Thursday Next, a\nSpecial Operative in literary detection, tries to stop the world's Third\nMost Wanted criminal from kidnapping characters, including Jane Eyre, from\nworks of literature.\"\r\n1353,1382,43808,\"Faye Perozich, Anne Rice, John Bolton, Daerick Gröss\",Anne Rice's The Vampire Lestat: The Graphic Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387712269l/43808.jpg,4.17,61842,\"horror, fantasy\",\"Anne Rice's The Vampire Lestat: The Graphic NovelFaye Perozich, Anne Rice, John Bolton, Daerick Gröss\"\r\n1354,1384,38210,\"Dalai Lama XIV, Howard C. Cutler\",The Art of Happiness: A Handbook for Living,https://images.gr-assets.com/books/1309287434l/38210.jpg,4.14,61498,\"psychology, spirituality\",\"An updated edition of a best-selling classic by the Nobel Peace Prize-\nwinning Tibetan spiritual leader shares counsel on how to dedicate one's\nlife to the pursuit of happiness while drawing on Buddhist principles in\norder to overcome obstacles and find inner peace.\"\r\n1355,1385,20819685,David Mitchell,The Bone Clocks,https://images.gr-assets.com/books/1398205538l/20819685.jpg,3.81,53151,\"fiction, fantasy\",The Bone ClocksDavid Mitchell\r\n1356,1386,5157,Anna Quindlen,Black and Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587872743l/5157._SY475_.jpg,3.86,67753,\"fiction, contemporary\",\"A nurse escapes her abusive husband, a New York policeman, taking their son\nwith her to Florida. She assumes a new identity and even finds romance, but\nthere is a price, the 10-year-old boy misses his father and she lives in\nconstant fear the father willfind them, which he does. The novel analyzes\nwhy abused women wait so long to make their break.\"\r\n1357,1388,5346,John Grisham,The Last Juror,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924294l/5346.jpg,3.85,63114,\"fiction, mystery\",\"Convicted of the murder of a young mother in a 1970 trial that ended with\nhis threat to seek revenge against the jurors, Danny Padgitt is paroled\nafter nine years in prison and returns to the scene of the trial in Ford\nCounty, Mississippi.\"\r\n1358,1389,22284,Chuck Palahniuk,Diary,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196823l/22284.jpg,3.6,58428,\"fiction, horror\",\"Working as a hotel maid despite her dreams of being an artist, Misty keeps\na diary as she sits by the side of her husband, comatose after a suicide\nattempt, which unlocks Misty's creative energies and causes her to paint\ncompulsively.\"\r\n1359,1390,11003,Janet Evanovich,Eleven on Top,https://images.gr-assets.com/books/1166394806l/11003.jpg,4.15,84363,\"mystery, fiction\",\"Hoping to discontinue her career as a bounty hunter for something safer,\nStephanie Plum is inadvertently drawn into a case that is complicated by\nher tangled love life, her chaotic family, and her penchant for wrecking\ncars, in a new adventure by the author of Ten Big Ones. Reprint.\"\r\n1360,1391,28195,\"Cornelia Funke, Anthea Bell\",Tintenblut,https://images.gr-assets.com/books/1395358683l/28195.jpg,3.91,82291,\"fantasy, romance\",\"Der Zauber von äTintenherzä lässt Meggie nicht los. Eines Tages ist es so\nweit: Gemeinsam mit Farid geht Meggie in die Tintenwelt, dort will sie den\nWeglosen Wald sehen, den Speckfürsten, den Schönen Cosimo, den Schwarzen\nPrinzen und seine Bären! Ab 10.\"\r\n1361,1392,599,Chuck Klosterman,\"Sex, Drugs, and Cocoa Puffs: A Low Culture Manifesto\",https://images.gr-assets.com/books/1380742001l/599.jpg,3.75,56548,\"nonfiction, music\",\"Explores a range of modern cultural phenomenon, including Internet\npornography, tribute bands, baseball rivalries, and reality television.\"\r\n1362,1393,30933,Evelyn Waugh,Brideshead Revisited: The Sacred and Profane Memories of Captain Charles Ryder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438579340l/30933._SY475_.jpg,3.99,69087,\"classics, fiction\",Brideshead Revisited: The Sacred and Profane Memories of Captain Charles RyderEvelyn Waugh\r\n1363,1394,91475,Jim Butcher,White Night,https://images.gr-assets.com/books/1309552288l/91475.jpg,4.41,73534,\"fantasy, mystery\",\"Assigned to investigate a series of deaths of magic practitioners, all of\nwhom lacked the ability to become full-fledged wizards, professional\nChicago wizard Harry Dresden is shocked when the evidence points to his\nhalf-brother Thomas as the killer, until he uncovers a conspiracy within\nthe White Council of Wizards that threatens both him and his family.\nReprint.\"\r\n1364,1395,18498569,Jessie Burton,The Miniaturist,https://images.gr-assets.com/books/1392415313l/18498569.jpg,3.58,56344,\"fiction, mystery\",The MiniaturistJessie Burton\r\n1365,1396,259836,\"Margaret Weis, Tracy Hickman\",Dragons of Autumn Twilight,https://images.gr-assets.com/books/1390668127l/259836.jpg,4.03,76219,\"fantasy, fiction\",\"Dragons of Autumn TwilightMargaret Weis, Tracy Hickman\"\r\n1366,1397,37586,Eoin Colfer,The Lost Colony,https://images.gr-assets.com/books/1360177158l/37586.jpg,4.01,103844,\"fantasy, paranormal\",The Lost ColonyEoin Colfer\r\n1367,1398,493456,Scott Westerfeld,Extras,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187650l/493456.jpg,3.59,85873,\"fiction, fantasy\",ExtrasScott Westerfeld\r\n1368,1399,144349,John Flanagan,The Burning Bridge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440471172l/144349._SY475_.jpg,4.28,74156,\"fantasy, fiction\",\"Will is forced to overcome his fear of Wargals, the foot soldiers of rebel\nwarlord Morgarath, as Araluen's army prepares to battle Morgarath's forces.\"\r\n1369,1400,16054217,Deborah Harkness,The Book of Life,https://images.gr-assets.com/books/1389281784l/16054217.jpg,4.15,63027,\"fantasy, fiction\",\"The #1 New York Times bestselling series finale and sequel to A Discovery\nof Witches and Shadow of Night Fans of the All Souls Trilogy sent this\nhighly anticipated finale straight to #1 on the New York Times hardcover\nbestseller list. Bringing the series' magic and suspense to a deeply\nsatisfying conclusion, The Book of Life is poised to become an even bigger\nphenomenon in paperback. Diana and Matthew time-travel back from\nElizabethan London to make a dramatic return to the present?facing new\ncrises and old enemies. At Matthew's ancestral home, Sept-Tours, they\nreunite with the beloved cast of characters from A Discovery of\nWitches?with one significant exception. But the real threat to their future\nhas yet to be revealed, and when it is, the search for Ashmole 782 and its\nmissing pages takes on even more urgency.\"\r\n1370,1401,615570,Julia Cameron,The Artist's Way: A Spiritual Path to Higher Creativity,https://images.gr-assets.com/books/1440952332l/615570.jpg,3.89,66049,\"art, nonfiction\",\"Presents a twelve-week program intended to increase creativity by capturing\nthe creative energy of the universe.\"\r\n1371,1402,407429,\"Jon Scieszka, Lane Smith\",The Stinky Cheese Man and Other Fairly Stupid Tales,https://images.gr-assets.com/books/1488588399l/407429.jpg,4.2,78487,\"fiction, fantasy\",Madcap revisions of familiar fairy tales.\r\n1372,1403,6587879,Joe Hill,Horns,https://images.gr-assets.com/books/1402958805l/6587879.jpg,3.92,66287,\"horror, fiction\",\"The New York Times bestselling author of Heart-Shaped Box returns with a\nrelentless supernatural thriller that runs like Hell on wheels . . . Merrin\nWilliams is dead, slaughtered under inexplicable circumstances, leaving her\nbeloved boyfriend Ignatius Perrish as the only suspect. On the first\nanniversary of Merrin's murder, Ig spends the night drunk and doing awful\nthings. When he wakes the next morning he has a thunderous hangover . . .\nand horns growing from his temples. Ig possesses a terrible new power to go\nwith his terrible new look—a macabre gift he intends to use to find the\nmonster who killed his lover. Being good and praying for the best got him\nnowhere. Now it's time for revenge . . . It's time the devil had his due. .\n. .\"\r\n1373,1404,10414941,Robert K. Massie,Catherine the Great: Portrait of a Woman,https://images.gr-assets.com/books/1403395276l/10414941.jpg,3.91,66591,\"history, biography\",\"Presents a reconstruction of the eighteenth-century empress's life that\ncovers her efforts to engage Russia in the cultural life of Europe, her\ncreation of the Hermitage, and her numerous scandal-free romantic affairs.\"\r\n1374,1405,6080337,Margaret Atwood,The Year of the Flood,https://images.gr-assets.com/books/1327906873l/6080337.jpg,4.05,68597,\"fiction, fantasy\",\"When a natural disaster predicted by God's Gardeners leader Adam One\nobliterates most human life, two survivors trapped inside respective\nestablishments that metaphorically represent paradise and hell wonder if\nany of their loved ones have survived, while the outside world is overcome\nby gene-spliced life forms. Reprint. A best-selling novel.\"\r\n1375,1406,6668467,Kristin Hannah,Winter Garden,https://images.gr-assets.com/books/1265932201l/6668467.jpg,4.13,66577,\"fiction, contemporary\",Winter GardenKristin Hannah\r\n1376,1407,5356,John Grisham,The King of Torts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388260347l/5356.jpg,3.67,61835,\"fiction, mystery\",\"Washed-up public defender Clay Carter's latest case, a routine street\nkilling, takes an unexpected turn when he discovers evidence of a\nconspiracy involving a large drug company and a lawsuit with a huge\npotential settlement. Reprint. 35,000 first printing.\"\r\n1377,1408,711901,\"Marcus Luttrell, Patrick Robinson\",Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10,https://images.gr-assets.com/books/1344265535l/711901.jpg,4.34,46551,\"history, biography\",\"Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10Marcus Luttrell, Patrick Robinson\"\r\n1378,1409,3320520,Chetan Bhagat,The 3 Mistakes of My Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216107646l/3320520.jpg,2.97,53331,\"fiction, romance\",\"Novel about a young boy in Ahmedabad, who opens a cricket shop.\"\r\n1379,1410,16328,Agatha Christie,The Murder of Roger Ackroyd,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389734015l/16328.jpg,4.2,71354,\"mystery, fiction\",\"Roger Ackroyd knew too much. He knew that the woman he loved had poisoned\nher brutal first husband. He suspected also that someone had been\nblackmailing her. Then, tragically, came the news that she had taken her\nown life with a drug overdose. But the evening post brought Roger one last\nfatal scrap of information. Unfortunately, before he could finish reading\nthe letter, he was stabbed to death.\"\r\n1380,1411,15622,Richard Wright,Native Son ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440820866l/15622._SY475_.jpg,3.96,66194,\"fiction, classics\",\"Right from the start, Bigger Thomas had been headed for jail. It could have\nbeen for assault or petty larceny; by chance, it was for murder and rape.\nNative Son tells the story of this young black man caught in a downward\nspiral after he kills a young white woman in a brief moment of panic. Set\nin Chicago in the 1930s, Wright's powerful novel is an unsparing reflection\non the poverty and feelings of hopelessness experienced by people in inner\ncities across the country and of what it means to be black in America.\"\r\n1381,1412,3754016,Brent Weeks,Shadow's Edge,https://images.gr-assets.com/books/1327881435l/3754016.jpg,4.27,66390,\"fantasy, fiction\",Shadow's EdgeBrent Weeks\r\n1382,1413,11594257,Veronica Rossi,Under the Never Sky,https://images.gr-assets.com/books/1356591725l/11594257.jpg,4.01,74029,\"romance, fantasy\",\"Fighting to survive in a ravaged world, a Dweller and a Savage form an\nunlikely alliance in New York Times bestselling author Veronica Rossi's\n\"\"unforgettable dystopian masterpiece\"\" (Examiner.com). Exiled from her home,\nthe enclosed city of Reverie, Aria knows her chances of surviving in the\nouter wasteland—known as The Death Shop—are slim. Then Aria meets an\nOutsider named Perry. He's wild—a savage—and her only hope of staying\nalive. A hunter for his tribe in a merciless landscape, Perry views Aria as\nsheltered and fragile—everything he would expect from a Dweller. But he\nneeds Aria's help too; she alone holds the key to his redemption. In\nalternating chapters told in Aria's and Perry's voices, Under the Never Sky\nsubtly and powerfully captures the evolving relationship between these\ncharacters and sweeps readers away to a harsh but often beautiful world.\nContinuing with Through the Ever Night and concluding with Into the Still\nBlue, the Under the Never Sky trilogy has already been embraced by readers\nin twenty-six countries and been optioned for film by Warner Bros. Supports\nthe Common Core State Standards\"\r\n1383,1414,3464,Nicholas Sparks,True Believer,https://images.gr-assets.com/books/1385739017l/3464.jpg,3.8,62840,\"romance, fiction\",True BelieverNicholas Sparks\r\n1384,1415,10127019,Eric Ries,The Lean Startup‎,https://images.gr-assets.com/books/1333576876l/10127019.jpg,4.04,86284,\"business, nonfiction\",\"Outlines a revisionist approach to management while arguing against common\nperceptions about the inevitability of startup failures, explaining the\nimportance of providing genuinely needed products and services as well as\norganizing a business that can adapt to continuous customer feedback.\"\r\n1385,1416,8709523,Richelle Mead,The Golden Lily,https://images.gr-assets.com/books/1360599818l/8709523.jpg,4.36,86929,\"fantasy, paranormal\",\"At a boarding school in Palm Springs, California, Sydney must protect the\nvampires-in-hiding from the threat of other humans, a task made harder by\nforbidden romances, spirit bonds, and the threat of Strigoi moving ever\ncloser.\"\r\n1386,1417,426775,Lauren Weisberger,Chasing Harry Winston,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347247896l/426775.jpg,3.32,63342,\"fiction, romance\",\"The bestselling author of \"\"The Devil Wears Prada\"\" and \"\"Everyone Worth\nKnowing\"\" is back with a delicious new novel about a trio of best\ngirlfriends in Manhattan which makes a dramatic pact to change each woman's\nlife in one year.\"\r\n1387,1418,44688,David Eddings,Magician's Gambit,https://images.gr-assets.com/books/1315276590l/44688.jpg,4.13,69616,\"fantasy, fiction\",\"Princess Ce'Nedra joins the young farm boy, Garion, in the struggle to find\nthe magical Orb and defeat the power of an evil sorcerer\"\r\n1388,1420,767171,William L. Shirer,The Rise and Fall of the Third Reich: A History of Nazi Germany,https://images.gr-assets.com/books/1331223772l/767171.jpg,4.15,64391,\"history, nonfiction\",\"The classic history of Adolph Hitler's rise to power and his dramatic\ndefeat\"\r\n1389,1421,10073,Nick Hornby,A Long Way Down,https://images.gr-assets.com/books/1467861525l/10073.jpg,3.41,59843,\"fiction, contemporary\",\"Meeting on New Year's Eve on the roof of Topper's House, a London\ndestination infamous as a last stop for suicidal people, a television talk-\nshow host, a musician, a teenage girl, and a mother share the stories about\ntheir circumstances and decisions. By the author of How to Be Good.\nReader's Guide available. Reprint. 500,000 first printing.\"\r\n1390,1422,106134,\"Jeff Smith, Steve Hamaker\",Out from Boneville,https://images.gr-assets.com/books/1327921261l/106134.jpg,4.16,62330,\"fantasy, comics\",\"The adventure starts when cousins Fone Bone, Phoney Bone, and Smiley Bone\nare run out of Boneville and later get separated and lost in the\nwilderness, meeting monsters and making friends as they attempt to return\nhome. Simultaneous.\"\r\n1391,1423,10619,Stephen King,Rose Madder,https://images.gr-assets.com/books/1375870513l/10619.jpg,3.66,70921,\"horror, fiction\",\"The #1 national bestseller about a woman who escapes an abusive marriage is\n“one of Stephen King’s most engrossing horror novels. Relentlessly paced\nand brilliantly orchestrated...fueled by an air of danger immediate and\noverwhelming” (Publishers Weekly). \"\"What woke her up was a single drop of\nblood, no larger than a dime.\"\" After surviving fourteen years of hell in a\nviolently abusive marriage, Rosie Daniels finally summons the courage to\nflee for her life. But leaving her husband, Norman, for a new city and a\nnew start is a very daunting prospect. It's hard for Rosie not to keep\nlooking over her shoulder, and with good reason—Norman's a police officer\nwith the instincts of a predator, a force of relentless terror and\nsavagery…a man almost mythic in his monstrosity. He's very good at finding\npeople, even if he is losing his mind. Rosie’s only hope for salvation may\nlie in a far more dangerous place, where she must become her own myth and\nthe woman she never knew she could be.... \"\"Riveting, engrossing . . .\npacked with suspense.\"\" —People \"\"Relentlessly paced and brilliantly\norchestrated, this cat-and-mouse game of a novel is one of King's most\nengrossing and topical horror stories.\"\" —Publishers Weekly (starred review)\n\"\"Breathlessly paced suspense and terror . . . horrific thrills. . . .it's\nKing's best!\"\" —Miami Herald\"\r\n1392,1424,220969,Lee Child,\"Die Trying (Jack Reacher, #2)\",https://images.gr-assets.com/books/1377633008l/220969.jpg,4,62128,\"fiction, thriller\",\"\"\"Featuring Jack Reacher, hero of the blockbuster movie starring Tom Cruise.\n/b> /b>Jack Reacher, alone, strolling nowhere. b> Chicago street in bright\nsunshine. A young woman, struggling on crutches. He offers her a steadying\narm. And turns to see a handgun aimed at his stomach. Chained in a dark van\nracing across America, Reacher doesn't know why they've been kidnapped. The\nwoman claims to be FBI. She's certainly tough enough. But at their remote\ndestination, will raw courage be enough to overcome the hopeless odds?\"\"\"\r\n1393,1425,10757833,\"Kami Garcia, Margaret Stohl, Paz Pruneda\",Beautiful Chaos,https://images.gr-assets.com/books/1327878503l/10757833.jpg,3.95,69709,\"fantasy, paranormal\",\"Beautiful ChaosKami Garcia, Margaret Stohl, Paz Pruneda\"\r\n1394,1426,10913,Jodi Picoult,Keeping Faith,https://images.gr-assets.com/books/1407111555l/10913.jpg,3.79,62405,\"fiction, contemporary\",\"When the marriage of Mariah White and her cheating husband, Colin, turns\nugly and disintegrates, their seven-year-old daughter, Faith, is there to\nwitness it all. In the aftermath of a rapid divorce, Mariah falls into a\ndeep depression—and suddenly Faith, a child with no religious background\nwhatsoever, hears divine voices, starts reciting biblical passages, and\ndevelops stigmata. And when the miraculous healings begin, mother and\ndaughter are thrust into the volatile center of controversy and into the\nheat of a custody battle—trapped in a mad media circus that threatens what\nlittle stability the family has left. In Keeping Faith, #1 New York Times\nbestselling author Jodi Picoult—one of the most powerful writers in\ncontemporary fiction—brilliantly examines belief, miracles, and the complex\ncore of family.\"\r\n1395,1427,153025,Joe Hill,Heart-Shaped Box,https://images.gr-assets.com/books/1328043955l/153025.jpg,3.82,65005,\"horror, fiction\",Heart-Shaped BoxJoe Hill\r\n1396,1428,11254250,Jeff Kinney,Cabin Fever,https://images.gr-assets.com/books/1350396037l/11254250.jpg,4.21,63347,\"fiction, comics\",\"The hilarious, award-winning and global bestseller Diary of a Wimpy Kid:\nCabin Fever is now in paperback! The sixth instalment in the Diary of a\nWimpy Kid series - it's perfect for readers of 8+ and also reluctant\nreaders. And you can also discover Greg on the big screen in any one of the\nthree Wimpy Kid Movie box office smashes.Greg Heffley is in big trouble.\nSchool property has been damaged and Greg is the prime suspect. But the\ncrazy thing is, he's innocent! Or at least sort of.The authorities are\nclosing in, but then a surprise blizzard hits and the Heffley family is\ntrapped indoors. Greg knows that when the snow melts he is going to have to\nface the music but could any punishment be worse than being stuck inside\nwith your family?Praise for Jeff Kinney:'The world has gone crazy for Jeff\nKinney's Diary of a Wimpy Kid' - Sun'Kinney is right up there with J K\nRowling as one of the bestselling children's authors on the planet' -\nIndependent'The most hotly anticipated children's book of the year is here\n- Diary of a Wimpy Kid' - Big Issue'Hilarious' - TelegraphJeff Kinney is an\nonline game developer and designer, and a #1 New York Times bestselling\nauthor. Jeff has been named one of Time magazine's 100 Most Powerful People\nin the World. Jeff is also creator of Poptropica.com, which was names one\nof Time magazine's 50 Best Websites. He lives with his family in\nMassachusetts, USA.\"\r\n1397,1430,29547,Lauren Weisberger,Everyone Worth Knowing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924325l/29547.jpg,3.39,59932,\"fiction, romance\",Everyone Worth KnowingLauren Weisberger\r\n1398,1431,7996,Brian Jacques,Redwall,https://images.gr-assets.com/books/1327877368l/7996.jpg,4.11,73918,\"fantasy, fiction\",\"When the peaceful life of Redwall Abbey is shattered by the arrival of the\nevil rat Cluny and his hordes, Matthias, a young mouse, vows to find the\nlegendary sword which will help Redwall's inhabitants destroy the enemy.\"\r\n1399,1432,30474,\"Karl Marx, Friedrich Engels, Gareth Stedman Jones\",Manifest der Kommunistischen Partei,https://images.gr-assets.com/books/1420003664l/30474.jpg,3.51,56464,\"philosophy, classics\",\"The political tract in which Marx presented the core of his philosophy and\nrevolutionary program, with an introduction analyzing its significance to\nthe realities of today and to Marx's own times.\"\r\n1400,1433,28187230,Ruth Ware,The Woman in Cabin 10,https://images.gr-assets.com/books/1465878007l/28187230.jpg,3.67,90541,\"mystery, fiction\",\"When travel journalist Lo Blacklock is invited on a boutique luxury cruise\naround the Norwegian fjords, it seems like a dream career opportunity. But\nthe trip takes a nightmarish turn when she wakes in the middle of the night\nto hear a body being thrown overboard, only to discover that no one has\nbeen reported missing from the boat.\"\r\n1401,1434,38296,James Fenimore Cooper,The Last of the Mohicans: A Narrative of 1757,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199654l/38296.jpg,3.69,67632,\"classics, fiction\",The Last of the Mohicans: A Narrative of 1757James Fenimore Cooper\r\n1402,1435,228560,William Styron,Sophie's Choice,https://images.gr-assets.com/books/1356714742l/228560.jpg,4.18,66923,\"fiction, classics\",\"Three stories are told: a young Southerner wants to become a writer; a\nturbulent love-hate affair between a brilliant Jew and a beautiful Polish\nwoman; and of an awful wound in that woman's past--one that impels both\nSophie and Nathan toward destruction.\"\r\n1403,1436,9417,Sophie Kinsella,Shopaholic and Sister,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390204703l/9417.jpg,3.64,69007,\"fiction, contemporary\",\"Returning to London after her ten-month honeymoon, Becky Bloomwood Brandon\nfinds herself depressed by a lack of money, a search for a job, and her\nbest friend Suze's new best friend, until she discovers that she has a long\nlost sister--who just happens to hate shopping. Reprint.\"\r\n1404,1437,7747064,Julie Kagawa,The Iron Daughter,https://images.gr-assets.com/books/1271790654l/7747064.jpg,4.13,93340,\"fantasy, romance\",The Iron DaughterJulie Kagawa\r\n1405,1438,103610,Bruce H. Wilkinson,The Prayer of Jabez:  Breaking Through to the Blessed Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171499832l/103610.jpg,3.92,57468,\"christian, religion\",The Prayer of Jabez:  Breaking Through to the Blessed LifeBruce H. Wilkinson\r\n1406,1439,12401556,Karen Thompson Walker,The Age of Miracles,https://images.gr-assets.com/books/1342487370l/12401556.jpg,3.64,61296,\"fiction, fantasy\",\"Imagines the coming-of-age story of young Julia, whose world is thrown into\nupheaval when it is discovered that the Earth's rotation has suddenly begun\nto slow, posing a catastrophic threat to all life.\"\r\n1407,1440,1255781,Mitch Albom,Have a Little Faith: A True Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348911800l/1255781.jpg,4.16,60002,\"nonfiction, fiction\",\"Relates the author's efforts to eulogize a beloved rabbi who is near death,\nwhile at the same time befriending a Detroit pastor who gives spiritual\nguidance to the poor and homeless, and describes how observing these two\ndifferent religious leaders rekindled his own faith.\"\r\n1408,1441,5084,\"Julia Child, Alex Prud'Homme\",My Life in France,https://images.gr-assets.com/books/1395564378l/5084.jpg,4.16,63100,\"memoir, nonfiction\",\"A memoir begun just months before Child's death describes the legendary\nfood expert's years in Paris, Marseille, and Provence and her journey from\na young woman from Pasadena who cannot cook or speak any French to the\npublication of her legendary Mastering cookbooks and her winning the hearts\nof America as \"\"The French Chef.\"\" Reprint. 175,000 first printing.\"\r\n1409,1442,21844019,Graeme Simsion,The Rosie Effect,https://images.gr-assets.com/books/1426407990l/21844019.jpg,3.56,27308,\"contemporary, fiction\",The Rosie EffectGraeme Simsion\r\n1410,1443,11827808,Amish Tripathi,The Secret of the Nagas.,https://images.gr-assets.com/books/1308930273l/11827808.jpg,3.98,50158,\"fiction, fantasy\",\"The hunt is on. The sinister Naga warrior has killed his friend Brahaspati\nand now stalks his wife Sati. Shiva, the Tibetan immigrant who is the\nprophesied destroyer of evil, will not rest till he find his demonic\nadversary.\"\r\n1411,1444,38501,Charles Bukowski,Ham on Rye,https://images.gr-assets.com/books/1388195001l/38501.jpg,4.16,54140,\"fiction, classics\",\"In what is widely hailed as the best of his many novels, Charles Bukowski\ndetails the long, lonely years of his own hardscrabble youth in the raw\nvoice of alter ego Henry Chinaski. From a harrowingly cheerless childhood\nin Germany through acne-riddled high school years and his adolescent\ndiscoveries of alcohol, women, and the Los Angeles Public Library's\ncollection of D. H. Lawrence, Ham on Rye offers a crude, brutal, and\nsavagely funny portrait of an outcast's coming-of-age during the desperate\ndays of the Great Depression.\"\r\n1412,1445,331920,Wendelin Van Draanen,Flipped,https://images.gr-assets.com/books/1388554293l/331920.jpg,3.94,79264,\"romance, fiction\",\"In alternating chapters, two teenagers describe how their feelings about\nthemselves, each other, and their families have changed over the years.\"\r\n1413,1446,6486483,\"Travis Bradberry, Jean Greaves, Patrick Lencioni\",Emotional Intelligence 2.0,https://images.gr-assets.com/books/1328765863l/6486483.jpg,3.81,53384,\"psychology, business\",\"Presents a step-by-step guide for increasing emotional intelligence through\nfour core principles: self-awareness, self-management, social awareness,\nand relationsip management.\"\r\n1414,1447,29291,Robert McCloskey,Make Way for Ducklings,https://images.gr-assets.com/books/1362580777l/29291.jpg,4.21,70704,\"classics, fiction\",Make Way for DucklingsRobert McCloskey\r\n1415,1448,67035,\"Douglas Preston, Lincoln Child\",Relic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389576748l/67035.jpg,4.01,68011,\"horror, thriller\",\"Relic: The #1 New York Times bestselling thriller by Douglas Preston's and\nLincoln Child, with more than one million copies sold to date Just days\nbefore a massive exhibition opens at the popular New York Museum of Natural\nHistory, visitors are being savagely murdered in the museum's dark hallways\nand secret rooms. Autopsies indicate that the killer cannot be human... But\nthe museum's directors plan to go ahead with a big bash to celebrate the\nnew exhibition, in spite of the murders. Museum researcher Margo Green must\nfind out who--or what--is doing the killing. But can she do it in time to\nstop the massacre?\"\r\n1416,1449,28,Bill Bryson,Notes from a Small Island,https://images.gr-assets.com/books/1479653223l/28.jpg,3.91,66947,\"travel, nonfiction\",\"\"\"Suddenly, in the space of a moment, I realized what it was that I loved\nabout Britain-which is to say, all of it.\"\" After nearly two decades spent\non British soil, Bill Bryson-bestsellingauthor of The Mother Tongue and\nMade in America-decided to returnto the United States. (\"\"I had recently\nread,\"\" Bryson writes, \"\"that 3.7 million Americans believed that they had\nbeen abducted by aliens at one time or another,so it was clear that my\npeople needed me.\"\") But before departing, he set out ona grand farewell\ntour of the green and kindly island that had so long been his home. Veering\nfrom the ludicrous to the endearing and back again, Notes from a Small\nIsland is a delightfully irreverent jaunt around the unparalleled floating\nnation that has produced zebra crossings, Shakespeare, Twiggie Winkie's\nFarm, and places with names like Farleigh Wallop and Titsey. The result is\nan uproarious social commentary that conveys the true glory of Britain,\nfrom the satiric pen of an unapologetic Anglophile. \"\"Suddenly, in the space\nof a moment, I realized what it was that I loved about Britain-which is to\nsay, all of it.\"\" After nearly two decades spent on British soil, Bill\nBryson-bestselling author of ,i>The Mother Tongue and Made in America-\ndecided to return to the United States. (\"\"I had recently read,\"\" Bryson\nwrites, \"\"that 3.7 million Americans believed that they had been abducted by\naliens at one time or another, so it was clear that my people needed me.\"\")\nBut before departing, he set out on a grand farewell tour of the green and\nkindly island that had so long been his home. Veering from the ludicrous to\nthe endearing and back again, Notes from a Small Island is a delightfully\nirreverent jaunt around the unparalleled floating nation that has produced\nzebra crossings, Shakespeare, Twiggie Winkie's Farm, and places with names\nlike Farleigh Wallop and Titsey. The result is an uproarious social\ncommentary that conveys the true glory of Britain, from the satiric pen of\nan unapologetic Anglophile.\"\r\n1417,1450,927979,Jim Butcher,Small Favor,https://images.gr-assets.com/books/1298085176l/927979.jpg,4.43,70029,\"fantasy, fiction\",\"Chicago wizard Harry Dresden's calm life is interrupted when Mab, monarch\nof the Winter Court of the Sidhe, calls in an old favor and sends Harry on\na quest that leaves him trapped between a deadly foe and an untrustworthy\nally.\"\r\n1418,1451,6465707,Robert Kirkman,The Walking Dead Compendium Volume 1,https://images.gr-assets.com/books/1449865699l/6465707.jpg,4.43,57764,\"comics, fiction\",\"\"\"An epidemic of apocalyptic proportions has swept the globe causing the\ndead to rise and feed on the living. In a matter of months society has\ncrumbled-- no government, no grocery stores, no mail delivery, no cable TV.\nIn a world ruled by the dead, we are forced to finally start living\"\"--P.\n[4] of cover.\"\r\n1419,1452,85990,Shannon Hale,Princess Academy,https://images.gr-assets.com/books/1349410861l/85990.jpg,4.01,82470,\"fantasy, fiction\",\"Miri lives on a mountain where, for generations, her ancestors have lived a\nsimple life. Then word comes that the king's priests have divined her\nvillage the home of the future princess. In a year's time, the prince will\nchoose his bride from among the village girls. The king's ministers set up\nan academy on the mountain, and every teenage girl must attend and learn\nhow to become a princess. Soon Miri finds herself confronted with a harsh\nacademy mistress, bitter competition among the girls, and her own\nconflicting desires. Winning the contest could give her everything she ever\nwanted-but it would mean leaving her home and family behind. Packaged with\na fresh cover, this timelessly charming, award-winning story from best-\nselling author Shannon Hale is sure to enchant a whole new generation of\nreaders.\"\r\n1420,1453,18692431,\"Nicola Yoon, David Yoon\",\"Everything, Everything\",https://images.gr-assets.com/books/1450515891l/18692431.jpg,4.11,132552,\"contemporary, romance\",\"Everything, EverythingNicola Yoon, David Yoon\"\r\n1421,1454,7714,George Bernard Shaw,Pygmalion,https://images.gr-assets.com/books/1453757285l/7714.jpg,3.9,70079,\"classics, fiction\",\"One of George Bernard Shaw's best-known plays, Pygmalion was a rousing\nsuccess on the London and New York stages, an entertaining motion picture\nand a great hit with its musical version, My Fair Lady. An updated and\nconsiderably revised version of the ancient Greek legend of Pygmalion and\nGalatea, the 20th-century story pokes fun at the antiquated British class\nsystem. In Shaw's clever adaptation, Professor Henry Higgins, a linguistic\nexpert, takes on a bet that he can transform an awkward cockney flower\nseller into a refined young lady simply by polishing her manners and\nchanging the way she speaks. In the process of convincing society that his\ncreation is a mysterious royal figure, the Professor also falls in love\nwith his elegant handiwork. The irresistible theme of the emerging\nbutterfly, together with Shaw's brilliant dialogue and splendid skills as a\nplaywright, have made Pygmalion one of the most popular comedies in the\nEnglish language. A staple of college drama courses, it is still widely\nperformed.\"\r\n1422,1455,13438524,Barbara Kingsolver,Flight Behavior,https://images.gr-assets.com/books/1352212134l/13438524.jpg,3.75,57078,\"fiction, contemporary\",\"New York Times Notable Book Washington Post Best Book Of The Year Amazon's\nTop 100: Editor's Choice Usa Today Best Book Of The Year Dellarobia Turnbow\nis a restless farm wife who gave up her own plans when she accidentally\nbecame pregnant at seventeen. Now, after a decade of domestic disharmony on\na failing farm, she seeks momentary escape through an obsessive flirtation\nwith a younger man. She hikes up a mountain road behind her house toward a\nsecret tryst, but instead encounters a shocking sight: a silent, forested\nvalley filled with what looks like a lake of fire. She can only understand\nit as a cautionary miracle, but it sparks a raft of other explanations from\nscientists, religious leaders, and the media. The bewildering emergency\ndraws rural farmers into unexpected acquaintance with urbane journalists,\nopportunists, sightseers, and a striking biologist with his own stake in\nthe outcome. As the community lines up to judge the woman and her miracle,\nDellarobia confronts her family, her church, her town, and a larger world,\nin a flight toward truth that could undo all she has ever believed.\"\r\n1423,1456,2146957,Brandon Mull,Grip of the Shadow Plague,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607686l/2146957.jpg,4.26,65638,\"fantasy, fiction\",\"For centuries mystical creatures of all description were gathered into a\nhidden refuge called Fablehaven to prevent their extinction. The sanctuary\nsurvives today as one of the last strongholds of true magic. Enchanting?\nAbsolutely. Exciting? You bet. Safe? Well, actually, quite the opposite.\nKendra and her brother, Seth, have no idea that their grandfather is the\ncurrent caretaker of Fablehaven. Inside the gated woods, ancient laws keep\nrelative order among greedy trolls, mischievous satyrs, plotting witches,\nspiteful imps, and jealous fairies. However, when the rules get broken --\nSeth is a bit too curious and reckless for his own good -- powerful forces\nof evil are unleashed, and Kendra and her brother face the greatest\nchallenge of their lives. To save their family, Fablehaven, and perhaps\neven the world, Kendra and Seth must find the courage to do what they fear\nmost.\"\r\n1424,1457,363752,Helen Fielding,Bridget Jones: The Edge of Reason,https://images.gr-assets.com/books/1395233618l/363752.jpg,3.53,73093,\"fiction, romance\",\"The sequel to Bridget Jones' Diary continues to follow single woman Bridget\non her quest for love, sex, and truth from the cappuccino bars of London to\nthe beaches of Thailand. Reprint.\"\r\n1425,1458,3388,Louis de Bernières,Captain Corelli's Mandolin,https://images.gr-assets.com/books/1479680795l/3388.jpg,3.95,57583,\"contemporary, history\",\"A captivating and mystical story of life and love during the wartime\nItalian occupation of the isolated Greek island of Cephallonia.\nExtravagant, inventive, emotionally sweeping, this rich and lyrical,\nheartbreaking and hilarious novel has been widely hailed as a classic. Set\non the peaceful island of Cephallonia, just as the horrors of World War II\nreach its remote shores, Corelli's Mandolin is \"\"an exuberant mixture of\nhistory and romance, written with a wit that is incandescent\"\" (Los Angeles\nTimes Book Review). Corelli's Mandolin is the story of a timeless place\nthat one day wakes up to find itself in the jaws of history. The place is\nthe Greek island of Cephallonia, where gods once dabbled in the affairs of\nmen and the local saint periodically rises from his sarcophagus to cure the\nmad. Then the tide of World War II rolls onto the island's shores in the\nform of the conquering Italian army. Caught in the midst of the occupation\nare Pelagia, a willful, beautiful young woman, and the two suitors vying\nfor her love and affection: Mandras, a gentle fisherman turned ruthless,\nmurderous guerilla, and the charming, mandolin-playing Captain Corelli, a\nreluctant officer of the Italian garrison on the island. Rich with\nloyalties and betrayals, and set against a landscape where the factual\nblends seamlessly with the fantastic, Corelli's Mandolin is a passionate\nnovel as rich in ideas as it is genuinely moving.\"\r\n1426,1459,15924,Nicholas Sparks,At First Sight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409355671l/15924.jpg,3.81,62219,\"romance, fiction\",At First SightNicholas Sparks\r\n1427,1460,24,Bill Bryson,Down Under,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176242l/24.jpg,4.05,58688,\"travel, nonfiction\",\"It is the driest, flattest, hottest, most desiccated, infertile and\nclimatically aggressive of all the inhabited continents and still Australia\nteems with life - a large portion of it quite deadly. In tact, Australia\nhas more things that can kill you in a very nasty way than anywhere else.\nIgnoring such dangers - and yet curiously obsessed by them - Bill Bryson\njourneyed to Australia and promptly fell in love with the country. And who\ncan blame him ? The people are cheerful, extrovert, quick-witted and\nunfailingly obliging : their cities are safe and clean and nearly always\nbuilt on water ; the food is excellent ; the beer is cold and the sun\nnearly always shines. Life doesn't get much better than this...\"\r\n1428,1461,194373,Arthur Conan Doyle,The Memoirs of Sherlock Holmes,https://images.gr-assets.com/books/1410716044l/194373.jpg,4.32,56918,\"mystery, classics\",The Memoirs of Sherlock HolmesArthur Conan Doyle\r\n1429,1462,11529868,Adam Johnson,The Orphan Master's Son,https://images.gr-assets.com/books/1327878601l/11529868.jpg,4.06,52765,\"fiction, contemporary\",\"The son of an influential father who runs an orphan work camp, Pak Jun Do\nrises to prominence using instinctive talents and eventually becomes a\nprofessional kidnapper and romantic rival to Kim Jong Il.\"\r\n1430,1463,44687,David Eddings,Enchanters' End Game,https://images.gr-assets.com/books/1217735909l/44687.jpg,4.17,69134,\"fantasy, fiction\",\"The conclusion of the Belgariad series sees Garion crowned as Overlord of\nthe West, as in the East, the evil God Torak is about to awaken and\nchallenge Garion's rule\"\r\n1431,1465,187181,Chaim Potok,The Chosen,https://images.gr-assets.com/books/1403191327l/187181.jpg,4.03,70701,\"fiction, classics\",\"A baseball injury precipitates a friendship between two boys from Hasidic\nand Zionist families\"\r\n1432,1466,321552,\"Irving Stone, שמואל שניצר\",The Agony and the Ecstasy: A Biographical Novel of Michelangelo,https://images.gr-assets.com/books/1327879079l/321552.jpg,4.09,61256,\"fiction, art\",\"A novel of Michelangelo who was the creator of David, painter of the\nSistine ceiling, and architect of the dome of St. Peter's.\"\r\n1433,1467,4912857,\"Carlos Ruiz Zafón, Lucia Graves\",El juego del ángel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388330801l/4912857.jpg,3.86,46225,\"fiction, mystery\",\"A boy named Daniel selects a novel from a library of rare books, enjoying\nit so much that he searches for the rest of the author's works, only to\ndiscover that someone is destroying every book the author has ever written.\nReprint.\"\r\n1434,1468,147865,Cecelia Ahern,Where Rainbows End,https://images.gr-assets.com/books/1420732457l/147865.jpg,3.95,55236,\"romance, contemporary\",Where Rainbows EndCecelia Ahern\r\n1435,1469,774001,\"Peggy Parish, Fritz Siebel\",Amelia Bedelia,https://images.gr-assets.com/books/1353400157l/774001.jpg,4.15,72329,\"fiction, classics\",\"A literal-minded housekeeper causes chaos in the Rogers household when she\nattempts to make sense of some instructions.\"\r\n1436,1470,16140036,Jodi Ellen Malpas,This Man,https://images.gr-assets.com/books/1352790466l/16140036.jpg,4.13,79461,\"romance, contemporary\",\"Named one of \"\"The 20 Greatest Ever Romance Novels According to Goodreads\nReviews\"\" by O, The Oprah Magazine! Named one of \"\"The 10 Best Romance Novels\nto Read if You Love Fifty Shades of Grey\"\" by Today.com! Named one of \"\"The\n20 Best Romance Novels of All Time, According to Dedicated Readers\"\" by Good\nHousekeeping! Young interior designer Ava O'Shea has no idea what awaits\nher at the Manor. A run-of-the-mill consultation with a stodgy country gent\nseems likely, but what Ava finds instead is Jesse Ward--a devastatingly\nhandsome, utterly confident, pleasure-seeking playboy who knows no\nboundaries. Ava doesn't want to be attracted to this man, and yet she can't\ncontrol the overwhelming desire that he stirs in her. She knows that her\nheart will never survive him and her instinct is telling her to run, but\nJesse is not willing to let her go. He wants her and is determined to have\nher.\"\r\n1437,1471,7723542,W. Bruce Cameron,A Dog's Purpose ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564936796l/7723542._SY475_.jpg,4.35,65091,\"fiction, contemporary\",\"A Dog’s Purpose—the #1 New York Times bestseller—is heading to the big\nscreen! Based on the beloved bestselling novel by W. Bruce Cameron, A Dog’s\nPurpose, from director Lasse Hallström (The Cider House Rules, Dear John,\nThe 100-Foot Journey), shares the soulful and surprising story of one\ndevoted dog (voiced by Josh Gad) who finds the meaning of his own existence\nthrough the lives of the humans he teaches to laugh and love. The family\nfilm told from the dog’s perspective also stars Britt Robertson, KJ Apa,\nJohn Ortiz, Peggy Lipton, Juliet Rylance, Luke Kirby, Pooch Hall and Dennis\nQuaid. A Dog’s Purpose is produced by Gavin Polone (Zombieland, TV’s\nGilmore Girls). The film from Amblin Entertainment and Walden Media will be\ndistributed by Universal Pictures. Screenplay by W. Bruce Cameron & Cathryn\nMichon and Audrey Wells and Maya Forbes & Wally Wolodarsky. Heartwarming,\ninsightful, and often laugh-out-loud funny, A Dog's Purpose is not only the\nemotional and hilarious story of a dog's many lives, but also a dog's-eye\ncommentary on human relationships and the unbreakable bonds between man and\nman's best friend. This moving and beautifully crafted story teaches us\nthat love never dies, that our true friends are always with us, and that\nevery creature on earth is born with a purpose. Bailey's story continues in\nA Dog's Journey, the charming New York Times and USA Today bestselling\ndirect sequel to A Dog's Purpose. A Dog's Purpose Series #1 A Dog’s Purpose\n#2 A Dog’s Journey Other A Dog's Purpose Books Ellie's Story: A Dog’s\nPurpose Novel Bailey’s Story: A Dog’s Purpose Novel Molly's Story: A Dog's\nPurpose Novel (forthcoming) The Rudy McCann Series The Midnight Plan of the\nRepo Man Repo Madness Other Books A Dog's Way Home (forthcoming) The Dog\nMaster The Dogs of Christmas Emory’s Gift This edition of the book is the\ndeluxe, tall rack mass market paperback.\"\r\n1438,1472,20560137,Sabaa Tahir,An Ember in the Ashes,https://images.gr-assets.com/books/1417957944l/20560137.jpg,4.32,45492,\"fantasy, romance\",\"\"\"Laia is a Scholar living under the iron-fisted rule of the Martial Empire.\nWhen her brother is arrested for treason, Laia goes undercover as a slave\nat the empire's greatest military academy in exchange for assistance from\nrebel Scholars who claim that they will help to save her brother from\nexecution\"\"--\"\r\n1439,1473,1240662,J.R. Ward,\"Lover Enshrined, part one\",https://images.gr-assets.com/books/1327896547l/1240662.jpg,4.12,87432,\"paranormal, romance\",\"Lover Enshrined, part oneJ.R. Ward\"\r\n1440,1474,15819028,Helene Wecker,The Golem and the Jinni,https://images.gr-assets.com/books/1349205573l/15819028.jpg,4.1,59650,\"fantasy, fiction\",The Golem and the JinniHelene Wecker\r\n1441,1475,16081961,\"أحلام مستغانمي, Ahlam Mosteghanemi\",الأسود يليق بك,https://images.gr-assets.com/books/1351004560l/16081961.jpg,3.72,42958,\"romance, fiction\",\"الأسود يليق بكأحلام مستغانمي, Ahlam Mosteghanemi\"\r\n1442,1476,297792,\"Lemony Snicket, Brett Helquist\",The Slippery Slope,https://images.gr-assets.com/books/1343701012l/297792.jpg,4,81362,\"fiction, fantasy\",\"Like bad smells, uninvited weekend guests or very old eggs, there are some\nthings that ought to be avoided. Snicket's saga about the charming,\nintelligent, and grossly unlucky Baudelaire orphans continues to alarm its\ndistressed and suspicious fans the world over. The 10th book in this\noutrageous publishing effort features more than the usual dose of\ndistressing details, such as snow gnats, an organised troupe of youngsters,\nan evil villain with a dastardly plan, a secret headquarters and some\ndangerous antics you should not try at home. With the weather turning\ncolder, this is one chilling book you would be better off without. Ages 10+\"\r\n1443,1477,31242,\"Charles Dickens, Nicola Bradbury, Hablot Knight Browne\",Bleak House,https://images.gr-assets.com/books/1280113147l/31242.jpg,4,67433,\"classics, fiction\",\"The English equity court of the nineteenth-century is satirized in Dickins'\ntale about the suit of Jarndyce vs. Jarndyce.\"\r\n1444,1478,775597,Esphyr Slobodkina,\"Caps for sale: a tale of a peddler, some monkeys and their monkey business\",https://images.gr-assets.com/books/1348541342l/775597.jpg,4.12,72504,\"fiction, classics\",\"Caps for Sale is a timeless classic, in print for over fifty years, and\nbeloved by generations of readers. This easy-to-read story about a peddler\nand a band of mischievous monkeys is filled with warmth, humor, and\nsimplicity. Children will delight in following the peddlers efforts to\noutwit the monkeys in this new, enlarged, and redesigned edition, and will\nask to read it again and again.\"\r\n1445,1479,29396,Jim Butcher,Furies of Calderon ,https://images.gr-assets.com/books/1329104514l/29396.jpg,4.12,70269,\"fantasy, fiction\",\"In the land of Alera, where people bond with the furies--elementals of\nearth, air, fire, water, and metal--young Tavi struggles to cope with his\nlack of magical talent, until his homeland erupts into conflct between\nrebels and loyalists and Tavi discovers that he holds the key to his\nrealm's survival. Reprint.\"\r\n1446,1480,13831,Tamora Pierce,Alanna: The First Adventure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206270l/13831.jpg,4.27,85699,\"fantasy, fiction\",\"From Tamora Pierce, the first book in the Song of the Lioness Quartet,\nhonored with the Margaret A. Edwards Award. “From now on I’m Alan of\nTrebond, the younger twin. I’ll be a knight.” In a time when girls are\nforbidden to be warriors, Alanna of Trebond wants nothing more than to be a\nknight of the realm of Tortall. So she finds a way to switch places with\nher twin brother, Thom. Disguised as a boy, Alanna begins her training as a\npage at the palace of King Roald. But the road to knighthood, as she\ndiscovers, is not an easy one. Alanna must master weapons, combat, and\nmagic, as well as polite behavior, her temper, and even her own heart.\nFilled with swords and sorcery, adventure and intrigue, good and evil,\nAlanna’s first adventure begins—one that will lead to the fulfillment of\nher dreams and make her a legend in the land.\"\r\n1447,1481,6202342,Audrey Niffenegger,Her Fearful Symmetry,https://images.gr-assets.com/books/1327939087l/6202342.jpg,3.23,63737,\"fiction, fantasy\",\"At last ---another brilliant, original and moving novel from the author of\nTHE TIME TRAVELER'S WIFE. Julia and Valentina Poole are normal American\nteenagers - normal, at least, for identical 'mirror' twins who have no\ninterest in college or jobs or possibly anything outside their cozy\nsuburban home. But everything changes when they receive notice that an aunt\nwhom they didn't know existed has died and left them her flat in an\napartment block overlooking Highgate Cemetery in London. They feel that at\nlast their own lives can begin ... but have no idea that they've been\nsummoned into a tangle of fraying lives, from the obsessive-compulsive\ncrossword setter who lives above them to their aunt's mysterious and\nelusive lover who lives below them, and even to their aunt herself, who\nnever got over her estrangement from the twins' mother - and who can't even\nseem to quite leave her flat.... With Highgate Cemetery itself a character\nand echoes of Henry James and Charles Dickens, HER FEARFUL SYMMETRY is a\ndelicious and deadly twenty-first-century ghost story about Niffenegger's\nfamiliar themes of love, loss and identity. It is certain to cement her\nstanding as one of the most singular and remarkable novelists of our time.\"\r\n1448,1482,22450859,Anita Diamant,The Boston Girl,https://images.gr-assets.com/books/1418103945l/22450859.jpg,3.79,51603,\"fiction, history\",The Boston GirlAnita Diamant\r\n1449,1483,5098079,J.R. Ward,\"Lover Enshrined, part two\",https://images.gr-assets.com/books/1321039998l/5098079.jpg,4.38,84650,\"paranormal, romance\",\"Fierce warrior and legendary lover, Rhage, a vampire cursed by the Scribe\nVirgin and owned by the dark side, finds salvation in Mary Luce, the\ninnocent young beauty he has sworn to protect, and together they battle\nagainst their enemies and fight for eternal love. Original.\"\r\n1450,1484,77565,Dan Simmons,The Fall of Hyperion,https://images.gr-assets.com/books/1429215870l/77565.jpg,4.18,63235,\"fiction, fantasy\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n1451,1485,21704,James Ellroy,The Black Dahlia,https://images.gr-assets.com/books/1387048173l/21704.jpg,3.75,61412,\"mystery, crime\",\"On January 15, 1947, the torture-ravished body of a beautiful young woman\nis found in a Los Angeles vacant lot. The victim makes headlines as the\nBlack Dahlia-and so begins the greatest manhunt in California\nhistory.Caught up in the investigation are Bucky Bleichert and Lee\nBlanchard: Warrants Squad cops, friends, and rivals in love with the same\nwoman. But both are obsessed with the Dahlia-driven by dark needs to know\neverything about her past, to capture her killer, to possess the woman even\nin death. Their quest will take them on a hellish journey through the\nunderbelly of postwar Hollywood, to the core of the dead girl's twisted\nlife, past the extremes of their own psyches-into a region of total\nmadness.\"\r\n1452,1486,83346,\"Lewis Carroll, John Tenniel, Peter Glassman\",\"Through the Looking-Glass, and What Alice Found There\",https://images.gr-assets.com/books/1359299332l/83346.jpg,4.06,63050,\"classics, fantasy\",\"In this sequel to \"\"Alice in Wonderland,\"\" Alice goes through the mirror to\nfind a strange world where curious adventures await her.\"\r\n1453,1487,1848,Jung Chang,Wild Swans: Three Daughters of China,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440643710l/1848._SY475_.jpg,4.23,60193,\"biography, nonfiction\",\"A Chinese woman chronicles the struggle of her grandmother, her mother, and\nherself to survive in a China torn apart by wars, invasions, revolution,\nand continuing upheaval, from 1907 to the present.\"\r\n1454,1488,460548,P.D. Eastman,\"Go, Dog. Go!\",https://images.gr-assets.com/books/1333578440l/460548.jpg,4.08,66360,\"fiction, classics\",\"A vocabulary-building story about dogs engaged in every imaginable type of\nactivity.\"\r\n1455,1490,22453035,Stephen King,Finders Keepers,https://images.gr-assets.com/books/1468705421l/22453035.jpg,4.03,36541,\"fiction, horror\",Finders KeepersStephen King\r\n1456,1491,6065215,\"Guillermo del Toro, Chuck Hogan\",The Strain,https://images.gr-assets.com/books/1326225354l/6065215.jpg,3.77,58631,\"horror, suspense\",\"The StrainGuillermo del Toro, Chuck Hogan\"\r\n1457,1492,112204,\"Emily Dickinson, Thomas H. Johnson\",The Complete Poems of Emily Dickinson,https://images.gr-assets.com/books/1498347611l/112204.jpg,4.21,60278,\"classics, poetry\",\"This comprehensive and authoritative collection of all 1,775 poems by Emily\nDickinson is an essential volume for all lovers of American literature.\nOnly eleven of Emily Dickinson's poems were published prior to her death in\n1886; the startling originality of her work doomed it to obscurity in her\nlifetime. Early posthumous published collections -- some of them featuring\nliberally \"\"edited\"\" versions of the poems -- did not fully and accurately\nrepresent Dickinson's bold experiments in prosody, her tragic vision, and\nthe range of her intellectual and emotional explorations. Not until the\n1955 publication of The Complete Poems of Emily Dickinson, a three-volume\ncritical edition compiled by Thomas H. Johnson, were readers able for the\nfirst time to assess, understand, and appreciate the whole of Dickinson's\nextraordinary poetic genius. This book, a distillation of the three-volume\nComplete Poems, brings together the original texts of all 1,775 poems that\nEmily Dickinson wrote. \"\"With its chronological arrangement of the poems,\nthis volume becomes more than just a collection; it is at the same time a\npoetic biography of the thoughts and feelings of a woman whose beauty was\ndeep and lasting.\"\" --San Francisco Chronicle\"\r\n1458,1493,130580,Fred Gipson,Old Yeller,https://images.gr-assets.com/books/1327940112l/130580.jpg,4.06,69815,\"classics, fiction\",\"At first, Travis couldn't stand the sight of Old Yeller The stray dog was\nugly, and a thieving rascal, too. But he sure was clever, and a smart dog\ncould be a big help on the wild Texas frontier, especially with Papa away\non a long cattle drive up to Abilene. Strong and courageous, Old Yeller\nproved that he could protect Travis's family from any sort of danger. But\ncan Travis do the same for Old Yeller?\"\r\n1459,1494,773858,Steve Martin,Born Standing Up: A Comic's Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348034328l/773858.jpg,3.87,60869,\"biography, memoir\",\"The riveting, mega-bestselling, beloved and highly acclaimed memoir of a\nman, a vocation, and an era named one of the ten best nonfiction titles of\nthe year by Time and Entertainment Weekly. In the mid-seventies, Steve\nMartin exploded onto the comedy scene. By 1978 he was the biggest concert\ndraw in the history of stand-up. In 1981 he quit forever. This book is, in\nhis own words, the story of “why I did stand-up and why I walked away.”\nEmmy and Grammy Award–winner, author of the acclaimed New York Times\nbestsellers Shopgirl and The Pleasure of My Company, and a regular\ncontributor to The New Yorker, Martin has always been a writer. His memoir\nof his years in stand-up is candid, spectacularly amusing, and beautifully\nwritten. At age ten Martin started his career at Disneyland, selling\nguidebooks in the newly opened theme park. In the decade that followed, he\nworked in the Disney magic shop and the Bird Cage Theatre at Knott’s Berry\nFarm, performing his first magic/comedy act a dozen times a week. The story\nof these years, during which he practiced and honed his craft, is moving\nand revelatory. The dedication to excellence and innovation is formed at an\nastonishingly early age and never wavers or wanes. Martin illuminates the\nsacrifice, discipline, and originality that made him an icon and informs\nhis work to this day. To be this good, to perform so frequently, was\nisolating and lonely. It took Martin decades to reconnect with his parents\nand sister, and he tells that story with great tenderness. Martin also\npaints a portrait of his times—the era of free love and protests against\nthe war in Vietnam, the heady irreverence of The Smothers Brothers Comedy\nHour in the late sixties, and the transformative new voice of Saturday\nNight Live in the seventies. Throughout the text, Martin has placed\nphotographs, many never seen before. Born Standing Up is a superb testament\nto the sheer tenacity, focus, and daring of one of the greatest and most\niconoclastic comedians of all time.\"\r\n1460,1495,87640,Frank Warren,PostSecret: Extraordinary Confessions from Ordinary Lives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440869881l/87640._SX318_.jpg,4.01,58841,\"nonfiction, art\",\"The project that captured a nation's imagination. The instructions were\nsimple, but the results were extraordinary. \"\"You are invited to anonymously\ncontribute a secret to a group art project. Your secret can be a regret,\nfear, betrayal, desire, confession, or childhood humiliation. Reveal\nanything -- as long as it is true and you have never shared it with anyone\nbefore. Be brief. Be legible. Be creative.\"\" It all began with an idea Frank\nWarren had for a community art project. He began handing out postcards to\nstrangers and leaving them in public places -- asking people to write down\na secret they had never told anyone and mail it to him, anonymously. The\nresponse was overwhelming. The secrets were both provocative and profound,\nand the cards themselves were works of art -- carefully and creatively\nconstructed by hand. Addictively compelling, the cards reveal our deepest\nfears, desires, regrets, and obsessions. Frank calls them \"\"graphic haiku,\"\"\nbeautiful, elegant, and small in structure but powerfully emotional. As\nFrank began posting the cards on his website, PostSecret took on a life of\nits own, becoming much more than a simple art project. It has grown into a\nglobal phenomenon, exposing our individual aspirations, fantasies, and\nfrailties -- our common humanity. Every day dozens of postcards still make\ntheir way to Frank, with postmarks from around the world, touching on every\naspect of human experience. This extraordinary collection brings together\nthe most powerful, personal, and beautifully intimate secrets Frank Warren\nhas received -- and brilliantly illuminates that human emotions can be\nunique and universal at the same time.\"\r\n1461,1496,147915,George R.R. Martin,A Storm of Swords: Part 2 Blood and Gold,https://images.gr-assets.com/books/1354567206l/147915.jpg,4.56,54977,\"fantasy, fiction\",\"Robb Stark wears his new-forged crown in the Kingdom of the North, but his\ndefences are ranged against attack from the South, the land of House\nStark's enemies the Lannisters. His sisters are trapped there at the whim\nof the Lannister boy-king Joffrey and his depraved mother Cersei.\"\r\n1462,1497,348573,\"Mary Norton, Beth Krush, Joe Krush\",The Borrowers Afield,https://images.gr-assets.com/books/1308945559l/348573.jpg,4.02,74820,\"fantasy, classics\",\"The further adventures of the family of miniature people who, after losing\ntheir home under the kitchen floor of an old English house, are forced to\nmove out to the fields.\"\r\n1463,1498,11602,Stephen King,Hearts in Atlantis,https://images.gr-assets.com/books/1374048926l/11602.jpg,3.8,65063,\"horror, fiction\",Hearts in AtlantisStephen King\r\n1464,1500,11298,\"Haruki Murakami, Alfred Birnbaum\",羊をめぐる冒険 [Hitsujiwomegurubōken],https://images.gr-assets.com/books/1327908774l/11298.jpg,3.94,55262,\"fantasy, contemporary\",\"His life was like his recurring nightmare- a train to nowhere. But an\nordinary life has a way of taking an extraordinary turn. Add a girl whose\nears are so exquisite that, when uncovered, they improve sex a thousand-\nfold, a runaway friend, a right-wing politico, an ovine-obsessed professor\nand a manic-depressive in a sheep outfit, implicate them in a hunt for a\nsheep, that may or may not be running the world, and eth upshot is another\nsingular masterpiece from Japan's finest novelist.\"\r\n1465,1501,252499,Philippa Gregory,The Queen's Fool,https://images.gr-assets.com/books/1399204116l/252499.jpg,3.83,69504,\"fiction, romance\",\"#1 New York Times bestselling author and “queen of royal fiction” (USA\nTODAY) Philippa Gregory weaves a spellbinding tale of a young woman with\nthe ability to see the future in an era when destiny was anything but\nclear. Winter, 1553. Pursued by the Inquisition, Hannah Green, a fourteen-\nyear-old Jewish girl, is forced to flee with her father from their home in\nSpain. But Hannah is no ordinary refugee; she has the gift of “Sight,” the\nability to foresee the future, priceless in the troubled times of the Tudor\ncourt. Hannah is adopted by the glamorous Robert Dudley, the charismatic\nson of King Edward’s protector, who brings her to court as a “holy fool”\nfor Queen Mary and, ultimately, Queen Elizabeth. Hired as a fool but\nworking as a spy; promised in wedlock but in love with her master;\nendangered by the laws against heresy, treason, and witchcraft, Hannah must\nchoose between the safe life of a commoner and the dangerous intrigues of\nthe royal family that are inextricably bound up with her own yearnings and\ndesires. Teeming with vibrant period detail and peopled by characters\nseamlessly woven into the sweeping tapestry of history, The Queen’s Fool is\na rich and emotionally resonant gem from a masterful storyteller.\"\r\n1466,1502,12812550,Laini Taylor,Days of Blood & Starlight,https://images.gr-assets.com/books/1461353798l/12812550.jpg,4.21,85746,\"fantasy, romance\",Days of Blood & StarlightLaini Taylor\r\n1467,1503,8682,Tom Robbins,Jitterbug Perfume,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607752l/8682.jpg,4.24,48277,\"fiction, contemporary\",\"This philosophical epic, with a large cast of characters, addresses the\nfervent desire of the human race to overcome the tyranny of aging and\nphysical death\"\r\n1468,1504,144350,John Flanagan,\"The Battle for Skandia (Ranger's Apprentice, #4)\",https://images.gr-assets.com/books/1294443954l/144350.jpg,4.32,60959,\"fiction, fantasy\",\"After Ranger's apprentice Will battles Temujai warriors to rescue Evanlyn,\nWill's kingdom of Skandia joins forces with rival kingdom Araluen to defeat\na common enemy.\"\r\n1469,1505,10576365,Alexandra Bracken,The Darkest Minds,https://images.gr-assets.com/books/1343178841l/10576365.jpg,4.26,83886,\"fantasy, romance\",\"\"\"Sixteen-year-old Ruby breaks out of a government-run 'rehabilitation camp'\nfor teens who acquired dangerous powers after surviving a virus that wiped\nout most American children\"\"--\"\r\n1470,1506,1427,\"Paulo Coelho, Margaret Jull Costa\",O Zahir,https://images.gr-assets.com/books/1493044059l/1427.jpg,3.56,50921,\"fiction, philosophy\",\"When his war correspondent wife goes missing with a friend who may be a\nlover, a celebrity novelist comes under suspicion, until the friend\nreappears and invites him to undertake a spiritual journey to Kazakhstan.\nBy the author of Eleven Minutes. 100,000 first printing.\"\r\n1471,1507,1134122,Norman Vincent Peale,The Power of Positive Thinking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587724137l/1134122._SY475_.jpg,4.08,52704,\"psychology, business\",\"\"\"This book is written with the sole objective of helping the reader achieve\na happy, satisfying, and worthwhile life.\"\" -- Norman Vincent Peale The\nPower of Positive Thinking has helped millions of men and women to achieve\nfulfillment in their lives. In this phenomenal bestseller, Dr. Peale\ndemonstrates the power of faith in action. With the practical techniques\noutlined in this book, you can energize your life -- and give yourself the\ninitiative needed to carry out your ambitions and hopes. You'll learn how\nto: • believe in yourself and in everything you do • build new power and\ndetermination • develop the power to reach your goals • break the worry\nhabit and achieve a relaxed life • improve your personal and professional\nrelationships • assume control over your circumstances • be kind to\nyourself\"\r\n1472,1508,23346377,Ruth Ware,\"In a Dark, Dark Wood \",https://images.gr-assets.com/books/1429521615l/23346377.jpg,3.65,67344,\"mystery, fiction\",\"\"\"What should be a cozy and fun-filled weekend deep in the English\ncountryside takes a sinister turn in Ruth Ware's suspenseful, compulsive,\nand darkly twisted psychological thriller. Leonora, known to some as Lee\nand others as Nora, is a reclusive crime writer, unwilling to leave her\n\"\"nest\"\" of an apartment unless it is absolutely necessary. When a friend she\nhasn't seen or spoken to in years unexpectedly invites Nora (Lee?) to a\nweekend away in an eerie glass house deep in the English countryside, she\nreluctantly agrees to make the trip. Forty-eight hours later, she wakes up\nin a hospital bed injured but alive, with the knowledge that someone is\ndead. Wondering not \"\"what happened?\"\" but \"\"what have I done?,\"\" Nora (Lee?)\ntries to piece together the events of the past weekend. Working to uncover\nsecrets, reveal motives, and find answers, Nora (Lee?) must revisit parts\nof herself that she would much rather leave buried where they belong: in\nthe past. In the tradition of Paula Hawkins's instant New York Times\nbestseller The Girl On the Train and S. J. Watson's riveting national\nsensation Before I Go To Sleep, this gripping literary debut from UK\nnovelist Ruth Ware will leave you on the edge of your seat through the very\nlast page\"\"--\"\r\n1473,1509,17728,\"Edith Wharton, Nina Bawden\",The House of Mirth,https://images.gr-assets.com/books/1328729186l/17728.jpg,3.94,60611,\"classics, fiction\",\"The House of MirthEdith Wharton, Nina Bawden\"\r\n1474,1510,2454986,\"Hiro Mashima, William Flanagan\",Fairy Tail 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389303619l/2454986.jpg,4.4,65477,\"manga, fantasy\",\"Small-town wizard Lucy would love to join Fairy Tail, a guild for powerful\nwizards, but instead finds herself teaming up with Natsu, a crazy fire\nwizard whose best friend is a talking, flying cat named Happy.\"\r\n1475,1511,21535271,\"Patrick Rothfuss, Nate  Taylor\",The Slow Regard of Silent Things,https://images.gr-assets.com/books/1398466695l/21535271.jpg,3.92,57716,\"fantasy, fiction\",\"Living in the abandoned tunnel system beneath the University, the enigmatic\nAuri reflects on her bittersweet life while making unique observations\nabout the broken world she would survive. By the best-selling author of The\nName of the Wind. 100,000 first printing.\"\r\n1476,1512,18478222,Solomon Northup,Twelve Years a Slave,https://images.gr-assets.com/books/1378793462l/18478222.jpg,4.15,39758,\"history, biography\",Twelve Years a SlaveSolomon Northup\r\n1477,1513,7046495,J.R. Ward,\"Lover Avenged, part one\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391511285l/7046495.jpg,4.41,82824,\"romance, fantasy\",\"Rehvenge, a \"\"symphath\"\" vampire who gets energy from the emotions of others,\nis recruited by a faction that wants to assassinate the vampire king and is\nattracted to the innocence of vampire nurse, Ehlena, who rejects him.\"\r\n1478,1514,17780,Nathaniel Philbrick,In the Heart of the Sea: The Tragedy of the Whaleship Essex,https://images.gr-assets.com/books/1335902168l/17780.jpg,4.16,57259,\"history, nonfiction\",\"Recounts the story of the 1820 wreck of the whaleship Essex, which inspired\nMelville's classic \"\"Moby-Dick,\"\" and describes its doomed crew's ninety-day\nattempt to survive whale attacks and the elements on three tiny lifeboats\"\r\n1479,1515,81227,Ayaan Hirsi Ali,Infidel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256729l/81227.jpg,4.2,58432,\"memoir, biography\",\"The author of The Caged Virgin recounts the story of her life, from her\ntraditional Muslim childhood in Somalia and escape from a forced marriage\nto her efforts to promote women's rights while surviving numerous threats\nto her safety. Reprint. 100,000 first printing.\"\r\n1480,1516,242472,Nassim Nicholas Taleb,The Black Swan: The Impact of the Highly Improbable,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925471l/242472.jpg,3.88,53586,\"business, philosophy\",\"Examines the role of the unexpected, discussing why improbable events are\nnot anticipated or understood properly, and how humans rationalize the\nblack swan phenomenon to make it appear less random.\"\r\n1481,1517,13281368,Justin Cronin,The Twelve,https://images.gr-assets.com/books/1331230956l/13281368.jpg,3.98,56756,\"horror, fiction\",The TwelveJustin Cronin\r\n1482,1518,17125,\"Aleksandr Solzhenitsyn, H.T. Willetts\",Один день Ивана Денисовича,https://images.gr-assets.com/books/1427731744l/17125.jpg,3.94,61678,\"fiction, classics\",\"Один день Ивана ДенисовичаAleksandr Solzhenitsyn, H.T. Willetts\"\r\n1483,1519,827,Neal Stephenson,The Diamond Age,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180931l/827.jpg,4.19,61836,\"fiction, fantasy\",\"The story of an engineer who creates a device to raise a girl capable of\nthinking for herself reveals what happens when a young girl of the poor\nunderclass obtains the device.\"\r\n1484,1520,164154,Walter M. Miller Jr.,A Canticle for Leibowitz,https://images.gr-assets.com/books/1450516880l/164154.jpg,3.97,66721,\"fiction, classics\",A Canticle for LeibowitzWalter M. Miller Jr.\r\n1485,1521,7728,\"Sophocles, J.E. Thomas\",Ἀντιγόνη,https://images.gr-assets.com/books/1486701308l/7728.jpg,3.6,67608,\"classics, fiction\",\"To make this quintessential Greek drama more accessible to the modern\nreader, this Prestwick House Literary Touchstone Edition? includes a\nglossary of difficult terms, a list of vocabulary words, and convenient\nsidebar notes. By providing these, it is our intention that readers will\nmore fully enjoy the beauty, wisdom, and intent of the play.The curse\nplaced on Oedipus lingers and haunts a younger generation in this new and\nbrilliant translation of Sophocles? classic drama. The daughter of Oedipus\nand Jocasta, Antigone is an unconventional heroine who pits her beliefs\nagainst the King of Thebes in a bloody test of wills that leaves few\nunharmed. Emotions fly as she challenges the king for the right to bury her\nown brother. Determined but doomed, Antigone shows her inner strength\nthroughout the play. Antigone raises issues of law and morality that are\njust as relevant today as they were more than two thousand years ago.\nWhether this is your first reading or your twentieth, Antigone will move\nyou as few pieces of literature can.\"\r\n1486,1522,4954833,Colm Tóibín,Brooklyn,https://images.gr-assets.com/books/1489957005l/4954833.jpg,3.63,55459,\"fiction, romance\",\"Leaving her home in post-World War II Ireland to work as a bookkeeper in\nBrooklyn, Eilis Lacey discovers a new romance in America with a charming\nblond Italian man before devastating news threatens her happiness.\"\r\n1487,1523,8525590,Lauren DeStefano,Wither,https://images.gr-assets.com/books/1341532430l/8525590.jpg,3.81,84776,\"romance, fantasy\",WitherLauren DeStefano\r\n1488,1524,27161156,J.D. Vance,Hillbilly Elegy. A Memoir of a Family and Culture in Crisis,https://images.gr-assets.com/books/1463569814l/27161156.jpg,3.99,80737,\"memoir, nonfiction\",Hillbilly Elegy. A Memoir of a Family and Culture in CrisisJ.D. Vance\r\n1489,1525,113435,Robert Jordan,Crossroads of Twilight,https://images.gr-assets.com/books/1408325146l/113435.jpg,3.82,61361,\"fantasy, fiction\",Crossroads of TwilightRobert Jordan\r\n1490,1526,35220,Stephen Crane,The Red Badge of Courage,https://images.gr-assets.com/books/1327936136l/35220.jpg,3.21,68448,\"classics, fiction\",The Red Badge of CourageStephen Crane\r\n1491,1527,21413662,Randall Munroe,What If?: Serious Scientific Answers to Absurd Hypothetical Questions,https://images.gr-assets.com/books/1451351509l/21413662.jpg,4.17,60236,\"science, nonfiction\",\"From the creator of the wildly popular webcomic xkcd, hilarious and\ninformative answers to important questions you probably never thought to\nask Millions of people visit xkcd.com each week to read Randall Munroe's\niconic webcomic. His stick-figure drawings about science, technology,\nlanguage, and love have an enormous, dedicated following, as do his deeply\nresearched answers to his fans' strangest questions. The queries he\nreceives range from merely odd to downright diabolical: • What if I took a\nswim in a spent-nuclear-fuel pool? • Could you build a jetpack using\ndownward-firing machine guns? • What if a Richter 15 earthquake hit New\nYork City? • Are fire tornadoes possible? His responses are masterpieces of\nclarity and wit, gleefully and accurately explaining everything from the\nrelativistic effects of a baseball pitched at near the speed of light to\nthe many horrible ways you could die while building a periodic table out of\nall the actual elements. The book features new and never-before-answered\nquestions, along with the most popular answers from the xkcd website. What\nIf? is an informative feast for xkcd fans and anyone who loves to ponder\nthe hypothetical.\"\r\n1492,1528,55399,Steven Erikson,Gardens of the Moon,https://images.gr-assets.com/books/1355144064l/55399.jpg,3.85,57993,\"fantasy, fiction\",Gardens of the MoonSteven Erikson\r\n1493,1529,816720,Paulo Coelho,A Bruxa de Portobello,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178654373l/816720._SY475_.jpg,3.51,51461,\"fiction, philosophy\",\"Quem é Athena? A órfã abandonada pela mãe cigana na Transilvânia. A criança\nlevada pelos pais adotivos para Beirute. A funcionária de um grande banco\nem Londres. A bem sucedida vendedora de terrenos em Dubai. A sacerdotisa de\nPortobello Road. Athena é o personagem principal de 'A bruxa de\nPortobello'. Quem conta a história são as pessoas que conviveram com ela.\nSua mãe adotiva, um jornalista interessado em vampirismo, um padre, um\nmestre de caligrafia, uma atriz, entre outros. Eles traçam diferentes\nperfis da personagem, mesclando acontecimentos com impressões, crenças\npróprias, anseios.\"\r\n1494,1530,77276,Madeleine L'Engle,A Swiftly Tilting Planet,https://images.gr-assets.com/books/1327465278l/77276.jpg,4.13,75851,\"fantasy, fiction\",A Swiftly Tilting PlanetMadeleine L'Engle\r\n1495,1531,262430,Suzanne Collins,Gregor the Overlander,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387742259l/262430.jpg,3.99,66823,\"fantasy, fiction\",\"When eleven-year-old Gregor and his two-year-old sister are pulled into a\nstrange underground world, they trigger an epic battle involving men, bats,\nrats, cockroaches, and spiders while on a quest foretold by ancient\nprophecy.\"\r\n1496,1532,8554005,Jodi Picoult,Sing You Home,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347775953l/8554005.jpg,3.76,62494,\"fiction, romance\",\"Ten years of infertility issues culminate in the destruction of music\ntherapist Zoe Baxter's marriage, after which she falls in love with another\nwoman, Vanessa, and wants to start a family; but her ex-husband, Max, under\nthe influence of an anti-gay pastor, stands in the way. Reprint.\"\r\n1497,1533,31336,Anne Rice,The Tale of the Body Thief,https://images.gr-assets.com/books/1361577271l/31336.jpg,3.7,67267,\"fantasy, fiction\",\"In 1992 Miami, the immortal vampire Lestat finds himself alone, yearning to\nregain his soul and to once again experience the joys and anguish of being\na mortal man. Reissue.\"\r\n1498,1534,15158,David Baldacci,The Camel Club,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166671032l/15158.jpg,4.02,58973,\"fiction, thriller\",The Camel ClubDavid Baldacci\r\n1499,1535,33676,James Patterson,Saving The World and Other Extreme Sports,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442335715l/33676._SY475_.jpg,4.16,75436,\"fantasy, fiction\",Saving The World and Other Extreme SportsJames Patterson\r\n1500,1536,43892,Terry Goodkind,Blood of the Fold,https://images.gr-assets.com/books/1443563626l/43892.jpg,3.98,60624,\"fantasy, fiction\",\"Richard Rahl and Kahlan Amnell must protect the New World from a savage\narmageddon of war, monsters, and treachery as they battle ancient forces of\nevil from the Old World. Reprint.\"\r\n1501,1537,16180,Philippa Gregory,The Boleyn Inheritance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409318443l/16180.jpg,3.84,62135,\"history, ebooks\",\"Lady-in-waiting Jane Boleyn, the only survivor of the ambitious Boleyn\nfamily, testifies against Henry VIII's latest queen, Anne of Cleves, and\nconspires to place her young cousin, Katherine Howard, on the throne.\"\r\n1502,1538,22501028,Anne Tyler,A Spool of Blue Thread,https://images.gr-assets.com/books/1451435883l/22501028.jpg,3.4,42339,\"fiction, contemporary\",A Spool of Blue ThreadAnne Tyler\r\n1503,1539,30555488,Colson Whitehead,The Underground Railroad,https://images.gr-assets.com/books/1493178362l/30555488.jpg,4.04,72052,\"fiction, history\",\"\"\"Oprah's Book Club 2016 selection\"\"--Sticker on jacket.\"\r\n1504,1540,106085,Melissa de la Cruz,Masquerade,https://images.gr-assets.com/books/1322287499l/106085.jpg,3.91,76598,\"fantasy, paranormal\",MasqueradeMelissa de la Cruz\r\n1505,1541,8685612,Julie Kagawa,The Iron Queen,https://images.gr-assets.com/books/1321070331l/8685612.jpg,4.24,82373,\"fantasy, romance\",The Iron QueenJulie Kagawa\r\n1506,1542,16034964,Cora Carmack,Losing It,https://images.gr-assets.com/books/1348459319l/16034964.jpg,3.77,84438,\"contemporary, romance\",Losing ItCora Carmack\r\n1507,1543,13573236,John Grisham,The Racketeer,https://images.gr-assets.com/books/1344371438l/13573236.jpg,3.79,48286,\"fiction, mystery\",\"When a Federal judge and his secretary fail to appear for a scheduled trial\nand panicked clerks call for an FBI investigation, a harrowing murder case\nensues and culminates in the imprisonment of a lawyer who imparts the story\nof who killed the judge and why. By the best-selling author of The\nLitigators. (This book was previously listed in Forecast.)\"\r\n1508,1544,6192,J.M. Coetzee,Disgrace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385161943l/6192.jpg,3.83,50422,\"fiction, contemporary\",\"Set between Cape Town and a remote farm in the Eastern Cape, this spare,\nunflinching novel of the modern South Africa traces the relationship\nbetween a farmer and his daughter. Reprint.\"\r\n1509,1545,776407,\"A.A. Milne, Ernest H. Shepard\",The House at Pooh Corner,https://images.gr-assets.com/books/1348195621l/776407.jpg,4.36,69102,\"fiction, classics\",\"Ten adventures of Pooh, Eeyore, Tigger, Piglet, Owl, and other friends of\nChristopher Robin.\"\r\n1510,1546,7165300,Brent Weeks,The Black Prism,https://images.gr-assets.com/books/1327921884l/7165300.jpg,4.24,58906,\"fantasy, fiction\",The Black PrismBrent Weeks\r\n1511,1547,6976,Sue Monk Kidd,The Mermaid Chair,https://images.gr-assets.com/books/1388259308l/6976.jpg,3.1,62760,\"fiction, romance\",\"Jessie Sullivan is summoned home to tiny Egret Island, where she meets\nBrother Thomas, a monk who is about to take his final vows, and encounters\nthe legend of a mysterious chair dedicated to a saint who had originally\nbeen a mermaid.\"\r\n1512,1548,537296,Arnold Lobel,Frog and Toad Are Friends,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179033l/537296.jpg,4.18,70119,\"fiction, classics\",\"From writing letters to going swimming, telling stories to finding lost\nbuttons, Frog and Toad are always there for each other—just as best friends\nshould be.\"\r\n1513,1549,324277,\"Lemony Snicket, Brett Helquist\",The Carnivorous Carnival,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518209848l/324277._SX318_.jpg,3.97,83981,\"fiction, fantasy\",\"Everybody loves a carnival! Who can fail to delight in the colourful\npeople, the unworldly spectacle, the fabulous freaks? A carnival is a place\nfor good family fun - as long as one has a family, that is. For the\nBaudelaire orphans, their time at the carnival turns out to be yet another\nepisode in a now unbearable series of unfortunate events. In fact, in this\nappalling ninth instalment in Lemony Snicket′s serial, the siblings must\nconfront a terrible lie, a caravan, and Chabo the wolf baby. With millions\nof readers worldwide, and the Baudelaire′s fate turning from unpleasant to\nunseemly, it is clear that Lemony Snicket has taken nearly all the fun out\nof children′s books. Ages 10+\"\r\n1514,1550,6574102,Ally Carter,Heist Society,https://images.gr-assets.com/books/1359254479l/6574102.jpg,3.91,75834,\"mystery, contemporary\",\"For as long as she can remember, Katarina has been a part of the family\nbusiness—thieving. When Kat tries to leave “the life” for a normal life,\nher old friend Hale conspires to bring her back into the fold. Why? A\nmobster’s art collection has been stolen, and Kat’s father is the only\nsuspect. Caught between Interpol and a far more deadly enemy, Kat’s dad\nneeds her help. /DIVDIVThe only solution is to find the paintings and steal\nthem back. Kat’s got two weeks, a teenage crew, and hopefully enough talent\nto pull off the biggest heist in her family’s history—and, with any luck,\nsteal her life back along the way. With its glamorous international\nsettings, intriguing suspense, complicated cons and even more complicated\nromance, Heist Society is stealing the hearts of Ally Carter fans\neverywhere.\"\r\n1515,1551,29437949,B.A. Paris,Behind Closed Doors,https://images.gr-assets.com/books/1458854462l/29437949.jpg,3.93,57865,\"thriller, fiction\",Behind Closed DoorsB.A. Paris\r\n1516,1552,682804,Michael Shaara,The Killer Angels,https://images.gr-assets.com/books/1355371689l/682804.jpg,4.3,58372,\"fiction, history\",A novel based on the action Battle of Gettysburg.\r\n1517,1553,30274,Laurell K. Hamilton,\"Circus of the Damned (Anita Blake, Vampire Hunter, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183340l/30274.jpg,4.16,73883,\"paranormal, fantasy\",\"When a rogue master vampire named Alejandro hits town and claims Anita\nBlake, an expert on undead creatures of the night, as his human servant, a\nwar of the undead breaks out between the interloper and Jean-Claude, the\ncity's Master Vampire.\"\r\n1518,1554,59264,Jonathan Stroud,Ptolemy's Gate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1528705796l/59264.jpg,4.24,63838,\"fantasy, fiction\",Ptolemy's GateJonathan Stroud\r\n1519,1555,29981,H.G. Wells,The Island of Dr. Moreau,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388230211l/29981.jpg,3.72,60346,\"horror, classics\",\"Written in 1896, The Island of Dr. Moreau is one of the earliest scientific\nromances. An instant sensation, it was meant as a commentary on Darwin’s\ntheory of evolution, which H. G. Wells stoutly believed. The story centers\non the depraved Dr. Moreau, who conducts unspeakable animal experiments on\na remote tropical island, with hideous, humanlike results. Edward Prendick,\nan English-man whose misfortunes bring him to the island, is witness to the\nBeast Folk’s strange civilization and their eventual terrifying regression.\nWhile gene-splicing and bioengineering are common practices today, readers\nare still astounded at Wells’s haunting vision and the ethical questions he\nraised a century before our time.\"\r\n1520,1556,13362536,Jennifer L. Armentrout,Opal,https://images.gr-assets.com/books/1348200300l/13362536.jpg,4.34,92014,\"paranormal, romance\",OpalJennifer L. Armentrout\r\n1521,1557,6512154,Dave Eggers,Zeitoun,https://images.gr-assets.com/books/1296580156l/6512154.jpg,4.08,55398,\"nonfiction, biography\",\"Describes how Abdulrahman Zeitoun remained in New Orleans during Hurricane\nKatrina, his subsequent efforts to help other victims, his disappearance a\nweek later, and the effect of these events on his wife Kathy and their\nchildren.\"\r\n1522,1558,6609765,Sharon M. Draper,Out of My Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347602096l/6609765.jpg,4.37,63756,\"fiction, contemporary\",\"Considered by many to be mentally retarded, a brilliant, impatient fifth-\ngrader with cerebral palsy discovers a technological device that will allow\nher to speak for the first time.\"\r\n1523,1559,12716010,Lauren Kate,Rapture,https://images.gr-assets.com/books/1362339818l/12716010.jpg,4.03,79360,\"paranormal, fantasy\",RaptureLauren Kate\r\n1524,1560,8564935,Amanda Hocking,Switched,https://images.gr-assets.com/books/1288828865l/8564935.jpg,3.89,45319,\"fantasy, paranormal\",SwitchedAmanda Hocking\r\n1525,1561,130440,\"Boris Pasternak, Max Hayward, Manya Harari, John Bayley\",Доктор Живаго,https://images.gr-assets.com/books/1385508725l/130440.jpg,4.03,59973,\"romance, classics\",\"Epic novel of post-revolutionary Russia focuses on the torments and dreams\nof a doctor-poet who attempts to avoid the struggles of his turbulent era\"\r\n1526,1563,15034320,Blake Crouch,Pines,https://images.gr-assets.com/books/1350740525l/15034320.jpg,3.88,34789,\"thriller, mystery\",\"The international runaway bestseller is now a Major Television Event from\nexecutive producer M. Night Shyamalan, starring Matt Dillon and premiering\nMay 14th on FOX. Secret service agent Ethan Burke arrives in Wayward Pines,\nIdaho, with a clear mission: locate and recover two federal agents who went\nmissing in the bucolic town one month earlier. But within minutes of his\narrival, Ethan is involved in a violent accident. He comes to in a\nhospital, with no ID, no cell phone, and no briefcase. The medical staff\nseems friendly enough, but something feels...off. As the days pass, Ethan's\ninvestigation into the disappearance of his colleagues turns up more\nquestions than answers. Why can't he get any phone calls through to his\nwife and son in the outside world? Why doesn't anyone believe he is who he\nsays he is? And what is the purpose of the electrified fences surrounding\nthe town? Are they meant to keep the residents in? Or something else out?\nEach step closer to the truth takes Ethan further from the world he thought\nhe knew, from the man he thought he was, until he must face a horrifying\nfact--he may never get out of Wayward Pines alive. 2013 International\nThriller Award Nominee\"\r\n1527,1564,7675,Michael Crichton,Disclosure,https://images.gr-assets.com/books/1398678136l/7675.jpg,3.76,57818,\"fiction, thriller\",\"An up-and-coming executive at the computer firm DigiCom, Tom Sanders is a\nman whose corporate future is certain. But after a closed-door meeting with\nhis new boss--a woman who is his former lover and has been promoted to the\nposition he expected to have--Sanders finds himself caught in a nightmarish\nweb of deceit in which he is branded the villain. As Sanders scrambles to\ndefend himself, he uncovers an electronic trail into the company's secrets\n--and begins to grasp that a cynical and manipulative scheme has been\ndevised to bring him down.\"\r\n1528,1565,12875355,P.D. James,Death Comes to Pemberley,https://images.gr-assets.com/books/1318936579l/12875355.jpg,3.21,65906,\"mystery, fiction\",\"Pemberley is thrown into chaos after Elizabeth Bennett's disgraced sister\nLydia arrives and announces that her husband Wickham has been murdered.\nReprint. 200,000 first printing.\"\r\n1529,1566,5246,Edith Wharton,Ethan Frome,https://images.gr-assets.com/books/1389822254l/5246.jpg,3.35,72421,\"classics, fiction\",\"A New England farmer eking out a hardscrabble existence on an unproductive\nfarm must choose between his duty to care for his difficult, invalid wife\nand his love for her vivacious young cousin. Reissue.\"\r\n1530,1567,5205,\"Jane Hamilton, Frank  Muller, C.J. Critt\",A Map of the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388228311l/5205.jpg,3.78,61347,\"fiction, contemporary\",\"While under the care of Alice Goodwin, a neighbor's child drowns in the\nGoodwins' pond, a devastating accident that has profound repercussions for\nthe entire Goodwin family, in a story set in a small Midwestern farm town\"\r\n1531,1568,27362503,Colleen Hoover,It Ends with Us,https://images.gr-assets.com/books/1470427482l/27362503.jpg,4.44,80433,\"romance, contemporary\",\"\"\"Lily hasn't always had it easy, but that's never stopped her from working\nhard for the life she wants. She's come a long way from the small town in\nMaine where she grew up--she graduated from college, moved to Boston, and\nstarted her own business. So when she feels a spark with a gorgeous\nneurosurgeon named Ryle Kincaid, everything in Lily's life suddenly seems\nalmost too good to be true ... But Ryle's complete aversion to\nrelationships is disturbing. Even as Lily finds herself becoming the\nexception to his 'no dating' rule, she can't help but wonder what made him\nthat way in the first place\"\"--\"\r\n1532,1569,143534,\"O. Henry, Lisbeth Zwerger\",The Gift of the Magi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348417439l/143534.jpg,4.07,66537,\"classics, fiction\",\"A young man and a young woman sell their most prized possessions to buy\neach other Christmas gifts, in a reissue of the famous tale of unselfish\nlove illustrated in subtle watercolors.\"\r\n1533,1570,7442,Tom Wolfe,The Electric Kool-Aid Acid Test,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205477l/7442.jpg,3.92,54848,\"fiction, nonfiction\",\"Describes the escapades of Ken Kesey and the Merry Pranksters, a drug-\nsaturated group of hippies who get in and out of trouble with the law.\"\r\n1534,1571,7437,\"William S. Burroughs, James Grauerholz, Barry  Miles\",The Naked Lunch,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407330990l/7437.jpg,3.46,55473,\"fiction, classics\",\"The Naked LunchWilliam S. Burroughs, James Grauerholz, Barry  Miles\"\r\n1535,1572,25100,\"Neil Gaiman, Kelley Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Erickson\",The Sandman: Dream Country,https://images.gr-assets.com/books/1402485052l/25100.jpg,4.28,67753,\"comics, fantasy\",\"The Sandman: Dream CountryNeil Gaiman, Kelley Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Erickson\"\r\n1536,1573,5360,John Grisham,A Painted House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924850l/5360.jpg,3.67,59974,\"fiction, mystery\",\"Racial tension, a forbidden love affair, and murder are seen through the\neyes of a seven-year-old boy in a 1950s Southern cotton-farming community.\"\r\n1537,1574,18423,\"Ursula K. Le Guin, Lech Jęczmyk\",The Left Hand of Darkness,https://images.gr-assets.com/books/1488213612l/18423.jpg,4.05,61888,\"fiction, fantasy\",\"On behalf of his government, an earthling travels to an alien, backward\nworld whose inhabitants are all ambisexual\"\r\n1538,1575,3213286,\"John Green, Maureen Johnson, Lauren Myracle\",Let It Snow: Three Holiday Romances,https://images.gr-assets.com/books/1489409554l/3213286.jpg,3.84,57632,\"romance, contemporary\",\"Let It Snow: Three Holiday RomancesJohn Green, Maureen Johnson, Lauren Myracle\"\r\n1539,1576,7912007,Stephen King,\"Full Dark, No Stars\",https://images.gr-assets.com/books/1327892855l/7912007.jpg,4.03,60672,\"horror, fiction\",\"A volume of four previously unpublished short works includes \"\"1922,\"\" in\nwhich a man explores his dark nature; \"\"Big Driver,\"\" in which a writer\nconfronts a stranger; \"\"Fair Extension,\"\" in which a cancer patient makes a\ndeal with the devil; and \"\"A Good Marriage,\"\" in which a woman makes a\nhorrifying discovery about her husband. Reprint. A best-selling book. 2\nmillion first printing.\"\r\n1540,1577,20696006,Atul Gawande,Being Mortal: Medicine and What Matters in the End,https://images.gr-assets.com/books/1408324949l/20696006.jpg,4.4,56510,\"nonfiction, science\",Being Mortal: Medicine and What Matters in the EndAtul Gawande\r\n1541,1578,32439,Dean Koontz,Intensity,https://images.gr-assets.com/books/1308458213l/32439.jpg,4.04,58062,\"horror, thriller\",IntensityDean Koontz\r\n1542,1579,6472246,Chelsea Handler,Chelsea Chelsea Bang Bang,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441901414l/6472246._SY475_.jpg,3.81,55355,\"memoir, nonfiction\",\"In these personal essays, the hilarious comedian and Chelsea Lately host\nreflects on family, love life, and the absurdities of adulthood with\n\"\"cheeky candor\"\" and signature wit (Philadelphia Inquirer). Life doesn't get\nmore hilarious than when Chelsea Handler takes aim with her irreverent wit.\nWho else would send all-staff emails to smoke out the dumbest people on her\nshow? Now, in this new collection of original essays, the #1 bestselling\nauthor of Are You There, Vodka? It's Me, Chelsea delivers one laugh-out-\nloud moment after another as she sets her sights on the ridiculous side of\nchildhood, adulthood, and daughterhood. Family moments are fair game,\nwhether it's writing a report on Reaganomics to earn a Cabbage Patch doll,\nor teaching her father social graces by ordering him to stay indoors. It's\nopen season on her love life, from playing a prank on her boyfriend (using\na ravioli, a fake autopsy, and the Santa Monica pier) to adopting a dog so\nshe can snuggle with someone who doesn't talk. And everyone better duck for\ncover when her beach vacation turns into matchmaking gone wild.\nOutrageously funny and deliciously wicked, Chelsea Chelsea Bang Bang is\ngood good good good! Chelsea Handler on . . . Being unpopular: \"\"My parents\ncouldn't have been more unreasonable when it came to fads or clothes that\nweren't purchased at a pharmacy.\"\" Living with her boyfriend: \"\"He's similar\nto a large toddler, the only difference being he doesn't cry when he wakes\nup.\"\" Appreciating her brother: \"\"He's a certified public accountant, and I\nhave a real life.\"\" Arm-wrestling a maid of honor: \"\"It wasn't her strength\nthat intimidated me. It was the starry way her eyes focused on me, like\nMike Tyson getting ready to feed.\"\"\"\r\n1543,1580,37793,\"Henrik Ibsen, Michael   Meyer\",Et dukkehjem,https://images.gr-assets.com/books/1427119396l/37793.jpg,3.69,69450,\"fiction, classics\",\"Et dukkehjemHenrik Ibsen, Michael   Meyer\"\r\n1544,1581,12658,James A. Michener,Hawaii,https://images.gr-assets.com/books/1415585664l/12658.jpg,4.18,59963,\"fiction, history\",\"The epic saga of the fiftieth state traces its fascinating history from the\nfiery volcanoes that formed the islands to the strength and character of\nthe original Polynesians to the early nineteenth-century arrival of\nAmerican missionaires, in a multi-faceted historical novel. Reprint. 40,000\nfirst printing..\"\r\n1545,1582,48328,Richard Yates,Revolutionary Road,https://images.gr-assets.com/books/1353721885l/48328.jpg,3.89,56550,\"fiction, classics\",\"The devastating effects of work, adultery, rebellion, and selfdeception\nslowly destroy the once successful marriage of Frank and April Wheeler, a\nsuburban American couple. Reprint. 12,500 first printing.\"\r\n1546,1583,25373,\"Rachel Cohn, David Levithan\",Nick & Norah's Infinite Playlist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425188149l/25373.jpg,3.73,60372,\"romance, contemporary\",\"High school student Nick O'Leary, member of a rock band, meets college-\nbound Norah Silverberg and asks her to be his girlfriend for five minutes\nin order to avoid his ex-sweetheart, in a tie-in title which includes an\neight-page insert of photos from the film. Original.\"\r\n1547,1584,18545,\"Tom Stoppard, Henry Popkin\",Rosencrantz and Guildenstern are Dead,https://images.gr-assets.com/books/1338735611l/18545.jpg,4.06,67077,\"fiction, classics\",\"Two minor characters from \"\"Hamlet\"\" offer a novel view of the melancholy\nDane\"\r\n1548,1585,9409458,Maggie Stiefvater,Forever,https://images.gr-assets.com/books/1285771367l/9409458.jpg,3.91,85034,\"fantasy, paranormal\",\"A human girl and her werewolf boyfriend must fight for their love as death\ncomes closing in.\"\r\n1549,1586,607639,Alex Garland,The Beach,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348547768l/607639.jpg,3.91,52333,\"fiction, travel\",\"The Khao San Road, Bangkok - first stop for the hordes of rootless young\nWesterners traveling in Southeast Asia. On Richard's first night there, in\na low-budget guest house, a fellow traveler slashes his wrists, bequeathing\nto Richard a meticulously drawn map to \"\"the Beach.\"\" The Beach, as Richard\nhas come to learn, is a subject of legend among young travelers in Asia: a\nlagoon hidden from the sea, with white sand and coral gardens, freshwater\nfalls surrounded by jungle, plants untouched for a thousand years. There,\nit is rumored, a carefully selected international few have settled in a\ncommunal Eden. Haunted by the figure of Mr. Duck - the name by which the\nThai police have identified the dead man - and by his own obsession with\nVietnam movies, Richard sets off with a young French couple to an island\nhidden away in an archipelago forbidden to tourists. They discover the\nBeach, and it is as beautiful and idyllic as it is reputed to be. Yet over\ntime it becomes clear that Beach culture, as Richard calls it, has\ntroubling, even deadly, undercurrents.\"\r\n1550,1587,6617928,\"Beth Hoffman, Jenna Lamia\",Saving CeeCee Honeycutt,https://images.gr-assets.com/books/1348364490l/6617928.jpg,3.92,54341,fiction,\"Saving CeeCee HoneycuttBeth Hoffman, Jenna Lamia\"\r\n1551,1588,10407279,Charlaine Harris,Deadlocked,https://images.gr-assets.com/books/1357995380l/10407279.jpg,3.65,65932,\"fantasy, paranormal\",DeadlockedCharlaine Harris\r\n1552,1589,10579,Stephen King,Everything's Eventual: 14 Dark Tales,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922876l/10579.jpg,3.94,60932,\"horror, fiction\",\"The acclaimed #1 New York Times and undisputed King of Horror Stephen King\noffers another spine-tingling compilation of short stories sure to keep a\nreader up late at night. King is in terrifying top form in these short\nstories, taking readers down a road less traveled (for good reason) in the\nblockbuster ebook “Riding the Bullet”; bad table service turns bloody when\nyou stop in for “Lunch at the Gotham Café”; and terror becomes déjà vu all\nover again when you get “That Feeling, You Can Only Say What It Is in\nFrench”—along with eleven more stories that will keep you awake until\ndaybreak. Enter a nightmarish mindscape of unrelenting horror and shocking\nrevelations that could only come from the imagination of the greatest\nstoryteller of our time.\"\r\n1553,1590,91244,Beverly Cleary,Beezus and Ramona,https://images.gr-assets.com/books/1408924681l/91244.jpg,3.97,75987,\"fiction, classics\",\"Ramona Quimby is the youngest of all the famous characters in Mrs. Cleary's\nwonderful Henry Huggins stories. She is also far and away the most deadly.\nReaders of the earlier books will remember that Ramona has always been a\nmenace to Beezus, her older sister, to Henry, and to his dog Ribsy. It is\nnot that Ramona deliberately sets out to make trouble for other people. She\nsimply has more imagination than is healthy for any one person. In this\nbook Ramona and her imagination really come into their own. Starting with a\nfairly mild encounter with the librarian, which is harder on Beezus than\nanyone else, Ramona goes from strength to strength, winding up by inviting\nher entire kindergarten class to a part at her home without mentioning it\nto her mother. The riot that ensues is probably the most hilarious episode\nin this extremely funny book, which proves that Mrs. Cleary's imagination\nis almost as lively as Ramona's.\"\r\n1554,1591,13667,Ursula K. Le Guin,The Farthest Shore,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200537l/13667.jpg,4.11,65626,\"fantasy, fiction\",The Farthest ShoreUrsula K. Le Guin\r\n1555,1592,7667,Michael Crichton,Airframe,https://images.gr-assets.com/books/1405420599l/7667.jpg,3.66,59229,\"fiction, thriller\",\"A fatal mid-air collision involving a commercial airliner prompts a\nfrantic, desperate investigation into the causes of the accident, in a\nthriller exploring the issue of safety and security in the aircraft\nindustry.\"\r\n1556,1593,13812,Raymond E. Feist,Magician,https://images.gr-assets.com/books/1408317983l/13812.jpg,4.17,62432,\"fantasy, fiction\",\"At Crydee, a frontier outpost in the tranquil Kingdom of the Isles, an\norphan boy, Pug, is apprenticed to a master magician and the destinies of\ntwo worlds are changed forever.\"\r\n1557,1594,854757,Jennifer Crusie,Bet Me,https://images.gr-assets.com/books/1316129534l/854757.jpg,3.95,70737,\"romance, contemporary\",Bet MeJennifer Crusie\r\n1558,1595,318431,Nelson Mandela,Long Walk to Freedom: The Autobiography of Nelson Mandela,https://images.gr-assets.com/books/1327997342l/318431.jpg,4.31,43927,\"history, nonfiction\",Long Walk to Freedom: The Autobiography of Nelson MandelaNelson Mandela\r\n1559,1596,20707959,John Grisham,Gray Mountain,https://images.gr-assets.com/books/1403704671l/20707959.jpg,3.52,37379,\"fiction, mystery\",\"Losing her job at New York City's largest law firm in the weeks after the\ncollapse of Lehman Brothers, Samantha becomes an unpaid intern in a small\nAppalachian community, where she stumbles upon dangerous secrets.\"\r\n1560,1597,122,Bryce Courtenay,The Power of One,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184360l/122.jpg,4.34,57312,\"fiction, classics\",\"A young boy becomes an inspiring symbol for black and white as he\nexperiences an odyssey through pro-Nazi South Africa during World War II.\nReissue. Movie tie-in. NYT.\"\r\n1561,1598,29999,Dashiell Hammett,The Maltese Falcon,https://images.gr-assets.com/books/1306421260l/29999.jpg,3.92,58742,\"mystery, fiction\",A murder involves Sam Spade in a dangerous search for a valuable statue\r\n1562,1599,8949352,Kristin Hannah,Night Road,https://images.gr-assets.com/books/1282369257l/8949352.jpg,4.17,58028,\"fiction, romance\",\"When stay-at-home mom Jude Farraday takes in Lexi, a former foster child\nwith a dark past, the girl becomes inseparable from Jude's teenage twins\nbefore a shattering accident that rips the family apart and sets the stage\nfor a sobering confrontation years later. By the best-selling author of\nWinter Garden. 400,000 first printing.\"\r\n1563,1600,220970,Lee Child,Tripwire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251144l/220970.jpg,4.07,55251,\"thriller, fiction\",\"Settling into a peaceful life in Key West, Reacher's world is turned upside\ndown when a stranger comes looking for him, a man who turns up dead in the\nOld Town cemetery and who leads him on a perilous trail to New York, where\nhe confronts an alluring woman from his past, and a deadly opponent.\nReissue.\"\r\n1564,1601,26329,Daniel Goleman,Emotional Intelligence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185411l/26329.jpg,3.98,47661,\"business, nonfiction\",Emotional IntelligenceDaniel Goleman\r\n1565,1602,6585201,Jim Butcher,Changes,https://images.gr-assets.com/books/1304027244l/6585201.jpg,4.54,66402,\"fantasy, fiction\",ChangesJim Butcher\r\n1566,1603,773951,\"Munro Leaf, Robert Lawson\",The Story of Ferdinand,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348133512l/773951.jpg,4.35,70961,\"classics, fiction\",\"The Story of FerdinandMunro Leaf, Robert Lawson\"\r\n1567,1604,270805,Ellen Hopkins,Impulse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427002059l/270805.jpg,4.29,59804,\"poetry, fiction\",\"Sometimes you don't wake up. But if you happen to, you know things will\nnever be the same. Three lives, three different paths to the same\ndestination: Aspen Springs, a psychiatric hospital for those who have\nattempted the ultimate act -- suicide. Vanessa is beautiful and smart, but\nher secrets keep her answering the call of the blade. Tony, after suffering\na painful childhood, can only find peace through pills. And Conner,\noutwardly, has the perfect life. But dig a little deeper and find a boy who\nis in constant battle with his parents, his life, himself. In one instant\neach of these young people decided enough was enough. They grabbed the\nblade, the bottle, the gun -- and tried to end it all. Now they have a\nsecond chance, and just maybe, with each other's help, they can find their\nway to a better life -- but only if they're strong and can fight the demons\nthat brought them here in the first place.\"\r\n1568,1605,6440,Walter Scott,Ivanhoe,https://images.gr-assets.com/books/1405336818l/6440.jpg,3.75,65828,\"classics, fiction\",IvanhoeWalter Scott\r\n1569,1606,86663,Janet Evanovich,Ten Big Ones,https://images.gr-assets.com/books/1171076278l/86663.jpg,4.13,76052,\"mystery, fiction\",\"In a new adventure by the author of To the Nines, bounty hunter Stephanie\nPlum witnesses a gang-executed robbery and police officer shooting and\nfinds herself targeted by a California-based killer looking to claim the\nprice that is subsequently placed on her head. Reprint.\"\r\n1570,1607,32506,Michael Connelly,The Poet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442855718l/32506._SY475_.jpg,4.19,56191,\"mystery, crime\",\"FROM THE #1 BESTSELLING AUTHOR OF THE HARRY BOSCH AND LINCOLN LAWYER SERIES\nAn electrifying standalone thriller that breaks all the rules! With an\nintroduction by Stephen King. Death is reporter Jack McEvoy's beat: his\ncalling, his obsession. But this time, death brings McEvoy the story he\nnever wanted to write--and the mystery he desperately needs to solve. A\nserial killer of unprecedented savagery and cunning is at large. His\ntargets: homicide cops, each haunted by a murder case he couldn't crack.\nThe killer's calling card: a quotation from the works of Edgar Allan Poe.\nHis latest victim is McEvoy's own brother. And his last...may be McEvoy\nhimself.\"\r\n1571,1608,7719245,Kiersten White,Paranormalcy,https://images.gr-assets.com/books/1496938681l/7719245.jpg,3.91,79959,\"paranormal, fantasy\",ParanormalcyKiersten White\r\n1572,1609,7351574,Mark Cotta Vaz,Eclipse: The Official Illustrated Movie Companion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442369092l/7351574._SX318_.jpg,4.44,50084,\"fantasy, romance\",Eclipse: The Official Illustrated Movie CompanionMark Cotta Vaz\r\n1573,1610,13127599,Adriana Trigiani,The Shoemaker's Wife,https://images.gr-assets.com/books/1329256279l/13127599.jpg,3.98,53378,\"fiction, romance\",The Shoemaker's WifeAdriana Trigiani\r\n1574,1611,784911,Brandon Mull,Rise of the Evening Star,https://images.gr-assets.com/books/1386633982l/784911.jpg,4.16,79266,\"fantasy, fiction\",\"When Kendra and Seth return to Fablehaven, they discover that Grandpa\nSorenson has asked three specialists to protect the property from the\nSociety of the Evening Star, a group determined to steal an artifact of\ngreat power from the preserve. Reprint.\"\r\n1575,1612,10305231,\"Nora Roberts, MacLeod Andrews\",The Next Always,https://images.gr-assets.com/books/1491591796l/10305231.jpg,4.11,54777,\"romance, fiction\",\"The Next AlwaysNora Roberts, MacLeod Andrews\"\r\n1576,1613,2195464,\"Haruki Murakami, Philip Gabriel\",走ることについて語るときに僕の語ること [Hashiru koto ni tsuite kataru toki ni boku no kataru koto],https://images.gr-assets.com/books/1473397159l/2195464.jpg,3.79,49344,\"memoir, nonfiction\",\"本书内容包括:2005年8月5日夏威夷州考爱岛谁能够笑话来米克·贾格尔呢、2005年8月14日夏威夷州考爱岛人是如何成为跑步小说家的、2005年9月1\n日夏威夷州考爱岛在盛夏的雅典跑第一个42公里等。\"\r\n1577,1614,8680278,Jenny Han,We'll Always Have Summer,https://images.gr-assets.com/books/1327054226l/8680278.jpg,4.17,68112,\"romance, contemporary\",\"The summer after her first year of college, Isobel \"\"Belly\"\" Conklin is faced\nwith a choice between Jeremiah and Conrad Fisher, brothers she has always\nloved, when Jeremiah proposes marriage and Conrad confesses that he still\nloves her.\"\r\n1578,1615,6480781,\"Andre Agassi, J.R. Moehringer\",Open: An Autobiography,https://images.gr-assets.com/books/1320520930l/6480781.jpg,4.18,47185,\"memoir, biography\",\"A candid memoir by the tennis champion includes coverage of his Grand Slam\nwins, establishment of a charitable foundation for underprivileged children\nand marriage to Stefanie Graf. Reprint. A #1 best-seller and New York Times\nNotable Book.\"\r\n1579,1616,136782,Anthony Horowitz,Alex Rider: Stormbreaker,https://images.gr-assets.com/books/1288354739l/136782.jpg,3.97,67602,\"mystery, fiction\",\"After the death of the uncle who had been his guardian, fourteen-year-old\nAlex Rider is coerced to continue his uncle's dangerous work for Britain's\nintelligence agency, MI6.\"\r\n1580,1617,21745,\"Lee Child, Dick Hill\",Without Fail ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328000911l/21745.jpg,4.16,53411,\"thriller, fiction\",\"Without Fail Lee Child, Dick Hill\"\r\n1581,1618,95617,\"Francine Rivers, Richard Ferrone\",A Voice in the Wind,https://images.gr-assets.com/books/1459567327l/95617.jpg,4.6,55556,\"christian, fiction\",\"A Voice in the WindFrancine Rivers, Richard Ferrone\"\r\n1582,1620,14817,Philip K. Dick,A Scanner Darkly ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388737865l/14817.jpg,4.04,54014,\"fiction, classics\",\"Bob Arctor is a junkie and a drug-dealer, both using and selling the mind-\naltering Substance D. Fred is a law enforcement agent, tasked with bringing\nBob down. It sounds like a standard case. The only problem is that Bob and\nFred are the same person. In order to infiltrate the drug ring he hopes to\nbring down, Fred has had to use Substance D, but Substance D, or \"\"Slow\nDeath,\"\" causes the consciousness to split in two, creating distinct\npersonalities that are entirely unaware of the other's existence. Now, Bob\nmust keep from being caught by Fred, while Fred must keep his suspicious\nsuperiors at bay. In this semi-autobiographical novel, Dick looks back on\nhis own drug abuse and his own friends who he lost to drugs. By turns\nthrilling, mind-bending, laught-out-loud funny, and heart-wrenchingly sad,\nA Scanner Darkly is an award-winning book made into a cult film and may\njust be Dick's best novel.\"\r\n1583,1621,6452796,Daniel H. Pink,Drive: The Surprising Truth About What Motivates Us,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348931599l/6452796.jpg,3.95,55889,\"business, psychology\",\"Challenges popular misconceptions to reveal what actually motivates people\nand how to harness that knowledge to promote personal and professional\nfulfillment.\"\r\n1584,1622,162898,Mark Twain,A Connecticut Yankee in King Arthur's Court,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348239402l/162898.jpg,3.76,50112,\"classics, fantasy\",A stoical New Englander is transported to sixth-century Camelot\r\n1585,1623,106069,\"Jeph Loeb, Tim Sale, Gregory Wright, Richard Starkings\",Batman: The Long Halloween,https://images.gr-assets.com/books/1350137101l/106069.jpg,4.29,54781,\"comics, fiction\",\"Batman races against time as he tries to uncover who the mysterious\nmurderer who kills only on holidays is before the next victim is taken.\"\r\n1586,1624,298275,\"Jean-Paul Sartre, Lloyd Alexander, Hayden Carruth\",La Nausée,https://images.gr-assets.com/books/1377674928l/298275.jpg,3.91,50876,\"philosophy, fiction\",\"The diary of Antoine Roquentin follows his thoughts as he gradually sinks\ninto a metaphysical crisis of despair, in this the first novel by the\nleader of French Existentialism\"\r\n1587,1626,5217282,Brandon Mull,\"Fablehaven: Secrets of the Dragon Sanctuary (Fablehaven, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284893l/5217282.jpg,4.35,60744,\"fantasy, fiction\",\"When Kendra discovers that the key to a vault that holds one of the hidden\nartifacts is in the dragon sanctuary of Wyrmroost, the Knights of the Dawn\nprepare to enter the extremely dangerous sanctuary in order to get the key.\"\r\n1588,1627,3507,Janet Evanovich,Twelve Sharp,https://images.gr-assets.com/books/1316727699l/3507.jpg,4.14,74747,\"mystery, fiction\",\"Bounty hunter Stephanie Plum's typically chaotic life is thrown into\ngreater turmoil by the appearance of a mysterious female stalker with a\nclose connection to Ranger. By the best-selling author of Ten Big Ones and\nTo the Nines. Reprint.\"\r\n1589,1628,12287209,Hugh Howey,Wool,https://images.gr-assets.com/books/1327889474l/12287209.jpg,4.12,59191,\"fiction, fantasy\",\"In a future toxic landscape, a community that lives in an underground silo\nis rocked by the desire of Sheriff Holston, who has upheld the group's\nrules for years, to go outside, setting in motion events that kindle the\nfire of revolution.\"\r\n1590,1629,13662,Ursula K. Le Guin,The Tombs of Atuan,https://images.gr-assets.com/books/1417900879l/13662.jpg,4.07,61457,\"fantasy, fiction\",\"The second novel in the renowned Earthsea series from Ursula K. LeGuin When\nyoung Tenar is chosen as high priestess to the ancient and nameless Powers\nof the Earth, everything is taken away -- home, family, possessions, even\nher name. For she is now Arha, the Eaten One, guardian of the ominous Tombs\nof Atuan. While she is learning her way through the dark labyrinth, a young\nwizard, Ged, comes to steal the Tombs' greatest hidden treasure, the Ring\nof Erreth-Akbe. But Ged also brings with him the light of magic, and\ntogether, he and Tenar escape from the darkness that has become her domain.\nWith millions of copies sold, Ursula K. Le Guin's Earthsea Cycle has earned\na treasured place on the shelves of fantasy lovers everywhere. Complex,\ninnovative, and deeply moral, this quintessential fantasy sequence has been\ncompared with the work of J.R.R. Tolkien and C.S. Lewis, and has helped\nmake Le Guin one of the most distinguished fantasy and science fiction\nwriters of all time.\"\r\n1591,1630,3475161,Jim Butcher,Turn Coat,https://images.gr-assets.com/books/1304027128l/3475161.jpg,4.45,64089,\"fantasy, fiction\",\"Accused of treason against the Wizards of the White Council, Warden Morgan\ngoes in search of Harry Dresden in a desperate attempt to clear his name\nand stop the deadly punishment from taking place in this latest thrilling\naddition to the Dresden Files series. Reprint. A #1 best-seller.\"\r\n1592,1631,608474,\"Arthur Conan Doyle, Peter Ackroyd, Ed Glinert\",The Sign of Four,https://images.gr-assets.com/books/1299346921l/608474.jpg,3.96,60469,\"classics, mystery\",\"Having received cryptic messages and valuable pearls after her father's\nsudden disappearance, a young woman asks Sherlock Holmes to solve the\nmystery.\"\r\n1593,1632,967494,Jan Brett,РУКАВИЧКА: Українська народна казка,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348985792l/967494.jpg,4.23,66701,\"fiction, classics\",\"When Nicki drops one of his new white mittens in the snow, he doesn't even\nnotice it's missing. One by one, the woodland animals discover the mitten\nand crawl inside, each one larger than the last. Brett's classic picture\nbook is available as a sturdy board book.\"\r\n1594,1633,31338,Anne Rice,Memnoch The Devil,https://images.gr-assets.com/books/1301778006l/31338.jpg,3.73,62641,\"horror, fantasy\",\"The best-selling fifth novel featuring Lestat the vampire pits the\nredoubtable anti-hero against a most dangerous adversary, Memnoch, a\nmysterious being who claims to be the Devil. Reprint.\"\r\n1595,1634,2402971,Michael Scott,The Magician: The Secrets of The Immortal Nicholas Flamel,https://images.gr-assets.com/books/1320396250l/2402971.jpg,4.09,67539,\"fantasy, fiction\",\"Fifteen-year-old twins Sophie and Josh Newman continue their magical\ntraining in Paris with Nicholas Flamel, Scatty, and the Comte de Sant\nGermaine, pursued by Doctor Dee and the immortal Niccolo Machiavelli.\"\r\n1596,1635,766955,\"Doreen Cronin, Betsy Lewin\",\"Click, Clack, Moo: Cows That Type\",https://images.gr-assets.com/books/1423222939l/766955.jpg,4.23,67171,fiction,\"When Farmer Brown's cows find a typewriter in the barn they start making\ndemands, and go on strike when the farmer refuses to give them what they\nwant.\"\r\n1597,1636,1412138,Patricia Briggs,Iron Kissed,https://images.gr-assets.com/books/1358229529l/1412138.jpg,4.36,83051,\"fantasy, paranormal\",\"Shapeshifting mechanic Mercy Thompson finds her loyalty sorely tested when\nher former boss and mentor is arrested for murder and left to rot behind\nbars by his own kind, while trying to choose between Sam and Adam, the two\nwerewolves she loves. Original.\"\r\n1598,1637,9378297,Kendare Blake,Anna Dressed in Blood,https://images.gr-assets.com/books/1398637405l/9378297.jpg,3.96,72732,\"horror, paranormal\",Anna Dressed in BloodKendare Blake\r\n1599,1638,253058,\"Terry Goodkind, Dick Hill\",\"Temple of the Winds (Sword of Truth, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347597249l/253058.jpg,4.03,57476,\"fantasy, fiction\",\"Temple of the Winds (Sword of Truth, #4)Terry Goodkind, Dick Hill\"\r\n1600,1639,310146,Avi,The True Confessions of Charlotte Doyle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348243806l/310146.jpg,3.81,67608,\"fiction, classics\",The True Confessions of Charlotte DoyleAvi\r\n1601,1640,4929705,Robert Goolrick,A Reliable Wife,https://images.gr-assets.com/books/1404576577l/4929705.jpg,3.25,58348,\"fiction, mystery\",A Reliable WifeRobert Goolrick\r\n1602,1641,248596,Ray Bradbury,Something Wicked This Way Comes,https://images.gr-assets.com/books/1409596011l/248596.jpg,3.95,64813,\"horror, fantasy\",\"The carnival rolls in sometime after midnight, ushering in Halloween a week\nearly. The shrill siren song of a calliope beckons to all with a seductive\npromise of dreams and youth regained. In this season of dying, Cooger &\nDark's Pandemonium Shadow Show has come to Green Town, Illinois, to destroy\nevery life touched by its strange and sinister mystery. And two boys will\ndiscover the secret of its smoke, mazes, and mirrors; two friends who will\nsoon know all too well the heavy cost of wishes. . .and the stuff of\nnightmare. Few American novels written this century have endured in the\nheart and memory as has Ray Bradbury's unparalleled literary classic\nSOMETHING WICKED THIS WAY COMES. For those who still dream and remember,\nfor those yet to experience the hypnotic power of its dark poetry, step\ninside. The show is about to begin.The carnival rolls in sometime after\nmidnight, ushering in Halloween a week early. The shrill siren song of a\ncalliope beckons to all with a seductive promise of dreams and youth\nregained. In this season of dying, Cooger & Dark's Pandemonium Shadow Show\nhas come to Green Town, Illinois, to destroy every life touched by its\nstrange and sinister mystery. And two boys will discover the secret of its\nsmoke, mazes, and mirrors; two friends who will soon know all too well the\nheavy cost of wishes. . .and the stuff of nightmare. Few American novels\nwritten this century have endured in the heart and memory as has Ray\nBradbury's unparalleled literary classic SOMETHING WICKED THIS WAY COMES.\nFor those who still dream and remember, for those yet to experience the\nhypnotic power of its dark poetry, step inside. The show is about to begin.\"\r\n1603,1642,11334,Toni Morrison,Song of Solomon,https://images.gr-assets.com/books/1451448230l/11334.jpg,4.01,59756,\"fiction, classics\",\"Macon Dead, Jr., called \"\"Milkman,\"\" the son of the wealthiest African\nAmerican in town, moves from childhood into early manhood, searching, among\nthe disparate, mysterious members of his family, for his life and reality.\nWinner of the National Book Critics Circle Award. Reader's Guide available.\nReprint. 50,000 first printing.\"\r\n1604,1643,318525,Tom Clancy,Red Storm Rising,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173729031l/318525.jpg,4.14,54930,\"fiction, thriller\",\"When Moslem fundamentalists destroy a key Soviet oil complex, the Russians\ninitiate a plan of diplomatic trickery and military build-up in preparation\nfor their seizure of Persian Gulf oil\"\r\n1605,1644,227571,Leif Enger,Peace Like a River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436139976l/227571._SY475_.jpg,3.98,59642,\"fiction, contemporary\",\"Eleven-year-old Reuben shares the story of how his father, trying to raise\nhis sons alone in 1960s Minnesota, takes their family on a quest to find\nReuben's older brother, who has been charged with murder.\"\r\n1606,1645,22285,Chuck Palahniuk,Rant: An Oral Biography of Buster Casey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388248283l/22285.jpg,3.82,49255,\"fiction, contemporary\",Rant: An Oral Biography of Buster CaseyChuck Palahniuk\r\n1607,1646,9534,Orson Scott Card,Shadow of the Hegemon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1537335644l/9534._SY475_.jpg,3.93,58991,\"fiction, fantasy\",\"The War is over, won by Ender Wiggin and his team of brilliant child-\nwarriors. The enemy is destroyed, the human race is saved. Ender himself\nrefuses to return to the planet, but his crew has gone home to their\nfamilies, scattered across the globe. The battle school is no more. But\nwith the external threat gone, the Earth has become a battlefield once\nmore. The children of the Battle School are more than heroes; they are\npotential weapons that can bring power to the countries that control them.\nOne by one, all of Ender's Dragon Army are kidnapped. Only Bean escapes;\nand he turns for help to Ender's brother Peter. Peter Wiggin, Ender's older\nbrother, has already been manipulating the politics of Earth from behind\nthe scenes. With Bean's help, he will eventually rule the world. Shadow of\nthe Hegemon is the second novel in Orson Scott Card's Shadow Series.\"\r\n1608,1647,7704143,أحمد مراد,تراب الماس,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1265525892l/7704143.jpg,4.09,43016,\"fiction, mystery\",تراب الماسأحمد مراد\r\n1609,1648,505304,\"Janette Sebring Lowrey, Gustaf Tenggren\",The Poky Little Puppy (a Little Golden Book),https://images.gr-assets.com/books/1320424154l/505304.jpg,4.08,62571,\"fiction, classics\",\"The Poky Little Puppy (a Little Golden Book)Janette Sebring Lowrey, Gustaf Tenggren\"\r\n1610,1649,5196,Maeve Binchy,Tara Road,https://images.gr-assets.com/books/1403194637l/5196.jpg,3.88,60154,\"romance, fiction\",Tara RoadMaeve Binchy\r\n1611,1650,37677,Jack London,The Call of the Wild / White Fang,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168977937l/37677._SY475_.jpg,4.08,61126,\"classics, fiction\",\"The experiences of animals struggling for survival in the frozen wilderness\nare portrayed in a story about Buck, a sled dog in the Klondike, and a tale\nabout White Fang, a cruelly abused part dog and part wolf, who wins the\naffection of a sympathetic master. Reissue.\"\r\n1612,1651,13188676,Tahereh Mafi,\"Ignite Me (Shatter Me, #3)\",https://images.gr-assets.com/books/1375972497l/13188676.jpg,4.44,83767,\"romance, fantasy\",\"The heart-stopping conclusion to the New York Times bestselling Shatter Me\nseries, which Ransom Riggs, author of Miss Peregrine's Home for Peculiar\nChildren and Hollow City, called \"\"a thrilling, high-stakes saga of self-\ndiscovery and forbidden love.\"\" With Omega Point destroyed, Juliette doesn't\nknow if the rebels, her friends, or even Adam are alive. But that won't\nkeep her from trying to take down The Reestablishment once and for all. Now\nshe must rely on Warner, the handsome commander of Sector 45. The one\nperson she never thought she could trust. The same person who saved her\nlife. He promises to help Juliette master her powers and save their dying\nworld . . . but that's not all he wants with her. The Shatter Me series is\nperfect for fans who crave action-packed young adult novels with\ntantalizing romance like Divergent by Veronica Roth, The Hunger Games by\nSuzanne Collins, and Legend by Marie Lu. Tahereh Mafi has created a\ncaptivating and original story that combines the best of dystopian and\nparanormal, and was praised by Publishers Weekly as \"\"a gripping read from\nan author who's not afraid to take risks.\"\" Now this final book brings the\nseries to a shocking and satisfying end.\"\r\n1613,1652,568645,Ally Carter,Cross My Heart and Hope to Spy,https://images.gr-assets.com/books/1342448094l/568645.jpg,4.13,69733,\"romance, mystery\",\"After the excitement of the fall, all Cammie Morgan wants is peaceful\nsemester at school. But that’s easier said than done when you’re a CIA\nlegacy and go to the premier school in the world...for spies. Despite\nCammie's best intentions, trouble crops up quickly. Cammie, Bex, and Liz\nlearn that the Gallagher Academy is hosting guests from another spy school\n-- a school that is known to the world as the Ethan Frome Academy--a secret\nspy school for boys. After her fiasco with Josh last fall, Cammie isn't\nsure she's ready for daily encounters with boy spies – especially after she\nmeets Zach -- an incorrigibe cutie who everyone thinks is just perfect.\nCammie is right to be worried about their new guests. Soon after the boys’\narrival, she's blamed for a series of security breaches that leave the\nschool's top-secret status at risk. And the perfectly crushable Zach is her\nprime suspect. The Gallagher Girls will need to use all their skills to\ninvestigate the Frome Boys. Even though they're confident about their guy-\nspying (as if they haven't done it before!), the playing field is level\nthis time, and the stakes for Cammie’s heart—and her beloved school— are\nhigher than ever.\"\r\n1614,1653,285205,Patricia Briggs,Blood Bound,https://images.gr-assets.com/books/1358229157l/285205.jpg,4.31,84677,\"fantasy, paranormal\",\"Mechanic Mercy Thompson repays a favor by using her shapeshifting abilities\nto protect her vampire friend Stefan when he must deliver a message to\nanother of his kind who is possessed by a vengeful demon. Original.\"\r\n1615,1654,12216302,Jim Butcher,Cold Days,https://images.gr-assets.com/books/1345145377l/12216302.jpg,4.51,57779,\"fantasy, fiction\",\"Brought back to the mortal world as the Winter Knight to Mab, Harry Dresden\nis at the command of the Queen of Air and Darkness and is expected to kill\nan immortal, as he begins to realize there is a serious threat to endanger\ncountless innocent victims unless he finds his way out of eternal\nsubservience.\"\r\n1616,1655,17204,Kate Jacobs,The Friday Night Knitting Club,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187371l/17204.jpg,3.41,60812,\"fiction, contemporary\",The Friday Night Knitting ClubKate Jacobs\r\n1617,1656,38743,James Herriot,All Things Bright and Beautiful,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197805l/38743.jpg,4.3,57626,\"memoir, nonfiction\",\"A tie-in to the upcoming PBS Masterpiece series and Christmas special. The\nsecond volume in the multimillion copy bestselling series. Millions of\nreaders have delighted in the wonderful storytelling and everyday miracles\nof James Herriot in the fifty years since his animal stories were first\nintroduced to the world. All Things Bright and Beautiful is the beloved\nsequel to Herriot's first collection, All Creatures Great and Small, and\npicks up as Herriot, now newly married, journeys among the remote hillside\nfarms and valley towns of the Yorkshire Dales, caring for their\ninhabitants—both two- and four-legged. Throughout, Herriot's deep\ncompassion, humor, and love of life shine as we laugh, cry, and delight in\nthe portraits of his many varied animal patients and their equally varied\nowners.\"\r\n1618,1657,6759,David Foster Wallace,Infinite Jest,https://images.gr-assets.com/books/1446876799l/6759.jpg,4.31,46742,\"fiction, classics\",\"A gargantuan, mind-altering comedy about the Pursuit of Happiness in\nAmerica Set in an addicts' halfway house and a tennis academy, and\nfeaturing the most endearingly screwed-up family to come along in recent\nfiction, Infinite Jest explores essential questions about what\nentertainment is and why it has come to so dominate our lives; about how\nour desire for entertainment affects our need to connect with other people;\nand about what the pleasures we choose say about who we are. Equal parts\nphilosophical quest and screwball comedy, Infinite Jest bends every rule of\nfiction without sacrificing for a moment its own entertainment value. It is\nan exuberant, uniquely American exploration of the passions that make us\nhuman - and one of those rare books that renew the idea of what a novel can\ndo.\"\r\n1619,1658,18297707,Emma Chase,Tangled,https://images.gr-assets.com/books/1375808439l/18297707.jpg,4.12,59705,\"romance, contemporary\",\"Katherine Brooks, gorgeous and ambitious, confounds Drew Evans when she\nbegins working at his father's investment firm, because she won't jump into\nbed with him and he fears he might not be able to compete with her at work.\nOriginal.\"\r\n1620,1659,530965,John Wyndham,The Day of the Triffids,https://images.gr-assets.com/books/1320530145l/530965.jpg,4,58945,\"fiction, classics\",\"The classic scifi alien invasion novel tells the suspenseful tale of the\nTriffid attack on Earth, which wreaks havoc across the planet as a\ngrotesque form of plant life, harmful to humankind, terrorizes human\ncivilization. Reader's Guide included. Reprint. 25,000 first printing.\"\r\n1621,1660,9850443,\"Patrick deWitt, Marcelo Barbão\",The Sisters Brothers,https://images.gr-assets.com/books/1291999900l/9850443.jpg,3.83,51694,\"fiction, crime\",\"The Sisters BrothersPatrick deWitt, Marcelo Barbão\"\r\n1622,1661,6905012,Shilpi Somaya Gowda,Secret Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347708559l/6905012.jpg,3.97,52734,\"fiction, contemporary\",\"Somer’s life is everything she imagined it would be—she’s newly married and\nhas started her career as a physician in San Francisco—until she makes the\ndevastating discovery she never will be able to have children. The same\nyear in India, a poor mother makes the heartbreaking choice to save her\nnewborn daughter’s life by giving her away. It is a decision that will\nhaunt Kavita for the rest of her life, and cause a ripple effect that\ntravels across the world and back again. Asha, adopted out of a Mumbai\norphanage, is the child that binds the destinies of these two women. We\nfollow both families, invisibly connected until Asha’s journey of self-\ndiscovery leads her back to India. Compulsively readable and deeply\ntouching, Secret Daughter is a story of the unforeseen ways in which our\nchoices and families affect our lives, and the indelible power of love in\nall its many forms.\"\r\n1623,1662,6693,\"Roald Dahl, Quentin Blake\",Fantastic Mr Fox,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390097292l/6693.jpg,4.03,66015,\"fiction, fantasy\",\"Three farmers, each one meaner than the other, try all-out warfare to get\nrid of the fox and his family.\"\r\n1624,1663,68591,\"Paulo Coelho, Montserrat Mira\",Brida,https://images.gr-assets.com/books/1403772793l/68591.jpg,3.46,45905,\"fiction, fantasy\",\"BridaPaulo Coelho, Montserrat Mira\"\r\n1625,1664,18521,Virginia Woolf,A Room of One's Own,https://images.gr-assets.com/books/1327883012l/18521.jpg,4.1,59868,\"classics, nonfiction\",\"Describes the domestic obligations, social limitations, and economic\nfactors which impede literary creativity in women.\"\r\n1626,1665,1268479,Brandon Sanderson,Warbreaker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1240256182l/1268479.jpg,4.22,55948,\"fantasy, fiction\",\"Two sisters who are princesses have different destinies as one, Siri,\nmarries the God King, and the other, Vivenna, tries to save her people, as\neveryone contends with the special powers contained in BioChromatic magic.\"\r\n1627,1666,42038,\"William Shakespeare, Katherine Duncan-Jones\",Sonnets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431229752l/42038.jpg,4.24,58291,\"poetry, classics\",An updated and revised edition of Shakespeare's sonnets.\r\n1628,1667,8492856,Sarah Dessen,What Happened to Goodbye,https://images.gr-assets.com/books/1347810788l/8492856.jpg,3.97,69636,\"romance, contemporary\",What Happened to GoodbyeSarah Dessen\r\n1629,1668,23437156,Leigh Bardugo,Six of Crows,https://images.gr-assets.com/books/1500689111l/23437156.jpg,4.46,90202,\"fantasy, fiction\",Six of CrowsLeigh Bardugo\r\n1630,1669,17020,Maureen Johnson,13 Little Blue Envelopes,https://images.gr-assets.com/books/1375030179l/17020.jpg,3.65,66950,\"contemporary, romance\",13 Little Blue EnvelopesMaureen Johnson\r\n1631,1670,104189,\"Ron Hall, Denver Moore, Lynn Vincent\",Same Kind of Different as Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440374557l/104189._SY475_.jpg,4.21,52964,\"nonfiction, christian\",\"The co-author relates how he was held under plantation-style slavery until\nhe fled in the 1960s and suffered homelessness for an additional eighteen\nyears before the wife of the other co-author, an art dealer accustomed to\nprivilege, intervened.\"\r\n1632,1671,23734628,Rainbow Rowell,Carry On,https://images.gr-assets.com/books/1429810397l/23734628.jpg,4.19,46197,\"romance, fantasy\",\"Rainbow Rowell continues to break boundaries with Carry On, an epic fantasy\nfollowing the triumphs and heartaches of Simon and Baz from her beloved\nbestseller Fangirl.\"\r\n1633,1672,10235,Tracy Kidder,\"Mountains Beyond Mountains: The Quest of Dr. Paul Farmer, a Man Who Would Cure the World\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433156001l/10235._SY475_.jpg,4.21,53019,\"nonfiction, biography\",\"A portrait of infectious disease expert Dr. Paul Farmer follows the efforts\nof this unconventional Harvard genius to understand the world's great\nhealth, economic, and social problems and to bring healing to humankind.\"\r\n1634,1673,18149927,Jodi Ellen Malpas,Beneath This Man ,https://images.gr-assets.com/books/1372773964l/18149927.jpg,4.3,44170,\"romance, contemporary\",\"You've fallen in love reading about Christian Grey; you've seen the Fifty\nShades movie. Now it's time for your next fix. Beyond undeniable passion is\nfierce love... Jesse Ward drowned her with his intensity and blindsided her\nwith his passion, but he kept her away from his dark secrets and broken\nsoul. Leaving him was the only way Ava O'Shea could survive, but she should\nhave known that Jesse Ward is impossible to escape. Now he's back in her\nlife, determined to remind her of the sensual pleasures they had shared,\nbut Ava is equally determined to get at the truth beneath this man's steely\nexterior. That means letting herself get close to the Lord of the Manor\nonce more. And it's exactly where Jesse wants her - within touching\ndistance . . . Includes a brand-new bonus scene from Jesse's perspective.\"\r\n1635,1674,9579634,Mark  Lawrence,Prince of Thorns,https://images.gr-assets.com/books/1327917754l/9579634.jpg,3.87,54173,\"fantasy, fiction\",\"After witnessing the murder of his mother and brother and leading a band of\nbloodthirsty thugs, Prince Honorous Jorg Ancrath returns to his father's\ncastle and his birthright, but faces treachery and dark magic once he\narrives.\"\r\n1636,1675,5187,Jane Hamilton,The Book of Ruth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441207803l/5187._SY475_.jpg,3.82,56842,\"fiction, contemporary\",\"Ruth tries to hold her own in a small town where she can't escape poverty\nand hard knocks. When the household erupts in violence, Ruth is the only\none who can piece the story together.\"\r\n1637,1676,9593,Kurt Vonnegut Jr.,Galápagos,https://images.gr-assets.com/books/1355012643l/9593.jpg,3.87,48330,\"fiction, classics\",\"The ghost of a decapitated shipbuilder wryly observes the decline of the\nhuman race as reflected by a group of shipwreck survivors, including a\nbiology teacher, a bomb-radiated wife of a Japanese computer genius, and a\ngold digger, a motley band whose fates are shaped by infertility and a\nlocal tribe of cannibals. Reissue.\"\r\n1638,1677,7661,Michael Crichton,Next,https://images.gr-assets.com/books/1358010468l/7661.jpg,3.48,53487,\"fiction, thriller\",\"Is a loved one missing some body parts? Are blondes becoming extinct? Is\neveryone at your dinner table of the same species? Humans and chimpanzees\ndiffer in only 400 genes; is that why a chimp fetus resembles a human\nbeing? And should that worry us? There's a new genetic cure for drug\naddiction—is it worse than the disease? We live in a time of momentous\nscientific leaps, a time when it's possible to sell our eggs and sperm\nonline for thousands of dollars and to test our spouses for genetic\nmaladies. We live in a time when one fifth of all our genes are owned by\nsomeone else, and an unsuspecting person and his family can be pursued\ncross-country because they happen to have certain valuable genes within\ntheir chromosomes . . . Devilishly clever, Next blends fact and fiction\ninto a breathless tale of a new world where nothing is what it seems and a\nset of new possibilities can open at every turn. Next challenges our sense\nof reality and notions of morality. Balancing the comic and the bizarre\nwith the genuinely frightening and disturbing, Next shatters our\nassumptions and reveals shocking new choices where we least expect. The\nfuture is closer than you think.\"\r\n1639,1679,27494,Walt Whitman,Leaves of Grass,https://images.gr-assets.com/books/1418012204l/27494.jpg,4.12,57763,\"classics, fiction\",\"This unabridged edition of Leaves of Grass presents the original 1855\nversions and limited formatting of Whitman's most famous poems, including\n\"\"Song of Myself,\"\" \"\"I Sing the Body Electric,\"\" and \"\"There Was a Child Went\nForth.\"\"\"\r\n1640,1680,114159,Nora Roberts,Blue Dahlia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348333313l/114159.jpg,4.11,57413,\"romance, fiction\",Blue DahliaNora Roberts\r\n1641,1681,32067,\"D.H. Lawrence, Doris Lessing, Chester Brown\",Lady Chatterley's Lover,https://images.gr-assets.com/books/1425007748l/32067.jpg,3.49,46541,\"classics, romance\",\"Lady Chatterley's LoverD.H. Lawrence, Doris Lessing, Chester Brown\"\r\n1642,1682,10079321,Lev Grossman,The Magician King,https://images.gr-assets.com/books/1316177353l/10079321.jpg,3.9,52061,\"fantasy, fiction\",\"In a sequel to the best-selling novel The Magicians, after Quentin and his\nold friend Julia, leave Fillory on a magical sailing ship, they end up back\nin Quentin's home in Chesterton, Massachusetts, and only Julia's dark magic\ncan get them back to the magic realm they've grown to love.\"\r\n1643,1683,1171,Michael   Lewis,Liar's Poker: Rising Through the Wreckage on Wall Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204660l/1171.jpg,4.16,22315,\"business, history\",\"The author recounts his experiences on the lucrative Wall Street bond\nmarket of the 1980s, where young traders made millions in a very short\ntime, in a humorous account of greed and epic folly.\"\r\n1644,1685,10915,Jodi Picoult,Salem Falls,https://images.gr-assets.com/books/1344397557l/10915.jpg,3.8,59930,\"fiction, contemporary\",\"Robbed of his teaching career and reputation by a student's false\naccusations, Jack St. Bride is struggling to rebuild his life, but fresh\naccusations of rape by teenage girls from his former school threaten to\ndestroy him once again.\"\r\n1645,1686,189802,\"David Eddings, Leigh Eddings\",Belgarath the Sorcerer,https://images.gr-assets.com/books/1333692194l/189802.jpg,4.07,59737,\"fantasy, fiction\",\"Remembering a past time when the gods walked the lands among mortals, an\nancient man known as the Old Wolf recounts the tale of his youth, during\nwhich he witnessed the strife that split the world in two\"\r\n1646,1687,53764,Frank Herbert,The Great Dune Trilogy,https://images.gr-assets.com/books/1419962914l/53764.jpg,4.35,51454,\"fiction, fantasy\",\"Three of the greatest SF novels in the world in one bumper omnibus\nHerbert's evocative, epic tales are set on the desert planet Arrakis, the\nfocus for a complex political and military struggle with galaxy-wide\nrepercussions. Arrakis is the source of spice, a mind-enhancing drug which\nmakes interstellar travel possible; it is the most valuable substance in\nthe galaxy. When Duke Atreides and his family take up court there, they\nfall into a trap set by the Duke's bitter rival, Baron Harkonnen. The Duke\nis poisoned, but his wife and her son Paul escape to the vast and arid\ndeserts of Arrakis, which have given the planet its nickname of Dune. Paul\nand his mother join the Fremen, the Arrakis natives, who have learnt to\nlive in this harsh and complex ecosystem. But learning to survive is not\nenough - Paul's destiny was mapped out long ago and his mother is committed\nto seeing it fulfilled.\"\r\n1647,1688,25893709,\"Elizabeth Strout, Goran Skrobonja\",My Name Is Lucy Barton,https://images.gr-assets.com/books/1450653428l/25893709.jpg,3.51,49578,\"fiction, contemporary\",\"My Name Is Lucy BartonElizabeth Strout, Goran Skrobonja\"\r\n1648,1689,1158967,Sarah Addison Allen,Garden Spells,https://images.gr-assets.com/books/1347309330l/1158967.jpg,4.06,65409,\"fiction, fantasy\",\"A successful caterer in Bascomb, North Carolina, Claire has always remained\ntied to the long and magical legacy of the Waverly family, until her\npeaceful life is transformed by Tyler Hughes, an art teacher and new next-\ndoor neighbor, and by the return of her prodigal sister, Sydney, who has\narrived with her five-year-old daughter, Bay. A first novel. 75,000 first\nprinting.\"\r\n1649,1690,8058301,Jim Butcher,Ghost Story,https://images.gr-assets.com/books/1329104700l/8058301.jpg,4.25,59657,\"fantasy, fiction\",\"Wizard detective Harry Dresden, murdered by an unknown assassin, must save\nhis friends and his soul without any magic to help him in this novel from\nthe New York Times best-selling author of Side Jobs. Reprint.\"\r\n1650,1691,36529,Frederick Douglass,Narrative of the Life of Frederick Douglass,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234247l/36529.jpg,3.97,55576,\"history, classics\",\"The impassioned abolitionist and eloquent orator provides graphic\ndescriptions of his childhood and horrifying experiences as a slave as well\nas a harrowing record of his dramatic escape to the North and eventual\nfreedom. Published in 1845 to quell doubts about his origins, the Narrative\nis admired today for its extraordinary passion, sensitive descriptions, and\nstorytelling power.\"\r\n1651,1692,10412,\"Greg Behrendt, Liz Tuccillo\",He's Just Not That Into You: The No-Excuses Truth to Understanding Guys,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205020l/10412.jpg,3.65,49015,\"nonfiction, romance\",\"Based on an episode of \"\"Sex and the City,\"\" offers a lighthearted, no-\nnonsense look at dead-end relationships, providing advice for letting go\nand moving on.\"\r\n1652,1693,44659,David Eddings,Pawn of Prophecy,https://images.gr-assets.com/books/1391346857l/44659.jpg,4.16,67451,\"fantasy, fiction\",\"The farm boy, Garion, begins a dangerous quest to recover the magic Orb and\nprevent the evil Torak from seizing power over the world\"\r\n1653,1694,40317,Janet Evanovich,Lean Mean Thirteen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442616484l/40317._SY475_.jpg,4.08,73839,\"mystery, fiction\",\"Trenton, New Jersey, bounty hunter Stephanie Plum winds up in trouble again\nwhen she agrees to meet with her old flame Dickie Orr, who promptly\nvanishes, leaving Stephanie the prime suspect in his disappearance.\"\r\n1654,1695,41684,\"Rudyard Kipling, Alev Lytle Croutier\",The Jungle Books,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349066474l/41684.jpg,4,68750,\"classics, fiction\",\"The Jungle BooksRudyard Kipling, Alev Lytle Croutier\"\r\n1655,1696,27266,Rachel Caine,Glass Houses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428057864l/27266.jpg,3.92,77454,\"romance, fiction\",\"In Morganville, Texas, a town where evil terrorizes the streets under the\ncover of darkness, Claire Danvers, who has had enough of her current dorm\nsituation, moves off campus and discovers that the town is run by vampires.\nOriginal.\"\r\n1656,1698,342445,\"Peter David, Robin Furth, Jae Lee, Richard Isanove, Stephen King\",The Dark Tower: The Gunslinger Born,https://images.gr-assets.com/books/1489721554l/342445.jpg,4.18,60746,\"fantasy, comics\",\"\"\"Witness the birth of a gunslinger and the epic sweep of a timeless\nadventure that has just begun to unfold!\"\"--Back cover.\"\r\n1657,1699,21104828,Kate Morton,The Lake House,https://images.gr-assets.com/books/1455089249l/21104828.jpg,4.04,46348,\"fiction, mystery\",The Lake HouseKate Morton\r\n1658,1700,15811545,Ruth Ozeki,A Tale for the Time Being,https://images.gr-assets.com/books/1463767452l/15811545.jpg,3.98,51580,\"fiction, contemporary\",\"A novelist on a remote island in the Pacific is linked to a bullied and\ndepressed Tokyo teenager after discovering a Hello Kitty lunchbox that\nwashed ashore.\"\r\n1659,1701,9010,Tucker Max,I Hope They Serve Beer in Hell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179505l/9010.jpg,3.51,46092,\"memoir, nonfiction\",\"Proud of being socially inappropriate and sexually irresponsible, the\nauthor shares his carefree experiences.\"\r\n1660,1702,17200687,\"Jay Crownover, Charlotte Connan de vries\",Rule,https://images.gr-assets.com/books/1357012113l/17200687.jpg,4.16,79077,\"romance, ebooks\",\"Lorsqu'elle était adolescente, les parents de Shaw Landon, richissismes, se\nsont peu occupés d'elle. Elle a alors trouvé refuge dans la famille Archer\noù elle était particulièrement proche de Remy, frère jumeau de Rule,\naujourd'hui décédé dans un accident de voiture. Depuis elle est liée à\ncette famille, plus qu'à la sienne. Mais Shaw est depuis toujours\nsecrètement amoureuse de Rule qui voit en elle une fille à papa, trop\nsérieuse et surtout la petite amie de son défunt frère. Qui plus est, tout\nles oppose : de nature rebelle et fêtard, il est tatoueur et tatoué, a des\npercings et les cheveux de toutes les couleurs. Avec son look classique,\nelle est sage et concentrée sur ses études de médecine. Mais parfois il\nsuffit d'une jupe courte et de quelques cocktails pour que le regard que\nl'on porte sur quelqu'un change... Rule et Shaw tenteront de comprendre ce\nqu'ils ressentent mutuellement mais entre les traumatismes de leurs\nfamilles respectives, les habitudes de coureur de jupons de Rule et l'ex de\nShaw qui la harcèle, ces deux-là auront bien du mal à se trouver. Leur\namour sera-t-il plus fort que leurs différences ?\"\r\n1661,1703,17799,\"Haruki Murakami, Philip Gabriel\",\" 国境の南、太陽の西 [Kokkyō no minami, taiyō no nishi]\",https://images.gr-assets.com/books/1443685506l/17799.jpg,3.87,47812,\"fiction, contemporary\",\" 国境の南、太陽の西 [Kokkyō no minami, taiyō no nishi]Haruki Murakami, Philip Gabriel\"\r\n1662,1704,9592,Kurt Vonnegut Jr.,Mother Night,https://images.gr-assets.com/books/1344621657l/9592.jpg,4.21,52249,\"fiction, classics\",\"Truth and justice are blurred when American spy Howard Campbell is tried in\nIsrael as a Nazi war criminal after World War II\"\r\n1663,1705,28815,Robert B. Cialdini,Influence: The Psychology of Persuasion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391026083l/28815.jpg,4.18,45874,\"business, psychology\",\"Dr Robert Cialdini explains the six psychological principles that drive the\nhuman impulse to comply to the pressures of others and reveals how to\ndefend oneself against manipulation.\"\r\n1664,1706,32559,\"Edgar Allan Poe, Stephen Marlowe\",The Fall of the House of Usher and Other Writings,https://images.gr-assets.com/books/1355276847l/32559.jpg,4.14,57265,\"fiction, fantasy\",\"A collection of fourteen of the author's best-known tales of mystery and\nthe macabre includes \"\"The Pit and the Pendulum, \"\"The Tell-Tale Heart,\"\" and\n\"\"The Fall of the House of Usher,\"\" in which a visitor to a gloomy mansion\nfinds a childhood friend dying under the spell of a family curse. Reissue.\"\r\n1665,1707,232576,Louise Fitzhugh,Harriet the Spy,https://images.gr-assets.com/books/1320540825l/232576.jpg,3.96,77575,\"fiction, classics\",\"The discovery of Harriet's secret journal, concerning the personalities and\nactivities of her schoolmates and neighbors, causes pandemonium.\"\r\n1666,1708,20821087,Sarah Waters,The Paying Guests,https://images.gr-assets.com/books/1396671788l/20821087.jpg,3.39,44839,\"fiction, romance\",The Paying GuestsSarah Waters\r\n1667,1709,16433,Dean Koontz,Forever Odd,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348816320l/16433.jpg,3.96,54958,\"horror, fiction\",\"In the unique world of Pico, Odd--a hero who lives between the living and\nthe dead--takes a stand against evil in a battle where there are no\ninnocent bystanders.\"\r\n1668,1710,7507825,Bill Bryson,At Home: A Short History of Private Life,https://images.gr-assets.com/books/1372727082l/7507825.jpg,3.96,55296,\"history, nonfiction\",\"Explores the ways in which homes reflect history, from a bathroom's\nrevelations about medicine and hygiene to a kitchen's exposure of the\nstories of trade and nutrition.\"\r\n1669,1711,82748,Marian Keyes,Sushi for Beginners,https://images.gr-assets.com/books/1407709390l/82748.jpg,3.69,55373,\"fiction, romance\",Sushi for BeginnersMarian Keyes\r\n1670,1712,338691,Louise Penny,Still Life,https://images.gr-assets.com/books/1324373974l/338691.jpg,3.91,59317,\"mystery, fiction\",\"A picturesque village just north of the U.S. border. A place where\nneighbors greet each other, where visitors feel right at home, and where\nthe truth hides behind closed doors... Enter the world of Three Pines-and\ndiscover why Louise Penny is the blockbuster #1 New York Times bestselling\nauthor who has enthralled millions of readers. Jane Neal-well-loved in her\ncommunity-does not appear to be a woman anyone would want to harm, let\nalone murder. But when she turns up dead, with an arrow wound to her chest,\nChief Inspector Armand Gamache can't help but think that Jane died at the\nhands of someone much more sinister than a careless hunter. Now it's up to\nGamache to find a killer who's on the loose. . .and on his trail. When it\ncomes to murder, you have to see the forest for the trees. Outstanding\nPraise for Louise Penny's Still Life \"\"Perfectly executed.\"\"-Denver Post\n\"\"Clever and carefully constructed.\"\"-Chicago Tribune \"\"Auspicious...[with] a\nwell-devised plot.\"\"-Marilyn Stasio, The New York Times Book Review\"\r\n1671,1713,9300,Marian Keyes,Watermelon,https://images.gr-assets.com/books/1345767584l/9300.jpg,3.79,55841,\"fiction, romance\",\"February the fifteenth is a very special day for me. It is the day I gave\nbirth to my first child. It is also the day my husband left me...I can only\nassume the two events weren't entirely unrelated. Claire has everything she\never wanted: a husband she adores, a great apartment, a good job. Then, on\nthe day she gives birth to their first baby, James informs her that he's\nleaving her. Claire is left with a newborn daughter, a broken heart, and a\npostpartum body that she can hardly bear to look at. She decides to go home\nto Dublin. And there, sheltered by the love of a quirky family, she gets\nbetter. So much so, in fact, that when James slithers back into her life,\nhe's in for a bit of a surprise.\"\r\n1672,1714,12557,Amy Tan,The Kitchen God's Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434152599l/12557._SY475_.jpg,3.98,58836,\"fiction, contemporary\",\"Winnie Louie, an aging Chinese woman convinced that she will die soon,\ndecides to unburden herself by divulging the secrets of those closest to\nher and to her suspicious, Americanized daughter.\"\r\n1673,1715,943402,John Ajvide Lindqvist,Låt den rätte komma in,https://images.gr-assets.com/books/1327893384l/943402.jpg,4.07,52518,\"horror, fiction\",Låt den rätte komma inJohn Ajvide Lindqvist\r\n1674,1716,12971616,Pittacus Lore,The Rise of Nine,https://images.gr-assets.com/books/1331740153l/12971616.jpg,4.2,70196,\"fantasy, fiction\",The Rise of NinePittacus Lore\r\n1675,1718,5454,Ann Brashares,The Second Summer of the Sisterhood,https://images.gr-assets.com/books/1467700995l/5454.jpg,3.78,67357,\"fiction, romance\",\"When teenager Carmen and her three friends discover that a pair of worn\njeans from a thrift shop provides an uncanny fit for all four of them, they\ndecide to form a sisterhood, with the pants as the symbolic bond of\nfriendship among them, and embark on asweet-sixteen summer.\"\r\n1676,1719,32435,Dean Koontz,Phantoms,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925458l/32435.jpg,3.93,56287,\"horror, fiction\",\"A tale of an abandoned town and the unimaginable truth behind its\nsilence... Now with a new afterword, Dean Koontz explains the impact\nPhantoms had on his career.\"\r\n1677,1721,175510,Oswald Chambers,My Utmost for His Highest,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389470852l/175510.jpg,4.39,47720,\"christian, classics\",My Utmost for His HighestOswald Chambers\r\n1678,1722,34494,Terry Pratchett,The Wee Free Men,https://images.gr-assets.com/books/1443764106l/34494.jpg,4.25,63635,\"fantasy, fiction\",The Wee Free MenTerry Pratchett\r\n1679,1723,11710373,Diana Gabaldon,Written in My Own Heart's Blood,https://images.gr-assets.com/books/1365173799l/11710373.jpg,4.5,46663,\"romance, fiction\",\"#1 NEW YORK TIMES BESTSELLER * NAMED ONE OF THE BEST BOOKS OF THE YEAR BY\nBOOKLIST In her now classic novel Outlander, Diana Gabaldon told the story\nof Claire Randall, an English ex-combat nurse who walks through a stone\ncircle in the Scottish Highlands in 1946, and disappears . . . into 1743.\nThe story unfolded from there in seven bestselling novels, and CNN has\ncalled it \"\"a grand adventure written on a canvas that probes the heart,\nweighs the soul and measures the human spirit across [centuries].\"\" Now the\nstory continues in Written in My Own Heart's Blood. 1778: France declares\nwar on Great Britain, the British army leaves Philadelphia, and George\nWashington's troops leave Valley Forge in pursuit. At this moment, Jamie\nFraser returns from a presumed watery grave to discover that his best\nfriend has married his wife, his illegitimate son has discovered (to his\nhorror) who his father really is, and his beloved nephew, Ian, wants to\nmarry a Quaker. Meanwhile, Jamie's wife, Claire, and his sister, Jenny, are\nbusy picking up the pieces. The Frasers can only be thankful that their\ndaughter Brianna and her family are safe in twentieth-century Scotland. Or\nnot. In fact, Brianna is searching for her own son, who was kidnapped by a\nman determined to learn her family's secrets. Her husband, Roger, has\nventured into the past in search of the missing boy . . . never suspecting\nthat the object of his quest has not left the present. Now, with Roger out\nof the way, the kidnapper can focus on his true target: Brianna herself.\nWritten in My Own Heart's Blood is the brilliant next chapter in a\nmasterpiece of the imagination unlike any other. Praise for Written in My\nOwn Heart's Blood \"\"[Written in My Own Heart's Blood] features all the\npassion and swashbuckling that fans of this historical fantasy series have\ncome to expect.\"\"--People \"\"Another breakneck, rip-roaring, oh-so-addictive\npage-turner from Gabaldon . . . Take a deep breath, jump aboard, and enjoy\nthe ride.\"\"--Library Journal \"\"With her Outlander series, Gabaldon . . .\nsuccessfully [juggles] a sizable and captivating cast of characters;\ndeveloping thrilling plotlines that borrow equally from adventure, history,\nand romance; and meticulously integrating a wealth of fascinating period\ndetails into the story without slowing down the pace. The result is a\nsprawling and enthralling saga that is guaranteed to keep readers up long\npast their bedtimes.\"\"--Booklist (starred review) From the Hardcover\nedition.\"\r\n1680,1724,7402393,Andrea Cremer,Nightshade,https://images.gr-assets.com/books/1333400218l/7402393.jpg,4.03,69534,\"paranormal, fantasy\",\"Calla and Ren have been raised knowing it is their destiny to mate with one\nanother and rule over their pack, but when a human boy arrives and vies for\nCalla's heart, she is faced with a decision that could change her whole\nworld.\"\r\n1681,1726,100464,Cornelia Funke,Drachenreiter,https://images.gr-assets.com/books/1328004947l/100464.jpg,3.94,61387,\"fantasy, fiction\",\"Eine abenteuerliche Reise liegt vor Lung, dem silbernen Drachen, und seinen\nBegleitern, dem Koboldmädchen Schwefelfell und dem Waisenjungen Ben. Sie\nsind auf der Suche nach einem sicheren Ort für Lungs Artgenossen, für die\nes in der Menschenwelt keinen Platz mehr zu geben scheint. Lung setzt seine\nganze Hoffnung auf den sagenumwobenen 'Saum des Himmels'. Dort, irgendwo\nzwischen den Gipfeln des Himalaya versteckt, soll die ursprüngliche Heimat\nder Drachen liegen. Noch ahnen die drei jedoch nicht, dass es etwas viel\nBedrohlicheres als die Menschen gibt - Nesselbrand den Goldenen, das\ngefährlichste Drachen jagende Ungeheuer, das die Welt je gesehen hat. Und\ner ist ihnen auch schon auf der Spur.\"\r\n1682,1727,357,Douglas Adams,The Long Dark Tea-Time of the Soul,https://images.gr-assets.com/books/1388257271l/357.jpg,4.05,59276,\"fiction, fantasy\",\"When a passenger check-in desk shoots through the roof of a terminal at\nHeathrow Airport in flames, Dirk Gently investigates the cosmic forces at\nplay\"\r\n1683,1728,22544764,Naomi Novik,Uprooted,https://images.gr-assets.com/books/1480121122l/22544764.jpg,4.13,61454,\"fantasy, fiction\",\"WINNER OF THE NEBULA AWARD FOR BEST NOVEL - Naomi Novik, author of the New\nYork Times bestselling and critically acclaimed Temeraire novels,\nintroduces a bold new world rooted in folk stories and legends, as\nelemental as a Grimm fairy tale. HUGO AWARD FINALIST - NAMED ONE OF THE\nBEST BOOKS OF THE YEAR BY NPR - BuzzFeed - Tordotcom - BookPage - Library\nJournal - Publishers Weekly \"\"Uprooted is confidently wrought and\nsympathetically cast. I might even call it bewitching.\"\"--Gregory Maguire,\nbestselling author of Wicked and Egg & Spoon \"\"Our Dragon doesn't eat the\ngirls he takes, no matter what stories they tell outside our valley. We\nhear them sometimes, from travelers passing through. They talk as though we\nwere doing human sacrifice, and he were a real dragon. Of course that's not\ntrue: he may be a wizard and immortal, but he's still a man, and our\nfathers would band together and kill him if he wanted to eat one of us\nevery ten years. He protects us against the Wood, and we're grateful, but\nnot that grateful.\"\" Agnieszka loves her valley home, her quiet village, the\nforests and the bright shining river. But the corrupted Wood stands on the\nborder, full of malevolent power, and its shadow lies over her life. Her\npeople rely on the cold, driven wizard known only as the Dragon to keep its\npowers at bay. But he demands a terrible price for his help: one young\nwoman handed over to serve him for ten years, a fate almost as terrible as\nfalling to the Wood. The next choosing is fast approaching, and Agnieszka\nis afraid. She knows--everyone knows--that the Dragon will take Kasia:\nbeautiful, graceful, brave Kasia, all the things Agnieszka isn't, and her\ndearest friend in the world. And there is no way to save her. But Agnieszka\nfears the wrong things. For when the Dragon comes, it is not Kasia he will\nchoose. Praise for Uprooted \"\"Uprooted has leapt forward to claim the title\nof Best Book I've Read Yet This Year. . . . Moving, heartbreaking, and\nthoroughly satisfying, Uprooted is the fantasy novel I feel I've been\nwaiting a lifetime for. Clear your schedule before picking it up, because\nyou won't want to put it down.\"\"--NPR\"\r\n1684,1729,22816087,Neal Stephenson,Seveneves,https://images.gr-assets.com/books/1449142000l/22816087.jpg,3.98,44612,\"fiction, fantasy\",SevenevesNeal Stephenson\r\n1685,1730,16278318,Ernest Cline,Armada,https://images.gr-assets.com/books/1377284428l/16278318.jpg,3.49,49958,\"fiction, fantasy\",\"From the author of Ready Player One, a rollicking alien invasion thriller\nthat embraces and subverts science-fiction conventions as only Ernest Cline\ncan. Zack Lightman has never much cared for reality. He vastly prefers the\ncountless science-fiction movies, books, and videogames he's spent his life\nconsuming. And too often, he catches himself wishing that some fantastic,\nimpossible, world-altering event could arrive to whisk him off on a grand\nspacefaring adventure. So when he sees the flying saucer, he's sure his\nyears of escapism have finally tipped over into madness. Especially because\nthe alien ship he's staring at is straight out of his favorite videogame, a\nflight simulator callled Armada--in which gamers just happen to be\nprotecting Earth from alien invaders. As impossible as it seems, what\nZack's seeing is all too real. And it's just the first in a blur of\nrevlations that will force him to question everything he thought he knew\nabout Earth's history, its future, even his own life--and to play the hero\nfor real, with humanity's life in the balance. But even through the terror\nand exhilaration, he can't help thinking: Doesn't something about this\nscenario feel a little bit like . . . well . . . fiction? At once\nreinventing and paying homage to science-fiction classics, Armada is a\nrollicking, surprising thriller, a coming-of-age adventure, and an alien\ninvasion tale like nothing you've ever read before. Praise for Armada \"\"A\nthrilling coming-of-age story.\"\"--Entertainment Weekly \"\"Nerd-gasmic . . .\nanother science fiction tale with a Comic-Con's worth of pop-culture shout-\nouts.\"\"--Rolling Stone \"\"An amazing novel that] proves Cline has the ability\nto blend popular culture with exciting stories that appeal to everyone.\"\"--\nAssociated Press \"\"Mixes Star Wars, The Last Starfighter, Independence Day\nand a really gnarly round of Space Invaders into a tasty sci-fi stew.\"\"--USA\nToday \"\"A fantastic second novel . . . fans of Ready Player One, it is time\nto rejoice.\"\"--Huffington Post\"\r\n1686,1731,6736971,Peter V. Brett,The Desert Spear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388219761l/6736971.jpg,4.24,53143,\"fantasy, fiction\",\"A follow-up to the best-selling The Warded Man continues the adventures of\nreluctant savior Arlen Bales, who wonders at the identity of a spear-\nwielding figure that emerges from the desert and leads a vast army intent\non a holy war. Reprint.\"\r\n1687,1732,209194,Agatha Christie,The Man in the Brown Suit,https://images.gr-assets.com/books/1390018729l/209194.jpg,3.97,56053,\"mystery, fiction\",The Man in the Brown SuitAgatha Christie\r\n1688,1733,5352,John Grisham,The Summons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388611098l/5352.jpg,3.68,53304,\"fiction, mystery\",\"Ray Atlee and his brother, Forrest, receive a letter from their father, a\nreclusive, retired judge, instructing them to return home to Clanton,\nMississippi, to discuss his estate, but the judge dies before his sons\narrive, leaving behind a secret known only to Ray. Reprint. 35,000 first\nprinting.\"\r\n1689,1734,139069,Alfred Lansing,Endurance: Shackleton's incredible voyage,https://images.gr-assets.com/books/1391329559l/139069.jpg,4.36,50142,\"history, nonfiction\",Endurance: Shackleton's incredible voyageAlfred Lansing\r\n1690,1735,23220,Meg Cabot,\"Size 12 Is Not Fat (Heather Wells, #1)\",https://images.gr-assets.com/books/1259077761l/23220.jpg,3.75,66089,\"mystery, fiction\",\"Former pop star Heather Wells has left behind hordes of screaming fans, to\nsettle into a new adult life, but when strange things start happening at\nher college, she finds herself once again in the spotlight, this time\nstarring as a spunky female detective. Original. 100,000 first printing.\"\r\n1691,1736,27833670,Blake Crouch,Dark Matter,https://images.gr-assets.com/books/1472119680l/27833670.jpg,4.11,63814,\"fiction, thriller\",\"\"\"Extra Libris: Essays, Reader's Guides, and More\"\"--Page [345].\"\r\n1692,1737,23174274,Victoria Aveyard,Glass Sword,https://images.gr-assets.com/books/1436460934l/23174274.jpg,3.95,78405,\"fantasy, romance\",Glass SwordVictoria Aveyard\r\n1693,1738,5310515,Rebecca Stead,When You Reach Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441759322l/5310515._SY475_.jpg,4.08,64430,\"fiction, mystery\",\"In the 1980s, as her mother prepares to be a contestant on a television\ngame show, Miranda tries to make sense of a series of mysterious notes\nreceived from an anonymous source that seems to defy the laws of time and\nspace.\"\r\n1694,1739,2666,Tom Wolfe,The Bonfire of the Vanities,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1542903489l/2666.jpg,3.81,52062,\"fiction, classics\",The Bonfire of the VanitiesTom Wolfe\r\n1695,1740,23899174,Judy Blume,In the Unlikely Event,https://images.gr-assets.com/books/1421711380l/23899174.jpg,3.51,40885,\"fiction, contemporary\",In the Unlikely EventJudy Blume\r\n1696,1741,131359,Agatha Christie,Death on the Nile,https://images.gr-assets.com/books/1486837149l/131359.jpg,4.06,64949,\"mystery, fiction\",\"The tranquillity of a cruise along the Nile was shattered by the discovery\nthat Linnet Ridgeway had been shot through the head. She was young,\nstylish, and beautiful. A girl who had everything . . . until she lost her\nlife. Hercule Poirot recalled an earlier outburst by a fellow passenger:\n\"\"I'd like to put my dear little pistol against her head and just press the\ntrigger.\"\" Yet in this exotic setting nothing is ever quite what it seems.\"\r\n1697,1742,207153,Phyllis Reynolds Naylor,Shiloh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387737804l/207153.jpg,3.91,59585,\"fiction, classics\",\"When he finds a lost beagle in the hills behind his West Virginia home,\nMarty tries to hide it from his family and the dog's real owner, a mean-\nspirited man known to shoot deer out of season and to mistreat his dogs.\"\r\n1698,1743,14061955,Leigh Bardugo,Siege and Storm,https://images.gr-assets.com/books/1362166252l/14061955.jpg,4.08,78658,\"fantasy, romance\",\"Hunted across the True Sea and haunted by the lives she took on the Fold,\nAlina must try to make a life with Mal in an unfamiliar land, all while\nkeeping her identity as the Sun Summoner a secret. This edition of the\nsecond novel of the Grisha TrilogyNthe follow-up to the \"\"New York Times\"\"\nbestseller \"\"Shadow and Bone\"\"Nincludes bonus content.\"\r\n1699,1744,465226,\"Jo Nesbø, Don Bartlett\",\"Rødstrupe (Harry Hole, #3) \",https://images.gr-assets.com/books/1320540474l/465226.jpg,3.94,49999,\"mystery, crime\",\"Detective Harry Hole embarrassed the force, and for his sins he’s been\nreassigned to mundane surveillance tasks. But while monitoring neo-Nazi\nactivities in Oslo, Hole is inadvertently drawn into a mystery with deep\nroots in Norway’s dark past, when members of the government willingly\ncollaborated with Nazi Germany. More than sixty years later, this black\nmark won’t wash away—and disgraced old soldiers who once survived a brutal\nRussian winter are being murdered, one by one. Now, with only a stained and\nguilty conscience to guide him, an angry, alcoholic, error-prone policeman\nmust make his way safely past the traps and mirrors of a twisted criminal\nmind. For a conspiracy is taking rapid and hideous shape around Hole . . .\nand Norway’s darkest hour may be still to come.\"\r\n1700,1745,6050678,Scott Westerfeld,Leviathan,https://images.gr-assets.com/books/1275694232l/6050678.jpg,3.91,69065,\"fantasy, fiction\",LeviathanScott Westerfeld\r\n1701,1746,13153,James Patterson,Hide and Seek,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390097142l/13153.jpg,4.1,53038,\"mystery, fiction\",Hide and SeekJames Patterson\r\n1702,1748,14756,Jennifer Weiner,Goodnight Nobody,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441760771l/14756._SY475_.jpg,3.64,51748,\"fiction, mystery\",\"A young mother moves to a postcard-perfect Connecticut town where she\nunravels crime while her children are in nursery school. Investigating a\ndeath, she discovers disturbing truths.\"\r\n1703,1749,263050,Ben Sherwood,The Death and Life of Charlie St. Cloud,https://images.gr-assets.com/books/1329827169l/263050.jpg,4.01,46361,\"fiction, romance\",\"The powerful bond between two brothers--one alive and the other, killed in\na terrible accident--unexpectedly transcends the barriers of life and\ndeath, and it is up to one enchanting woman to make their world right. By\nthe author of The Man Who Ate the 747. Reprint. 25,000 first printing.\"\r\n1704,1750,4866,Dale Carnegie,How to Stop Worrying and Start Living,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442129098l/4866._SY475_.jpg,4.08,46797,\"psychology, business\",\"The first trade paperback edition of the classic guide to conquering the\nfears and worries that prevent individuals from living full and happy lives\noffers practical advice on how to eliminate business and financial\nanxieties, turn criticism into an advantage, avoid fatigue, and more.\nReprint. 25,000 first printing.\"\r\n1705,1751,114145,Nora Roberts,Born in Fire ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252961l/114145._SY475_.jpg,4.21,56901,\"romance, contemporary\",Born in Fire Nora Roberts\r\n1706,1752,77262,Barbara Kingsolver,Animal Dreams,https://images.gr-assets.com/books/1481663395l/77262.jpg,4.05,51007,\"fiction, contemporary\",\"\"\"Animals dream about the things they do in the daytime just like people do.\nIf you want sweet dreams, you've got to live a sweet life.\"\" So says Loyd\nPeregrina, a handsome Apache trainman and latter-day philosopher. But when\nCodi Noline returns to her hometown, Loyd's advice is painfully out of her\nreach. Dreamless and at the end of her rope, Codi comes back to Grace,\nArizona, to confront her past and face her ailing, distant father. What she\nfinds is a town threatened by a silent environmental catastrophe, some\nstartling clues to her own identity, and a man whose view of the world\ncould change the course of her life. Blending flashbacks, dreams, and\nNative American legends, Animal Dreams is a suspenseful love story and a\nmoving exploration of life's largest commitments.\"\r\n1707,1753,11561469,Rebecca Donovan,Reason to Breathe,https://images.gr-assets.com/books/1329013365l/11561469.jpg,4.23,68676,\"romance, contemporary\",\"In the affluent town of Weslyn, Connecticut, where most people worry about\nwhat to be seen in and who to be seen with, Emma Thomas would rather not be\nseen at all. She's more concerned with feigning perfection- pulling down\nher sleeves to conceal the bruises, not wanting anyone to know how far from\nperfect her life truly is. Without expecting it, she finds love. It\nchallenges her to recognize her own worth- at the risk of revealing the\nterrible secret she's desperate to hide.--From back cover.\"\r\n1708,1754,6485421,Cassandra Clare,The Mortal Instruments Boxed Set: City of Bones; City of Ashes; City of Glass,https://images.gr-assets.com/books/1312016549l/6485421.jpg,4.57,55518,\"fantasy, paranormal\",\"All six books in the #1 New York Times bestselling Mortal Instruments\nseries, now available in a collectible paperback boxed set. Enter the\nsecret world of the Shadowhunters with this handsomely packaged boxed set\nthat includes City of Bones, City of Ashes, City of Glass, City of Fallen\nAngels, City of Lost Souls, and City of Heavenly Fire. The Mortal\nInstruments books have more than twenty-four million copies in print, and\nthis complete collectible set of six paperback volumes is a perfect gift\nfor newcomers to the series and for loyal fans alike.\"\r\n1709,1755,14554,Sidney Sheldon,If Tomorrow Comes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387733550l/14554.jpg,4.01,44722,\"fiction, thriller\",\"Lovely, idealistic Tracy Whitney is framed into a fifteen year sentence in\nan escape-proof penitentiary. With dazzling ingenuity she fights back to\ndestroy the untouchable crime lords who put her there. With her\nintelligence and beauty as her only weapons, Tracy embarks on a series of\nextraordinary escapades that sweep her across the globe. In an explosive\nconfrontation Tracy meets her equal in irresistible Jeff Stevens, whose\npast is as colorful as Tracy's.\"\r\n1710,1756,276287,\"M.C. Escher, Bruce Brooks Pfeiffer\",M.C. Escher: grafiek en tekeningen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388377308l/276287.jpg,3.93,50047,\"art, nonfiction\",\"M.C. Escher: grafiek en tekeningenM.C. Escher, Bruce Brooks Pfeiffer\"\r\n1711,1757,27252,Donna Woolfolk Cross,Pope Joan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912604l/27252.jpg,4.06,51385,\"fiction, history\",\"Rebelling against medieval strictures forbidding the education of women,\nyoung Joan assumes the identity of her murdered brother and is initiated\ninto the monastery of Fulda, where she distinguishes herself as a great\nChristian scholar before relocating to Rome and becoming a powerful force\nin religious politics. Original.\"\r\n1712,1758,6259,Sebastian Faulks,Birdsong,https://images.gr-assets.com/books/1349952101l/6259.jpg,4.07,49930,\"fiction, classics\",\"In 1910, Stephen Wraysford, a young Englishman, journeys to France, becomes\nembroiled in a series of traumatic events, including a clandestine love\naffair, and finds himself trapped amid the horrors of the First World War.\nReprint. 40,000 first printing.\"\r\n1713,1759,121127,Terry Goodkind,\"Faith of the Fallen  (Sword of Truth, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516509957l/121127.jpg,4.11,53676,\"fantasy, fiction\",\"Terry Goodkind author of the enormously popular Sword of Truth novels, has\nforged perhaps his best novel yet, pitting Richard Rahl and Kahlan Amnell\nagainst threats to the freedom of the world that will take them to opposite\nends of the world to defeat the forces of chaos and anarchy. Emperor Jagang\nis rising once again in the Old World and Richard must face him, on his own\nturf. Richard heads into the Old World with Cara, the Mord-Sith, while his\nbeloved Kahlan remains behind. Unwilling to heed an ancient prophecy,\nKahlan raises an army and goes into battle against forces threatening armed\ninsurrection in the Midlands. Separated and fighting for their lives,\nRichard and Kahlan will be tested to the utmost.\"\r\n1714,1760,7243142,Brandon Mull,\"Fablehaven: Keys to the Demon Prison (Fablehaven, #5)\",https://images.gr-assets.com/books/1298081448l/7243142.jpg,4.42,58481,\"fantasy, fiction\",\"Since ancient times, the great demon prison Zzyzx has protected the world\nfrom the most dangerous servants of darkness, including Gorgrog, the Demon\nKing. After centuries of plotting, the Sphinx is on the verge of recovering\nthe five artifacts necessary to open the legendary prison. Facing the\npotential of a world-ending calamity, all friends of light must unite in a\nfinal effort to thwart the Sphinx s designs and find a safe home for the\nfive artifacts. To this end, Kendra, Seth, and the Knights of the Dawn will\nventure far beyond the walls of Fablehaven to strange and exotic magical\npreserves across the globe, where the end of every quest becomes the\nbeginning of another. In this explosive series finale, allegiances will be\nconfirmed and secrets revealed as the forces of light and darkness collide\nin a desperate struggle to control the keys to the demon prison.\"\r\n1715,1761,6346975,Joshua Foer,Moonwalking with Einstein: The Art and Science of Remembering Everything,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347705105l/6346975.jpg,3.85,48816,\"science, nonfiction\",\"Citing memory-related inconveniences suffered by average individuals, the\nauthor chronicles his own struggles with chronic forgetfulness and his year\nin memory training, as well as sharing historical lore and memory\ntechniques.\"\r\n1716,1762,5176,Sue Miller,While I Was Gone,https://images.gr-assets.com/books/1495632082l/5176.jpg,3.67,52244,\"fiction, contemporary\",\"Having moved on with her life after a friend was brutally murdered, Jo\nBecker is now married with a grown family, but when an old housemate moves\ninto the neighborhood, Jo rekindles a relationship that takes her back to\nthe past and threatens her future\"\r\n1717,1763,33668,\"James Patterson, Maxine Paetro\",\"4th of July (Women's Murder Club, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186955l/33668.jpg,4.04,55637,\"mystery, fiction\",\"Detective Lindsay Boxer and the Women's Murder Club make a courageous\nreturn for their fourth and most chilling case ever-one that could easily\nbe their last. In a late-night showdown after a near-fatal car chase, San\nFrancisco police lieutenant Lindsay Boxer has to make an instantaneous\ndecision: in self-defense, she fires her weapon-and sets off a chain of\nevents that leaves a police force disgraced, an entire city divided, and a\nfamily destroyed. Now everything she's worked her entire life for hinges on\nthe decision of twelve jurors. To escape scrutiny during breaks from her\ntrial, Lindsay retreats to the picturesque town of Half Moon Bay. But soon\nafter her arrival, a string of grisly murders punches through the peaceful\ncommunity. There are no witnesses and there is no discernible pattern. But\na key detail recalls a case Lindsay worked on as a rookie years before-an\nunsolved murder that has haunted her ever since. As summer comes into full\nswing, Lindsay and her friends in the Women's Murder Club battle for her\nlife on two fronts: before a judge and jury as her trial comes to a climax,\nand facing unknown adversaries who will do anything to keep her from the\ntruth about the killings-including killing again. James Patterson fine-\ntunes the tension as never before in this breathtaking addition to the\nbest-selling detective series to debut in a decade.\"\r\n1718,1764,2179276,Eoin Colfer,The Time Paradox,https://images.gr-assets.com/books/1395218526l/2179276.jpg,4.07,61987,\"fantasy, fiction\",\"When Artemis Fowl’s mother contracts a life-threatening illness, his world\nis turned upside down. The only hope for a cure lies in the brain fluid of\nthe silky sifaka lemur. Unfortunately, the animal is extinct due to a\nheartless bargain Artemis himself made as a younger boy. Though the odds\nare stacked against him, Artemis is not willing to give up. With the help\nof his fairy friends, the young genius travels back in time to save the\nlemur and bring it back to the present. But to do so, Artemis will have to\ndefeat a maniacal poacher, who has set his sights on new prey: Holly Short.\nThe rules of time travel are far from simple, but to save his mother,\nArtemis will have to break them all…and outsmart his most cunning adversary\nyet: Artemis Fowl, age ten.\"\r\n1719,1765,858719,Norman Bridwell,An Itchy Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388851547l/858719.jpg,4.09,58925,\"fiction, classics\",An Itchy DayNorman Bridwell\r\n1720,1766,12680907,Kristin Cashore,Bitterblue,https://images.gr-assets.com/books/1331532273l/12680907.jpg,4.01,74479,\"fantasy, romance\",\"The companion to the \"\"New York Times\"\" bestsellers \"\"Graceling\"\" and \"\"Fire.\"\"\nEighteen-year-old Bitterblue, queen of Monsea, realizes her heavy\nresponsibility and the futility of relying on advisors who surround her\nwith lies as she tries to help her people to heal from the 35-year spell\ncast by her father, a violent psychopath with mind-altering abilities.\"\r\n1721,1767,6604794,Jandy Nelson,The Sky Is Everywhere,https://images.gr-assets.com/books/1496659743l/6604794.jpg,4.04,61937,\"contemporary, romance\",\"In the months after her sister dies, seventeen-year-old Lennie falls into a\nlove triangle and discovers the strength to follow her dream of becoming a\nmusician.\"\r\n1722,1768,34504,Terry Pratchett,Wyrd Sisters,https://images.gr-assets.com/books/1275974472l/34504.jpg,4.11,60472,\"fantasy, fiction\",Wyrd SistersTerry Pratchett\r\n1723,1769,17617277,Katy Evans,Real,https://images.gr-assets.com/books/1363442697l/17617277.jpg,4.21,83000,\"romance, contemporary\",\"The highly anticipated sixth story in the New York Times bestselling series\nthat began withReal—“a rare mix of fevered obsession and gentle\nenchantment…a visceral and addicting debut” (Christina Lauren). A young\ngirl in a love triangle—caught between her desire for a dangerous,\nmonstrous man and a nice guy who makes her happy for the first time in her\nlife.\"\r\n1724,1770,15729539,Joe Hill,NOS4A2,https://images.gr-assets.com/books/1369591617l/15729539.jpg,4.06,50181,\"horror, fiction\",NOS4A2Joe Hill\r\n1725,1771,337113,\"Anne Brontë, Stevie Davies\",The Tenant of Wildfell Hall,https://images.gr-assets.com/books/1479652419l/337113.jpg,3.91,59408,\"fiction, romance\",\"The Tenant of Wildfell HallAnne Brontë, Stevie Davies\"\r\n1726,1772,272895,\"Walter Farley, Keith Ward\",The Black Stallion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173319066l/272895.jpg,4.18,60720,\"classics, fiction\",\"A shipwreck leaves young Alec stranded on a deserted island with a wild\nstallion. Dependent on each other for survival, boy and horse learn to\ntrust and love each other as they establish an amazing friendship that\nlasts a lifetime. Copyright © Libri GmbH. All rights reserved.\"\r\n1727,1773,13600318,S.C. Stephens,Reckless,https://images.gr-assets.com/books/1356986017l/13600318.jpg,4.42,69657,\"romance, contemporary\",\"A conclusion to the trilogy that includes Effortless finds Kiera and\nKellan's relationship put to an ultimate test when Kellan's band hits it\nbig, a development that pits them against a greedy executive, a declining\npop star and ruthless reporters. Original.\"\r\n1728,1774,65111,\"Lemony Snicket, Brett Helquist\",The Grim Grotto,https://images.gr-assets.com/books/1415580928l/65111.jpg,3.99,73492,\"fiction, fantasy\",\"Warning: Your day will become very dark - and possibly damp - if you read\nthis book. Plan to spend this spring in hiding. Lemony Snicket is back with\nthe eleventh book in his New York Times bestselling A Series of Unfortunate\nEvents. Lemony Snicket's saga about the charming, intelligent and grossly\nunlucky Baudelaire orphans continues to provoke suspicion and despair in\nreaders the world over. In the eleventh and most alarming volume yet in the\nbestselling phenomenon A Series of Unfortunate Events, the intrepid\nsiblings delve further into the dark mystery surrounding the death of their\nparents and the baffling VFD organisation. Ages 9+\"\r\n1729,1775,581409,Tomie dePaola,Strega Nona,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388643215l/581409.jpg,4.22,65259,\"fiction, fantasy\",\"When Strega Nona leaves him alone with her magic pasta pot, Big Anthony is\ndetermined to show the townspeople how it works.\"\r\n1730,1776,11381643,R.L. Mathewson,Playing for Keeps,https://images.gr-assets.com/books/1406585295l/11381643.jpg,4.08,85266,\"romance, contemporary\",Playing for KeepsR.L. Mathewson\r\n1731,1777,187633,\"David Bayles, Ted Orland\",Art & Fear: Observations on the Perils (and Rewards) of Artmaking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442712080l/187633._SY475_.jpg,3.67,47688,\"art, nonfiction\",A self-help book for artists of all medium.\r\n1732,1778,91767,Hayden Herrera,Frida. A Biography of Frida Kahlo,https://images.gr-assets.com/books/1407108642l/91767.jpg,3.94,43976,\"biography, nonfiction\",Frida. A Biography of Frida KahloHayden Herrera\r\n1733,1779,11918,Kelley Armstrong,Bitten,https://images.gr-assets.com/books/1306101770l/11918.jpg,4.06,71988,\"paranormal, fantasy\",\"On the eve of her marriage, Elena Michaels learns that her fiance has been\nconcealing his secret life as a werewolf and, as a bonus, he has made her\ninto one also.\"\r\n1734,1780,8705784,C.C. Hunter,Born at Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546092698l/8705784._SY475_.jpg,4.13,68084,\"paranormal, fantasy\",\"Sixteen-year-old Kylie Galen thinks her misbehavior in the wake of her\ngrandmother's death and her parents' separation are the reasons she has\nbeen sent to Shadow Falls Camp, but learns it is a training ground for\nvampires, werewolves, and other \"\"freaky freaks,\"\" of which she may be one.\"\r\n1735,1781,191113,Mo Willems,Don't Let the Pigeon Drive the Bus,https://images.gr-assets.com/books/1328495575l/191113.jpg,4.29,59698,\"fiction, fantasy\",\"When the bus driver decides to take a break from driving, a wild and wacky\npigeon pleads and begs to take his place, capturing the antics of a\npreschooler's temper tantrum.\"\r\n1736,1782,17347389,Maggie Stiefvater,The Dream Thieves,https://images.gr-assets.com/books/1477103777l/17347389.jpg,4.27,75637,\"fantasy, paranormal\",\"Now that the ley lines around Cabeswater are awake, magic is swirling\naround Blue and The Raven boys and Ronan Lynch's ability to pull objects\nfrom his dreams is almost out of control but worst of all, the mysterious\nGray Man is stalking the Lynch family, looking for something called the\nGreywaren.\"\r\n1737,1783,264,\"Henry James, Patricia Crick\",The Portrait of a Lady,https://images.gr-assets.com/books/1502148606l/264.jpg,3.76,55019,\"classics, fiction\",\"When Isabel Archer, a beautiful, spirited American is brought to Europe by\nher wealthy aunt Touchett, it is expected that she will soon marry. But\nIsabel, resolved to enjoy the freedom that her fortune has opened up and to\ndetermine her own fate, does not hesitate to turn down two eligible\nsuitors. It is only when she finds herself irresistibly drawn to the\ncultivated but worthless Gilbert Osmond that she discovers that wealth is a\ntwo-edged sword and that there is a price to be paid for independence. With\nits subtle delineation of American characters in a European setting,\nPortrait of a Lady is one of the most accomplished and popular of Henry\nJames's early novels.\"\r\n1738,1784,264158,\"Edgar Allan Poe, Gustave Doré\",The Raven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347398489l/264158.jpg,4.28,56633,\"poetry, classics\",\"The Raven Edgar Allan Poe (1809 - 1849) was an American writer and literary\ncritic. Poe is best known for his poetry and short stories, particularly\nhis tales of mystery and the macabre. He is widely regarded as a one of the\nkey figures of American Literature Romanticism and was one of the United\nStates earliest practitioners of the short story. Equally Poe is often\nconsidered the inventor of both the detective fiction genre and helping the\nemergence of the science fiction genre. With all this still to this day\n\"\"The Raven\"\" stands out as the most often synonymous with his name. Gustave\nDoré (1832-1883) was one of the busiest, most in-demand artists of the 19th\ncentury, made his name illustrating works by such authors as Rabelais,\nBalzac, Milton, and Dante. The engravings here made just before his death\n(and published posthumous) are a example of the skill he possessed to bring\nsuch vivid tales to life. Here they are presented in a new way. Not with\nsingle line accompaniments but whole stanzas to shed a new way at seeing\nthem both.\"\r\n1739,1785,99300,Charlotte Perkins Gilman,The Yellow Wallpaper,https://images.gr-assets.com/books/1327909237l/99300.jpg,4.02,64690,\"classics, fiction\",The Yellow WallpaperCharlotte Perkins Gilman\r\n1740,1786,26245850,Noah Hawley,Before the Fall,https://images.gr-assets.com/books/1462515889l/26245850.jpg,3.76,48807,\"fiction, mystery\",Before the FallNoah Hawley\r\n1741,1787,20317106,محمد صادق,هيبتا,https://images.gr-assets.com/books/1403045796l/20317106.jpg,3.82,42978,\"romance, fiction\",هيبتامحمد صادق\r\n1742,1788,24813,Bill Watterson,The Calvin and Hobbes Tenth Anniversary Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429324469l/24813.jpg,4.63,48280,\"comics, fiction\",\"The creator of \"\"Calvin and Hobbes\"\" discusses the art of cartooning,\nexplains how he creates his popular comic strip, and presents his favorite\nmoments from the series' ten years\"\r\n1743,1789,4325,Sarah Dessen,Dreamland ,https://images.gr-assets.com/books/1385861832l/4325.jpg,3.91,64082,\"contemporary, romance\",\"After her older sister runs away, sixteen-year-old Caitlin decides that she\nneeds to make a major change in her own life and begins an abusive\nrelationship with a boy who is mysterious, brilliant, and dangerous.\"\r\n1744,1790,14568987,B.A. Shapiro,The Art Forger,https://images.gr-assets.com/books/1348518546l/14568987.jpg,3.69,47873,\"mystery, fiction\",\"Don't miss B. A. Shapiro's new novel, The Collector's Apprentice, available\nnow! “[A] highly entertaining literary thriller about fine art and foolish\nchoices.” —Parade “[A] nimble mystery.” —The New York Times Book Review\n“Gripping.” —O, The Oprah Magazine Almost twenty-five years after the\ninfamous art heist at the Isabella Stewart Gardner Museum—still the largest\nunsolved art theft in history—one of the stolen Degas paintings is\ndelivered to the Boston studio of a young artist. Claire Roth has entered\ninto a Faustian bargain with a powerful gallery owner by agreeing to forge\nthe Degas in exchange for a one-woman show in his renowned gallery. But as\nshe begins her work, she starts to suspect that this long-missing\nmasterpiece—the very one that had been hanging at the Gardner for one\nhundred years—may itself be a forgery. The Art Forger is a thrilling novel\nabout seeing—and not seeing—the secrets that lie beneath the canvas.\"\r\n1745,1791,248483,Shannon Hale,Austenland,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440426937l/248483._SX318_.jpg,3.54,66400,\"romance, fiction\",\"Because her obsession with Jane Austen's Mr. Darcy, as played by Colin\nFirth in the BBC adaptation of Pride and Prejudice, is ruining her love\nlife, Jane Hayes is delighted when she gets the chance to take a trip to an\nEnglish resort catering to Austen-crazed women, where she hopes to meet a\nperfect Regency-era gentleman of her own. Reprint. 75,000 first printing.\"\r\n1746,1792,18749,Chimamanda Ngozi Adichie,Half of a Yellow Sun,https://images.gr-assets.com/books/1327934717l/18749.jpg,4.28,46716,\"contemporary, history\",Half of a Yellow SunChimamanda Ngozi Adichie\r\n1747,1793,105578,Chetan Bhagat,One Night @ The Call Center,https://images.gr-assets.com/books/1320500924l/105578.jpg,2.47,40718,\"fiction, romance\",\"On Thanksgiving evening, at a call center in India, a colorful cast of\ntwenty-something characters--lovelorn Sam, pining team member Priyanka, who\nhas just dumped him; Vroom, who is out to change the world; and Raidkha,\ndealing with her husband's affair--struggles its way through scripted\ncalls, until God gets on the phone. Original. 35,000 first printing.\"\r\n1748,1794,23209927,Sara Gruen,At the Water's Edge,https://images.gr-assets.com/books/1412194706l/23209927.jpg,3.65,44956,\"romance, fiction\",At the Water's EdgeSara Gruen\r\n1749,1795,11607,\"Richard Bachman, Stephen King\",The Running Man,https://images.gr-assets.com/books/1333160557l/11607.jpg,3.8,62268,\"horror, thriller\",\"The Running ManRichard Bachman, Stephen King\"\r\n1750,1796,68210,Marilynne Robinson,Gilead,https://images.gr-assets.com/books/1451555787l/68210.jpg,3.84,54081,\"fiction, religion\",\"As the Reverend John Ames approaches the hour of his own death, he writes a\nletter to his son chronicling three previous generations of his family, a\nstory that stretches back to the Civil War and reveals uncomfortable\nsecrets about the family of preachers. Reader's Guide available. Reprint.\"\r\n1751,1797,2794,Thomas Pynchon,The Crying of Lot 49,https://images.gr-assets.com/books/1375727632l/2794.jpg,3.7,48692,\"fiction, classics\",The Crying of Lot 49Thomas Pynchon\r\n1752,1798,11389875,Ken Follett,Edge of Eternity,https://images.gr-assets.com/books/1377871984l/11389875.jpg,4.04,21459,\"fiction, history\",\"Ken Follett's extraordinary historical epic, the Century Trilogy, reaches\nits sweeping, passionate conclusion. In Fall of Giants and Winter of the\nWorld, Ken Follett followed the fortunes of five international families--\nAmerican, German, Russian, English, and Welsh--as they made their way\nthrough the twentieth century. Now they come to one of the most tumultuous\neras of all: the 1960s through the 1980s, from civil rights,\nassassinations, mass political movements, and Vietnam to the Berlin Wall,\nthe Cuban Missile Crisis, presidential impeachment, revolution--and rock\nand roll. East German teacher Rebecca Hoffmann discovers she's been spied\non by the Stasi for years and commits an impulsive act that will affect her\nfamily for the rest of their lives. . . . George Jakes, the child of a\nmixed-race couple, bypasses a corporate law career to join Robert F.\nKennedy's Justice Department and finds himself in the middle of not only\nthe seminal events of the civil rights battle but a much more personal\nbattle of his own. . . . Cameron Dewar, the grandson of a senator, jumps at\nthe chance to do some official and unofficial espionage for a cause he\nbelieves in, only to discover that the world is a much more dangerous place\nthan he'd imagined. . . . Dimka Dvorkin, a young aide to Nikita Khrushchev,\nbecomes an agent both for good and for ill as the United States and the\nSoviet Union race to the brink of nuclear war, while his twin sister,\nTanya, carves out a role that will take her from Moscow to Cuba to Prague\nto Warsaw--and into history. Look out for Ken's newest book, A Column of\nFire, available now.\"\r\n1753,1799,8428064,Rachel Hawkins,Demonglass,https://images.gr-assets.com/books/1287692542l/8428064.jpg,4.13,74589,\"fantasy, paranormal\",\"The critics have spoken—this New York Times best-seller is \"\"impossible to\nput down!\"\" Teens and reviewers alike have fallen in love with Demonglass'\nhumor, forbidden romance, suspense, and delicious paranormal fun. Sophie\nMercer thought she was a witch, which was why she was sent to Hex Hall, a\nreform school for delinquent Prodigium (aka witches, shapeshifters, and\nfairies). But that was before she discovered she's a demon, and her hot\ncrush, Archer Cross, is an agent for The Eye, a group bent on wiping her\nkind off the face of the earth. What’s worse, Sophie has powers that\nthreaten the lives of everyone she loves. Which is why she decides to go to\nLondon for the Removal, a risky procedure that will either destroy her\npowers forever—or kill her. But once Sophie arrives, she makes a shocking\ndiscovery: someone is raising new demons in secret and planning to use\ntheir powers to destroy the world. Meanwhile, The Eye is set on hunting\nSophie down, and they’re using Acher to do it. But it’s not like she has\nfeelings for him anymore. Does she?\"\r\n1754,1800,22590,\"Philip K. Dick, David Alabort, Manuel Espín\",Ubik,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327995569l/22590.jpg,4.1,48256,\"fiction, classics\",\"Glenn Runciter ha muerto. ¿O lo han hecho todos los demás? Alguien murió en\nuna explosión organizada por sus competidores. De hecho, es el funeral de\nRunciter el que está programado en Des Moines. Pero mientras tanto, sus\nafligidos empleados están recibiendo asombrosos y a veces escatológicos\nmensajes de su jefe.\"\r\n1755,1801,15575,Terry Brooks,The Sword of Shannara,https://images.gr-assets.com/books/1470063017l/15575.jpg,3.76,58967,\"fantasy, fiction\",The Sword of ShannaraTerry Brooks\r\n1756,1802,32418,Thomas Harris,Hannibal,https://images.gr-assets.com/books/1327356556l/32418.jpg,3.72,57569,\"horror, fiction\",\"Seven years after his escape from the authorities, Hannibal Lecter, a\nserial killer, is tracked down by one of his former victims using FBI agent\nClarice Starling as bait, in the sequel to The Silence of the Lambs.\nReissue.\"\r\n1757,1803,395871,L.J. Smith,The Awakening and the Struggle,https://images.gr-assets.com/books/1393837129l/395871.jpg,3.67,68651,\"paranormal, romance\",\"Elena: the golden girl, the leader, the one who can have any boy she wants.\nStefan: brooding and mysterious, he seems to be the only one who can resist\nElena, even as he struggles to protect her from the horrors that haunt his\npast. Damon: sexy, dangerous, and driven by an urge for revenge against\nStefan, the brother who betrayed him. Determined to have Elena, he'd kill\nto possess her. Collected here in one volume for the first time, volumes\none and two of The Vampire Diaries, the tale of two vampire brothers and\nthe beautiful girl torn between them.\"\r\n1758,1804,1466455,Liane Moriarty,Three Wishes,https://images.gr-assets.com/books/1183888822l/1466455.jpg,3.76,40569,\"fiction, contemporary\",\"A New York Times bestseller, Three Wishes is the funny, heartwarming and\ncompletely charming first novel from Liane Moriarty, also the author of #1\nNew York Times bestsellers The Husband’s Secret and Big Little Lies. Lyn,\nCat, and Gemma Kettle, beautiful thirty-three-year-old triplets, seem to\nattract attention everywhere they go. Together, laughter, drama, and mayhem\nseem to follow them. But apart, each is dealing with her own share of ups\nand downs. Lyn has organized her life into one big checklist, Cat has just\nlearned a startling secret about her marriage, and Gemma, who bolts every\ntime a relationship hits the six-month mark, holds out hope for lasting\nlove. In this wise, witty, and hilarious novel, we follow the Kettle\nsisters through their tumultuous thirty-third year as they deal with\nsibling rivalry and secrets, revelations and relationships, unfaithful\nhusbands and unthinkable decisions, and the fabulous, frustrating life of\nforever being part of a trio.\"\r\n1759,1805,3575676,L.J. Smith,\"Night World, No. 3\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439077707l/3575676._SY475_.jpg,4.2,58232,\"fantasy, paranormal\",\"Night World Volume 3 includes books seven through nine of the New York\nTimes bestselling series by the author of The Vampire Diaries. The Night\nWorld isn’t a place. It’s all around us. It’s a secret society of vampires,\nwerewolves, witches, and other creatures of darkness that live among us. In\nthe third bind-up of this series, the Night People are preparing for the\napocalypse to destroy the human world. Four teenagers have been given\nspecial powers to prevent the impending destruction, but first they, and\ntheir soulmates, must survive. In Huntress, a hunter—who is half\nvampire—stalks other vampires to protect humans. A vampire prince falls in\nlove with a girl he enslaves in Black Dawn. And a shapeshifter must protect\na rebellious teenager in Witchlight.\"\r\n1760,1806,5174,Ann-Marie MacDonald,Fall on Your Knees,https://images.gr-assets.com/books/1481449709l/5174.jpg,3.95,50446,\"fiction, contemporary\",\"The Piper family is steeped in secrets, lies, and unspoken truths. At the\neye of the storm is one secret that threatens to shake their lives -- even\ndestroy them. Set on stormy Cape Breton Island off Nova Scotia, Fall on\nYour Knees is an internationally acclaimed multigenerational saga that\nchronicles the lives of four unforgettable sisters. Theirs is a world\nfilled with driving ambition, inescapable family bonds, and forbidden love.\nCompellingly written, by turns menacingly dark and hilariously funny, this\nis an epic tale of five generations of sin, guilt, and redemption.\"\r\n1761,1807,10626594,Maggie Stiefvater,The Scorpio Races,https://images.gr-assets.com/books/1461209661l/10626594.jpg,4.08,70335,\"fantasy, romance\",\"Returning champion Sean Kendrick competes against Puck Connolly, the first\ngirl ever to ride in the annual Scorpio Races, both trying to keep hold of\ntheir dangerous water horses long enough to make it to the finish line.\"\r\n1762,1808,18966806,Pierce Brown,Morning Star,https://images.gr-assets.com/books/1461354277l/18966806.jpg,4.5,47736,\"fantasy, fiction\",Morning StarPierce Brown\r\n1763,1809,201341,Brian Jacques,Mossflower,https://images.gr-assets.com/books/1281811805l/201341.jpg,4.09,56860,\"fantasy, fiction\",\"Resolving to end the iron-paw rule of tyrannical wildcat Tsarmina, Martin\nthe mouse and mousethief Gonff, joined by Kinny the mole, journey to\nSalamandastron in search of Boar the Fighter. Reprint. NYT.\"\r\n1764,1810,23848559,Jenny  Lawson,Furiously Happy,https://images.gr-assets.com/books/1429101901l/23848559.jpg,3.93,59743,\"memoir, nonfiction\",Furiously HappyJenny  Lawson\r\n1765,1811,6420,Janet Evanovich,Visions of Sugar Plums,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439320318l/6420._SY475_.jpg,3.68,62726,\"mystery, fiction\",\"A holiday adventure finds Stephanie Plum struggling to remove an intruder\nfrom her apartment and falling for a mysterious newcomer.\"\r\n1766,1812,13810,Raymond E. Feist,\"Magician: Master (The Riftwar Saga, #2)\",https://images.gr-assets.com/books/1320457190l/13810.jpg,4.25,53878,\"fantasy, fiction\",\"As a captive slave of the Tsurani, warlike invaders from another world,\nPug, an apprentice sorcerer, learns to control his awesome magical powers\nin order to battle an ancient Evil\"\r\n1767,1813,15505346,Tracey Garvis-Graves,On the Island,https://images.gr-assets.com/books/1339162550l/15505346.jpg,4.13,28651,\"romance, contemporary\",\"Stranded on an uninhabited island after their private plane crashes,\nthirty-year-old Anna Emerson and sixteen-year-old T.J. Callahan, her tutee,\nstruggle to survive and, as the months pass, slowly fall in love.\"\r\n1768,1814,8492768,Lisa Genova,Left Neglected,https://images.gr-assets.com/books/1285414621l/8492768.jpg,3.95,52095,\"contemporary, fiction\",Left NeglectedLisa Genova\r\n1769,1815,5509,\"Miep Gies, Alison Leslie Gold\",Anne Frank Remembered,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437766396l/5509._SY475_.jpg,4.26,50412,\"memoir, classics\",\"Anne Frank RememberedMiep Gies, Alison Leslie Gold\"\r\n1770,1816,13055592,John Scalzi,Redshirts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348617890l/13055592.jpg,3.84,53746,\"fiction, fantasy\",RedshirtsJohn Scalzi\r\n1771,1817,41716,Clive Cussler,Sahara,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169751349l/41716._SY475_.jpg,3.95,47054,\"fiction, thriller\",\"Stranded in the Sahara desert, Dirk Pitt and his friends uncover the truth\nabout the fate of 1930s aviator Kitty Mannock and the secret behind\nLincoln's assassination. Reissue.\"\r\n1772,1818,2168860,Jeaniene Frost,One Foot in the Grave,https://images.gr-assets.com/books/1373857981l/2168860.jpg,4.31,76368,\"paranormal, romance\",\"You can run from the grave, but you can't hide . . . Half-vampire Cat\nCrawfield is now Special Agent Cat Crawfield, working for the government to\nrid the world of the rogue undead. She's still using everything Bones, her\nsexy and dangerous ex, taught her, but when Cat is targeted for\nassassination, the only man who can help her is the vampire she left\nbehind. Being around him awakens all her emotions, from the adrenaline kick\nof slaying vamps side by side to the reckless passion that consumed them.\nBut a price on her head—wanted: dead or half-alive—means her survival\ndepends on teaming up with Bones. And no matter how hard she tries to keep\nthings professional between them, she'll find that desire lasts forever . .\n. and that Bones won't let her get away again.\"\r\n1773,1819,1282954,Liane Moriarty,The Last Anniversary,https://images.gr-assets.com/books/1482971434l/1282954.jpg,3.72,35325,\"fiction, mystery\",The Last AnniversaryLiane Moriarty\r\n1774,1820,5047880,Michael  Grant,Hunger ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388710386l/5047880.jpg,4.02,60519,\"fantasy, fiction\",Hunger Michael  Grant\r\n1775,1821,2292384,Janet Evanovich,Fearless Fourteen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442967398l/2292384._SY475_.jpg,4.02,70806,\"mystery, fiction\",Fearless FourteenJanet Evanovich\r\n1776,1822,12615008,Chetan Bhagat,\"Revolution 2020: Love, Corruption, Ambition\",https://images.gr-assets.com/books/1317964666l/12615008.jpg,3.07,42845,\"fiction, romance\",\"Revolution 2020 by Chetan Bhagat Yet Another Grasping Work By The\nBestselling Author Once upon a time, in small-town India, there lived two\nintelligent boys. One wanted to use his intelligence to make money. Another\nwanted to use his intelligence to create a revolution. The problem was,\nthey both loved the same girl! Welcome to Revolution 2020, an exciting\nstory about childhood friends Gopal, Raghav and Aarti who struggle to find\nsuccess, and live in Varanasi. However, it isn't easy to achieve this in an\nunfair society that rewards the corrupt. As Gopal gives in to the system,\nand Raghav fights it, who will win? Revolution 2020 from the bestselling\nauthor of Five Point Someone, One Night @ The Call Center, The Three\nMistakes of My Life and 2 States, comes another gripping tale from the\nheartland of India. Are you ready for the revolution? About The Author\nChetan Bhagat's books have remained bestsellers since their release, and\nfew have already been adapted into major Bollywood films. Readers' and\nMedia accolades are unending. The New York Times called him the 'the\nbiggest selling English language novelist in India's history.' Time\nmagazine named him in the \"\"100 Most Influential People in the world\"\" and\nFast Company, USA listed him as one of the world's \"\"100 most creative\npeople in business.\"\" Chetan Bhagat writes columns for leading English and\nHindi newspapers, focusing on youth and national development issues. He is\nalso a motivational speaker. Chetan quit his international investment\nbanking career in 2009, to devote his entire time to writing and make\nchange happen in the country. He lives in Mumbai with his wife Anusha, an\nex-classmate from IIMA and his twin boys Shyam and Ishaan.\"\r\n1777,1823,160629,\"Michael Bond, Peggy Fortnum\",A Bear Called Paddington,https://images.gr-assets.com/books/1393784912l/160629.jpg,4.21,62590,\"classics, fiction\",\"A Bear Called PaddingtonMichael Bond, Peggy Fortnum\"\r\n1778,1824,162089,Sara Shepard,Flawless,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518062388l/162089._SY475_.jpg,3.96,59403,\"mystery, contemporary\",\"After their friend who has been missing for more than three years turns up\ndead, four former best friends continue to receive frightening messages\nfrom someone who knows damaging secrets about them.\"\r\n1779,1825,91253,Beverly Cleary,\"Ramona Quimby, Age 8\",https://images.gr-assets.com/books/1300270683l/91253.jpg,4.08,58135,\"fiction, classics\",\"Ramona feels quite grown-up taking the bus by herself, helping big sister\nBeezus make dinner, and trying hard to be nice to pesky Willa Jean after\nschool. Turning eight years old and entering the first grade can do that to\na girl. So how can her teacher call her a nuisance?\"\r\n1780,1826,98427,Nelson DeMille,The General's Daughter,https://images.gr-assets.com/books/1334443536l/98427.jpg,4.07,50264,\"fiction, mystery\",\"Here is an intriguing and sophisticated murder mystery of an upstanding\nmilitary officer - the base commander's daughter - who's been leading an\nunsavory double life. When a professional military woman with a pristine\nreputation is found raped and murdered, a preliminary search turns up\ncertain paraphernalia, and sex toys that point to a scandal of major\nproportions, The chief investigator is reluctant to take the case when he\nlearns that his partner will be a woman with whom he had a tempestuous\naffair and an unpleasant parting. But duty calls and intrigue begins when\nthey learn that several top-level people may have been involved with the\n\"\"golden girl\"\" - and many have wanted her dead. It's Nelson DeMille at his\nbest - exciting, suspenseful and highly provocative.\"\r\n1781,1827,65118,\"Lemony Snicket, Brett Helquist\",The Hostile Hospital,https://images.gr-assets.com/books/1442446120l/65118.jpg,3.95,66327,\"fiction, fantasy\",\"The Baudelaires need a safe place to stay - somewhere far away from\nterrible villains and local police. A quiet refuge where misfortune never\nvisits. Might Heimlich Hospital be just the place? In Lemony Snicket′s\neighth ghastly instalment in A Series of Unfortunate Events, I′m sorry to\nsay that the Baudelaire Orphans will spend time in a hospital where they\nrisk encountering a misleading newspaper headline, unnecessary surgery, an\nintercom system, anesthesia, heart-shaped balloons, and some very startling\nnews about a fire. Ages 10+\"\r\n1782,1828,330744,Rumiko Takahashi,犬夜叉 1,https://images.gr-assets.com/books/1288648681l/330744.jpg,4.26,45993,\"manga, fantasy\",犬夜叉 1Rumiko Takahashi\r\n1783,1829,226162,David Seltzer,The Omen,https://images.gr-assets.com/books/1421963974l/226162.jpg,3.99,49935,\"horror, fiction\",\"Jeremy Thorn, United States Ambassador to England, and his wife Katherine\nbecome the parents of a beautiful boy whose destiny is to fulfill the most\nhorrible prophecy ever made. Reprint. (A 20th Century Fox film, written by\nDan McDermott, directed by John Moore, releasing June 2006, starring Liev\nSchreiber, Julia Stiles, Mia Farrow, & David Thewlis) (Horror)\"\r\n1784,1830,6134826,Alyson Noel,Blue Moon,https://images.gr-assets.com/books/1362336365l/6134826.jpg,3.61,74367,\"fantasy, paranormal\",\"Eager to learn everything she can about her new abilities as an Immortal,\nEver turns to her beloved Damen to show her the way, but just as her powers\nare increasing, his are in decline, and as she searches for a way to save\nhim, she finds herself with a wrenching choice to make.\"\r\n1785,1831,12849385,David Baldacci,The Innocent,https://images.gr-assets.com/books/1329854216l/12849385.jpg,4.1,46216,\"suspense, crime\",The InnocentDavid Baldacci\r\n1786,1832,2161733,Tom Rob Smith,Child 44,https://images.gr-assets.com/books/1326549060l/2161733.jpg,4.08,46734,\"fiction, mystery\",Child 44Tom Rob Smith\r\n1787,1833,348225,Nancy E. Turner,\"These Is My Words: The Diary of Sarah Agnes Prine, 1881-1901, Arizona Territories\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190502l/348225.jpg,4.35,44669,\"romance, fiction\",\"These Is My Words: The Diary of Sarah Agnes Prine, 1881-1901, Arizona TerritoriesNancy E. Turner\"\r\n1788,1834,23751850,Liane Moriarty,The Hypnotist's Love Story,https://images.gr-assets.com/books/1418234545l/23751850.jpg,3.69,34107,\"fiction, romance\",\"As a hypnotherapist, Ellen helps her clients deal with all sorts of unusual\nproblems. So when she finds out that her new boyfriend, Nathan, is being\nstalked by his ex-lover, she's not worried at all; in fact, she's rather\ncurious and wishes she could sit down with Saskia to have a good chat about\nit all. No one grows up dreaming of becoming a stalker. It's not a life\nambition or game plan. It just sort of... happens. At least that's Saskia's\nstory and she's sticking with it. And she's determined not to be left\nbehind by Nathan and Ellen's new love. Ellen's wish to counsel Saskia comes\ntrue in a way she could never have predicted – Saskia has been masquerading\nas a new client...This perceptive and honest novel from Liane Moriarty\nshows us that life is complicated, relationships aren't black and white,\nand people are never simply good or bad. And we all do crazy things\nsometimes – especially when we are in love!\"\"Not all the best writers are to\nbe found on the Miles Franklin shortlist. Consider Liane Moriarty, superb\nin technique... should have more critical success. All of her novels set\nthemselves extremely difficult tasks... The novel blends elements of crime,\nhorror and love story... \"\" (Sunday Age)\"\r\n1789,1835,4008,\"Paulo Coelho, Amanda Hopkinson, Nick Caistor\",O Demônio e a Srta. Prym,https://images.gr-assets.com/books/1359082264l/4008.jpg,3.59,42286,\"philosophy, contemporary\",\"\"\"A stranger arrives in the small mountain village, carrying with him a\nbackpack containing a notebook and eleven gold bars. Burying these in the\nvicinity, the stranger strikes up a friendship with a young woman from the\nvillage - Miss Prym. His mission is to uncover the true human nature.\"\"--\nPublisher's description.\"\r\n1790,1836,18419,\"Audrey Penn, Ruth E. Harper, Nancy M. Leak\",The Kissing Hand,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348776209l/18419.jpg,4.41,51219,\"fiction, fantasy\",\"The Kissing HandAudrey Penn, Ruth E. Harper, Nancy M. Leak\"\r\n1791,1837,17306293,Hugh Howey,Shift,https://images.gr-assets.com/books/1379003176l/17306293.jpg,4.12,46518,\"fiction, fantasy\",\"In 2007, the Center for Automation in Nanobiotech (CAN) outlined the\nhardware and software platform that would one day allow robots smaller than\nhuman cells to make medical diagnoses, conduct repairs, and even self-\npropagate. In the same year, the CBS network re-aired a program about the\neffects of propranolol on sufferers of extreme trauma. A simple pill, it\nhad been discovered, could wipe out the memory of any traumatic event. At\nalmost the same moment in humanity's broad history, mankind had discovered\nthe means for bringing about its utter downfall. And the ability to forget\nit ever happened. This is the sequel to the New York Times best-selling\nWool series.\"\r\n1792,1838,8357992,Lee Child,Worth Dying For,https://images.gr-assets.com/books/1356095648l/8357992.jpg,4.2,47296,\"thriller, fiction\",\"Jack Reacher clashes with an organized crime family that is terrorizing\nNebraska corn country in their efforts to supply dangerous international\ncustomers, a battle that is complicated by the unsolved case of a missing\nchild.\"\r\n1793,1839,454856,John Elder Robison,Look Me in the Eye: My Life with Asperger's,https://images.gr-assets.com/books/1320509615l/454856.jpg,3.91,48189,\"memoir, nonfiction\",\"The author describes life growing up different in an odd family, his\nunusual talents, his struggle to live a \"\"normal\"\" life, his diagnosis at the\nage of forty with Asperger's syndrome, and the dramatic changes that have\noccurred since that diagnosis.\"\r\n1794,1840,84136,Sherrilyn Kenyon,Fantasy Lover,https://images.gr-assets.com/books/1348332807l/84136.jpg,4.17,70274,\"romance, paranormal\",\"Cursed to remain a love slave for eternity, Julian of Macedon finds himself\nfalling for his latest owner, Grace Alexander, who might hold the key to\nbreaking the curse.\"\r\n1795,1841,2029177,\"James Patterson, Gabrielle Charbonnet\",Sundays at Tiffany's,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266475617l/2029177.jpg,3.74,51720,\"romance, fiction\",\"The successful but lonely daughter of a powerful New York theater icon\nfalls for her imaginary friend in this touching love story. Jane Margaux is\na lonely little girl. Her mother, a powerful Broadway producer, makes time\nfor her only once a week, for their Sunday trip to admire jewelry at\nTiffany's. Jane has only one friend: a handsome, comforting, funny man\nnamed Michael. He's perfect. But only she can see him. Michael can't stay\nforever, though. On Jane's ninth birthday he leaves, promising her that\nshe'll soon forget him. Years later, in her thirties, Jane is just as alone\nas she was as a child. And despite her own success as a playwright, she is\neven more trapped by her overbearing mother. Then she meets someone-a\nhandsome, comforting, funny man. He's perfect. His name is Michael . . .\"\r\n1796,1842,111180,Jodi Picoult,Perfect Match,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433307244l/111180._SY475_.jpg,3.93,52168,\"contemporary, fiction\",\"District Attorney Nina Frost and her husband, Caleb, face a nightmare when\nthey discover that their young son Nathaniel has been molested, a trauma\nthat has left him mute, terrified, and unable to reveal the identity of his\nattacker.\"\r\n1797,1843,9844,Curtis Sittenfeld,Prep,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925666l/9844.jpg,3.36,50598,\"fiction, contemporary\",\"During the late 1980s, fourteen-year-old Lee Fiora leaves behind her close-\nknit, middle-class Indiana family to enroll in an elite co-ed boarding\nschool in Massachusetts, becoming a shrewd observer of, and eventually a\nparticipant in, their rituals and mores. A first novel. Reader's Guide\nincluded. Reprint.\"\r\n1798,1844,96647,\"Anthony Kiedis, Larry Sloman\",Scar Tissue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348688305l/96647.jpg,4.1,45203,\"music, biography\",\"Now in paperback, the New York Times bestseller by one of rock's most\nprovocative figures Scar Tissue is Anthony Kiedis's searingly honest memoir\nof a life spent in the fast lane. In 1983, four self-described\n\"\"knuckleheads\"\" burst out of the mosh-pitted mosaic of the neo-punk rock\nscene in L.A. with their own unique brand of cosmic hardcore mayhem funk.\nOver twenty years later, the Red Hot Chili Peppers, against all odds, have\nbecome one of the most successful bands in the world. Though the band has\ngone through many incarnations, Anthony Kiedis, the group's lyricist and\ndynamic lead singer, has been there for the whole roller-coaster ride.\nWhether he's recollecting the influence of the beautiful, strong women who\nhave been his muses, or retracing a journey that has included appearances\nas diverse as a performance before half a million people at Woodstock or an\naudience of one at the humble compound of the exiled Dalai Lama, Kiedis\nshares a compelling story about the price of success and excess. Scar\nTissue is a story of dedication and debauchery, of intrigue and integrity,\nof recklessness and redemption -- a story that could only have come out of\nthe world of rock.\"\r\n1799,1845,58027,\"Margaret Atwood, Brigitte Walitzek\",Alias Grace,https://images.gr-assets.com/books/1472960163l/58027.jpg,3.97,51511,\"fiction, mystery\",\"Alias GraceMargaret Atwood, Brigitte Walitzek\"\r\n1800,1846,17876893,Sylvia Day,Captivated by You,https://images.gr-assets.com/books/1410020040l/17876893.jpg,4.06,57831,\"romance, contemporary\",Captivated by YouSylvia Day\r\n1801,1847,29946,Richard Bach,Illusions: The Adventures of a Reluctant Messiah,https://images.gr-assets.com/books/1353964306l/29946.jpg,4.14,44569,\"fiction, philosophy\",\"A Midwest barnstormer/writer befriends a fellow flyer, an unusual sort of\nman who turns out to be a messiah, or, rather, a master of illusions.\"\r\n1802,1848,6381205,Gail Carriger,Soulless,https://images.gr-assets.com/books/1314020848l/6381205.jpg,3.91,73051,\"fantasy, romance\",SoullessGail Carriger\r\n1803,1849,17623975,Gayle Forman,Just One Day,https://images.gr-assets.com/books/1368722144l/17623975.jpg,4.02,47674,\"romance, contemporary\",\"Sparks fly when American good girl Allyson encounters laid-back Dutch actor\nWillem, so she follows him on a whirlwind trip to Paris, upending her life\nin just one day and prompting a year of self-discovery and the search for\ntrue love.\"\r\n1804,1850,1661957,Lisa McMann,Wake,https://images.gr-assets.com/books/1361417311l/1661957.jpg,3.75,69046,\"romance, fiction\",\"Janie Hannagan has been drawn into other people's dreams for years, but it\nis not until she befriends an elderly nursing home patient and becomes\ninvolved with an enigmatic fellow-student that she discovers her true\npower.\"\r\n1805,1851,7170627,Siddhartha Mukherjee,The Emperor of All Maladies: A Biography of Cancer,https://images.gr-assets.com/books/1280771091l/7170627.jpg,4.29,48117,\"science, nonfiction\",\"An assessment of cancer addresses both the courageous battles against the\ndisease and the misperceptions and hubris that have compromised modern\nunderstandings, providing coverage of such topics as ancient-world\nsurgeries and the development of present-day treatments. Reprint. Best-\nselling winner of the Pulitzer Prize. Includes reading-group guide.\"\r\n1806,1852,270804,Ellen Hopkins,\"Glass (Crank, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388515458l/270804.jpg,4.28,51726,\"poetry, fiction\",\"In a powerful sequel to Crank, Kristina is determined to manage her\naddiction to crack in order to keep her newborn child, but when she is\nunable to manage her use of the drug and the pull becomes too strong, her\ngreatest fears are quickly realized.\"\r\n1807,1853,760,\"Gabriel García Márquez, Edith Grossman\",Memoria de mis putas tristes,https://images.gr-assets.com/books/1327484658l/760.jpg,3.59,33534,\"fiction, classics\",\"Having decided to celebrate his ninetieth birthday by spending the night\nwith a young virgin, an old man falls deeply in love for the first time in\nhis life when he spots the girl at a local brothel. 250,000 first printing.\"\r\n1808,1854,10872085,Jeffrey Archer,Only Time Will Tell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442866312l/10872085._SY475_.jpg,4.04,41187,\"fiction, mystery\",\"Bristol dock worker Harry Clifton's unexpected scholarship leads him to\npursue a very different life while uncovering the truth about his father's\nidentity.\"\r\n1809,1855,773038,Deepak Chopra,The Seven Spiritual Laws of Success: A Practical Guide to the Fulfillment of Your Dreams,https://images.gr-assets.com/books/1344718433l/773038.jpg,4.07,41427,\"spirituality, philosophy\",The Seven Spiritual Laws of Success: A Practical Guide to the Fulfillment of Your DreamsDeepak Chopra\r\n1810,1856,79790,Augusten Burroughs,Magical Thinking: True Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442561036l/79790._SY475_.jpg,3.96,45554,\"memoir, nonfiction\",\"A collection of personal writings features observations on such topics as a\ncontest of wills with a deranged cleaning lady, the emotional side of\nkilling a rodent in one's home, and the brief fame that accompanies\nstarring in a commercial.\"\r\n1811,1857,13835,Tamora Pierce,In the Hand of the Goddess,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206274l/13835.jpg,4.25,66382,\"fantasy, fiction\",\"Pursuing her desire to be a knight, Alanna learns many things in her role\nas squire to Prince Jonathan, but fears Duke Roger, an ambitious sorcerer\nwith whom she knows she will one day have to deal.\"\r\n1812,1858,13132,\"James Patterson, Andrew Gross\",3rd Degree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523207746l/13132._SY475_.jpg,4,55599,\"mystery, fiction\",\"3rd DegreeJames Patterson, Andrew Gross\"\r\n1813,1859,12543,Anne Lamott,Bird by Bird: Some Instructions on Writing and Life,https://images.gr-assets.com/books/1394996112l/12543.jpg,4.22,55606,\"nonfiction, memoir\",\"A step-by-step guide to writing and managing the writer's life covers each\nportion of a written project, addresses such concerns as writer's block and\ngetting published, and offers awareness and survival tips. Reprint. Tour.\"\r\n1814,1860,8835379,\"Kerstin Gier, Anthea Bell\",Rubinrot,https://images.gr-assets.com/books/1312036605l/8835379.jpg,4.12,62978,\"fantasy, romance\",\"Gwyneth Shepherd's sophisticated, beautiful cousin Charlotte has been\nprepared her entire life for traveling through time. But unexpectedly, it\nis Gwyneth who in the middle of class takes a sudden spin to a different\nera! Gwyneth must now unearth the mystery of why her mother would lie about\nher birth date to ward off suspicion about her ability, brush up on her\nhistory, and work with Gideon—the time traveler from a similarly gifted\nfamily that passes the gene through its male line, and whose presence\nbecomes, in time, less insufferable and more essential. Together, Gwyneth\nand Gideon journey through time to discover who, in the 18th century and in\ncontemporary London, they can trust. Kerstin Gier's Ruby Red is young adult\nnovel full of fantasy and romance.\"\r\n1815,1861,6581511,Alyson Noel,Shadowland,https://images.gr-assets.com/books/1362336374l/6581511.jpg,3.66,68104,\"fantasy, paranormal\",\"Enter the realm of the Immortals—the #1 New York Times bestselling series\nfrom Alyson Noël that's been acclaimed as breathtaking, mesmerizing,\nflawless and extraordinary. Ever and Damen have traveled through countless\npast lives—and fought off the world's darkest enemies—so they could be\ntogether forever. But just when their long-awaited destiny is finally\nwithin reach, a powerful curse falls upon Damen...one that could destroy\neverything. Now a single touch of their hands or a soft brush of their lips\ncould mean sudden death—plunging Damen into the Shadowland. Desperate to\nbreak the curse and save Damen, Ever immerses herself in magick—and gets\nhelp from an unexpected source...a surfer named Jude. Although she and Jude\nhave only just met, he feels startlingly familiar. Despite her fierce\nloyalty to Damen, Ever is drawn to Jude, a green-eyed golden boy with\nmagical talents and a mysterious past. She's always believed Damen to be\nher soulmate and one true love—and she still believes it to be true. But as\nDamen pulls away to save them, Ever's connection with Jude grows\nstronger—and tests her love for Damen like never before...\"\r\n1816,1862,216443,Timothy Zahn,Heir to the Empire,https://images.gr-assets.com/books/1398253847l/216443.jpg,4.12,50300,\"fiction, fantasy\",\"Five years after they defeated Darth Vader and the Emperor, Princess Leia\nand Han Solo are married and expecting children, and Luke is a Jedi knight,\nand all are unaware that the last of the Emperor's warlords plan to reclaim\nthe empire. Reprint.\"\r\n1817,1863,13837,Tamora Pierce,Lioness Rampant,https://images.gr-assets.com/books/1390366673l/13837.jpg,4.28,65027,\"fantasy, fiction\",Lioness RampantTamora Pierce\r\n1818,1864,259538,Robin Cook,Outbreak,https://images.gr-assets.com/books/1344166275l/259538.jpg,3.96,48357,\"fiction, mystery\",\"When a bizarre disease that attacks only physicians and their patients\nsweeps the country, Dr. Melissa Blumenthal discovers that sinister forces\nare behind the threat and finds her life in danger\"\r\n1819,1865,129603,Louise L. Hay,You Can Heal Your Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1176433520l/129603.jpg,4.14,44445,\"spirituality, psychology\",\"Argues that everyone is responsible for their own experiences, tells how to\nlead a more creative and fulfilling life, and discusses work, health,\nsuccess, and personal relationships.\"\r\n1820,1866,18641982,Emma Straub,The Vacationers,https://images.gr-assets.com/books/1386629708l/18641982.jpg,3.14,44074,\"fiction, contemporary\",\"Celebrating their thirty-fifth anniversary and their daughter's high-school\ngraduation during a two-week vacation in Mallorca, Franny and Jim Post\nconfront old secrets, hurts, and rivalries that reveal sides of themselves\nthey try to conceal.\"\r\n1821,1867,9496240,\"Oliver Pötzsch, Lee Chadeayne\",\"Die Henkerstochter (Band 1 aus der Reihe \"\"Die Henkerstochter-Saga)\",https://images.gr-assets.com/books/1327868295l/9496240.jpg,3.71,49994,\"mystery, fiction\",\"Die Henkerstochter (Band 1 aus der Reihe \"\"Die Henkerstochter-Saga)Oliver Pötzsch, Lee Chadeayne\"\r\n1822,1868,14064,Richard Matheson,I Am Legend ,https://images.gr-assets.com/books/1390170456l/14064.jpg,4.07,46845,\"horror, fiction\",\"Robert Neville may well be the last living man on Earth . . . but he is not\nalone. An incurable plague has mutated every other man, woman, and child\ninto bloodthirsty, nocturnal creatures who are determined to destroy him.\nBy day, he is a hunter, stalking the infected monstrosities through the\nabandoned ruins of civilization. By night, he barricades himself in his\nhome and prays for dawn....\"\r\n1823,1869,150739,\"Patricia C. Wrede, Peter de Sève\",Dealing with Dragons,https://images.gr-assets.com/books/1385526967l/150739.jpg,4.14,67663,\"fantasy, fiction\",\"Princess Cimorene, the daughter of a very proper king, runs away to live\nwith a very powerful dragon, Kazul. This new edition includes an\nintroduction by the author and fantastic new packaging.\"\r\n1824,1870,455925,Lee Child,The Visitor,https://images.gr-assets.com/books/1174926706l/455925.jpg,4.08,44681,\"thriller, fiction\",\"\"\"Featuring Jack Reacher, hero of the blockbuster movie starring Tom Cruise.\nSergeant Amy Callan and Lieutenant Caroline Cooke have a lot in common. oth\nwere army high-flyers. Both were aquainted with Jack Reacher. Both were\nforced to resign from the service. Now they're both dead. Found in their\nown homes, naked, in a bath full of paint. pparent victims of an army man.\nA loner, a smart guy with a score to settle, a ruthless vigilante. A man\njust like Jack Reacher.\"\"\"\r\n1825,1871,37301,John Sandford,Rules Of Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442064932l/37301._SY475_.jpg,4.13,52416,\"mystery, fiction\",\"The haunting, unforgettable, ice-blooded thriller that introduced Lucas\nDavenport is so chilling that you're almost afraid to turn the pages and so\nmesmerizing you cannot stop.\"\r\n1826,1872,84847,Tami Hoag,Ashes to Ashes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925628l/84847.jpg,4.03,49139,\"mystery, thriller\",\"A serial killer dubbed \"\"The Cremator\"\" for his habit of burning his victims\nengages in a lethal game with a former FBI agent who now works as an\nadvocate for witnesses and victims. Reprint.\"\r\n1827,1873,16703,Michael Chabon,The Yiddish Policemen's Union,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557172798l/16703._SX318_.jpg,3.69,46854,\"fiction, mystery\",\"For sixty years Jewish refugees and their descendants have prospered in the\nFederal District of Sitka, a \"\"temporary\"\" safe haven created in the wake of\nthe Holocaust and the shocking 1948 collapse of the fledgling state of\nIsrael. The Jews of the Sitka District have created their own little world\nin the Alaskan panhandle, a vibrant and complex frontier city that moves to\nthe music of Yiddish. But now the District is set to revert to Alaskan\ncontrol, and their dream is coming to an end. Homicide detective Meyer\nLandsman of the District Police has enough problems without worrying about\nthe upcoming Reversion. His life is a shambles, his marriage a wreck, his\ncareer a disaster. And in the cheap hotel where Landsman has washed up,\nsomeone has just committed a murder—right under his nose. When he begins to\ninvestigate the killing of his neighbor, a former chess prodigy, word comes\ndown from on high that the case is to be dropped immediately, and Landsman\nfinds himself contending with all the powerful forces of faith, obsession,\nevil, and salvation that are his heritage. At once a gripping whodunit, a\nlove story, and an exploration of the mysteries of exile and redemption,\nThe Yiddish Policemen's Union is a novel only Michael Chabon could have\nwritten.\"\r\n1828,1874,13642950,Melanie Benjamin,The Aviator's Wife,https://images.gr-assets.com/books/1345153864l/13642950.jpg,3.87,48191,\"fiction, ebooks\",The Aviator's WifeMelanie Benjamin\r\n1829,1875,474858,David Shannon,A Bad Case of Stripes,https://images.gr-assets.com/books/1328867924l/474858.jpg,4.24,51764,\"fantasy, fiction\",\"In order to ensure her popularity, Camilla Cream always does what is\nexpected, until the day arrives when she no longer recognizes herself.\"\r\n1830,1876,10428708,Lee Child,The Affair,https://images.gr-assets.com/books/1327982045l/10428708.jpg,4.11,43992,\"thriller, mystery\",\"Traces the story of Jack Reacher's early life in the military before the\nevents that rendered him a vigilante hero on the road.\"\r\n1831,1877,33514,\"William Strunk Jr., E.B. White\",The Elements of Style,https://images.gr-assets.com/books/1393947922l/33514.jpg,4.19,46041,\"nonfiction, classics\",\"The Elements of StyleWilliam Strunk Jr., E.B. White\"\r\n1832,1878,12948,Henry James,The Turn of the Screw,https://images.gr-assets.com/books/1443203592l/12948.jpg,3.45,53644,\"horror, fiction\",The Turn of the ScrewHenry James\r\n1833,1879,6066819,Jennifer Weiner,Best Friends Forever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348156357l/6066819.jpg,3.48,50738,\"fiction, contemporary\",\"Addie Downs and Valerie Adler were close until a betrayal drove them apart,\nbut twenty years later, Val shows up on Addie's doorstep wearing a bloody\ncoat, pushing them both into a wild adventure where they must rely on one\nanother again.\"\r\n1834,1880,50027,R.A. Salvatore,Homeland,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388223419l/50027.jpg,4.27,49095,\"fantasy, fiction\",\"The first in a series of premiere hardcover editions of Salvatore's classic\ndark elf tales. This stunning new release of the classic R.A. Salvatore\nnovel recounts the origins of Salvatore's signature dark elf character\nDrizzt Do'Urden and is the first-ever release of this Forgotten Realms\nnovel title in hardcover. This title kicks off The Legend of Drizzt series,\nwhich will showcase the classic dark elf novels in new, deluxe hardcover\neditions. Each title features annotations by the author, all-new cover art,\nand forewords written by those who have become familiar with Salvatore and\nDrizzt over the years.\"\r\n1835,1881,100365,\"Larry Niven, Jerry Pournelle\",The Mote in God's Eye,https://images.gr-assets.com/books/1399490037l/100365.jpg,4.06,48131,\"fiction, fantasy\",\"The Mote in God's EyeLarry Niven, Jerry Pournelle\"\r\n1836,1882,9572203,\"Jo Nesbø, Don Bartlett\",Snømannen (Harry Hole #7) ,https://images.gr-assets.com/books/1355881478l/9572203.jpg,4.04,47533,\"mystery, crime\",\"Snømannen (Harry Hole #7) Jo Nesbø, Don Bartlett\"\r\n1837,1883,166997,\"John  Williams, John McGahern\",Stoner,https://images.gr-assets.com/books/1320600716l/166997.jpg,4.28,42869,\"classics, fiction\",\"The son of a Midwestern farmer, William Stoner, arrives at the University\nof Missouri in 1910 to study agriculture. He had intended to return home to\ntake over his father's farm - but instead, inspired by the professor of\nEnglish literature, he remains at the university to teach.\"\r\n1838,1884,24937,\"David Cote, Stephen Schwartz, Joan Marcus, Winnie Holzman\",\"Wicked: The Grimmerie, a Behind-the-Scenes Look at the Hit Broadway Musical\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423994372l/24937.jpg,4.17,47207,\"fantasy, fiction\",\"A companion volume to the hit Broadway musical set in Oz recounts the\nexploits of Elphaba, the Wicked Witch of the West, and Glinda, the good\nwitch, and offers a behind-the-scenes look at the musical and its creation,\nprofiles of cast and crew, anecdotes, the show's libretto, full-color\nphotographs, and more. 60,000 first printing.\"\r\n1839,1885,42607,William Shakespeare,As You Like It,https://images.gr-assets.com/books/1327935363l/42607.jpg,3.83,56395,\"classics, fiction\",\"Readers and audiences have long greeted As You Like It with delight. Its\ncharacters are brilliant conversationalists, including the princesses\nRosalind and Celia and their Fool, Touchstone. Soon after Rosalind and\nOrlando meet and fall in love, the princesses and Touchstone go into exile\nin the Forest of Arden, where they find new conversational partners. Duke\nFrederick, younger brother to Duke Senior, has overthrown his brother and\nforced him to live homeless in the forest with his courtiers, including the\ncynical Jaques. Orlando, whose older brother Oliver plotted his death, has\nfled there, too. Recent scholars have also grounded the play in the issues\nof its time. These include primogeniture, passing property from a father to\nhis oldest son. As You Like It depicts intense conflict between brothers,\nexposing the human suffering that primogeniture entails. Another\nperspective concerns crossdressing. Most of Orlando’s courtship of Rosalind\ntakes place while Rosalind is disguised as a man, “Ganymede.” At her\nurging, Orlando pretends that Ganymede is his beloved Rosalind. But as the\nepilogue reveals, the sixteenth-century actor playing Rosalind was male,\nfollowing the practice of the time. In other words, a boy played a girl\nplaying a boy pretending to be a girl. The authoritative edition of As You\nLike It from The Folger Shakespeare Library, the trusted and widely used\nShakespeare series for students and general readers, is now available as an\neBook. Features include: · The exact text of the printed book for easy\ncross-reference · Hundreds of hypertext links for instant navigation ·\nFreshly edited text based on the best early printed version of the play ·\nFull explanatory notes conveniently placed on pages facing the text of the\nplay · Scene-by-scene plot summaries · A key to famous lines and phrases ·\nAn introduction to reading Shakespeare’s language · Illustrations from the\nFolger Shakespeare Library’s vast holdings of rare books · An essay by a\nleading Shakespeare scholar providing a modern perspective on the play\"\r\n1840,1886,95431,\"Garth Ennis, Steve Dillon, Joe R. Lansdale\",Preacher Vol. 1: Gone to Texas,https://images.gr-assets.com/books/1309914494l/95431.jpg,4.16,51267,\"comics, fantasy\",\"Disillusioned with his own beliefs, Jesse Custer, along with his girlfriend\nTulip and their Irish vampire friend Cassidy, begins a violent and riotous\njourney across the country in search of God, who has abandoned heaven.\"\r\n1841,1887,15638,\"Edmond Rostand, Eteel Lawson, Lowell Bair\",Cyrano de Bergerac,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920459l/15638.jpg,4.05,54607,\"classics, fiction\",No Marketing Blurb\r\n1842,1888,12609,Anne Fadiman,\"The Spirit Catches You and You Fall Down: A Hmong Child, Her American Doctors, and the Collision of Two Cultures\",https://images.gr-assets.com/books/1432610033l/12609.jpg,4.14,47785,\"nonfiction, science\",\"A study in the collision between Western medicine and the beliefs of a\ntraditional culture focuses on a hospitalized child of Laotian immigrants\nwhose belief that illness is a spiritual matter comes into conflict with\ndoctors' methods.\"\r\n1843,1889,3128411,Patricia Briggs,Bone Crossed,https://images.gr-assets.com/books/1305738183l/3128411.jpg,4.34,69516,\"fantasy, paranormal\",\"Local Vampire Queen Marsilia is out for revenge against shapeshifting\nmechanic Mercy Thompson, but since Mercy enjoys the protection of the\nwerewolf pack, Marsilia will need to find more indirect means of achieving\nher vengeance.\"\r\n1844,1890,8709526,Richelle Mead,The Indigo Spell,https://images.gr-assets.com/books/1438483930l/8709526.jpg,4.41,73056,\"fantasy, paranormal\",\"As Marcus Finch tries to convince her to rebel against the people who\nraised her, Sydney Sage, an Alchemist who serves to bridge the worlds of\nhumans and vampires, searches for an evil magic user targeting powerful\nyoung witches.\"\r\n1845,1891,6050298,Karen Marie Moning,Dreamfever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429621657l/6050298.jpg,4.43,68816,\"fantasy, paranormal\",DreamfeverKaren Marie Moning\r\n1846,1892,16243,Kate Atkinson,Case Histories,https://images.gr-assets.com/books/1451442186l/16243.jpg,3.82,54908,\"mystery, fiction\",Case HistoriesKate Atkinson\r\n1847,1893,15799166,J. Kenner,\"Release Me (Stark Trilogy, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390878363l/15799166.jpg,4.14,61211,\"romance, contemporary\",\"When billionaire Damien Starck makes her an offer she cannot refuse, Nikki\nFairchild discovers that this notorious bad boy has a hidden side, and as\npassion threatens to consume them, a secret from his past could tear them\napart.\"\r\n1848,1894,17910611,Sophie Kinsella,Wedding Night,https://images.gr-assets.com/books/1396634329l/17910611.jpg,3.4,32084,\"romance, fiction\",\"When Lottie accepts an ex's offer of marriage in fulfillment of a pact made\nyears earlier that they would marry if they were still single in their\nthirties, the arrangement prompts disapproval and a renewal of passion.\"\r\n1849,1895,25099,\"Neil Gaiman, Steve Parkhouse, Chris Bachalo, Michael Zulli, Mike Dringenberg, Malcolm Jones III, Todd Klein, Clive Barker\",The Doll's House,https://images.gr-assets.com/books/1298566119l/25099.jpg,4.44,54420,\"comics, fantasy\",\"The Doll's HouseNeil Gaiman, Steve Parkhouse, Chris Bachalo, Michael Zulli, Mike Dringenberg, Malcolm Jones III, Todd Klein, Clive Barker\"\r\n1850,1896,1000751,Eleanor H. Porter,Pollyanna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348971112l/1000751.jpg,3.95,56529,\"classics, fiction\",\"Pollyanna is a best-selling novel by Eleanor H. Porter that is now\nconsidered a classic of children's literature. The book was such a success\nthat Porter soon produced a sequel, Pollyanna Grows Up (ISBN 9781439297513\n). The novel's success brought the term \"\"Pollyanna\"\" (along with the\nadjective \"\"pollyannaish\"\" and the noun \"\"Pollyannaism\"\") into the language to\ndescribe someone who seems always to be able to find something to be \"\"glad\"\"\nabout no matter what circumstances arise.\"\r\n1851,1898,17855756,Hugh Howey,Dust,https://images.gr-assets.com/books/1369522849l/17855756.jpg,4.26,33132,\"fiction, ebooks\",\"Wool introduced the world of the silo. Shift told the story of its\ncreation. Dust will describe its downfall.\"\r\n1852,1899,13547188,Jodi Picoult,Lone Wolf,https://images.gr-assets.com/books/1347278865l/13547188.jpg,3.67,33504,\"fiction, contemporary\",\"When his father and sister are injured in an accident that has rendered his\nfather comatose, estranged son Edward decides to stop his father's life\nsupport so that his organs can be donated, a choice his sister urges him to\nreconsider. Reprint. 1.5 million first printing.\"\r\n1853,1900,10588,Stephen King,Nightmares & Dreamscapes ,https://images.gr-assets.com/books/1370950676l/10588.jpg,3.9,54401,\"horror, fiction\",Nightmares & Dreamscapes Stephen King\r\n1854,1901,7304203,Karen Marie Moning,Shadowfever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439940228l/7304203._SY475_.jpg,4.46,73030,\"fantasy, paranormal\",\"Fae seer and slayer MacKayla Lane succumbs to her passions while witnessing\nthe crumbling of boundaries between the faerie and human worlds.\"\r\n1855,1902,3613997,John Grisham,The Associate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348751418l/3613997.jpg,3.64,48838,\"fiction, thriller\",\"Promising law school graduate Kyle McAvoy's dark secret is discovered by\nsome unscrupulous characters who blackmail him into taking a job with a\nprestigious law firm, where he participates in an illegal and dangerous\nscheme.\"\r\n1856,1903,13324841,Lois Lowry,\"Son (The Giver, #4)\",https://images.gr-assets.com/books/1349952095l/13324841.jpg,3.98,54620,\"fiction, fantasy\",\"Unlike the other Birthmothers in her utopian community, teenaged Claire\nforms an attachment to her baby, feeling a great loss when he is taken to\nthe Nurturing Center to be adopted by a family unit.\"\r\n1857,1904,18310944,\"Neil Gaiman, J.H. Williams III, Dave Stewart, Todd Klein\",The Sandman: Overture,https://images.gr-assets.com/books/1444878181l/18310944.jpg,3.94,52973,\"fantasy, comics\",\"The Sandman: OvertureNeil Gaiman, J.H. Williams III, Dave Stewart, Todd Klein\"\r\n1858,1905,13569581,Anthony  Ryan,Blood Song,https://images.gr-assets.com/books/1421573407l/13569581.jpg,4.47,44014,\"fantasy, fiction\",\"Raised by the Brothers of the Sixth Order, Vaelin Al Sorna, a Warrior of\nthe Faith, must battle the Empire and even his own father.\"\r\n1859,1906,7137775,Simone Elkeles,Rules of Attraction,https://images.gr-assets.com/books/1439792205l/7137775.jpg,4.22,68270,\"romance, contemporary\",Rules of AttractionSimone Elkeles\r\n1860,1907,93007,Howard Pyle,The Merry Adventures of Robin Hood,https://images.gr-assets.com/books/1389006722l/93007.jpg,4.05,48879,\"classics, fiction\",\"The adventuresome young man, Robin of Locksley, doesn't have a worry in the\nworld until one day when a drunken man working for the King shoots an arrow\nat him. Robin's aim is better, to his lasting regret, and he becomes an\noutlaw subject to capture and hanging. Before long, however, Robin attracts\na hearty band of other outcasts to Sherwood Forest. Their only wish is to\nlead a free, merry existence while doing any kindness they can for the\ndowntrodden. If it means making sport with the authorities, so much the\nbetter. Little do they know that their deeds will grow into a timeless\nstory.\"\r\n1861,1908,9915,Bret Easton Ellis,Less Than Zero,https://images.gr-assets.com/books/1443060100l/9915.jpg,3.58,45978,\"fiction, contemporary\",\"Set in Los Angeles in the early 1980s, a best-selling novel follows a cast\nof upper-class, good-looking, oversexed, drug-addled, thrill-seeking,\ncollege-age characters on the road to perdition. Reprint. 17,500 first\nprinting.\"\r\n1862,1909,875441,Lawrence Hill,The Book of Negroes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348403987l/875441.jpg,4.44,22146,\"fiction, history\",\"Dreaming of escaping and returning to her African home, slave Aminata is\nthrown into the chaos of the Revolutionary War, when she helps create a\nlist of black people who have been honored for their service to the king.\"\r\n1863,1910,93101,\"Anonymous, Richard Francis Burton, A.S. Byatt\",كِتَاب أَلْف لَيْلَة وَلَيْلَة‎‎ [kitāb ʾalf layla wa-layla],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212809l/93101.jpg,4.06,46656,\"classics, fiction\",\"كِتَاب أَلْف لَيْلَة وَلَيْلَة‎‎ [kitāb ʾalf layla wa-layla]Anonymous, Richard Francis Burton, A.S. Byatt\"\r\n1864,1911,7093952,Tana French,Faithful Place,https://images.gr-assets.com/books/1291165900l/7093952.jpg,3.97,55355,\"mystery, fiction\",Faithful PlaceTana French\r\n1865,1912,18467802,Lily King,Euphoria,https://images.gr-assets.com/books/1418788366l/18467802.jpg,3.84,41606,\"fiction, romance\",\"English anthropologist Andrew Banson has been alone in the field for\nseveral years, studying the Kiona river tribe in 1930s New Guinea. Haunted\nby the memory of his brothers' deaths and increasingly frustrated and\nisolated by his research, Bankson is on the verge of suicide. Then he\nencounters the famous and controversial American anthropologist Nell Stone\nand her wry and mercurial Australian husband, Fen, who have just fled the\nbloodthirsty Mumbanyo. Nell and Fen and, in spite of Nell's poor health,\nare hungry for a new discovery. When Bankson finds them a new tribe nearby,\nthe artistic, female-dominated Tam, he ignites an intellectual and romantic\nfirestorm between the three of them that burns out of anyone's control.\"\r\n1866,1913,9301,Marian Keyes,Rachel's Holiday,https://images.gr-assets.com/books/1407709261l/9301.jpg,3.93,48663,\"fiction, romance\",\"The fast lane is much too slow for Rachel Walsh. And Manhattan is the\nperfect place for a young Irish female to overdo everything. But Rachel's\nlove of a good time is about to land her in the emergency room. It will\nalso cost her a job and the boyfriend she adores. When her loving family\nhustles her back home and checks her into Ireland's answer to the Betty\nFord Clinic, Rachel is hopeful. Perhaps it will be lovely—spa treatments,\ncelebrities, that kind of thing. Instead, she finds a lot of group therapy,\nwhich leads her, against her will, to some important self-knowledge. She\nwill also find something that all women like herself fear: a man who might\nactually be good for her.\"\r\n1867,1914,41811,Isaac Asimov,The Caves of Steel,https://images.gr-assets.com/books/1335782224l/41811.jpg,4.14,51059,\"fiction, mystery\",The Caves of SteelIsaac Asimov\r\n1868,1915,17800,Haruki Murakami,\"ダンス・ダンス・ダンス [Dansu, dansu, dansu]\",https://images.gr-assets.com/books/1443689019l/17800.jpg,4.03,41161,\"fiction, contemporary\",\"In this propulsive novel by the author of Hard-Boiled Wonderland and the\nEnd of the World and The Elephant Vanishes, one of the most\nidiosyncratically brilliant writers at work in any language fuses science\nfiction, the hard-boiled thriller, and white-hot satire into a new element\nof the literary periodic table. As he searches for a mysteriously vanished\ngirlfriend, Haruki Murakami's protagonist plunges into a wind tunnel of\nsexual violence and metaphysical dread in which he collides with call\ngirls; plays chaperone to a lovely teenaged psychic; and receives cryptic\ninstructions from a shabby but oracular Sheep Man. Dance Dance Dance is a\ntense, poignant, and often hilarious ride through the cultural Cuisinart\nthat is contemporary Japan, a place where everything that is not up for\nsale is up for grabs.\"\r\n1869,1916,232109,\"Beverly Cleary, Louis Darling, Tracy Dockray\",The Mouse and the Motorcycle,https://images.gr-assets.com/books/1348990967l/232109.jpg,3.9,61754,\"fiction, fantasy\",\"The Mouse and the MotorcycleBeverly Cleary, Louis Darling, Tracy Dockray\"\r\n1870,1917,3432478,Carrie Ryan,The Forest of Hands and Teeth,https://images.gr-assets.com/books/1320633297l/3432478.jpg,3.59,64093,\"horror, fantasy\",\"Through twists and turns of fate, orphaned Mary seeks knowledge of life,\nlove, and what lies beyond her walled village and the surrounding forest,\nwhere dwell the Unconsecrated, aggressive flesh-eating people who were once\ndead.\"\r\n1871,1918,189783,Terry Brooks,The Elfstones Of Shannara,https://images.gr-assets.com/books/1420148388l/189783.jpg,3.96,51161,\"fantasy, fiction\",\"The grandson of Shea, Wil Ohmsford, searches for Amberle, the Chosen whose\ngift of Bloodfire is needed to create the Ellcrys tree that protects\nagainst demons. Reissue.\"\r\n1872,1919,7741325,\"Rachel Cohn, David Levithan\",Dash & Lily's Book of Dares,https://images.gr-assets.com/books/1327874609l/7741325.jpg,3.82,54920,\"contemporary, romance\",\"Dash & Lily's Book of DaresRachel Cohn, David Levithan\"\r\n1873,1920,17333230,Eleanor Catton,The Luminaries,https://images.gr-assets.com/books/1410524246l/17333230.jpg,3.7,40727,\"fiction, mystery\",\"From the author of The Rehearsal and shortlisted for the Man Booker Prize,\na breathtaking feat of storytelling where everything is connected, but\nnothing is as it seems.... It is 1866, and Walter Moody has come to make\nhis fortune upon the New Zealand goldfields. On the stormy night of his\narrival, he stumbles across a tense gathering of twelve local men, who have\nmet in secret to discuss a series of unsolved crimes. A wealthy man has\nvanished, a prostitute has tried to end her life, and an enormous fortune\nhas been discovered in the home of a luckless drunk. Moody is soon drawn\ninto the mystery: a network of fates and fortunes that is as complex and\nexquisitely patterned as the night sky. Eleanor Catton was only 22 when she\nwrote The Rehearsal, which Adam Ross in the New York Times Book Review\npraised as \"\"a wildly brilliant and precocious first novel\"\" and Joshua\nFerris called \"\"a mesmerizing, labyrinthine, intricately patterned and\nastonishingly original novel.\"\" The Luminaries amply confirms that early\npromise, and secures Catton's reputation as one of the most dazzling and\ninventive young writers at work today.\"\r\n1874,1922,32421,Dean Koontz,Velocity,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924205l/32421.jpg,3.85,48755,\"horror, thriller\",\"A series of communications from a deranged killer in which he is offered a\nnumber of devastating choices and deadlines draws Bill Wiles into a\nconfrontation with pure evil.\"\r\n1875,1923,4143,David Sedaris,Barrel Fever: Stories and Essays,https://images.gr-assets.com/books/1453273003l/4143.jpg,3.78,44679,\"fiction, memoir\",\"With a skewed sense of wit uniquely his own, satirist and popular NPR\nstoryteller David Sedaris presents a collection of short stories and\nessays, wherein home surgery and an elf-abusing Santa prevail\"\r\n1876,1924,34517,Terry Pratchett,Reaper Man,https://images.gr-assets.com/books/1389211958l/34517.jpg,4.27,52845,\"fantasy, fiction\",Reaper ManTerry Pratchett\r\n1877,1925,17303,Frank E. Peretti,Piercing the Darkness,https://images.gr-assets.com/books/1308796365l/17303.jpg,4.3,44595,\"fiction, christian\",\"In the tiny farming community of Bacon's Corner, an attempted murder, a\ncase of mistaken identity, and a lawsuit against a struggling Christian\nschool all lead Sally Beth Roe to flee for her life.\"\r\n1878,1926,69242,\"Chip Heath, Dan Heath\",Made to Stick: Why Some Ideas Survive and Others Die,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402600211l/69242.jpg,3.97,46736,\"business, psychology\",\"A groundbreaking resource for those who need to deliver a memorable message\nintroduces six key principles that help make messages stick--simplicity,\nunexpectedness, concreteness, credibility, emotions, and stories--and\nexplains how to incorporate each of these factors into the creative thought\nprocess. 100,000 first printing.\"\r\n1879,1927,401514,Piers Paul Read,Alive: The Story of the Andes Survivors,https://images.gr-assets.com/books/1404247131l/401514.jpg,4.08,49300,\"nonfiction, history\",\"LOST 1972. A plane has crashed in the Andes mountains. The passengers are\nhopelessly lost in one of the most isolated places on earth. ABANDONED\nAlmost three months later, two of the survivors, emaciated and frozen,\nreach the authorities and lead a rescue team to the remaining fourteen\npassengers. ALIVE The rescue team are shocked when they reach the crash-\nsite. Food supplies have long gone, and the remains of the dead lie\nscattered among the fuselage. It is only too clear how these passengers\nhave managed to stay alive ...\"\r\n1880,1928,3679,Zadie Smith,On Beauty,https://images.gr-assets.com/books/1495961870l/3679.jpg,3.68,44317,\"fiction, contemporary\",On BeautyZadie Smith\r\n1881,1929,13360,Joyce Meyer,Battlefield of the Mind: Winning the Battle in Your Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442547598l/13360._SY475_.jpg,4.33,26898,\"nonfiction, religion\",Battlefield of the Mind: Winning the Battle in Your MindJoyce Meyer\r\n1882,1930,59829,Nora Roberts,Dance Upon The Air,https://images.gr-assets.com/books/1263843885l/59829.jpg,4.19,50255,\"romance, paranormal\",\"From the #1 New York Times bestselling author-the first book in the\nreissued Three Sisters Island trilogy is a tale of friendship, fate, and\nthe mysterious ways of the heart.\"\r\n1883,1931,645023,David Eddings,Castle of Wizardry,https://images.gr-assets.com/books/1421711682l/645023.jpg,4.16,54682,\"fantasy, fiction\",\"Garion regains the Orb and struggles to escape from the brutal Murgo\nsoldiers and the deadly magic spells of Grolim Hierachs\"\r\n1884,1932,8492319,J.R. Ward,\"Lover Avenged, part two\",https://images.gr-assets.com/books/1289343390l/8492319.jpg,4.28,66871,\"fantasy, paranormal\",\"Fierce warrior and legendary lover, Rhage, a vampire cursed by the Scribe\nVirgin and owned by the dark side, finds salvation in Mary Luce, the\ninnocent young beauty he has sworn to protect, and together they battle\nagainst their enemies and fight for eternal love. Original.\"\r\n1885,1933,7119070,أثير عبدالله النشمي,أحببتك أكثر مما ينبغى,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1257796264l/7119070.jpg,3.67,31779,\"romance, fiction\",أحببتك أكثر مما ينبغىأثير عبدالله النشمي\r\n1886,1934,6566722,Richard Castle,Heat Wave,https://images.gr-assets.com/books/1257521812l/6566722.jpg,3.54,49283,\"mystery, thriller\",\"NYPD detective Nikki Heat must deal with the continual presence of magazine\njournalist Jameson Rook as she works to solve the murder of a real estate\nmagnate.\"\r\n1887,1935,18607805,Amazon,kindle paperwhite user's guide 2nd edition,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1384802754l/18607805.jpg,3.72,15002,\"nonfiction, ebooks\",\"Thanks for your Comments. This book has been updated and revised to address\nthe issues raised in the reviews below and to give you a better experience.\nA lot of images have been added to make the whole reading experience much\nfun and understandable. This guide has also been edited by technological\nexperts and has been made easy enough for less tech savvy people to\nunderstand every bit of details. All these have been carefully put together\nto help you get the most of your Kindle Paperwhite. This guide will unveil\nthe hidden features and tricks in this device to enhance your next reading\nsession. You will learn about: *How to use the Kindle device to track your\nreading speed to estimate when you will finish a chapter of a book. *You\nlearn about all the latest improvements in the kindle Paperwhite *How to\nuse the kindle device to listen to audio books. *How to Navigate your\nkindle device to get the best experience *How to have full control of your\nKindle device *How to add, delete and Organize your book With Cloud\nCollections *How to take a screenshot with your device *How to effectively\nuse the Family That Reads Together ( Household and Family library) feature.\nAnd many More tricks and tips. So, simply download this guide above to\nmaster your all-new Kindle Paperwhite\"\r\n1888,1936,4659,John Irving,A Widow for One Year,https://images.gr-assets.com/books/1375776653l/4659.jpg,3.74,45051,\"fiction, contemporary\",\"Chronicles the life of a complex, abrasive woman born in the shadow of her\nsiblings' deaths and her parents' adultery, who only finds love after\nmotherhood and widowhood.\"\r\n1889,1937,25350,C.S. Lewis,Out of the Silent Planet,https://images.gr-assets.com/books/1310984018l/25350.jpg,3.92,49617,\"fiction, fantasy\",Out of the Silent PlanetC.S. Lewis\r\n1890,1938,6687,\"Roald Dahl, Quentin Blake\",\"Charlie and the Great Glass Elevator: The Further Adventures of Charlie Bucket and Willy Wonka, Chocolate-Maker Extraordinaire\",https://images.gr-assets.com/books/1309211607l/6687.jpg,3.64,62359,\"fantasy, fiction\",\"Taking up where Charlie and the Chocolate Factory leaves off, Charlie, his\nfamily, and Mr. Wonka find themselves launched into space in the great\nglass elevator.\"\r\n1891,1939,826585,\"Laura Joffe Numeroff, Felicia Bond\",If You Give a Pig a Pancake ,https://images.gr-assets.com/books/1384260096l/826585.jpg,4.23,51385,\"fiction, fantasy\",\"If you give a pig a pancake, she'll want some syrup to go with it. You'll\ngive her some of your favourite maple syrup, and she'll probably get all\nsticky, so she'll want to take a bath. She'll ask you for some bubbles.\nWhen you give her the bubbles... Ages 0–5\"\r\n1892,1940,567678,Iain Banks,The Wasp Factory,https://images.gr-assets.com/books/1434940562l/567678.jpg,3.85,46179,\"fiction, horror\",\"Frank, a disturbed boy who lives alone with his father, creates a bizarre\nfantasy world for himself which includes strange rituals and murder\"\r\n1893,1941,10112885,Marisha Pessl,Night Film,https://images.gr-assets.com/books/1363819140l/10112885.jpg,3.78,24865,\"mystery, fiction\",Night FilmMarisha Pessl\r\n1894,1943,16085481,Kevin Kwan,Crazy Rich Asians,https://images.gr-assets.com/books/1364852559l/16085481.jpg,3.7,46208,\"fiction, contemporary\",\"Envisioning a summer vacation in the humble Singapore home of a boy she\nhopes to marry, Chinese American Rachel Chu is unexpectedly introduced to a\nrich and scheming clan that strongly opposes their son's relationship with\nan American girl.\"\r\n1895,1944,51428,Libba Bray,Rebel Angels,https://images.gr-assets.com/books/1333820283l/51428.jpg,3.98,81420,\"fantasy, fiction\",\"Gemma and her friends from the Spence Academy return to the realms to\ndefeat her foe, Circe, and to bind the magic that has been released, in the\nsequel to A Great and Terrible Beauty. An ALA Best Book for Young Adults.\nReprint.\"\r\n1896,1945,344262,Karen Marie Moning,Bloodfever,https://images.gr-assets.com/books/1302566396l/344262.jpg,4.3,69032,\"fantasy, paranormal\",BloodfeverKaren Marie Moning\r\n1897,1946,2702704,Karen Marie Moning,Faefever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437781062l/2702704._SY475_.jpg,4.34,68452,\"paranormal, fantasy\",\"Sidhe-seer MacKayla Lane finds that time is running out as All Hallows' Eve\napproaches and she tries to keep the Sinsar Dubh, an ancient book of dark\nmagic that only she knows how to find, out of the hands of Fae and human\nalike.\"\r\n1898,1947,22744701,Robert Dugoni,My Sister's Grave,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427339446l/22744701.jpg,4,31029,\"mystery, fiction\",\"Twenty years after Seattle homicide detective Tracy Crosswhite's sister,\nSarah, was murdered, Tracy sees a chance to find the real killer when\nSarah's remains are discovered near their hometown in the northern Cascade\nmountains of Washington State. Original.\"\r\n1899,1948,24120519,Ransom Riggs,Library of Souls ,https://images.gr-assets.com/books/1472783347l/24120519.jpg,4.15,58435,\"fantasy, fiction\",\"The New York Times #1 best-selling series. The movie adaptation of Miss\nPeregrine's Home for Peculiar Children is now a major motion picture from\nvisionary director Tim Burton, staring Eva Green, Asa Butterfield, Ella\nPurnell, Samual L. Jackson, and Judi Dench. Like its predecessors, Library\nof Souls blends thrilling fantasy with never-before-published vintage\nphotography to create a one-of-a-kind reading experience. A boy with\nextraordinary powers. An army of deadly monsters. An epic battle for the\nfuture of peculiardom. The adventure that began with Miss Peregrine's Home\nfor Peculiar Children and continued in Hollow City comes to a thrilling\nconclusion with Library of Souls. As the story opens, sixteen-year-old\nJacob discovers a powerful new ability, and soon he's diving through\nhistory to rescue his peculiar companions from a heavily guarded fortress.\nAccompanying Jacob on his journey are Emma Bloom, a girl with fire at her\nfingertips, and Addison MacHenry, a dog with a nose for sniffing out lost\nchildren. They'll travel from modern-day London to the labyrinthine alleys\nof Devil's Acre, the most wretched slum in all of Victorian England. It's a\nplace where the fate of peculiar children everywhere will be decided once\nand for all.\"\r\n1900,1949,3102,E.M. Forster,Howards End,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385160500l/3102.jpg,3.95,52006,\"fiction, classics\",\"A strong-willed and intelligent woman refuses to allow the pretensions of\nher husband's smug English family to ruin her life.\"\r\n1901,1950,102458,\"Mike Mignola, John Byrne\",Hellboy: Seed of Destruction,https://images.gr-assets.com/books/1486039246l/102458.jpg,4.11,48485,\"comics, fantasy\",\"Hellboy: Seed of DestructionMike Mignola, John Byrne\"\r\n1902,1951,13643567,Michelle Hodkin,The Evolution of Mara Dyer,https://images.gr-assets.com/books/1336663149l/13643567.jpg,4.33,45919,\"fantasy, paranormal\",\"\"\"Mara Dyer continues to unravel the mystery of her powers and her\nrelationship with Noah\"\"--\"\r\n1903,1952,15724396,Rick Riordan,The Sword of Summer,https://images.gr-assets.com/books/1434701340l/15724396.jpg,4.26,78157,\"fantasy, fiction\",\"Magnus Chase has seen his share of trouble. Ever since that terrible night\ntwo years ago when his mother told him to run, he has lived alone on the\nstreets of Boston, surviving by his wits, staying one step ahead of the\npolice and truant officers. One day, he's tracked down by an uncle he\nbarely knows-a man his mother claimed was dangerous. Uncle Randolph tells\nhim an impossible secret: Magnus is the son of a Norse god. The Viking\nmyths are true. The gods of Asgard are preparing for war. Trolls, giants,\nand worse monsters are stirring for doomsday. To prevent Ragnarok, Magnus\nmust search the Nine Worlds for a weapon that has been lost for thousands\nof years. When an attack by fire giants forces him to choose between his\nown safety and the lives of hundreds of innocents, Magnus makes a fatal\ndecision. Sometimes, the only way to start a new life is to die . . .\"\r\n1904,1953,54499,\"Alexandre Dumas, Francine du Plessix Gray, Joachim Neugroschel\",\"Le Vicomte de Bragelonne, ou Dix ans plus tard\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1571392348l/54499._SY475_.jpg,3.97,51856,\"classics, fiction\",\"In the final adventure of the Musketeers, THE MAN IN THE IRON MASK sees\nD'Artagnan remain in the service of the corrupt King Louis XIV after the\nThree Musketeers have gone their separate ways. Meanwhile a mysterious\nprisoner in an iron mask languishes in the Bastille, where he has been for\neighteen years. When the destinies of the King and the prisoner converge,\nD'Artagnan and the Three Musketeers must face the ultimate conflict of\nloyalties. The Man in the Iron Mask is an incomparabletale of honour,\nloyalty and adventure.\"\r\n1905,1954,89717,\"Shirley Jackson, Laura   Miller\",The Haunting οf Hill House,https://images.gr-assets.com/books/1327871336l/89717.jpg,3.89,55367,\"horror, classics\",\"The Haunting οf Hill HouseShirley Jackson, Laura   Miller\"\r\n1906,1955,18864,Hunter S. Thompson,The Rum Diary,https://images.gr-assets.com/books/1430534762l/18864.jpg,3.83,39300,\"fiction, classics\",\"A young reporter's life in the 1950s. Paul Kemp breaks into the profession\non a newspaper in Puerto Rico and through his eyes are portrayed colorful\ncharacters in the days when newspapers flourished.\"\r\n1907,1956,8253,\"Laura Ingalls Wilder, Garth Williams\",Little Town on the Prairie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449674l/8253.jpg,4.18,63615,\"classics, fiction\",\"The little settlement that weathered the long, hard winter of 1880-81 is\nnow a growing town. Laura is growing up, and she goes to her first evening\nsocial. Mary is at last able to go to a college for the blind. Best of all,\nAlmanzo Wilder asks permission to walk home from church with Laura. And\nLaura, now fifteen years old, receives her certificate to teach school.\"\r\n1908,1957,31122,Dodie Smith,I Capture the Castle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316083l/31122.jpg,4,56444,\"fiction, classics\",\"The 1934 journal of seventeen-year-old Cassandra Mortmain reveals her\nperspective on six stormy months in the eccentric and poverty-stricken life\nof her family in a ruined Suffolk castle, ending with the revelation that\nCassandra is deeply in love. Reissue. (A Samuel Goldwyn Films production,\ndirected by Tim Fywell, starring Henry Thomas) (General Fiction)\"\r\n1909,1958,7933617,\"P.C. Cast, Kristin Cast\",Destined,https://images.gr-assets.com/books/1406962311l/7933617.jpg,4.04,56737,\"fantasy, paranormal\",\"In the ninth installment of the New York Times best-selling teen vampyre\nseries, Zoey is home where she belongs, safe with her Guardian Warrior,\nStark, by her side; Kalona has released his hold on Rephaim; and through\nNyx's gift of a human form, he and Stevie Rae are finally able to be\ntogether.\"\r\n1910,1959,6048530,Janet Evanovich,Finger Lickin' Fifteen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442966437l/6048530._SY475_.jpg,3.98,65904,\"mystery, fiction\",Finger Lickin' FifteenJanet Evanovich\r\n1911,1960,38500,Charles Bukowski,Women,https://images.gr-assets.com/books/1325028693l/38500.jpg,3.89,41866,\"fiction, classics\",\"Low-life writer and unrepentant alcoholic Henry Chinaski was born to\nsurvive. After decades of slacking off at low-paying dead-end jobs, blowing\nhis cash on booze and women, and scrimping by in flea-bitten apartments,\nChinaski sees his poetic star rising at last. Now, at fifty, he is reveling\nin his sudden rock-star life, running three hundred hangovers a year, and\nmaintaining a sex life that would cripple Casanova. With all of Bukowski's\ntrademark humor and gritty, dark honesty, this 1978 follow-up to Post\nOffice and Factotum is an uncompromising account of life on the edge.\"\r\n1912,1962,6587387,Patricia Briggs,Silver Borne,https://images.gr-assets.com/books/1258762890l/6587387.jpg,4.38,71830,\"fantasy, paranormal\",\"Mechanic and shape-shifter Mercy Thompson has her hands full when she\nbecomes the unwitting owner of a Fae book that contains secret knowledge,\nand also must cover for her best friend, Samuel, as he struggles with his\nwolf side. Reprint. A #1 best-seller.\"\r\n1913,1963,31259,Robert Ludlum,The Bourne Ultimatum,https://images.gr-assets.com/books/1408928937l/31259.jpg,4.04,47682,\"fiction, thriller\",\"David Webb must once again assume the identity of assassin Jason Bourne as\nhe matches wits with his mortal enemy, Carlos, a deadly and elusive\nterrorist known as \"\"the Jackal,\"\" in a final confrontation.\"\r\n1914,1964,68488,Robin Hobb,Fool's Errand,https://images.gr-assets.com/books/1360508839l/68488.jpg,4.29,50758,\"fantasy, fiction\",Fool's ErrandRobin Hobb\r\n1915,1965,20821111,Marie Lu,The Young Elites,https://images.gr-assets.com/books/1407318399l/20821111.jpg,3.93,60930,\"fantasy, romance\",The Young ElitesMarie Lu\r\n1916,1966,59810,Nora Roberts,Jewels of the Sun,https://images.gr-assets.com/books/1388194052l/59810.jpg,4.22,50630,\"romance, fiction\",\"Determined to re-evaluate her life, an American takes refuge in an Irish\ncottage and discovers hope for the future in the study of the past, helped\nby an Irishman with uncommon understanding.\"\r\n1917,1967,30659,\"Marcus Aurelius, Martin Hammond, Diskin Clay\",Τὰ εἰς ἑαυτόν ,https://images.gr-assets.com/books/1421618636l/30659.jpg,4.2,43876,\"classics, history\",\"Written in Greek without any intention of publication, this book offers\nspiritual reflections and exercises developed by the author, as the leader\nwho struggled to understand himself and make sense of the universe. It\ncovers topics such as: the question of virtue, human rationality, the\nnature of the gods, and Aurelius's own emotions.\"\r\n1918,1968,34262,\"Dave Barry, Ridley Pearson, Greg Call\",Peter and the Starcatchers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435312363l/34262._SX318_.jpg,4.01,57575,\"fantasy, fiction\",\"Soon after Peter, an orphan, sets sail from England on the ship Never Land,\nhe befriends and assists Molly, a young Starcatcher, whose mission is to\nguard a trunk of magical stardust from a greedy pirate and the native\ninhabitants of a remote island.\"\r\n1919,1969,475,Jared Diamond,Collapse: How Societies Chose to Fail or Succeed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441419222l/475._SY475_.jpg,3.92,44238,\"history, nonfiction\",\"\"\"A magisterial effort packed with insight and written with clarity and\nenthusiasm. It's also the deal of the year---the equivalent of a year's\ncollege course by an engaging, brilliant professor, all for the price of a\nbook.\"\" Who Hasn't Gazed upon the abandoned temples of Angkor Wat or the\njungle-choked cities of the Maya and wondered, could the same fate happen\nto us? In this riveting book, Jared Diamond---whose Guns, Germs, and Steel\nrevolutionized our understanding of history---explores how humankind's use\nand abuse of the environment reveal the truth behind the world's great\ncollapses, from the Anasazi of North America to the Vikings of Greenland to\nmodern Montana. What emerges is a fundamental pattern of environmental\ncatastrophe---one whose warning signs surround us today and that we ignore\nat our peril. Blending the most recent scientific advances and a vast\nhistorical perspective into a narrative that is impossible to put down,\nCollapse exposes the deepest mysteries of the past even as it offers hope\nfor the future. \"\"Diamond's most influential gift may be his ability to\nwrite about geopolitical and environmental systems in ways that don't just\neducate and provoke, but entertain.\"\" \"\"Extremely persuasive ... replete with\nfascinating stories, a treasure trove of historical anecdotes [and]\nhaunting statistics.\"\" \"\"Essential reading ... Collapse [shows] that\nresilient societies are nimble ones, capable of long-term planning and of\nabandoning deeply entrenched but ultimately destructive core values and\nbeliefs.\"\" \"\"There are hopeful messages in Collapse. With Diamond's help,\nmaybe we'll learn to see our problems a little more clearly before we chop\ndown that last palm tree.\"\" \"\"Extraordinarily panoramic ...Diamond's complex\nhistorical web of how human communities either master their environment or\nbecome victims of them ... takes a lifetime of research and, in normal\nEnglish, leads the reader painstakingly where the media and intellectual\njournals have often refused to go.\"\"\"\r\n1920,1970,41219,A.S. Byatt,Possession,https://images.gr-assets.com/books/1391124124l/41219.jpg,3.88,56064,\"fiction, romance\",\"A young academic couple's attempt to trace the relationship between two\nturbulent, romantic, and superstitious Victorian poets reveals uncanny\nparallels with their own lives and culminates in the exhumation of a poet's\ncorpse. Reissue. 300,000 first printing. (A Warner Bros. film, directed by\nNeil LaBute, releasing Fall 2001, starring Gwyneth Paltrow, Aaron Eckhart,\nJennifer Ehle, & Jeremy Northam) (General Fiction)\"\r\n1921,1971,2753843,Melissa de la Cruz,Revelations,https://images.gr-assets.com/books/1322343073l/2753843.jpg,3.89,66170,\"fantasy, paranormal\",\"Have you ever wondered what secrets lurk behind the closed doors of New\nYork City’s wealthiest families? They're powerful, they're famous...\nthey're undead. Schuyler Van Alen’s blood legacy has just been called into\nquestion—is the young vampire in fact a Blue Blood, or is it the sinister\nSilver Blood that runs through her veins? As controversy swirls, Schuyler\nis left stranded in the Force household, trapped under the same roof as her\ncunning nemesis, Mimi Force, and her forbidden crush, Jack Force. When one\nof the Gates of Hell is breached by Silver Bloods in Rio de Janeiro,\nhowever, the Blue Bloods will need Schuyler on their side. The stakes are\nhigh; the battle is bloody; and through it all, Carnavale rages on. And in\nthe end, one vampire’s secret identity will be exposed in a revelation that\nshocks everyone.\"\r\n1922,1972,19668,Tom Clancy,Without Remorse,https://images.gr-assets.com/books/1310082706l/19668.jpg,4.16,47148,\"fiction, thriller\",\"Over the course of seven novels, Tom Clancy's \"\"genius for big, compelling\nplots\"\" and his \"\"natural narrative gift\"\" (The New York Times Magazine) have\nmesmerized tens of millions of readers and established him as one of the\npreeminent storytellers of our time. Without Remorse, however, goes beyond\nanything he has ever done. Its hero is John Kelly, a man well familiar to\nClancy's readers by his code name, Mr. Clark. In The Sum of All Fears, he\nhunted down nuclear terrorists. In Clear and Present Danger, he led aerial\nraids against drug lords. In The Cardinal of the Kremlin, he spirited away\na KGB chief's family by submarine. But nothing will ever be as deadly - or\nas personal - as the danger he must face in Without Remorse. John Kelly,\nformer Navy SEAL and Vietnam veteran, is still getting over the accidental\ndeath of his wife six months before, when he befriends a young woman with a\ndecidedly checkered past. When that past reaches out for her in a\nparticularly horrifying fashion, he vows revenge and, assembling all of his\nold skills, sets out to track down the men responsible, before it can\nhappen again. At the same time, the Pentagon is readying an operation to\nrescue a key group of prisoners in a North Vietnamese prisoner-of-war camp.\nOne man, they find, knows the terrain around the camp better than anyone\nelse they have: a certain former Navy SEAL named John Kelly. Kelly has his\nown mission. The Pentagon wants him for theirs. Attempting to juggle the\ntwo, Kelly (now code-named Mr. Clark) finds himself confronted by a vast\narray of enemies, both at home and abroad - men so skillful that the\nslightest misstep means death. And the fate of dozens of people, including\nKelly himself, restson his making sure that misstep never happens. Men\naren't born dangerous. They grow dangerous. And the most dangerous of all,\nKelly learns, are the ones you least expect... As Clancy takes us through\nthe twists and turns of Without Remorse, he blends the exceptional realism\nand authenticity that are his hallmarks with intricate plotting, knife-edge\nsuspense and a remarkable cast of characters.\"\r\n1923,1973,93981,Sigmund Freud,Die Traumdeutung,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171268617l/93981.jpg,3.81,41081,\"psychology, philosophy\",Die TraumdeutungSigmund Freud\r\n1924,1975,65110,\"Lemony Snicket, Brett Helquist\",The Penultimate Peril,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524161970l/65110._SX318_.jpg,4.02,67482,\"fiction, mystery\",\"The Penultimate PerilLemony Snicket, Brett Helquist\"\r\n1925,1976,25,Bill Bryson,Notes from a Big Country,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184037l/25.jpg,3.89,44610,\"nonfiction, memoir\",\"After nearly two decades in England, Bill Bryson returned to the country of\nhis birth. Gathered here are 18 months' worth of his Mail on Sunday columns\nabout that strange phenomena, the American way of life, in which he brings\nhis bemused wit to bear on one of the world's craziest countries.\"\r\n1926,1977,65112,\"Lemony Snicket, Brett Helquist\",The End,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524761836l/65112._SX318_.jpg,3.99,67018,\"fiction, fantasy\",\"The EndLemony Snicket, Brett Helquist\"\r\n1927,1978,14241,Mary Karr,The Liars' Club: A Memoir,https://images.gr-assets.com/books/1499665766l/14241.jpg,3.92,45153,\"memoir, nonfiction\",\"The author, a poet, recounts her difficult childhood growing up in a Texas\noil town.\"\r\n1928,1979,15985348,Charlaine Harris,Dead Ever After,https://images.gr-assets.com/books/1352158186l/15985348.jpg,3.39,49926,\"fantasy, paranormal\",\"After learning the devastating reason why vampire hunk Eric Northman has\nbeen cooling on their relationship, clairvoyant waitress Sookie Stackhouse\nbecomes embroiled in a shocking murder that sends all of Bon Temps reeling\nin the final novel of the best-selling series. Reprint. 750,000 first\nprinting.\"\r\n1929,1980,24830,Ray Bradbury,The Illustrated Man,https://images.gr-assets.com/books/1374049820l/24830.jpg,4.13,49551,\"fiction, fantasy\",\"Eighteen science fiction stories deal with love, madness, and death on\nMars, Venus, and in space.\"\r\n1930,1982,17934530,Jeff VanderMeer,Annihilation,https://images.gr-assets.com/books/1403941587l/17934530.jpg,3.62,45353,\"fiction, horror\",\"Describes the 12th expedition to “Area X,” a region cut off from the\ncontinent for decades, by a group of intrepid women scientists who try to\nignore the high mortality rates of those on the previous 11 missions.\nOriginal. 75,000 first printing.\"\r\n1931,1983,11479285,Abbi Glines,Breathe,https://images.gr-assets.com/books/1341120438l/11479285.jpg,3.88,69350,\"romance, contemporary\",\"When Sadie takes a summer job working in the house of teen rock star Jax\nStone, she finds herself falling quickly for him, but Jax's wild rock star\nworld makes having a relationship with him difficult.\"\r\n1932,1984,58922,\"Margaret Wise Brown, Clement Hurd\",The Runaway Bunny,https://images.gr-assets.com/books/1468816103l/58922.jpg,4.14,52974,\"fiction, classics\",\"Clement Hurd redrew some of his pictures for this new edition of the\nprofoundly comforting story of a bunny's imaginary game of hide-and-seek\nand the lovingly steadfast mother who finds him every time.\"\r\n1933,1985,8520362,\"Stephen Hawking, Leonard Mlodinow\",The Grand Design,https://images.gr-assets.com/books/1320558363l/8520362.jpg,4,42687,\"science, nonfiction\",\"The Grand DesignStephen Hawking, Leonard Mlodinow\"\r\n1934,1986,5345,John Grisham,The Innocent Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441415135l/5345._SY475_.jpg,3.79,43793,\"history, nonfiction\",\"Presents the real-life case of Ron Williamson, a mentally ill former\nbaseball player who was wrongfully convicted and sentenced to death for the\n1982 murder of a twenty-one-year-old woman in his Oklahoma hometown.\"\r\n1935,1987,10617,\"Richard Bachman, Stephen King\",The Bachman Books,https://images.gr-assets.com/books/1374049003l/10617.jpg,4.1,52824,\"horror, fiction\",\"A collection of Stephen King's early works, written under the pseudonym of\nRichard Bachman\"\r\n1936,1988,17568801,Reza Aslan,Zealot: The Life and Times of Jesus of Nazareth,https://images.gr-assets.com/books/1367929567l/17568801.jpg,3.82,41094,\"history, religion\",\"The author of the best-selling No God but God presents a meticulously\nresearched biography of Jesus that draws on biblical and historical sources\nto place His achievements and influence against the turbulent backdrop of\nHis time.\"\r\n1937,1989,761732,Terry Goodkind,Soul of the Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562779000l/761732.jpg,3.87,48632,\"fantasy, fiction\",Soul of the FireTerry Goodkind\r\n1938,1990,11331421,\"Jan-Philipp Sendker, Kevin Wiliarty\",Das Herzenhören,https://images.gr-assets.com/books/1320437247l/11331421.jpg,3.98,41647,\"fiction, romance\",\"A cloth bag containing eight copies of the title, that may also include a\nfolder.\"\r\n1939,1991,8935689,Iain M. Banks,Consider Phlebas,https://images.gr-assets.com/books/1327951890l/8935689.jpg,3.85,48649,\"fiction, fantasy\",Consider PhlebasIain M. Banks\r\n1940,1992,759945,David J. Schwartz,The Magic of Thinking Big,https://images.gr-assets.com/books/1404632064l/759945.jpg,4.19,40023,\"business, psychology\",\"The timeless and practical advice in The Magic of Thinking Big \"\"Believe\nBig, \"\"says Schwartz. \"\"The size of your success is determined by the size of\nyour belief. Think little goals and expect little achievements. Think big\ngoals and win big success. Remember this, too! Big ideas and big plans are\noften easier -- certainly no more difficult - than small ideas and small\nplans.\"\"\"\r\n1941,1993,31332,Anne Rice,The Vampire Armand,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388355184l/31332.jpg,3.75,54919,\"horror, fantasy\",The Vampire ArmandAnne Rice\r\n1942,1994,17337562,Abbi Glines,\"Forever Too Far (Too Far, #3)\",https://images.gr-assets.com/books/1368151288l/17337562.jpg,4.24,70029,\"romance, contemporary\",\"Forever Too Far (Too Far, #3)Abbi Glines\"\r\n1943,1995,768889,George R.R. Martin,A Storm of Swords: Part 1 Steel and Snow,https://images.gr-assets.com/books/1353235205l/768889.jpg,4.49,42072,\"fantasy, fiction\",\"HBO's hit series A GAME OF THRONES is based on George R R Martin's\ninternationally bestselling series A SONG OF ICE AND FIRE, the greatest\nfantasy epic of the modern age. A STORM OF SWORDS: STEEL AND SNOW is the\nFIRST part of the third volume in the series. 'Martin has captured the\nimagination of millions' Guardian Winter approaches Westeros like an angry\nbeast. The Seven Kingdoms are divided by revolt and blood feud. In the\nnorthern wastes, a horde of hungry, savage people steeped in the dark magic\nof the wilderness is poised to invade the Kingdom of the North where Robb\nStark wears his new-forged crown. And Robb's defences are ranged against\nthe South, the land of the cunning and cruel Lannisters, who have his\nyounger sisters in their power. Throughout Westeros, the war for the Iron\nThrone rages more fiercely than ever, but if the Wall is breached, no king\nwill live to claim it.\"\r\n1944,1996,180617,\"Carlo Collodi, John Boyne, Monteiro Lobato, Unknown\",Le avventure di Pinocchio,https://images.gr-assets.com/books/1327938097l/180617.jpg,3.86,48961,ebooks,\"Le avventure di PinocchioCarlo Collodi, John Boyne, Monteiro Lobato, Unknown\"\r\n1945,1997,9565548,Robin LaFevers,Grave Mercy,https://images.gr-assets.com/books/1320269319l/9565548.jpg,3.92,70476,\"fantasy, romance\",Grave MercyRobin LaFevers\r\n1946,1998,833253,Stormie Omartian,The Power of a Praying Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178755854l/833253.jpg,4.31,22618,\"christian, nonfiction\",\"Stormie joyfully inspires you to develop a deeper relationship with your\nhusband by utilizing the amazing power of prayer. with practical advice on\npraying for specific areas of your husband's life, including his spiritual\nwalk, his emotions, his role as a father, leader, and decision-maker, his\nsecurity in work and finances, his health and plysical protection and his\nfaith and his future.\"\"\"\r\n1947,1999,249,Henry Miller,Tropic of Cancer,https://images.gr-assets.com/books/1408753140l/249.jpg,3.71,45518,\"fiction, classics\",The account of a young writer and his friends in free-wheeling Paris.\r\n1948,2000,3086160,Wally Lamb,The Hour I First Believed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438893201l/3086160._SY475_.jpg,3.8,46475,\"fiction, contemporary\",The Hour I First BelievedWally Lamb\r\n1949,2001,7952502,Brian Sibley,Harry Potter: Film Wizardry,https://images.gr-assets.com/books/1464452934l/7952502.jpg,4.48,45081,\"fantasy, nonfiction\",\"Immerse yourself in the world of the spectacular Harry Potter film series,\nand learn why Yule Ball ice sculptures never melt, where Galleons, Sickles,\nand Knuts are really \"\"minted,\"\" how to get a Hippogriff to work with actors,\nthe inspiration behind Hogwarts castle, and why Dementors move the way they\ndo. Written and designed in collation with the cast and crew that brought\nJ. K. Rowling's celebrated novels to the silver screen, Harry Potter: Film\nWizardry delivers an enchanting interactive experience, transporting\nreaders to the wizarding world by sharing film-making secrets, unpublished\nphotography and artwork, and exclusive stories from the stars. Full of\nremovable facsimile reproductions of props and paper ephemera from the\nmovies, this collectible volume offers a privileged look at the Harry\nPotter films and the talented group of Muggles that has made true movie\nmagic.\"\r\n1950,2002,18386,\"Leo Tolstoy, Aylmer Maude\",Смерть Ивана Ильича,https://images.gr-assets.com/books/1336967150l/18386.jpg,4.04,46357,\"philosophy, classics\",\"Смерть Ивана ИльичаLeo Tolstoy, Aylmer Maude\"\r\n1951,2003,23995231,Paula McLain,Circling the Sun,https://images.gr-assets.com/books/1426531608l/23995231.jpg,3.93,37839,\"fiction, romance\",Circling the SunPaula McLain\r\n1952,2004,5306,John Steinbeck,Travels with Charley: In Search of America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924381l/5306.jpg,4.07,45856,\"travel, classics\",\"Steinbeck records his emotions and experiences during a journey of\nrediscovery in his native land.\"\r\n1953,2005,10950924,Alice Hoffman,The Dovekeepers,https://images.gr-assets.com/books/1306253903l/10950924.jpg,4.02,48640,\"fiction, history\",\"A tale inspired by the massacre of hundreds of Jewish people at Masada\npresents the stories of a hated daughter, a baker's wife, a girl disguised\nas a warrior, and a medicine woman who keep doves and secrets while Roman\nsoldiers draw near.\"\r\n1954,2006,2890090,Scott Lynch,The Republic of Thieves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406961069l/2890090.jpg,4.23,45320,\"fantasy, fiction\",\"Con man Locke Lamora's latest scrapes with fellow Gentleman Bastard Jean\nTannen give way to an increasingly audacious resolve to have an incredibly\ngood time while robbing the world blind.\"\r\n1955,2007,113304,Cornelia Funke,Herr der Diebe,https://images.gr-assets.com/books/1327960342l/113304.jpg,3.95,60780,\"fantasy, fiction\",Herr der DiebeCornelia Funke\r\n1956,2008,12983100,Susan Ee,World After,https://images.gr-assets.com/books/1494247697l/12983100.jpg,4.22,33994,\"fantasy, paranormal\",\"Penryn's search for her kidnapped sister, Paige, leads her into the heart\nof the angels' secret plans, while Raffe must choose between reclaiming his\nwings--and his role as the angels' leader--or helping Penryn survive.\"\r\n1957,2009,14996,Dean Koontz,Brother Odd,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406835501l/14996.jpg,3.98,48400,\"horror, fiction\",\"Leaving the small desert town where he has spent his life, Odd Thomas, a\nhero who lives between the living and the dead, seeks the solitude of an\nisolated monastery, but he soon finds himself confronting a killer stalking\nhis sanctuary's halls.\"\r\n1958,2010,42603,John Howard Griffin,Black Like Me,https://images.gr-assets.com/books/1311696842l/42603.jpg,4.12,47324,\"nonfiction, history\",\"A white writer recounts his experiences in the American South following\ntreatments that darkened his skin and shares his thoughts on the problems\nof prejudice and racial injustice.\"\r\n1959,2011,1840511,Chuck Palahniuk,Snuff,https://images.gr-assets.com/books/1446089918l/1840511.jpg,3.18,43496,\"fiction, contemporary\",\"Narrated by Mr. 72, Mr. 137, and Mr. 600 as they await their turn on\ncamera, a novel about the role of pornography in contemporary life follows\nporn queen Cassie Wright, who plans to break the record for serial\nfornication with six hundred men on camera.\"\r\n1960,2012,13140,James Patterson,Jack & Jill,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253756l/13140.jpg,3.95,51119,\"mystery, fiction\",\"Join Alex Cross in a heart-stopping thrill ride as he pieces together the\nclues of two gruesome murders. Will he find the killers in time? In the\nmiddle of the night, a controversial U.S. senator is found murdered in bed\nin his Georgetown pied-a-terre. The police turn up only one clue: a\nmysterious rhyme signed \"\"Jack and Jill\"\" promising that this is just the\nbeginning. Jack and Jill are out to get the rich and famous, and they will\nstop at nothing until their fiendish plan is carried out. Meanwhile,\nWashington, D. C. homicide detective Alex Cross is called to a murder scene\nonly blocks from his house, far from the corridors of power where he spends\nhis days. The victim: a beautiful little girl, savagely beaten and\ndeposited in front of the elementary school Cross's son attends. No one in\nWashington is safe-not children, not politicians, not even the President of\nthe United States. Only Alex Cross has the skills and the courage to crack\nthe case, but will he discover the truth in time? A relentless roller\ncoaster of heart-pounding suspense and jolting plot twists, Jack and Jill\nproves that no one can write a more compelling thriller than James\nPatterson, the master of the nonstop nightmare.\"\r\n1961,2013,5015,Ian McEwan,Saturday,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431501825l/5015._SY475_.jpg,3.61,45567,\"fiction, contemporary\",\"A successful, happily married neurosurgeon, Henry Perowne is drawn into a\nconfrontation with Baxter, a small-time thug, following a minor motor\nvehicle accident on the way to his regular squash game, an encounter that\nhas savage consequences when Baxter, believing that the doctor has\nhumiliated him, visits the Perowne home that evening during a family\nreunion. Reader's Guide available. Reprint. 300,000 first printing.\"\r\n1962,2014,185911,Jonathan Kellerman,When the Bough Breaks,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390256869l/185911.jpg,4.02,48860,\"mystery, crime\",\"Originally published: New York: Atheneum, 1985.\"\r\n1963,2015,83674,Robert James Waller,The Bridges of Madison County,https://images.gr-assets.com/books/1344267141l/83674.jpg,3.51,56428,\"fiction, romance\",The Bridges of Madison CountyRobert James Waller\r\n1964,2016,4494917,Lee Child,Gone Tomorrow,https://images.gr-assets.com/books/1328395497l/4494917.jpg,4.17,51570,\"thriller, fiction\",\"Witnessing a suicide on a Manhattan subway, Jack Reacher finds himself\ntargeted by the federal government and Al-Qaeda for his knowledge of a\ndangerous secret, a situation that leads to a dangerous chase through the\nstreets of New York City. Reprint. A best-selling thriller.\"\r\n1965,2017,4588949,Michael Scott,The Sorceress,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203327l/4588949.jpg,4.11,58278,\"fantasy, fiction\",\"While armies of the Shadowrealms gather and Machiavelli goes to Alcatraz to\nkill Perenelle Flamel, fifteen-year-old twins Sophie and Josh Newman\naccompany the Alchemist to England to find someone who can teach them Water\nMagic.\"\r\n1966,2018,13507212,Hilary Mantel,Bring Up the Bodies,https://images.gr-assets.com/books/1330649655l/13507212.jpg,4.26,42306,\"fiction, history\",\"WINNER OF THE 2012 MAN BOOKER PRIZE The sequel to Wolf Hall, Hilary\nMantel's 2009 Man Booker Prize winner and New York Times bestseller, Bring\nUp the Bodies delves into the heart of Tudor history with the downfall of\nAnne Boleyn. Though he battled for seven years to marry her, Henry is\ndisenchanted with Anne Boleyn. She has failed to give him a son and her\nsharp intelligence and audacious will alienate his old friends and the\nnoble families of England. When the discarded Katherine dies in exile from\nthe court, Anne stands starkly exposed, the focus of gossip and malice. At\na word from Henry, Thomas Cromwell is ready to bring her down. Over three\nterrifying weeks, Anne is ensnared in a web of conspiracy, while the demure\nJane Seymour stands waiting her turn for the poisoned wedding ring. But\nAnne and her powerful family will not yield without a ferocious struggle.\nHilary Mantel's Bring Up the Bodies follows the dramatic trial of the queen\nand her suitors for adultery and treason. To defeat the Boleyns, Cromwell\nmust ally with his natural enemies, the papist aristocracy. What price will\nhe pay for Anne's head? Bring Up the Bodies is one of The New York Times'\n10 Best Books of 2012, one of Publishers Weekly's Top 10 Best Books of 2012\nand one of The Washington Post's 10 Best Books of 2012\"\r\n1967,2019,2921082,Rick Riordan,The Maze of Bones ,https://images.gr-assets.com/books/1385117877l/2921082.jpg,3.83,59536,\"mystery, fiction\",\"When their beloved aunt--matriarch of the world's most powerful family--\ndies, orphaned siblings Amy and Dan Cahill compete with less honorable\nCahill descendants in a race around the world to find cryptic clues to a\nmysterious fortune. Includes game cards which the reader may use to play an\nonline version of the treasure hunt.\"\r\n1968,2020,603204,Mark Bittman,How to Cook Everything: Simple Recipes for Great Food,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407047944l/603204.jpg,4.02,52708,\"cookbooks, nonfiction\",\"Today's Favorite Kitchen Companion—Revised and Better Than Ever Mark\nBittman's award-winning How to Cook Everything has helped countless home\ncooks discover the rewards of simple cooking. Now the ultimate cookbook has\nbeen revised and expanded (almost half the material is new), making it\nabsolutely indispensable for anyone who cooks—or wants to. With Bittman's\nstraightforward instructions and advice, you'll make crowd-pleasing food\nusing fresh, natural ingredients; simple techniques; and basic equipment.\nEven better, you'll discover how to relax and enjoy yourself in the kitchen\nas you prepare delicious meals for every occasion. \"\"A week doesn't go by\nwhere I don't pull How to Cook Everything down from the shelf, so I am\nthrilled there's a new, revised edition. My original is falling apart!\"\" —Al\nRoker \"\"This new generation of How to Cook Everything makes my 'desert\nisland' cookbook choice jacked up and simply universal. I'll now bequeath\nmy cookbooks to a collector; I need only this one.\"\" —Mario Batali \"\"Mark\nBittman has done the impossible, improving upon his now-classic How to Cook\nEverything. If you need know-how, here's where to find it.\"\" —Bobby Flay\n\"\"Mark Bittman is a great cook and an incredible teacher. In this second\nedition, Mark has fine-tuned the original, making this book a must for\nevery kitchen.\"\" —Jean-Georges Vongerichten \"\"Throw away all your old recipes\nand buy How to Cook Everything. Mark Bittman's recipes are foolproof, easy,\nand more modern than any others.\"\" —Isaac Mizrahi \"\"Generous, thorough,\nreliable, and necessary, How to Cook Everything is an indispensable\nreference for both experienced and beginner cooks.\"\" —Mollie Katzen, author\nof the Moosewood Cookbook \"\"I learned how to cook from How to Cook\nEverything in a way that gives me the freedom to be creative. This new\nedition will be my gift to new couples or for a housewarming; if you have\nthis book, you don't really need any others.\"\" —Lisa Loeb, singer/songwriter\"\r\n1969,2021,690926,Stephenie Meyer,\"The Twilight Collection (Twilight, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187657l/690926.jpg,3.78,42361,\"fantasy, romance\",\"This stunning set, complete with all four books, makes the perfect gift for\nfans of the bestselling vampire love story. Deeply romantic and\nextraordinarily suspenseful, Twilight, New Moon, Eclipse, and Breaking Dawn\ncapture the struggle between defying our instincts and satisfying our\ndesires.\"\r\n1970,2022,857502,Wassily Kandinsky,Über das Geistige in der Kunst,https://images.gr-assets.com/books/1405982387l/857502.jpg,3.81,56444,\"art, philosophy\",Über das Geistige in der KunstWassily Kandinsky\r\n1971,2023,186190,Winston Groom,Forrest Gump,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385313197l/186190.jpg,4.06,45660,\"fiction, classics\",\"First published in the late 1980s and then made into a multiple Academy\nAward-winning film starring Tom Hanks, \"\"Forrest Gump\"\" is a heartwarming\nclassic about the amazing adventures of a modern (and unexpected) hero, now\nin a 25th-anniversary edition.\"\r\n1972,2024,11991,\"Albert Camus, Justin O'Brien\",La Chute,https://images.gr-assets.com/books/1467904855l/11991.jpg,4.05,43269,\"fiction, philosophy\",A man's confessions reveal his perception of justice and his own downfall\r\n1973,2025,7572,Tom Robbins,Even Cowgirls Get the Blues,https://images.gr-assets.com/books/1336172455l/7572.jpg,3.74,40840,\"fiction, contemporary\",\"Champion hitchhiker Sissy Hankshaw, braless and free, makes her way across\nthe confused and paranoid America of the 1970s, gathering knowledge and\nexperience, friends and suitors, and all sorts of unusual acquaintances\"\r\n1974,2026,6138,\"Wilkie Collins, Carolyn G. Heilbrun\",The Moonstone,https://images.gr-assets.com/books/1403192382l/6138.jpg,3.9,50322,\"classics, mystery\",\"Rachel Verinder mysteriously opposes an investigation of the theft of a\nsacred Hindu diamond which she inherited from her uncle.\"\r\n1975,2027,374233,\"Italo Calvino, William Weaver\",Se una notte d'inverno un viaggiatore,https://images.gr-assets.com/books/1355316130l/374233.jpg,4.08,42037,\"classics, contemporary\",\"Se una notte d'inverno un viaggiatoreItalo Calvino, William Weaver\"\r\n1976,2028,13521,\"Gregory Maguire, Douglas Smith\",Son of a Witch,https://images.gr-assets.com/books/1370992595l/13521.jpg,3.45,48982,\"fantasy, fiction\",\"Ten years after the publication of Wicked, beloved novelist Gregory Maguire\nreturns at last to the land of Oz. There he introduces us to Liir, an\nadolescent boy last seen hiding in the shadows of the castle after Dorothy\ndid in the Witch. Bruised, comatose, and left for dead in a gully, Liir is\nshattered in spirit as well as in form. But he is tended to at the Cloister\nof Saint Glinda by the silent novice called Candle, who wills him back to\nlife with her musical gifts. What dark force left Liir in this condition?\nIs he really Elphaba's son? He has her broom and her cape—but what of her\npowers? Can he find his supposed half-sister, Nor, last seen in the\nforbidding prison, Southstairs? Can he fulfill the last wishes of a dying\nprincess? In an Oz that, since the Wizard's departure, is under new and\ndangerous management, can Liir keep his head down long enough to grow up?\nFor the countless fans who have been dazzled and entranced by Maguire's Oz,\nSon of a Witch is the rich reward they have awaited so long.\"\r\n1977,2029,815309,Ian McEwan,On Chesil Beach,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436962381l/815309._SY475_.jpg,3.54,43698,\"fiction, contemporary\",\"On their wedding day, a young couple--Florence, daughter of an Oxford\nacademic and a successful businessman, and Edward, an earnest history\nstudent with little experience of women--looks forward to the future while\nworrying about their upcoming wedding night.\"\r\n1978,2030,64854,Sue Grafton,\"\"\"M\"\" is for Malice\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389678445l/64854.jpg,4.07,52843,\"mystery, fiction\",\"Brace yourself for an \"\"Electrifying and thoroughly satisfying\"\" read\n(Publishers Weekly) from #1 New York Times bestselling author Sue Grafton\n\"\"M\"\" is for money. Lots of it. \"\"M\"\" is for Malek Construction, the $40\nmillion company that grew out of modest soil to become one of the big three\nin California construction, one of the few still in family hands. \"\"M\"\" is\nfor the Malek family: four sons now nearing middle age who stand to inherit\na fortune--four men with very different outlooks, temperaments, and needs,\nlinked only by blood and money. Eighteen years ago, one of them--angry,\ntroubled, and in trouble--went missing. \"\"M\"\" is for Millhone, hired to trace\nthat missing black sheep brother. \"\"M\"\" is for memories, none of them happy.\nThe bitter memories of an embattled family. This prodigal son will find no\nwelcome at his family's table. \"\"M\"\" is for malice. And in brutal\nconsequence, \"\"M\"\" is for murder, the all-too-common outcome of familial\nhatreds. \"\"M\"\" is for malice . . . and malice kills. \"\"A\"\" Is for Alibi \"\"B\"\" Is\nfor Burglar \"\"C\"\" Is for Corpse \"\"D\"\" Is for Deadbeat \"\"E\"\" Is for Evidence \"\"F\"\"\nIs for Fugitive \"\"G\"\" Is for Gumshoe \"\"H\"\" Is for Homicide \"\"I\"\" Is for Innocent\n\"\"J\"\" Is for Judgment \"\"K\"\" Is for Killer \"\"L\"\" is for Lawless \"\"M\"\" Is for Malice\n\"\"N\"\" Is for Noose \"\"O\"\" Is for Outlaw \"\"P\"\" Is for Peril \"\"Q\"\" Is for Quarry \"\"R\"\"\nIs for Ricochet \"\"S\"\" Is for Silence \"\"T\"\" Is for Trespass \"\"U\"\" Is for Undertow\n\"\"V\"\" Is for Vengeance \"\"W\"\" Is for Wasted \"\"X\"\"\"\r\n1979,2031,6531,Patricia Cornwell,Point of Origin,https://images.gr-assets.com/books/1399629118l/6531.jpg,4.02,48683,\"mystery, crime\",Point of OriginPatricia Cornwell\r\n1980,2032,106264,Patricia MacLachlan,\"Sarah, Plain and Tall\",https://images.gr-assets.com/books/1327254558l/106264.jpg,3.72,53317,\"classics, fiction\",\"This beloved Newbery Medal–winning book is the first of five books in\nPatricia MacLachlan's chapter book series about the Witting family. Set in\nthe late nineteenth century and told from young Anna's point of view,\nSarah, Plain and Tall tells the story of how Sarah Elisabeth Wheaton comes\nfrom Maine to the prairie to answer Papa's advertisement for a wife and\nmother. Before Sarah arrives, Anna and her younger brother Caleb wait and\nwonder. Will Sarah be nice? Will she sing? Will she stay? This children's\nliterature classic is perfect for fans of Laura Ingalls Wilder's Little\nHouse on the Prairie books, historical fiction, and timeless stories using\nrich and beautiful language. Sarah, Plain and Tall gently explores themes\nof abandonment, loss and love. This anniversary edition includes author\nPatricia MacLachlan's Newbery speech, a discussion guide, and a reading\nlist. Read the rest of the Sarah books by Patricia MacLachlan: Skylark,\nCaleb’s Story, More Perfect than the Moon, and Grandfather’s Dance.\"\r\n1981,2033,3554772,يوسف زيدان,عزازيل,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1239159794l/3554772.jpg,4.07,37404,\"fiction, ebooks\",\"تدور أحداث الرواية في القرن الخامس الميلادي ما بين صعيد مصر والإسكندرية\nوشمال سوريا، عقب تبني الإمبراطورية الرومانية للدين المسيحي، وما تلا ذلك من\nصراع مذهبي داخلي بين آباء الكنيسة من جهة، والمؤمنين الجدد والوثنية\nالمتراجعة من جهة أخرى. \"\"ما أظن أني تمتعت بعمل من هذا القبيل.. ما أروع هذا\nالعمل\"\" -- يحيى الجمل \"\"هذه الرواية عمل مبدع وخطير، مبدع لما يحتويه من مناطق\nحوارية إنسانية مكتوبة بحساسية مرهفة تمتزج فيها العاطفة بالمتعة، وخطير لأنه\nيتضمن دراسة في نشأة وتطور الصراع المذهبي بين الطوائف المسيحية في المشرق..\nإن يوسف زيدان يتميز بالموهبتين، موهبة المبدع وموهبة الباحث، وكثيرا ما\nتتداخل الموهبتان في هذا العمل\"\" -- سامي خشبة \"\"لو قرأنا الرواية قراءة حقيقية،\nلأدركنا سمو أهدافها ونبل غاياتها الأخلاقية والروحية التي هي تأكيد لقيم\nالتسامح وتقبل الآخر، واحترام حق الاختلاف، ورفض مبدأ العنف.. ولغة الرواية\nلغة شعرية، تترجع فيها أصداء المناجيات الصوفية، خصوصا حين نقرأ مناجاة هيبا\nلربه \"\" -- د. جابر عصفور \"\"يوسف زيدان هو أول روائي مسلم، يكتب عن اللاهوت\nالمسيحي بشكل روائي عميق. وهو أول مسلم، يحاول أن يعطي حلولا لمشكلات كنسية\nكبرى.. إن يوسف زيدان اقتحم حياة الأديرة، ورسم بريشة راهب أحداثا كنسية حدثت\nبالفعل، وكان لها أثر عظيم في تاريخ الكنيسة القبطية\"\" -- المطران يوحنا\nجريجووريوس\"\r\n1982,2034,33454,Christopher Moore,Bloodsucking Fiends,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388586483l/33454.jpg,3.93,48520,\"fiction, fantasy\",Bloodsucking FiendsChristopher Moore\r\n1983,2035,7857195,\"David Sedaris, Ian Falconer\",Squirrel Seeks Chipmunk: A Modest Bestiary,https://images.gr-assets.com/books/1279831428l/7857195.jpg,3.34,48061,\"fiction, fantasy\",\"Squirrel Seeks Chipmunk: A Modest BestiaryDavid Sedaris, Ian Falconer\"\r\n1984,2036,7015403,Brené Brown,The Gifts of Imperfection,https://images.gr-assets.com/books/1369092544l/7015403.jpg,4.17,46635,\"psychology, nonfiction\",\"An expert of the psychology of shame presents advice on how to overcome\nparalyzing fears and self-consciousness, and at the same time increase\nfeelings of self-worth, gratitude, and acceptance.\"\r\n1985,2037,28214365,Ann Patchett,Commonwealth,https://images.gr-assets.com/books/1483278132l/28214365.jpg,3.84,56656,\"fiction, contemporary\",\"#1 New York Times Bestseller The acclaimed, bestselling author—winner of\nthe PEN/Faulkner Award and the Orange Prize—tells the enthralling story of\nhow an unexpected romantic encounter irrevocably changes two families’\nlives. One Sunday afternoon in Southern California, Bert Cousins shows up\nat Franny Keating’s christening party uninvited. Before evening falls, he\nhas kissed Franny’s mother, Beverly—thus setting in motion the dissolution\nof their marriages and the joining of two families. Spanning five decades,\nCommonwealth explores how this chance encounter reverberates through the\nlives of the four parents and six children involved. Spending summers\ntogether in Virginia, the Keating and Cousins children forge a lasting bond\nthat is based on a shared disillusionment with their parents and the\nstrange and genuine affection that grows up between them. When, in her\ntwenties, Franny begins an affair with the legendary author Leon Posen and\ntells him about her family, the story of her siblings is no longer hers to\ncontrol. Their childhood becomes the basis for his wildly successful book,\nultimately forcing them to come to terms with their losses, their guilt,\nand the deeply loyal connection they feel for one another. Told with equal\nmeasures of humor and heartbreak, Commonwealth is a meditation on\ninspiration, interpretation, and the ownership of stories. It is a\nbrilliant and tender tale of the far-reaching ties of love and\nresponsibility that bind us together.\"\r\n1986,2038,6267237,Melissa de la Cruz,The Van Alen Legacy ,https://images.gr-assets.com/books/1343251719l/6267237.jpg,3.95,58724,\"fantasy, paranormal\",\"With the stunning revelation surrounding Bliss's true identity comes the\ngrowing threat of the sinister Silver Bloods. Once left to live the\nglamorous life in New York City, the Blue Bloods now find themselves in an\nepic battle for survival. Not to worry, love is still in the air for the\nyoung vampires of the Upper East Side. Or is it? Jack and Schuyler are\nover. Oliver's brokenhearted. And only the cunning Mimi seems to be happily\nengaged. Young, fanged, and fabulous, Melissa de la Cruz's vampires unite\nin this highly anticipated fourth installment of the Blue Bloods series.\n/DIVDIV\"\r\n1987,2039,133526,Robert McCloskey,Blueberries for Sal,https://images.gr-assets.com/books/1363586056l/133526.jpg,4.18,58571,\"fiction, classics\",\"Little Bear and Sal both go berrying with their mothers, but after sitting\ndown to rest, they each end up following the other one's mother.\"\r\n1988,2040,17340050,Colleen Hoover,Losing Hope,https://images.gr-assets.com/books/1368348507l/17340050.jpg,4.39,71841,\"romance, contemporary\",Losing HopeColleen Hoover\r\n1989,2041,10566,Stephen King,Lisey's Story,https://images.gr-assets.com/books/1316346037l/10566.jpg,3.65,50721,\"horror, fiction\",\"Every marriage has two hearts, one light and one dark, and Lisey Landon\nmust confront both. King's most personal and powerful book to date is about\nthe wellsprings of creativity, the temptations of madness, and the secret\nlanguage of love.\"\r\n1990,2042,15851746,Eben Alexander,Proof of Heaven: A Neurosurgeon's Journey Into the Afterlife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433186907l/15851746._SY475_.jpg,3.68,37150,\"biography, science\",\"Shares an account of his religiously transformative near-death experience\nand revealing week-long coma, describing his scientific study of near-death\nphenomena while explaining what he learned about the nature of human\nconsciousness.\"\r\n1991,2043,400354,Terry Pratchett,Men at Arms,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388215150l/400354.jpg,4.36,54413,\"fantasy, fiction\",\"A Young Dwarf's Dream Corporal Carrot has been promoted! He's now in charge\nof the new recruits guarding Ankh-Morpork, Discworld's greatest city, from\nBarbarian Tribes, Miscellaneous Marauders, unlicensed Thieves, and such.\nIt's a big job, particularly for an adopted dwarf. But an even bigger job\nawaits. An ancient document has just revealed that Ankh-Morpork, ruled for\ndecades by Disorganized crime, has a secret sovereign! And his name is\nCarrott... And so begins the most awesome epic encounter of all time, or at\nleast all afternoon, in which the fate of a city—indeed of the universe\nitself!—depends on a young man's courage, an ancient sword's magic, and a\nthree-legged poodle's bladder.\"\r\n1992,2044,495395,A.J. Jacobs,The Year of Living Biblically: One Man's Humble Quest to Follow the Bible As Literally As Possible,https://images.gr-assets.com/books/1327977486l/495395.jpg,3.76,48711,\"religion, nonfiction\",\"Documents the author's quest to live one year in literal compliance with\nbiblical rules, from being fruitful and multiplying to growing a beard and\navoiding mixed-fiber clothing.\"\r\n1993,2045,42432,Frank Herbert,God Emperor of Dune,https://images.gr-assets.com/books/1327131560l/42432.jpg,3.81,45608,\"fiction, fantasy\",God Emperor of DuneFrank Herbert\r\n1994,2047,40493,Jean M. Auel,The Valley of Horses,https://images.gr-assets.com/books/1324059760l/40493.jpg,3.98,52572,\"fiction, fantasy\",\"After being cast out of the Clan that had adopted her as a child by the new\nleader, Ayla shares a lonely valley with a herd of steppe ponies, harnesses\ntheir power, and discovers speech and love with Jondalar, a member of her\nown race. Reissue.\"\r\n1995,2048,15811568,Harlan Coben,Six Years,https://images.gr-assets.com/books/1348406182l/15811568.jpg,3.8,36523,\"mystery, thriller\",Six YearsHarlan Coben\r\n1996,2049,78039,Beverly Cleary,Ramona the Pest,https://images.gr-assets.com/books/1408926719l/78039.jpg,4.04,52242,\"fiction, classics\",\"Ramona is off to kindergarten, and it's the greatest day of her life. So\nwhy is she sitting on the bench while the rest of the students play the\ngame gray duck? Laughs and minor upsets abound in an enormously popular\nstory starring the one and only Ramona Quimby!\"\r\n1997,2050,2985500,L.J. Smith,\"Night World, No. 2\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399662376l/2985500.jpg,4.2,53023,\"paranormal, romance\",\"Night World, No. 2L.J. Smith\"\r\n1998,2051,13872,Katherine Dunn,Geek Love,https://images.gr-assets.com/books/1366699063l/13872.jpg,3.98,41176,\"fiction, horror\",\"Aloysious and Lillian Binewski, proprietors of a traveling carnival,\nattempt to reduce overhead by breeding their own freak show, with tragic\nresults\"\r\n1999,2053,5527,Robert Penn Warren,All the King’s Men,https://images.gr-assets.com/books/1342193852l/5527.jpg,4.08,42821,\"fiction, classics\",\"THE STORY: As told by Atkinson: Eliminate the story of Huey Long, which Mr.\nWarren says is not what he is trying to interpret. He is anatomizing the\ncareer with nothing but purity in his heart. Discovering that he is being\nused by a cynical machin\"\r\n2000,2054,5452,Ann Brashares,Girls in Pants: The Third Summer of the Sisterhood,https://images.gr-assets.com/books/1320473346l/5452.jpg,3.82,56485,\"fiction, romance\",\"The members of the Sisterhood of the Traveling Pants graduate from high\nschool and spend their last summer before college learning about life and\nthemselves. Includes readers' guide with discussion questions and an\ninterview with the author.\"\r\n2001,2055,43931,Harlan Coben,The Woods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439523356l/43931._SY475_.jpg,4.04,46234,\"mystery, fiction\",\"Grieving over the murder of his sister twenty years earlier and raising his\nsix-year-old daughter alone after losing his wife to cancer, county\nprosecutor Paul Copeland is inadvertently tied to a murder investigation\nthat he believes may be related to his sister's case, a discovery that\nthreatens to reveal long-buried family secrets. 400,000 first printing.\"\r\n2002,2056,187065,Robert Jordan,New Spring,https://images.gr-assets.com/books/1328959234l/187065.jpg,4.01,52823,\"fantasy, fiction\",\"War rages around the city of Tar Valon as the prophesy of a child who will\nchange the world sends Moiraine Damodred and Lan Mandragoran on a race\nagainst time to find the child before the forces of the Shadow can destroy\nhim.\"\r\n2003,2057,11600163,John Grisham,The Litigators,https://images.gr-assets.com/books/1320434601l/11600163.jpg,3.77,38391,\"fiction, mystery\",\"The best-selling author of The Confession and The Appeal presents a latest\nlegal thriller in which high-stakes courtroom tensions lead up to an\nexplosive, unorthodox conclusion.\"\r\n2004,2058,23604559,\"Fredrik Backman, Henning Koch\",Min mormor hälsar och säger förlåt,https://images.gr-assets.com/books/1461904020l/23604559.jpg,4.02,49291,\"fiction, contemporary\",\"Min mormor hälsar och säger förlåtFredrik Backman, Henning Koch\"\r\n2005,2059,7959473,Vince Flynn,American Assassin,https://images.gr-assets.com/books/1425389574l/7959473.jpg,4.24,44196,\"thriller, fiction\",\"Mitch Rapp broods over the deaths of his girlfriend and other classmates on\nPan Am Flight 103, until he is recruited by the CIA and receives his first\nassignment--to kill the arms dealer who sold the bomb that killed his\nfriends.\"\r\n2006,2060,13588356,Brené Brown,\"Daring Greatly : How the Courage to Be Vulnerable Transforms the Way We Live, Love, Parent, and Lead\",https://images.gr-assets.com/books/1337110319l/13588356.jpg,4.24,49636,\"nonfiction, psychology\",\"Based on twelve years of research, thought leader Dr. Brenae Brown argues\nthat vulnerability is not weakness, but rather our clearest path to\ncourage, engagement, and meaningful connection.\"\r\n2007,2061,17333319,Hannah Kent,Burial Rites,https://images.gr-assets.com/books/1384207446l/17333319.jpg,4.01,41209,\"fiction, mystery\",Burial RitesHannah Kent\r\n2008,2062,45162,Sarah Waters,Fingersmith,https://images.gr-assets.com/books/1327879025l/45162.jpg,4.02,41761,\"fiction, mystery\",\"Growing up as a foster child among a family of thieves, orphan Sue Trinder\nhopes to pay back that kindness by playing a key role in a swindle scheme\ndevised by their leader, Gentleman, who is planning to con a fortune out of\nthe naive Maud Lily, but Sue's growing pity for their helpless victim could\ndestroy the plot. By the author of Tipping the Velvet. Reprint.\"\r\n2009,2063,40189,Peter Mayle,A Year in Provence,https://images.gr-assets.com/books/1494896848l/40189.jpg,3.94,47139,\"travel, memoir\",\"A month-by-month account of the author's experience in the first year of\nrestoring a two-centuries old stone farmhouse in back country Provence,\nFrance.\"\r\n2010,2064,37186,\"Kate DiCamillo, Bagram Ibatoulline\",The Miraculous Journey of Edward Tulane,https://images.gr-assets.com/books/1361121815l/37186.jpg,4.34,53245,\"fantasy, fiction\",\"A timeless tale by the incomparable Kate DiCamillo, complete with stunning\nfull-color plates by Bagram Ibatoulline, honors the enduring power of love.\n\"\"Someone will come for you, but first you must open your heart. . . .\"\"\nOnce, in a house on Egypt Street, there lived a china rabbit named Edward\nTulane. The rabbit was very pleased with himself, and for good reason: he\nwas owned by a girl named Abilene, who treated him with the utmost care and\nadored him completely. And then, one day, he was lost. Kate DiCamillo takes\nus on an extraordinary journey, from the depths of the ocean to the net of\na fisherman, from the top of a garbage heap to the fireside of a hoboes'\ncamp, from the bedside of an ailing child to the bustling streets of\nMemphis. And along the way, we are shown a true miracle — that even a heart\nof the most breakable kind can learn to love, to lose, and to love again.\"\r\n2011,2065,10163292,Jojo Moyes,The Last Letter From Your Lover,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549061291l/10163292._SY475_.jpg,3.94,41138,\"romance, fiction\",\"More than forty years after a car accident causes Jennifer Stirling to lose\nher memory on the day she planned to leave her husband for a mysterious\nlover, journalist Ellie becomes obsessed by the story and seeks the truth\nin the hopes of revitalizing hercareer.\"\r\n2012,2066,762806,Martin Cruz Smith,Gorky Park,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390189430l/762806.jpg,4.04,46847,\"mystery, fiction\",\"In contemporary Moscow, Chief Homicide Investigator Arkady Renko unravels\nthe mystery of a triple murder--involving three corpses buried in the snow\nwith their faces and fingers missing--complicated by the shadowy and\nuncooperative presence of the KGB, the FBI, and the NYPD and by his falling\nin love. Reprint. 15,000 first printing.\"\r\n2013,2067,15781725,Tara Conklin,The House Girl,https://images.gr-assets.com/books/1348172541l/15781725.jpg,3.75,41671,\"fiction, mystery\",The House GirlTara Conklin\r\n2014,2068,25346,Karen Hesse,Out of the Dust,https://images.gr-assets.com/books/1328867076l/25346.jpg,3.73,53706,\"poetry, fiction\",\"In a series of poems, fifteen-year-old Billie Jo relates the hardships of\nliving on her family's wheat farm in Oklahoma during the dust bowl years of\nthe Depression.\"\r\n2015,2069,23219,Meg Cabot,Queen of Babble,https://images.gr-assets.com/books/1371049249l/23219.jpg,3.71,54248,\"romance, fiction\",Queen of BabbleMeg Cabot\r\n2016,2070,13563669,Jeff Kinney,The Third Wheel,https://images.gr-assets.com/books/1366229038l/13563669.jpg,4.21,44607,\"fiction, comics\",The Third WheelJeff Kinney\r\n2017,2071,11925514,Elizabeth Wein,Code Name Verity,https://images.gr-assets.com/books/1388161911l/11925514.jpg,4.08,55139,\"fiction, history\",Code Name VerityElizabeth Wein\r\n2018,2072,270807,Ellen Hopkins,\" Burned (Burned, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388719598l/270807.jpg,4.24,48333,\"poetry, fiction\",\"Seventeen-year-old Pattyn, the eldest daughter in a large Mormon family, is\nsent to her aunt's Nevada ranch for the summer, where she temporarily\nescapes her alcoholic, abusive father and finds love and acceptance, only\nto lose everything when she returns home.\"\r\n2019,2073,43330,Sidney Sheldon,Master of the Game,https://images.gr-assets.com/books/1170095440l/43330.jpg,4.09,40111,\"fiction, thriller\",\"PREPARE TO BE DAZZLED BY THIS CLASSIC BESTSELLER FROM MASTER STORYTELLER\nSIDNEY SHELDON! WHO IS KATE BLACKWELL? She is the symbol of success, the\nbeautiful woman who parlayed her inheritance into an international\nconglomerate. Winner of a unique position among the wealthy and world-\nrenowned. And she's a survivor, indomitable as her father, the man who\nreturned from the edge of death to wrench a fortune in diamonds from the\nbleak South African earth. Now, celebrating her ninetieth birthday, Kate\nsurveys the family she has manipulated, dominated, and loved: the fair and\nthe grotesque, the mad and the mild, the good and the evil -- her winnings\nin life. Is she the...MASTER OF THE GAME?\"\r\n2020,2074,6539,Patricia Cornwell,The Body Farm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389834053l/6539.jpg,4.04,51115,\"mystery, crime\",\"Dr. Kay Scarpetta travels to North Carolina to investigate the murder of an\neleven-year-old girl, but the evidence does not add up, and she must\nconduct a gruesome experiment at a remote research facility to find the\nanswers. 500,000 first printing. $200,000 ad/promo.\"\r\n2021,2075,93722,Meg Cabot,The Boy Next Door (Boy #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470696l/93722.jpg,3.83,50953,\"romance, fiction\",The Boy Next Door (Boy #1)Meg Cabot\r\n2022,2076,19351,\"Anonymous, N.K. Sandars\",Shūtur eli sharrī,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388287904l/19351.jpg,3.63,44345,\"classics, poetry\",\"Enkidu is created by the gods to challenge the arrogant King Gilgamesh, but\ninstead of killing each other, the two become friends.JTravelling together\nto the Cedar Forest, they fight and slay the evil monster Humbaba.JBut when\nEnkidu is killed, his death haunts and breaks the mighty Gilgamesh, who\nresolves to find the secret of eternal life.\"\r\n2023,2077,1254951,Anna Godbersen,The Luxe,https://images.gr-assets.com/books/1323438343l/1254951.jpg,3.63,58717,\"romance, fiction\",The LuxeAnna Godbersen\r\n2024,2078,19330,Beatrix Potter,The Complete Tales of Beatrix Potter,https://images.gr-assets.com/books/1355114621l/19330.jpg,4.36,56807,\"classics, fiction\",\"This collection of all twenty-three of Potter's famous tales contains such\nfavorites as \"\"Squirrel Nutkin,\"\" \"\"Peter Rabbit,\"\" and \"\"Mrs. Tiggy-Winkle.\"\"\"\r\n2025,2079,11650,Philip Roth,American Pastoral,https://images.gr-assets.com/books/1203002984l/11650.jpg,3.91,38017,\"fiction, classics\",\"The rise and fall of the American Dream provide the backdrop for the story\nof Swede Levov, a prosperous New Jersey man and grandson of immigrants,\nwhose fanatical daughter bombs a post office in 1968. Reprint. 100,000\nfirst printing.\"\r\n2026,2080,24453082,Elizabeth Gilbert,Big Magic: Creative Living Beyond Fear,https://images.gr-assets.com/books/1451446242l/24453082.jpg,3.9,67046,\"nonfiction, art\",Big Magic: Creative Living Beyond FearElizabeth Gilbert\r\n2027,2081,19486421,Jim Butcher,Skin Game,https://images.gr-assets.com/books/1387236318l/19486421.jpg,4.55,41512,\"fantasy, fiction\",\"Chicago wizard Harry Dresden must help a hated enemy, Nicodemus Archleone,\nbreak into a high security vault to steal something belonging to the Lord\nof the Underworld.\"\r\n2028,2082,646462,Anonymous,القرآن‎‎ [al-Qurʾān],https://images.gr-assets.com/books/1275263838l/646462.jpg,4.34,31765,\"religion, classics\",القرآن‎‎ [al-Qurʾān]Anonymous\r\n2029,2083,476543,Gena Showalter,The Darkest Night,https://images.gr-assets.com/books/1322237965l/476543.jpg,4.09,63240,\"paranormal, romance\",The Darkest NightGena Showalter\r\n2030,2084,2845024,Neal Stephenson,Anathem,https://images.gr-assets.com/books/1488349209l/2845024.jpg,4.18,44848,\"fiction, fantasy\",\"For ten years Fraa Erasmas, a young avout, has lived in a cloistered\nsanctuary for mathematicians, scientists, and philosophers, protected from\nthe corrupting influences of the outside world. But before the week is out,\nboth the existence he abandoned and the one he embraced will stand poised\non the brink of cataclysmic change—and Erasmas will become a major player\nin a drama that will determine the future of his world, as he follows his\ndestiny to the most inhospitable corners of the planet . . . and beyond.\nAnathem is the latest miraculous invention by the New York Times\nbestselling author of Cryptonomicon and The Baroque Cycle—a work of\nastonishing scope, intelligence, and imagination.\"\r\n2031,2085,6433752,Barbara Kingsolver,The Lacuna,https://images.gr-assets.com/books/1480104396l/6433752.jpg,3.76,45671,\"fiction, history\",The LacunaBarbara Kingsolver\r\n2032,2086,34532,Terry Pratchett,Hogfather,https://images.gr-assets.com/books/1416342611l/34532.jpg,4.22,50364,\"fantasy, fiction\",HogfatherTerry Pratchett\r\n2033,2087,5190,Elizabeth Berg,Open House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206007l/5190.jpg,3.68,48639,\"fiction, contemporary\",\"Struggling to come to terms with her husband's abandonment, Samantha sets\nout to construct a new life for herself and her eleven-year-old son and to\nrediscover her own identity, which had been lost in her attempts to save\nher marriage.\"\r\n2034,2088,16130291,Jeannette Walls,The Silver Star,https://images.gr-assets.com/books/1379313690l/16130291.jpg,3.68,43487,\"fiction, contemporary\",\"Abandoned by their artist mother at the age of 12, Bean and her older\nsister, Liz, are sent to live in the decaying antebellum mansion of their\nwidowed uncle, where they learn the truth about their parents and take odd\njobs to earn extra money before an increasingly withdrawn Liz has a life-\nshattering experience. Reprint.\"\r\n2035,2089,11768,John Irving,The Hotel New Hampshire,https://images.gr-assets.com/books/1318013543l/11768.jpg,3.89,46220,\"fiction, contemporary\",\"\"\"The first of my father's illusions was that bears could survive the life\nlived by human beings, and the second was that human beings could survive a\nlife led in hotels.\"\" So says John Berry, son of a hapless dreamer, brother\nto a cadre of eccentric siblings, and chronicler of the lives lived, the\nloves experienced, the deaths met, and the myriad strange and wonderful\ntimes encountered by the family Berry. Hoteliers, pet-bear owners, friends\nof Freud (the animal trainer and vaudevillian, that is), and playthings of\nmad fate, they \"\"dream on\"\" in a funny, sad, outrageous, and moving novel by\nthe remarkable author of A Son of the Circus and A Prayer for Owen Meany.\n\"\"Like Garp, [THE HOTEL NEW HAMPSHIRE] is a startlingly original family saga\nthat combines macabre humor with Dickensian sentiment and outrage at\ncruelty, dogmatism and injustice.\"\" --Time \"\"Rejoice! John Irving has written\nanother book according to your world....You must read this book.\"\" --Los\nAngeles Times \"\"Spellbinding...Intensely human...A high-wire act of dazzling\nvirtuosity.\"\" --Cosmopolitan\"\r\n2036,2090,15309,Laurell K. Hamilton,The Laughing Corpse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183342l/15309.jpg,4.11,62189,\"fantasy, paranormal\",Gyser.\r\n2037,2091,762053,Nora Roberts,\"Key of Light (Key Trilogy, #1)\",https://images.gr-assets.com/books/1178133365l/762053.jpg,4.16,48805,\"romance, fantasy\",\"Key of Light (Key Trilogy, #1)Nora Roberts\"\r\n2038,2092,2241059,Ellen Hopkins,Identical,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180728l/2241059.jpg,4.34,47804,\"poetry, fiction\",\"\"\"Perfect on the outside, but behind the Normal Rockwell facades, each holds\nits secrets. Dark, untellable. Practically unbelievable.\"\" -- IDENTICAL\nKaeleigh and Raeanne are 16-year-old identical twins, the daughters of a\ndistrict court judge father and politician mother running for US Congress.\nEverything on the surface seems fine, but underneath run very deep and\ndamaging secrets. What really happened when the girls were 7 years old in\nthat car accident that Daddy caused? And why is Mom never home, always\nrunning far away to pursue some new dream? Raeanne goes after painkillers,\ndrugs, alcohol, and sex to dull her pain and anger. Kaeleigh always tries\nso hard to be the good girl -- her father's perfect little flower. But when\nthe girls were 9, Daddy started to turn to his beloved Kaeleigh in ways a\nfather never should and has been sexually abusing her for years. For\nRaeanne, she needs to numb the pain of not being Daddy's favorite; for\nKaeleigh, she wants to do everything she can to feel something normal, even\nif it means cutting herself and vomiting after every binge. How Kaeleigh\nand Raeanne figure out just what it means to be whole again when their\nentire world has been torn to shreads is the guts and heart of this\npowerful, disturbing, and utterly remarkable book.\"\r\n2039,2094,9583508,\"Janet Evanovich, Lorelei King\",Smokin' Seventeen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285695l/9583508.jpg,3.94,41932,\"mystery, fiction\",\"When dead bodies start showing up in shallow graves near Vincent Plum Bail\nBonds, bounty hunter Stephanie Plum tries to find the killer before she is\nthe next target, while working to choose between the two men in her life.\"\r\n2040,2095,105549,Dr. Seuss,The Sneetches and Other Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389388191l/105549.jpg,4.31,52954,\"fiction, classics\",\"Includes four humorous verse fantasies: The Sneetches, The Zax, The Many\nDaves, and What was I Scared of?\"\r\n2041,2096,598160,\"Bill Martin Jr., Eric Carle\",\"Polar Bear, Polar Bear, What Do You Hear?\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185177l/598160.jpg,4.16,44414,\"fiction, science\",\"Zoo animals from polar bear to walrus make their distinctive sounds for\neach other, while children imitate the sounds for the zookeeper. On board\npages.\"\r\n2042,2097,24861,Hermann Hesse,Demian: Die Geschichte einer Jugend,https://images.gr-assets.com/books/1421510580l/24861.jpg,4.1,37459,\"fiction, classics\",Demian: Die Geschichte einer JugendHermann Hesse\r\n2043,2098,9590,Kurt Vonnegut Jr.,\"God Bless You, Mr Rosewater or Pearls before Swine\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200987l/9590.jpg,3.94,40353,\"fiction, classics\",\"A lawyer schemes to gain control of a large fortune by having the present\nclaimant declared insane.\"\r\n2044,2099,282282,\"Yoshiki Nakamura, Tomo Kimura\",スキップ・ビート! 1 ,https://images.gr-assets.com/books/1173395297l/282282.jpg,4.26,46708,\"manga, romance\",\"When Kyoko’s heart is broken, she decides that revenge is a dish best\nserved in the spotlight! Kyoko Mogami followed her true love Sho to Tokyo\nto support him while he made it big as an idol. But he’s casting her out\nnow that he’s famous enough! Kyoko won’t suffer in silence—she’s going to\nget her sweet revenge by beating Sho in show biz! Kyoko’s recent efforts to\nimprove her craft have really paid off! She’s brought new life to her new\nbully role and really impressed the director and crew. But Kyoko’s success\nsends her costar Chiori over the edge! Can Kyoko use her understanding of\nthe dark side to help her fellow actress work past her personal demons, or\nwill the clash of their personalities destroy the set?!\"\r\n2045,2100,19030845,Frank Miller,The Dark Knight Returns,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385673312l/19030845.jpg,4.21,32228,\"comics, fiction\",\"Together with inker Klaus Janson and colorist Lynn Varley, writer/artist\nFrank Miller completely reinvents the legend of Batman in his saga of a\nnear-future Gotham City gone to rot, ten years after the Dark Knight's\nretirement. This masterpiece of modern comics storytelling, BATMAN: THE\nDARK KNIGHT RETURNS, brings to vivid life a dark world and an even darker\nman. The Dark Knight returns in a blaze of fury, taking on a whole new\ngeneration of criminals and matching their level of violence. He is soon\njoined by a new Robin--a girl named Carrie Kelley, who proves to be just as\ninvaluable as her predecessors. But can Batman and Robin deal with the\nthreat posed by their deadliest enemies, after years of incarceration have\nmade them into perfect psychopaths? And more important, can anyone survive\nthe coming fallout from an undeclared war between the superpowers -- or the\nclash of what were once the world's greatest heroes? Celebrate thirty years\nof one of the most influential stories ever told in the comics medium with\nthe undisputed classic BATMAN: THE DARK KNIGHT RETURNS, now with a new\ncover and introduction.\"\r\n2046,2101,99298,\"J.K. Rowling, Mary GrandPré\",Harry Potter Boxed Set Books 1-4,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266471831l/99298.jpg,4.66,43929,\"fantasy, fiction\",\"The first four exciting Harry Potter novels are featured in this custom\nboxed set of hardcover editions. Contains Harry Potter and the Sorcerer's\nStone, Harry Potter and the Chamber of Secrets, Harry Potter and the\nPrisoner of Azkaban, and Harry Potter and the Goblet of Fire.\"\r\n2047,2102,6597651,Paolo Bacigalupi,The Windup Girl,https://images.gr-assets.com/books/1278940608l/6597651.jpg,3.74,41728,\"fiction, fantasy\",\"What happens when bio-terrorism becomes a tool for corporate profits? And\nwhat happens when this forces humanity to the cusp of post-human evolution?\nThis is a tale of Bangkok struggling for survival in a post-oil era of\nrising sea levels and out-of-control mutation.\"\r\n2048,2104,9627755,Stephanie Perkins,Isla and the Happily Ever After,https://images.gr-assets.com/books/1362064564l/9627755.jpg,4.1,70995,\"contemporary, romance\",\"Isla's had a crush on classmate Josh since their freshman year at the\nSchool of America in Paris, but after a chance encounter over the summer in\nManhattan they return to France for their senior year where they're forced\nto confront challenges every young couple in love must face.\"\r\n2049,2105,38619,Ilona Andrews,Magic Bites,https://images.gr-assets.com/books/1331612872l/38619.jpg,4.07,69410,\"fantasy, paranormal\",\"Earning a living cleaning up magical messes, mercenary Kate Daniels is\ndrawn into a power struggle between two factions--necromancers and\nshapeshifters--within Atlanta's magic circles when her guardian is\nmurdered. Original.\"\r\n2050,2106,17255265,Jodi Ellen Malpas,This Man Confessed,https://images.gr-assets.com/books/1368274129l/17255265.jpg,4.43,62297,\"romance, contemporary\",This Man ConfessedJodi Ellen Malpas\r\n2051,2107,43944,\"Irène Némirovsky, Sandra Smith\",Suite française ,https://images.gr-assets.com/books/1320445773l/43944.jpg,3.82,40259,\"history, classics\",\"Read the lost masterpiece behind the major new film starring Kristin Scott\nThomas and Michelle Williams In 1941, Irène Némirovsky sat down to write a\nbook that would convey the magnitude of what she was living through by\nevoking the domestic lives and personal trials of the ordinary citizens of\nFrance. Némirovsky's death in Auschwitz in 1942 prevented her from seeing\nthe day, sixty-five years later, that the existing two sections of her\nplanned novel sequence, Suite Française, would be rediscovered and hailed\nas a masterpiece. Set during the year that France fell to the Nazis, Suite\nFrançaise falls into two parts. The first is a brilliant depiction of a\ngroup of Parisians as they flee the Nazi invasion; the second follows the\ninhabitants of a small rural community under occupation. Suite Française is\na novel that teems with wonderful characters struggling with the new\nregime. However, amidst the mess of defeat, and all the hypocrisy and\ncompromise, there is hope. True nobility and love exist, but often in\nsurprising places.\"\r\n2052,2108,395233,\"Vincent van Gogh, Ronald de Leeuw, Mark Roskill, Arnold J. Pomerans\",The Letters of Vincent van Gogh,https://images.gr-assets.com/books/1328110665l/395233.jpg,3.99,48040,\"biography, art\",\"A new selection of Vincent Van Gough's letters, based on an entirely new\ntranslation, revealing his religious struggles, his fascination with the\nFrench Revolution, his search for love and his involvement in humanitarian\ncauses.\"\r\n2053,2109,34499,Terry Pratchett,Sourcery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439607843l/34499._SY475_.jpg,3.87,50746,\"fantasy, fiction\",SourceryTerry Pratchett\r\n2054,2110,29801,Bryan Lee O'Malley,\"Scott Pilgrim, Volume 2: Scott Pilgrim vs. The World\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348115004l/29801.jpg,4.24,47154,\"comics, fiction\",\"Scott Pilgrim, Volume 2: Scott Pilgrim vs. The WorldBryan Lee O'Malley\"\r\n2055,2111,22374,\"Grant Morrison, Dave McKean\",Batman: Arkham Asylum - A Serious House on Serious Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388209338l/22374.jpg,4.09,45345,\"fiction, crime\",\"Batman: Arkham Asylum - A Serious House on Serious EarthGrant Morrison, Dave McKean\"\r\n2056,2112,20698530,Jenny Han,P.S. I Still Love You,https://images.gr-assets.com/books/1422881430l/20698530.jpg,4.17,62907,\"contemporary, romance\",Sequel to: To all the boys I've loved before.\r\n2057,2113,23153154,David Baldacci,Memory Man,https://images.gr-assets.com/books/1421788503l/23153154.jpg,4.05,36871,\"mystery, thriller\",\"With over 110 million copies of his novels in print, David Baldacci is one\nof the most widely read storytellers in the world. Now he introduces a\nstartling, original new character: a man with perfect memory who must solve\nhis own family's murder. MEMORY MAN Amos Decker's life changed forever--\ntwice. The first time was on the gridiron. A big, towering athlete, he was\nthe only person from his hometown of Burlington ever to go pro. But his\ncareer ended before it had a chance to begin. On his very first play, a\nviolent helmet-to-helmet collision knocked him off the field for good, and\nleft him with an improbable side effect--he can never forget anything. The\nsecond time was at home nearly two decades later. Now a police detective,\nDecker returned from a stakeout one evening and entered a nightmare--his\nwife, young daughter, and brother-in-law had been murdered. His family\ndestroyed, their killer's identity as mysterious as the motive behind the\ncrime, and unable to forget a single detail from that horrible night,\nDecker finds his world collapsing around him. He leaves the police force,\nloses his home, and winds up on the street, taking piecemeal jobs as a\nprivate investigator when he can. But over a year later, a man turns\nhimself in to the police and confesses to the murders. At the same time a\nhorrific event nearly brings Burlington to its knees, and Decker is called\nback in to help with this investigation. Decker also seizes his chance to\nlearn what really happened to his family that night. To uncover the\nstunning truth, he must use his remarkable gifts and confront the burdens\nthat go along with them. He must endure the memories he would much rather\nforget. And he may have to make the ultimate sacrifice. MEMORY MAN will\nstay with you long after the turn of the final page.\"\r\n2058,2114,2138727,Hillary Jordan,Mudbound,https://images.gr-assets.com/books/1296591096l/2138727.jpg,3.99,43455,\"fiction, ebooks\",\"The International Bestseller Now a major motion picture from Netflix,\ndirected by Dee Rees, nominated in four categories for the Academy Awards.\nIn Jordan's prize-winning debut, prejudice takes many forms, both subtle\nand brutal. It is 1946, and city-bred Laura McAllan is trying to raise her\nchildren on her husband's Mississippi Delta farm—a place she finds foreign\nand frightening. In the midst of the family's struggles, two young men\nreturn from the war to work the land. Jamie McAllan, Laura's brother-in-\nlaw, is everything her husband is not—charming, handsome, and haunted by\nhis memories of combat. Ronsel Jackson, eldest son of the black\nsharecroppers who live on the McAllan farm, has come home with the shine of\na war hero. But no matter his bravery in defense of his country, he is\nstill considered less than a man in the Jim Crow South. It is the unlikely\nfriendship of these brothers-in-arms that drives this powerful novel to its\ninexorable conclusion. The men and women of each family relate their\nversions of events and we are drawn into their lives as they become players\nin a tragedy on the grandest scale. As Barbara Kingsolver says of Hillary\nJordan, \"\"Her characters walked straight out of 1940s Mississippi and into\nthe part of my brain where sympathy and anger and love reside, leaving my\nheart racing. They are with me still.\"\"\"\r\n2059,2115,55403,Mark Bowden,Black Hawk Down,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553055240l/55403._SY475_.jpg,4.28,40442,\"history, nonfiction\",Black Hawk DownMark Bowden\r\n2060,2116,22055262,\"V.E. Schwab, Victoria Schwab\",A Darker Shade of Magic,https://images.gr-assets.com/books/1400322851l/22055262.jpg,4.07,61419,\"fantasy, fiction\",\"Serving as an ambassador of his own world while carrying messages to\nparallel-universe Londons with respective magical abilities and conflicts,\nKell hides his secret smuggling activities only to be set up with a\nforbidden object from a dark dimension. By the author of The Near Witch.\"\r\n2061,2117,3398625,David Grann,The Lost City of Z: A Tale of Deadly Obsession in the Amazon,https://images.gr-assets.com/books/1320487318l/3398625.jpg,3.86,45937,\"history, nonfiction\",\"Interweaves the story of British explorer Percy Fawcett, who vanished\nduring a 1925 expedition into the Amazon, with the author's own quest to\nuncover the mysteries surrounding Fawcett's final journey and the secrets\nof what lies deep in the Amazon jungle.\"\r\n2062,2118,15704459,Brandon Sanderson,Firefight,https://images.gr-assets.com/books/1413220816l/15704459.jpg,4.29,41924,\"fantasy, fiction\",FirefightBrandon Sanderson\r\n2063,2119,28249,Trudi Canavan,The Magicians' Guild,https://images.gr-assets.com/books/1327356788l/28249.jpg,3.96,48537,\"fiction, fantasy\",\"\"\"We should expect this young woman to be more powerful than our average\nnovice, possibly even more powerful than the average magician.\"\" This year,\nlike every other, the magicians of Imardin gather to purge the city of\nundesirables. Cloaked in the protection of their sorcery, they move with no\nfear of the vagrants and miscreants who despise them and their work—until\none enraged girl, barely more than a child, hurls a stone at the hated\ninvaders . . . and effortlessly penetrates their magical shield. What the\nMagicians' Guild has long dreaded has finally come to pass. There is\nsomeone outside their ranks who possesses a raw power beyond imagining, an\nuntrained mage who must be found and schooled before she destroys herself\nand her city with a force she cannot yet control.\"\r\n2064,2120,6693332,Michael Scott,The Necromancer: The Secrets of The Immortal Nicholas Flamel,https://images.gr-assets.com/books/1320460606l/6693332.jpg,4.12,46878,\"fantasy, fiction\",\"While Josh and Sophie consider placing their futures in the hands of the\nmysterious Nicholas Flamel, Machiavelli unleashes murderous monsters with\nthe power of killing both the alchemist and Perenelle. Reprint.\"\r\n2065,2121,6977769,Lee Child,61 Hours,https://images.gr-assets.com/books/1320512665l/6977769.jpg,4.08,43605,\"thriller, fiction\",\"Reacher arrives accidentally in a small South Dakota town, where during a\ndangerous winter storm he is enlisted to protect a lone witness who local\npolice hope can help convict a brutal crime ring.\"\r\n2066,2122,662597,Patricia McCormick,Cut,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348218940l/662597.jpg,3.76,48239,\"fiction, contemporary\",\"While confined to a mental hospital, thirteen-year-old Callie slowly comes\nto understand some of the reasons behind her self-mutilation, and gradually\nstarts to get better.\"\r\n2067,2123,74532,\"Roald Dahl, Quentin Blake\",George's Marvellous Medicine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348265460l/74532.jpg,4.02,49863,\"fiction, fantasy\",\"George decides that his grumpy, selfish old grandmother must be a witch and\nconcocts some marvelous medicine to take care of her.\"\r\n2068,2124,41193,Jane Smiley,A Thousand Acres,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197504l/41193.jpg,3.79,47389,\"fiction, contemporary\",\"On a prosperous Iowa farm in the 1970s, wealthy farmer Lawrence Cook\nannounces his intentions to divide the farm among his daughters, setting\noff a family crisis reminiscent of Shakespeare's \"\"King Lear.\"\" Reader's\nGuide available. Reprint. 12,500 first printing.\"\r\n2069,2125,24780,Lloyd Alexander,The Book of Three,https://images.gr-assets.com/books/1405184012l/24780.jpg,4,56593,\"fantasy, fiction\",\"Taran, Assistant Pig-Keeper to a famous oracular sow, sets out on a\nhazardous mission to save Prydain from the forces of evil.\"\r\n2070,2126,2355575,Patricia Briggs,Cry Wolf,https://images.gr-assets.com/books/1310494063l/2355575.jpg,4.11,66901,\"fantasy, paranormal\",\"Anna, after three years at the bottom of the pack, has learned never to\ntrust dominant males, until Charles Cornick, the enforcer and leader of the\nNorth American werewolves, declares her as his mate, revealing her true\ndestiny as a rare and valued Omega wolf. Original.\"\r\n2071,2127,770051,Ian Falconer,Olivia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349034348l/770051.jpg,4.13,51185,\"fiction, fantasy\",OliviaIan Falconer\r\n2072,2128,77156,Kent Haruf,Plainsong,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200586l/77156.jpg,4,45331,\"fiction, contemporary\",\"From the unsettled lives of a small-town teacher struggling to raise two\nboys alone in the face of their mother's retreat from life, a pregnant\nteenage girl with nowhere to go, and two elderly bachelor farmers emerges a\nnew vision of life and family as their diverse destinies intertwine.\n200,000 first printing.\"\r\n2073,2129,62953,Daniel Clowes,Ghost World,https://images.gr-assets.com/books/1327894702l/62953.jpg,3.87,49105,\"comics, fiction\",\"A collection of eight interconnected stories follows the friendship between\ntwo teenage girls, Enid and Rebecca.\"\r\n2074,2130,11966216,Amanda Hocking,Torn,https://images.gr-assets.com/books/1397954544l/11966216.jpg,4.04,29554,\"fantasy, paranormal\",\"Wendy, a changeling troll princess, returns to her rightful home, a\nfrightening, beautiful world where she discovers her new powers, fights\nenemies who want to use her abilities for evil, and struggles with romantic\ndecisions.\"\r\n2075,2131,19117,\"Ivan Turgenev, George Reavy, Jane Costlow\",Отцы и дѣти,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390793535l/19117.jpg,3.94,41870,\"classics, fiction\",\"Отцы и дѣтиIvan Turgenev, George Reavy, Jane Costlow\"\r\n2076,2132,113934,\"Eliyahu M. Goldratt, Jeff Cox\",The Goal,https://images.gr-assets.com/books/1475538019l/113934.jpg,4,34837,\"nonfiction, fiction\",\"The GoalEliyahu M. Goldratt, Jeff Cox\"\r\n2077,2133,9684523,Geraldine Brooks,Caleb's Crossing,https://images.gr-assets.com/books/1303284000l/9684523.jpg,3.81,47525,\"fiction, history\",\"Forging a deep friendship with a Wampanoag chieftain's son on the Great\nHarbor settlement where her minister father is working to convert the\ntribe, Bethia follows his subsequent ivy league education and efforts to\nbridge cultures among the colonial elite. By the Pulitzer Prize-winning\nauthor of March. Reprint.\"\r\n2078,2134,2722413,Claudia Gray,Evernight,https://images.gr-assets.com/books/1306376600l/2722413.jpg,3.64,63486,\"paranormal, fantasy\",\"Bianca wants to escape. She's been uprooted from her small hometown and\nenrolled at Evernight Academy, an eerie Gothic boarding school where the\nstudents are somehow too perfect: smart, sleek, and almost predatory.\nBianca knows she doesn't fit in. Then she meets Lucas. He's not the\n\"\"Evernight type\"\" either, and he likes it that way. Lucas ignores the rules,\nstands up to the snobs, and warns Bianca to be careful—even when it comes\nto caring about him. \"\"I couldn't stand it if they took it out on you,\"\" he\ntells Bianca, \"\"and eventually they would.\"\" But the connection between\nBianca and Lucas can't be denied. Bianca will risk anything to be with\nLucas, but dark secrets are fated to tear them apart . . . and to make\nBianca question everything she's ever believed.\"\r\n2079,2135,108942,Lee Child,Bad Luck and Trouble,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441133915l/108942._SY475_.jpg,4.17,42539,\"thriller, fiction\",\"When a man is killed by being thrown from a helicopter high over the\nCalifornia desert, Jack Reacher discovers that someone is targeting his old\nfriends and teammates and he launches a personal campaign to end the\nconspiracy.\"\r\n2080,2136,2152,Karen Joy Fowler,The Jane Austen Book Club,https://images.gr-assets.com/books/1309282966l/2152.jpg,3.07,53128,\"fiction, romance\",\"As six Californians get together to form a book club to discuss the novels\nof Jane Austen, their lives are turned upside down by troubled marriages,\nillicit affairs, changing relationships, and love, in a comedy of\ncontemporary manners. By the author of Sarah Canary. Reprint.\"\r\n2081,2137,21965107,Ian McEwan,The Children Act,https://images.gr-assets.com/books/1405290619l/21965107.jpg,3.68,33100,\"fiction, contemporary\",\"A highly respected London judge hides behind her professional\naccomplishments her decision to separate from a husband who wants an open\nmarriage, a loss that challenges her beliefs throughout a case involving\nparents whose faith forbids a life-saving transfusion for their son.\n150,000 first printing.\"\r\n2082,2138,7023554,Janet Evanovich,Sizzling Sixteen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389583636l/7023554.jpg,3.93,55685,\"mystery, fiction\",\"Intrepid sleuth Stephanie Plum, her grandmother, and her other companions\nstruggle to outmaneuver a killer who is targeting Vinnie, a case that is\nfurther complicated by Lula's involvement in a fraudulent investment\nscheme.\"\r\n2083,2139,22543496,Ashlee Vance,\"Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future\",https://images.gr-assets.com/books/1404411386l/22543496.jpg,4.25,55606,\"biography, business\",\"Elon Musk is the most daring entrepreneur of our time There are few\nindustrialists in history who could match Elon Musk's relentless drive and\ningenious vision. A modern alloy of Thomas Edison, Henry Ford, Howard\nHughes, and Steve Jobs, Musk is the man behind PayPal, Tesla Motors,\nSpaceX, and SolarCity, each of which has sent shock waves throughout\nAmerican business and industry. More than any other executive today, Musk\nhas dedicated his energies and his own vast fortune to inventing a future\nthat is as rich and far-reaching as a science fiction fantasy. In this\nlively, investigative account, veteran technology journalist Ashlee Vance\noffers an unprecedented look into the remarkable life and times of Silicon\nValley's most audacious businessman. Written with exclusive access to Musk,\nhis family, and his friends, the book traces his journey from his difficult\nupbringing in South Africa to his ascent to the pinnacle of the global\nbusiness world. Vance spent more than fifty hours in conversation with Musk\nand interviewed close to three hundred people to tell the tumultuous\nstories of Musk's world-changing companies and to paint a portrait of a\ncomplex man who has renewed American industry and sparked new levels of\ninnovation—all while making plenty of enemies along the way. In 1992, Elon\nMusk arrived in the United States as a ferociously driven immigrant bent on\nrealizing his wildest dreams. Since then, Musk's roller-coaster life has\nbrought him grave disappointments alongside massive successes. After being\nforced out of PayPal, fending off a life-threatening case of malaria, and\ndealing with the death of his infant son, Musk abandoned Silicon Valley for\nLos Angeles. He spent the next few years baffling his friends by blowing\nhis entire fortune on rocket ships and electric cars. Cut to 2012, however,\nand Musk had mounted one of the greatest resurrections in business history:\nTesla, SpaceX, and SolarCity had enjoyed unparalleled success, and Musk's\nnet worth soared to more than $5 billion. At a time when many American\ncompanies are more interested in chasing easy money than in taking bold\nrisks on radical new technology, Musk stands out as the only businessman\nwith enough dynamism and vision to tackle—and even revolutionize—three\nindustries at once. Vance makes the case that Musk's success heralds a\nreturn to the original ambition and invention that made America an economic\nand intellectual powerhouse. Elon Musk is a brilliant, penetrating\nexamination of what Musk's career means for a technology industry\nundergoing dramatic change and offers a taste of what could be an\nincredible century ahead.\"\r\n2084,2140,12591698,James S.A. Corey,Caliban's War,https://images.gr-assets.com/books/1407572377l/12591698.jpg,4.28,39138,\"fiction, fantasy\",\"The second book in the NYT bestselling Expanse series, Caliban's War shows\na solar system on the brink of war, and the only hope of peace rests on\nJames Holden and the crew of the Rocinante's shoulders. Now a Prime\nOriginal series. We are not alone. On Ganymede, breadbasket of the outer\nplanets, a Martian marine watches as her platoon is slaughtered by a\nmonstrous supersoldier. On Earth, a high-level politician struggles to\nprevent interplanetary war from reigniting. And on Venus, an alien\nprotomolecule has overrun the planet, wreaking massive, mysterious changes\nand threatening to spread out into the solar system. In the vast wilderness\nof space, James Holden and the crew of the Rocinante have been keeping the\npeace for the Outer Planets Alliance. When they agree to help a scientist\nsearch war-torn Ganymede for a missing child, the future of humanity rests\non whether a single ship can prevent an alien invasion that may have\nalready begun . . . Caliban's War is a breakneck science fiction adventure\nfollowing the critically acclaimed Leviathan Wakes. The Expanse Leviathan\nWakesCaliban's WarAbaddon's GateCibola BurnNemesis GamesBabylon's\nAshesPersepolis Rising The Expanse Short Fiction The Butcher of Anderson\nStationGods of RiskThe ChurnThe Vital AbyssStrange Dogs\"\r\n2085,2141,13454149,Rebecca Donovan,Barely Breathing,https://images.gr-assets.com/books/1347885288l/13454149.jpg,4.33,53483,\"romance, contemporary\",\"Although Emma Thomas's secret abusive home life has been exposed and her\ntormentor eliminated, she is still haunted by her experience, and must\nlearn to reclaim her life.\"\r\n2086,2142,1375,\"Homer, Robert Fagles, Bernard Knox\",Ἰλιάς ; Ὀδύσσεια,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181863l/1375.jpg,4.03,47825,\"classics, fiction\",\"A new translation of the epic poem retells the story of Odysseus's ten-year\nvoyage home to Ithaca after the Trojan War\"\r\n2087,2143,16992,\"Mark Waid, Alex Ross, Elliot S. Maggin\",Kingdom Come,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385175050l/16992.jpg,4.24,43036,\"comics, fiction\",\"Batman, Superman, and Wonder Woman confront a new generation of villains\nand a world spinning out of control as the planet hurtles toward the final\napocalypse at the turn of the twenty-first century\"\r\n2088,2144,6882,Henri Charrière,Papillon ,https://images.gr-assets.com/books/1327865561l/6882.jpg,4.23,39073,\"fiction, biography\",\"Originally published: New York: W. Morrow, 1970.\"\r\n2089,2145,56373,Sarah Waters,Tipping the Velvet,https://images.gr-assets.com/books/1388633460l/56373.jpg,4,36560,\"fiction, romance\",\"Chronicles the picturesque adventures and romantic misadventures of Nan\nKing, a onetime oyster girl from a provincial seaside town who follows a\nlocal music hall star to the gay and lesbian world of late Victorian\nLondon. Reprint.\"\r\n2090,2146,11607446,\"Chris Colfer, Brandon Dorman\",\"The Wishing Spell (The Land of Stories, #1)\",https://images.gr-assets.com/books/1326920505l/11607446.jpg,4.21,51752,\"fantasy, fiction\",\"Alex and Conner Bailey's world is about to change, in this fast-paced\nadventure that uniquely combines our modern day world with the enchanting\nrealm of classic fairy tales. The Land of Stories tells the tale of twins\nAlex and Conner. Through the mysterious powers of a cherished book of\nstories, they leave their world behind and find themselves in a foreign\nland full of wonder and magic where they come face-to-face with the fairy\ntale characters they grew up reading about. But after a series of\nencounters with witches, wolves, goblins, and trolls alike, getting back\nhome is going to be harder than they thought.\"\r\n2091,2147,2586771,David Ebershoff,The 19th Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255632165l/2586771.jpg,3.63,44921,\"history, fiction\",\"The history of polygamy in the Mormon Church intertwines the story of Ann\nEliza Young, the nineteenth wife of Brigham Young, and a modern mystery in\nwhich a polygamous man has been found murdered and one of his wives is\naccused of the crime.\"\r\n2092,2148,44184,Walter Dean Myers,Monster,https://images.gr-assets.com/books/1404962824l/44184.jpg,3.7,47533,\"fiction, crime\",\"FADE IN: INTERIOR: Early morning in CELL BLOCK D, MANHATTAN DETENTION\nCENTER. Steve (Voice-Over) Sometimes I feel like I have walked into the\nmiddle of a movie. Maybe I can make my own movie. The film will be the\nstory of my life. No, not my life, but of this experience. I'll call it\nwhat the lady prosecutor called me ... Monster.\"\r\n2093,2150,132336,Patricia Cornwell,Body of Evidence ,https://images.gr-assets.com/books/1341835877l/132336.jpg,4,50113,\"mystery, crime\",Body of Evidence Patricia Cornwell\r\n2094,2151,16148398,\"Brian K. Vaughan, Fiona Staples\",Saga #1,https://images.gr-assets.com/books/1358637990l/16148398.jpg,4.15,38729,\"comics, fantasy\",\"Saga #1Brian K. Vaughan, Fiona Staples\"\r\n2095,2152,1651302,Sara Shepard,Perfect,https://images.gr-assets.com/books/1363681820l/1651302.jpg,4.02,50922,\"mystery, contemporary\",\"#1 New York Times bestselling series The third book in the #1 New York\nTimes bestselling series that inspired the hit ABC Family TV show Pretty\nLittle Liars. In Rosewood, Pennsylvania, four perfect-looking girls aren’t\nnearly as perfect as they seem. Aria can't resist her forbidden ex. Hanna\nis on the verge of losing her BFF. Emily is freaking out over a simple\nkiss. And Spencer can’t keep her hands off anything that belongs to her\nsister. Although they try to keep their scandalous secrets hidden, someone\nnamed “A” has the dirt to bury them all alive…and it may be too late to\noutrun the truth. Full of unexpected twists and shocking revelations,\nPerfect is the third book in New York Times bestselling author Sara\nShepard’s compelling Pretty Little Liars series.\"\r\n2096,2153,15717876,Jessica Sorensen,The Secret of Ella and Micha,https://images.gr-assets.com/books/1365638597l/15717876.jpg,4.01,59890,\"romance, contemporary\",Publisher information from iPage.IngramContent.com.\r\n2097,2154,9533378,Kevin Hearne,Hounded,https://images.gr-assets.com/books/1327883998l/9533378.jpg,4.12,51086,\"fantasy, paranormal\",\"Atticus O'Sullivan, the last of the Druids, finds his peaceful life in\nArizona shattered by the arrival of an angry Celtic god who wants Atticus's\nmagical sword, forcing Atticus to call upon some unlikely allies for help.\"\r\n2098,2155,22076,Stephen King,From a Buick 8,https://images.gr-assets.com/books/1304686732l/22076.jpg,3.42,47320,\"thriller, horror\",\"WANT TO GO FOR A RIDE...? In a secret shed behind the barracks of the\nPennsylvania State Police, Troop D, there's a cherry Buick Roadmaster no\none has touched in years -- because there's more power under the hood than\nanyone can handle....\"\r\n2099,2156,77507,Kim Stanley Robinson,Red Mars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440699787l/77507._SY475_.jpg,3.84,46121,\"fiction, science\",\"John Boone, Maya Toitovna, Frank Chalmers, and Arkady Bogdanov lead a\nmission whose ultimate goal is the terraforming of Mars in order to release\nmoisture onto their desolate landscape\"\r\n2100,2157,286957,\"Charlotte Perkins Gilman, Elaine Hedges\",The Yellow Wall-paper. A story,https://images.gr-assets.com/books/1351778524l/286957.jpg,4.11,44677,\"classics, horror\",\"The Yellow Wall-paper. A storyCharlotte Perkins Gilman, Elaine Hedges\"\r\n2101,2158,17136,\"H.G. Wells, Alfred MacAdam\",The Time Machine and The Invisible Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347929785l/17136.jpg,4.08,47600,\"classics, fantasy\",\"\"\"His goggling spectacles and ghastly bandaged face under the penthouse of\nhis hat came with a disagreeable suddenness out of the darkness,\"\" Wells\nwrote in The Invisible Man. H. G. Wells described wonders of science and\nimagined possible futures, meanwhile critiquing his own society and\ncontributing more to the science fiction genre than almost any other\nwriter. This collection brings two of Well's most beloved classics together\nin one volume. It also includes a discussion of the films inspired by the\nnovels, reviews of Wells's works, and discussion questions.\"\r\n2102,2159,628139,Nora Roberts,Sea Swept,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423013952l/628139.jpg,4.24,48078,\"romance, contemporary\",Sea SweptNora Roberts\r\n2103,2160,12499290,Brent Weeks,The Blinding Knife,https://images.gr-assets.com/books/1338432693l/12499290.jpg,4.45,42445,\"fantasy, fiction\",\"From the New York Times bestselling author of The Black Prism... Gavin\nGuile is dying. He'd thought he had five years left--now he has less than\none. With fifty thousand refugees, a bastard son, and an ex-fiancée who may\nhave learned his darkest secret, Gavin has problems on every side. All\nmagic in the world is running wild and threatens to destroy the Seven\nSatrapies. Worst of all, the old gods are being reborn, and their army of\ncolor wights is unstoppable. The only salvation may be the brother whose\nfreedom and life Gavin stole sixteen years ago. Lightbringer The Black\nPrism The Blinding Knife The Broken Eye The Blood Mirror For more from\nBrent Weeks, check out: Night Angel The Way of Shadows Shadow's Edge Beyond\nthe Shadows Night Angel: The Complete Trilogy (omnibus) Perfect Shadow: A\nNight Angel Novella (e-only) The Way of Shadows: The Graphic Novel\"\r\n2104,2161,18189606,Morgan Matson,Since You've Been Gone,https://images.gr-assets.com/books/1377702326l/18189606.jpg,4.19,59705,\"contemporary, romance\",Since You've Been GoneMorgan Matson\r\n2105,2163,174703,\"Heidi Murkoff, Arlene Eisenberg, Sandee Hathaway\",What to Expect When You're Expecting,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298458822l/174703.jpg,3.75,34120,\"nonfiction, classics\",\"Cuts through the confusion surrounding pregnancy and birth by debunking\ndozens of myths that mislead parents, offering explanations of medical\nterms, and covering a variety of issues including prenatal care, birth\ndefects, and amniocentesis.\"\r\n2106,2164,127823,John Flanagan,The Icebound Land,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441400105l/127823._SY475_.jpg,4.22,48446,\"fantasy, fiction\",FLANAGAN/ICEBOUND LAND BOOK 3\r\n2107,2165,165030,Marian Keyes,Anybody Out There?,https://images.gr-assets.com/books/1358594290l/165030.jpg,3.91,45243,\"fiction, romance\",\"Bestselling author Marian Keyes has delighted readers with the lives,\nloves, and foibles of the irrepressible Walsh sisters and their eccentric\nmammy. In this Life in the Big Apple is perfect for Anna. She has the best\njob in the world, a lovely apartment, and great friends. Then one morning,\nshe wakes up in her mammy's house in Dublin with stitches in her face, a\ndislocated knee, hands smashed up, and no memory at all of what happened.\nAs soon as she's able, Anna's flying back to Manhattan, mystified but\ndetermined to find out how her life turned upside down. As her past slowly\nbegins coming back to her, she sets out on an outrageous quest—involving\nlilies, psychics, mediums, and anyone who can point her in the right\ndirection. Marrying life's darker bits with wild humor and tender wit,\nAnybody Out There? is a strange and wonderfully charming look at love here\nand ever after.\"\r\n2108,2166,18050143,\"Peter Thiel, Blake  Masters\",\"Zero to One: Notes on Start Ups, or How to Build the Future\",https://images.gr-assets.com/books/1414347376l/18050143.jpg,4.17,47807,\"business, nonfiction\",\"The billionaire Silicon Valley entrepreneur behind such companies as PayPal\nand Facebook outlines an innovative theory and formula for building the\ncompanies of the future by creating and monopolizing new markets instead of\ncompeting in old ones. 200,000 first printing.\"\r\n2109,2167,28260587,Sarah J. Maas,Empire of Storms,https://images.gr-assets.com/books/1463107108l/28260587.jpg,4.58,63322,\"fantasy, romance\",\"Kingdoms collide in Sarah J. Maas's epic fifth installment in the New York\nTimes bestselling Throne of Glass series. The long path to the throne has\nonly just begun for Aelin Galathynius. Loyalties have been broken and\nbought, friends have been lost and gained, and those who possess magic find\nthemselves at odds with those who don't. With her heart sworn to the\nwarrior-prince by her side, and her fealty pledged to the people she is\ndetermined to save, Aelin will delve into the depths of her power to\nprotect those she loves. But as monsters emerge from the horrors of the\npast, and dark forces become poised to claim her world, the only chance for\nsalvation will lie in a desperate quest that may mark the end of everything\nAelin holds dear. In this breathtaking fifth installment of the New York\nTimes bestselling Throne of Glass series, Aelin will have to choose what --\nand who -- to sacrifice if she's to keep the world of Erilea from breaking\napart.\"\r\n2110,2169,26025580,Gillian Flynn,What Do You Do?,https://images.gr-assets.com/books/1441679582l/26025580.jpg,3.54,42536,\"fiction, horror\",\"When a charlatan \"\"psychic\"\" visits her Victorian home to find the source of\nher terror and grief, Susan, the psychic, and her teenage stepson are soon\nforced to confront the truth about ghosts.\"\r\n2111,2170,16790,Neil Gaiman,Smoke and Mirrors: Short Fiction and Illusions,https://images.gr-assets.com/books/1409595076l/16790.jpg,4.05,46486,\"fantasy, fiction\",\"In the deft hands of Neil Gaiman, magic is no mere illusion ... and\nanything is possible. In this, Gaiman's first book of short stories, his\nimagination and supreme artistry transform a mundane world into a place of\nterrible wonders -- a place where an old woman can purchase the Holy Grail\nat a thrift store, where assassins advertise their services in the Yellow\nPages under \"\"Pest Control,\"\" and where a frightened young boy must barter\nfor his life with a mean-spirited troll living beneath a bridge by the\nrailroad tracks. Explore a new reality -- obscured by smoke and darkness,\nyet brilliantly tangible -- in this extraordinary collection of short works\nby a master prestidigitator. It will dazzle your senses, touch your heart,\nand haunt your dreams.\"\r\n2112,2171,12820793,Amish Tripathi,The Oath of the Vayuputras,https://images.gr-assets.com/books/1357242702l/12820793.jpg,3.66,35936,\"thriller, religion\",\"Today, Shiva is a god. But four thousand years ago, he was just a man -\nuntil he brought his people to Meluha, a near-perfect empire founded by the\ngreat king Lord Ram. There he discovered he was the Neelkanth, a barbarian\nlong prophesied to be Meluha's saviour. But in his hour of victory fighting\nthe Chandravanshis - Meluha's enemy - he discovered they had their own\nprophecy. Now he must fight to uncover the treachery within his inner\ncircle, and unmask those who are about to destroy all that he has fought\nfor. Shiva is about to learn that good and evil are two sides of the same\ncoin...\"\r\n2113,2172,4985,Kurt Vonnegut Jr.,Welcome to the Monkey House,https://images.gr-assets.com/books/1381107552l/4985.jpg,4.13,40071,\"fiction, classics\",\"Tender stories of love, incisive essays on human greed and misery, and\nimaginative tales of futuristic happenings reveal Vonnegut's versatility\nand vision\"\r\n2114,2173,16141924,Jim Gaffigan,Dad Is Fat,https://images.gr-assets.com/books/1354052742l/16141924.jpg,3.76,40489,\"nonfiction, memoir\",\"The popular comedian shares his misadventures as an unlikely father of\nfive, from his formative years in a large Irish-Catholic family, to his\nmiddle-of-the-night diaper-changing foibles, to his struggles to lull\ntyrannical tots to sleep.\"\r\n2115,2174,2279,David McCullough,Truman,https://images.gr-assets.com/books/1364681969l/2279.jpg,4.15,53088,\"history, biography\",TrumanDavid McCullough\r\n2116,2175,16130,Ron Chernow,Alexander Hamilton,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436131915l/16130._SY475_.jpg,4.26,46198,\"history, biography\",\"The personal life of Alexander Hamilton, an illegitimate, largely self-\ntaught orphan from the Caribbean who rose to become George Washington's\naide-de-camp and the first Treasury Secretary of the United States, is\ncaptured in a definitive biography by the National Book Award-winning\nauthor of The House of Morgan. Reprint.\"\r\n2117,2176,7788,\"Dr. Seuss, Various\",The Cat in the Hat and Other Dr. Seuss Favorites,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924269l/7788.jpg,4.41,46279,\"classics, fiction\",\"The Cat in the Hat and Other Dr. Seuss FavoritesDr. Seuss, Various\"\r\n2118,2177,28381,\"Nikolai Gogol, Robert A. Maguire\",Мёртвые ду́ши,https://images.gr-assets.com/books/1387201057l/28381.jpg,3.98,40699,\"classics, fiction\",\"In a new translation of the comic classic of Russian literature, Chichikov,\nan enigmatic stranger and schemer, buys deceased serfs' names from their\nlandlords' poll tax lists hoping to mortgage them for profit and to\nreinvent himself as a gentleman. Reprint.\"\r\n2119,2178,24920901,Elle Kennedy,The Deal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431282052l/24920901.jpg,4.3,75699,\"romance, contemporary\",\"The first book in an all new series featuring college hockey stars and the\nwomen they fall for, by New York Times bestseller Elle Kennedy.\"\r\n2120,2179,26074181,Kiera Cass,The Crown,https://images.gr-assets.com/books/1446759650l/26074181.jpg,3.8,64158,\"romance, fantasy\",\"The specacular happily ever after of the #1 New York Times bestselling\nSelection series Kiera Cass’s #1 New York Times bestselling Selection\nseries has captured the hearts of readers from its very first page. Now the\nend of the journey is here. Prepare to be swept off your feet by The\nCrown—the wonderfully romantic fifth and final book in the Selection\nseries. In The Heir, a new era dawned in the world of The Selection. Twenty\nyears have passed since America Singer and Prince Maxon fell in love, and\ntheir daughter is the first princess to hold a Selection of her own. Eadlyn\ndidn’t think she would find a real partner among the Selection’s thirty-\nfive suitors, let alone true love. But sometimes the heart has a way of\nsurprising you…and in The Crown, Eadlyn must make a choice that feels more\ndifficult—and more important—than she ever expected.\"\r\n2121,2180,11007587,David Baldacci,Zero Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546100181l/11007587.jpg,3.99,38649,\"thriller, fiction\",\"Combat veteran and U. S. Army investigator John Puller is on the hunt for\njustice with the help of a homicide detective--but as they face deceptions\nand dead ends, a powerful force threatens to stop them forever in this #1\nNew York Times bestselling thriller. John Puller is a combat veteran and\nthe best military investigator in the U.S. Army's Criminal Investigative\nDivision. His father was an Army fighting legend, and his brother is\nserving a life sentence for treason in a federal military prison. Puller\nhas an indomitable spirit and an unstoppable drive to find the truth. Now,\nPuller is called out on a case in a remote, rural area in West Virginia\ncoal country far from any military outpost. Someone has stumbled onto a\nbrutal crime scene, a family slaughtered. The local homicide detective, a\nheadstrong woman with personal demons of her own, joins forces with Puller\nin the investigation. As Puller digs through deception after deception, he\nrealizes that absolutely nothing he's seen in this small town, and no one\nin it, are what they seem. Facing a potential conspiracy that reaches far\nbeyond the hills of West Virginia, he is one man on the hunt for justice\nagainst an overwhelming force.\"\r\n2122,2181,551876,\"Arlene Mosel, Blair Lent\",Tikki Tikki Tembo,https://images.gr-assets.com/books/1317064300l/551876.jpg,4.21,52536,\"fiction, classics\",\"An illustrated Chinese folk tale describes how the Chinese came to give all\nof their children short names.\"\r\n2123,2182,3099787,L.J. Smith,\"Night World, No. 1\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434962482l/3099787._SY475_.jpg,4.04,54940,\"fantasy, paranormal\",\"Vampires, werewolves, witches, shapeshifters -- they live among us without\nour knowledge. Night World is their secret society, a secret society with\nvery strict rules. And falling in love breaks all the laws of the Night\nWorld. In Secret Vampire, Poppy thought the summer would last forever. Then\nshe was diagnosed with terminal cancer. Now Poppy's only hope for survival\nis James, her friend and secret love. A vampire in the Night World, James\ncan make Poppy immortal. But first they both must risk everything to go\nagainst the laws of Night World. Fugitives from Night World, three vampire\nsisters leave their isolated home to live among humans in Daughters of\nDarkness. Their brother, Ash, is sent to bring the girls back, but he falls\nin love with their beautiful friend. Two witch cousins fight over their\nhigh school crush. It's a battle between black magic and white magic in\nSpellbinder.\"\r\n2124,2183,8204005,Tina Reber,\"Love Unscripted (Love, #1)\",https://images.gr-assets.com/books/1327889844l/8204005.jpg,4.04,59261,\"romance, contemporary\",\"When Hollywood heartthrob Ryan Christensen unexpectedly comes into her\nlife, Taryn Mitchell finds herself falling hard, but wonders if their\nnewfound relationship is strong enough to withstand the tabloids, the\npaparazzi, and jealous fans.\"\r\n2125,2184,13143,James Patterson,Pop Goes the Weasel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409590172l/13143.jpg,3.98,46820,\"crime, suspense\",\"Detective Alex Cross is in love, but in Washington D. C. he must face a\nvillain he will never forget. Alex Cross is happy, but his happiness is\nthreatened by a series of chilling murders-murders with a pattern so\ntwisted, it leaves investigators reeling. Cross's ingenious pursuit of the\nkiller produces a suspect: a British diplomat named Geoffrey Shafer. But\nproving that Shafer is the murderer becomes a potentially deadly task. As\nthe diplomat engages in a brilliant series of surprising countermoves, in\nand out of the courtroom, Alex and his fiancée become hopelessly entangled\nwith the most memorable nemesis Alex Cross has ever faced. Pop Goes the\nWeasel reveals James Patterson at the peak of his power. Here is a chilling\nvillain no reader will forget, a love story of great tenderness, and a plot\nof relentless suspense and heart-pounding pace. To read Pop Goes the Weasel\nis to discover why James Patterson is one of the world's greatest suspense\nwriters.\"\r\n2126,2185,20803953,Penelope Douglas,Bully,https://images.gr-assets.com/books/1392309572l/20803953.jpg,4.15,34789,\"romance, contemporary\",\"When Tate's best friend turns his back on him and sets out to ruin Tate's\nlife, he decides to fight back.\"\r\n2127,2186,10104,Alison Weir,The Six Wives of Henry VIII,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438820765l/10104.jpg,4.1,47913,\"history, biography\",\"Profiles the oft-married English monarch and the women that came to define\nhim through marriage, detailing their little-known histories and\npersonalities. Reprint.\"\r\n2128,2187,76171,\"Yevgeny Zamyatin, Clarence Brown\",Мы,https://images.gr-assets.com/books/1421883730l/76171.jpg,3.95,40020,\"fiction, classics\",\"The narrator describes a state in which the individuals have given up their\nfreedom for materialistic rewards, in this utopian satire\"\r\n2129,2188,14250,Barbara Kingsolver,Pigs in Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347616121l/14250.jpg,3.97,43374,\"fiction, contemporary\",\"When Turtle witnesses a freak accident at the Hoover Dam, her mother\nresponds and a man's life is saved, but their lives are changed by the\nincident. By the author of Animal Dreams. 100,000 first printing. $125,000\nad/promo. Tour.\"\r\n2130,2189,239399,John Scalzi,The Ghost Brigades,https://images.gr-assets.com/books/1403295928l/239399.jpg,4.09,40107,\"fiction, science\",\"The Ghost Brigades are the Special Forces of the Colonial Defense Forces,\nelite troops created from the DNA of the dead and turned into the perfect\nsoldiers for the CDF's toughest operations. They’re young, they’re fast and\nstrong, and they’re totally without normal human qualms. The universe is a\ndangerous place for humanity—and it's about to become far more dangerous.\nThree races that humans have clashed with before have allied to halt our\nexpansion into space. Their linchpin: the turncoat military scientist\nCharles Boutin, who knows the CDF’s biggest military secrets. To prevail,\nthe CDF must find out why Boutin did what he did. Jared Dirac is the only\nhuman who can provide answers -- a superhuman hybrid, created from Boutin's\nDNA, Jared’s brain should be able to access Boutin's electronic memories.\nBut when the memory transplant appears to fail, Jared is given to the Ghost\nBrigades. At first, Jared is a perfect soldier, but as Boutin’s memories\nslowly surface, Jared begins to intuit the reason’s for Boutin’s betrayal.\nAs Jared desperately hunts for his \"\"father,\"\" he must also come to grips\nwith his own choices. Time is running out: The alliance is preparing its\noffensive, and some of them plan worse things than humanity’s mere military\ndefeat... \"\"A mix of Starship Troopers and Universal Soldier, Ghost Brigades\nevokes awakening, betrayal, and combat in the best military sci-fi\ntradition.\"\"—Entertainment Weekly \"\"An impressive piece of\nwork.\"\"—Philadelphia Inquirer \"\"Fast and deep . . . I like the galaxy this\nauthor's playing in, the characters he limns, the situations he's playing\nwith, and I'm glad there's at least one more volume on the way.\"\"—San Diego\nUnion-Tribune \"\"In Heinleinesque fashion, the book is loaded with scenes of\ncomradeship, isolation, ruthlessness and the protocols, which govern the\nlives of active-duty soldiers. But this is where Scalzi, famous for his\nblog ‘The Whatever,’ surpasses Heinlein. Scalzi weaves in subtle\ndiscussions of humanity's growing fear of aging and our simultaneous\nattraction and repulsion to the Frankenstein-like creatures we are able to\ncreate.\"\"—San Antonio Express-News \"\"Scalzi is a natural heir to Heinlein,\nand his second book in this series is a good old-fashioned space opera,\nwhich takes time to question the nature of free will.\"\"—St. Louis Press-\nDispatch \"\"The alliance of three alien races against interstellar humanity,\nthe defection of a human military scientist, and the signs of an impending\nwar call for desperate measures from the Colonial Defense Forces. The\ncreation of the superhuman hybrid Jared Dirac from the DNA of the traitor\nCharles Boutin is intended to provide a window on Boutin's mind and on the\nreasons for the alien alliance, but the transfer apparently fails, and\nDirac is assigned to the Ghost Brigades, Special Forces troops cloned from\nthe DNA of dead men minus any moral qualms. The sequel to Old Man's War\ncombines taut military action with keen insights into the moral issues\nrevolving around developing technologies. Scalzi has a finely tuned sense\nof balance between personal drama and the ‘big picture’ in this SCI FI\nEssential Book choice. Highly recommended.\"\"—Library Journal (starred\nreview) \"\"Scalzi's riveting and original Old Man's War introduced readers to\nthe Colonial Defense Forces (CDF), an Earth-based galactic army composed of\nsenior citizens rejuvenated by high-tech wizardry into youthful warriors.\nIn this equally engaging, battle-driven sequel, the CDF's latest operation\nentails tracking down renegade scientist Charles Boutin, who is responsible\nfor handing over deadly military secrets to humanity's extraterrestrial\nenemies. Fortunately, a computer-based replica of Boutin's consciousness is\non file and ready for transfer into newly cloned special-forces soldier\nJirad Dirac, who shares Boutin's DNA. When the consciousness transfer\ndoesn't quite take, Dirac is handed off to a battalion for routine but\nclosely monitored training. Just when Dirac is getting comfortable with his\nown identity, however, Boutin's memories kick in, and Dirac and his team\nare summarily dispatched to an enemy planet to capture Boutin and solve the\nmystery of his treason before humanity is destroyed. Scalzi skillfully\nweaves together action, memorable characterizations, and a touch of\nphilosophy in a first-rate military sf outing.\"\"—Carl Hays, Booklist \"\"[A]\nfast-paced interstellar military drama . . . It follows Jared Dirac, a\nsuperhuman soldier, from unusual birth to ambiguous death. Dirac is an\naltered clone of Charles Boutin, a military scientist who betrayed\nhumankind to alien aggressors, and the Colonial Defense Forces' only hope\nof finding Boutin lies in transplanting his memories into Dirac's brain.\nWhen the transplant seems to fail, Dirac is sent to Special Forces, known\nas the Ghost Brigades for their habit of creating new soldiers from the DNA\nof the dead. His indoctrination there comes in handy when Boutin's memories\nbegin to surface. Scalzi pays gleeful homage to Ender's Game, The Forever\nWar and Starship Troopers.\"\"—Publishers Weekly\"\r\n2131,2190,6150,Alan Paton,\"Cry, The Beloved Country\",https://images.gr-assets.com/books/1344182368l/6150.jpg,3.87,47389,\"fiction, classics\",\"“The greatest novel to emerge out of the tragedy of South Africa, and one\nof the best novels of our time.” —The New Republic “A beautiful novel…its\nwriting is so fresh, its projection of character so immediate and full, its\nevents so compelling, and its understanding so compassionate that to read\nthe book is to share intimately, even to the point of catharsis, in the\ngrave human experience.” —The New York Times An Oprah Book Club selection,\nCry, the Beloved Country, was an immediate worldwide bestseller when it was\npublished in 1948. Alan Paton’s impassioned novel about a black man’s\ncountry under white man’s law is a work of searing beauty. Cry, the Beloved\nCountry, is the deeply moving story of the Zulu pastor Stephen Kumalo and\nhis son, Absalom, set against the background of a land and a people riven\nby racial injustice. Remarkable for its lyricism, unforgettable for\ncharacter and incident, Cry, the Beloved Country is a classic work of love\nand hope, courage and endurance, born of the dignity of man.\"\r\n2132,2191,887201,\"Brian Froud, Alan Lee\",Faeries,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223151700l/887201.jpg,3.89,38050,\"art, fantasy\",\"Identifies and pictures all the faery types including elves, gnomes,\npixies, leprechauns, and dryads, drawing from Celtic stories, the English-\nlanguage oral tradition, and the works of poets to illuminate their ways of\nlife.\"\r\n2133,2192,18943,Gregory Maguire,Confessions of an Ugly Stepsister,https://images.gr-assets.com/books/1338457460l/18943.jpg,3.51,50526,\"fantasy, fiction\",\"Is this new land a place where magics really happen? From Gregory Maguire,\nthe acclaimed author of Wicked, comes his much-anticipated second novel, a\nbrilliant and provocative retelling of the timeless Cinderella tale. In the\nlives of children, pumpkins can turn into coaches, mice and rats into human\nbeings.... When we grow up, we learn that it's far more common for human\nbeings to turn into rats.... We all have heard the story of Cinderella, the\nbeautiful child cast out to slave among the ashes. But what of her\nstepsisters, the homely pair exiled into ignominy by the fame of their\nlovely sibling? What fate befell those untouched by beauty . . . and what\ncurses accompanied Cinderella's exquisite looks? Extreme beauty is an\naffliction Set against the rich backdrop of seventeenth-century Holland,\nConfessions of an Ugly Stepsister tells the story of Iris, an unlikely\nheroine who finds herself swept from the lowly streets of Haarlem to a\nstrange world of wealth, artifice, and ambition. Iris's path quickly\nbecomes intertwined with that of Clara, the mysterious and unnaturally\nbeautiful girl destined to become her sister. Clara was the prettiest\nchild, but was her life the prettiest tale? While Clara retreats to the\ncinders of the family hearth, burning all memories of her past, Iris seeks\nout the shadowy secrets of her new household--and the treacherous truth of\nher former life. God and Satan snarling at each other like dogs.... Imps\nand fairy godmotbers trying to undo each other's work. How we try to pin\nthe world between opposite extremes! Far more than a mere fairy-tale,\nConfessions of an Ugly Stepsister is a novel of beauty and betrayal,\nillusion and understanding, reminding us that deception can be unearthed--\nand love unveiled--in the most unexpected of places.\"\r\n2134,2193,4268,Nick Hornby,How to Be Good,https://images.gr-assets.com/books/1327935893l/4268.jpg,3.18,37497,\"fiction, contemporary\",\"Katie, a liberal, urban mother and doctor from North London, finds her life\nturned upside down when her husband, David, undergoes an outrageous\nspiritual transformation, in a hilarious novel about marriage, parenthood,\nreligion, and morality. By the author of High Fidelity and About a Boy.\nReprint.\"\r\n2135,2194,25494343,Cassandra Clare,Lady Midnight,https://images.gr-assets.com/books/1460477682l/25494343.jpg,4.47,84711,\"romance, fantasy\",\"\"\"Shadowhunter Emma Carstairs and her parabatai Julian Blackthorn race to\nstop a demonic plot that threatens Los Angeles\"\"--\"\r\n2136,2195,2325825,Cornelia Funke,Tintentod,https://images.gr-assets.com/books/1327341991l/2325825.jpg,3.93,53591,\"fiction, fantasy\",TintentodCornelia Funke\r\n2137,2196,76683,Isaac Asimov,Foundation's Edge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442311409l/76683._SY475_.jpg,4.08,47641,\"fiction, classics\",\"Interplanetary intrigue, hyperspace pursuit, and future technology combine\nwith a desperate search for the planet Earth\"\r\n2138,2197,50798,Thomas Hardy,Jude the Obscure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389403264l/50798.jpg,3.8,44873,\"classics, fiction\",\"The first truly critical edition of Hardy's most controversial novel,\npresenting a \"\"clean\"\" text in which Hardy's own light punctuation is\nrestored.\"\r\n2139,2198,587582,David Eddings,Queen of Sorcery,https://images.gr-assets.com/books/1428943169l/587582.jpg,4.13,49355,\"fantasy, fiction\",\"\"\"BELGARIAD is exactly the kind of fantasy I like. It has magic, adventure,\nhumor, mystery, and a certain delightful human insight.\"\" PIERS ANTHONY The\nmaster Sorcerer Belgarath and his daughter Polgara the arch-Sorceress were\non the trail of the Orb, seeking to regain its saving power before the\nfinal disaster prophesized by the legends. And with them went Garion, a\nsimple farm boy only months before, but now the focus of the struggle. He\nhad never believed in sorcery and wanted no part of it. Yet with every\nleague they traveled, the power grew in him, forcing him to acts of\nwizardry he could not accept.\"\r\n2140,2199,89723,Shirley Jackson,The Lottery: Adventures of the Demon Lover,https://images.gr-assets.com/books/1416448200l/89723.jpg,4.06,48608,\"fiction, classics\",The Lottery: Adventures of the Demon LoverShirley Jackson\r\n2141,2201,5056084,Aprilynne Pike,Wings ,https://images.gr-assets.com/books/1327983077l/5056084.jpg,3.75,62566,\"fantasy, romance\",\"Laurel was mesmerized, staring at the pale things. They were terrifyingly\nbeautiful—too beautiful for words. Laurel turned to the mirror again, her\neyes on the hovering petals that floated beside her head. They looked\nalmost like wings. Laurel's life is the very definition of normal . . .\nuntil the morning when she wakes up to discover a flower blooming from her\nback. As it turns out, nothing in Laurel's life is what it seems. Now, with\nthe help of an alluring faerie sentry who holds the key to her true past,\nLaurel must race to save her human family from the centuries-old faerie\nenemies who walk among them.\"\r\n2142,2202,22188,Cecily von Ziegesar,Gossip Girl,https://images.gr-assets.com/books/1398814332l/22188.jpg,3.51,49670,\"fiction, contemporary\",\"The wickedly funny first book in the #1 New York Times bestselling series\nthat inspired the original hit CW show and the new series coming to HBO\nMax's Spring 2020 launch season (alongside hit series such as Pretty Little\nLiars and Friends). Welcome to New York City's Upper East Side, where my\nfriends and I live, go to school, play, and sleep--sometimes with each\nother. S is back from boarding school, and if we aren't careful, she's\ngoing to win over our teachers, wear that dress we couldn't fit into, steal\nour boyfriends' hearts, and basically ruin our lives in a major way. I'll\nbe watching closely... You know you love me. gossip girl\"\r\n2143,2203,149572,Frederick Forsyth,The Odessa File,https://images.gr-assets.com/books/1348786945l/149572.jpg,4.1,42529,\"thriller, fiction\",The Odessa FileFrederick Forsyth\r\n2144,2204,15823461,Elizabeth Strout,The Burgess Boys,https://images.gr-assets.com/books/1351213545l/15823461.jpg,3.54,39445,\"fiction, contemporary\",\"Catalyzed by a nephew's thoughtless prank, a pair of brothers confront\npainful psychological issues surrounding the freak accident that killed\ntheir father when they were boys, a loss linked to a heartbreaking\ndeception that shaped their personal and professional lives. By the\nPulitzer Prize-winning author of Olive Kitteridge.\"\r\n2145,2205,23692271,Yuval Noah Harari,קיצור תולדות האנושות‎‎,https://images.gr-assets.com/books/1420585954l/23692271.jpg,4.41,52846,\"nonfiction, philosophy\",\"THE SUNDAY TIMES BESTSELLER Planet Earth is 4.5 billion years old. In just\na fraction of that time, one species among countless others has conquered\nit. Us. We are the most advanced and most destructive animals ever to have\nlived. What makes us brilliant? What makes us deadly? What makes us\nSapiens? In this bold and provocative book, Yuval Noah Harari explores who\nwe are, how we got here and where weâe(tm)re going. Sapiens is a thrilling\naccount of humankindâe(tm)s extraordinary history âe\"\" from the Stone Age to\nthe Silicon Age âe\"\" and our journey from insignificant apes to rulers of\nthe world âe~It tackles the biggest questions of history and of the modern\nworld, and it is written in unforgettably vivid language. You will love\nit!âe(tm) Jared Diamond, author of Guns, Germs and Steel For more, visit\nwww.ynharari.com\"\r\n2146,2207,10805160,Tana French,Broken Harbor,https://images.gr-assets.com/books/1336120776l/10805160.jpg,3.92,36704,\"mystery, fiction\",\"After a brutal attack that left a woman in intensive care and her husband\nand children dead, Scorcher Kennedy and his rookie partner, Richie,\nstruggle with perplexing clues and Scorcher's memories of a shattering\nincident from his childhood.\"\r\n2147,2208,16001893,M. Leighton,Down to You,https://images.gr-assets.com/books/1347544660l/16001893.jpg,4.05,59221,\"contemporary, romance\",\"Returning home to help her father run his business, college student Olivia\nTownsend finds her life getting complicated when twin brothers—Cash and\nNash Davenport—reveal their desire for her, drawing her into a sensual game\nbetween three players that spins wildly—and erotically—out of control.\nOriginal.\"\r\n2148,2209,569564,William Shakespeare,The Complete Works,https://images.gr-assets.com/books/1327884293l/569564.jpg,4.49,39503,\"classics, history\",\"Gathers all of Shakespeare's plays, sonnets, and poems.\"\r\n2149,2210,13651,Ursula K. Le Guin,The Dispossessed,https://images.gr-assets.com/books/1353467455l/13651.jpg,4.18,46660,\"fiction, fantasy\",\"Shevek, a brilliant physicist, decides to take action. he will seek\nanswers, question the unquestionable, and attempt to tear down the walls of\nhatred that have isolated his planet of anarchists from the rest of the\ncivilized universe. To do this dangerous task will mean giving up his\nfamily and possibly his life. Shevek must make the unprecedented journey to\nthe utopian mother planet, Anarres, to challenge the complex structures of\nlife and living, and ignite the fires of change.\"\r\n2150,2211,935308,\"Henning Mankell, Steven T. Murray\",Mördare utan ansikte,https://images.gr-assets.com/books/1487941867l/935308.jpg,3.78,43861,\"mystery, crime\",\"Mördare utan ansikteHenning Mankell, Steven T. Murray\"\r\n2151,2212,7933437,John Grisham,The Confession,https://images.gr-assets.com/books/1320541779l/7933437.jpg,3.81,41389,\"fiction, mystery\",\"When Travis Boyette is paroled because of inoperable brain tumor, for the\nfirst time in his life, he decides to do the right thing and tell police\nabout a crime he committed and another man is about to be executed for.\"\r\n2152,2213,32424,Dean Koontz,Lightning,https://images.gr-assets.com/books/1410030512l/32424.jpg,4.06,44424,\"horror, fiction\",\"Aided through many crises throughout her life by the almost miraculous\nintervention of a stranger, Laura Shane learns the nature of her awesome\ndestiny when, on her thirtieth birthday, the stranger finally requests her\nhelp. Reissue.\"\r\n2153,2214,21436,\"James Patterson, Keith David, Anthony Heald\",Cat & Mouse,https://images.gr-assets.com/books/1375828879l/21436.jpg,3.96,45217,\"mystery, fiction\",\"Cat & MouseJames Patterson, Keith David, Anthony Heald\"\r\n2154,2215,80674,Judy Blume,Superfudge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925060l/80674.jpg,3.98,50917,\"fiction, contemporary\",\"Fifth-grader Peter Hatcher's mother is pregnant, his four-year-old brother,\nFudge, is a constant embarrassment to his family, and his parents want to\nmove to New Jersey for a year, could life get any worse?\"\r\n2155,2216,28815474,Shari Lapena,The Couple Next Door,https://images.gr-assets.com/books/1471502242l/28815474.jpg,3.74,63237,\"mystery, fiction\",The Couple Next DoorShari Lapena\r\n2156,2217,11563110,Cynthia Hand,Hallowed,https://images.gr-assets.com/books/1332883896l/11563110.jpg,4.15,58860,\"fantasy, paranormal\",\"For months part-angel Clara Gardner trained to face the fire from her\nvisions, but she wasn't prepared for the choice she had to make that day.\nNow, torn between her love for Tucker and her complicated feelings about\nthe roles she and Christian seem destined to play in a world that is both\ndangerous and beautiful, Clara struggles with a shocking revelation:\nSomeone she loves will die in a matter of months. With her future\nuncertain, the only thing Clara knows for sure is that the fire was just\nthe beginning.\"\r\n2157,2218,17333324,Ann Leckie,Ancillary Justice,https://images.gr-assets.com/books/1397215917l/17333324.jpg,3.97,38747,\"fiction, ebooks\",\"Winner of the Hugo, Nebula, British Science Fiction, Locus and Arthur C.\nClarke Awards. On a remote, icy planet, the soldier known as Breq is\ndrawing closer to completing her quest. Once, she was the Justice of Toren\n- a colossal starship with an artificial intelligence linking thousands of\nsoldiers in the service of the Radch, the empire that conquered the galaxy.\nNow, an act of treachery has ripped it all away, leaving her with one\nfragile human body, unanswered questions, and a burning desire for\nvengeance. In the Ancillary world: 1. Ancillary Justice2. Ancillary Sword3.\nAncillary Mercy\"\r\n2158,2219,5038,Terry Goodkind,The Pillars of Creation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516742944l/5038.jpg,3.67,43424,\"fantasy, romance\",\"Sequel to the New York Times bestselling Faith of the Fallen New York Times\nbestselling author Terry Goodkind has created his most lavish adventure\nyet. Tormented her entire life by inhuman voices, a young woman named\nLauren seeks to end her intolerable agony. She at last discovers a way to\nsilence the voices. For everyone else, the torment is about to begin. With\nwinter descending and the paralyzing dread of an army of annihilation\noccupying their homeland, Richard Rahl and his wife Kahlan must venture\ndeep into a strange and desolate land. Their quest turns to terror when\nthey find themselves the helpless prey of a tireless hunter. Meanwhile,\nLauren finds herself drawn into the center of a struggle for conquest and\nrevenge. Worse yet, she finds her will seized by forces more abhorrent than\nanything she ever envisioned. Only then does she come to realize that the\nvoices were real. Staggered by loss and increasingly isolated, Richard and\nKahlan must stop the relentless, unearthly threat which has come out of the\ndarkest night of the human soul. To do so, Richard will be called upon to\nface the demons stalking among the Pillars of Creation. Discover\nbreathtaking adventure and true nobility of spirit. Find out why millions\nof readers the world over have elevated Terry Goodkind to the ranks of\nlegend.\"\r\n2159,2220,4122,\"James C. Collins, Jerry I. Porras\",Built to Last: Successful Habits of Visionary Companies,https://images.gr-assets.com/books/1412047084l/4122.jpg,3.98,39618,\"business, nonfiction\",\"\"\"This is not a book about charismatic visionary leaders. It is not about\nvisionary product concepts or visionary products or visionary market\ninsights. Nor is it about just having a corporate vision. This is a book\nabout something far more important, enduring, and substantial. This is a\nbook about visionary companies.\"\" So write Jim Collins and Jerry Porras in\nthis groundbreaking book that shatters myths, provides new insights, and\ngives practical guidance to those who would like to build landmark\ncompanies that stand the test of time. Drawing upon a six-year research\nproject at the Stanford University Graduate School of Business, Collins and\nPorras took eighteen truly exceptional and long-lasting companies -- they\nhave an average age of nearly one hundred years and have outperformed the\ngeneral stock market by a factor of fifteen since 1926 -- and studied each\ncompany in direct comparison to one of its top competitors. They examined\nthe companies from their very beginnings to the present day -- as start-\nups, as midsize companies, and as large corporations. Throughout, the\nauthors asked: \"\"What makes the truly exceptional companies different from\nother companies?\"\" What separates General Electric, 3M, Merck, Wal-Mart,\nHewlett-Packard, Walt Disney, and Philip Morris from their rivals? How, for\nexample, did Procter & Gamble, which began life substantially behind rival\nColgate, eventually prevail as the premier institution in its industry? How\nwas Motorola able to move from a humble battery repair business into\nintegrated circuits and cellular communications, while Zenith never became\ndominant in anything other than TVs? How did Boeing unseat McDonnell\nDouglas as the world's best commercial aircraft company -- what did Boeing\nhave that McDonnell Douglas lacked? By answering such questions, Collins\nand Porras go beyond the incessant barrage of management buzzwords and fads\nof the day to discover timeless qualities that have consistently\ndistinguished out-standing companies. They also provide inspiration to all\nexecutives and entrepreneurs by destroying the false but widely accepted\nidea that only charismatic visionary leaders can build visionary companies.\nFilled with hundreds of specific examples and organized into a coherent\nframework of practical concepts that can be applied by managers and\nentrepreneurs at all levels, Built to Last provides a master blueprint for\nbuilding organizations that will prosper long into the twenty-first century\nand beyond.\"\r\n2160,2221,20758175,Allen Eskens,The Life We Bury,https://images.gr-assets.com/books/1437077793l/20758175.jpg,3.93,35689,\"mystery, fiction\",Contains an excerpt from the forthcoming novel titled The guise of another.\r\n2161,2222,3412815,Eric Wilson,Fireproof,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777516l/3412815._SY475_.jpg,4.47,37258,\"christian, fiction\",\"Facing divorce after seven years of marriage, Captain Caleb Holt accepts a\nchallenge from his father to commit to a forty-day experiment called \"\"The\nLove Dare,\"\" and ultimately finds himself fighting to win back the heart of\nhis wife.\"\r\n2162,2223,295961,Jack Higgins,The Eagle Has Landed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347958282l/295961.jpg,4.15,41677,\"fiction, thriller\",The Eagle Has LandedJack Higgins\r\n2163,2224,30273,Laurell K. Hamilton,The Lunatic Cafe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388609298l/30273.jpg,4.12,58023,\"paranormal, fantasy\",\"Preternatural expert Anita Blake meets an interesting array of monsters\nthat includes jealous vampires and killer zombies, but her work with a\ngroup of besieged werewolves is threatened when she falls in love with its\nleader. Reissue.\"\r\n2164,2225,1857440,David Wong,John Dies at the End,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189289716l/1857440._SY475_.jpg,3.92,35387,\"horror, fiction\",John Dies at the EndDavid Wong\r\n2165,2226,17349,\"Carl Sagan, Ann Druyan\",The Demon-Haunted World: Science as a Candle in the Dark,https://images.gr-assets.com/books/1405201597l/17349.jpg,4.27,40583,\"nonfiction, philosophy\",\"Reveals the dangers associated with widespread scientific ignorance, and\nexplains how scientific thought has served to overcome prejudice and\nhysteria\"\r\n2166,2227,6408862,Lucy Christopher,Stolen: A Letter to My Captor,https://images.gr-assets.com/books/1311064295l/6408862.jpg,3.93,52435,\"contemporary, fiction\",\"Sixteen year old Gemma is kidnapped from Bangkok airport and taken to the\nAustralian Outback. This wild and desolate landscape becomes almost a\ncharacter in the book, so vividly is it described. Ty, her captor, is no\nstereotype. He is young, fit and completely gorgeous. This new life in the\nwilderness has been years in the planning. He loves only her, wants only\nher. Under the hot glare of the Australian sun, cut off from the world\noutside, can the force of his love make Gemma love him back? The story\ntakes the form of a letter, written by Gemma to Ty, reflecting on those\nstrange and disturbing months in the outback. Months when the lines between\nlove and obsession, and love and dependency, blur until they don't exist \\-\nalmost.\"\r\n2167,2228,95558,Stanisław Lem,Solaris,https://images.gr-assets.com/books/1498631519l/95558.jpg,3.97,41249,\"fiction, classics\",\"Upon landing at an interplanetary station, Kris Kelvin discovers that an\nadvanced power has taken over.\"\r\n2168,2229,227603,Elizabeth Wurtzel,Prozac Nation,https://images.gr-assets.com/books/1282607176l/227603.jpg,3.57,44408,\"memoir, psychology\",\"A memoir of sex, drugs, and depression indicts an overmedicated America as\nit chronicles the fortunes of a Harvard educated child of divorce who lived\nin the fast lane as a music critic, always fighting her chronic depression.\"\r\n2169,2230,24784,Lloyd Alexander,The Black Cauldron,https://images.gr-assets.com/books/1405377996l/24784.jpg,4.13,49138,\"fantasy, fiction\",\"The land of Prydain is threatened by the evil Arawn and his band of\ninvincible warriors.\"\r\n2170,2231,141565,Daniel J. Levitin,This Is Your Brain on Music: The Science of a Human Obsession,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922939l/141565.jpg,3.86,37465,\"music, science\",LEVITIN/THIS IS YOUR BRAIN ON MUSIC\r\n2171,2232,17888952,Mitch Albom,The First Phone Call from Heaven,https://images.gr-assets.com/books/1380034020l/17888952.jpg,3.73,38957,\"fiction, contemporary\",The First Phone Call from HeavenMitch Albom\r\n2172,2233,61115,Augusten Burroughs,Possible Side Effects,https://images.gr-assets.com/books/1412064839l/61115.jpg,3.97,38243,\"memoir, nonfiction\",\"A collection of personal tales features the author's wry observations about\nsuch topics as eBay addiction, gay personal ads, and Santa Claus.\"\r\n2173,2234,17884042,Anna Quindlen,Still Life with Bread Crumbs,https://images.gr-assets.com/books/1403168088l/17884042.jpg,3.63,35682,\"fiction, romance\",\"Moving to a small country cabin, a once world-famous photographer bonds\nwith a local man and begins to see the world around her in new, deeper\ndimensions while evaluating second chances at love, career, and self-\nunderstanding.\"\r\n2174,2235,16322,Agatha Christie,The ABC Murders,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733983l/16322.jpg,3.97,49513,\"mystery, fiction\",\"Hercule Poirot's mastery of detective skills is tested by a mysterious\ncorrespondent who predicts and then executes alphabetical murders.\"\r\n2175,2236,280111,Anonymous,Holy Bible: New International Version,https://images.gr-assets.com/books/1382581321l/280111.jpg,4.61,40430,\"religion, christian\",\"PrefaceThe New International Version is a completely new translation of the\nHoly Bible made by over a hundred scholars working directly from the best\navailable Hebrew, Aramaic and Greek texts. It had its beginning in 1965\nwhen, after several years of exploratory study by committees from the\nChristian Reformed Church and the National Association of Evangelicals, a\ngroup of scholars met at Palos Heights, Illinois, and concurred in the need\nfor a new translation of the Bible in contemporary English. This group,\nthough not made up of official church representatives, was\ntransdenominational. Its conclusion was endorsed by a large number of\nleaders from many denominations who met in Chicago in 1966.Responsibility\nfor the new version was delegated by the Palos Heights group to a self-\ngoverning body of fifteen, the Committee on Bible Translation, composed for\nthe most part of biblical scholars from colleges, universities and\nseminaries. In 1967 the New York Bible Society (now the International Bible\nSociety) generously undertook the financial sponsorship of the project -- a\nsponsorship that made it possible to enlist the help of many distinguished\nscholars. The fact that participants from the United States, Great Britain,\nCanada, Australia and New Zealand worked together gave the project its\ninternational scope. That they were from many denominations -including\nAnglican, Assemblies of God, Baptist, Brethren, Christian Reformed, Church\nof Christ, Evangelical Free, Lutheran, Mennonite, Methodist, Nazarene,\nPresbyterian, Wesleyan and other churches -- helped to safeguard the\ntranslation from sectarian bias.How it was made helps to give the New\nInternational Version its distinctiveness. Thetranslation of each book was\nassigned to a team of scholars. Next, one of the Intermediate Editorial\nCommittees revised the initial translation, with constant reference to the\nHebrew, Aramaic or Greek. Their work then went to one of the General\nEditorial Cominittees, which checked it in detail and made another thorough\nrevision. This revision in turn was carefully reviewed by the Committee on\nBible Translation, which made further changes and then released the final\nversion for publication. In this way the entire Bible underwent three\nrevisions, during each of which the translation was examined for its\nfaithfulness to the original languages and for its English style, All this\ninvolved many thousands of hours of research and discussion regarding the\nmeaning of the texts and the precise way of putting them into English. It\nmay well be that no other translation has been made by a more thorough\nprocess of review and revision from committee to committee than this\none.From the beginning of the project, the Committee on Bible Translation\nheld to certain goals for the New International Version: that it would be\nan accurate translation and one that would have clarity and literary\nquality and so prove suitable for public and private reading, teaching,\npreaching, memorizing and liturgical use. The Committee also sought to\npreserve some measure of continuity with the long tradition of translating\nthe Scriptures into English.In working toward these goals, the translators\nwere united in their commitment to the authority and infallibility of the\nBible as God's Word in written form. They believe that it contains the\ndivine answer to the deepest needs of humanity, that it sheds unique light\non our pathin a dark world, and that it sets forth the way to our eternal\nwell-being.The first concern of the translators has been the accuracy of\nthe translation and its fidelity to the thought of the biblical writers.\nThey have weighed the significance of the lexical and grammatical details\nof the Hebrew, Aramaic and Greek texts. At the same time, they have striven\nfor more than a word-for-word translation, Because thought Patterns and\nsyntax differ from language to language, faithful communication of the\nmeaning of the writers of the Bible demands frequent modifications in\nsentence structure and constant regard for the contextual meanings of\nwords.A sensitive feeling for style does not always accompany scholarship.\nAccordingly the Committee on Bible Translation submitted the developing\nversion to a number of stylistic consultants. Two of them read every book\nof both Old and New Testaments twice -- once before once after the last\nmajor revision -- and made invaluable suggestions. Samples of the\ntranslation were tested for clarity and ease of reading by various kinds of\npeople -- young and old, highly educated and less well educated ministers\nand laymen.Concern for clear and natural English -- that the New\nInternational Version should be idiomatic but not idiosyncratic,\ncontemporary but not dated -- motivated the translators and consultants .\nAt the same time, they tried to reflect the differing styles of the\nbiblical writers. In view of the international use of English, the\ntranslators sought to avoid obvious Americanisms on the one hand and\nobvious Anglicisms on the other. A British edition reflects the\ncomparatively few differences of significant idiom and of spelling.As for\nthe traditionalpronouns \"\"thou,\"\" \"\"thee\"\" and \"\"thine\"\" in reference to the\nDeity, the translators judged that to use these archaisins (along with the\nold verb forms such as \"\"doest,\"\" \"\"wouldest\"\" and \"\"hadst\"\") would violate\naccuracy 'in translation. Neither Hebrew, Aramaic nor Greek uses special\npronouns for the persons of the Godhead. A present-day translation is not\nenhanced by forms that in the time of the King James Version were used in\neveryday speech, whether referring to God or man.For the Old Testament the\nstandard Hebrew text, the Masoretic Text as published in the latest\neditions of \"\"Biblia Hebraica, was used throughout. The Dead Sea Scrolls\ncontain material bearing on an earlier stage of the Hebrew text. They were\nconsulted, as were the Samaritan Pentateuch and the ancient scribal\ntraditions relating to textual changes. Sometimes a variant Hebrew reading\nin the margin of the Masoretic: Text was followed instead of the text\nitself. Such instances, being variants within the Masoretic tradition, are\nnot specified by footnotes. In rare cases, words in the consonantal text\nwere divided differently from the way they appear in the Masoretic Text.\nFootnotes indicate this....\"\r\n2176,2237,10993282,J.R. Ward,Lover Reborn,https://images.gr-assets.com/books/1319144072l/10993282.jpg,4.35,57866,\"paranormal, romance\",\"Tohrment, a Black Dagger Brother, is given a second chance at love and life\nafter losing everything in the ninth novel in the New York Times best-\nselling series, following Lover Unleashed. Reprint. 250,000 first printing.\"\r\n2177,2238,110391,Julia Quinn,The Duke and I,https://images.gr-assets.com/books/1379594717l/110391.jpg,4.11,57839,\"romance, fiction\",\"From New York Times bestselling author Julia Quinn comes the first novel in\nthe beloved Regency-set world of her charming, powerful Bridgerton family,\nnow a series created by Shonda Rhimes for Netflix. In the ballrooms and\ndrawing rooms of Regency London, rules abound. From their earliest days,\nchildren of aristocrats learn how to address an earl and curtsey before a\nprince - while other dictates of the ton are unspoken yet universally\nunderstood. A proper duke should be imperious and aloof. A young,\nmarriageable lady should be amiable . . . but not too amiable. Daphne\nBridgerton has always failed at the latter. The fourth of eight siblings in\nher close-knit family, she has formed friendships with the most eligible\nyoung men in London. Everyone likes Daphne for her kindness and wit. But no\none truly desires her. She is simply too deuced honest for that, too\nunwilling to play the romantic games that captivate gentlemen. Amiability\nis not a characteristic shared by Simon Basset, Duke of Hastings. Recently\nreturned to England from abroad, he intends to shun both marriage and\nsociety - just as his callous father shunned Simon throughout his painful\nchildhood. Yet an encounter with his best friend's sister offers another\noption. If Daphne agrees to a fake courtship, Simon can deter the mamas who\nparade their daughters before him. Daphne, meanwhile, will see her\nprospects and her reputation soar. The plan works like a charm-at first.\nBut amid the glittering, gossipy, cut-throat world of London's elite, there\nis only one certainty: love ignores every rule...\"\r\n2178,2239,68378,\"Margaret Weis, Tracy Hickman\",Dragons of Spring Dawning,https://images.gr-assets.com/books/1312062224l/68378.jpg,4.12,39928,\"fantasy, fiction\",\"The third Dragonlance title ever published, now available for the first\ntime in hardcover.\"\r\n2179,2240,5517,Lorraine Hansberry,A Raisin in the Sun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165522672l/5517.jpg,3.72,44237,\"classics, fiction\",\"An African-American family is united in love and pride as they struggle to\novercome poverty and harsh living conditions, in the award-winning 1959\nplay about an embattled Chicago family\"\r\n2180,2241,40445,Richard K. Morgan,Altered Carbon,https://images.gr-assets.com/books/1387128955l/40445.jpg,4.1,41505,\"fiction, mystery\",\"In a twenty-fifth century world in which death is nearly obsolete, former\nUN envoy Takeshi Kovacs, re-sleeved into a new body after a brutal death,\nfinds himself caught in the middle of a deadly far-reaching conspiracy.\"\r\n2181,2242,34993,Tom Clancy,The Sum of All Fears,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388250477l/34993.jpg,3.99,43888,\"fiction, thriller\",\"Peace may finally be at hand in the Middle East - as Deputy Director of the\nCIA Jack Ryan lays the groundwork for a peace plan that could end centuries\nof conflict. But ruthless terrorists have a final, desperate card to play;\nthey have their hands on a nuclear weapon and have placed it on American\nsoil in the midst of an escalation in tension with the Soviet Union. The\nterrorists hope to rekindle cold war animosity and prevent reconciliation\nbetween Israelis and Palestinians. With one terrible act, distrust mounts,\nforces collide, and the floundering U.S. president seems unable to cope\nwith the crisis. With the world on the verge of nuclear disaster, Ryan must\nfrantically seek a solution - before the chiefs of state lose control of\nthemselves and the world.\"\r\n2182,2244,17131869,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume Two\",https://images.gr-assets.com/books/1486028954l/17131869.jpg,4.57,56122,\"comics, fantasy\",\"After battling assassins, rampaging armies, and aliens, little Hazel faces\nsomething truly frightening--her grandparents.\"\r\n2183,2245,231562,Lee Child,The Enemy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210939l/231562.jpg,4.15,42205,\"thriller, fiction\",The EnemyLee Child\r\n2184,2246,20604826,Michael   Lewis,Flash Boys: A Wall Street Revolt,https://images.gr-assets.com/books/1404963230l/20604826.jpg,4.12,18379,\"business, history\",\"Argues that post-crisis Wall Street continues to be controlled by large\nbanks and explains how a small, diverse group of Wall Street men have\nbanded together to reform the financial markets.\"\r\n2185,2247,193755,\"Jean-Dominique Bauby, Jeremy Leggatt\",Le Scaphandre et le Papillon,https://images.gr-assets.com/books/1336930564l/193755.jpg,4.01,41037,\"memoir, biography\",\"Le Scaphandre et le PapillonJean-Dominique Bauby, Jeremy Leggatt\"\r\n2186,2248,13538641,\"Bill O'Reilly, Martin Dugard\",Killing Kennedy: The End of Camelot,https://images.gr-assets.com/books/1337689366l/13538641.jpg,4.05,35799,\"history, biography\",\"Killing Kennedy: The End of CamelotBill O'Reilly, Martin Dugard\"\r\n2187,2250,10538,Bill Bryson,The Life and Times of The Thunderbolt Kid: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389761724l/10538.jpg,3.93,42680,\"memoir, biography\",\"The author describes his all-American childhood growing up as a member of\nthe baby boom generation in the heart of Iowa, detailing his rich fantasy\nlife as a superhero known as the Thunderbolt Kid and his remarkably normal\n1950s family life.\"\r\n2188,2251,7159515,Chevy Stevens,Still Missing,https://images.gr-assets.com/books/1260468195l/7159515.jpg,3.96,44223,\"mystery, fiction\",\"\"\"Pulsates with suspense . . . jaw dropping . . . enthralling.\"\" —Publishers\nWeekly (starred review) On the day she was abducted, Annie O'Sullivan, a\nthirty-two-year-old realtor, had three goals—sell a house, forget about a\nrecent argument with her mother, and be on time for dinner with her ever-\npatient boyfriend. The open house is slow, but when her last visitor pulls\nup in a van as she's about to leave, Annie thinks it just might be her\nlucky day after all. \"\"Will have you glued to the page.\"\"—People magazine\nInterwoven with the story of the year Annie spent captive in a remote\nmountain cabin—which unfolds through sessions with her psychiatrist—is the\nsecond narrative recounting the nightmare that follows her escape: her\nstruggle to piece her shattered life back together, the ongoing police\ninvestigation into the identity of her captor, and the disturbing sense\nthat things are far from over...in Still Missing. \"\"Explosively\nfrightening...Chevy Stevens is sure to rock lovers of the thriller genre.\"\"\n—USA Today\"\r\n2189,2252,4912,Frank McCourt,'Tis: A Memoir,https://images.gr-assets.com/books/1375947803l/4912.jpg,3.66,40726,\"memoir, biography\",'Tis: A MemoirFrank McCourt\r\n2190,2253,39020,Charles C. Mann,1491: New Revelations of the Americas Before Columbus,https://images.gr-assets.com/books/1327865228l/39020.jpg,4.01,41815,\"history, nonfiction\",\"Describes how recent archaeological research has transformed long-held\nmyths about the Americas, revealing far older and more advanced cultures\nwith a greater population than were previously thought to have existed.\"\r\n2191,2254,22489107,Marissa Meyer,Fairest,https://images.gr-assets.com/books/1460846345l/22489107.jpg,4.02,59545,\"fantasy, fiction\",FairestMarissa Meyer\r\n2192,2255,361459,Kay Redfield Jamison,An Unquiet Mind: A Memoir of Moods and Madness,https://images.gr-assets.com/books/1350028748l/361459.jpg,4.03,41102,\"psychology, memoir\",\"The personal memoir of a manic depressive and an authority on the subject\ndescribes the onset of the illness during her teenage years and her\ndetermined journey through the realm of available treatments. Reprint.\n125,000 first printing.\"\r\n2193,2257,14940,Edward Albee,Who's Afraid of Virginia Woolf?,https://images.gr-assets.com/books/1327962277l/14940.jpg,4.09,45045,\"classics, fiction\",\"A social event becomes a personal challenge for two faculty members and\nthier wives at a small New England college as their inner fears and desires\nare exposed. Reprint.\"\r\n2194,2258,1128434,Andrzej Sapkowski,Ostatnie życzenie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1181224890l/1128434._SX318_.jpg,4.2,36262,\"fantasy, fiction\",Ostatnie życzenieAndrzej Sapkowski\r\n2195,2259,17841,\"Umberto Eco, William Weaver\",Il pendolo di Foucault,https://images.gr-assets.com/books/1396645125l/17841.jpg,3.89,40829,\"fiction, mystery\",\"Il pendolo di FoucaultUmberto Eco, William Weaver\"\r\n2196,2260,270067,Don Freeman,A Pocket for Corduroy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921247l/270067.jpg,4.29,47277,\"fiction, classics\",A toy bear who wants a pocket for himself searches for one in a laundromat.\r\n2197,2261,21445,\"James Patterson, Maxine Paetro\",The 5th Horseman,https://images.gr-assets.com/books/1396631487l/21445.jpg,4.03,45097,\"mystery, fiction\",\"The 5th HorsemanJames Patterson, Maxine Paetro\"\r\n2198,2262,153008,Jacqueline Carey,Kushiel's Dart,https://images.gr-assets.com/books/1328168291l/153008.jpg,4.04,52071,\"fantasy, romance\",\"Sold into indentured servitude at the exotic Night Court as a child, PhFdre\nn= Delaunay, faces a difficult choice between honor and duty as she deals\nwith a world of glittering luxury, conspiracy, sacrifice, and betrayal and\nplays a key role in protecting her land from a dangerously clever and evil\nvillainess. Reprint.\"\r\n2199,2263,7501962,Eric Metaxas,\"Bonhoeffer: Pastor, Martyr, Prophet, Spy\",https://images.gr-assets.com/books/1298218180l/7501962.jpg,4.23,35611,\"biography, nonfiction\",\"Bonhoeffer: Pastor, Martyr, Prophet, SpyEric Metaxas\"\r\n2200,2264,11746513,Janet Evanovich,Explosive Eighteen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407001977l/11746513.jpg,3.92,52993,\"mystery, fiction\",\"Stephanie Plum finds herself in trouble when her seatmate on her Hawaii to\nNewark flight winds up dead and a motley collection of thugs, as well as\nthe FBI, search for a photo the man was reportedly carrying--a photo that\nonly Stephanie has seen.\"\r\n2201,2265,6686092,Michael  Grant,Lies,https://images.gr-assets.com/books/1257814886l/6686092.jpg,4.09,48506,\"fiction, paranormal\",LiesMichael  Grant\r\n2202,2266,672493,A.W. Tozer,Pursuit of God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387714034l/672493.jpg,4.38,35078,\"christian, religion\",\"\"\"The Pursuit of God\"\" is an inspirational guide for Christians seeking to\nget closer to God. The author identifies one of the major problems of the\nChristian Church. He suggests that the Church is making a new type of\nChristian who understands the Christian doctrine better than ever\nthroughout the history, but still fails to understand what it really means\nto be a follower of Christ. Having identified the problem, Tozer offers a\nbeautiful solution that is more practical and mystical than theological. He\nencourages the Christian to take the seeking of God and make it the\nfoundation upon which their life is built. Being a mystic, he focuses on\nexperience, feeling and hearing God's voice as important to faith.\"\r\n2203,2267,9659607,Julie Kagawa,The Iron Knight,https://images.gr-assets.com/books/1375920888l/9659607.jpg,4.23,64066,\"fantasy, romance\",\"In the epic, eagerly awaited fourth book of the Iron Fey series, faery\nprince Ash finally has the opportunity to tell his story. Original.\"\r\n2204,2268,462033,Jacqueline Winspear,Maisie Dobbs,https://images.gr-assets.com/books/1312066155l/462033.jpg,3.91,49820,\"mystery, fiction\",\"In her first case, private detective Maisie Dobbs must investigate the\nreappearance of a dead man who turns up at a cooperative farm called the\nRetreat that caters to men who are recovering their health after World War\nI. Reissue.\"\r\n2205,2270,5453,Ann Brashares,Forever in Blue: The Fourth Summer of the Sisterhood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389829324l/5453.jpg,3.8,56113,\"fiction, romance\",\"As their lives take them in different directions, Lena, Tibby, Carmen, and\nBridget discover many more things about themselves and the importance of\ntheir relationship with each other.\"\r\n2206,2271,34527,Terry Pratchett,Feet of Clay,https://images.gr-assets.com/books/1320490628l/34527.jpg,4.26,46370,\"fantasy, fiction\",Feet of ClayTerry Pratchett\r\n2207,2272,7822895,\"Stieg Larsson, Reg Keeland\",\"Män som hatar kvinnor, Flickan som lekte med elden, Luftslottet som sprängdes\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1275608877l/7822895.jpg,4.46,29944,\"crime, fiction\",\"“Lisbeth Salander is one of the most original characters in a thriller to\ncome along in a while.” --The New York Times The Millennium series that\nbegan with The Girl with the Dragon Tattoo has become this generation’s\ninternational bestselling phenomenon. Disgraced crusading journalist Mikael\nBlomkvist has no idea of the levels of conspiracy he will uncover when is\nenlisted to investigate the unsolved disappearance nearly forty years ago\nof a Swedish industrialist’s niece. And when the pierced and tattooed\ncomputer savant Lisbeth Salander joins him, together they unearth layers\nand layers of secrets and scandals that permeate the highest levels of\nsociety, from politics to finance to the legal system itself--at the bottom\nof which lies unimaginable cruelty perpetrated on the weak. In the course\nof these three shocking, unputdownable thrillers, we encounter one of the\nmost heroic of survivors, as she battles some of the most heartless\nvillains ever imagined.\"\r\n2208,2273,29981261,Dot Hutchison,The Butterfly Garden,https://images.gr-assets.com/books/1461392121l/29981261.jpg,4.07,53568,\"thriller, mystery\",\"Near an isolated mansion lies a beautiful garden. In this garden grow\nluscious flowers, shady trees...and a collection of precious \"\"butterflies\"\"\n--young women who have been kidnapped and intricately tattooed to resemble\ntheir namesakes. Overseeing it all is the Gardener, a brutal, twisted man\nobsessed with capturing and preserving his lovely specimens. When the\ngarden is discovered, a survivor is brought in for questioning. FBI agents\nVictor Hanoverian and Brandon Eddison are tasked with piecing together one\nof the most stomach-churning cases of their careers. But the girl, known\nonly as Maya, proves to be a puzzle herself. As her story twists and turns,\nslowly shedding light on life in the Butterfly Garden, Maya reveals old\ngrudges, new saviors, and horrific tales of a man who'd go to any length to\nhold beauty captive. But the more she shares, the more the agents have to\nwonder what she's still hiding....\"\r\n2209,2274,9370,Tom Robbins,Skinny Legs and All,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554143869l/9370.jpg,4.03,32991,\"fiction, fantasy\",\"When an Arab and a Jew open a restaurant across the street from the U.N., a\nhost of tragic and triumphant characters descend on the strange\nestablishment\"\r\n2210,2275,5604848,Jeaniene Frost,Destined for an Early Grave,https://images.gr-assets.com/books/1315175949l/5604848.jpg,4.34,63734,\"paranormal, romance\",\"Half-vampire Cat Crawfield experiences disturbing visions about a powerful\nvampire with ties to her past who wants Cat for his own, a situation that\ntriggers a deadly battle between the vampire and Cat's undead boyfriend,\nBones.\"\r\n2211,2276,16134782,R.K. Lilley,In Flight,https://images.gr-assets.com/books/1397321579l/16134782.jpg,4.1,64984,\"romance, contemporary\",In FlightR.K. Lilley\r\n2212,2277,13128,James Patterson,Cross,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194831l/13128.jpg,3.99,42476,\"mystery, fiction\",\"When a beloved relative is murdered, Detective Alex Cross vows to hunt down\nthe killer . . . and discovers a secret that could rock the entire world.\nDetective Alex Cross is pulled out of a family celebration and given the\nawful news that a beloved niece was brutally murdered. Alex vows to hunt\ndown the killer, and soon learns that she was mixed up in one of\nWashington, D. C.'s wildest scenes. And she was not this killer's only\nvictim. The hunt for the murderer leads Alex and his girlfriend, Detective\nBrianna Stone, to Washington's most infamous club-a place where every\nfantasy is possible, if you have the credentials to get in. The killer\ncould be one of their patrons, one of Washington's elite who will do\nanything to keep their secrets buried. With astonishing plot twists and\nelectrifying revelations that will keep readers on the edge of their seat,\nI, Alex Cross is the master of suspense at his sharpest and best.\"\r\n2213,2278,19448,Meg Cabot,All-American Girl,https://images.gr-assets.com/books/1291882422l/19448.jpg,3.73,55938,\"romance, fiction\",\"A sophomore girl stops a presidential assassination attempt, is appointed\nTeen Ambassador to the United Nations, and catches the eye of the very cute\nFirst Son.\"\r\n2214,2279,27,Bill Bryson,Neither Here Nor There: Travels in Europe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187396l/27.jpg,3.88,42170,\"travel, nonfiction\",\"Like many of his generation, Bill Bryson backpacked across Europe in the\nearly seventies -- in search of enlightenment, beer, and women. Twenty\nyears later he decided to retrace the journey he undertook in the halcyon\ndays of his youth. The result is Neither Here Nor There, an affectionate\nand riotously funny pilgrimage from the frozen wastes of Scandinavia to the\nchaotic tumult of Istanbul, with stops along the way in Europe's most\ndiverting and historic locales. Like many of his generation, Bill Bryson\nbackpacked across Europe in the early seventies--in search of\nenlightenment, beer, and women. Twenty years later he decided to retrace\nthe journey he undertook in the halcyon days of his youth. The result is\nNeither Here Nor There, an affectionate and riotously funny pilgrimage from\nthe frozen wastes of Scandinavia to the chaotic tumult of Istanbul, with\nstops along the way in Europe's most diverting and historic locales.\"\r\n2215,2280,23228,David Levithan,Boy Meets Boy,https://images.gr-assets.com/books/1356335082l/23228.jpg,3.85,48960,\"romance, fiction\",\"When Paul falls hard for Noah, he thinks he has found his one true love,\nbut when Noah walks out of his life, Paul has to find a way to get him back\nand make everything right once more.\"\r\n2216,2281,17349023,Wally Lamb,We Are Water,https://images.gr-assets.com/books/1361329815l/17349023.jpg,3.79,35457,\"fiction, contemporary\",We Are WaterWally Lamb\r\n2217,2282,3393124,James Patterson,Max ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441219978l/3393124._SY475_.jpg,4.07,57039,\"fantasy, fiction\",\"After the mutant Erasers abduct the youngest member of their group, the\n\"\"bird kids,\"\" who are the result of genetic experimentation, take off in\npursuit and find themselves struggling to understand their own origins and\npurpose.\"\r\n2218,2283,7778981,Alexandra Adornetto,Halo,https://images.gr-assets.com/books/1278885735l/7778981.jpg,3.67,56216,\"fantasy, romance\",\"Three angels are sent down to bring good to the world: Gabriel, the\nwarrior; Ivy, the healer; and Bethany, a teenage girl who is the least\nexperienced of the trio. But she is the most human, and when she is\nromantically drawn to a mortal boy, the angels fear she will not be strong\nenough to save anyone—especially herself—from the Dark Forces. Is love a\ngreat enough power against evil?\"\r\n2219,2284,95186,Kiran Desai,The Inheritance of Loss,https://images.gr-assets.com/books/1327909065l/95186.jpg,3.41,37967,\"fiction, contemporary\",The Inheritance of LossKiran Desai\r\n2220,2285,13813,Raymond E. Feist,A Darkness at Sethanon ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429041258l/13813.jpg,4.17,45104,\"fantasy, fiction\",Fantasy.\r\n2221,2286,16640,\"Johann Wolfgang von Goethe, Burton Pike\",Die Leiden des jungen Werthers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920896l/16640.jpg,3.63,37293,\"classics, fiction\",\"A Major New Translation For more than two centuries the very title of this\nbook has evoked the sensitivity of youth, the suffering of the artist, the\nidea of a hero too full of love to live. When it was first published in\nGermany, in 1774, The Sorrows of Young Werther created a sensation. Banned\nand condemned but embraced--especially by the young--it has continued to\ncaptivate. Now Burton Pike's startlingly new translation expresses as never\nbefore all the anguish, ideas, and ardor of this seminal, iconic novel. And\nhis Introduction reveals both Goethe's inspirations and his influence--on\nworks ranging from Madame Bovary to Frankenstein and beyond. Here is the\nclassic story of Werther, a young man \"\"seeking the infinite\"\" in an art he\ncannot master and a woman he cannot have--the prototype of the Romantic\nhero in a work that anticipated the Romantic Age. Here is a bold new look\nat a masterpiece that has changed lives and, like its beloved hero, will\nnever grow old.\"\r\n2222,2287,3570231,Jeaniene Frost,At Grave's End,https://images.gr-assets.com/books/1448167943l/3570231.jpg,4.31,65397,\"paranormal, romance\",\"Half-vampire Cat Crawfield is in terrible danger when her true identity is\nrevealed to her enemies, while her lover Bones confronts a vengeful woman\nout to destroy him, as they try to prevent lethal magic from being\nunleashed.\"\r\n2223,2288,24687,Alexandra Fuller,Don't Let's Go to the Dogs Tonight: An African Childhood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194903l/24687.jpg,3.96,39298,\"memoir, nonfiction\",\"The author describes her childhood in Africa during the Rhodesian civil war\nof 1971 to 1979, relating her life on farms in southern Rhodesia, Milawi,\nand Zambia with an alcoholic mother and frequently absent father.\"\r\n2224,2289,41424,Robin McKinley,Beauty: A Retelling of the Story of Beauty and the Beast,https://images.gr-assets.com/books/1294192311l/41424.jpg,4.05,54512,\"fantasy, romance\",\"A strange imprisonment Beauty has never liked her nickname. She is thin and\nawkward; it is her two sisters who are the beautiful ones. But what she\nlacks in looks, she can perhaps make up for in courage. When her father\ncomes home with the tale of an enchanted castle in the forest and the\nterrible promise he had to make to the Beast who lives there, Beauty knows\nshe must go to the castle, a prisoner of her own free will. Her father\nprotests that he will not let her go, but she answers, \"\"Cannot a Beast be\ntamed?\"\" Robin McKinley's beloved telling illuminates the unusual love story\nof a most unlikely couple: Beauty and the Beast.\"\r\n2225,2290,6604712,Jonathan Safran Foer,Eating Animals,https://images.gr-assets.com/books/1327877480l/6604712.jpg,4.18,43238,\"nonfiction, philosophy\",\"Like many young Americans, Jonathan Safran Foer spent much of his teenage\nand college years oscillating between enthusiastic carnivore and occasional\nvegetarian. As he became a husband, and then a father, the moral dimensions\nof eating became increasingly important to him. Faced with the prospect of\nbeing unable to explain why we eat some animals and not others, Foer set\nout to explore the origins of many eating traditions and the fictions\ninvolved with creating them. Traveling to the darkest corners of our dining\nhabits, Foer raises the unspoken question behind every fish we eat, every\nchicken we fry, and every burger we grill. Part memoir and part\ninvestigative report, Eating Animals is a book that, in the words of the\nLos Angeles Times, places Jonathan Safran Foer \"\"at the table with our\ngreatest philosophers.\"\"\"\r\n2226,2291,355917,\"Angie Sage, Mark Zug\",Flyte,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442694368l/355917._SX318_.jpg,3.99,54400,\"fantasy, fiction\",\"The second book in the internationally bestselling Septimus Heap series by\nAngie Sage, featuring the funny and fantastic adventures of a wizard\napprentice and his quest to become an ExtraOrdinary Wizard. New York Times\nBestselling Series “Terrifically entertaining. Fans of the first book will\nbe delighted with this sequel to Septimus’s story.” —VOYA (starred review)\n“Readers will find themselves quickly immersed in this imaginative world,\nmoving from one well-crafted adventure to another at a suspenseful pace.”\n—School Library Journal It's been a year since Septimus Heap discovered his\nreal family and true calling to be a wizard. As Apprentice to ExtraOrdinary\nWizard Marcia Overstrand, he is learning the fine arts of Conjurations,\nCharms, and other Magyk, while Jenna is adapting to life as the Princess\nand enjoying the freedom of the Castle. But there is something sinister at\nwork. Marcia is constantly trailed by a menacing Darke Shadow, and\nSeptimus's brother Simon seems bent on a revenge no one understands. Why is\nthe Darke Magyk still lingering? Bringing fantasy to new heights, Angie\nSage continues the journey of Septimus Heap with her trademark humor and\nall of the clever details readers have come to love.\"\r\n2227,2292,13637412,\"سعود السنعوسي, Saud Alsanousi\",ساق البامبو [Saq al-Bambu],https://images.gr-assets.com/books/1336743682l/13637412.jpg,4.25,38969,\"fiction, ebooks\",\"Josephine Mendoza escapes poverty by coming to Kuwait from the Philippines\nto work as a maid, where she meets Rashid, an idealistic only son with\nliterary aspirations. Josephine, with all the wide-eyed naivety of youth,\nbelieves she has found true love. But when she becomes pregnant, and with\nthe rumble of war growing ever louder, Rashid bows to family and social\npressure, and sends her back home with her baby son, José. Brought up\nstruggling with his dual identity, José clings to the hope of returning to\nhis father's country when he is eighteen. He is ill-prepared to plunge\nheadfirst into a world where the fear of tyrants and dictators is nothing\ncompared to the fear of 'what will people say.' And with a Filipino face, a\nKuwaiti passport, an Arab surname and a Christian first name, will his\nfather's country welcome him? The Bamboo Stalk takes an unflinching look at\nthe lives of foreign workers in Arab countries and confronts the universal\nproblems of identity, race and religion.\"\r\n2228,2293,10429092,Rae Carson,The Girl of Fire and Thorns,https://images.gr-assets.com/books/1323448113l/10429092.jpg,3.81,57551,\"fantasy, religion\",\"Once a century, one person is chosen for greatness. Elisa has always felt\npowerless, useless. Now, on her sixteenth birthday, she has become the\nsecret wife of a handsome and worldly king—a king who needs her to be the\nchosen one, not a failure of a princess. And he's not the only one who\nseeks her. Savage enemies, seething with dark magic, are hunting her. A\ndaring, determined revolutionary thinks she could save his people. And he\nlooks at her in a way no man has ever looked at her before. Elisa could be\neverything to those who need her most. If the prophecy is fulfilled. If she\nfinds the power deep within herself. If she doesn't die young. Most of the\nchosen do.\"\r\n2229,2294,7137327,Ann Aguirre,Enclave,https://images.gr-assets.com/books/1327877657l/7137327.jpg,3.92,55155,\"fantasy, romance\",\"New York City has been decimated by war and plague, and most of\ncivilization has migrated to underground enclaves, where life expectancy is\nno more than the early 20's. When Deuce turns 15, she takes on her role as\na Huntress, and is paired with Fade, a teenage Hunter who lived Topside as\na young boy. When she and Fade discover that the neighboring enclave has\nbeen decimated by the tunnel monsters--or Freaks--who seem to be growing\nmore organized, the elders refuse to listen to warnings. And when Deuce and\nFade are exiled from the enclave, the girl born in darkness must survive in\ndaylight--guided by Fade's long-ago memories--in the ruins of a city whose\npopulation has dwindled to a few dangerous gangs. Ann Aguirre's thrilling\nyoung adult novel is the story of two young people in an apocalyptic world\n--facing dangers, and feelings, unlike any they've ever known.\"\r\n2230,2295,4806,\"Dava Sobel, Neil Armstrong\",Longitude,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462711l/4806.jpg,3.95,38151,\"science, nonfiction\",\"The tenth anniversary edition of the dramatic human story of an epic\nscientific quest: the search for the solution of how to calculate longitude\nand the unlikely triumph of an English genius. With a new foreword by\nastronaut Neil Armstrong.\"\r\n2231,2296,232145,Patricia Cornwell,Unnatural Exposure,https://images.gr-assets.com/books/1383293921l/232145.jpg,4.05,43531,\"mystery, fiction\",\"A psychopath with an intimate knowledge of death has an even more intimate\nknowledge of Kay Scarpetta--and many different plans to kill her. This\nclassic #1 \"\"New York Times\"\" bestseller now includes a new Introduction by\nthe author. Reissue.\"\r\n2232,2297,14706,\"Johann Wolfgang von Goethe, Peter Salm\",Faust. Eine Tragödie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435405022l/14706._SY475_.jpg,3.93,43276,\"classics, fiction\",\"Faust. Eine TragödieJohann Wolfgang von Goethe, Peter Salm\"\r\n2233,2298,296662,James W. Loewen,Lies My Teacher Told Me : Everything Your American History Textbook Got Wrong,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255592395l/296662.jpg,3.96,37903,\"nonfiction, history\",\"Criticizes the way history is presented in current textbooks, and suggests\na fresh and more accurate approach to teaching American history.\"\r\n2234,2299,45108,Robin Hobb,Fool's Fate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181998l/45108.jpg,4.38,43985,\"fantasy, fiction\",Fool's FateRobin Hobb\r\n2235,2300,3217221,\"Joe Hill, Gabriel Rodríguez\",Welcome to Lovecraft,https://images.gr-assets.com/books/1377304780l/3217221.jpg,4.18,46590,\"horror, comics\",\"The story of the Keyhouse, a New England mansion, with doors that transform\nall who walk through them...and home to a hate-filled and relentless\ncreature that will not rest until it opens the most terrible door of all.\"\r\n2236,2301,6043849,Patrick Ness,The Ask and the Answer,https://images.gr-assets.com/books/1408312960l/6043849.jpg,4.2,45578,\"fantasy, fiction\",The Ask and the AnswerPatrick Ness\r\n2237,2302,73062,Alexandra Ripley,Scarlett: The Sequel to Margaret Mitchell's Gone With the Wind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438534619l/73062._SY475_.jpg,3.44,38992,\"fiction, romance\",\"Readers can return to Tara . . . to Scarlett and Rhett . . . and to the\ngreates love story in fiction--with the thrilling continuation of America's\nmost beloved saga.\"\r\n2238,2303,30241,Laurell K. Hamilton,Bloody Bones,https://images.gr-assets.com/books/1304126691l/30241.jpg,4.1,56782,\"paranormal, fantasy\",\"Hired to exhume two-hundred-year-old graves in the wake of a land dispute,\nAnita Blake becomes involved in local murders involving three dead\nteenagers and a bloodless corpse that makes her suspect that an evil force\nis preying upon the town\"\r\n2239,2304,46165,F. Scott Fitzgerald,This Side of Paradise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574566410l/46165.jpg,3.68,40074,\"fiction, classics\",This Side of ParadiseF. Scott Fitzgerald\r\n2240,2305,11797365,Blaine Harden,Escape from Camp 14: One Man's Remarkable Odyssey from North Korea to Freedom in the West ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954566l/11797365.jpg,3.99,37392,\"biography, nonfiction\",\"Presents a dramatic account by one of the few survivors born in North\nKorea's infamous political prison camps, describing the brutal conditions\nhe was forced to endure as a child, his witnessing of his family's\nexecutions, and his final, harrowing escape.\"\r\n2241,2306,30263,Kim Harrison,Every Which Way But Dead,https://images.gr-assets.com/books/1347819379l/30263.jpg,4.29,56023,\"fantasy, paranormal\",\"Rachel Morgan's back! Bestselling author Kim Harrison returns with a new\nsupernatural adventure that fans of Laurell K. Hamilton and Charlaine\nHarris won't want to miss. Some days, you just can't win. Witch and former\nbounty hunter Rachel Morgan's managed to escape her corrupt company,\nsurvive living with a vampire, start her own runner service, and face down\na vampire master. But her vampire roommate Ivy is off the wagon, her human\nboyfriend Nick is out of town indefinitely and doesn't sound like he's\ncoming back while the far-too-seductive vampire Kisten is looking way too\ntempting, and there's a turf war erupting in Cincinnati's underworld. And\nthere's a greater evil still. To put the vampire master behind bars and\nsave her family, Rachel made a desperate bargain and now there's hell to\npay—literally. For if Rachel cannot stop him, the archdemon Algaliarept\nwill pull her into the sorcerous ever-after to forfeit her soul as his\nslave. Forever.\"\r\n2242,2307,25852870,Curtis Sittenfeld,Eligible,https://images.gr-assets.com/books/1460477855l/25852870.jpg,3.63,37189,\"fiction, romance\",EligibleCurtis Sittenfeld\r\n2243,2308,6988014,Sarah Thornton,Seven Days in the Art World,https://images.gr-assets.com/books/1358748500l/6988014.jpg,3.54,26047,\"art, nonfiction\",\"Shares observations about the subculture of contemporary art, in a\nnarrative that tours such arenas as a Christie's auction and the Basel Art\nFair to reveal how art has become an entertainment venue, luxury commodity,\nand lifestyle choice.\"\r\n2244,2309,597790,\"J.R.R. Tolkien, Christopher Tolkien, Alan Lee\",The Children of Húrin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390692771l/597790.jpg,3.94,39551,\"fantasy, fiction\",\"A fantasy adventure saga set in the early days of Middle-Earth features\nhumans and elves, dwarves and dragons, orcs and dark sorcerers clashing in\nan epic battle between good and evil.\"\r\n2245,2310,78427,Dave Ramsey,The Total Money Makeover: A Proven Plan for Financial Fitness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441590984l/78427._SX318_.jpg,4.29,37689,\"business, nonfiction\",\"A strategy for changing attitudes about personal finances covers such\ntopics as getting out of debt, the dangers of cash advances and keeping\nspending within income limits.\"\r\n2246,2311,61549,\"Richard Atwater, Florence Atwater, Robert Lawson\",Mr. Popper's Penguins,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185174l/61549._SX318_.jpg,3.95,48964,\"fiction, classics\",\"Mr. Popper dreams of exploring the Anarcartic and gets his wish--with a\nlittle help from Captain Cook, his amazing and fearless penguin guide\"\". . .\n. more fun than twenty-five movies\"\".--The Horn Book.\"\r\n2247,2312,234724,Orson Scott Card,Shadow Puppets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405003131l/234724.jpg,3.88,43517,\"fiction, fantasy\",Shadow PuppetsOrson Scott Card\r\n2248,2313,19103097,Lev Grossman,The Magician's Land,https://images.gr-assets.com/books/1455089828l/19103097.jpg,4.16,40799,\"fantasy, fiction\",The Magician's LandLev Grossman\r\n2249,2314,10979,William Faulkner,Light in August,https://images.gr-assets.com/books/1355360091l/10979.jpg,3.93,42101,\"classics, fiction\",\"In a novel about hopeless perseverance in the face of mortality, guileless\nLena Grove searches for the father of her unborn child, Reverend Hightower\nis plagued by visions of Confederate horsemen, and drifter Joe Christmas is\nconsumed by his mixed ancestry\"\r\n2250,2315,24335,\"E.B. White, Fred Marcellino\",The Trumpet of the Swan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348904255l/24335.jpg,4.06,53191,\"classics, fantasy\",\"Swan Song Like the rest of his family, Louis is a trumpeter swan. But\nunlike his four brothers and sisters, Louis can't trumpet joyfully. In\nfact, he can't even make a sound. And since he can't trumpet his love, the\nbeautiful swan Serena pays absolutely no attention to him. Louis tries\neverything he can think of to win Serena's affection -- he even goes to\nschool to learn to read and write. But nothing seems to work. Then his\nfather steals him a real brass trumpet. Is a musical instrument the key to\nwinning Louis his love?\"\r\n2251,2316,13641208,George Saunders,Tenth of December,https://images.gr-assets.com/books/1349967540l/13641208.jpg,3.96,39183,\"fiction, contemporary\",Tenth of DecemberGeorge Saunders\r\n2252,2317,6944032,Sherrilyn Kenyon,Night Pleasures,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441663482l/6944032._SY475_.jpg,4.23,25985,\"paranormal, romance\",Night PleasuresSherrilyn Kenyon\r\n2253,2318,998,\"Thomas J. Stanley, William D. Danko\",The Millionaire Next Door: The Surprising Secrets of America's Wealthy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348313018l/998.jpg,4,43937,\"business, nonfiction\",\"This bestselling resource identifies seven common traits that show up again\nand again among those who have accumulated wealth. The new edition, the\nfirst since 1998, includes a new Foreword for the 21st century by Dr.\nStanley.\"\r\n2254,2319,5267365,Ally Carter,Don't Judge a Girl by Her Cover,https://images.gr-assets.com/books/1359827132l/5267365.jpg,4.2,55517,\"mystery, romance\",\"When Cammie Morgan visits her roommate Macey in Boston, she thinks she’s in\nfor an exciting end to her summer. After all, she’s there to watch Macey’s\nfather accept the nomination for vice president. But when you go to the\nworld’s best school (for spies), “exciting” and “deadly” are never far\napart. Soon the girls find themselves trapped in a kidnappers’ plot, with\nonly their espionage skills to save them.\"\r\n2255,2320,14318,Bob Dylan,Chronicles: Volume One,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348218030l/14318.jpg,3.98,35468,\"music, biography\",\"WINNER OF THE NOBEL PRIZE IN LITERATURE The celebrated first memoir from\narguably the most influential singer-songwriter in the country, Bob Dylan.\n“I’d come from a long ways off and had started a long ways down. But now\ndestiny was about to manifest itself. I felt like it was looking right at\nme and nobody else.” So writes Bob Dylan in Chronicles: Volume One, his\nremarkable book exploring critical junctures in his life and career.\nThrough Dylan’s eyes and open mind, we see Greenwich Village, circa 1961,\nwhen he first arrives in Manhattan. Dylan’s New York is a magical city of\npossibilities—smoky, nightlong parties; literary awakenings; transient\nloves and unbreakable friendships. Elegiac observations are punctuated by\njabs of memories, penetrating and tough. With the book’s side trips to New\nOrleans, Woodstock, Minnesota, and points west, Chronicles: Volume One is\nan intimate and intensely personal recollection of extraordinary times. By\nturns revealing, poetical, passionate, and witty, Chronicles: Volume One is\na mesmerizing window on Bob Dylan’s thoughts and influences. Dylan’s voice\nis distinctively American: generous of spirit, engaged, fanciful, and\nrhythmic. Utilizing his unparalleled gifts of storytelling and the\nexquisite expressiveness that are the hallmarks of his music, Bob Dylan\nturns Chronicles: Volume One into a poignant reflection on life, and the\npeople and places that helped shape the man and the art.\"\r\n2256,2321,26,Bill Bryson,The Lost Continent: Travels in Small-Town America,https://images.gr-assets.com/books/1404042682l/26.jpg,3.83,40254,\"travel, nonfiction\",\"An unsparing and hilarious account of one man's rediscovery of America and\nhis search for the perfect small town.\"\r\n2257,2322,9500416,Lisa See,Dreams of Joy (Shanghai Girls #2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934242l/9500416._SY475_.jpg,4.06,43863,\"fiction, history\",\"A continuation of \"\"Shanghai Girls\"\" finds a devastated Joy fleeing to China\nto search for her real father while her mother, Pearl, desperately pursues\nher, a dual quest marked by their encounters with the nation's intolerant\nCommunist culture.\"\r\n2258,2323,43326,Sidney Sheldon,Tell Me Your Dreams,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390331844l/43326.jpg,3.93,34445,\"fiction, thriller\",\"Computer whiz Ashley Patterson is convinced she is being stalked. Coworker\nToni Prescott has a penchant for Internet dating and little time for anyone\nelse. And Alette Peters prefers quiet weekends in the arms of a beefcake\nartist. They know virtually nothing about each other--until the three women\nare linked by a murder investigation that will lead to one of the most\nbizarre trials of the century.\"\r\n2259,2324,8248,\"Laura Ingalls Wilder, Garth Williams\",By the Shores of Silver Lake,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449666l/8248.jpg,4.16,51640,\"classics, fiction\",\"The adventures of Laura Ingalls and her family continue as they move from\ntheir little house on the banks of Plum Creek to the wilderness of the\nunsettled Dakota Territory. Here Pa works on the new railroad until he\nfinds a homestead claim that is perfect for their new little house. Laura\ntakes her first train ride as she, her sisters, and their mother come out\nto live with Pa on the shores of Silver Lake. After a lonely winter in the\nsurveyors' house, Pa puts up the first building in what will soon be a\nbrand-new town on the beautiful shores of Silver Lake. The Ingallses'\ncovered-wagon travels are finally over.\"\r\n2260,2325,18630,Iain M. Banks,The Player of Games,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922873l/18630.jpg,4.26,36505,\"fiction, science\",\"The Culture - a human/machine symbiotic society - has thrown up many great\nGame Players, and one of the greatest is Gurgeh. Jernau Morat Gurgeh. The\nPlayer of Games. Master of every board, computer and strategy. Bored with\nsuccess, Gurgeh travels to the Empire of Azad, cruel and incredibly\nwealthy, to try their fabulous game...a game so complex, so like life\nitself, that the winner becomes emperor. Mocked, blackmailed, almost\nmurdered, Gurgeh accepts the game, and with it the challenge of his life -\nand very possibly his death. Praise for Iain M. Banks: \"\"Poetic, humorous,\nbaffling, terrifying, sexy -- the books of Iain M. Banks are all these\nthings and more\"\" -- NME \"\"An exquisitely riotous tour de force of the\nimagination which writes its own rules simply for the pleasure of breaking\nthem.\"\" -- Time Out\"\r\n2261,2327,21343,Patrick Lencioni,The Five Dysfunctions of a Team,https://images.gr-assets.com/books/1400841022l/21343.jpg,4.01,40239,\"business, nonfiction\",The Five Dysfunctions of a TeamPatrick Lencioni\r\n2262,2328,23940,\"William S. Burroughs, Oliver  Harris, Allen Ginsberg\",Junky,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920565l/23940.jpg,3.85,39031,\"fiction, classics\",\"Editor's introduction -- In search of yage, 1953: William Burroughs --\nSeven years later, 1960: Allen Ginsberg to William Burroughs. Burroughs'\nreply -- Epilogue, 1963 -- Appendices.\"\r\n2263,2329,313605,\"Roger Fisher, William Ury, Bruce Patton\",Getting to Yes: Negotiating agreement without giving in,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442289862l/313605._SY475_.jpg,3.88,37205,\"business, psychology\",\"\"\"Since it was first published in 1981 Getting to Yes has become a central\nbook in the Business Canon: the key text on the psychology of negotiation.\nIts message of \"\"principled negotiations\"\"--finding acceptable compromise by\ndetermining which needs are fixed and which are flexible for negotiating\nparties--has influenced generations of businesspeople, lawyers, educators\nand anyone who has sought to achieve a win-win situation in arriving at an\nagreement. It has sold over 8 million copies worldwide in 30 languages, and\nsince it was first published by Penguin in 1991 (a reissue of the original\naddition with Bruce Patton as additional coauthor) has sold over 2.5\nmillion copies--which places it as the #10 bestselling title overall in\nPenguin Books, and #3 bestselling nonfiction title overall. We have\nrecently relicensed the rights to Getting to Yes, and will be doing a new\nrevised edition--a 30th anniversary of the original publication and 20th of\nthe Penguin edition. The authors will be bringing the book up to date with\nnew material and a assessment of the legacy and achievement of Getting to\nYes after three decades\"\"--\"\r\n2264,2330,16136959,R.K. Lilley,Mile high (Up In The Air #2),https://images.gr-assets.com/books/1352489991l/16136959.jpg,4.21,60279,\"romance, contemporary\",Mile high (Up In The Air #2)R.K. Lilley\r\n2265,2331,25111004,Colleen Hoover,Nov-09,https://images.gr-assets.com/books/1447138036l/25111004.jpg,4.41,53321,\"romance, contemporary\",\"Beloved #1 New York Times bestselling author Colleen Hoover returns with an\nunforgettable love story between a writer and his unexpected muse. Fallon\nmeets Ben, an aspiring novelist, the day before her scheduled cross-country\nmove. Their untimely attraction leads them to spend Fallon’s last day in\nL.A. together, and her eventful life becomes the creative inspiration Ben\nhas always sought for his novel. Over time and amidst the various\nrelationships and tribulations of their own separate lives, they continue\nto meet on the same date every year. Until one day Fallon becomes unsure if\nBen has been telling her the truth or fabricating a perfect reality for the\nsake of the ultimate plot twist. Can Ben’s relationship with Fallon—and\nsimultaneously his novel—be considered a love story if it ends in\nheartbreak?\"\r\n2266,2332,29639736,Kerry Lonsdale,Everything We Keep,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1459205790l/29639736._SY475_.jpg,3.84,69018,\"fiction, mystery\",\"Sous chef Aimee Tierney has the perfect recipe for the perfect life: marry\nher childhood sweetheart, raise a family, and buy out her parents\nrestaurant. But when her fiance, James Donato, vanishes in a boating\naccident, her well-baked future is swept out to sea. Instead of walking\ndown the aisle on their wedding day, Aimee is at James s funeral a funeral\nthat leaves her more unsettled than at peace. As Aimee struggles to\nreconstruct her life, she delves deeper into James s disappearance. What\nshe uncovers is an ocean of secrets that make her question everything about\nthe life they built together. And just below the surface is a truth that\nmay set Aimee free or shatter her forever. A luminous debut with unexpected\ntwists, \"\"Everything We Keep\"\" explores the devastation of loss, the euphoria\nof finding love again, and the pulse-racing repercussions of discovering\nthe truth about the ones we hold dear and the lengths they will go to\nprotect us.\"\"\"\r\n2267,2333,15724654,Samantha Towle,The Mighty Storm,https://images.gr-assets.com/books/1345793260l/15724654.jpg,4.19,61203,\"romance, contemporary\",\"Revised edition! This edition of The Mighty Storm has been revised to\ninclude corrected grammar, spelling, and punctuation. A rock-and-roll love\ntriangle...a music journalist's story of a lifetime...the bad boy front man\nwho broke her heart. Tru Bennett was just fourteen years old when her best\nfriend and first love, Jake Wethers, moved from England to America and left\nher brokenhearted. Now twelve years later, Jake is the world's biggest rock\nstar, lead singer of The Mighty Storm and every woman's bad-boy fantasy.\nEvery woman, that is, except Tru. A successful music journalist, Tru knows\nbetter than to mix business with pleasure. But then she receives the\nassignment of a lifetime: interview Jake before his band launches its\nhighly anticipated world tour. Tru vows to keep the meeting strictly\nprofessional--but nothing can prepare her for the sparks that fly the\nmoment their eyes meet again. Now Jake wants Tru to join the band on tour,\noffering her a behind-the-scenes exclusive that any journalist would kill\nfor. There's just one problem: Tru's boyfriend, Will. Can their\nrelationship withstand Tru hitting the road with rock and roll's most\nnotorious womanizer? Or will she risk it all for a second chance with the\none who got away?\"\r\n2268,2334,11250317,Madeline Miller,The Song of Achilles,https://images.gr-assets.com/books/1331154660l/11250317.jpg,4.27,45373,\"fantasy, fiction\",The Song of AchillesMadeline Miller\r\n2269,2335,29405093,Amy Schumer,The Girl with the Lower Back Tattoo,https://images.gr-assets.com/books/1462657819l/29405093.jpg,3.76,47809,\"memoir, nonfiction\",\"Schumer \"\"mines her past for stories about her teenage years, her family,\nrelationships, and sex and shares the experiences that have shaped who she\nis--a woman with the courage to bare her soul to stand up for what she\nbelieves in, all while making us laugh\"\"--Amazon.com.\"\r\n2270,2336,99944,\"Krishna-Dwaipayana Vyasa, Simon Brodbeck, Juan Mascaró\",भगवद्गीता [Bhagavadgītā],https://images.gr-assets.com/books/1383059639l/99944.jpg,4.1,33225,\"religion, philosophy\",\"'The Bhagavad Gita' is an intensely spiritual work that forms the\ncornerstone of the Hindu faith, and is also one of the masterpieces of\nSanskrit poetry. It describes how, at the beginning of a mighty battle\nbetween the Pandava and Kaurava armies, the god Krishna gives spiritual\nenlightenment to the warrior Arjuna, who realizes that the true battle is\nfor his own soul.\"\r\n2271,2337,431,\"Paul Auster, Art Spiegelman\",The New York Trilogy,https://images.gr-assets.com/books/1386924429l/431.jpg,3.92,34730,\"fiction, mystery\",\"A late-night phone call from a stranger involves Quinn, a mystery writer,\nin a baffling murder case stranger than his novels, in a new edition of the\nEdgar-nominated graphic novel. Reprint. 10,000 first printing.\"\r\n2272,2338,89763,Pam Muñoz Ryan,Esperanza Rising,https://images.gr-assets.com/books/1328869043l/89763.jpg,3.91,49106,\"fiction, history\",Esperanza RisingPam Muñoz Ryan\r\n2273,2339,5114,J.D. Salinger,\"Raise High the Roof Beam, Carpenters / Seymour: An Introduction\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390770647l/5114.jpg,4.11,36751,\"fiction, classics\",\"Buddy Glass introduces his older brother and describes the events of\nSeymour's wedding day.\"\r\n2274,2340,7455,Candace Bushnell,Sex and the City,https://images.gr-assets.com/books/1344270731l/7455.jpg,3.37,39710,\"fiction, romance\",\"A chronicle of the mating habits and rituals of America's cultural elite\noffers a look at sex clubs, suburban sexuality, celebrity affairs, and\nother topics\"\r\n2275,2341,30244,Laurell K. Hamilton,\"The Killing Dance (Anita Blake, Vampire Hunter, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388609299l/30244.jpg,4.12,54997,\"paranormal, fantasy\",\"The Killing Dance (Anita Blake, Vampire Hunter, #6)Laurell K. Hamilton\"\r\n2276,2342,12321,\"Friedrich Nietzsche, R.J. Hollingdale, Michael Tanner\",Jenseits von Gut und Böse: Vorspiel einer Philosophie der Zukunft,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607391l/12321.jpg,4.01,37181,\"philosophy, nonfiction\",\"New chronology and further reading Translated by R. J. Hollingdale\nIntroduction by Michael Tanner.\"\r\n2277,2343,108077,Christopher Paul Curtis,The Watsons Go to Birmingham - 1963,https://images.gr-assets.com/books/1320496341l/108077.jpg,3.95,44830,\"fiction, history\",\"The ordinary interactions and everyday routines of the Watsons, an African\nAmerican family living in Flint, Michigan, are drastically changed after\nthey go to visit Grandma in Alabama in the summer of 1963.\"\r\n2278,2344,497199,Charles Bukowski,Factotum,https://images.gr-assets.com/books/1407706616l/497199.jpg,3.96,37376,\"fiction, classics\",\"One of Charles Bukowski's best, this beer-soaked, deliciously degenerate\nnovel follows the wanderings of aspiring writer Henry Chinaski across World\nWar II-era America. Deferred from military service, Chinaski travels from\ncity to city, moving listlessly from one odd job to another, always needing\nmoney but never badly enough to keep a job. His day-to-day existence\nspirals into an endless litany of pathetic whores, sordid rooms, dreary\nembraces, and drunken brawls, as he makes his bitter, brilliant way from\none drink to the next. Charles Bukowski's posthumous legend continues to\ngrow. Factotum is a masterfully vivid evocation of slow-paced, low-life\nurbanity and alcoholism, and an excellent introduction to the fictional\nworld of Charles Bukowski.\"\r\n2279,2345,10215349,Julie Kagawa,The Immortal Rules,https://images.gr-assets.com/books/1323357921l/10215349.jpg,4.1,52376,\"paranormal, fantasy\",The Immortal RulesJulie Kagawa\r\n2280,2346,5632446,Dave Cullen,Columbine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442939134l/5632446._SY475_.jpg,4.26,45029,\"nonfiction, history\",\"EXPANDED WITH A NEW EPILOGUE \"\"The tragedies keep coming. As we reel from\nthe latest horror . . . \"\" So begins a new epilogue, illustrating how\nColumbine became the template for nearly two decades of \"\"spectacle\nmurders.\"\" It is a false script, seized upon by a generation of new killers.\nIn the wake of Newtown, Aurora, and Virginia Tech, the imperative to\nunderstand the crime that sparked this plague grows more urgent every year.\nWhat really happened April 20, 1999? The horror left an indelible stamp on\nthe American psyche, but most of what we \"\"know\"\" is wrong. It wasn't about\njocks, Goths, or the Trench Coat Mafia. Dave Cullen was one of the first\nreporters on scene, and spent ten years on this book-widely recognized as\nthe definitive account. With a keen investigative eye and psychological\nacumen, he draws on mountains of evidence, insight from the world's leading\nforensic psychologists, and the killers' own words and drawings-several\nreproduced in a new appendix. Cullen paints raw portraits of two polar\nopposite killers. They contrast starkly with the flashes of resilience and\nredemption among the survivors.\"\r\n2281,2347,31340,Anne Rice,Lasher,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924775l/31340.jpg,3.84,45760,\"horror, fantasy\",\"Rowan Mayfair, queen of a coven of witches, flees the compelling,\nirresistible Lasher, the demon father of her child\"\r\n2282,2349,15814872,\"Mark Owen, Kevin Maurer\",No Easy Day: The Firsthand Account of the Mission That Killed Osama Bin Laden,https://images.gr-assets.com/books/1345815909l/15814872.jpg,3.95,32267,\"history, nonfiction\",\"Examines the mission that killed Osama Bin Laden and describes previously\nunreported missions that illustrate the life and work of a SEAL and the\nevolution of the team after the events of September 11.\"\r\n2283,2350,13056159,Laura Moriarty,The Chaperone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442892878l/13056159._SY475_.jpg,3.84,42112,\"fiction, romance\",\"Accompanying a future famous actress from her Wichita home to New York,\nchaperone Cora Carlisle shares a life-changing five-week period with her\nambitious teenage charge during which she discovers the promise of the 20th\ncentury and her own purpose in life. By the author of The Center of\nEverything. Reprint.\"\r\n2284,2351,232123,Patricia Cornwell,All That Remains,https://images.gr-assets.com/books/1341835948l/232123.jpg,4.05,46604,\"mystery, crime\",\"Dr. Kay Scarpetta is up against a serial killer who targets young lovers.\nFour couples have disappeared, only to turn up dead months afterward...Now\na fifth pair is missing, and the mother of the girl is a powerhouse\nrecently named by the president to head his war on drugs.\"\r\n2285,2352,10596,\"Richard Bachman, Stephen King\",The Regulators,https://images.gr-assets.com/books/1364033309l/10596.jpg,3.63,49405,\"horror, fiction\",\"On a perfect summer afternoon in Wentworth, Ohio, many of the citizens who\nlive on Poplar Street are killed mysteriously, and at the center of the\nmystery is a young boy named Seth Garon, whose supernatural powers are just\nawakening. 1,250,000 first printing. Lit Guild, Doubleday, & Mystery Guild\nMain.\"\r\n2286,2353,25101,\"Neil Gaiman, Matt Wagner, George Pratt, Dick Giordano, Kelley Jones, P. Craig Russell, Mike Dringenberg, Malcolm Jones III, Todd Klein, Harlan Ellison\",The Sandman: Season of Mists,https://images.gr-assets.com/books/1327937313l/25101.jpg,4.54,44811,\"comics, fantasy\",\"The Sandman: Season of MistsNeil Gaiman, Matt Wagner, George Pratt, Dick Giordano, Kelley Jones, P. Craig Russell, Mike Dringenberg, Malcolm Jones III, Todd Klein, Harlan Ellison\"\r\n2287,2354,13130,\"James Patterson, Andrew Gross\",Judge & Jury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440619495l/13130._SY475_.jpg,3.98,38516,\"mystery, fiction\",\"Judge & JuryJames Patterson, Andrew Gross\"\r\n2288,2355,54539,George Eliot,Silas Marner: The Weaver of Raveloe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347323528l/54539.jpg,3.6,48196,\"classics, fiction\",\"Embittered by a false accusation and disappointed in friendship and love,\nthe weaver Silas Marner retreats into a life alone with his loom and his\ngold. Fate steals his gold and replaces it with a golden-haired foundling\nchild.\"\r\n2289,2356,13644052,Jennifer L. Armentrout,Origin,https://images.gr-assets.com/books/1398100888l/13644052.jpg,4.44,63533,\"romance, fantasy\",\"Origin by Jennifer Armentrout, Book Four of the bestselling Lux series\nDaemon will do anything to get Katy back. After the successful but\ndisastrous raid on Mount Weather, he's facing the impossible. Katy is gone.\nTaken. Everything becomes about finding her. Taking out anyone who stands\nin his way? Done. Burning down the whole world to save her? Gladly.\nExposing his alien race to the world? With pleasure. All Katy can do is\nsurvive. Surrounded by enemies, the only way she can come out of this is to\nadapt. After all, there are sides of Daedalus that don't seem entirely\ncrazy, but the group's goals are frightening and the truths they speak even\nmore disturbing. Who are the real bad guys? Daedalus? Mankind? Or the\nLuxen? Together, they can face anything. But the most dangerous foe has\nbeen there all along, and when the truths are exposed and the lies come\ncrumbling down, which side will Daemon and Katy be standing on? And will\nthey even be together?\"\r\n2290,2357,13839,Michael Pollan,The Botany of Desire: A Plant's-Eye View of the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403642467l/13839.jpg,4.05,37200,\"science, nonfiction\",\"Focusing on the human relationship with plants, the author of Second Nature\nuses botany to explore four basic human desires--sweetness, beauty,\nintoxication, and control--through portraits of four plants that embody\nthem: the apple, tulip, marijuana, and potato. 100,000 first printing.\"\r\n2291,2358,7930335,\"Kami Garcia, Margaret Stohl\",Beautiful Redemption,https://images.gr-assets.com/books/1331049809l/7930335.jpg,3.94,48268,\"fantasy, paranormal\",\"Beautiful RedemptionKami Garcia, Margaret Stohl\"\r\n2292,2359,6746018,Kate Morton,The Distant Hours,https://images.gr-assets.com/books/1358273860l/6746018.jpg,3.87,46498,\"fiction, mystery\",The Distant HoursKate Morton\r\n2293,2360,23125266,Clare Mackintosh,I Let You Go,https://images.gr-assets.com/books/1429875945l/23125266.jpg,4.09,39990,\"mystery, fiction\",I Let You GoClare Mackintosh\r\n2294,2361,325128,Robert Louis Stevenson,Kidnapped,https://images.gr-assets.com/books/1328869457l/325128.jpg,3.78,44150,\"classics, fiction\",KidnappedRobert Louis Stevenson\r\n2295,2362,85431,H.G. Bissinger,\"Friday Night Lights: A Town, a Team, and a Dream\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266468877l/85431.jpg,4.11,35799,\"sports, nonfiction\",\"Named Sports Illustrated's best football book of all time and a #1 NYT\nbestseller, this is the classic story of a high school football team whose\nwin-loss record has a profound influence on the town around them. Return\nonce again to the timeless account of the Permian Panthers of Odessa -- the\nwinningest high-school football team in Texas history. Socially and\nracially divided, Odessa isn't known to be a place big on dreams, but every\nFriday night from September to December, when the Panthers play football,\ndreams can come true. With frankness and compassion, Pulitzer Prize winner\nH. G. Bissinger unforgettably captures a season in the life of Odessa and\nshows how single-minded devotion to the team shapes the community and\ninspires -- and sometimes shatters -- the teenagers who wear the Panthers'\nuniforms. The inspiration for the hit television program and film of the\nsame name, this anniversary edition features a new afterword by the author.\"\r\n2296,2363,180066,David Sheff,Beautiful Boy: A Father's Journey Through His Son's Meth Addiction,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438824993l/180066._SY475_.jpg,4.03,36682,\"memoir, nonfiction\",\"The story of one teenager's descent into methamphetamine addiction is told\nfrom his father's point of view, describing how a varsity athlete and honor\nstudent became addicted to the dangerous drug and its impact on his family.\"\r\n2297,2364,12900174,Abbi Glines,\"The Vincent Brothers (The Vincent Boys, #1)\",https://images.gr-assets.com/books/1327184585l/12900174.jpg,3.98,62029,\"romance, contemporary\",\"The Vincent Brothers (The Vincent Boys, #1)Abbi Glines\"\r\n2298,2365,261240,Edgar Allan Poe,The Cask of Amontillado,https://images.gr-assets.com/books/1327936575l/261240.jpg,4.09,48364,\"classics, horror\",The Cask of AmontilladoEdgar Allan Poe\r\n2299,2366,1715,\"Ovid, David Raeburn, Denis Feeney\",Metamorphoses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420818932l/1715.jpg,4.03,42590,\"poetry, fiction\",\"A new translation in hexameter verse of Ovid's narrative poem embraces more\nthan two hundred mythical tales linked by the theme of transformation,\nincorporating many famed myths and legends of ancient Greece and Rome.\"\r\n2300,2367,11206,Julia Alvarez,In the Time of the Butterflies,https://images.gr-assets.com/books/1411410276l/11206.jpg,4.13,39917,\"fiction, history\",\"It is November 25, 1960, and three beautiful sisters have been found near\ntheir wrecked Jeep at the bottom of a 150-foot cliff on the north coast of\nthe Dominican Republic. The official state newspaper reports their deaths\nas accidental. It does not mention that a fourth sister lives. Nor does it\nexplain that the sisters were among the leading opponents of Gen. Rafael\nLeonidas Trujillo’s dictatorship. It doesn’t have to. Everybody knows of\nLas Mariposas—“The Butterflies.” In this extraordinary novel, the voices of\nall four sisters—Minerva, Patria, María Teresa, and the survivor,\nDedé—speak across the decades to tell their own stories, from hair ribbons\nand secret crushes to gunrunning and prison torture, and to describe the\neveryday horrors of life under Trujillo’s rule. Through the art and magic\nof Julia Alvarez’s imagination, the martyred Butterflies live again in this\nnovel of courage and love, and the human cost of political oppression.\"\r\n2301,2368,77398,Robert Morgan,Gap Creek : The Story Of A Marriage (Oprah's Book Club),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438354175l/77398._SY475_.jpg,3.71,42122,\"fiction, romance\",\"During their first year of marriage, Julie Harmon and Hank Richards move to\nGap Creek, South Carolina, where a flood that nearly kills them tests the\nendurance of their relationship.\"\r\n2302,2369,9680718,Jennifer L. Armentrout,Half-Blood,https://images.gr-assets.com/books/1311865840l/9680718.jpg,4.16,60629,\"fantasy, paranormal\",\"Originally published October 2011 Now includes bonus novella DAIMON The\nHematoi descend from the unions of gods and mortals, and the children of\ntwo Hematoi-pure-bloods-have godlike powers. Children of Hematoi and\nmortals-well, not so much. Half-bloods only have two options: become\ntrained Sentinels who hunt and kill daimons or become servants in the homes\nof the pures. Seventeen-year-old Alexandria would rather risk her life\nfighting than waste it scrubbing toilets, but she may end up slumming it\nanyway. There are several rules that students at the Covenant must follow.\nAlex has problems with them all, but especially rule #1: Relationships\nbetween pures and halfs are forbidden. Unfortunately, she's crushing hard\non the totally hot pure-blood Aiden. But falling for Aiden isn't her\nbiggest problem-staying alive long enough to graduate the Covenant and\nbecome a Sentinel is. If she fails in her duty, she faces a future worse\nthan death or slavery: being turned into a daimon, and being hunted by\nAiden. And that would kind of suck.\"\r\n2303,2370,93263,\"Bo Hampton, Tracey Hampton, Washington Irving\",The Legend of Sleepy Hollow,https://images.gr-assets.com/books/1171253283l/93263.jpg,3.96,43183,\"classics, fiction\",\"This is Bo Hampton's 1993 Legend of Sleepy Hollow, a faithful adaptation of\nWashington Irving's tale surrounding the ghostly inhabitants of Tarrytown,\nNew York around the time of the American Revolution. The cast of characters\nis headed up by the Headless Horseman himself! This edition boasts new\ncovers and 16 pages of new material, including numerous preliminary\nsketches of scenes and characters.\"\r\n2304,2371,27126,Jen Lancaster,\"Bitter is the New Black : Confessions of a Condescending, Egomaniacal, Self-Centered Smartass, Or, Why You Should Never Carry A Prada Bag to the Unemployment Office\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183618l/27126.jpg,3.9,41884,\"nonfiction, fiction\",\"A hilarious memoir chronicles the adventures and misadventures of a woman\nwhose perfect life, perfect job, and perfect man vanish when she goes from\na six-figures career to unemployment. Original.\"\r\n2305,2372,12716613,Nora Roberts,The Witness,https://images.gr-assets.com/books/1329921937l/12716613.jpg,4.19,40943,\"romance, mystery\",\"Having had a traumatic experience 12 years prior, Abigail Lowery lives in a\nremote area, holed up on a house with high-tech security measures, a fierce\nguard dog and a cache of weapons, but this only serves to further inrtrigue\npolice chief Brooks Gleason, who aims to protect Abigail from what she\nfears.\"\r\n2306,2373,21718,Karin Slaughter,Blindsighted,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390283925l/21718.jpg,4.1,41857,\"mystery, thriller\",BlindsightedKarin Slaughter\r\n2307,2374,292408,Wallace Stegner,Angle of Repose,https://images.gr-assets.com/books/1329151576l/292408.jpg,4.27,40289,\"fiction, classics\",\"Stegner's Pulitzer Prize-winning novel is the story of four generations in\nthe life of an American family. A wheelchair-bound retired historian\nembarks on a monumental quest: to come to know his grandparents, now long\ndead. The unfolding drama of the story of the American West sets the tone\nfor Stegner's masterpiece.\"\r\n2308,2375,18989,John le Carré,\"Tinker, Tailor, Soldier, Spy\",https://images.gr-assets.com/books/1327889127l/18989.jpg,4.04,40871,\"fiction, mystery\",\"British agent George Smiley ferrets out a mole in the Secret Service and\nbegins his epic game of international chess with his Soviet counterpart, an\nagent named Karla. By the best-selling author of The Honourable Schoolboy.\nReissue.\"\r\n2309,2376,99085,Brian Jacques,Lord Brocktree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442624011l/99085._SY475_.jpg,3.95,42764,\"fantasy, fiction\",\"The mountain of Salamandastron needs the help of Brocktree the Badger Lord\nwhen evil comes in the form of the Blue Hordes of Ungatt Trunn, the Earth\nShaker.\"\r\n2310,2377,13253276,Veronica Rossi,Through the Ever Night,https://images.gr-assets.com/books/1340892848l/13253276.jpg,4.17,54902,\"romance, fantasy\",Through the Ever NightVeronica Rossi\r\n2311,2378,712313,Elin Hilderbrand,Barefoot,https://images.gr-assets.com/books/1344271499l/712313.jpg,3.77,39531,\"fiction, romance\",BarefootElin Hilderbrand\r\n2312,2379,6520,James Frey,My Friend Leonard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182556l/6520.jpg,3.83,34996,\"fiction, memoir\",My Friend LeonardJames Frey\r\n2313,2380,72159,Tennessee Williams,Cat on a Hot Tin Roof,https://images.gr-assets.com/books/1389369390l/72159.jpg,4.07,43781,\"classics, fiction\",\"The tragic lives of a guilt-ridden alcoholic, his sexually-frustrated wife,\nand a tyrannical patriarch are violently exposed in Williams' renowned\nplay.\"\r\n2314,2381,1829709,James Patterson,The Final Warning,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440631506l/1829709._SY475_.jpg,3.86,55993,\"fantasy, fiction\",\"Hold on tight for the wildest ride yet as Max and the flock take on global\nwarming--Earth's biggest threat--in this #1 New York Times bestselling\nseries. Maximum Ride and the other members of the flock are just like\nordinary kids--only they have wings and can fly. It seems like a dream come\ntrue...until they're hunted by the world's nastiest villains. Max returns\nin a chilling adventure unlike any other. Safe havens for the six highly-\nsought-after winged kids have become increasingly hard to find, so the\nflock takes refuge in Antarctica with a team of environmentalists studying\nthe effects of global warming. In this remote wilderness--whether pursued\nby corrupt governments, bioengineered bad-guys, or the harsh forces of\nnature--survival of the fittest takes a new twist!\"\r\n2315,2382,45109,Robin Hobb,The Golden Fool,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182007l/45109.jpg,4.32,43700,\"fantasy, fiction\",The Golden FoolRobin Hobb\r\n2316,2383,204276,David Baldacci,Split Second,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432495543l/204276._SY475_.jpg,3.98,38387,\"mystery, fiction\",\"The world can change forever in a single... SPLIT SECOND Michelle Maxwell\nhas just wrecked her promising career at the Secret Service. Against her\ninstincts, she let a presidential candidate out of her sight for the\nbriefest moment, and the man whose safety was her responsibility vanished\ninto thin air. Sean King knows how the younger agent feels. Eight years\nearlier, the hard-charging Secret Service agent allowed his attention to be\ndiverted for a split second. And the candidate he was protecting was gunned\ndown before his eyes. Now Michelle and Sean are about to see their\ndestinies converge. Drawn into a maze of lies, secrets, and deadly\ncoincidences, the two discredited agents uncover a shocking truth: that the\nseparate acts of violence that shattered their lives were really a long\ntime in the making-and are a long way from over...\"\r\n2317,2384,9681098,Michael Connelly,The Fifth Witness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439836790l/9681098._SY475_.jpg,4.17,37594,\"mystery, fiction\",The Fifth WitnessMichael Connelly\r\n2318,2385,91981,Tad Williams,The Dragonbone Chair,https://images.gr-assets.com/books/1477417642l/91981.jpg,3.95,45102,\"fantasy, fiction\",The Dragonbone ChairTad Williams\r\n2319,2387,71776,Jan Karon,At Home in Mitford (Mitford Years #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924130l/71776.jpg,4.11,44509,\"fiction, christian\",\"A portrait of the mysteries and miracles of everyday life introduces the\nsmall North Carolina town of Mitford and its colorful inhabitants,\nincluding Tim, a bachelor rector, who is falling in love with his neighbor\"\r\n2320,2388,6828896,Tony Hsieh,\"Delivering Happiness: A Path to Profits, Passion, and Purpose\",https://images.gr-assets.com/books/1344267716l/6828896.jpg,4.01,37601,\"business, nonfiction\",\"Now in trade paperback, the hip, iconoclastic CEO of Zappos shows how a\ndifferent kind of corporate culture can make a huge difference in achieving\nremarkable results -- by actually creating a company culture that values\nhappiness --and then delivers on it. Pay brand-new employees $2,000 to quit\nMake customer service the responsibility of the entire company-not just a\ndepartment Focus on company culture as the #1 priority Apply research from\nthe science of happiness to running a business Help employees grow-both\npersonally and professionally Seek to change the world Oh, and make money\ntoo . . . Sound crazy? It's all standard operating procedure at Zappos, the\nonline retailer that's doing over $1 billion in gross merchandise sales\nannually. After debuting as the highest-ranking newcomer in Fortune\nmagazine's annual \"\"Best Companies to Work For\"\" list in 2009, Zappos was\nacquired by Amazon in a deal valued at over $1.2 billion on the day of\nclosing. In DELIVERING HAPPINESS, Zappos CEO Tony Hsieh shares the\ndifferent lessons he has learned in business and life, from starting a worm\nfarm to running a pizza business, through LinkExchange, Zappos, and more.\nFast-paced and down-to-earth, DELIVERING HAPPINESS shows how a very\ndifferent kind of corporate culture is a powerful model for achieving\nsuccess-and how by concentrating on the happiness of those around you, you\ncan dramatically increase your own.\"\r\n2321,2389,542414,Anthony Horowitz,Scorpia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257255l/542414.jpg,4.16,44197,\"fiction, mystery\",\"After being told that his father was an assassin for a criminal\norganization, fourteen-year-old Alex goes to Italy to find out more and\nbecomes involved in a plan to kill thousands of English schoolchildren.\nReprint.\"\r\n2322,2390,18712886,Erika Johansen,The Queen of the Tearling,https://images.gr-assets.com/books/1417685148l/18712886.jpg,4.02,42472,\"fantasy, fiction\",The Queen of the TearlingErika Johansen\r\n2323,2391,3552023,Gordon Korman,\"One False Note (The 39 Clues, Book 2)\",https://images.gr-assets.com/books/1357211034l/3552023.jpg,3.88,41970,\"mystery, fiction\",\"Amy and Dan Cahill's quest to find the million dollars takes them to\nVienna, where they must outwit their power-hungry relatives as they seek to\nsolve a clue involving Mozart.\"\r\n2324,2392,46777,Holly Black,Tithe: A Modern Faerie Tale,https://images.gr-assets.com/books/1342120818l/46777.jpg,3.73,57326,\"fantasy, paranormal\",\"Sixteen-year-old Kaye, who has been visited by faeries since childhood,\ndiscovers that she herself is a magical faerie creature with a special\ndestiny, in a briskly paced modern-day fantasy filled with angst-ridden\nteens, romance, and dashing dark heroes. An ALA Best Book for Young Adults.\nReprint.\"\r\n2325,2393,455930,Lee Child,Echo Burning,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388386347l/455930.jpg,3.98,38524,\"thriller, fiction\",\"While hitchhiking through West Texas, former MP Jack Reacher encounters a\nyoung woman seeking protection for herself and her little girl from her\nmonstrous husband, due to be released from jail, and his horrible family.\nReissue.\"\r\n2326,2394,1895792,L.J. Smith,The Fury and Dark Reunion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347454337l/1895792.jpg,3.74,51745,\"fantasy, paranormal\",\"Elena: transformed, the golden girl has become what she once feared and\ndesired. Stefan: tormented by losing Elena, he's determined to end his feud\nwith Damon once and for all—whatever the cost. But slowly he begins to\nrealize that his brother is not his only enemy. Damon: at last, he\npossesses Elena. But will his thirst for revenge against Stefan poison his\ntriumph? Or can they come together to face one final battle? Collected here\nin one edition are the third and fourth volumes of The Vampire Diaries, a\nriveting conclusion to the tale of two vampire brothers and the beautiful\ngirl torn between them.\"\r\n2327,2395,24378015,\"Colleen Hoover, Tarryn Fisher\",Never Never,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428934147l/24378015.jpg,4.12,54590,\"romance, contemporary\",\"#1 New York Times bestselling author of Hopeless joins forces with the New\nYork Times bestselling author of Mud Vein. Together, they have created a\ngripping, romantic tale unlike any other. \"\"How odd to be made of flesh,\nbalanced on bone, and filled with a soul you've never met.\"\" Charlize\nWynwood and Silas Nash have been best friends since they could walk.\nThey've been in love since the age of fourteen. But as of this\nmorning...they are complete strangers. Their first kiss, their first fight,\nthe moment they fell in love...every memory has vanished. \"\"I don't care\nwhat our real first kiss was,\"\" he says. \"\"That's the one I want to\nremember.\"\" Charlize and Silas must work together to uncover the truth about\nwhat happened to them and why. But the more they learn about the couple\nthey used to be...the more they question why they were ever together to\nbegin with. \"\"I want to remember what it feels like to love someone like\nthat. And not just anyone. I want to know what it feels like to love\nCharlie.\"\" Never Never: A Novella Series, Part One. \"\"Twisted, sickly wicked,\nyet warming with a deep-layered love story. Tarryn and Colleen combine\ntheir forces for good. Alone they are talented. Together this epic duo is\nunstoppable.\"\" ~Pam, The Book Avenue.\"\r\n2328,2396,15818362,Elizabeth Haynes,Into the Darkest Corner,https://images.gr-assets.com/books/1355923186l/15818362.jpg,4.1,20725,\"thriller, mystery\",Into the Darkest CornerElizabeth Haynes\r\n2329,2397,76237,\"Richard Lancelyn Green, Ronald Knox, Julian Symons, Various\",The Further Adventures of Sherlock Holmes (Classic Crime),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170889427l/76237._SY475_.jpg,4.4,36863,\"mystery, classics\",\"Eleven stories follow Holmes as he investigates cases involving a\nmysterious disappearance, the theft of a rare book, a series of\ninexplicable death threats, and murder\"\r\n2330,2398,79378,James Patterson,Roses Are Red,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437948895l/79378._SY475_.jpg,4.02,44383,\"mystery, fiction\",Roses Are RedJames Patterson\r\n2331,2399,43893,Terry Goodkind,\"Naked Empire (Sword of Truth, #8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182014l/43893.jpg,3.82,39682,\"fantasy, fiction\",\"A poisoned Richard Rahl faces a difficult choice when he is promised an\nantidote and the salvation of an endangered empire if he will surrender his\nbeloved wife, Kahlan Amnell, to his enemy.\"\r\n2332,2400,92147,James Rollins,Map of Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564764099l/92147.jpg,4.06,42828,\"thriller, fiction\",Map of BonesJames Rollins\r\n2333,2401,22571540,Harlan Coben,The Stranger,https://images.gr-assets.com/books/1408564426l/22571540.jpg,3.85,32333,\"mystery, thriller\",The StrangerHarlan Coben\r\n2334,2402,1537534,Sara Shepard,Unbelievable,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518061137l/1537534._SY475_.jpg,4.06,46722,\"contemporary, fiction\",\"Four pretty little liars' charmed lives have turned into living nightmares.\nEmily's been shipped off to Iowa to live with her überconservative cousins.\nAria's boyfriend is behind bars—because of her. Spencer's afraid she was\ninvolved in Ali's murder. But Hanna's fate is far worse: She's clinging to\nlife in the hospital because she knew too much. If these girls don't start\nlistening to me, Hanna's going to look like the lucky one.\"\r\n2335,2403,45195,\"E.M. Forster, Oliver Stallybrass, Pankaj Mishra\",A Passage to India,https://images.gr-assets.com/books/1421883612l/45195.jpg,3.66,46675,\"classics, fiction\",\"After a mysterious incident during their visit to the Marabar Caves, the\ncharming Dr Aziz is accused of assaulting Adela Quested, a naive young\nEnglishwoman. His trial exposes the fragile structure of Anglo-Indian\nrelations and the racism inherent in colonialism is exposed.\"\r\n2336,2404,19549841,Rachel Hartman,Seraphina,https://images.gr-assets.com/books/1387577872l/19549841.jpg,3.98,33510,\"fantasy, romance\",\"In a world where dragons and humans coexist in an uneasy truce and dragons\ncan assume human form, Seraphina, whose mother died giving birth to her,\ngrapples with her own identity amid magical secrets and royal scandals,\nwhile she struggles to accept and develop her extraordinary musical\ntalents.\"\r\n2337,2405,26046,Nora Roberts,Morrigan's Cross,https://images.gr-assets.com/books/1457728199l/26046.jpg,4.14,43455,\"romance, fantasy\",\"As the powerful vampire Lilith prepares to quench her thirst for\ndestruction by unleashing her fury in battle, a medieval sorcerer, one of\nthe circle of six charged by the goddess Morrigan, must travel through time\nto stop her.\"\r\n2338,2406,49824,Jean M. Auel,The Mammoth Hunters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257676l/49824.jpg,3.88,44834,\"fiction, history\",\"Ayla and Jondalar embark on a journey that takes them to the Mamutoi, the\nMammoth Hunters, and Ayla must make a fateful choice between two men--\nJondalar and Ranec, the Mamutoi's master carver--in a story of Ice Age\nEurope. Reissue.\"\r\n2339,2407,2903736,Jim Butcher,Princeps' Fury,https://images.gr-assets.com/books/1315082776l/2903736.jpg,4.35,42827,\"fantasy, fiction\",\"After achieving a fragile alliance with the savage Canim, Alera's oldest\nfoes, Tavi of Calderon is confronted by an invasion by the Vord, which\nforces the Aleran legions and Canim warriors into a desperate battle for\nsurvival against a dreaded mutual enem\"\r\n2340,2408,73968,Erich Segal,Love Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388812297l/73968.jpg,3.6,41177,\"romance, classics\",\"The Phenomenal National Bestseller and Enduring Classic He is Oliver Barett\nIV, a rich jock from a stuffy WASP family on his way to a Harvard degree\nand a career in law. She is Jenny Cavilleri, a wisecracking working-class\nbeauty studying music at Radcliffe. Opposites in nearly every way, Oliver\nand Jenny immediately attract, sharing a love that defies everything ...\nyet will end too soon. Here is a love that will linger in your heart now\nand forever.\"\r\n2341,2409,858513,Kevin Henkes,Chrysanthemum,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348668136l/858513.jpg,4.31,43520,\"fiction, fantasy\",\"She was a perfect baby, and she had a perfect name. Chrysanthemum. When she\nwas old enough to appreciate it, Chrysanthemum loved her name. And then she\nstarted school. \"\"I'm named after my grandmother,\"\" said Victoria. \"\"You're\nnamed after a flower.\"\" Chrysanthemum wilted. Life at school didn't improve.\nIn fact, it got worse. Then the students were introduced to their music\nteacher, Mrs. Twinkle. Mrs. Delphinium Twinkle. And suddenly, Chrysanthemum\nblossomed....\"\r\n2342,2410,11808950,Wendy Higgins,Sweet Evil,https://images.gr-assets.com/books/1337613719l/11808950.jpg,4.13,58879,\"paranormal, fantasy\",\"Discovering at the age of 16 that she is the daughter of a guardian angel\nand a demon--the only one of her kind--southern teen Anna struggles to\nfight her father's dark legacy while falling for the mysterious Kaidan.\nOriginal. 50,000 first printing.\"\r\n2343,2411,21484,Herman Wouk,The Winds of War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442187661l/21484._SY475_.jpg,4.36,41940,\"fiction, history\",The Winds of WarHerman Wouk\r\n2344,2412,12341557,\"Stephen King, Jae Lee\",The Wind Through the Keyhole,https://images.gr-assets.com/books/1328001524l/12341557.jpg,4.14,35888,\"fantasy, fiction\",\"The Wind Through the KeyholeStephen King, Jae Lee\"\r\n2345,2413,68527,Bernard Cornwell,The Last Kingdom,https://images.gr-assets.com/books/1407107780l/68527.jpg,4.23,38890,\"fiction, fantasy\",\"In the middle years of the ninth-century, the fierce Danes stormed onto\nBritish soil, hungry for spoils and conquest. Kingdom after kingdom fell to\nthe ruthless invaders until but one realm remained. And suddenly the fate\nof all England—and the course of history—depended upon one man, one king.\nFrom New York Times bestselling storyteller Bernard Cornwell comes a\nrousing epic adventure of courage, treachery, duty, devotion, majesty,\nlove, and battle as seen through the eyes of a young warrior who straddled\ntwo worlds.\"\r\n2346,2414,81948,Michael E. Gerber,The E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435673032l/81948._SY475_.jpg,3.98,37671,\"nonfiction, business\",The E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About ItMichael E. Gerber\r\n2347,2415,281235,\"James Howe, Deborah Howe, Alan Daniel\",Bunnicula: A Rabbit-Tale of Mystery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348802537l/281235.jpg,3.83,50699,\"fantasy, mystery\",\"Bunnicula: A Rabbit-Tale of MysteryJames Howe, Deborah Howe, Alan Daniel\"\r\n2348,2416,66678,R.A. Salvatore,Exile ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389680240l/66678.jpg,4.24,37728,\"fantasy, fiction\",\"In the sequel to Homeland, dark elf Drizzt Do'Urden and his feline\ncompanion, Guenhwyvar, must travel into an endless labyrinth of tunnel\nmazes and vast chambers as they make their escape from the underground\nrealm of the dark elves. Reissue.\"\r\n2349,2417,11947829,Amanda Hocking,Ascend,https://images.gr-assets.com/books/1397955256l/11947829.jpg,4.08,26350,\"fantasy, paranormal\",\"Amanda Hocking is an indie publishing sensation whose self-published novels\nhave sold millions of copies all over the world. Ascend is the final\nchapter in her bestselling Trylle trilogy—and you'll never guess how it\nends! Wendy Everly is facing an impossible choice. The only way to save the\nTrylle from their deadliest enemy is by sacrificing herself. If she doesn't\nsurrender to the Vittra, her people will be thrust into a brutal war\nagainst an unbeatable foe. But how can Wendy leave all her friends\nbehind...even if it's the only way to save them? The stakes have never been\nhigher, because her kingdom isn't the only thing she stands to lose. After\nfalling for both Finn and Loki, she's about to make the ultimate\nchoice...who to love forever. One guy has finally proven to be the love of\nher life—and now all their lives might be coming to an end. Everything has\nbeen leading to this moment. The future of her entire world rests in her\nhands—if she's ready to fight for it.\"\r\n2350,2418,10822858,\"Jussi Adler-Olsen, Lisa Hartford\",Kvinden i buret,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270380l/10822858.jpg,3.98,36825,\"mystery, crime\",\"Kvinden i buretJussi Adler-Olsen, Lisa Hartford\"\r\n2351,2419,23876,Gabriel García Márquez,Del amor y otros demonios,https://images.gr-assets.com/books/1324357590l/23876.jpg,3.98,29639,\"fiction, classics\",\"Al poner a la venta un antiguo convento de clarisas, surge un cadáver con\n22 metros de largo...\"\r\n2352,2421,1297985,Oliver Sacks,Musicophilia: Tales of Music and the Brain,https://images.gr-assets.com/books/1320494159l/1297985.jpg,3.88,38152,\"music, science\",\"The author draws on the individual experiences of patients, musicians,\ncomposers, and ordinary people to explore the complex human response to\nmusic and how music can affect those suffering from a variety of ailments.\"\r\n2353,2422,25526965,Stephen King,End of Watch,https://images.gr-assets.com/books/1468705472l/25526965.jpg,4.09,33780,\"horror, fiction\",End of WatchStephen King\r\n2354,2423,3684856,Christopher Moore,Fool,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434220875l/3684856._SY475_.jpg,3.96,41502,\"fiction, fantasy\",FoolChristopher Moore\r\n2355,2424,69136,John Connolly,The Book of Lost Things,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253367l/69136.jpg,3.98,43086,\"fantasy, fiction\",The Book of Lost ThingsJohn Connolly\r\n2356,2425,49195,Bill Clinton,My Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431741967l/49195._SY475_.jpg,3.72,35852,\"biography, history\",\"The former president looks back on his life and career, discussing his\nyouth and education, his early public service, his years as governor of\nArkansas, and his accomplishments during two terms in the White House.\"\r\n2357,2426,59952,\"Frank Miller, Lynn Varley\",300,https://images.gr-assets.com/books/1438711575l/59952.jpg,3.93,38323,\"comics, fiction\",\"300Frank Miller, Lynn Varley\"\r\n2358,2427,6697305,Linda Sue Park,Storm Warning,https://images.gr-assets.com/books/1357211087l/6697305.jpg,3.98,39115,\"mystery, fiction\",Storm WarningLinda Sue Park\r\n2359,2428,6950688,Ally Carter,Only the Good Spy Young,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441070330l/6950688._SX318_.jpg,4.29,51772,\"mystery, romance\",\"When danger follows Cammie \"\"The Chameleon\"\" Morgan to London, she must again\nface off with the Circle of Cavan to find the rogue operative who may have\ninfiltrated the halls of the Gallagher Academy for Exceptional Young Women.\nBy the author of Cross My Heart and Hope to Spy.\"\r\n2360,2429,455941,Lee Child,The Persuader,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174926770l/455941._SY475_.jpg,4.09,37434,\"thriller, fiction\",The PersuaderLee Child\r\n2361,2431,1991039,\"Jo Nesbø, Don Bartlett\",Flaggermusmannen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236348090l/1991039.jpg,3.56,22230,\"mystery, crime\",\"FlaggermusmannenJo Nesbø, Don Bartlett\"\r\n2362,2432,407234,Nora Roberts,\"Blood Brothers (Sign of Seven, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177488l/407234.jpg,4.15,42696,\"romance, paranormal\",\"Blood Brothers (Sign of Seven, #1)Nora Roberts\"\r\n2363,2433,10912,Jodi Picoult,Picture Perfect,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924655l/10912.jpg,3.52,41631,\"fiction, contemporary\",\"Falling madly in love and beginning what she believed would be the perfect\nmarriage with Hollywood leading man Alex Rivers, renowned anthropologist\nCassie Barret is heartbroken when their fairy-tale romance falls apart.\nReissue.\"\r\n2364,2434,294963,\"Nobuhiro Watsuki, Kenichiro Yagi\",るろうに剣心 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273758l/294963.jpg,4.33,36765,\"manga, comics\",\"るろうに剣心 1Nobuhiro Watsuki, Kenichiro Yagi\"\r\n2365,2435,9888775,Miranda Kenneally,Catching Jordan,https://images.gr-assets.com/books/1327875803l/9888775.jpg,3.85,50383,\"romance, contemporary\",Catching JordanMiranda Kenneally\r\n2366,2436,18600,Joe Simpson,Touching the Void: The True Story of One Man's Miraculous Survival,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442800485l/18600.jpg,4.2,36048,\"nonfiction, biography\",\"Joe Simpson and his climbing partner, Simon Yates, had just reached the top\nof a 21,000-foot peak in the Andes when disaster struck. Simpson plunged\noff the vertical face of an ice ledge, breaking his leg. In the hours that\nfollowed, darkness fell and a blizzard raged as Yates tried to lower his\nfriend to safety. Finally, Yates was forced to cut the rope, moments before\nhe would have been pulled to his own death. The next three days were an\nimpossibly grueling ordeal for both men. Yates, certain that Simpson was\ndead, returned to base camp consumed with grief and guilt over abandoning\nhim. Miraculously, Simpson had survived the fall, but crippled, starving,\nand severely frostbitten was trapped in a deep crevasse. Summoning vast\nreserves of physical and spiritual strength, Simpson crawled over the\ncliffs and canyons of the Andes, reaching base camp hours before Yates had\nplanned to leave. How both men overcame the torments of those harrowing\ndays is an epic tale of fear, suffering, and survival, and a poignant\ntestament to unshakable courage and friendship.\"\r\n2367,2437,15784909,Colleen Hoover,This Girl,https://images.gr-assets.com/books/1364326075l/15784909.jpg,4.18,58808,\"romance, contemporary\",\"In this final installment of the Slammed series, Will, now married to\nLayken, tells the story of their complicated relationship from his point of\nview, sharing his most intimate feelings and thoughts and confronting the\npainful memories of his past, which leads to shocking revelations.\nOriginal.\"\r\n2368,2438,205330,Simms Taback,There Was an Old Lady Who Swallowed a Fly,https://images.gr-assets.com/books/1172674507l/205330.jpg,4.2,41867,\"poetry, fiction\",\"...version of a famous American folk poem first heard in the U.S. in the\n1940's.\"\r\n2369,2439,2255,Dan Millman,Way of the Peaceful Warrior: A Book That Changes Lives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423514049l/2255.jpg,4.13,34136,\"spirituality, fiction\",Way of the Peaceful Warrior: A Book That Changes LivesDan Millman\r\n2370,2440,12781,Salman Rushdie,The Satanic Verses,https://images.gr-assets.com/books/1281988101l/12781.jpg,3.71,37354,\"fiction, classics\",\"Gibreel Farishta, a legendary Indian movie star, and Saladin Chamcha, the\nman of a thousand voices, fall earthward from a bombed jet toward the sea,\nsinging rival verses in an eternal wrestling match between good and evil.\nReprint. 20,000 first printing.\"\r\n2371,2441,6178648,Barbara Demick,Nothing to Envy: Ordinary Lives in North Korea,https://images.gr-assets.com/books/1320449375l/6178648.jpg,4.42,37284,\"nonfiction, history\",\"Follows the lives of six North Koreans over fifteen years, a chaotic period\nthat saw the rise to power of Kim Jong Il and the devastation of a famine\nthat killed one-fifth of the population, illustrating what it means to live\nunder the most repressive totalitarian regime today.\"\r\n2372,2442,866222,\"Jack Welch, Suzy Welch\",Winning,https://images.gr-assets.com/books/1366775828l/866222.jpg,3.8,33160,\"business, biography\",\"Jack Welch knows how to win. During his forty-year career at General\nElectric, he led the company to year-after-year success around the globe,\nin multiple markets, against brutal competition. His honest, be-the-best\nstyle of management became the gold standard in business, with his\nrelentless focus on people, teamwork, and profits. Since Welch retired in\n2001 as chairman and chief executive officer of GE, he has traveled the\nworld, speaking to more than 250,000 people and answering their questions\non dozens of wide-ranging topics. Inspired by his audiences and their\nhunger for straightforward guidance, Welch has written both a philosophical\nand pragmatic book, which is destined to become the bible of business for\ngenerations to come. It clearly lays out the answers to the most difficult\nquestions people face both on and off the job. Welch's objective is to\nspeak to people at every level of an organization, in companies large and\nsmall. His audience is everyone from line workers to MBAs, from project\nmanagers to senior executives. His goal is to help everyone who has a\npassion for success. Welch begins Winning with an introductory section\ncalled \"\"Underneath It All,\"\" which describes his business philosophy. He\nexplores the importance of values, candor, differentiation, and voice and\ndignity for all. The core of Winning is devoted to the real \"\"stuff\"\" of\nwork. This main part of the book is split into three sections. The first\nlooks inside the company, from leadership to picking winners to making\nchange happen. The second section looks outside, at the competition, with\nchapters on strategy, mergers, and Six Sigma, to name just three. The next\nsection of the book is about managing your career—from finding the right\njob to achieving work-life balance. Welch's optimistic, no excuses, get-it-\ndone mind-set is riveting. Packed with personal anecdotes and written in\nJack's distinctive no b.s. voice, Winning offers deep insights, original\nthinking, and solutions to nuts-and-bolts problems that will change the way\npeople think about work.\"\r\n2373,2443,17158596,Gail McHugh,Collide,https://images.gr-assets.com/books/1359831056l/17158596.jpg,4.24,55720,\"romance, contemporary\",\"A missed first encounter...Colliding with a second chance...On the heels of\ngraduating college and trying to cope with her mother's death, Emily Cooper\nmoves to New York City for a fresh start.While harboring secrets of his\nown, Dillon Parker takes care of Emily through her grief. Knowing he can't\nlive without her by his side, he's sweet, thoughtful, and everything Emily\nhas ever wanted in a man.Until she meets Gavin Blake-a rich and notorious\nplayboy who is dangerously sexy and charming as hell. Emily tries to deny\nthe instant connection she feels, but Mr. Tall, Dark, and Handsome is not\ninclined to let go so easily. Recovering from his own painful past, Gavin\nwill stop at nothing to win Emily over. This unexpected encounter compels\nEmily to question her decisions, forcing her to make a choice that will\ndestroy friendships, shatter hearts, and forever change her life.\"\r\n2374,2444,3860977,Jonah Lehrer,How We Decide,https://images.gr-assets.com/books/1382946716l/3860977.jpg,3.81,32507,\"psychology, science\",\"A best-selling journey inside the human mind draws on the latest tools of\nneuroscience to explore the decision-making process as a blend of both\nfeeling and reason and, utilizing cutting-edge research, explains how we\ncan make better decisions. By the author of Proust Was a Neuroscientist.\nReprint.\"\r\n2375,2445,91661,Laurie R. King,The Beekeeper's Apprentice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1590945421l/91661._SY475_.jpg,4.08,46665,\"mystery, fiction\",\"A chance meeting with a Sussex beekeeper turns into a pivotal, personal\ntransformation when fifteen-year-old Mary Russell discovers that the\nbeekeeper is the reclusive, retired detective Sherlock Holmes, who soon\ntakes on the role of mentor and teacher.\"\r\n2376,2446,356321,\"Jean de Brunhoff, Merle S. Haas\",\"Histoire de Babar, le petit éléphant\",https://images.gr-assets.com/books/1353333493l/356321.jpg,4.07,50976,\"fiction, classics\",\"An orphaned baby elephant goes to live in the city with an old lady who\ngives him everything he wants, but he eventually returns to the forest,\nwhere he is crowned king of the elephants.\"\r\n2377,2447,8458018,Michael Scott,The Warlock,https://images.gr-assets.com/books/1386634577l/8458018.jpg,4.17,41271,\"fantasy, fiction\",\"Josh has chosen to side neither with his twin sister Sophie nor Nicholas\nFlamel, but rather to fight alongside Dr. John Dee and Virginia Dare, while\nthe immortal Machiavelli and Billy the Kid plan to set loose the monsters\nof Alcatraz on San Francisco.\"\r\n2378,2448,6316821,Jim Butcher,First Lord's Fury,https://images.gr-assets.com/books/1327903582l/6316821.jpg,4.37,41816,\"fantasy, fiction\",\"Legendary man of war and the rightful First Lord of Alera, Gaius Octavian\nmust save his world from eternal darkness, and stand against the savage\nVord in the Calderon Valley. By a best-selling author. Reprint.\"\r\n2379,2449,6834410,Tom Rachman,The Imperfectionists,https://images.gr-assets.com/books/1327935648l/6834410.jpg,3.54,36571,\"fiction, ebooks\",\"Preoccupied by personal challenges while running a struggling newspaper in\nRome, an obituary writer confronts mortality, an eccentric publisher\nobsesses over his dog, and other staff members uncover the paper's founding\nby an impulsive millionaire.\"\r\n2380,2450,16151178,Katja Millay,The Sea of Tranquility,https://images.gr-assets.com/books/1465919812l/16151178.jpg,4.34,52982,\"romance, contemporary\",\"Teenage former piano prodigy Nastya Kashnikov and Josh Bennett, a lonely\nboy at her school, enter into an intense relationship, with neither unaware\nof the dark secrets the other's past holds. Original.\"\r\n2381,2451,9517,\"Marjane Satrapi, Anjali Singh\",Persepolis 2 ,https://images.gr-assets.com/books/1327865598l/9517.jpg,4.23,45718,\"comics, memoir\",\"Here is the fascinating and equally unforgettable sequel to PERSEPOLIS,\nMarjane Satrapi's memoir-in-comic strips of growing up in Iran during the\nIslamic Revolution. PERSEPOLIS ended on a cliffhanger in 1984, just as\nfourteen-year-old Marjane was leaving behind her home in Tehran, escaping\nfundamentalism and the war with Iraq to begin a new life in the West. Here\nwe follow our young, intrepid heroine through the next eight years of her\nlife- an eye-opening and sometimes lonely four years of high school in\nVienna, followed by a supremely educational and heartwrenching four years\nback home in Iran. Just as funny and heartbreaking as its predecessor -\nwith perhaps an even greater sense of the ridiculous inspired by life in a\nfundamentalist state - PERSEPOLIS 2 is also as clear-eyed and searing in\nits condemnation of fundamentalism and its cost to the human spirit. In its\ndepiction of the universal trials of adolescent life and growing into\nadulthood - here compounded by being an outsider both abroad and at home,\nand by living in a state where you have no right to show your hair, wear\nmake-up, run in public, date, or question authority - it's raw, honest, and\nincredibly illuminating.\"\r\n2382,2452,64217,Terry Pratchett,Pyramids,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439098306l/64217._SY475_.jpg,3.88,44710,\"fantasy, fiction\",\"Unlike most teenaged boys, Teppic isn't chasing girls and working at the\nmall. Instead he's just inherited the throne of the desert kingdom\nDjelibeybi—a job that's come a bit earlier than he expected (a turn of fate\nhis recently departed father wasn't too happy about either). It's bad\nenough being new on the job, but Teppic hasn't a clue as to what a pharaoh\nis supposed to do. After all, he's been trained at Ankh-Morpork's famed\nassassins' school, across the sea from the Kingdom of the Sun. First,\nthere's the monumental task of building a suitable resting place for Dad—a\npyramid to end all pyramids. Then there are the myriad administrative\nduties, such as dealing with mad priests, sacred crocodiles, and marching\nmummies. And to top it all off, the adolescent pharaoh discovers deceit and\nbetrayal—not to mention a headstrong handmaiden—at the heart of his realm.\"\r\n2383,2453,149302,Raymond E. Feist,Silverthorn,https://images.gr-assets.com/books/1272603402l/149302.jpg,4.06,42148,\"fantasy, fiction\",\"Arutha, the new king of Midkemia, is threatened by an evil power that\nraises the dead and inspirits them to do battle with the living, as Jimmy\nthe Hand searches for an antidote to the poison that threatens young\nprincess Anita.\"\r\n2384,2454,1314332,Jenny Downham,Before I Die,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348002855l/1314332.jpg,3.84,38551,\"romance, fiction\",\"Tessa, a terminally ill teenaged girl, makes and carries out a list of\nthings to do before she dies. Reader's Guide available. Reprint.\"\r\n2385,2455,6728738,Elizabeth Gilbert,Committed: A Skeptic Makes Peace with Marriage,https://images.gr-assets.com/books/1472258183l/6728738.jpg,3.39,37410,\"memoir, nonfiction\",Committed: A Skeptic Makes Peace with MarriageElizabeth Gilbert\r\n2386,2456,104378,Sarah Dessen,Keeping the Moon,https://images.gr-assets.com/books/1359205648l/104378.jpg,3.86,51537,\"romance, contemporary\",\"Fifteen-year-old Colie, a former fat girl, spends the summer working as a\nwaitress in a beachside restaurant, staying with her overweight and\neccentric Aunt Mira, and trying to explore her sense of self.\"\r\n2387,2457,18080920,Veronica Roth,Four: The Transfer,https://images.gr-assets.com/books/1420493627l/18080920.jpg,4.19,42240,\"fiction, fantasy\",Four: The TransferVeronica Roth\r\n2388,2458,43887,Terry Goodkind,\"Chainfire (Sword of Truth, #9)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442855514l/43887._SY475_.jpg,3.95,38743,\"fantasy, fiction\",\"Richard struggles to find his missing wife Kahlan in spite of the bizarre\nfact that no one else seems to believe she actually exists or that he is\nmarried to her.\"\r\n2389,2459,129650,\"Julia Child, Simone Beck, Louisette Bertholle\",Mastering the Art of French Cooking,https://images.gr-assets.com/books/1333577773l/129650.jpg,4.33,34055,\"cookbooks, nonfiction\",\"Mastering the Art of French CookingJulia Child, Simone Beck, Louisette Bertholle\"\r\n2390,2460,9876989,\"Kazue Kato, John Werry\",青の祓魔師 1,https://images.gr-assets.com/books/1432642113l/9876989.jpg,4.36,39464,\"manga, fantasy\",\"青の祓魔師 1Kazue Kato, John Werry\"\r\n2391,2461,604803,Terry Goodkind,\"Confessor (Sword of Truth, #11)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442796715l/604803._SY475_.jpg,4.08,37862,\"fantasy, fiction\",Fantasy-roman.\r\n2392,2462,88815,Mohsin Hamid,The Reluctant Fundamentalist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441985417l/88815._SY475_.jpg,3.67,33879,\"fiction, contemporary\",The Reluctant FundamentalistMohsin Hamid\r\n2393,2463,12432220,Jennifer A. Nielsen,The False Prince,https://images.gr-assets.com/books/1333227435l/12432220.jpg,4.22,49667,\"fantasy, fiction\",\"In the country of Carthya, a devious nobleman engages four orphans in a\nbrutal competition to be selected to impersonate the king's long-missing\nson in an effort to avoid a civil war.\"\r\n2394,2464,85386,John Updike,\"Rabbit, Run\",https://images.gr-assets.com/books/1333578676l/85386.jpg,3.57,39485,\"fiction, classics\",\"Tired of the responsibility of married life, Rabbit Angstrom leaves his\nwife and home.\"\r\n2395,2465,56627,Daniel Todd Gilbert,Stumbling on Happiness,https://images.gr-assets.com/books/1327947323l/56627.jpg,3.82,37601,\"nonfiction, psychology\",\"A smart, witty, accessible, and laugh-out-loud funny reflection on human\nnature brilliantly describes all that science has to tell us about the\nuniquely human ability to envision the future, and how likely we are to\nenjoy it when we get there. Reprint.\"\r\n2396,2466,400412,T.S. Eliot,The Waste Land and Other Poems,https://images.gr-assets.com/books/1372992691l/400412.jpg,4.23,38462,\"poetry, classics\",\"Loosely based on the Arthurian legend of the Holy Grail and the Fisher\nKing, \"\"The Waste Land,\"\" which first appeared in 1922, is a landmark work of\nModernist poetry. Containing hundreds of allusions and quotations from\nother works, \"\"The Waste Land\"\" is marked by a disjointed structure which\nmoves between voices and imagery without a clear delineation for the\nreader, a hallmark of Modernist literature. Arguably Eliot's most famous\nwork, the theme of the poem, as the title would suggest, is ultimately a\ndire one, of disillusionment, despair, and death. Also included in this\ncollection is \"\"The Love Song of J. Alfred Prufrock\"\" a work which preceded\n\"\"The Waste Land\"\" having been first published in 1910. Regarded as the\nbeginning of Eliot's influential period, \"\"Prufrock\"\" was considered\nidiosyncratic at first but with time has been recognized as an important\nshift in poetry from the Romantic era to the Modernist one. \"\"The Wasteland\nand Other Poems,\"\" which includes an additional twenty-three poems, collects\nsome of the most pivotal works of the Modernist literary movement, which\nwould establish Eliot as one of the most important poets of the 20th\ncentury. This edition is printed on premium acid-free paper.\"\r\n2397,2467,201146,\"Else Holmelund Minarik, Maurice Sendak\",Little Bear,https://images.gr-assets.com/books/1318518124l/201146.jpg,4.22,46731,\"fiction, classics\",\"Meet Little Bear, a friend to millions of children. And meet Mother Bear,\nwho is there whenever Little Bear needs her. When it is cold and snowy\noutside, she finds just the right outfit for Little Bear to play in. When\nhe goes to the moon, she has a hot lunch waiting for him on his return. At\nnight she helps him get to sleep. And, of course, she never forgets his\nbirthday.\"\r\n2398,2468,206172,Edgar Allan Poe,The Pit and the Pendulum,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172678940l/206172._SX318_.jpg,4.15,40289,\"classics, horror\",The Pit and the PendulumEdgar Allan Poe\r\n2399,2469,34529,Terry Pratchett,Lords and Ladies,https://images.gr-assets.com/books/1469186110l/34529.jpg,4.14,43980,\"fantasy, fiction\",Lords and LadiesTerry Pratchett\r\n2400,2470,62530,Terry Pratchett,Thud!,https://images.gr-assets.com/books/1320495268l/62530.jpg,4.29,44496,\"fantasy, fiction\",\"Debuting at #4, this \"\"New York Times\"\" bestseller by the popular author of\n\"\"Going Postal\"\" describes a game of Trolls and Dwarfs, where the player must\ntake both sides to win.\"\r\n2401,2471,28876,Naomi Novik,His Majesty's Dragon,https://images.gr-assets.com/books/1376392909l/28876.jpg,4.05,48381,\"fantasy, fiction\",\"When the HMS Reliant captures a French ship and its priceless cargo, an\nunhatched dragon egg, Captain Will Laurence is swept into an unexpected\nkinship with an extraordinary creature and joins the elite Aerial Corps as\na master of the dragon Temaraire, in which role he must match wits with the\npowerful dragon-borne forces of Napoleon Bonaparte. Original.\"\r\n2402,2472,444304,\"Holly Black, Tony DiTerlizzi\",The Field Guide,https://images.gr-assets.com/books/1358701476l/444304.jpg,3.85,56913,\"fantasy, fiction\",\"The Field GuideHolly Black, Tony DiTerlizzi\"\r\n2403,2474,1303,\"Robert Greene, Joost Elffers\",The 48 Laws of Power,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385228992l/1303.jpg,4.18,37613,\"business, psychology\",\"Draws on the philosophies of Machiavelli, Sun-tzu, Von Clausewitz, and\nothers, combining them with the legacies of powerful people throughout\nhistory to offer essential ideas of the ways of power.\"\r\n2404,2475,41667,Jean Craighead George,My Side of the Mountain ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204221l/41667.jpg,4.03,47002,\"fiction, classics\",My Side of the Mountain Jean Craighead George\r\n2405,2476,3392089,\"Susanna Kearsley, Rosalyn Landor\",The Winter Sea,https://images.gr-assets.com/books/1410915489l/3392089.jpg,4.07,39572,\"romance, fiction\",\"The Winter SeaSusanna Kearsley, Rosalyn Landor\"\r\n2406,2477,5861926,Peter Lerangis,The Sword Thief,https://images.gr-assets.com/books/1357211037l/5861926.jpg,3.87,41021,\"mystery, fiction\",\"Spies report that Amy and Dan Cahill seem to be tracking the life of one of\nthe most powerful fighters the world has ever known, but his secrets are\nwell-guarded and the price to uncover them just might be lethal.\"\r\n2407,2478,85437,Robin Cook,Coma,https://images.gr-assets.com/books/1309286934l/85437.jpg,3.86,29071,\"fiction, thriller\",\"When more than a dozen minor-surgery patients die inexplicably on the\noperating table, a medical student determines to find the reason.\"\r\n2408,2479,46945,\"Hubert Selby Jr., Darren Aronofsky, Richard Price\",Requiem for a Dream,https://images.gr-assets.com/books/1353949849l/46945.jpg,4.1,37995,\"fiction, classics\",\"Over twenty years after its first publication in 1978, Requiem for a Dream\nmakes it to the big screen in a major motion picture starring Ellen\nBurstyn, Jennifer Connelly, Marlon Wayans, Jared Leto, and Christopher\nMcDonald. Directed by Darren Aronofsky, the highly acclaimed director of\nPi, the movie was released in November 2000. In this searing novel, two\nyoung hoods, Harry and Tyrone, and a girlfriend fantasize about scoring a\npound of uncut heroin and getting rich. But their habit gets the better of\nthem, consumes them and destroys their dreams. \"\"Selby's place is in the\nfront rank of American novelists. His work has the power, the intimacy with\nsuffering and morality, the honesty and moral urgency of Dostoevsky's....To\nunderstand Selby's work is to understand the anguish of America.\"\" -- The\nNew York Times Book Review\"\r\n2409,2481,76401,Dee Brown,Bury My Heart at Wounded Knee: An Indian History of the American West,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1604058784l/76401._SY475_.jpg,4.21,40565,\"history, classics\",\"Documents and personal narratives record the experiences of Native\nAmericans during the nineteenth century.\"\r\n2410,2482,128066,\"Władysław Szpilman, Anthea Bell\",Śmierć Miasta ,https://images.gr-assets.com/books/1491050715l/128066.jpg,4.24,43578,\"history, biography\",\"The 75th Anniversary Edition of the memoir that inspired Roman Polanski's\nOscar-winning film, with a new introduction by Szpilman's son, Andrzej On\nSeptember 23, 1939, Wladyslaw Szpilman played Chopin’s Nocturne in C-sharp\nminor live on the radio as shells exploded outside—so loudly that he\ncouldn’t hear his piano. It was the last live music broadcast from Warsaw:\nThat day, a German bomb hit the station, and Polish Radio went off the air.\nThough he lost his entire family, Szpilman survived in hiding. In the end,\nhis life was saved by a German officer who heard him play the same Chopin\nnocturne on a piano found among the rubble. Written in the immediate\naftermath of the war, The Pianist conveys a shattering immediacy found in\nfew books about that time and stands as a stunning testament to human\nendurance and healing through compassion. This edition includes a foreword\nby Andrzej Szpilman, extracts from the diary of Wilm Hosenfeld, and an\nepilogue by Wolf Biermann.\"\r\n2411,2483,16033902,Maya Banks,Rush,https://images.gr-assets.com/books/1359943771l/16033902.jpg,3.97,53937,\"romance, contemporary\",\"Gabe Hamilton enters into an intense, secretive relationship with her older\nbrother's best friend, as they both leave themselves open to risk and\nbetrayal.\"\r\n2412,2484,3052106,\"Ian Edginton, Oscar Wilde, I.N.J. Culbard\",The Picture of Dorian Gray: A Graphic Novel ,https://images.gr-assets.com/books/1328766635l/3052106.jpg,4.12,40650,\"classics, fiction\",\"A handsome dissolute man who sells his soul for eternal youth is horrified\nto see the reflection of his degeneration in the distorted features of his\nportrait, in a text that is in graphic novel format.\"\r\n2413,2485,11557,Robert McCammon,Swan Song,https://images.gr-assets.com/books/1445981000l/11557.jpg,4.28,38018,\"horror, fiction\",\"In a nightmarish, post-holocaust world, an ancient evil roams a devastated\nAmerica, gathering the forces of human greed and madness, searching for a\nchild named Swan who possesses the gift of life.\"\r\n2414,2486,22522805,Kazuo Ishiguro,The Buried Giant,https://images.gr-assets.com/books/1451444392l/22522805.jpg,3.42,31271,\"fantasy, fiction\",The Buried GiantKazuo Ishiguro\r\n2415,2487,68494,China Miéville,Perdido Street Station,https://images.gr-assets.com/books/1393537963l/68494.jpg,3.96,41058,\"fantasy, fiction\",\"In squalid and brutal New Crobuzon, a Garuda requests eccentric crisis\ntheorist Isaac to work with lab specimens, particularly a caterpillar that\nfeeds on a hallucinatory drug until its evolution, when it will invoke\nmalignant terror.\"\r\n2416,2488,4070493,Carrie Jones,Need,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436293030l/4070493._SX318_.jpg,3.71,54819,\"fantasy, paranormal\",NeedCarrie Jones\r\n2417,2489,2442,Terry Pratchett,Witches Abroad,https://images.gr-assets.com/books/1403326937l/2442.jpg,4.2,47875,\"fantasy, fiction\",Witches AbroadTerry Pratchett\r\n2418,2490,721012,\"Geoffrey Crayon, Washington Irving, William L. Hedges\",\"The Sketch Book of Geoffrey Crayon, Gent\",https://images.gr-assets.com/books/1309285607l/721012.jpg,3.93,42952,\"fiction, mystery\",\"The Sketch Book of Geoffrey Crayon, GentGeoffrey Crayon, Washington Irving, William L. Hedges\"\r\n2419,2491,117,Frank Herbert,Heretics of Dune,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186151l/117.jpg,3.83,40415,\"fiction, fantasy\",\"Thousands of years after the death of God Emperor Leto II, the Bene\nGesserit and the Bene Tleilax struggle to direct the future of Dune, now\ncalled Rakis\"\r\n2420,2492,772852,\"David Wilkerson, John Sherrill, Elizabeth Sherrill\",The Cross and the Switchblade,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347295767l/772852.jpg,4.2,37349,\"christian, biography\",\"The story of a small-town pastor who found his real ministry among the\nstreet gangs of New York and succeeded in founding the Teen Challenge\nmovement\"\r\n2421,2493,346087,Jim Butcher,Captain's Fury,https://images.gr-assets.com/books/1315083292l/346087.jpg,4.38,42769,\"fantasy, fiction\",\"After years of war with the invading Canim, Tavi of Calderon, now Captain\nof the First Aleran Legion, uncovers information about an even greater\nthreat, and must risk everything to forge a desperate alliance between the\nAleran and Cane to take on their mutual enemy.\"\r\n2422,2494,9912994,Chuck Palahniuk,Damned,https://images.gr-assets.com/books/1296236310l/9912994.jpg,3.38,33787,\"fantasy, horror\",DamnedChuck Palahniuk\r\n2423,2495,222458,Cynthia Lord,Rules,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434685354l/222458._SX318_.jpg,3.96,42950,\"fiction, contemporary\",\"Frustrated at life with an autistic brother, twelve-year-old Catherine\nlongs for a normal existence but her world is further complicated by a\nfriendship with a young paraplegic.\"\r\n2424,2496,8584686,Karen Russell,Swamplandia!,https://images.gr-assets.com/books/1320536498l/8584686.jpg,3.21,38955,\"fiction, fantasy\",Swamplandia!Karen Russell\r\n2425,2497,49353,Michael Connelly,The Last Coyote,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170358620l/49353._SY475_.jpg,4.21,37717,\"mystery, fiction\",The Last CoyoteMichael Connelly\r\n2426,2498,2715,Mark Kurlansky,Salt: A World History,https://images.gr-assets.com/books/1414608893l/2715.jpg,3.73,39402,\"history, nonfiction\",\"Explores the role of salt in shaping history, discussing how one of the\nworld's most sought-after commodities has influenced economics, science,\npolitics, religion, and eating customs.\"\r\n2427,2499,31173,\"Charlotte Brontë, A.S. Byatt, Μαρία Λαϊνά, Ignes Sodre\",Villette,https://images.gr-assets.com/books/1320412741l/31173.jpg,3.75,41793,\"classics, fiction\",\"Lucy Snowe leaves her home in England to teach at a girls' boarding school\non the Continent.\"\r\n2428,2500,10552338,Neal Stephenson,Reamde,https://images.gr-assets.com/books/1305993115l/10552338.jpg,3.96,34839,\"fiction, thriller\",ReamdeNeal Stephenson\r\n2429,2501,34502,Terry Pratchett,Soul Music,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168566175l/34502.jpg,4.02,43626,\"fantasy, fiction\",\"A new contribution to a humorous saga follows the adventures of Death's\ngranddaughter, who enjoys her inherited family job until she falls in love,\nand Imp the Bard, who finds ill luck in the attainment of a dream come\ntrue.\"\r\n2430,2502,14740588,Janet Evanovich,Notorious Nineteen,https://images.gr-assets.com/books/1345653049l/14740588.jpg,3.9,42656,\"mystery, fiction\",Notorious NineteenJanet Evanovich\r\n2431,2503,6117055,Richard Dawkins,The Greatest Show on Earth: The Evidence for Evolution,https://images.gr-assets.com/books/1302127919l/6117055.jpg,4.16,34088,\"science, nonfiction\",\"'It is no accident that we see green almost wherever we look. It is no\naccident that we find ourselves perched on one tiny twig in the midst of a\nblossoming and flourishing tree of life; no accident that we are surrounded\nby millions of other species, eating, growing, rotting, swimming, walking,\nflying, burrowing, stalking, chasing, fleeing, outpacing, outwitting a We\nare surrounded by endless forms, most beautiful and most wonderful, and it\nis no accident, but the direct consequence of evolution by non-random\nnatural selection - the only game in town, the greatest show on Earth.'\nCharles Darwin's masterpiece On the Origin of Species shook society to its\ncore on publication in 1859. Darwin was only too aware of the storm his\ntheory of evolution would provoke. But he would surely have raised an\nincredulous eyebrow at the controversy still raging a century and a half\nlater. Evolution is accepted as scientific fact by all reputable scientists\nand indeed theologians, yet millions of people continue to question its\nveracity. In The Greatest Show on Earth Richard Dawkins takes on\ncreationists, including followers of 'Intelligent Design' and all those who\nquestion the fact of evolution through natural selection. In this brilliant\ntour de force he pulls together the incontrovertible evidence that\nunderpins it. Like a detective arriving on the scene of a crime, he sifts\nthrough fascinating layers of scientific facts and disciplines to build a\ncast-iron case: from the living examples of natural selection around us in\nbirds and insects; the 'time clocks' of trees and radioactive dating that\ncalibrate a timescale for evolution; the fossil record and the traces of\nour earliest ancestors; to confirmation from molecular biology and\ngenetics. All of this, and much more, bears witness to the truth of\nevolution. The Greatest Show on Earth comes at a critical time: systematic\nopposition to the truth of evolution is now flourishing as never before,\nespecially in America. In Britain and elsewhere in the world teachers\nwitness insidious attempts to undermine the status of science in their\nclassrooms. Richard Dawkins provides unequivocal evidence that boldly and\ncomprehensively rebuts such nonsense. At the same time he shares with us\nhis palpable love of the natural world and the essential role that science\nplays in its interpretation. Written with elegance, wit and passion, it is\nhard-hitting, absorbing and totally convincing.\"\r\n2432,2504,392297,Frank Miller,Sin City Volume 1: The Hard Goodbye,https://images.gr-assets.com/books/1470924635l/392297.jpg,4.16,40866,\"comics, fiction\",\"The first volume of the crime-comic megahit that introduced the now-\ninfamous Marv and spawned a blockbuster film returns in a newly redesigned\nedition, with a brand-new cover by Frank Miller-some of his first comics\nart in years! It's a lousy room in a lousy part of a lousy town. But Marv\ndoesn't care. There's an angel in the room. She says her name is Goldie. A\nfew hours later, Goldie's dead without a mark on her perfect body, and the\ncops are coming before anyone but Marv could know she's been killed.\nSomebody paid good money for this frame . . . With a new look generating\nmore excitement than ever before, this third edition is the perfect way to\nattract a whole new generation of readers to Frank Miller's masterpiece! *\nOver a million Sin City books in print! * New cover by Frank Miller! * With\nMiller and codirector Robert Rodriguez gearing up for Sin City 2, this\nthird edition is being released at just the right time! * The Hard Goodbye\nwas the lead story in the Sin City film, starring Mickey Rourke as Marv!\"\r\n2433,2505,356896,Og Mandino,The Greatest Salesman in the World,https://images.gr-assets.com/books/1403192719l/356896.jpg,4.19,35971,\"fiction, psychology\",The Greatest Salesman in the WorldOg Mandino\r\n2434,2506,3758,Ian Fleming,Casino Royale,https://images.gr-assets.com/books/1497801490l/3758.jpg,3.73,39150,\"fiction, thriller\",\"In order to rid the British Secret Service of \"\"Le Chiffre,\"\" a lethal Soviet\noperative with a weakness for gambling, James Bond is to bankrupt him in a\nFrench casino, but the secret agent's cards are not cooperating.\"\r\n2435,2507,83144,Paullina Simons,The Bronze Horseman,https://images.gr-assets.com/books/1327921996l/83144.jpg,4.34,37369,\"romance, fiction\",\"The golden skies, the translucent twilight, the white nights, all hold the\npromise of youth, of love, of eternal renewal. The war has not yet touched\nthis city of fallen grandeur, or the lives of two sisters, Tatiana and\nDasha Metanova, who share a single room in a cramped apartment with their\nbrother and parents. Their world is turned upside down when Hitler's armies\nattack Russia and begin their unstoppable blitz to Leningrad. Yet there is\nlight in the darkness. Tatiana meets Alexander, a brave young officer in\nthe Red Army. Strong and self-confident, yet guarding a mysterious and\ntroubled past, he is drawn to Tatiana—and she to him. Starvation,\ndesperation, and fear soon grip their city during the terrible winter of\nthe merciless German siege. Tatiana and Alexander's impossible love\nthreatens to tear the Metanova family apart and expose the dangerous secret\nAlexander so carefully protects—a secret as devastating as the war\nitself—as the lovers are swept up in the brutal tides that will change the\nworld and their lives forever.\"\r\n2436,2508,11346,Toni Morrison,Sula,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441578153l/11346._SY475_.jpg,3.86,37196,\"fiction, classics\",\"The intense friendship shared by two black women raised in an Ohio town\nchanges when one of them leaves to roam the countryside and returns ten\nyears later.\"\r\n2437,2509,17999892,A.G. Riddle,The Atlantis Gene,https://images.gr-assets.com/books/1385398066l/17999892.jpg,3.69,20626,\"fiction, thriller\",\"\"\"70,000 years ago, the human race almost went extinct. We survived, but no\none knows how. Until now. The countdown to the next stage of human\nevolution is about to begin, and humanity may not survive this time\"\"--Page\n[4] of cover.\"\r\n2438,2510,7148256,Philippa Gregory,The Red Queen,https://images.gr-assets.com/books/1281335912l/7148256.jpg,3.74,42128,\"fiction, history\",\"The irresistible stars of I Must Have Bobo! return in another everyday\nadventure in domestic disharmony, complete with an audio recording! Willy\nwants to write a storybook starring Bobo—and act out revenge fantasies on\nEarl—but Earl keeps wrecking the story (hence the desire to act out revenge\nfantasies!). Quit it, Earl…and stop stealing Bobo! But sometimes it only\ntakes a small thing to realize that even sworn enemies have something in\ncommon. For instance: Bobo and Earl both have very snakey tails! Is that a\ntruce? Don’t count on it.\"\r\n2439,2511,6642402,Julie James,Something About You,https://images.gr-assets.com/books/1327933063l/6642402.jpg,3.94,47720,\"romance, contemporary\",\"Becoming involved in a murder investigation, which brings her face-to-face\nwith FBI Special Agent Jack Pallas, who still blames her for almost ruining\nhis career three years earlier, Assistant U.S. Attorney Cameron Lynde tries\nto deny the attraction between them by focusing on the case at hand.\n(Contemporary romance). Original.\"\r\n2440,2512,105552,Dr. Seuss,Mr. Brown Can Moo! Can You?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349097703l/105552.jpg,4.11,41437,\"fiction, classics\",Mr. Brown is an expert at imitating all sorts of noises.\r\n2441,2513,10607,\"Stephen King, Peter Straub\",Black House ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263466l/10607.jpg,3.99,40734,\"horror, fantasy\",\"A retired Los Angeles homicide detective living in a rural Wisconsin town,\nJack Sawyer is called in to assist the local police chief in solving a\ngruesome series of murders that causes Jack to experience inexplicable\nwaking nightmares.\"\r\n2442,2514,15719,\"Neil Gaiman, Andy Kubert, Richard Isanove, Peter Sanderson\",Marvel 1602,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385102624l/15719.jpg,3.93,43541,\"comics, fantasy\",\"Marvel 1602Neil Gaiman, Andy Kubert, Richard Isanove, Peter Sanderson\"\r\n2443,2515,26722,Vince Flynn,Act of Treason,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441133916l/26722._SY475_.jpg,4.28,34242,\"fiction, thriller\",\"When a presidential candidate wins the election through sympathy votes two\nweeks after a terrorist attack kills his wife, CIA operative Mitch Rapp\ninvestigates dangerous allegations about the attack's hidden agenda, a case\nthat threatens the government's stability. By the author of Consent to\nKill. Reprint.\"\r\n2444,2516,13330761,Peter Heller,The Dog Stars,https://images.gr-assets.com/books/1388122817l/13330761.jpg,3.9,33465,\"fiction, contemporary\",\"Surviving a pandemic disease that has killed everyone he knows, a pilot\nestablishes a shelter in an abandoned airport hangar before hearing a\nrandom radio transmission that compels him to risk his life to seek out\nother survivors. A first novel by the author of The Whale Warriors.\nReprint.\"\r\n2445,2517,19494,John le Carré,The Spy Who Came In from the Cold,https://images.gr-assets.com/books/1327719782l/19494.jpg,4.05,37557,\"fiction, thriller\",\"Secret agent Leamas is on a mission in East Berlin, but he has doubts about\nthe organization he serves.\"\r\n2446,2518,133664,Jim Butcher,Academ's Fury,https://images.gr-assets.com/books/1381026900l/133664.jpg,4.27,43941,\"fantasy, fiction\",\"The precarious alliance between the people of Alera and the furies is\nthrown into disarray by the death of the First Lord of Alera, and the fate\nof the Alerians lies in the hands of Tavi, an untried young man who must\ndraw on his courage to save his world. Reprint.\"\r\n2447,2519,13162,James Patterson,When the Wind Blows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179407l/13162.jpg,3.92,39948,\"mystery, fiction\",\"While grieving her husband's murder, a young Colorado veterinarian meets a\ntroubled FBI agent and begins to uncover the world's most sinister secrets.\nFrannie O'Neill is a young and talented veterinarian living in Colorado.\nPlagued by the mysterious murder of her husband, David, a local doctor,\nFrannie throws herself into her work. It is not long before another bizarre\nmurder occurs and Kit Harrison, a troubled and unconventional FBI agent,\narrives on her doorstep. Late one night, near the woods of her animal\nhospital, Frannie stumbles upon a strange, astonishing phenomenon that will\nchange the course of her life forever: her name is Max. With breathtaking\nenergy, eleven-year-old Max leads Frannie and Kit to uncover one of the\nmost diabolical and inhuman plots of modern science. Bold and compelling,\nWhen the Wind Blows is a story of suspense and passion as only James\nPatterson could tell it.\"\r\n2448,2520,6443834,\"Haruki Murakami, 村上 春樹\",1Q84 Book 1 [Ichi-kyū-hachi-yon],https://images.gr-assets.com/books/1329955413l/6443834.jpg,3.96,32323,\"fiction, fantasy\",\"1Q84年―私はこの新しい世界をそのように呼ぶことにしよう。青豆はそう決めた。Qはquestion markのQだ。疑問を背負ったもの。彼女は歩きなが\nら一人で肯いた。好もうが好むまいが、私は今この「1Q84年」に身を置いている。私の知っていた1984年はもうどこにも存在しない。...ヤナーチェックの\n『シンフォニエッタ』に導かれて、主人公・青豆と天吾の不思議な物語がはじまる。村上春樹の12作目の長編小説。\"\r\n2449,2521,4004,\"Paulo Coelho, Alan R. Clarke\",O Diário de um Mago,https://images.gr-assets.com/books/1307909268l/4004.jpg,3.64,28283,\"fiction, philosophy\",\"A popular South American writer chronicles his journey along the ancient\nroad to Santiago, offering the exercises in self-control and self-discovery\nthat he learned along the way. Original.\"\r\n2450,2522,383028,Lee Child,The Hard Way,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440269806l/383028._SY475_.jpg,4.14,36240,\"thriller, fiction\",\"Jack Reacher comes to the aid of Edward Lane, the head of an illegal\nsoldiers-for-hire operation, who enlists Reacher's assistance to find and\nstop a kidnapper who has abducted Lane's wife and child.\"\r\n2451,2523,231821,Sheila Burnford,The Incredible Journey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607402l/231821.jpg,4.16,42094,\"fiction, classics\",The Incredible JourneySheila Burnford\r\n2452,2524,13529,Geraldine Brooks,March,https://images.gr-assets.com/books/1327935441l/13529.jpg,3.73,43737,\"fiction, history\",\"In a story inspired by the father character in Little Women and drawn from\nthe journals and letters of Louisa May Alcott's father Bronson, a man\nleaves behind his family to serve in the Civil War and finds his marriage\nand beliefs profoundly challenged by his experiences. Reader's Guide\nincluded. Reprint.\"\r\n2453,2525,13359067,\"Lee Child, Dick Hill\",A Wanted Man,https://images.gr-assets.com/books/1333623254l/13359067.jpg,4,33264,\"fiction, thriller\",\"A Wanted ManLee Child, Dick Hill\"\r\n2454,2526,22369,\"Grant Morrison, Frank Quitely\",All-Star Superman (Volume 1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293260l/22369.jpg,4.06,35061,\"comics, fiction\",\"Superman rescues a doomed group of astronauts on the surface of the sun\nwhen he's exposed to massive amounts of solar radiation.\"\r\n2455,2527,12177850,George R.R. Martin,A Song of Ice and Fire,https://images.gr-assets.com/books/1339340118l/12177850.jpg,4.63,20567,\"fantasy, ebooks\",\"Here is the first volume in George R. R. Martin's magnificent cycle of\nnovels that includes 'A Clash of Kings' and 'A Storm of Swords'. As a\nwhole, this series comprises a genuine masterpiece of modern fantasy,\nbringing together the best the genre has to offer. Magic, mystery,\nintrigue, romance, and adventure fill these pages and transport us to a\nworld unlike any we have ever experienced. Already hailed as a classic,\nGeorge R. R. Martin's stunning series is destined to stand as one of the\ngreat achievements of imaginative fiction. Long ago, in a time forgotten, a\npreternatural event threw the seasons out of balance. In a land where\nsummers can last decades and winters a lifetime, trouble is brewing. The\ncold is returning, and in the frozen wastes to the north of Winterfell,\nsinister and supernatural forces are massing beyond the kingdom’s\nprotective Wall. At the center of the conflict lie the Starks of\nWinterfell, a family as harsh and unyielding as the land they were born to.\nSweeping from a land of brutal cold to a distant summertime kingdom of\nepicurean plenty, here is a tale of lords and ladies, soldiers and\nsorcerers, assassins and bastards, who come together in a time of grim\nomens. Here an enigmatic band of warriors bear swords of no human metal; a\ntribe of fierce wildlings carry men off into madness; a cruel young dragon\nprince barters his sister to win back his throne; and a determined woman\nundertakes the most treacherous of journeys. Amid plots and counterplots,\ntragedy and betrayal, victory and terror, the fate of the Starks, their\nallies, and their enemies hangs perilously in the balance, as each\nendeavors to win that deadliest of conflicts; the game of thrones.\"\r\n2456,2528,16158558,Nora Roberts,Dark Witch,https://images.gr-assets.com/books/1480131721l/16158558.jpg,3.91,33481,\"romance, fantasy\",\"An American searches for her Irish ancestors to learn more about her powers\nand break an ancient curse.\"\r\n2457,2529,7198988,Alyson Noel,Dark Flame,https://images.gr-assets.com/books/1362336376l/7198988.jpg,3.73,51250,\"fantasy, paranormal\",Dark FlameAlyson Noel\r\n2458,2530,25734248,Fiona Barton,The Widow,https://images.gr-assets.com/books/1449178687l/25734248.jpg,3.49,36504,\"mystery, fiction\",The WidowFiona Barton\r\n2459,2531,6255144,Patrick Carman,The Black Circle,https://images.gr-assets.com/books/1357211043l/6255144.jpg,4,42084,\"mystery, fiction\",\"A mysterious telegram sends Amy and Dan Cahill off to Russia, where they\nsearch for a treasure stolen by the Nazis, the truth about the end of the\nRomanov dynasty, and information about the death of their parents.\"\r\n2460,2532,15820748,Kiera Cass,The Prince,https://images.gr-assets.com/books/1354127071l/15820748.jpg,3.93,51454,\"romance, fantasy\",\"Two novellas set in the world of Kiera Cass's #1 New York Times bestselling\nSelection series are now available in print for the first time. The Prince\nand The Guard both offer captivating views into the hearts and minds of the\ntwo men fighting to win America Singer's love. This collection also\nfeatures exclusive bonus content, including a sneak peek at The One, the\neagerly anticipated third novel in the Selection series. Before America\narrived at the palace to compete in the Selection, there was another girl\nin Prince Maxon's life. The Prince opens the week before the Selection\nbegins and follows Maxon through the first day of the competition. Raised\nas a Six, Aspen Leger never dreamed that he would find himself living in\nthe palace as a member of the royal guard. In The Guard, readers get an\ninside look at Aspen's life within the palace walls—and the truth about a\nguard's world that America will never know.\"\r\n2461,2533,16069030,Marie Rutkoski,The Winner's Curse,https://images.gr-assets.com/books/1377023523l/16069030.jpg,4.03,56635,\"fantasy, romance\",\"An aristocratic girl who is a member of a warmongering and enslaving empire\npurchases a slave, an act that sets in motion a rebellion that might\noverthrow her world as well as her heart.\"\r\n2462,2534,71332,Sapphire,Push,https://images.gr-assets.com/books/1414633395l/71332.jpg,3.82,36207,\"fiction, contemporary\",\"A courageous and determined young teacher opens up a new world of hope and\nredemption for sixteen-year-old Precious Jones, an abused young African-\nAmerican girl living in Harlem, who was raped and left pregnant by her\nfather. Reprint. 75,000 first printing.\"\r\n2463,2535,17465515,\"Elena Ferrante, Ann Goldstein\",Storia del nuovo cognome,https://images.gr-assets.com/books/1501012849l/17465515.jpg,4.37,33395,\"fiction, contemporary\",\"Storia del nuovo cognomeElena Ferrante, Ann Goldstein\"\r\n2464,2536,70539,Arthur C. Clarke,2010: Odyssey Two,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271989l/70539.jpg,3.89,36907,\"fiction, classics\",\"Haywood Floyd, director of the original Discovery mission, sets out to\ndiscover what happened to HAL 9000 and comes face to face with something\nclaiming to be Dave Bowman.\"\r\n2465,2537,6406018,Atsushi Ohkubo,ソウルイーター 1,https://images.gr-assets.com/books/1443900841l/6406018.jpg,4.3,34289,\"manga, fantasy\",ソウルイーター 1Atsushi Ohkubo\r\n2466,2538,15803059,William Kent Krueger,Ordinary Grace,https://images.gr-assets.com/books/1358264094l/15803059.jpg,4.14,34720,\"fiction, mystery\",\"Looking back at a tragic event that occurred during his thirteenth year,\nFrank Drum explores how a complicated web of secrets, adultery, and\nbetrayal shattered his Methodist family and their small 1961 Minnesota\ncommunity.\"\r\n2467,2539,14839,David Baldacci,Last Man Standing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388373688l/14839.jpg,4.03,36265,\"fiction, thriller\",Last Man StandingDavid Baldacci\r\n2468,2540,118944,Gene Luen Yang,American Born Chinese,https://images.gr-assets.com/books/1317066615l/118944.jpg,3.88,47824,\"comics, fiction\",American Born ChineseGene Luen Yang\r\n2469,2541,1335184,\"Eugene Bradley Coco, Ron Dias, Walt Disney Company\",Peter Pan (Little Golden Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388943253l/1335184.jpg,4.32,38907,\"fantasy, fiction\",\"The adventures of the three Darling children in Never Land with Peter Pan,\nthe boy who would not grow up.\"\r\n2470,2542,15990969,K.A. Tucker,Ten Tiny Breaths,https://images.gr-assets.com/books/1368808763l/15990969.jpg,4.16,54718,\"romance, contemporary\",Ten Tiny BreathsK.A. Tucker\r\n2471,2543,7141642,David Mitchell,The Thousand Autumns of Jacob de Zoet,https://images.gr-assets.com/books/1320540908l/7141642.jpg,4.03,36021,\"fiction, history\",\"Dispatched to the influential Japanese port of Dejima in 1799, ambitious\nclerk Jacob de Zoet resolves to earn enough money to deserve his wealthy\nfiancâee, an effort that is challenged by his relationship with the midwife\ndaughter of a samurai.\"\r\n2472,2544,18525,Christopher Marlowe,The Tragical History of the Life and Death of Doctor Faustus,https://images.gr-assets.com/books/1392156779l/18525.jpg,3.79,39518,\"fiction, fantasy\",The Tragical History of the Life and Death of Doctor FaustusChristopher Marlowe\r\n2473,2545,84145,Sherrilyn Kenyon,Dance with the Devil,https://images.gr-assets.com/books/1388703603l/84145.jpg,4.39,51282,\"paranormal, romance\",Dance with the DevilSherrilyn Kenyon\r\n2474,2546,6614,Candace Bushnell,Lipstick Jungle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390589010l/6614.jpg,3.39,35792,\"fiction, romance\",Lipstick JungleCandace Bushnell\r\n2475,2547,79379,James Patterson,Violets Are Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440196942l/79379._SY475_.jpg,3.94,41555,\"mystery, fiction\",\"Detective Alex Cross must confront his most terrifying nemesis ever- and\nhis own deepest fears- in this electrifying thriller from the world's #1\nbestselling writer. D.C. Detective Alex Cross has seen a lot of crime\nscenes. But even he is appalled by the gruesome murders of two joggers in\nSan Francisco's Golden Gate Park-killings that look more like the work of\nsavage beasts than humans. Local police are horrified and even the FBI is\nbaffled. Then, as Cross is called in to take on the case, the carnage takes\noff, leaving a trail of bodies across America and sweeping him to Savannah,\nLas Vegas, New Orleans, Los Angeles as his nemesis, the merciless criminal\nknown as the Mastermind, stalks him, taunts him, and once again, threatens\neverything he holds dear...\"\r\n2476,2548,180116,\"Anthony Robbins, Tony Robbins, Frederick L. Covan\",\"Awaken the Giant Within: How to Take Immediate Control of Your Mental, Emotional, Physical and Financial Destiny!\",https://images.gr-assets.com/books/1415677371l/180116.jpg,4.1,33586,\"philosophy, business\",\"Wake up and take control of your life! From the bestselling author of Inner\nStrength, Unlimited Power, and MONEY Master the Game, Anthony Robbins, the\nnation's leader in the science of peak performance, shows you his most\neffective strategies and techniques for mastering your emotions, your body,\nyour relationships, your finances, and your life. The acknowledged expert\nin the psychology of change, Anthony Robbins provides a step-by-step\nprogram teaching the fundamental lessons of self-mastery that will enable\nyou to discover your true purpose, take control of your life, and harness\nthe forces that shape your destiny.\"\r\n2477,2549,30246,Laurell K. Hamilton,\"Blue Moon (Anita Blake, Vampire Hunter, #8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436996677l/30246._SY475_.jpg,4.04,52170,\"paranormal, fantasy\",\"Unable to forget her fiance, whom she had left when she could not reconcile\nherself to his werewolf nature, vampire hunter Anita Blake seeks to prove\nhis innocence when he is falsely accused of rape\"\r\n2478,2550,30242,Laurell K. Hamilton,\"Burnt Offerings (Anita Blake, Vampire Hunter, #7)\",https://images.gr-assets.com/books/1289528358l/30242.jpg,4.07,53980,\"romance, fiction\",\"Anita Blake is a vampire hunter. But when someone else sets his sights on\nher prey, she must save them both from the inferno.\"\r\n2479,2551,19286669,Diane Chamberlain,The Silent Sister,https://images.gr-assets.com/books/1406526579l/19286669.jpg,3.93,31741,\"fiction, mystery\",The Silent SisterDiane Chamberlain\r\n2480,2552,9597,Kurt Vonnegut Jr.,Player Piano,https://images.gr-assets.com/books/1488041609l/9597.jpg,3.85,34362,\"fiction, classics\",\"Kurt Vonnegut's first novel spins the chilling tale of engineer Paul\nProteus, who must find a way to live in a world dominated by a\nsupercomputer and run completely by machines. Paul's rebellion is vintage\nVonnegut—wildly funny, deadly serious, and terrifyingly close to reality.\"\r\n2481,2553,10155,Arthur Conan Doyle,The Lost World ,https://images.gr-assets.com/books/1320504012l/10155.jpg,3.92,39169,\"classics, fiction\",The Lost World Arthur Conan Doyle\r\n2482,2554,34511,Terry Pratchett,Monstrous Regiment,https://images.gr-assets.com/books/1375908503l/34511.jpg,4.18,38851,\"fiction, fantasy\",\"War has come to Discworld ... again. And, to no one's great surprise, the\nconflict centers around the small, arrogantly fundamentalist duchy of\nBorogravia, which has long prided itself on its unrelenting aggressiveness.\nA year ago, Polly Perks's brother marched off to battle, and Polly's\nwilling to resort to drastic measures to find him. So she cuts off her\nhair, dons masculine garb, and -- aided by a well-placed pair of socks --\nsets out to join this man's army. Since a nation in such dire need of\ncannon fodder can't afford to be too picky, Polly is eagerly welcomed into\nthe fighting fold—along with a vampire, a troll, an Igor, a religious\nfanatic, and two uncommonly close \"\"friends.\"\" It would appear that Polly\n\"\"Ozzer\"\" Perks isn't the only grunt with a secret. But duty calls, the\nbattlefield beckons. And now is the time for all good ... er ... \"\"men\"\" to\ncome to the aid of their country.\"\r\n2483,2555,60931,Octavia E. Butler,Kindred,https://images.gr-assets.com/books/1339423248l/60931.jpg,4.18,43332,\"fiction, fantasy\",\"Dana, a black woman, finds herself repeatedly transported to the antebellum\nSouth, where she must make sure that Rufus, the plantation owner's son,\nsurvives to father Dana's ancestor.\"\r\n2484,2556,8282,\"Laura Ingalls Wilder, Garth Williams\",\"The Long Winter (Little House, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449683l/8282.jpg,4.16,54443,\"classics, fiction\",\"The adventures of Laura Ingalls and her family continue as Pa, Ma, Laura,\nMary, Carrie, and little Grace bravely face the hard winter of 1880-81 in\ntheir little house in the Dakota Territory. Blizzards cover the little town\nwith snow, cutting off all supplies from the outside. Soon there is almost\nno food left, so young Almanzo Wilder and a friend make a dangerous trip\nacross the prairie to find some wheat. Finally a joyous Christmas is\ncelebrated in a very unusual way in this most exciting of all the Little\nHouse books.\"\r\n2485,2557,525488,\"Henry Cloud, John Townsend\",Boundaries,https://images.gr-assets.com/books/1406403521l/525488.jpg,4.19,19619,\"psychology, nonfiction\",\"Tells how to set limits and still be a loving person, discusses mental,\nemotional, and spiritual boundaries, and looks at the related teachings of\nthe Scriptures\"\r\n2486,2558,17378508,Maggie Stiefvater,\"Blue Lily, Lily Blue\",https://images.gr-assets.com/books/1477103826l/17378508.jpg,4.32,56637,\"fantasy, paranormal\",\"Blue Lily, Lily BlueMaggie Stiefvater\"\r\n2487,2559,43945,\"Philip Roth, Luca Marinelli\",Portnoy's Complaint,https://images.gr-assets.com/books/1327929440l/43945.jpg,3.69,35855,\"fiction, classics\",\"Portnoy's Complaint n. after Alexander Portnoy (1933-) A disorder in which\nstrongly-felt ethical and altruistic impulses are perpetually warring with\nextreme sexual longings, often of a perverse nature. Spielvogel says- 'Acts\nof exhibitionism, voyeurism, fetishism, auto-eroticism and oral coitus are\nplentiful; as a consequence of the patient's \"\"morality,\"\" however, neither\nfantasy nor act issues in genuine sexual gratification, but rather in\noverriding feelings of shame and the dread of retribution, particularly in\nthe form of castration.' (Spielvogel, O. 'The Puzzled Penis',\nInternationale Zeitschrift fur Psychoanalyse, Vol. XXIV, p. 909.) it is\nbelieved by Spielvogel that many of the symptoms can be traced to the bonds\nobtaining in the mother-child relationship.\"\r\n2488,2560,815716,\"John C. Maxwell, Zig Ziglar\",The 21 Irrefutable Laws of Leadership,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440064752l/815716._SY475_.jpg,4.12,30255,\"business, nonfiction\",\"The 21 Irrefutable Laws of LeadershipJohn C. Maxwell, Zig Ziglar\"\r\n2489,2561,51019,Margaret Atwood,Cat's Eye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385207977l/51019.jpg,3.92,42317,\"fiction, contemporary\",\"Years after painter Elaine Risley flees Toronto for Vancouver, she returns\nto search for long-missing parts of her life and pursue the elusive\nCordelia, her best friend and sometimes enemy\"\r\n2490,2562,15783307,J. Sterling,The Perfect Game,https://images.gr-assets.com/books/1345824139l/15783307.jpg,3.97,50442,\"romance, sports\",\"He's a game she never intended to play. And she's the game changer he never\nknew he needed. The Perfect Game tells the story of college juniors Cassie\nAndrews and Jack Carter. When Cassie meets rising baseball hopeful Jack,\nshe is determined to steer clear of him and his typical cocky attitude. But\nJack has other things on his mind...like getting Cassie to give him the\ntime of day. They are damaged, filled with mistrust and guarded before they\nfind one another (and themselves) in this emotional journey about love and\nforgiveness. Strap yourselves in for a ride that will not only break your\nheart, but put it back together. Sometimes life gets ugly before it gets\nbeautiful...\"\r\n2491,2563,7540092,Patrick Ness,Monsters of Men,https://images.gr-assets.com/books/1467392755l/7540092.jpg,4.25,43024,\"fantasy, fiction\",Monsters of MenPatrick Ness\r\n2492,2564,8647,Orson Scott Card,Shadow of the Giant,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165699277l/8647._SY475_.jpg,3.98,37479,\"fiction, fantasy\",\"Bean's past was a battle just to survive. He first appeared on the streets\nof Rotterdam, a tiny child with a mind leagues beyond anyone else. He knew\nhe could not survive through strength; he used his tactical genius to gain\nacceptance into a children's gang, and then to help make that gang a\ntemplate for success for all the others. He civilized them, and lived to\ngrow older. Then he was discovered by the recruiters for the Battle School.\nFor Earth was at war - a terrible war with an inscrutable alien enemy. A\nwar that humanity was near to losing. But the long distances of\ninterstellar space has given hope to the defenders of Earth - they had time\nto train military geniuses up from childhood, forging them into an\nirresistible force in the high-orbital facility called the Battle School.\nThat story is told in two books, Orson Scott Card's beloved classic Ender's\nGame, and its parallel, Ender's Shadow. Now, in Shadow of the Giant, Bean's\nstory continues. Bean was the smallest student at the Battle School, but he\nbecame Ender Wiggins' right hand, Since then he has grown to be a power on\nEarth. He served the Hegemon as strategist and general in the terrible wars\nthat followed Ender's defeat of the alien empire attacking Earth. Now he\nand his wife Petra yearn for a safe place to build a family - something he\nhas never known - but there is nowhere on Earth that does not harbor his\nenemies - old enemies from the days in Ender's Jeesh, new enemies from the\nwars on Earth. To find security, Bean and Petra must once again follow in\nEnder's footsteps. They must leave Earth behind, in the control of the\nHegemon, and look to the stars. THE ENDER UNIVERSE Ender series Ender’s\nGame / Speaker for the Dead / Xenocide / Children of the Mind / Ender in\nExile / Children of the Fleet Ender’s Shadow series Ender’s Shadow / Shadow\nof the Hegemon / Shadow Puppets / Shadow of the Giant / Shadows in Flight\nThe First Formic War (with Aaron Johnston) Earth Unaware / Earth Afire /\nEarth Awakens The Second Formic War (with Aaron Johnston) The Swarm / The\nHive Ender novellas A War of Gifts / First Meetings\"\r\n2493,2565,10128428,Brian Selznick,Wonderstruck,https://images.gr-assets.com/books/1327885739l/10128428.jpg,4.16,42530,\"fiction, mystery\",WonderstruckBrian Selznick\r\n2494,2566,748862,Sarah Ban Breathnach,Simple Abundance:  A Daybook of Comfort and Joy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431058847l/748862.jpg,3.96,32751,\"spirituality, nonfiction\",\"366 essays \"\"written for women who wish to live by their own lights,\"\"\ncelebrating \"\"the mystical alchemy of style and Spirit.\"\"--Cover.\"\r\n2495,2567,9917938,Moira Young,Blood Red Road ,https://images.gr-assets.com/books/1293651959l/9917938.jpg,3.94,47690,\"fantasy, romance\",Blood Red Road Moira Young\r\n2496,2568,13131,\"James Patterson, Maxine Paetro\",The 6th Target,https://images.gr-assets.com/books/1336275870l/13131.jpg,4.02,41500,\"mystery, fiction\",\"The 6th TargetJames Patterson, Maxine Paetro\"\r\n2497,2569,40395,\"Edgar Rice Burroughs, John Seelye\",A Princess of Mars,https://images.gr-assets.com/books/1332272118l/40395.jpg,3.8,34536,\"fantasy, classics\",\"John Carter, a Virginia gentleman, finds himself mysteriously transported\nfrom Civil War-era America to the planet Mars, where he plots, along with\nfellow prisoner Dejah Thoris, the lovely Princess of Thelium, to escape\nfrom his savage green captors. Reprint. 15,000 first printing.\"\r\n2498,2570,17262203,Margaret Atwood,MaddAddam,https://images.gr-assets.com/books/1366394020l/17262203.jpg,3.98,33861,\"fiction, fantasy\",\"Toby and Ren return to the MaddAddamite cob house after rescuing Amanda and\nassuming the duties of the Craker's religious overseers while Zeb searches\nfor the founder of the pacifist green religion he left years earlier.\"\r\n2499,2571,77770,\"Laura Ingalls Wilder, Garth Williams\",These Happy Golden Years,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389579632l/77770.jpg,4.17,51432,\"classics, fiction\",\"For the first time in the history of the Little House books, this new\nedition features Garth Williams’ interior art in vibrant, full color, as\nwell as a beautifully redesigned cover. Fifteen-year-old Laura lives apart\nfrom her family for the first time, teaching school in a claim shanty\ntwelve miles from home. She is very homesick, but keeps at it so that she\ncan help pay for her sister Mary's tuition at the college for the blind.\nDuring school vacations Laura has fun with her singing lessons, going on\nsleigh rides, and best of all, helping Almanzo Wilder drive his new buggy.\nFriendship soon turns to love for Laura and Almanzo in the romantic\nconclusion of this Little House book.\"\r\n2500,2572,19596,Victoria Finlay,Color: A Natural History of the Palette,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427998243l/19596.jpg,3.74,42256,\"nonfiction, art\",\"Examining the physical materials that color the world, a freelance\njournalist explores the social, political, and cultural implications of\ncolor throughout history. Reprint. 15,000 first printing.\"\r\n2501,2573,5357,John Grisham,Skipping Christmas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347598629l/5357.jpg,3.47,39486,\"fiction, contemporary\",\"Luther and Nora Frank decide to skip Christmas this year and go on a cruise\nwhen suddenly everything gets chaotic.\"\r\n2502,2575,12022079,Kristin Hannah,Home Front,https://images.gr-assets.com/books/1344319152l/12022079.jpg,4.12,36972,\"fiction, romance\",Home FrontKristin Hannah\r\n2503,2576,16117506,Christina Lauren,Beautiful Stranger,https://images.gr-assets.com/books/1359073239l/16117506.jpg,4.24,55764,\"romance, contemporary\",\"Financial consultant Sara Dillon moves to New York City and, hoping for a\ncausual encounter, meets British playboy Max Stella at a dance club, as\nthey embark on a tumultuous affair that leaves Max wondering if he has met\nhis match.\"\r\n2504,2577,127459,Libba Bray,The Sweet Far Thing,https://images.gr-assets.com/books/1358704741l/127459.jpg,3.97,54602,\"fantasy, romance\",\"As Gemma, along with her friends from the Spence Academy, try to stop The\nOrder, a mysterious group her late mother was once part of, from taking\nover the enchanted realms, she must sacrifice her friendships to discover\nher true destiny. Reprint.\"\r\n2505,2578,5197,Ernest J. Gaines,A Lesson Before Dying,https://images.gr-assets.com/books/1405866945l/5197.jpg,3.93,40651,\"fiction, classics\",\"A Lesson Before Dying tells the story of these two men who, through no\nchoice of their own, come together and form a bond in the realization that\nsometimes simply choosing to resist the expected is an act of heroism.\nErnest Gaines brings to the novel the same rich sense of place, the same\ndeep understanding of the human psyche, and the same compassion for a\npeople and their struggle that have informed his previous, widely praised\nnovels.\"\r\n2506,2579,178357,David Sedaris,SantaLand Diaries,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349066296l/178357.jpg,4.33,38297,\"memoir, nonfiction\",SantaLand DiariesDavid Sedaris\r\n2507,2580,24820165,Nicholas Sparks,See Me,https://images.gr-assets.com/books/1439564033l/24820165.jpg,3.93,31774,\"fiction, romance\",\"Colin Hancock is giving his second chance his best shot. At twenty-eight,\nhe's focused on getting his teaching degree and avoiding all the places and\npeople that proved so destructive in his past. The last thing he's looking\nfor is a serious relationship. But when he crosses paths with Maria Sanchez\none rainswept night, his carefully structured life is turned upside down.\nAnd when Maria, a hardworking lawyer, meets Colin she begins to question\nevery notion she has ever had about herself and her future - and what truly\nmakes her happy. Before the couple has a chance to envision a life\ntogether, menacing reminders from events in Maria's past start to surface.\nAnd as the threat of violence begins to shadow her every step, she and\nColin will be pushed to breaking point. The stunning new love story from\nmulti-million-copy bestselling author Nicholas Sparks, See Me is a story of\nobsession, reinvention and a love that defies every expectation.\"\r\n2508,2581,7415016,Sophie Kinsella,Mini Shopaholic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191918l/7415016.jpg,3.7,40137,\"fiction, romance\",\"While trying to deal with her mini-terror 2-year-old, financially strapped\nBecky Brandon attempts to plan a surprise party on a budget for her\nhusband, Luke, and starts to come apart at the seams as she juggles the\nparty, her precocious child and her faltering personal-shopping business.\nBy the #1 best-selling author of Twenties Girl. Reprint.\"\r\n2509,2584,393199,George Orwell,Down and Out in Paris and London,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347697665l/393199.jpg,4.1,34739,\"classics, fiction\",\"An empty purse leads an English writer to find lodgings in the slums of two\ngreat cities\"\r\n2510,2585,6081685,Hiro Fujiwara,会長はメイド様! 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452777l/6081685.jpg,4.4,36028,\"manga, comics\",会長はメイド様! 1Hiro Fujiwara\r\n2511,2586,381102,Nick Bantock,Griffin & Sabine: An Extraordinary Correspondence,https://images.gr-assets.com/books/1356716196l/381102.jpg,4.01,36496,\"fiction, art\",\"\"\"Wondrous, ingenious, gorgeous . . .\"\"—USA Today \"\"Extremely original . . .\nclassical myth, reality, and fantasy are blended artfully in this modern\nallegory\"\"—Los Angeles Times Beloved by millions the world over, Griffin &\nSabine redefines the art of the novel. With its combination of lush\nillustration, creative storytelling, and the guilty pleasure of reading\nother people's correspondence, Griffin & Sabine is part romance, part\nmystery, and completely a work of art. Each turn of the page contains a new\ncard or letter to be unfolded from its envelope, and is vibrant with wildly\nimaginative creatures, landscapes, and intrigue. Destined to become a\ncollector's volume, this limited, 25th anniversary edition contains new\nartwork, an original postcard, and specially created decorative stamps,\nmaking this a book that is as rewarding to enjoy all over again—or to\ndiscover for the very first time.\"\r\n2512,2587,14061957,Leigh Bardugo,Ruin and Rising,https://images.gr-assets.com/books/1392398530l/14061957.jpg,4.17,56836,\"fantasy, romance\",\"A conclusion to the trilogy that includes Siege and Storm finds Alina\nforging new alliances as she and Mal search for Morozova's last amplifier\nonly to discover a past that transforms her understanding of their bond and\nher powers.\"\r\n2513,2588,3503947,أحمد خالد توفيق,يوتوبيا,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1214056271l/3503947.jpg,3.9,31669,\"fiction, fantasy\",\"كيف ستكون مصر عام 2023؟ لقد عزَلَ الأغنياء أنفسهم في »يوتوبيا« الساحل\nالشمالي تحت حراسة المارينز الأمريكيين؛ يتعاطون المخدرات ويمارسون المُتع\nالمحرمة إلى أقصاها، بينما ينسحق الفقراء خارجها ينهش بعضهم لحم بعض من أجل\nالعيش، دونما كهرباء أو صرف صحي أو رعاية طبية من أي نوع. ولكن حين يتسلل\nالراوي وصديقته »جرمينال« خارج »يوتوبيا« بدافع الملل وبحثًا عن »صيد بشري«\nمناسب يحدث ما يُهدد الوضع المستقر بالانفجار. فيما يُشبه هول علامات يوم\nالقيامة، تدقُّ هذه الرواية المثيرة ناقوس الخطر، تكاد تشكُّ إذ تنهيها أهي\nبالفعل رواية متخيلة، أم إن كاتبها تسلل من المستقبل القريب لينقل لك هوله\nبحياد مُذهل؟\"\r\n2514,2589,421549,Jennifer Weiner,Certain Girls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264315l/421549.jpg,3.7,39334,\"fiction, romance\",\"Readers fell in love with Cannie Shapiro, the smart, sharp-tongued,\nbighearted heroine of Good in Bed who found her happy ending after her\nmother came out of the closet, her father fell out of her life, and her ex-\nboyfriend started chronicling their ex-sex life in the pages of a national\nmagazine. Now Cannie's back. After her debut novel -- a fictionalized (and\nhighly sexualized) version of her life -- became an overnight bestseller,\nshe dropped out of the public eye and turned to writing science fiction\nunder a pseudonym. She's happily married to the tall, charming diet doctor\nPeter Krushelevansky and has settled into a life that she finds wonderfully\npredictable -- knitting in the front row of her daughter Joy's drama\nrehearsals, volunteering at the library, and taking over-forty yoga classes\nwith her best friend Samantha. As preparations for Joy's bat mitzvah begin,\neverything seems right in Cannie's world. Then Joy discovers the novel\nCannie wrote years before and suddenly finds herself faced with what she\nthinks is the truth about her own conception -- the story her mother hid\nfrom her all her life. When Peter surprises his wife by saying he wants to\nhave a baby, the family is forced to reconsider its history, its future,\nand what it means to be truly happy. Radiantly funny and disarmingly\ntender, with Weiner's whip-smart dialogue and sharp observations of modern\nlife, Certain Girls is an unforgettable story about love, loss, and the\nenduring bonds of family.\"\r\n2515,2590,13152194,Cheryl Strayed,Tiny Beautiful Things: Advice on Love and Life from Dear Sugar,https://images.gr-assets.com/books/1339807006l/13152194.jpg,4.29,33979,\"nonfiction, memoir\",\"Collects top-selected postings on life and relationships from The Rumpus'\npopular \"\"Dear Sugar\"\" online column, sharing recommendations on everything\nfrom infidelity and grief to marital boredom and financial hardships.\nOriginal. 40,000 first printing.\"\r\n2516,2591,743599,Karen Marie Moning,Beyond the Highland Mist,https://images.gr-assets.com/books/1348924088l/743599.jpg,3.99,51854,\"romance, fantasy\",Beyond the Highland MistKaren Marie Moning\r\n2517,2592,15654,Ann Rule,The Stranger Beside Me,https://images.gr-assets.com/books/1330072383l/15654.jpg,4.13,35824,\"nonfiction, crime\",\"Tells the story of Ted Bundy, a brilliant law student executed for killing\nthree women, who confessed to killing thirty-five others, from the\nperspective of the former policewoman, crime writer, and unwitting personal\nfriend.\"\r\n2518,2593,3054684,Claudia Gray,Stargazer,https://images.gr-assets.com/books/1306376986l/3054684.jpg,3.8,49050,\"paranormal, fantasy\",\"The vampire in me was closer to the surface . . . Evernight Academy: an\nexclusive boarding school for the most beautiful, dangerous students of\nall—vampires. Bianca, born to two vampires, has always been told her\ndestiny is to become one of them. But Bianca fell in love with Lucas—a\nvampire hunter sworn to destroy her kind. They were torn apart when his\ntrue identity was revealed, forcing him to flee the school. Although they\nmay be separated, Bianca and Lucas will not give each other up. She will\nrisk anything for the chance to see him again, even if it means coming\nface-to-face with the vampire hunters of Black Cross—or deceiving the\npowerful vampires of Evernight. Bianca's secrets will force her to live a\nlife of lies. Yet Bianca isn't the only one keeping secrets. When Evernight\nis attacked by an evil force that seems to target her, she discovers the\ntruth she thought she knew is only the beginning. . . .\"\r\n2519,2594,7668,Michael Crichton,Rising Sun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165637857l/7668._SY475_.jpg,3.61,38179,\"fiction, thriller\",\"In a thrilling mystery set within the arena of volatile Japanese-American\nrelations, business moguls compete for control of the international\nelectronics industry. By the author of Jurassic Park. 225,000 first\nprinting. $225,000 ad/promo. Tour.\"\r\n2520,2595,136167,Sidney Sheldon,The Other Side of Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172077093l/136167.jpg,3.89,34570,\"fiction, thriller\",\"THE MEMORIES OF MIDNIGHT START HERE! Welcome to the dazzling and surprising\nnovel of suspense from master storyteller Sidney Sheldon. In\nParis...Washington...and a fabulous villa in Greece, an innocent American\ngirl becomes a bewildered, horror-stricken pawn in a game of vengeance and\nbetrayal. She is Catherine Douglas, a woman caught in a web of four lives\nintertwined by passion as her handsome husband pursues an incredibly\nbeautiful film star...and as Constantin Demiris, a legendary Greek tycoon,\ntightens the strands that control them all.\"\r\n2521,2596,7936809,Michael Connelly,The Reversal,https://images.gr-assets.com/books/1421934033l/7936809.jpg,4.13,34973,\"mystery, fiction\",The ReversalMichael Connelly\r\n2522,2597,10065,\"Louis Sachar, Joel Schick\",Wayside School is Falling Down,https://images.gr-assets.com/books/1405055796l/10065.jpg,4.17,45631,\"fiction, fantasy\",\"Wayside School is Falling DownLouis Sachar, Joel Schick\"\r\n2523,2598,7274337,\"Julie Orringer, Arthur Morey\",The Invisible Bridge,https://images.gr-assets.com/books/1274139506l/7274337.jpg,4.19,35122,\"fiction, history\",\"A historical novel set in 1937 Europe tells the story of three Hungarian\nJewish brothers bound by history and love, of a marriage tested by\ndisaster, of a Jewish family's struggle against annihilation by the Nazis\nand of the dangerous power of art in the time of war. Reprint.\"\r\n2524,2599,15861491,Pittacus Lore,The Fall of Five,https://images.gr-assets.com/books/1375365364l/15861491.jpg,4.24,41533,\"fantasy, fiction\",The Fall of FivePittacus Lore\r\n2525,2600,56759,\"Thomas Hardy, Keith Wilson\",The Mayor of Casterbridge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388276915l/56759.jpg,3.8,40063,\"classics, fiction\",Edited with an Introduction and Notes by Keith Wilson.\r\n2526,2601,8732,John Steinbeck,The Red Pony,https://images.gr-assets.com/books/1391231816l/8732.jpg,3.42,37535,\"classics, fiction\",\"Traces a boy's journey into manhood after his father gives him a pony to\ntrain and care for\"\r\n2527,2602,498389,Jo Nesbø,Marekors ,https://images.gr-assets.com/books/1328611163l/498389.jpg,4.03,32907,\"crime, mystery\",Marekors Jo Nesbø\r\n2528,2603,5159,Alice Hoffman,Here on Earth ,https://images.gr-assets.com/books/1388299278l/5159.jpg,3.68,38954,\"fiction, romance\",\"A middle-aged woman, along with her fifteen-year-old daughter, returns to\nher small Massachusetts hometown for the funeral of the housekeeper who\nraised her and finds herself thrust into the lives of the people she left\nbehind. Reprint.\"\r\n2529,2604,119091,\"Anne Rice, Tim Curry\",Taltos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328041605l/119091.jpg,3.78,40915,\"horror, fantasy\",\"TaltosAnne Rice, Tim Curry\"\r\n2530,2605,190361,Laurell K. Hamilton,\"Obsidian Butterfly (Anita Blake, Vampire Hunter, #9)\",https://images.gr-assets.com/books/1327139907l/190361.jpg,4.08,51571,\"paranormal, fantasy\",\"This is the ninth book in Hamilton's popular 'Anita Blake, Vampire Hunter'\nseries. Anita is feisty and opinionated, and she never backs down from a\nfight. Oh, and she does dabble in a little vampire slaying. In this story,\nEdward, a monster hunter even more ruthless than Anita, asks her to come to\nAlbuquerque to help him track down a creature so vicious that even he is\nspooked; it rips apart its victims and leaves its survivors skinned alive.\nFor help in the investigation, they have to call on the city's master\nvampire, Itzpapalotl (Aztec for 'obsidian butterfly'). This former Aztec\npriestess/nightclub owner agrees to answer questions - but only after\ndazzlingly displaying her awesome powers. As in Hamilton's other novels,\nthis book contains an abundance of thrills, chills, violence, and sexual\ninnuendo. Recommended for all public libraries.\"\r\n2531,2606,9268487,Peter V. Brett,The Daylight War,https://images.gr-assets.com/books/1360777092l/9268487.jpg,4.23,34419,\"fantasy, fiction\",The Daylight WarPeter V. Brett\r\n2532,2607,1248179,John Grisham,The Appeal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422456542l/1248179.jpg,3.58,39100,\"fiction, thriller\",\"The author of such best-selling legal thrillers as A Time to Kill, The Last\nJuror, and The Brethren presents his latest novel of courtroom and legal\nsuspense as he offers a provocative look at the price of American justice\nin the story of a ruthless Wall Street tycoon out to rig a state supreme\ncourt to get the result he wants during an appeal. Reprint.\"\r\n2533,2608,13830,Tamora Pierce,The Woman Who Rides Like a Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425711705l/13830.jpg,4.2,53413,\"fiction, romance\",\"On her first tour as a knight errant, Alanna assumes a position of\ninfluence with a fierce desert tribe, makes some changes in the role of\nwomen in the society, and continues her own emotional development.\"\r\n2534,2609,8680417,Ben Aaronovitch,Rivers of London,https://images.gr-assets.com/books/1389055317l/8680417.jpg,3.92,21519,\"fantasy, mystery\",Rivers of LondonBen Aaronovitch\r\n2535,2610,9303,Marian Keyes,Lucy Sullivan is Getting Married,https://images.gr-assets.com/books/1407707569l/9303.jpg,3.74,38473,\"fiction, romance\",\"What happens when a psychic tells Lucy that she'll be getting married\nwithin the year? Her roommates panic! What is going to happen to their\nblissful existence of eating take-out, drinking too much wine, bringing men\nhome, and never vacuuming? Lucy reassures her friends that she's far too\nbusy arguing with her mother and taking care of her irresponsible father to\nget married. And then there's the small matter of not even having a\nboyfriend. But then Lucy meets gorgeous, unreliable Gus. Could he be the\nfuture Mr. Lucy Sullivan? Or could it be handsome Chuck? Or Daniel, the\nworld's biggest flirt? Or even cute Jed, the new guy at work? Maybe her\nfriends have something to worry about after all....\"\r\n2536,2611,34501,Terry Pratchett,A Hat Full of Sky,https://images.gr-assets.com/books/1319037274l/34501.jpg,4.29,43460,\"fantasy, fiction\",\"THE SECOND BOOK IN THE TIFFANY ACHING SERIES Something is coming after\nTiffany. . . Tiffany Aching is ready to begin her apprenticeship in magic,\nbut life isn't exactly what she thought it would be. She expects spells and\nmagic - not chores and ill-tempered goats! Surely there must be more to\nwitchcraft than this? And Tiffany will find that she needs her magic more\nthan ever, to fight off the insidious, disembodied creature that is\npursuing her. This time, neither Mistress Weatherwax (the greatest witch in\nthe world) nor the fierce, six-inch-high Wee Free Men can protect her. In\nthe end, it will take all of Tiffany's inner strength to save herself. Will\nshe succeed?\"\r\n2537,2612,50365,Vikram Seth,A Suitable Boy,https://images.gr-assets.com/books/1329421639l/50365.jpg,4.1,33973,\"fiction, classics\",\"While a widowed mother agonizes over her daughter's future, the newly\nindependent India of the early 1950s struggles through a time of great\ncrisis when its varied cultures clash. 100,000 first printing. $200,000\nad/promo. BOMC Main. QPB Alt. Tour.\"\r\n2538,2613,22738563,Chimamanda Ngozi Adichie,We Should All Be Feminists,https://images.gr-assets.com/books/1430821222l/22738563.jpg,4.47,46048,\"nonfiction, philosophy\",\"Offers an updated definition of feminism for the twenty-first century, one\nrooted in inclusion and awareness.\"\r\n2539,2614,8087906,Patricia Briggs,River Marked,https://images.gr-assets.com/books/1305738320l/8087906.jpg,4.26,52220,\"fantasy, paranormal\",\"Shapeshifter mechanic Mercy Thompson and her mate, Alpha werewolf Adam,\nmust investigate and survive an evil presence stirring in the depths of the\nColumbia River, in the sequel to Silver Borne . Reprint. A best-selling\nseries.\"\r\n2540,2615,4135,Amy Sedaris,I Like You: Hospitality Under the Influence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923960l/4135.jpg,3.87,34212,\"nonfiction, cookbooks\",I Like You: Hospitality Under the InfluenceAmy Sedaris\r\n2541,2616,22320,William Gibson,Pattern Recognition,https://images.gr-assets.com/books/1288326931l/22320.jpg,3.86,34917,\"fiction, mystery\",\"Hired to investigate a mysterious video collection that has been appearing\non the Internet, market research consultant Cayce Pollard realizes that\nthere is more to the assignment when her computer is hacked. Reprint.\"\r\n2542,2617,21936809,Peter  Swanson,The Kind Worth Killing,https://images.gr-assets.com/books/1417981750l/21936809.jpg,4.03,35225,\"mystery, thriller\",The Kind Worth KillingPeter  Swanson\r\n2543,2618,11525,Patricia Schultz,\"1,000 Places to See Before You Die\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387718704l/11525.jpg,3.83,33025,\"travel, nonfiction\",\"The world’s bestselling travel book is back in a more informative, more\nexperiential, more budget-friendly full-color edition. A #1 New York Times\nbestseller, 1,000 Places reinvented the idea of travel book as both wish\nlist and practical guide. As Newsweek wrote, it “tells you what’s\nbeautiful, what’s fun, and what’s just unforgettable— everywhere on earth.”\nAnd now the best is better. There are 600 full-color photographs. Over 200\nentirely new entries, including visits to 28 countries like Lebanon,\nCroatia, Estonia, and Nicaragua, that were not in the original edition.\nThere is an emphasis on experiences: an entry covers not just Positano or\nRavello, but the full 30-mile stretch along the Amalfi Coast. Every entry\nfrom the original edition has been readdressed, rewritten, and made fuller,\nwith more suggestions for places to stay, restaurants to visit, festivals\nto check out. And throughout, the book is more budget-conscious, starred\nrestaurants and historic hotels such as the Ritz, but also moderately\npriced gems that don’t compromise on atmosphere or charm. The world is\ncalling. Time to answer.\"\r\n2544,2619,355916,\"Angie Sage, Mark Zug\",Physik,https://images.gr-assets.com/books/1398052658l/355916.jpg,3.99,42838,\"fantasy, fiction\",\"PhysikAngie Sage, Mark Zug\"\r\n2545,2620,6667,\"Roald Dahl, Quentin Blake\",Boy: Tales of Childhood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165604288l/6667._SY475_.jpg,4.09,38240,\"biography, memoir\",\"Boy: Tales of ChildhoodRoald Dahl, Quentin Blake\"\r\n2546,2621,10890,Anne Lamott,Traveling Mercies: Some Thoughts on Faith,https://images.gr-assets.com/books/1403182174l/10890.jpg,4.15,36466,\"memoir, spirituality\",\"Combining elements of spiritual study and memoir, the author describes her\nodyssey of faith, drawing on her own sometimes troubled past to explore the\nmany ways in which faith sustains and guides one's daily life\"\r\n2547,2622,184657,Vince Flynn,Memorial Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172522994l/184657._SY475_.jpg,4.3,31864,\"fiction, thriller\",\"Learning about an imminent terrorist attack, CIA operative Mitch Rapp takes\nthe lead in a daring commando raid into northern Pakistan, where he obtains\ninformation about a planned nuclear attack but suspects that a greater\nthreat has yet to be uncovered. By the author of Executive Power. Reprint.\"\r\n2548,2623,13836,Tamora Pierce,\"Wild Magic (Immortals, #1)\",https://images.gr-assets.com/books/1166573613l/13836.jpg,4.32,52165,\"fantasy, fiction\",\"Daine gets a job helping the royal headmistress drive a herd of ponies to\nTortall, and the others soon realize that the girl's talents and\nhorsemanship arise from magical powers. Reprint.\"\r\n2549,2624,30013,Isaac Asimov,Prelude to Foundation,https://images.gr-assets.com/books/1335782474l/30013.jpg,4.05,40342,\"fiction, science\",\"In the year 12,020 G.E., Hari Seldon arrives in the domed city of Trantor\nand begins to develop his theory of psychohistory, which predicts the rise\nof a power greater than the Empire. Reissue.\"\r\n2550,2625,56728,Max Lucado,You Are Special: A Story for Everyone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348346102l/56728.jpg,4.45,41052,\"christian, fiction\",\"Punchinello is a chipped, ugly puppet who thinks he's not worth much. This\nbeautifully illustrated tale reminds your children that, no matter how the\nworld evaluates them, God loves them just as they are. 4 yrs+\"\r\n2551,2626,18798983,Renee Ahdieh,The Wrath & the Dawn,https://images.gr-assets.com/books/1417956963l/18798983.jpg,4.19,58175,\"fantasy, romance\",\"In this reimagining of The Arabian Nights, Shahrzad plans to avenge the\ndeath of her dearest friend by volunteering to marry the murderous boy-king\nof Khorasan but discovers not all is as it seems within the palace.\"\r\n2552,2627,6260997,\"Nicholas D. Kristof, Sheryl WuDunn\",Half the Sky: Turning Oppression into Opportunity for Women Worldwide,https://images.gr-assets.com/books/1320486170l/6260997.jpg,4.31,37270,\"nonfiction, history\",\"Discusses the oppression of women in the developing world, sharing example\nstories about victims and survivors who are working to raise awareness,\ncounter abuse, and campaign for women's rights.\"\r\n2553,2628,10798418,\"Daniel Handler, Maira Kalman\",Why We Broke Up,https://images.gr-assets.com/books/1348728685l/10798418.jpg,3.49,41202,\"romance, contemporary\",\"Why We Broke UpDaniel Handler, Maira Kalman\"\r\n2554,2629,18243700,Sarah J. Maas,The Assassin's Blade,https://images.gr-assets.com/books/1384362444l/18243700.jpg,4.48,53227,\"fantasy, romance\",\"An omnibus edition of the Tales of the Assassin prequel e-novellas follows\nCelanena's five daring missions and is complemented by a new novella, The\nAssassin and the Healer.\"\r\n2555,2630,2807199,Curtis Sittenfeld,American Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441087673l/2807199._SY475_.jpg,3.72,38537,\"fiction, contemporary\",\"When her husband is elected president of the United States, Alice Blackwell\nfinds her new life as first lady increasingly tumultuous as she reflects on\nthe privileges and difficulties of her position as her private beliefs\nconflict with her public responsibilities.\"\r\n2556,2631,29394,Jim Butcher,Cursor's Fury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360145l/29394.jpg,4.36,41344,\"fantasy, fiction\",\"When the High Lord of Kalare enters into a dangerous alliance with the\nCanim, and treachery destroys the Aleran army's command structure, an\ninexperienced, young Tavi of Calderon leads a poorly equipped legion\nagainst the Canim horde. Reprint.\"\r\n2557,2632,334176,Mary Doria Russell,The Sparrow,https://images.gr-assets.com/books/1230829367l/334176.jpg,4.17,40781,\"fiction, religion\",\"\"\"A NOTABLE ACHIEVEMENT . . . Russell shows herself to be a skillful\nstoryteller who subtly and expertly builds suspense.\"\" --USA Today \"\"AN\nEXPERIENCE NOT TO BE MISSED . . . If you have to send a group of people to\na newly discovered planet to contact a totally unknown species, whom would\nyou choose? How about four Jesuit priests, a young astronomer, a physician,\nher engineer husband, and a child prostitute-turned-computer-expert? That's\nwho Mary Doria Russell sends in her new novel, The Sparrow. This motley\ncombination of agnostics, true believers, and misfits becomes the first to\nexplore the Alpha Centuri world of Rakhat with both enlightening and\ndisastrous results. . . . Vivid and engaging . . . An incredible novel.\"\"\n--Milwaukee Journal Sentinel \"\"POWERFUL . . . Father Emilio Sandoz [is] the\nonly survivor of a Jesuit mission to the planet Rakhat, 'a soul . . .\nlooking for God.' We first meet him in Italy . . . sullen and bitter. . . .\nBut he was not always this way, as we learn through flashbacks that tell\nthe story of the ill-fated trip. . . . The Sparrow tackles a difficult\nsubject with grace and intelligence.\"\" --San Francisco Chronicle \"\"SMOOTH\nSTORYTELLING AND GORGEOUS CHARACTERIZATION . . . Important novels leave\ndeep cracks in our beliefs, our prejudices, and our blinders. The Sparrow\nis one of them.\"\" --Entertainment Weekly\"\r\n2558,2633,10910,Jodi Picoult,Mercy,https://images.gr-assets.com/books/1299040130l/10910.jpg,3.57,37252,\"fiction, contemporary\",MercyJodi Picoult\r\n2559,2634,20727654,Charlie N. Holmberg,The Paper Magician,https://images.gr-assets.com/books/1405618531l/20727654.jpg,3.63,25934,\"fantasy, fiction\",\"Under the tutelage of magician Emery Thane, Ceony Twill discovers the\nwonders of paper magic, but when her teacher's life is threatened, she must\nface the extraordinary dangers of forbidden magic to save him.\"\r\n2560,2635,6023056,Steve Harvey,\"Act Like a Lady, Think Like a Man\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348951893l/6023056.jpg,3.82,29059,\"nonfiction, psychology\",\"Steve Harvey can’t count the number of impressive women he’s met over the\nyears—women who can run a business, keep a household with three kids in\ntiptop shape, and chair a church group all at the same time. So when it\ncomes to relationships, why can’t these women figure out what makes men\ntick? According to Steve it’s because they’re asking other women for advice\nwhen they should be going directly to the source. In Act Like a Lady, Think\nLike a Man, Steve lets women inside the male mindset; introduces concepts\nsuch as the ninety-day rule; and reveals the five questions women should\nask a potential partner to determine how serious he is. Sometimes funny,\nsometimes direct, but always truthful, Act Like a Lady, Think Like a Man is\na book you must read if you want to understand how men think when it comes\nto relationships, intimacy, and love.\"\r\n2561,2637,89724,\"Shirley Jackson, Jonathan Lethem\",We Have Always Lived in the Castle,https://images.gr-assets.com/books/1415357189l/89724.jpg,4.05,43602,\"horror, fiction\",\"Shirley Jackson's beloved gothic tale of a peculiar girl named Merricat and\nher family's dark secret, with an afterword by Jonathan Lethem. A Penguin\nVitae Edition Merricat Blackwood lives on the family estate with her sister\nConstance and her uncle Julian. Not long ago there were seven Blackwoods--\nuntil a fatal dose of arsenic found its way into the sugar bowl one\nterrible night. Acquitted of the murders, Constance has returned home,\nwhere Merricat protects her from the curiousity and hostility of the\nvillagers. Their days pass in happy isolation until cousin Charles appears.\nOnly Merricat can see the danger, and she must act swiftly to keep\nConstance from his grasp. Penguin Classics presents Penguin Vitae, loosely\ntranslated as \"\"Penguin of one's life,\"\" a deluxe hardcover series featuring\na dynamic landscape of classic fiction and nonfiction that has shaped the\ncourse of our readers' lives. Penguin Vitae invites readers to find\nthemselves in a diverse world of storytellers, with beautifully designed\nclassic editions of personal inspiration, intellectual engagement, and\ncreative originality.\"\r\n2562,2639,2761626,Michael Connelly,The Brass Verdict,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442889420l/2761626._SY475_.jpg,4.08,36497,\"mystery, fiction\",The Brass VerdictMichael Connelly\r\n2563,2640,216442,Timothy Zahn,Star Wars: Dark Force Rising,https://images.gr-assets.com/books/1451092000l/216442.jpg,4.14,37197,\"fiction, fantasy\",Star Wars: Dark Force RisingTimothy Zahn\r\n2564,2641,17262159,Lee Child,Never Go Back ,https://images.gr-assets.com/books/1467947214l/17262159.jpg,4.02,27578,\"fiction, thriller\",Never Go Back Lee Child\r\n2565,2642,183656,Gail Carson Levine,The Two Princesses of Bamarre,https://images.gr-assets.com/books/1442734248l/183656.jpg,4.02,55218,\"fantasy, fiction\",\"When plague strikes Bamarre, Princess Addie must fulfill an ancient\nprophecy. Brave and adventurous, Princess Meryl dreams of fighting dragons\nand protecting the kingdom of Bamarre. Shy and fearful, Princess Addie is\ncontent to stay within the safety of the castle walls. The one thing that\nthe sisters share is their unwavering love for each other. The tables are\nturned, however, when the Gray Death leaves Meryl fatally ill. To save her\nsister, meek Princess Addie must find the courage to set out on a dangerous\nquest filled with dragons, unknown magic, and death itself. Time is running\nout, and the sisters' lives—and the future of the kingdom of Bamarre—hang\nin the balance.\"\r\n2566,2643,228630,\"Richard Wright, Jerry W. Ward Jr.\",Black Boy: A Record of Youth and Childhood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440889513l/228630._SY475_.jpg,4.02,36840,\"classics, fiction\",\"The author relates his life as an African American growing up in the South\nduring the Jim Crow years\"\r\n2567,2644,5167,Lalita Tademy,Cane River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442965580l/5167._SY475_.jpg,4.04,38013,\"fiction, history\",Cane RiverLalita Tademy\r\n2568,2645,43884,Terry Goodkind,\"Phantom (Sword of Truth, #10)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574449879l/43884.jpg,3.99,35131,\"fantasy, fiction\",\"Richard desperately searches for his long-lost, amnesiac beloved, Kahlan\nAmnell, racing to find her before she can uncover the secrets of her lost\nidentity, thereby making her vulnerable to evil.\"\r\n2569,2646,29582,Isaac Asimov,Foundation and Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389759320l/29582.jpg,4.02,39003,\"fiction, science\",Foundation and EarthIsaac Asimov\r\n2570,2647,10058,\"James D. Bradley, Ron Powers\",Flags of Our Fathers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923564l/10058.jpg,4.18,37561,\"history, nonfiction\",\"Flags of Our FathersJames D. Bradley, Ron Powers\"\r\n2571,2648,99111,\"A.A. Milne, Ernest H. Shepard\",Winnie-the-Pooh & The House at Pooh Corner,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348200401l/99111.jpg,4.43,32504,\"classics, fiction\",\"Ten adventures of Pooh, Eeyore, Tigger, Piglet, Owl, and other friends of\nChristopher Robin.\"\r\n2572,2649,112803,Mahatma Gandhi,An Autobiography or The Story of My Experiments with Truth,https://images.gr-assets.com/books/1320560971l/112803.jpg,4.07,28177,\"biography, philosophy\",\"Product Dimensions: 7 x 4.7 x 0.8 inches, wt: 1 Lb. Mohandas Karamchand\nGandhi was born in Western India in 1869. He was educated in London and\nlater travelled to South Africa, where he experienced racism and took up\nthe rights of Indians, instituting his first campaign of passive\nresistance. In 1915 he returned to British-controlled India, bringing to a\ncountry in the throes of independence his commitment to non-violent change,\nand his belief always in the power of truth. Under Gandhi's lead, millions\nof protesters would engage in mass campaigns of civil disobedience, seeking\nchange through ahimsa or non-violence. For Gandhi, the long path towards\nIndian independence would lead to imprisonment and hardship, yet he never\nonce forgot the principles of truth and non-violence so dear to him.\nWritten in the 1920s, Gandhi's autobiography tells of his struggles and his\ninspirations; a powerful and enduring statement of an extraordinary life.\"\r\n2573,2650,2265,\"Lance Armstrong, Sally Jenkins\",It's Not About the Bike: My Journey Back to Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433639489l/2265._SY475_.jpg,3.72,31963,\"sports, biography\",\"It's Not About the Bike: My Journey Back to LifeLance Armstrong, Sally Jenkins\"\r\n2574,2651,45546,Stephen E. Ambrose,Undaunted Courage,https://images.gr-assets.com/books/1408925996l/45546.jpg,4.22,32875,\"history, nonfiction\",\"From the New York Times bestselling author of Band of Brothers and D-Day,\nthe definitive book on Lewis and Clark’s exploration of the Louisiana\nPurchase, the most momentous expedition in American history and one of the\ngreat adventure stories of all time. In 1803 President Thomas Jefferson\nselected his personal secretary, Captain Meriwether Lewis, to lead a voyage\nup the Missouri River to the Rockies, over the mountains, down the Columbia\nRiver to the Pacific Ocean, and back. Lewis and his partner, Captain\nWilliam Clark, made the first map of the trans-Mississippi West, provided\ninvaluable scientific data on the flora and fauna of the Louisiana Purchase\nterritory, and established the American claim to Oregon, Washington, and\nIdaho. Ambrose has pieced together previously unknown information about\nweather, terrain, and medical knowledge at the time to provide a vivid\nbackdrop for the expedition. Lewis is supported by a rich variety of\ncolorful characters, first of all Jefferson himself, whose interest in\nexploring and acquiring the American West went back thirty years. Next\ncomes Clark, a rugged frontiersman whose love for Lewis matched\nJefferson’s. There are numerous Indian chiefs, and Sacagawea, the Indian\ngirl who accompanied the expedition, along with the French-Indian hunter\nDrouillard, the great naturalists of Philadelphia, the French and Spanish\nfur traders of St. Louis, John Quincy Adams, and many more leading\npolitical, scientific, and military figures of the turn of the century.\nHigh adventure, high politics, suspense, drama, and diplomacy combine with\nhigh romance and personal tragedy to make this outstanding work of\nscholarship as readable as a novel.\"\r\n2575,2652,18803640,Helen Macdonald,H is for Hawk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442151714l/18803640._SY475_.jpg,3.74,30841,\"memoir, nonfiction\",H is for HawkHelen Macdonald\r\n2576,2653,21423525,David Nicholls,Us,https://images.gr-assets.com/books/1406116779l/21423525.jpg,3.66,28856,\"fiction, contemporary\",UsDavid Nicholls\r\n2577,2654,66695,R.A. Salvatore,Sojourn (Dark Elf #3),https://images.gr-assets.com/books/1322861953l/66695.jpg,4.23,38242,\"fantasy, fiction\",Sojourn (Dark Elf #3)R.A. Salvatore\r\n2578,2656,6218007,\"Karuho Shiina, Tomo Kimura\",君に届け 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348703553l/6218007.jpg,4.23,37369,\"manga, romance\",\"君に届け 1Karuho Shiina, Tomo Kimura\"\r\n2579,2657,182425,Dean Koontz,False Memory,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447589l/182425.jpg,3.87,36882,\"horror, fiction\",\"While struggling to help an agoraphobic friend cope, Martie Rhodes, a young\nvideo game designer, suddenly falls prey to her own traumatic autophobia, a\nfear of herself.\"\r\n2580,2658,34510,Terry Pratchett,Moving Pictures,https://images.gr-assets.com/books/1320456553l/34510.jpg,3.91,42892,\"fantasy, fiction\",Moving PicturesTerry Pratchett\r\n2581,2659,12513614,C.J. Roberts,Captive in the Dark,https://images.gr-assets.com/books/1315343569l/12513614.jpg,4.01,55542,\"romance, contemporary\",\"THE DARK DUET (BOOK 3):It didn't happen exactly as Livvie said. She's been\nvery kind to me in the retelling of our story. The truth is far\nmore…complicated.DARK DUET\"\r\n2582,2661,2082136,Mary Roach,Bonk: The Curious Coupling of Science and Sex,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348226205l/2082136.jpg,3.83,38157,\"science, nonfiction\",\"A whimsical assessment of the science of sexual physiology considers the\nlighter side of such topics as mythologies about a woman's ability to\nexperience orgasm and the ineffectiveness of Viagra on female pandas.\"\r\n2583,2662,544257,Rachel Caine,Midnight Alley,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182869l/544257.jpg,4.11,49083,\"paranormal, fantasy\",Midnight AlleyRachel Caine\r\n2584,2663,23278537,\"Nina George, Simon Pare\",Das Lavendelzimmer ,https://images.gr-assets.com/books/1412462018l/23278537.jpg,3.51,34383,\"fiction, romance\",A cloth bag containing ten copies of the title.\r\n2585,2664,13562049,Ian McEwan,Sweet Tooth,https://images.gr-assets.com/books/1344373046l/13562049.jpg,3.4,32637,\"fiction, mystery\",Sweet ToothIan McEwan\r\n2586,2665,17333880,Abbi Glines,\"Twisted Perfection (Perfection, #1)\",https://images.gr-assets.com/books/1360904964l/17333880.jpg,4.26,57408,\"romance, contemporary\",\"Twisted Perfection (Perfection, #1)Abbi Glines\"\r\n2587,2666,19675,Tom Clancy,Executive Orders,https://images.gr-assets.com/books/1419127064l/19675.jpg,4.04,35513,\"fiction, thriller\",\"Jack Ryan has become President of the United States-and finds himself\nsurrounded by enemies both inside the White House and around the world.\"\r\n2588,2667,8592946,Ann Voskamp,One Thousand Gifts,https://images.gr-assets.com/books/1393970725l/8592946.jpg,4.03,33960,\"nonfiction, spirituality\",One Thousand GiftsAnn Voskamp\r\n2589,2668,156427,Robert Bloch,Psycho,https://images.gr-assets.com/books/1393286878l/156427.jpg,4.09,36153,\"horror, fiction\",\"Mary Crane believes she has found shelter from the storm when she checks\ninto the Bates Motel, but the knife-wielding owner, Norman Bates, soon rips\nher piece of mind to shreds and the nightmare begins.\"\r\n2590,2669,45100,Robin Hobb,Ship of Magic,https://images.gr-assets.com/books/1360507722l/45100.jpg,4.12,37381,\"fantasy, fiction\",\"Expecting to inherit her family's Liveship, Althea Vestrit now must defend\nthis animate, intelligent treasure from both her scheming brother-in-law,\nwho plans to use it as a slave ship, and a nation of ruthless pirates, led\nby Captain Kennit.\"\r\n2591,2670,148337,\"Alistair MacLean, Clint Willis\",Where Eagles Dare ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348212543l/148337.jpg,4.12,35233,\"thriller, fiction\",\"A group of Allied agents is sent into the heart of the Austrian Alps in\n1944 to rescue a military staff member from an inaccessible Nazi stronghold\nbefore he is forced to expose plans for D-Day. Reprint.\"\r\n2592,2671,41977,Maeve Binchy,Circle of Friends,https://images.gr-assets.com/books/1342486126l/41977.jpg,4,43936,\"romance, contemporary\",\"Two friends who grew up together in a small Irish village attend college in\nDublin, where their lives become intertwined with the beautiful Nan Mahon\nand Jack Foley, the handsome son of a doctor\"\r\n2593,2672,23513349,Rupi Kaur,milk and honey,https://images.gr-assets.com/books/1491595510l/23513349.jpg,4.27,73104,\"poetry, nonfiction\",\"A hardcover gift edition of Milk and Honey, the #1 New York Times\nbestselling poetry and prose collection by Rupi Kaur, which has sold over 3\nmillion copies worldwide. Milk and Honey is a collection of poetry and\nprose about survival. About the experience of violence, abuse, love, loss,\nand femininity. This clothbound edition features deckled edge paper, a\nwoven ribbon marker, and a foreword written by the author. The book is\ndivided into four chapters, and each chapter serves a different purpose.\nDeals with a different pain. Heals a different heartache. Milk and Honey\ntakes readers through a journey of the most bitter moments in life and\nfinds sweetness in them because there is sweetness everywhere if you are\njust willing to look.\"\r\n2594,2673,5720,Tom Clancy,Rainbow Six,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179305l/5720.jpg,4.07,35278,\"fiction, thriller\",\"In a novel of military intrigue, formidable ex-Navy SEAL John Clark takes\non a world-threatening band of terrorists\"\r\n2595,2674,16788,Neil Gaiman,Fragile Things: Short Fictions and Wonders,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924550l/16788.jpg,4.02,38942,\"fantasy, fiction\",\"A mysterious circus terrifies an audience for one extraordinary performance\nbefore disappearing into the night . . . Two teenage boys crash a party and\nmeet the girls of their dreams—and nightmares . . . In a Hugo Award–winning\nstory, a great detective must solve a most unsettling royal murder in a\nstrangely altered Victorian England . . . These marvelous creations and\nmore showcase the unparalleled invention and storytelling brilliance—and\nthe terrifyingly dark and entertaining wit—of the incomparable Neil Gaiman.\nBy turns delightful, disturbing, and diverting, Fragile Things is a gift of\nliterary enchantment from one of the most original writers of our time.\"\r\n2596,2675,8196732,Rosamund Lupton,Sister,https://images.gr-assets.com/books/1320189763l/8196732.jpg,3.77,35893,\"thriller, crime\",\"Refusing to believe that her pregnant, mercurial, artist sister committed\nsuicide, Beatrice begins an obsessive search for the truth and is dismissed\nby her family and authorities until she closes in on a murderous predator.\"\r\n2597,2676,20518872,\"Liu Cixin, Ken Liu\",三体,https://images.gr-assets.com/books/1415428227l/20518872.jpg,4,33409,\"fiction, fantasy\",\"Set against the backdrop of China's Cultural Revolution, a secret military\nproject's signal is received by an alien civilization on the brink of\ndestruction, which plans to invade Earth; meanwhile, on Earth, different\ncamps start forming, planning to either welcome the superior beings and\nhelp them take over a world seen as corrupt, or to fight against the\ninvasion.\"\r\n2598,2677,48002,Terry Pratchett,Thief of Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177603l/48002.jpg,4.25,42002,\"fantasy, fiction\",Thief of TimeTerry Pratchett\r\n2599,2678,154798,\"Mark Millar, Kilian Plunkett, Andrew Robinson, Walden Wong, Dave Johnson\",Superman: Red Son,https://images.gr-assets.com/books/1298557533l/154798.jpg,4.17,35438,\"comics, fiction\",\"When the rocket carrying an infant Superman lands in the U.S.S.R. instead\nof the United States, his presence creates a very different universe for\nthe familiar DC Comics characters.\"\r\n2600,2679,227593,Julia Glass,Three Junes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924179l/227593.jpg,3.56,35677,\"fiction, contemporary\",\"This strong and memorable debut novel draws the reader deeply into the\nlives of several central characters during three separate Junes spanning\nten years.\"\r\n2601,2681,1858013,Timothy J. Keller,The Reason for God: Belief in an Age of Skepticism,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185497l/1858013.jpg,4.2,31692,\"christian, religion\",\"Arguing that most Americans are members of the Christian faith, a response\nto promoters of science and secularism addresses key questions about\nsuffering, exclusivity, and the belief that Christianity is the only true\nreligion. Reprint.\"\r\n2602,2682,12891107,Mark  Lawrence,King of Thorns,https://images.gr-assets.com/books/1322539112l/12891107.jpg,4.2,33941,\"fantasy, fiction\",\"After finding ancient, magical artifacts hidden in a chamber beneath the\ncastle, King Jorg plots to use them against the twenty thousand members of\nthe enemy's approaching army.\"\r\n2603,2683,12160906,Jeffrey Archer,The Sins of the Father,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934235l/12160906._SX318_.jpg,4.01,27456,\"fiction, mystery\",\"A second installment in a planned five-part series finds Harry despairing\nof a marriage to Emma and joining the Merchant Navy before assuming the\nidentity of a fallen American soldier whose past proves even more turbulent\nthan Harry's own.\"\r\n2604,2685,3047849,Sara Shepard,Killer ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1246065139l/3047849.jpg,4.07,39702,\"contemporary, fiction\",\"In picture-perfect Rosewood, Pennsylvania, ash-blond highlights gleam in\nthe winter sun and frozen lakes sparkle like Swarovski crystals. But\npictures often lie—and so do Rosewood's four prettiest girls. Hanna, Aria,\nSpencer, and Emily have been lying ever since they became friends with\nbeautiful Alison DiLaurentis. Ali made them do terrible things—things they\nhad to keep secret for years. And even though Ali was killed at the end of\nseventh grade, their bad-girl ways didn't die with her. Hanna's on a\nmission to corrupt Rosewood's youth, starting with a very attractive\nsophomore. Aria's snooping into her boyfriend's past. Spencer's\nstealing—from her family. And pure little Emily's abstaining from\nabstinence. The girls should be careful, though. They thought they were\nsafe when Ali's killer was arrested and A's true identity was finally\nrevealed. But now there's a new A in town turning up the heat. And this\ntime Rosewood is going to burn.\"\r\n2605,2686,4898,\"W. Chan Kim, Renée Mauborgne\",Blue Ocean Strategy: How to Create Uncontested Market Space and Make Competition Irrelevant,https://images.gr-assets.com/books/1416445924l/4898.jpg,3.86,30665,\"business, nonfiction\",\"Kim and Mauborgne present a non-competitive approach for achieving high\nbusiness growth through the development of uncontested market space with\npractically limitless potential.\"\r\n2606,2687,6431790,James Patterson,Fang,https://images.gr-assets.com/books/1344269411l/6431790.jpg,4.07,48964,\"fantasy, romance\",\"Angel says that Fang will be the first to die, and Angel is never wrong.\nMaximum Ride is used to living desperately on the run from evil forces\nsabotaging her quest to save the world--but nothing has ever come as close\nto destroying her as this horrifying prophetic message. Fang is Max's best\nfriend, her soul mate, her partner in the leadership of her flock of winged\nchildren. A life without Fang is a life unimaginable. When a newly created\nwinged boy, the magnificent Dylan, is introduced into the flock, their\nworld is upended yet again. Raised in a lab like the others, Dylan exists\nfor only one reason: he was designed to be Max's perfect other half. Thus\nunfolds a battle of perfection versus passion that terrifies, twists, and\nturns . . . and meanwhile, the apocalypse is coming. [BB1]thin spaces\naround em-dash\"\r\n2607,2688,8546358,Sarah Addison Allen,The Peach Keeper ,https://images.gr-assets.com/books/1320549305l/8546358.jpg,3.84,45468,\"fiction, romance\",\"Returning to the hometown of her youth after a failed marriage, Willa\nstruggles to find her place in a community where she no longer feels like\nshe belongs, uncovers a 60-year family feud and falls for a strangely\nsecretive man. By the author of The Girl Who Chased the Moon. Reprint. A\nbest-selling novel.\"\r\n2608,2689,815234,\"Audrey Wood, Don    Wood\",The Napping House,https://images.gr-assets.com/books/1410229873l/815234.jpg,4.27,37773,\"fiction, poetry\",\"In this cumulative tale, a wakeful flea atop a number of sleeping creatures\ncauses a commotion, with just one bite.\"\r\n2609,2691,33453,Christopher Moore,You Suck ,https://images.gr-assets.com/books/1331323414l/33453.jpg,3.82,38818,\"fiction, fantasy\",You Suck Christopher Moore\r\n2610,2692,18104607,Jamie McGuire,Beautiful Oblivion,https://images.gr-assets.com/books/1398284779l/18104607.jpg,4.13,54391,\"romance, fiction\",\"A once-popular young man helping to support his family after a tragic\naccident falls irrevocably in love with a fiercely independent and driven\ncollege student who wants to avoid romantic entanglements. By the best-\nselling author of Beautiful Disaster. Original.\"\r\n2611,2693,77711,Vernor Vinge,A Fire Upon The Deep,https://images.gr-assets.com/books/1333915005l/77711.jpg,4.13,37986,\"fiction, fantasy\",\"After a spaceship crashes in unknown and unfriendly territory, two young\nchildren, the only survivors, are left to fend for themselves, but with\ntime being of the essence, a rescue plan must be put into place quickly\nbefore the clock runs out on their lives. Reissue.\"\r\n2612,2694,6709,Eckhart Tolle,\"Practicing the Power of Now: Essential Teachings, Meditations, and Exercises from The Power of Now\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178295l/6709.jpg,4.25,29256,\"spirituality, philosophy\",\"A collection of simple meditations and exercises helps readers highten\ntheir consciousness of the present and live in the moment more completely.\n50,000 first printing. $50,000 ad/promo. Original.\"\r\n2613,2695,19469,Caroline B. Cooney,The Face on the Milk Carton,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.72,43334,\"mystery, fiction\",\"A photograph of a missing girl on a milk carton leads Janie on a search for\nher real identity.\"\r\n2614,2696,413158,Robert Lopshire,Put Me in the Zoo,https://images.gr-assets.com/books/1327947254l/413158.jpg,4.13,38809,\"fantasy, poetry\",\"A large, spotted animal discovers he really belongs in a circus, not a zoo.\"\r\n2615,2697,6448470,Sophie Jordan,\"Firelight (Firelight, #1)\",https://images.gr-assets.com/books/1269737893l/6448470.jpg,3.88,51815,\"fantasy, romance\",\"A hidden truth. Mortal enemies. Doomed love. With her rare ability to\nbreathe fire, Jacinda is special even among the draki—the descendants of\ndragons who can shift between human and dragon forms. But when Jacinda’s\nrebelliousness forces her family to flee into the human world, she\nstruggles to adapt, even as her draki spirit fades. The one thing that\nrevives it is the gorgeous, elusive Will, whose family hunts her kind.\nJacinda can’t resist getting closer to him, even though she knows she’s\nrisking not only her life but the draki’s most closely guarded secret.\nMythical powers and breathtaking romance ignite in this story of a girl who\ndefies all expectations and whose love crosses an ancient divide.\"\r\n2616,2698,9809,\"Italo Calvino, William Weaver\",Le città invisibili,https://images.gr-assets.com/books/1468623303l/9809.jpg,4.19,32253,\"fiction, fantasy\",\"In Kublai Khan's garden, at sunset, the young Marco Polo diverts the aged\nemperor from his obsession with the impending end of his empire with tales\nof countless cities past, present, and future\"\r\n2617,2699,11096647,Jessica Park,Flat-Out Love ,https://images.gr-assets.com/books/1333821470l/11096647.jpg,4.01,47644,\"romance, contemporary\",\"But really, how was this freshly-minted Boston transplant and newbie\ncollege freshman supposed to know that she would end up living with the\nfamily of an old friend of her mother's? This was all supposed to be\ntemporary. Julie wasn't supposed to be important to the Watkins family, or\nto fall in love with one of the brothers. Especially the one she's never\nquite met. But what does that really matter? Finn gets her, like no one\never has before. They have connection.But here's the thing about love, in\nall its twisty, bumpy permutations—it always throws you a few curves. And\nno one ever escapes unscathed.New York Times best-selling author Jessica\nPark mines the territory of love's growing pains with wit, sharp insights,\nand a discernible heat and heartbeat. Her previous novels include\nRelatively Famous, and she authored the e-shorts What the Kid Says (Parts 1\nand 2) and Facebooking Rick Springfield.Visit her on the web at\nwww.jessicapark.me The author of Flat-Out Love has donated this book to the\nWorldreader program\"\r\n2618,2700,17905709,Richard Flanagan,The Narrow Road to the Deep North,https://images.gr-assets.com/books/1374734363l/17905709.jpg,4,25197,\"fiction, history\",\"Winner of the Man Booker Prize “Nothing since Cormac McCarthy's The Road\nhas shaken me like this.” —The Washington Post From the author of the\nacclaimed Gould's Book of Fish, a magisterial novel of love and war that\ntraces the life of one man from World War II to the present. August, 1943:\nAustralian surgeon Dorrigo Evans is haunted by his affair with his uncle's\nyoung wife two years earlier. His life, in a brutal Japanese POW camp on\nthe Thai-Burma Death Railway, is a daily struggle to save the men under his\ncommand. Until he receives a letter that will change him forever. A\nsavagely beautiful novel about the many forms of good and evil, of truth\nand transcendence, as one man comes of age, prospers, only to discover all\nthat he has lost.\"\r\n2619,2701,26582,\"A.N. Roquelaure, Anne Rice\",The Claiming of Sleeping Beauty,https://images.gr-assets.com/books/1340735794l/26582.jpg,3.28,38387,\"fiction, fantasy\",\"A beautifully designed boxed set of erotica by the bestselling author.\nRice's enormously successful \"\"Beauty\"\" books are based very loosely on the\nSleeping Beauty tale, and explore just about every sexually explicit\nfantasy imaginable. \"\"Articulate, baroque, and fashionably pornographic\"\".--\nPlayboy.\"\r\n2620,2702,6114607,Jennifer Worth, Call the midwife : a true story of the East End in the 1950s,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442450890l/6114607._SY475_.jpg,4.17,19176,\"nonfiction, history\",\"A fascinating slice of social history - Jennifer Worth's tales of being a\nmidwife in 1950s London.\"\r\n2621,2703,10882,Hunter S. Thompson,Hell's Angels,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166334569l/10882._SY475_.jpg,4,27819,\"nonfiction, history\",\"\"\"Fourth printing\"\"--Verso of t.p. Includes brief statement by author about\norigin of work, not present in 1st printing.\"\r\n2622,2704,9758764,Jennifer Weiner,Then Came You,https://images.gr-assets.com/books/1308787263l/9758764.jpg,3.69,36469,\"fiction, contemporary\",Then Came YouJennifer Weiner\r\n2623,2706,73070,Susan Elizabeth Phillips,It Had to Be You,https://images.gr-assets.com/books/1297088239l/73070.jpg,4.04,45961,\"romance, contemporary\",\"The Windy City isn't quite ready for Phoebe Somerville -- the outrageous,\ncurvaceous New York knockout who has just inherited the Chicago Stars\nfootball team. And Phoebe is definitely not prepared for the Stars' head\ncoach Dan Celebow, a sexist jock taskmaster with a one-track mind. Celebow\nis everything Phoebe abhors. And the sexy new boss is everything Dan\ndespises -- a meddling bimbo who doesn't know a pigskin from a pitcher's\nmound. So why is he drawn to the shameless sexpot like a heat-seeking\nmissile? And why does the coach's good ol' boy charm leave cosmopolitan\nPhoebe feeling awkward, tongue-tied....and ready to fight? The sexy,\nheartwarming, and hilarious \"\"prequel\"\" to Susan Elizabeth Phillip's This\nHeart of Mine -- her sensational bestsellng blockbuster -- It Had To Be You\nis an enchanting story of two stubborn people who believe in playing for\nkeeps.\"\r\n2624,2707,13707738,Michael   Lewis,Boomerang: Travels in the New Third World,https://images.gr-assets.com/books/1345046879l/13707738.jpg,3.87,15616,\"business, nonfiction\",\"“Lewis shows again why he is the leading journalist of his\ngeneration.”—Kyle Smith, Forbes\"\r\n2625,2708,7227174,Jennifer Weiner,Fly Away Home,https://images.gr-assets.com/books/1267210300l/7227174.jpg,3.66,37026,\"fiction, contemporary\",\"A politician's wife retreats with her grown daughters to a Connecticut\nbeach house after a painful public betrayal, an escape marked by new\nbeginnings and her younger daughter's pregnancy.\"\r\n2626,2709,14662,\"Stendhal, Roger Gard\",Le Rouge et le Noir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254311l/14662.jpg,3.87,33346,\"classics, history\",\"Handsome and ambitious, Julien Sorel is determined to rise above his humble\npeasant origins and make something of his life. To do this, he realizes he\nmust adopt the code of hypocrisy by which society operates, achieving\nadvancement through deceit and self-interest. His triumphant career takes\nhim from the provinces to glamorous Paris society, along the way conquering\nthe beautiful, gentle Madame de Renal, unhappy wife of his employer, and\nthen the haughty, aristocratic Mathilde, engaged to another man. But he\nbrings about his own downfall when he commits an unexpected, devastating\ncrime.\"\r\n2627,2710,16183,Philippa Gregory,The Virgin's Lover,https://images.gr-assets.com/books/1441424964l/16183.jpg,3.69,40065,\"ebooks, contemporary\",\"From #1 New York Times bestselling author and “queen of royal fiction” (USA\nTODAY) comes a riveting and scandalous love triangle between a young woman\non the brink of greatness, a young man whose ambition far exceeds his\nmeans, and the wife who cannot forgive them. In the autumn of 1558, church\nbells across England ring out the joyous news that Elizabeth I is the new\nqueen, yet one woman hears the tidings with utter dread. She is Amy Dudley,\nwife of Sir Robert, and she knows that Elizabeth’s ambitious leap to the\nthrone will draw her husband back to the center of the glamorous Tudor\ncourt, where he was born to be. Elizabeth’s excited triumph is short-lived.\nShe has inherited a bankrupt country where treason is rampant and foreign\nwar a certainty. Her faithful advisors warns her that she will survive only\nif she marries a strong prince to govern the rebellious country, but the\none man Elizabeth desires is her childhood friend, the ambitious Robert\nDudley. As the young couple falls back in love, a question hangs in the\nair: can he really set aside his wife and marry the queen? When Amy is\nfound dead, Elizabeth and Dudley are suddenly plunged into a struggle for\nsurvival.\"\r\n2628,2711,332775,Catherine Fisher,Incarceron,https://images.gr-assets.com/books/1327414514l/332775.jpg,3.64,43524,\"fantasy, fiction\",\"To free herself from an upcoming arranged marriage, Claudia, the daughter\nof the Warden of Incarceron, a futuristic prison with a mind of its own,\ndecides to help a young prisoner escape.\"\r\n2629,2712,10800916,C.C. Hunter,Awake at Dawn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546084540l/10800916.jpg,4.29,46269,\"paranormal, fantasy\",\"Step into the world of Shadow Falls, a camp that helps teens tap into their\nspecial…talents. Once you visit, you'll never forget it—and you'll never,\never be the same. From the moment Kylie Galen arrived at Shadow Falls Camp,\nshe's had one burning question: What am I? Surrounded by vampires,\nwerewolves, shape-shifters, fairies and witches, Kylie longs to figure out\nher own supernatural identity…and what her burgeoning powers mean. And now\nshe'll need them more than ever, because she's being haunted by a new\nspirit who insists that someone Kylie knows—and loves—will die before the\nend of the summer. If only she only knew who she was supposed to save. And\nhow… But giving Kylie the most trouble is her aching heart. Gorgeous\nwerewolf Lucas left camp with another girl, but he's still visiting Kylie\nin her dreams. And Derek, a sexy half Fae who's always been there for her\nwhen she needed him, is pushing to get more serious—and growing impatient,\nespecially when Lucas returns. Kylie knows she needs to decide between the\nboys, and it's tearing her up inside. Yet romance will have to wait,\nbecause something from the dark side of the supernatural world is hiding in\nShadow Falls. It's about to threaten everything she holds dear…and bring\nher closer to her destiny. Awake at Dawn is the second installment in C.C.\nHunter's young adult fantasy series.\"\r\n2630,2713,452157,Bev Vincent,The Road to the Dark Tower: Exploring Stephen King's Magnum Opus,https://images.gr-assets.com/books/1309204235l/452157.jpg,4.29,32163,\"fantasy, horror\",\"Prepared with the full cooperation of Stephen King, a comprehensive\noverview of the author's seven-volume series, The Dark Tower, analyzes each\nvolume in the series, from The Gunslinger to The Dark Tower, discusses the\nlink between the books and King's other novels, and offers insights from\nthe author on the creative process involved. Original.\"\r\n2631,2714,9462795,Josephine Angelini,Starcrossed,https://images.gr-assets.com/books/1358266716l/9462795.jpg,4.08,49448,\"fantasy, contemporary\",StarcrossedJosephine Angelini\r\n2632,2715,7739934,Alyson Noel,Night Star,https://images.gr-assets.com/books/1362336383l/7739934.jpg,3.82,43998,\"fantasy, paranormal\",\"A latest entry in the best-selling series continues the epic love story\nbetween Ever and Damen, who confront bitter rivals, jealous friends and\ntheir own worst fears in order to secure their eternal love. By the author\nof Radiance.\"\r\n2633,2716,67238,N.H. Kleinbaum,Dead Poets Society ,https://images.gr-assets.com/books/1359814692l/67238.jpg,4.21,33645,\"classics, fiction\",\"Todd Anderson and his friends at Welton Academy can hardly believe how\ndifferent life is since their new English professor, the flamboyant John\nKeating, has challenged them to \"\"make your lives extraordinary! Inspired by\nKeating, the boys resurrect the Dead Poets Society--a secret club where,\nfree from the constraints and expectations of school and parents, they let\ntheir passions run wild. As Keating turns the boys on to the great words of\nByron, Shelley, and Keats, they discover not only the beauty of language,\nbut the importance of making each moment count. But the Dead Poets pledges\nsoon realize that their newfound freedom can have tragic consequences. Can\nthe club and the individuality it inspires survive the pressure from\nauthorities determined to destroy their dreams?\"\r\n2634,2718,63720,Terry Pratchett,The Fifth Elephant,https://images.gr-assets.com/books/1327961702l/63720.jpg,4.24,40138,\"fantasy, fiction\",The Fifth ElephantTerry Pratchett\r\n2635,2719,1524173,John Flanagan,The Sorcerer in the North,https://images.gr-assets.com/books/1327918728l/1524173.jpg,4.25,39795,\"fantasy, fiction\",\"Will, now a full-fledged Ranger responsible for a sleepy fief, finds a new\nadventure as he seeks the traitors who poisoned the king, investigating\nrumors of sorcery, and trying to rescue his friend Alyss, who is taken\nhostage.\"\r\n2636,2720,639864,Paramahansa Yogananda,Autobiography of a Yogi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347427162l/639864.jpg,4.22,26713,\"biography, spirituality\",A reprint of the Philosophical Library 1946 First Edition.\r\n2637,2721,9595650,Kevin Hearne,\"Hexed (Iron Druid Chronicles, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235604l/9595650.jpg,4.22,39926,\"fantasy, paranormal\",\"With the help of his magical sword, neighbor's rocket-propelled grenade\nlauncher, and vampire attorney, Atticus O'Sullivan, the last of the druids,\nmust stop a fallen angel and a coven of witches linked to the German side\nof World War II.\"\r\n2638,2722,1325218,\"Alvin Schwartz, Stephen Gammell\",Scary Stories to Tell in the Dark,https://images.gr-assets.com/books/1440189576l/1325218.jpg,4.05,38879,\"horror, fiction\",\"Scary Stories to Tell in the DarkAlvin Schwartz, Stephen Gammell\"\r\n2639,2723,26109394,Harlan Coben,Fool Me Once,https://images.gr-assets.com/books/1443190440l/26109394.jpg,3.9,30788,\"mystery, thriller\",Fool Me OnceHarlan Coben\r\n2640,2724,27323,John Hersey,Hiroshima,https://images.gr-assets.com/books/1499717742l/27323.jpg,3.94,41338,\"history, nonfiction\",\"The classic tale of the day the first atom bomb was dropped offers a\nhaunting evocation of the memories of survivors and an appeal to the\nconscience of humanity\"\r\n2641,2725,6316171,Jennifer Brown,Hate List,https://images.gr-assets.com/books/1479653095l/6316171.jpg,4.03,39677,\"contemporary, fiction\",Hate ListJennifer Brown\r\n2642,2727,3873,Karen Armstrong,\"A History of God: The 4,000-Year Quest of Judaism, Christianity, and Islam\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924363l/3873.jpg,3.85,32506,\"religion, history\",\"Explores the evolution of the idea and experience of God, from Abraham to\nthe present day.\"\r\n2643,2728,16131032,James S.A. Corey,Abaddon's Gate,https://images.gr-assets.com/books/1407572059l/16131032.jpg,4.18,27860,\"fiction, fantasy\",\"The third book in the NYT bestselling Expanse series, Abaddon's Gate opens\nthe door to the ruins of an alien gate network, and the crew of the\nRocinante may hold the key to unlocking its secrets. Now a Prime Original\nseries. For generations, the solar system -- Mars, the Moon, the Asteroid\nBelt -- was humanity's great frontier. Until now. The alien artifact\nworking through its program under the clouds of Venus has appeared in\nUranus's orbit, where it has built a massive gate that leads to a starless\ndark. Jim Holden and the crew of the Rocinante are part of a vast flotilla\nof scientific and military ships going out to examine the artifact. But\nbehind the scenes, a complex plot is unfolding, with the destruction of\nHolden at its core. As the emissaries of the human race try to find whether\nthe gate is an opportunity or a threat, the greatest danger is the one they\nbrought with them. Abaddon's Gate is a breakneck science fiction adventure\nfollowing the critically acclaimed Caliban's War. The ExpanseLeviathan\nWakesCaliban's WarAbaddon's GateCibola BurnNemesis GamesBabylon's\nAshesPersepolis Rising The Expanse Short Fiction The Butcher of Anderson\nStationGods of RiskThe ChurnThe Vital AbyssStrange Dogs\"\r\n2644,2729,5932,\"Pablo Neruda, W.S. Merwin, Cristina García\",Veinte poemas de amor y una canción desesperada,https://images.gr-assets.com/books/1447622711l/5932.jpg,4.33,31606,\"classics, romance\",\"The Nobel PrizeÂ–winning poetÂ's most popular work When it appeared in\n1924, this work launched into the international spotlight a young and\nunknown poet whose writings would ignite a generation. W. S. MerwinÂ's\nincomparable translation faces the original Spanish text. Now in a black-\nspine Classics edition, this book stands as an essential collection that\ncontinues to inspire lovers and poets around the world.\"\r\n2645,2730,382549,Tom Clancy,The Cardinal of the Kremlin,https://images.gr-assets.com/books/1319381380l/382549.jpg,4.01,37672,\"fiction, thriller\",\"Mikhail Filitov is a war hero and Red Army Colonel, but his CIA code name\nis \"\"Cardinal.\"\" A chance encounter in a Moscow subway leads the KGB to begin\na hunt--for the spy in top echelons of power. From the author of \"\"Clear and\nPresent Danger,\"\" \"\"The Hunt for Red October\"\" and \"\"Red Storm Rising,\"\" enter a\nworld of high-wire, high-tech international intrigue that reaches from the\nbloody dust of Afghanistan to the use of lasers in space. The US and the\nUSSR are negotiating a treaty that could lead to war--or peace--while their\nsecret espionage armies are locked in the ultimate struggle. What the\nCardinal knows could change the course of history. What a maverick CIA man\nnamed Ryan must do is outduel the KGB--and bring the Cardinal out alive!\"\r\n2646,2731,1062516,David Shannon,\"No, David!\",https://images.gr-assets.com/books/1360058223l/1062516.jpg,4.11,36963,fiction,\"In an autobiographical picture book by the creator of A Bad Case of\nStripes, a mischievous boy is depicted doing a variety of naughty things\nfor which he is repeatedly admonished, but finally he gets a hug.\"\r\n2647,2732,18414,\"Thomas More, Paul Turner\",\"Libellus vere aureus, nec minus salutaris quam festivus, de optimo rei publicae statu deque nova insula Utopia\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190168l/18414.jpg,3.5,36680,\"classics, philosophy\",\"Textual and explanatory notes accompany a Yale translation of St. Thomas\nMore's classic work\"\r\n2648,2733,1099301,\"Pseudonymous Bosch, Gilbert Ford\",The Name of This Book Is Secret,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442896331l/1099301._SX318_.jpg,4.04,39440,\"mystery, fantasy\",\"Two eleven-year-old misfits try to solve the mystery of a dead magician and\nstop the evil Dr. L and Ms. Mauvais, who are searching for the secret of\nimmortality.\"\r\n2649,2734,18053060,Danielle  Paige,Dorothy Must Die,https://images.gr-assets.com/books/1381437107l/18053060.jpg,3.84,44785,\"fiction, romance\",\"The New York Times bestselling first book in a dark new series that\nreimagines the Oz saga, from debut author Danielle Paige. I didn't ask for\nany of this. I didn't ask to be some kind of hero. But when your whole life\ngets swept up by a tornado—taking you with it—you have no choice but to go\nalong, you know? Sure, I've read the books. I've seen the movies. I know\nthe song about the rainbow and the happy little blue birds. But I never\nexpected Oz to look like this. To be a place where Good Witches can't be\ntrusted, Wicked Witches may just be the good guys, and winged monkeys can\nbe executed for acts of rebellion. There's still a road of yellow brick—but\neven that's crumbling. What happened? Dorothy. They say she found a way to\ncome back to Oz. They say she seized power and the power went to her head.\nAnd now no one is safe. My name is Amy Gumm—and I'm the other girl from\nKansas. I've been recruited by the Revolutionary Order of the Wicked. I've\nbeen trained to fight. And I have a mission: Remove the Tin Woodman's\nheart. Steal the Scarecrow's brain. Take the Lion's courage. And—Dorothy\nmust die.\"\r\n2650,2735,16429,Dean Koontz,The Husband,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257740l/16429.jpg,3.8,36233,\"thriller, fiction\",\"When landscaper Mitchell Rafferty receives a phone call that his wife has\nbeen kidnapped and there is a two million dollar ransom, his extraordinary\ncommitment to his wife will take him on a harrowing, seventy-two hour\njourney of adventure, sacrifice, and redemption. 525,000 first printing.\"\r\n2651,2736,7048800,Aimee Bender,The Particular Sadness of Lemon Cake,https://images.gr-assets.com/books/1320541766l/7048800.jpg,3.19,42885,\"fiction, fantasy\",\"Discovering in childhood a supernatural ability to taste the emotions of\nothers in their cooking, Rose Edelstein grows up to regard food as a curse\nwhen it reveals everyone's secret realities. By the Pushcart-winning author\nof An Invisible Sign of My Own. Reprint. A best-selling book.\"\r\n2652,2737,6588,James Patterson,The Big Bad Wolf  ,https://images.gr-assets.com/books/1388328154l/6588.jpg,3.97,37060,\"mystery, fiction\",The Big Bad Wolf  James Patterson\r\n2653,2738,533465,\"Dai Sijie, Ina Rilke\",Balzac et la Petite Tailleuse chinoise,https://images.gr-assets.com/books/1403188885l/533465.jpg,3.63,39927,\"fiction, classics\",\"During the Chinese Cultural Revolution, two boys are sent to the country\nfor reeducation, where their lives take an unexpected turn when they meet\nthe beautiful daughter of a local tailor and stumble upon a forbidden stash\nof Western literature.\"\r\n2654,2739,18813642,Roxane Gay,Bad Feminist ,https://images.gr-assets.com/books/1421292744l/18813642.jpg,3.91,41012,\"nonfiction, memoir\",\"From the author of Hunger: A Memoir of (My) Body, the New York Times\nBestseller and Best Book of the Year at NPR, the Boston Globe, Newsweek,\nand many more A collection of essays spanning politics, criticism, and\nfeminism from one of the most-watched young cultural observers of her\ngeneration, Roxane Gay. “Pink is my favorite color. I used to say my\nfavorite color was black to be cool, but it is pink—all shades of pink. If\nI have an accessory, it is probably pink. I read Vogue, and I’m not doing\nit ironically, though it might seem that way. I once live-tweeted the\nSeptember issue.” In these funny and insightful essays, Roxane Gay takes us\nthrough the journey of her evolution as a woman (Sweet Valley High) of\ncolor (The Help) while also taking readers on a ride through culture of the\nlast few years (Girls, Django in Chains) and commenting on the state of\nfeminism today (abortion, Chris Brown). The portrait that emerges is not\nonly one of an incredibly insightful woman continually growing to\nunderstand herself and our society, but also one of our culture. Bad\nFeminist is a sharp, funny, and spot-on look at the ways in which the\nculture we consume becomes who we are, and an inspiring call-to-arms of all\nthe ways we still need to do better, coming from one of our most\ninteresting and important cultural critics.\"\r\n2655,2740,226709,V.C. Andrews,Petals on the Wind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1588089714l/226709._SY475_.jpg,3.82,40354,\"fiction, horror\",Petals on the WindV.C. Andrews\r\n2656,2741,6690,\"Roald Dahl, Quentin Blake\",Danny: The Champion of the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437500743l/6690._SX318_.jpg,4.07,39802,\"fiction, classics\",\"Danny: The Champion of the WorldRoald Dahl, Quentin Blake\"\r\n2657,2743,19351043,Noelle Stevenson,Nimona,https://images.gr-assets.com/books/1412626919l/19351043.jpg,4.2,44825,\"fantasy, comics\",\"The graphic novel debut from rising star Noelle Stevenson, based on her\nbeloved and critically acclaimed web comic, which Slate awarded its\nCartoonist Studio Prize, calling it \"\"a deadpan epic.\"\" Nemeses! Dragons!\nScience! Symbolism! All these and more await in this brilliantly\nsubversive, sharply irreverent epic from Noelle Stevenson. Featuring an\nexclusive epilogue not seen in the web comic, along with bonus conceptual\nsketches and revised pages throughout, this gorgeous full-color graphic\nnovel is perfect for the legions of fans of the web comic and is sure to\nwin Noelle many new ones. Nimona is an impulsive young shapeshifter with a\nknack for villainy. Lord Ballister Blackheart is a villain with a vendetta.\nAs sidekick and supervillain, Nimona and Lord Blackheart are about to wreak\nsome serious havoc. Their mission: prove to the kingdom that Sir Ambrosius\nGoldenloin and his buddies at the Institution of Law Enforcement and\nHeroics aren't the heroes everyone thinks they are. But as small acts of\nmischief escalate into a vicious battle, Lord Blackheart realizes that\nNimona's powers are as murky and mysterious as her past. And her\nunpredictable wild side might be more dangerous than he is willing to\nadmit.\"\r\n2658,2744,1192,Giada De Laurentiis,Everyday Italian: 125 Simple and Delicious Recipes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385089184l/1192.jpg,3.97,32751,\"cookbooks, nonfiction\",\"Presents techniques of Italian home cookery, including more than one\nhundred recipes and advice on creating dishes for everyday meals and\nspecial occasions.\"\r\n2659,2745,6537,Patricia Cornwell,From Potter's Field,https://images.gr-assets.com/books/1309209800l/6537.jpg,4.02,41377,\"mystery, fiction\",\"Dr. Kay Scarpetta matches wits with a sadistic killer who infiltrates the\nFBI's top-secret artificial intelligence system and closes in on Scarpetta\nherself\"\r\n2660,2746,84736,James Patterson,\"Mary, Mary\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388217078l/84736.jpg,3.93,36926,\"mystery, fiction\",\"Mary, MaryJames Patterson\"\r\n2661,2747,15055,Jeanette Winterson,Oranges Are Not the Only Fruit,https://images.gr-assets.com/books/1267717580l/15055.jpg,3.75,35082,\"fiction, contemporary\",\"Describes the humorous adventures during the childhood of an eccentric\ngirl, whose mother unsuccessfully tries to protect her from temptations\"\r\n2662,2748,16139641,R.K. Lilley,Grounded (Up In The Air #3),https://images.gr-assets.com/books/1358701028l/16139641.jpg,4.29,53089,\"romance, contemporary\",\"Grounded, Book 3 in the Up In The Air Trilogy. James and Bianca's story\ndraws to a close in the explosive conclusion to the Up In The Air Trilogy.\nAfter a short but earnest courtship, Bianca can no longer deny her feelings\nfor James, and though she's tried her hardest, she can't help but see that\nhe cares deeply for her, as well. In a completely uncharacteristic move,\nshe has put aside her misgivings and agreed to live with the enigmatic\nbillionaire. Is her leap of faith the beginning of something wonderful, or\nis it too much, too fast? As James and Bianca feel a growing need for each\nother that neither can deny, circumstances beyond their control intervene,\ntrying to tear them apart. Amidst the ever mounting threat of a monster who\nwants Bianca dead, and the constant pitfalls of an indiscreet past that\nJames can't seem to escape, can these two passionate lovers manage to find\ntheir happily ever after?\"\r\n2663,2749,19427193,Ravinder Singh,I Too Had A Love Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439162367l/19427193.jpg,3.64,24307,\"romance, fiction\",\"\"\"...The tender and heartfelt tale of Ravin and Khushi--two people who found\neach other on a matrimonial site and fell in love...until life put their\nlove to the ultimate test\"\"--Back cover.\"\r\n2664,2750,25051,\"Betty MacDonald, Alexandra Boiger\",Mrs. Piggle-Wiggle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180885l/25051.jpg,4.16,44068,\"fiction, fantasy\",\"From her upside-down house, the eccentric Mrs. Piggle-Wiggle issues to\nparents her marvelous cures for such common children's diseases as\nWon't-Put-Away-Toys-itis, Answerbackism, and Fighter-Quarrelitis.\"\r\n2665,2751,58962,Michael Connelly,Trunk Music,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926044l/58962.jpg,4.15,34702,\"mystery, fiction\",Trunk MusicMichael Connelly\r\n2666,2752,18505796,Dan   Harris,\"10% Happier: How I Tamed the Voice in My Head, Reduced Stress Without Losing My Edge, and Found Self-Help That Actually Works\",https://images.gr-assets.com/books/1451446393l/18505796.jpg,3.93,33969,\"nonfiction, psychology\",\"10% Happier: How I Tamed the Voice in My Head, Reduced Stress Without Losing My Edge, and Found Self-Help That Actually WorksDan   Harris\"\r\n2667,2753,120230,\"Ina Garten, Quentin Bacon\",Barefoot Contessa at Home: Everyday Recipes You'll Make Over and Over Again,https://images.gr-assets.com/books/1320557161l/120230.jpg,4.16,32611,\"cookbooks, nonfiction\",\"Collects recipes featuring elegant but easy-to-prepare dishes for\nbreakfast, lunch, dinner, and dessert for both everyday meals or special\noccasions, accompanied by tips on the art of entertaining with style.\"\r\n2668,2754,32504,Michael Connelly,Blood Work,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442528004l/32504._SY475_.jpg,4.11,34296,\"mystery, crime\",\"From the #1 bestselling author of the Harry Bosch and the Lincoln Lawyer\nseries and who \"\"is the master of the universe in which he lives\"\"\n(Huffington Post), comes the gripping novel that inspired the film starring\nClint Eastwood. When Graciella Rivers steps onto his boat, ex-FBI agent\nTerrell McCaleb has no idea he's about to come out of retirement. He's\nrecuperating from a heart transplant and avoiding anything stressful. But\nwhen Graciella tells him the way her sister, Gloria, was murdered, Terry\nrealizes he has no choice. Now the man with the new heart vows to take down\na predator without a soul. For Gloria's killer shatters every rule that\nMcCaleb ever learned in his years with the Bureau-as McCaleb gets no more\nsecond chances at life...and just one shot at the truth. *Winner of the\nGrand Prix de Littérature Policière- International Category *Winner of the\nMacavity Award for Best Mystery Novel *Winner of the Anthony Award for Best\nNovel\"\r\n2669,2755,41821,Isaac Asimov,The Gods Themselves,https://images.gr-assets.com/books/1351076141l/41821.jpg,4.08,35247,\"fiction, classics\",\"The opening of a gate to another universe brings both a new source of\nenergy and a perilous threat to the Sun, and Peter Lamont, a young\nscientist, must save Earth\"\r\n2670,2758,13570,\"CLAMP, Anthony Gerard\",ツバサ-RESERVoir CHRoNiCLE- 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920662l/13570.jpg,4.12,34661,\"manga, fantasy\",\"When Princess Sakura comes to an archelogical dig to confess her love to\nSyaoran, a mysterious symbol is uncovered, robs her of her memories, and\nscatters them across countless parallel worlds. Now Syaoran must embark on\na quest to save Sakura.\"\r\n2671,2759,8962,Darren Shan,\"Cirque Du Freak (Cirque du Freak, #1) \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953294l/8962.jpg,4.07,38753,\"fantasy, horror\",\"From the Master of Horror comes the first gripping book in the twelve book\nNew York Times bestselling Saga of Darren Shan. Start the tale from the\nbeginning in the book that inspired the feature film The Vampire's\nAssistant and petrified devoted fans worldwide. A young boy named Darren\nShan and his best friend, Steve, get tickets to the Cirque Du Freak, a\nwonderfully gothic freak show featuring weird, frightening half human/half\nanimals who interact terrifyingly with the audience. In the midst of the\nexcitement, true terror raises its head when Steve recognizes that one of\nthe performers-- Mr. Crepsley-- is a vampire! Stever remains after the show\nfinishes to confront the vampire-- but his motives are surprising! In the\nshadows of a crumbling theater, a horrified Darren eavesdrops on his friend\nand the vampire, and is witness to a monstrous, disturbing plea. As if by\ndestiny, Darren is pulled to Mr. Crepsley and what follows is his\nhorrifying descent into the dark and bloody world of vampires. This is the\nbeginning of Darren's story.\"\r\n2672,2760,297627,\"Alan Moore, Kevin O'Neill\",\"The League of Extraordinary Gentlemen, Vol. I\",https://images.gr-assets.com/books/1327894724l/297627.jpg,3.93,40404,\"fantasy, fiction\",\"The League of Extraordinary Gentlemen, a group composed of heroes from late\nnineteenth-century literature, faces a threat from an unknown world which\nhas descended upon London.\"\r\n2673,2761,169756,M.T. Anderson,Feed,https://images.gr-assets.com/books/1327891005l/169756.jpg,3.54,42426,\"fiction, fantasy\",\"In a future where most people have computer implants in their heads to\ncontrol their environment, a boy meets an unusual girl who is in serious\ntrouble.\"\r\n2674,2763,752900,\"Euripides, Rex Warner\",Mήδεια,https://images.gr-assets.com/books/1328868366l/752900.jpg,3.83,40237,\"classics, fiction\",\"One of the most powerful and enduring of Greek tragedies, Euripides'\nmasterwork centers on the myth of Jason, leader of the Argonauts, who has\nwon the dragon-guarded treasure of the Golden Fleece with the help of the\nsorceress Medea — whom he marries and eventually abandons. Authoritative\nRex Warner translation.\"\r\n2675,2764,6342491,Cinda Williams Chima,The Demon King,https://images.gr-assets.com/books/1379482652l/6342491.jpg,4.2,46756,\"fantasy, romance\",The Demon KingCinda Williams Chima\r\n2676,2765,821056,Hannah Hurnard,Hinds' Feet on High Places,https://images.gr-assets.com/books/1312284337l/821056.jpg,4.3,33398,\"fiction, classics\",Hinds' Feet on High PlacesHannah Hurnard\r\n2677,2766,38333,Charles Burns,Black Hole,https://images.gr-assets.com/books/1327895219l/38333.jpg,3.83,33070,\"fiction, fantasy\",\"Seattle teenagers of the 1970s are suddenly faced with a devastating,\ndisfiguring, and incurable plague that spreads only through sexual contact.\"\r\n2678,2767,19358975,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume Three\",https://images.gr-assets.com/books/1486028973l/19358975.jpg,4.56,47549,\"comics, fantasy\",\"Saga, Volume ThreeBrian K. Vaughan, Fiona Staples\"\r\n2679,2768,20263040,Lee Child,Personal,https://images.gr-assets.com/books/1468705564l/20263040.jpg,3.9,19107,\"thriller, fiction\",PersonalLee Child\r\n2680,2769,15994634,Therese Anne Fowler,Z: A Novel of Zelda Fitzgerald,https://images.gr-assets.com/books/1396815892l/15994634.jpg,3.82,27563,\"fiction, biography\",Z: A Novel of Zelda FitzgeraldTherese Anne Fowler\r\n2681,2770,4979,Kurt Vonnegut Jr.,A Man Without a Country,https://images.gr-assets.com/books/1330997432l/4979.jpg,4.07,29859,\"fiction, nonfiction\",\"In a collection of brief autobiographical essays, the renowned novelist\noffers his views on art, politics, and everyday life in America.\"\r\n2682,2771,17667452,Catherine Ryan Hyde,When I Found You,https://images.gr-assets.com/books/1377009785l/17667452.jpg,3.92,16032,\"fiction, contemporary\",\"What do I have to do to make you wash your hands of me?There's nothing you\ncould do. I will never wash my hands of you.Nathan McCann thought he didn't\nwant a family. But when he finds an abandoned newborn in the woods, he\nfeels an inexplicable bond with the boy and starts to make plans to raise\nthe child as his own — until the baby's grandmother steps forward to claim\nhim. Nathan makes a request of her, though: to one day bring the boy to\nmeet his rescuer.Fifteen years later, the widowered Nathan gets his wish\nwhen the boy and his grandmother show up on his doorstep. Named Nat and now\nan angry teenager with a criminal record, the boy is once again in need of\nrescuing. Nathan takes Nat in, swearing to never abandon him. Nathan\nbelieves that with love and patience anyone can change. And he just might\nbe right.From the author of Pay It Forward comes a poignant tale of love,\npain, and trusting people to stay by your side in a world where leaving is\neasy.\"\r\n2683,2772,25893693,Martha Hall Kelly,Lilac Girls,https://images.gr-assets.com/books/1462850258l/25893693.jpg,4.31,42421,\"fiction, history\",\"A cloth bag containing eight copies of the title, that may also include a\nfolder.\"\r\n2684,2773,552894,\"James Patterson, Maxine Paetro\",7th Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438907237l/552894._SY475_.jpg,4.06,38503,\"mystery, fiction\",\"7th HeavenJames Patterson, Maxine Paetro\"\r\n2685,2774,23664710,Lee Child,Make Me,https://images.gr-assets.com/books/1467905395l/23664710.jpg,3.95,20999,\"thriller, fiction\",Make MeLee Child\r\n2686,2775,18428067,Anthony Marra,A Constellation of Vital Phenomena,https://images.gr-assets.com/books/1408313066l/18428067.jpg,4.13,23374,\"fiction, contemporary\",A Constellation of Vital PhenomenaAnthony Marra\r\n2687,2776,13496738,Abbi Glines,While It Lasts,https://images.gr-assets.com/books/1332261619l/13496738.jpg,4.24,49620,\"romance, contemporary\",While It LastsAbbi Glines\r\n2688,2777,13414676,Will Schwalbe,The End of Your Life Bookclub,https://images.gr-assets.com/books/1333576665l/13414676.jpg,3.81,35412,\"memoir, fiction\",\"The author recounts his mother's life, recalling how they discussed books\nduring the final stages of her last illness and describing how this\nactivity furthered their appreciation for literature, and strengthened\ntheir bond.\"\r\n2689,2778,1672727,Lauren Barnholdt,Two-Way Street,https://images.gr-assets.com/books/1381750633l/1672727.jpg,3.8,42028,\"romance, contemporary\",\"Courtney must drive across country to attend college orientation with her\nex-boyfriend while still fuming that he dumped her for a girl he met\nonline, but the two of them learn valuable lessons about themselves and\neach other along the way.\"\r\n2690,2779,16001443,Raine Miller,All in,https://images.gr-assets.com/books/1358492101l/16001443.jpg,4.11,48278,\"romance, contemporary\",\"Despite having broken Brynne's trust and her having left him, Ethan\nBlackstone makes it his duty to protect her from her dark past and rekindle\nthe furious passion they once shared. Original.\"\r\n2691,2780,1814843,John Flanagan,The Siege of Macindaw,https://images.gr-assets.com/books/1327445821l/1814843.jpg,4.33,37607,\"fantasy, fiction\",\"Now a full-fledged Ranger, Will must rescue his friend Alyss from a rogue\nknight and uncover vital information needed to ward off a Scotti invasion.\"\r\n2692,2782,22416,\"Warren Ellis, Darick Robertston, Garth Ennis\",\"Transmetropolitan, Vol. 1: Back on the Street\",https://images.gr-assets.com/books/1320606005l/22416.jpg,4.23,30790,\"comics, fiction\",\"Transmetropolitan, Vol. 1: Back on the StreetWarren Ellis, Darick Robertston, Garth Ennis\"\r\n2693,2783,13833,Tamora Pierce,\"Emperor Mage (Immortals, #3)\",https://images.gr-assets.com/books/1166573612l/13833.jpg,4.3,44115,\"fantasy, fiction\",\"Emperor Mage (Immortals, #3)Tamora Pierce\"\r\n2694,2784,8099187,George W. Bush,Decision Points,https://images.gr-assets.com/books/1320428975l/8099187.jpg,3.77,28943,\"history, memoir\",\"The former president offers a candid journey through the defining decisions\nof his life and presidency, discussing the 2000 election, 9/11, the wars in\nAfghanistan and Iraq, and Hurricane Katrina, as well as his decision to\nquit drinking, discovery of faith, and relationship with his family.\"\r\n2695,2785,6387565,\"James Patterson, Gabrielle Charbonnet\",Witch & Wizard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1245083022l/6387565.jpg,3.57,28291,\"fantasy, fiction\",\"Torn from their family and slammed into prison, a sister and brother try\neverything to save the world they love from a dangerous new regime.\"\r\n2696,2786,386286,\"Jean Craighead George, John Schoenherr\",Julie of the Wolves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565576794l/386286._SX318_.jpg,3.79,46442,\"fiction, classics\",\"Lost on the Tundra To her small Eskimo village, she is known as Miyax; to\nher friend in San Francisco, she is Julie. When the village is no longer\nsafe for her, Miyax runs away. But she soon finds herself lost in the\nAlaskan wilderness, without food, without even a compass to guide her.\nSlowly she is accepted by a pack of Arctic wolves, Mid she grows to love\nthem as though they were family. With their help, and drawing on her\nfather's teachings, Miyax struggles day by clay to survive. But the time\ncomes when she must leave the wilderness and choose between the old ways\nan(] the new. Which will she choose? For she is Miyax of the Eskimos--but\nJulie of the Wolves. Faced with the prospect of a disagreeable arranged\nmarriage or a journey acoss the barren Alaskan tundra, 13-year-old Miyax\nchooses the tundra. She finds herself caught between the traditional Eskimo\nways and the modern ways of the whites. Miyax, or Julie as her pen pal Amy\ncalls her, sets out alone to visit Amy in San Francisco, a world far away\nfrom Eskimo culture and the frozen land of Alaska. During her long and\narduous journey, Miyax comes to appreciate the value of her Eskimo\nheritage, learns about herself, and wins the friednship of a pack of\nwolves. After learning the language of the wolves and slowly earning their\ntrust, Julie becomes a member of the pack. Since its first publication,\nJulie of The Wolves,winner of thr 1973 Newbery Medal, has found its way\ninto the hearts of millions of readers.\"\r\n2697,2787,37743,Judy Blume,Forever . . .,https://images.gr-assets.com/books/1327962165l/37743.jpg,3.63,42164,\"romance, fiction\",\"Two high school seniors believe their love to be so strong that it will\nlast forever.\"\r\n2698,2788,22609391,David McCullough,The Wright Brothers,https://images.gr-assets.com/books/1430942575l/22609391.jpg,4.16,35786,\"history, biography\",\"Chronicles the dramatic story-behind-the-story about the Wright brothers,\nsharing insights into the disadvantages that challenged their lives and\ntheir mechanical ingenuity. By the Pulitzer Prize- and National Book Award-\nwinning author of Truman.\"\r\n2699,2789,31231,Robert Ludlum,The Matarese Circle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348885108l/31231.jpg,4.03,32016,\"fiction, thriller\",\"Longtime enemies and two of the world's best secret agents, Vasili\nTaleniekov, a Russian, and Brandon Scofield, an American, pool their\nexpertise to track down the leader of an organization called the Matarese\nthat has been financing terrorist groups\"\r\n2700,2790,3147367,Jon Meacham,American Lion: Andrew Jackson in the White House,https://images.gr-assets.com/books/1320480904l/3147367.jpg,3.76,32564,\"history, biography\",\"Chronicles the life and career of Andrew Jackson, a self-made man who went\non to become a military hero and seventh president of the United States,\nanalyzing Jackson's seminal role during a turbulent era in history.\"\r\n2701,2791,15842230,David Baldacci,The Forgotten,https://images.gr-assets.com/books/1350923777l/15842230.jpg,4.07,27953,\"thriller, mystery\",The ForgottenDavid Baldacci\r\n2702,2792,16065004,Brandon Sanderson,Shadows of Self,https://images.gr-assets.com/books/1435053013l/16065004.jpg,4.3,32170,\"fantasy, fiction\",\"Shadows of Self is the sequel to the USA Today bestselling The Alloy of\nLaw, part of the Mistborn series When family obligations forced Waxillium\nLadrian to forsake the frontier lands and return to the metropolis of his\nbirth to take his place as head of a noble House, he little imagined that\nthe crime-fighting skills acquired during twenty years in the dusty plains\nwould be just as applicable in the big city. He soon learned that there\ntoo, just being a talented Twinborn —one who can use both Allomancy and\nFeruchemy, the dominant magical modes on Scadrial —would not suffice. This\nbustling, optimistic, but still shaky society will now face its first test\nby terrorism and assassination, crimes intended to stir up labor strife and\nreligious conflict. Wax, his eccentric sidekick Wayne, and brilliant,\nbeautiful young Marasi, now officially part of the constabulary, must\nunravel the conspiracy before civil strife can stop Scadrial’s progress in\nits tracks. \"\"Sanderson’s fantasy world partakes equally of steampunk, early\nindustry, and the Wild West, and he cleverly incorporates the metal-shaping\nmagic of feruchemists and allomancers. Fantasy fans will savor this\nexciting escapade.\"\" —Publishers Weekly\"\r\n2703,2793,17262155,Helen Fielding,Mad About the Boy,https://images.gr-assets.com/books/1374883586l/17262155.jpg,3.32,30713,\"fiction, romance\",Mad About the BoyHelen Fielding\r\n2704,2794,30633,C.S. Lewis,The Four Loves,https://images.gr-assets.com/books/1276287504l/30633.jpg,4.16,29684,\"christian, philosophy\",\"Analyzes the feelings and problems involved in different types of human\nlove, including familial affection, friendship, passion, and charity\"\r\n2705,2795,20639274,Mia Sheridan,Archer's Voice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390778440l/20639274.jpg,4.45,53131,\"romance, contemporary\",Archer's VoiceMia Sheridan\r\n2706,2796,11010251,Alyson Richman,The Lost Wife,https://images.gr-assets.com/books/1394994929l/11010251.jpg,4.2,33427,\"fiction, romance\",The Lost WifeAlyson Richman\r\n2707,2797,10505,\"Umberto Eco, Girolamo De Michele, Alastair McEwen\",Storia della bellezza,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926937l/10505.jpg,3.77,33893,\"art, history\",\"A study of the idea of beauty explores the ever-changing concept of beauty\nfrom the ancient Greeks to today.\"\r\n2708,2798,18765,Robert Graves,\"I, Claudius\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185810l/18765.jpg,4.27,38484,\"fiction, classics\",\"The emperor Claudius tells of his life during the reigns of Augustus,\nTiberius, and Caligula and the events that led to his rise to power in a\nclassic novel reconstructing ancient Rome\"\r\n2709,2799,13326831,Joelle Charbonneau,The Testing,https://images.gr-assets.com/books/1363452191l/13326831.jpg,4.05,38142,\"fiction, romance\",\"Sixteen-year-old Malencia (Cia) Vale is chosen to participate in The\nTesting to attend the University; however, Cia is fearful when she figures\nout her friends who do not pass The Testing are disappearing. 100,000 first\nprinting.\"\r\n2710,2800,17908462,Janet Evanovich,Takedown Twenty,https://images.gr-assets.com/books/1373758461l/17908462.jpg,3.75,36002,\"mystery, fiction\",Takedown TwentyJanet Evanovich\r\n2711,2801,13628209,Kirsty Moseley,The Boy Who Sneaks in My Bedroom Window,https://images.gr-assets.com/books/1398682775l/13628209.jpg,3.95,50929,\"romance, contemporary\",\"Amber Walker and her older brother, Jake, have an abusive father. One night\nher brother's best friend, Liam, sees her crying and climbs through her\nbedroom window to comfort her. That one action sparks a love/hate\nrelationship that spans over the next eight years. Liam is now a confident,\nflirty player who has never had a girlfriend before. Amber is still\nemotionally scarred from the abuse she suffered at the hands of her father.\nTogether they make an unlikely pair. Their relationship has always been a\nrocky one, but what happens when Amber starts to view her brother's best\nfriend a little differently? And how will her brother, who has always been\na little overprotective, react when he finds out that the pair are growing\ncloser? Find out in The Boy Who Sneaks In My Bedroom Window.\"\r\n2712,2802,13829,Tamora Pierce,Terrier,https://images.gr-assets.com/books/1398029898l/13829.jpg,4.16,48028,\"fantasy, fiction\",\"When sixteen-year-old Beka becomes \"\"Puppy\"\" to a pair of \"\"Dogs,\"\" as the\nProvost's Guards are called, she uses her police training, natural\nabilities, and a touch of magic to help them solve the case of a murdered\nbaby in Tortall's Lower City.\"\r\n2713,2803,8788554,Darynda Jones,First Grave on the Right,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442963675l/8788554._SY475_.jpg,4.07,50689,\"paranormal, fantasy\",First Grave on the RightDarynda Jones\r\n2714,2804,18039963,\"Amanda Lindhout, Sara Corbett\",A House in the Sky,https://images.gr-assets.com/books/1370379455l/18039963.jpg,4.2,29369,\"memoir, nonfiction\",\"A House in the SkyAmanda Lindhout, Sara Corbett\"\r\n2715,2805,9615347,Vera Brosgol,Anya's Ghost,https://images.gr-assets.com/books/1316739317l/9615347.jpg,3.88,39477,\"comics, fantasy\",\"Anya could really use a friend. But her new BFF isn't kidding about the\n\"\"forever\"\" part . . . Of all the things Anya expected to find at the bottom\nof an old well, a new friend was not one of them. Especially not a new\nfriend who's been dead for a century. Falling down a well is bad enough,\nbut Anya's normal life might actually be worse. She's embarrassed by her\nfamily, self-conscious about her body, and she's pretty much given up on\nfitting in at school. A new friend—even a ghost—is just what she needs. Or\nso she thinks. Spooky, sardonic, and secretly sincere, Anya's Ghost is a\nwonderfully entertaining debut graphic novel from author/artist Vera\nBrosgol. A 2011 Kirkus Best Teen Book of the Year A School Library Journal\nBest Fiction Book of 2011 A Horn Book Best Fiction Book of 2011 Winner of\nthe 2012 Eisner Award for Best Publication for Young Adults (Ages 12-17)\"\r\n2716,2806,9912,Bret Easton Ellis,The Rules of Attraction,https://images.gr-assets.com/books/1468426907l/9912.jpg,3.71,29456,\"fiction, contemporary\",\"With irony and compassion, the author of Less Than Zero chronicles the\nsexual affairs--heterosexual, homosexual, and orgiastic--of a group of\nstudents at a self-consciously bohemian New England college. Reprint.\n15,000 first printing.\"\r\n2717,2807,30262,Kim Harrison,\"The Good, the Bad, and the Undead\",https://images.gr-assets.com/books/1391023304l/30262.jpg,4.26,49321,\"fantasy, paranormal\",\"The Good, the Bad, and the UndeadKim Harrison\"\r\n2718,2808,66693,R.A. Salvatore,The Crystal Shard,https://images.gr-assets.com/books/1331146192l/66693.jpg,4.13,32300,\"fantasy, fiction\",\"Drizzt Do'Urden, a dark elf, and his allies--Wulfgar, a barbarian warrior,\nand Bruenor, a dwarf--try to unite the people of Ten-Towns to face the\ndangerous magic of the crystal shard, in a new edition of the first novel\nabout the dark elf Drizzt Do'Urden. Reissue.\"\r\n2719,2809,44597,Jean Rhys,Wide Sargasso Sea,https://images.gr-assets.com/books/1327870846l/44597.jpg,3.56,21053,\"fiction, classics\",\"Beautiful and wealthy Antoinette Cosway's passionate love for an English\naristocrat threatens to destroy her idyllic West Indian island existence\nand her very life.\"\r\n2720,2810,16286,John Fowles,The Magus,https://images.gr-assets.com/books/1441323311l/16286.jpg,4.04,32914,\"fiction, classics\",\"A controlling millionaire plays mind games with the teacher recently hired\nto teach on a small Greek island.\"\r\n2721,2811,189811,David Eddings,King of the Murgos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172550298l/189811.jpg,4.1,40098,\"fantasy, fiction\",\"Guided by the Orb of the God Aldur, Garion and Ce'Nedrea begin a great\nquest to rescue their kidnapped child. Making their way through the foul\nswamps of Nyisssa, then into the lands of the Murgos, they must ultimately\nface a horrible danger--to themselves and all mankind....\"\r\n2722,2812,402014,Louise Rennison,\"It's OK, I'm Wearing Really Big Knickers! (Confessions of Georgia Nicolson, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400220733l/402014.jpg,3.96,39114,\"fiction, romance\",\"Brilliantly funny, teenage angst author Louise Rennison's second book about\nthe confessions of crazy but lovable Georgia Nicolson. Now repackaged in a\ngorgeous new paperback and looking even fabber than ever. Louise is an\ninternational bestselling author and her books can't fail to make you laugh\nout loud.\"\r\n2723,2813,20821614,Caroline Kepnes,You,https://images.gr-assets.com/books/1411958102l/20821614.jpg,3.83,36383,\"thriller, fiction\",YouCaroline Kepnes\r\n2724,2814,13618440,Laini Taylor,Dreams of Gods & Monsters,https://images.gr-assets.com/books/1461353810l/13618440.jpg,4.23,47315,\"fantasy, romance\",Dreams of Gods & MonstersLaini Taylor\r\n2725,2815,1205297,John Grisham,Playing For Pizza,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435592714l/1205297._SY475_.jpg,3.41,34577,\"fiction, sports\",\"Cut from the Cleveland Browns after the worst performance in the history of\nthe NFL, third-stringer Rick Dockery, desperate to play football, is hired\nby the Panthers of Parma, Italy, to be their starting quarterback and finds\nhimself confronted by the confusing diversity of Italian culture, language,\nand romance. Reprint.\"\r\n2726,2816,9284655,Colleen Houck,Tiger's Curse,https://images.gr-assets.com/books/1327878915l/9284655.jpg,4.07,46077,\"fantasy, romance\",\"When Kelsey forms a bond with a circus tiger who is actually one of two\nbrothers, Indian princes Ren and Kishan, who were cursed to live as tigers\nfor eternity, she travels with him to India where the tiger's curse may be\nbroken once and for all.\"\r\n2727,2817,105,Frank Herbert,Chapterhouse: Dune,https://images.gr-assets.com/books/1260954505l/105.jpg,3.89,34822,\"fiction, fantasy\",\"Fifteen thousand years after Leto II's death, the remnants of the Bene\nGesserit contend with the ruthless leaders of an alien culture to forge a\nnew civilization and preserve the best of the Old Empire\"\r\n2728,2818,20821284,Jacqueline Woodson,Brown Girl Dreaming,https://images.gr-assets.com/books/1424308405l/20821284.jpg,4.11,33779,\"poetry, memoir\",\"Jacqueline Woodson's National Book Award and Newbery Honor winner, now\navailable in paperback with 7 all-new poems. Jacqueline Woodson is the\n2018-2019 National Ambassador for Young People's Literature A President\nObama \"\"O\"\" Book Club pick Raised in South Carolina and New York, Woodson\nalways felt halfway home in each place. In vivid poems, she shares what it\nwas like to grow up as an African American in the 1960s and 1970s, living\nwith the remnants of Jim Crow and her growing awareness of the Civil Rights\nmovement. Touching and powerful, each poem is both accessible and\nemotionally charged, each line a glimpse into a child's soul as she\nsearches for her place in the world. Woodson's eloquent poetry also\nreflects the joy of finding her voice through writing stories, despite the\nfact that she struggled with reading as a child. Her love of stories\ninspired her and stayed with her, creating the first sparks of the gifted\nwriter she was to become. Includes 7 new poems, including \"\"Brown Girl\nDreaming\"\". Praise for Jacqueline Woodson: A 2016 National Book Award\nfinalist for her adult novel, ANOTHER BROOKLYN \"\"Ms. Woodson writes with a\nsure understanding of the thoughts of young people, offering a poetic,\neloquent narrative that is not simply a story . . . but a mature\nexploration of grown-up issues and self-discovery.\"\"--The New York Times\nBook Review\"\r\n2729,2820,3476,Gwyn Hyman Rubio,Icy Sparks,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442880927l/3476._SY475_.jpg,3.68,34128,\"fiction, contemporary\",\"After years of living in a children's asylum for having spontaneous jerks\nand spasms, Icy returns home and is quickly befriended by Miss Emily, who\ncares for her and teaches her the ways of life, transforming Icy into a new\nperson and forever changing her view of the world.\"\r\n2730,2821,77394,L.M. Montgomery,Rainbow Valley,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442471048l/77394._SY475_.jpg,4.12,57062,\"classics, fiction\",\"The heroine of \"\"Anne of Green Gables\"\" and her lively children befriend the\nMeredith youngsters, the four children of a widowed minister seeking a\nwife.\"\r\n2731,2822,75024,Steve Berry,The Templar Legacy,https://images.gr-assets.com/books/1413393638l/75024.jpg,3.81,35804,\"fiction, thriller\",\"Former secret agent Cotton Malone and Stephanie Nelle, a U.S. Justice\nDepartment prosecutor, must solve the mystery of fourteenth-century Templar\nriches and secrets before Raymond de Roquefort and his murderous allies\nprevail.\"\r\n2732,2823,89165,Sue Grafton,J is for Judgment (Kinsey Millhone #10),https://images.gr-assets.com/books/1315138239l/89165.jpg,4.01,39214,\"mystery, fiction\",J is for Judgment (Kinsey Millhone #10)Sue Grafton\r\n2733,2824,4836308,Katherine Howe,The Physick Book of Deliverance Dane,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442770048l/4836308._SY475_.jpg,3.7,41284,\"romance, contemporary\",The Physick Book of Deliverance DaneKatherine Howe\r\n2734,2825,55401,Steven Erikson,Deadhouse Gates,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385272744l/55401.jpg,4.25,34042,\"fantasy, fiction\",Deadhouse GatesSteven Erikson\r\n2735,2826,17983690,Kylie Scott,Lick,https://images.gr-assets.com/books/1421855031l/17983690.jpg,4.15,54585,\"romance, contemporary\",LickKylie Scott\r\n2736,2827,78982,Jeffrey Archer,\"Not a Penny More, Not a Penny Less\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187539l/78982.jpg,4,28853,\"fiction, thriller\",\"With nothing left to lose, an Oxford don, an English lord, a society\nphysician, and a chic French art dealer join forces to go after Harvey\nMetcalf, the expert in international stock fraud who took their money.\nReprint.\"\r\n2737,2828,2315892,Joe Abercrombie,Best Served Cold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347732723l/2315892.jpg,4.16,36268,\"fantasy, fiction\",\"Springtime in Styria. And that means war. There have been nineteen years of\nblood. The ruthless Grand Duke Orso is locked in a vicious struggle with\nthe squabbling League of Eight, and between them they have bled the land\nwhite. While armies march, heads roll and cities burn, and behind the\nscenes bankers, priests and older, darker powers play a deadly game to\nchoose who will be king. War may be hell but for Monza Murcatto, the Snake\nof Talins, the most feared and famous mercenary in Duke Orso's employ, it's\na damn good way of making money too. Her victories have made her popular -\na shade too popular for her employer's taste. Betrayed, thrown down a\nmountain and left for dead, Murcatto's reward is a broken body and a\nburning hunger for vengeance. Whatever the cost, seven men must die. Her\nallies include Styria's least reliable drunkard, Styria's most treacherous\npoisoner, a mass-murderer obsessed with numbers and a Northman who just\nwants to do the right thing. Her enemies number the better half of the\nnation. And that's all before the most dangerous man in the world is\ndispatched to hunt her down and finish the job Duke Orso started...\nSpringtime in Styria. And that means revenge. First Law Trilogy The Blade\nItself Before They Are Hanged Last Argument of Kings Novels in the First\nLaw world Best Served Cold The Heroes Red Country\"\r\n2738,2829,18635113,Emma Healey,Elizabeth Is Missing,https://images.gr-assets.com/books/1388883559l/18635113.jpg,3.7,26931,\"fiction, mystery\",Elizabeth Is MissingEmma Healey\r\n2739,2830,154424,Vince Flynn,Consent to Kill,https://images.gr-assets.com/books/1403880384l/154424.jpg,4.36,30675,\"thriller, fiction\",\"Having earned numerous enemies in his more than fifteen years on the front\nlines of the war on terror, CIA operative Mitch Rapp is targeted by the\ninfluential father of a terrorist who is demanding retribution for his\nson's death. Reprint.\"\r\n2740,2831,8171378,Isabel Wilkerson,The Warmth of Other Suns: The Epic Story of America's Great Migration ,https://images.gr-assets.com/books/1433354252l/8171378.jpg,4.31,31308,\"history, nonfiction\",\"Presents an epic history that covers the period from the end of World War I\nthrough the 1970s, chronicling the decades-long migration of African\nAmericans from the South to the North and West through the stories of three\nindividuals and their families.\"\r\n2741,2832,20706317,Claire North,The First Fifteen Lives of Harry August,https://images.gr-assets.com/books/1407712314l/20706317.jpg,4.04,22327,\"fiction, fantasy\",The First Fifteen Lives of Harry AugustClaire North\r\n2742,2833,13623012,Carlos Ruiz Zafón,El prisionero del cielo,https://images.gr-assets.com/books/1335994402l/13623012.jpg,3.96,27987,\"fantasy, thriller\",\"Originally published: Barcelona: Editorial Planeta, 2011.\"\r\n2743,2834,11366,\"Barbara W. Tuchman, Robert K. Massie\",The Guns of August,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431760956l/11366._SY475_.jpg,4.18,35147,\"history, nonfiction\",\"A definitive Pulitzer Prize-winning recreation of the powderkeg that was\nEurope during the crucial first thirty days of World War I traces the\nactions of statesmen and patriots alike in Berlin, London, St. Petersburg,\nand Paris. Reprint.\"\r\n2744,2835,937249,Vince Flynn,Separation of Power,https://images.gr-assets.com/books/1314830847l/937249.jpg,4.32,30081,\"fiction, thriller\",\"With CIA director Thomas Stansfield dead, his protege, Dr. Irene Kennedy,\nis poised to take over the reins of the agency, while CIA operative Mitch\nRapp heads to the Middle East to try to stop the chaos that could ignite\nWorld War III. Reprint.\"\r\n2745,2836,71865,John Marsden,\"Tomorrow, When the War Began\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214812l/71865.jpg,4.05,36501,\"fiction, romance\",\"Seven Australian teenagers return from a camping trip in the bush to\ndiscover that their country has been invaded and they must hide to stay\nalive. Reprint.\"\r\n2746,2837,6514074,\"Robert M. Edsel, Bret Witter\",\"Monuments Men: Allied Heroes, Nazi Thieves and the Greatest Treasure Hunt in History \",https://images.gr-assets.com/books/1344270659l/6514074.jpg,3.75,30583,\"history, nonfiction\",\"Monuments Men: Allied Heroes, Nazi Thieves and the Greatest Treasure Hunt in History Robert M. Edsel, Bret Witter\"\r\n2747,2838,18140047,Ava Dellaira,Love Letters to the Dead,https://images.gr-assets.com/books/1497096111l/18140047.jpg,3.82,38701,\"contemporary, romance\",\"It begins as an assignment for English class: Write a letter to a dead\nperson. Laurel chooses Kurt Cobain because her sister, May, loved him. And\nhe died young, just like May did. Soon, Laurel has a notebook full of\nletters to people like Janis Joplin, Amy Winehouse, Amelia Earhart, Heath\nLedger, and more--though she never gives a single one of them to her\nteacher. She writes about starting high school, navigating new friendships,\nfalling in love for the first time, learning to live with her splintering\nfamily. And, finally, about the abuse she suffered while May was supposed\nto be looking out for her. Only then, once Laurel has written down the\ntruth about what happened to herself, can she truly begin to accept what\nhappened to May. And only when Laurel has begun to see her sister as the\nperson she was--lovely and amazing and deeply flawed--can she begin to\ndiscover her own path in this stunning debut from Ava Dellaira, Love\nLetters to the Dead.\"\r\n2748,2839,10776793,Helen Bryan,War Brides,https://images.gr-assets.com/books/1341794666l/10776793.jpg,3.75,16565,\"fiction, romance\",\"Alice Osbourne, the stolid daughter of the late vicar, is reeling from the\nnews that Richard Fairfax broke their engagement to marry Evangeline\nFontaine, an American girl from the Deep South. Evangeline's arrival causes\na stir in the village but not the chaos that would ensue if they knew her\nmotives for being there. Scrappy Elsie Pigeon is among the poor of London\nwho see the evacuations as a chance to escape a life of destitution.\nAnother new arrival is Tanni Zayman, a young Jewish girl who fled the\nhorrors of Europe and now waits with her newborn son, certain that the rest\nof her family is safe and bound to show up any day. And then there's\nFrances Falconleigh, a madcap, fearless debutante whose father is\ndetermined to keep her in the countryside and out of the papers.\n--amazon.com.\"\r\n2749,2840,27071490,Yaa Gyasi,Homegoing,https://images.gr-assets.com/books/1448108591l/27071490.jpg,4.41,41524,\"fiction, history\",\"Winner of the NBCC's John Leonard First Book Prize A New York Times Notable\nBook A Washington Post Notable Book One of the Best Books of the Year: NPR,\nSan Francisco Chronicle, Oprah.com, Harper's Bazaar, Elle, Esquire,\nEntertainment Weekly, Mother Jones, BuzzFeed, Minneapolis Star Tribune, St.\nLouis Post-Dispatch Ghana, eighteenth century: two half sisters, Effia and\nEsi, are born into different villages, each unaware of the other. One will\nmarry an Englishman and lead a life of comfort in the palatial rooms of the\nnotorious Cape Coast Castle. The other will be captured in a raid on her\nvillage, imprisoned in the very same castle, and shipped off to America to\nbe sold into slavery. With breathtaking scope, Homegoing follows the\nparallel paths of these sisters and their descendants through eight\ngenerations: from the slave traders of the Gold Coast to the plantations of\nMississippi, from the Asantes' struggle against British colonialism to the\nfirst stirrings of the American Civil War, from the jazz of twentieth-\ncentury Harlem to the sparkling shores of modern Ghana. Yaa Gyasi's\nextraordinary novel illuminates slavery's troubled legacy both for those\nwho were taken and those who stayed--and shows how the memory of captivity\nhas been inscribed on the soul of our nation.\"\r\n2750,2841,7237456,Mary Roach,Packing for Mars: The Curious Science of Life in the Void ,https://images.gr-assets.com/books/1290480157l/7237456.jpg,3.93,35724,\"science, nonfiction\",\"Describes the weirdness of space travel, answers questions about the long-\nterm effects of living in zero gravity on the human body, and explains how\nspace simulations on Earth can provide a preview to life in space.\"\r\n2751,2842,3410425,David Baldacci,Divine Justice,https://images.gr-assets.com/books/1336266873l/3410425.jpg,4.17,35071,\"fiction, mystery\",\"Following the instant #1 New York Times bestseller Stone Cold, Oliver Stone\nand the Camel Club return in David Baldacci's most astonishing thriller\nyet. DIVINE JUSTICE Known by his alias, \"\"Oliver Stone,\"\" John Carr is the\nmost wanted man in America. With two pulls of the trigger, the men who\ndestroyed Stone's life and kept him in the shadows were finally silenced.\nBut his freedom comes at a steep price: The assassinations he carried out\nprompt the highest levels of the U. S. government to unleash a massive\nmanhunt. Yet behind the scenes, master spy Macklin Hayes is playing a very\npersonal game of cat and mouse. He, more than anyone else, wants John Carr\ndead. With their friend and unofficial leader in hiding, the members of the\nCamel Club risk everything to save him. Now as the hunters close in,\nStone's flight from the demons of his past will take him from the power\ncorridors of Washington, D.C., to the coal-mining town of Divine, Virginia-\nand into a world every bit as bloody and lethal as the one he left behind.\"\r\n2752,2843,3918010,\"Mark Millar, John Romita Jr., Rob Liefeld\",Kick-Ass,https://images.gr-assets.com/books/1343964935l/3918010.jpg,4.04,30688,\"comics, fiction\",\"The greatest super hero comic of all-time is finally here! WOLVERINE: ENEMY\nOF THE STATE's team of MARK MILLAR (CIVIL WAR) and JOHN ROMITA JR. (WORLD\nWAR HULK) reunite for the best new book of the 21st century! Have you ever\nwanted to be a super hero? Dreamed of donning a mask and just heading\noutside to some kick-ass? Well, this is the book for you- the comic that\nstarts where other super hero books draw the line. KICK-ASS is realistic\nsuper heroes taken to the next level. Miss out and you're an idiot!\"\r\n2753,2844,408615,\"Immaculée Ilibagiza, Steve Erwin\",Left to Tell: Discovering God Amidst the Rwandan Holocaust,https://images.gr-assets.com/books/1328860563l/408615.jpg,4.43,30270,\"nonfiction, memoir\",\"Presents the true story of a woman who endures the murder of her family as\na result of genocide in Rwanda and turns to prayer for strength, love, and\nforgiveness.\"\r\n2754,2845,6686101,Michael  Grant,Plague,https://images.gr-assets.com/books/1277829926l/6686101.jpg,4.18,38819,\"horror, romance\",PlagueMichael  Grant\r\n2755,2846,5344,Charles Dickens,Hard Times: For These Times,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348651243l/5344.jpg,3.5,34675,\"classics, fiction\",Edited with an Introduction and Notes by Kate Flint.\r\n2756,2847,16033842,Joël Dicker,La Vérité sur l'affaire Harry Quebert,https://images.gr-assets.com/books/1347987605l/16033842.jpg,3.94,14610,\"fiction, mystery\",\"\"\"À New York, au printemps 2008, alors que l'Amérique bruisse des prémices\nde l'élection présidentielle, Marcus Goldman, jeune écrivain à succès, est\ndans la tourmente : il est incapable d'écrire le nouveau roman qu'il doit\nremettre à son éditeur d'ici quelques mois. Le délai est près d'expirer\nquand soudain tout bascule pour lui : son ami et ancien professeur\nd'université, Harry Quebert, l'un des écrivains les plus respectés du pays,\nest rattrapé par son passé et se retrouve accusé d'avoir assassiné, en\n1975, Nola Kellergan, une jeune fille de 15 ans, avec qui il aurait eu une\nliaison. Convaincu de l'innocence de Harry, Marcus abandonne tout pour se\nrendre dans le New Hampshire et mener son enquête. Il est rapidement\ndépassé par les événements : l'enquête s'enfonce et il fait l'objet de\nmenaces. Pour innocenter Harry et sauver sa carrière d'écrivain, il doit\nabsolument répondre à trois questions : Qui a tué Nola Kellergan ? Que\ns'est-il passé dans le New Hampshire à l'été 1975 ? Et comment écrit-on un\nroman à succès ? Sous ses airs de thriller à l'américaine, 'La Vérité sur\nl’Affaire Harry Quebert' est une réflexion sur l'Amérique, sur les travers\nde la société moderne, sur la littérature, sur la justice et sur les\nmédias.\"\" [Source : site \"\"decitre.fr\"\"]\"\r\n2757,2848,3722183,Kate Atkinson,A God in Ruins,https://images.gr-assets.com/books/1451442002l/3722183.jpg,3.92,26604,\"fiction, history\",A God in RuinsKate Atkinson\r\n2758,2849,6681454,Harlan Coben,Caught,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437773409l/6681454._SY475_.jpg,3.98,34168,\"mystery, fiction\",\"Finding and exposing sexual predators on television, reporter Wendy prompts\nthe arrest of a man who worked as an advocate for abused children and\ntackles the case of a missing girl before a group of vigilante fathers\nmakes Wendy fear that she accused an innocent man. By the author of Long\nLost.\"\r\n2759,2850,46202,Maria V. Snyder,Magic Study,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350824l/46202.jpg,4.06,48234,\"fantasy, romance\",Magic StudyMaria V. Snyder\r\n2760,2851,667985,\"CLAMP, Shirley Kubo\",ちょびっツ #1,https://images.gr-assets.com/books/1487723428l/667985.jpg,4.05,34149,\"manga, romance\",\"Having left the country for a cram school in the city, Hideki Motosuwa has\nhumorous and unusual experiences with Chi, a \"\"persocom,\"\" or miniature\nandroid and personal computer.\"\r\n2761,2852,57891,\"Koushun Takami, Yuji Oniki\",バトル・ロワイアル,https://images.gr-assets.com/books/1331235272l/57891.jpg,4.24,35641,\"fiction, horror\",\"西暦1997年、東洋の全体主義国家、大東亜共和国。この国では毎年、全国の中学3年生を対象に任意の50クラスを選び、国防上必要な戦闘シミュレーションと称\nする殺人ゲーム、“プログラム”を行なっていた。ゲームはクラスごとに実施、生徒たちは与えられた武器で互いに殺しあい、最後に残った一人だけは家に帰ることが\nできる。香川県城岩町立城岩中学校3年B組の七原秋也ら生徒42人は、夜のうちに修学旅行のバスごと政府に拉致され、高松市沖の小さな島に連行された。催涙ガス\nによる眠りから覚めた秋也たちに、坂持金発と名乗る政府の役人が、“プログラム”の開始を告げる。ゲームの中に投げ込まれた少年、少女たちは、さまざまに行動す\nる。殺す者、殺せない者、自殺をはかる者、狂う者。仲間をつくる者、孤独になる者。信じることができない者、なお信じようとする者。愛する気持ちと不信の交錯、\nそして流血...。ギリギリの状況における少年、少女たちの絶望的な青春を描いた問答無用、凶悪無比のデッド&ポップなデス・ゲーム小説。\"\r\n2762,2853,5126859,Sarah Addison Allen,The Girl Who Chased the Moon,https://images.gr-assets.com/books/1320483463l/5126859.jpg,3.97,41049,\"fiction, fantasy\",\"Moving in with the grandfather she never knew after the death of her\nmother, 17-year-old Emily witnesses bizarre supernatural activities in her\nnew North Carolina community while befriending its remarkable residents. By\nthe author of The Sugar Queen. Reprint.\"\r\n2763,2854,107301,Nevil Shute,A Town Like Alice,https://images.gr-assets.com/books/1327957610l/107301.jpg,4.12,36007,\"fiction, classics\",\"\"\"A tale of love and war, follows its enterprising heroine from Malayan\njungle during World War II to the rugged Australian outback.\"\" -- Cover,\np.4.\"\r\n2764,2856,2485785,Diane Chamberlain,The Secret Life Of CeeCee Wilkes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554365788l/2485785.jpg,4.09,32490,\"fiction, mystery\",\"After a dark night of unimaginable consequences, CeeCee Wilkes starts a new\nlife as Eve Elliot and now, as a successful therapist, finds her past and\npresent colliding, forcing her to make a difficult decision.\"\r\n2765,2857,188230,Elizabeth Peters,Crocodile on the Sandbank,https://images.gr-assets.com/books/1306096774l/188230.jpg,4.02,44395,\"mystery, fiction\",Crocodile on the SandbankElizabeth Peters\r\n2766,2858,6070950,Nora Roberts,Bed of Roses,https://images.gr-assets.com/books/1316972420l/6070950.jpg,4.11,45089,\"romance, contemporary\",\"Florist Emma Grant despairs of ever finding Mr. Right, until she develops\nfeelings for Jack Cooke, an architect who works closely with her and her\ncolleagues at Vows wedding planning.\"\r\n2767,2859,19670,Tom Clancy,Debt of Honor,https://images.gr-assets.com/books/1310086695l/19670.jpg,4.03,34952,\"fiction, thriller\",\"Called out of retirement to serve as National Security Advisor to the\npresident, Jack Ryan, with the help of CIA officers John Clark and Domingo\nChavez, must prepare the untested president to meet the challenges of a new\nworld order. 1,500,000 first printing.\"\r\n2768,2860,17343,C.S. Lewis,Till We Have Faces,https://images.gr-assets.com/books/1381692105l/17343.jpg,4.19,36758,\"fiction, fantasy\",\"A repackaged edition of the revered author’s retelling of the myth of Cupid\nand Psyche—what he and many others regard as his best novel. C. S.\nLewis—the great British writer, scholar, lay theologian, broadcaster,\nChristian apologist, and bestselling author of Mere Christianity, The\nScrewtape Letters, The Great Divorce, The Chronicles of Narnia, and many\nother beloved classics—brilliantly reimagines the story of Cupid and\nPsyche. Told from the viewpoint of Psyche’s sister, Orual, Till We Have\nFaces is a brilliant examination of envy, betrayal, loss, blame, grief,\nguilt, and conversion. In this, his final—and most mature and\nmasterful—novel, Lewis reminds us of our own fallibility and the role of a\nhigher power in our lives.\"\r\n2769,2861,224500,Anthony Horowitz,Point Blanc,https://images.gr-assets.com/books/1375494413l/224500.jpg,4.1,39296,\"mystery, thriller\",\"Investigations into the \"\"accidental\"\" deaths of two of the worlds most\npowerful men, both of whom had sons at Point Blanc Academy, mean fourteen\nyear old Alex Rider, reluctant M16 spy, must infiltrate the academy as a\npupil, and find the truth. Can he alert the world to what he discovers in\ntime?\"\r\n2770,2862,15676,Dean Koontz,Strangers,https://images.gr-assets.com/books/1308458895l/15676.jpg,3.98,34661,\"fiction, horror\",\"A group of seemingly unrelated people experiences sensations of numbing\nterror and fear and, groping their way toward one another, discover their\nsinister, shared secrets in a chilling climax that changes their lives\nforever. Reissue.\"\r\n2771,2863,93794,Daniel Silva,The Kill Artist,https://images.gr-assets.com/books/1391616227l/93794.jpg,4,31579,\"thriller, fiction\",\"Ari Shamron, the head of Israeli intelligence, calls on former intelligence\noperative Gabriel Allon to thwart a Palestinian plot to destroy the Middle\nEast peace negotiations, a conspiracy linked to a Palestinian zealot with\nties to Gabriel's past.\"\r\n2772,2864,490867,Mo Willems,Knuffle Bunny:  A Cautionary Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347373870l/490867.jpg,4.26,37886,\"fiction, classics\",\"After a fun day with Daddy at the local Laundromat, Trixie quickly notices\nthat her cherished Knuffle Bunny is missing and turns to her father to help\nher get him back, in a quirky tale about a special daddy-daughter\nadventure. Teacher's Guide available. By the author of Don't Let the Pigeon\nDrive the Bus.\"\r\n2773,2865,47558,Edward Gorey,The Gashlycrumb Tinies,https://images.gr-assets.com/books/1327933644l/47558.jpg,4.23,37054,\"fiction, art\",\"A new, small-format edition of one of Edward Gorey's “dark masterpieces of\nsurreal morality” (Vanity Fair): a witty, disquieting journey through the\nalphabet.\"\r\n2774,2866,13147230,\"Terry Pratchett, Stephen Baxter\",The Long Earth,https://images.gr-assets.com/books/1335532694l/13147230.jpg,3.74,32313,\"fantasy, fiction\",\"The possibilities are endless. (Just be careful what you wish for. . . .)\n1916: The Western Front. Private Percy Blakeney wakes up. He is lying on\nfresh spring grass. He can hear birdsong and the wind in the leaves. Where\nhave the mud, blood, and blasted landscape of no-man's-land gone? For that\nmatter, where has Percy gone? 2015: Madison, Wisconsin. Police officer\nMonica Jansson is exploring the burned-out home of a reclusive—some say\nmad, others allege dangerous—scientist who seems to have vanished. Sifting\nthrough the wreckage, Jansson finds a curious gadget: a box containing some\nrudimentary wiring, a three-way switch, and . . . a potato. It is the\nprototype of an invention that will change the way humankind views the\nworld forever. The first novel in an exciting new collaboration between\nDiscworld® creator Terry Pratchett and the acclaimed SF writer Stephen\nBaxter, The Long Earth transports readers to an infinity of new worlds. All\nit takes is a single step. . . .\"\r\n2775,2867,1319,\"Steven Pressfield, Robert McKee\",The War of Art: Break Through the Blocks and Win Your Inner Creative Battles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574272133l/1319._SY475_.jpg,4.07,31399,\"nonfiction, art\",\"Describes the resistance that people develop to expressing their creativity\nand making other changes, and suggests strategies to overcome this force.\"\r\n2776,2869,11438,Raymond Carver,What We Talk About When We Talk About Love: Stories,https://images.gr-assets.com/books/1475474209l/11438.jpg,4.22,29807,\"fiction, classics\",\"Stories feature men and women without education, insight, or prospects,\nwho, ironically, are too unimaginative to ever give up\"\r\n2777,2870,104379,Sarah Dessen,That Summer,https://images.gr-assets.com/books/1309197116l/104379.jpg,3.49,43723,\"contemporary, romance\",\"During the summer of her divorced father's remarriage and her sister's\nwedding, fifteen-year-old Haven comes into her own by letting go of the\nmyths of the past.\"\r\n2778,2871,10790290,Michael J. Sullivan,Theft of Swords,https://images.gr-assets.com/books/1307959785l/10790290.jpg,4.21,33076,\"fantasy, fiction\",Theft of SwordsMichael J. Sullivan\r\n2779,2872,17286747,Diane Chamberlain,Necessary Lies,https://images.gr-assets.com/books/1362226103l/17286747.jpg,4.21,32761,\"fiction, contemporary\",Necessary LiesDiane Chamberlain\r\n2780,2873,218467,\"Larry Niven, Jerry Pournelle\",Lucifer's Hammer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268115l/218467.jpg,3.98,33228,\"fiction, classics\",\"Lucifer's HammerLarry Niven, Jerry Pournelle\"\r\n2781,2874,114144,Nora Roberts,Montana Sky,https://images.gr-assets.com/books/1309197209l/114144.jpg,4.07,36576,\"romance, fiction\",\"To inherit part of their father's estate, three sisters--each unknown to\nthe others and the children of three separate marriages--must put aside\ntheir mutual bitterness and live together on their father's isolated,\nmysteriously violent Montana ranch. Reprint. 250,000 first printing.\"\r\n2782,2875,31548,\"W. Somerset Maugham, Benjamin DeMott, Maeve Binchy\",Of Human Bondage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924695l/31548.jpg,4.11,33028,\"classics, fiction\",\"Of Human BondageW. Somerset Maugham, Benjamin DeMott, Maeve Binchy\"\r\n2783,2876,18879761,Gayle Forman,I Was Here,https://images.gr-assets.com/books/1405960366l/18879761.jpg,3.78,38196,\"contemporary, romance\",I Was HereGayle Forman\r\n2784,2879,153542,Virginia Lee Burton,Mike Mulligan and His Steam Shovel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924293l/153542.jpg,4.2,42632,\"fiction, classics\",\"Threatened by competition from modern shovels, Mike proves the worth of his\ntrusty old steam shovel, Mary Anne.\"\r\n2785,2881,116296,Terry Pratchett,Making Money,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440503111l/116296._SX318_.jpg,4.23,39419,\"fantasy, fiction\",Making MoneyTerry Pratchett\r\n2786,2882,7074000,Nora Roberts,Happy Ever After,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587799584l/7074000._SY475_.jpg,4.17,40323,\"romance, contemporary\",Happy Ever AfterNora Roberts\r\n2787,2883,10908,Jodi Picoult,Harvesting the Heart,https://images.gr-assets.com/books/1309198959l/10908.jpg,3.59,35064,\"romance, fiction\",\"Now with a child of her own, Paige is still haunted by memories of her own\nmother, who left when she was five, and plagued by constant self-doubt.\"\r\n2788,2884,16150830,Alexandra Bracken,Never Fade,https://images.gr-assets.com/books/1368460550l/16150830.jpg,4.33,46332,\"fantasy, romance\",\"Ruby never asked for the abilities that almost cost her her life. Now she\nmust call upon them on a daily basis, leading dangerous missions to bring\ndown a corrupt government and breaking into the minds of her enemies. Other\nkids in the Children's League call Ruby \"\"Leader\"\", but she knows what she\nreally is: a monster. When Ruby is entrusted with an explosive secret, she\nmust embark on her most dangerous mission yet: leaving the Children's\nLeague behind. Crucial information about the disease that killed most of\nAmerica's children-and turned Ruby and the others who lived into feared and\nhated outcasts-has survived every attempt to destroy it. But the truth is\nonly saved in one place: a flashdrive in the hands of Liam Stewart, the boy\nRuby once believed was her future-and who now wouldn't recognize her. As\nRuby sets out across a desperate, lawless country to find Liam-and answers\nabout the catastrophe that has ripped both her life and America apart-she\nis torn between old friends and the promise she made to serve the League.\nRuby will do anything to protect the people she loves. But what if winning\nthe war means losing herself?\"\r\n2789,2885,3257136,\"Vicki Myron, Bret Witter\",Dewey: The Small-Town Library Cat Who Touched the World,https://images.gr-assets.com/books/1398144610l/3257136.jpg,3.85,40356,\"nonfiction, memoir\",\"Traces the author's discovery of a half-frozen kitten in the drop-box of\nher small-community Iowa library and the feline's development into an\naffable library mascot whose intuitive nature prompted hundreds of abiding\nfriendships, in a tale told against a backdrop of the town's struggles with\nthe 1980s farm crisis.\"\r\n2790,2886,16248113,Soman Chainani,The School for Good and Evil,https://images.gr-assets.com/books/1490529205l/16248113.jpg,4,35890,\"fantasy, fiction\",\"The New York Times bestselling The School for Good and Evil, the first book\nin the series, is an epic journey into a dazzling new world, where the only\nway out of a fairy tale is to live through one. This paperback edition\nfeatures an Extras section, giving readers a chance to see which school\nthey'd be in and a Q&A with the author, Soman Chainani. With her glass\nslippers and devotion to good deeds, Sophie knows she'll earn top marks at\nthe School for Good and join the ranks of past students like Cinderella,\nRapunzel, and Snow White. Meanwhile, Agatha, with her shapeless black\nfrocks and wicked black cat, seems a natural fit for the villains in the\nSchool for Evil. The two girls soon find their fortunes reversed—Sophie's\ndumped in the School for Evil to take Uglification, Death Curses, and\nHenchmen Training, while Agatha finds herself in the School for Good,\nthrust among handsome princes and fair maidens for classes in Princess\nEtiquette and Animal Communication. But what if the mistake is actually the\nfirst clue to discovering who Sophie and Agatha really are?\"\r\n2791,2887,30259,Kim Harrison,For a Few Demons More ,https://images.gr-assets.com/books/1319592584l/30259.jpg,4.33,44879,\"fantasy, paranormal\",\"Despite dating one vampire and living with another, Rachel Morgan has\nalways managed to stay just ahead of trouble . . . until now. A fiendish\nserial killer stalks the Hollows, and no one living in or around\nCincinnati—human, inhuman, or undead—is safe. An ancient artifact may be\nthe key to stopping the murderer—a mysterious relic that is now in the\nhands of Rachel Morgan, fearless independent bounty hunter and reckless\nwitch. But revealing it could ignite a battle to the death among the vast\nand varied local supernatural races. Rachel's been lucky so far. But even\nshe can't hide from catastrophe forever.\"\r\n2792,2888,20821043,Tana French,The Secret Place,https://images.gr-assets.com/books/1396671263l/20821043.jpg,3.83,30834,\"mystery, fiction\",The Secret PlaceTana French\r\n2793,2889,6604209,Brandon Sanderson,Mistborn Trilogy Boxed Set,https://images.gr-assets.com/books/1257442247l/6604209.jpg,4.55,22917,\"fantasy, fiction\",\"A boxed set of the landmark fantasy from Brandon Sanderson, the man\ncredited with breathing fresh life into Robert Jordan's WHEEL OF TIME. An\nepic fantasy set in a world where the Dark Lord has gained dominion over\nthe world. A world of ash and pain. A world subjugated. But a world where\nmagic can be drawn from metals. A world waiting for a new heroine, a new\nhope. A word of mouth bestseller in the USA Brandon Sanderson's Mistborn\ntrilogy have now become a massive hit in the UK, introducing readers to the\nwork of one of the genre's great talents. A master of world building,\nsweeping plots, believable characters and engrossing magic systems.\"\r\n2794,2891,6545536,Gordon Korman,The Emperor's Code,https://images.gr-assets.com/books/1357211054l/6545536.jpg,4.04,36068,\"mystery, fiction\",\"As they continue their search for the 39 Clues in China, fourteen-year-old\nAmy is faced with a terrible dilemma when her eleven-year-old brother Dan\nsuddenly disappears--keep on searching for the next Clue or try to find her\nbrother.\"\r\n2795,2892,808853,\"Margret Rey, H.A. Rey\",The Complete Adventures of Curious George,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348191831l/808853.jpg,4.23,39453,\"fiction, classics\",\"The Complete Adventures of Curious GeorgeMargret Rey, H.A. Rey\"\r\n2796,2893,11082037,Michael Connelly,The Drop,https://images.gr-assets.com/books/1327935031l/11082037.jpg,4.14,32426,\"fiction, mystery\",\"Harry Bosch has been given three years before he must retire from the LAPD,\nand he wants cases more fiercely than ever. In one morning, he gets two.\nDNA from a 1989 rape and murder matches a 29-year-old convicted rapist. Was\nhe an eight-year-old killer or has something gone terribly wrong in the new\nRegional Crime Lab? The latter possibility could compromise all of the\nlab's DNA cases currently in court. Then Bosch and his partner are called\nto a death scene fraught with internal politics. Councilman Irvin Irving's\nson jumped or was pushed from a window at the Chateau Marmont. Irving,\nBosch's longtime nemesis, has demanded that Harry handle the investigation.\nRelentlessly pursuing both cases, Bosch makes two chilling discoveries: a\nkiller operating unknown in the city for as many as three decades, and a\npolitical conspiracy that goes back into the dark history of the police\ndepartment.\"\r\n2797,2894,500503,Naoko Takeuchi,美少女戦士セーラームーン 1 [Bishōjo Senshi Sailor Moon 1],https://images.gr-assets.com/books/1327981776l/500503.jpg,4.29,34951,\"manga, fantasy\",美少女戦士セーラームーン 1 [Bishōjo Senshi Sailor Moon 1]Naoko Takeuchi\r\n2798,2896,13436373,\"Raina Telgemeier, Gurihiru\",Drama,https://images.gr-assets.com/books/1330157763l/13436373.jpg,4.14,42759,\"comics, fiction\",\"Callie rides an emotional roller coaster while serving on the stage crew\nfor a middle school production of Moon over Mississippi as various\nrelationships start and end, and others never quite get going.\"\r\n2799,2897,3110,Sarah Vowell,Assassination Vacation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440616283l/3110._SY475_.jpg,3.98,32176,\"nonfiction, history\",Assassination VacationSarah Vowell\r\n2800,2898,92121,Roger Zelazny,Nine Princes in Amber,https://images.gr-assets.com/books/1416090973l/92121.jpg,4.1,37961,\"fantasy, fiction\",\"Awakening in an Earth hospital unable to remember who he is or where he\ncame from, Corwin is amazed to learn that he is one of the sons of Oberon,\nKing of Amber, and is the rightful successor to the crown in a parallel\nworld. Reissue.\"\r\n2801,2899,18144053,Alice Hoffman,The Museum of Extraordinary Things,https://images.gr-assets.com/books/1392575125l/18144053.jpg,3.73,29805,\"fiction, fantasy\",The Museum of Extraordinary ThingsAlice Hoffman\r\n2802,2900,3220405,Orson Scott Card,\"Ender in Exile (The Ender Quintet, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442883678l/3220405._SX318_.jpg,3.89,29389,\"fiction, fantasy\",\"Ender in Exile (The Ender Quintet, #2)Orson Scott Card\"\r\n2803,2901,421129,MaryJanice Davidson,Undead and Unwed,https://images.gr-assets.com/books/1298768655l/421129.jpg,3.81,45634,\"romance, fantasy\",\"After being killed in a car accident, fashion savvy Betsy Taylor becomes\none of the undead and, with the help of her newfound friends, the lure of\ndesigner shoes, and a sexy vampire, must destroy a dark enemy and fulfill\nher destiny as the prophesied vampire queen. Original.\"\r\n2804,2902,4005,Paulo Coelho,O Monte Cinco,https://images.gr-assets.com/books/1358268472l/4005.jpg,3.61,26060,\"fiction, philosophy\",O Monte CincoPaulo Coelho\r\n2805,2903,35519,\"Joseph Campbell, Bill Moyers\",The Power of Myth,https://images.gr-assets.com/books/1327878742l/35519.jpg,4.3,32337,\"history, classics\",\"The noted mythologist discusses the relationship of ancient myths to modern\nlife, including discussions of recent heros, tales of love and marriage,\nthe power of myth, and mythic themes\"\r\n2806,2904,21418013,John Scalzi,Lock In,https://images.gr-assets.com/books/1438701397l/21418013.jpg,3.85,31073,\"fiction, mystery\",Lock InJohn Scalzi\r\n2807,2905,17380041,Jo Baker,Longbourn,https://images.gr-assets.com/books/1452268403l/17380041.jpg,3.62,32744,\"fiction, romance\",\"A reimagining of Jane Austen's \"\"Pride and Prejudice\"\" from the perspectives\nof its below-stairs servants captures the drama of the Bennet household\nfrom the sideline viewpoint of Sarah, an orphaned housemaid.\"\r\n2808,2906,21412202,\"Cary Elwes, Joe Layden, Various, Rob Reiner\",As You Wish: Inconceivable Tales from the Making of The Princess Bride,https://images.gr-assets.com/books/1418103917l/21412202.jpg,4.08,31886,\"nonfiction, memoir\",\"In a twenty-fifth anniversary, behind-the-scenes account of the making of\nthe cult classic film, the lead actor shares never-before-told stories and\nexclusive photographs as well as interviews with fellow actors and\nproducers of the film.\"\r\n2809,2907,773276,Peggy Rathmann,\"Good Night, Gorilla\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347227009l/773276.jpg,4.2,37948,\"fiction, fantasy\",\"Good Night, GorillaPeggy Rathmann\"\r\n2810,2908,13522285,Robyn Schneider,\"Severed Heads, Broken Hearts\",https://images.gr-assets.com/books/1366395005l/13522285.jpg,3.78,35150,\"contemporary, romance\",\"\"\"I couldn't help but think of John Green's novels - I think his fans will\neat this up.\"\" Publishers Weekly \"\"Heartbreaking and hilarious. I have no\ndoubt that girls everywhere are going to fall madly, deeply, hopelessly in\nlove with Ezra Faulkner.\"\" Sarah Mlynowski, NYT bestselling author. \"\"Maybe\nit's time to expand your list of literary crushes to include someone other\nthan Augustus Waters.\"\" MTV.com \"\"This is one of the most literary teen books\nI've read for a long time - up there with John Green - and it's a delight\nto read… the ending absolutely blew me away, being unpredictable, powerful,\nand altogether fantastic.\"\" The Bookbag Golden boy Ezra Faulkner believes\neveryone has a tragedy waiting for them - a single encounter after which\neverything that really matters will happen. His own tragedy waited until he\nhad everything to lose - in one night, a reckless driver shatters Ezra's\nknee, his athletic career, and his perfect life. No longer part of the\npopular crowd, Ezra finds himself at the table of misfits, where he\nencounters Cassidy Thorpe. Intelligent, effortless and wonderfully weird,\nshe is unlike anyone Ezra's ever met before. Together they discover flash\nmobs, buried treasure, secret movie screenings and a poodle with a\nquestionable history. But as Ezra dives into new friendships and new love,\nhe is forced to ask: if you've managed to survive disaster, what happens\nwhen it strikes again? Robyn Schneider's Severed Heads, Broken Hearts is a\nlyrical, witty and heart-wrenching novel about how difficult it is to play\nthe part that people expect, and how new beginnings can stem from abrupt\nand tragic endings.\"\r\n2811,2909,6389704,Jude Watson,\"In Too Deep (The 39 Clues, Book 6)\",https://images.gr-assets.com/books/1357211047l/6389704.jpg,4.02,35694,\"mystery, fiction\",\"Could Amy and Dan's biggest enemy be . . . a friend? The 39 Clues Book 6\nchallenges everything you thought you knew about the Clue race. JOIN\nANYTIME TO PLAY FOR THE CHANCE TO WIN! The 39 Clues gets treacherous. Book\n6 takes Amy and Dan across oceans on the trail of a famous aviator, but\nthey find more than they're looking for. Their enemies are becoming more\nvicious, and the truths they discover more crushing than ever.\"\r\n2812,2910,138269,\"Frank W. Abagnale, Stan Redding\",Catch Me If You Can,https://images.gr-assets.com/books/1358730242l/138269.jpg,4.05,32048,\"biography, nonfiction\",\"A former confidence man and master impostor recounts his crimes, captures,\nescapes, and imprisonment, in a firsthand account of his international\nexploits.\"\r\n2813,2911,30248,Laurell K. Hamilton,\"Narcissus in Chains (Anita Blake, Vampire Hunter, #10)\",https://images.gr-assets.com/books/1386179578l/30248.jpg,3.89,46567,\"paranormal, fantasy\",\"Narcissus in Chains (Anita Blake, Vampire Hunter, #10)Laurell K. Hamilton\"\r\n2814,2913,16099159,J. Kenner,Claim Me,https://images.gr-assets.com/books/1358614559l/16099159.jpg,4.21,42238,\"romance, contemporary\",\"Billionaire Damien Starck continues his obssessive relationship with Nikki\nFairchild, as she tries to discover his darkest secrets and they both\nconfront experiences from their troubled pasts.\"\r\n2815,2914,3483,Marisha Pessl,Special Topics in Calamity Physics,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442699779l/3483._SY475_.jpg,3.7,29369,\"fiction, mystery\",Special Topics in Calamity PhysicsMarisha Pessl\r\n2816,2915,18498558,Josh Malerman,Bird Box,https://images.gr-assets.com/books/1383949470l/18498558.jpg,3.98,31735,\"horror, fiction\",Bird BoxJosh Malerman\r\n2817,2916,12476820,Dan Wells,Partials,https://images.gr-assets.com/books/1337468746l/12476820.jpg,3.94,42493,\"fantasy, fiction\",\"For fans of The Hunger Games, Battlestar Galactica, and Blade Runner comes\nthe first book in the Partials Sequence, a fast-paced, action-packed, and\nriveting sci-fi teen series, by acclaimed author Dan Wells. Humanity is all\nbut extinguished after a war with Partials—engineered organic beings\nidentical to humans—has decimated the population. Reduced to only tens of\nthousands by a weaponized virus to which only a fraction of humanity is\nimmune, the survivors in North America have huddled together on Long\nIsland. But sixteen-year-old Kira is determined to find a solution. As she\ntries desperately to save what is left of her race, she discovers that that\nthe survival of both humans and Partials rests in her attempts to answer\nquestions about the war's origin that she never knew to ask. Playing on our\ncuriosity of and fascination with the complete collapse of civilization,\nPartials is, at its heart, a story of survival, one that explores the\nindividual narratives and complex relationships of those left behind, both\nhumans and Partials alike—and of the way in which the concept of what is\nright and wrong in this world is greatly dependent on one's own point of\nview. Supports the Common Core State Standards\"\r\n2818,2917,72223,Timothy Egan,The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441676713l/72223._SY475_.jpg,4.04,32275,\"history, nonfiction\",The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust BowlTimothy Egan\r\n2819,2918,17802747,Ellen Marie Wiseman,What She Left Behind,https://images.gr-assets.com/books/1373226871l/17802747.jpg,3.86,22933,\"fiction, mystery\",What She Left BehindEllen Marie Wiseman\r\n2820,2919,3047850,Sara Shepard,Wicked,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236780950l/3047850.jpg,4.04,38461,\"contemporary, fiction\",\"In idyllic Rosewood, Pennsylvania, four very pretty girls just can't help\nbut be bad. . . . Hanna will do anything to be Rosewood's queen bee.\nSpencer's digging up her family's secrets. Emily can't stop thinking about\nher new boyfriend. And Aria approves a little too strongly of her mom's\ntaste in men. Now that Ali's killer is finally behind bars, the girls think\nthey're safe. But those who forget the past are condemned to repeat it. And\nthey should know by now that I'm always watching. . . .\"\r\n2821,2920,184655,Vince Flynn,Transfer of Power,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442152192l/184655._SY475_.jpg,4.31,28647,\"thriller, fiction\",Transfer of PowerVince Flynn\r\n2822,2921,395090,Sylvia Plath,Ariel,https://images.gr-assets.com/books/1442258738l/395090.jpg,4.23,35566,\"poetry, classics\",\"Sylvia Plath's famous collection, as she intended it. When Sylvia Plath\ndied, she not only left behind a prolific life but also her unpublished\nliterary masterpiece, Ariel. When her husband, Ted Hughes, first brought\nthis collection to life, it garnered worldwide acclaim, though it wasn't\nthe draft Sylvia had wanted her readers to see. This facsimile edition\nrestores, for the first time, Plath's original manuscript -- including\nhandwritten notes -- and her own selection and arrangement of poems. This\nedition also includes in facsimile the complete working drafts of her poem\n\"\"Ariel,\"\" which provide a rare glimpse into the creative process of a\nbeloved writer. This publication introduces a truer version of Plath's\nworks, and will no doubt alter her legacy forever. This P.S. edition\nfeatures an extra 16 pages of insights into the book, including author\ninterviews, recommended reading, and more.\"\r\n2823,2922,13223349,\"Scott Snyder, Greg Capullo, Jonathan Glapion\",\"Batman, Volume 1: The Court of Owls\",https://images.gr-assets.com/books/1342307351l/13223349.jpg,4.3,30617,\"fiction, mystery\",\"Batman, Volume 1: The Court of OwlsScott Snyder, Greg Capullo, Jonathan Glapion\"\r\n2824,2923,33457,Christopher Moore,Practical Demonkeeping,https://images.gr-assets.com/books/1429229158l/33457.jpg,3.81,33593,\"fiction, fantasy\",\"In Christopher Moore's ingenious debut novel, we meet one of the most\nmemorably mismatched pairs in the annals of literature. The good-looking\none is one-hundred-year-old ex-seminarian and \"\"roads\"\" scholar Travis\nO'Hearn. The green one is Catch, a demon with a nasty habit of eating most\nof the people he meets. Behind the fake Tudor façade of Pine Cove,\nCalifornia, Catch sees a four-star buffet. Travis, on the other hand,\nthinks he sees a way of ridding himself of his toothy traveling companion.\nThe winos, neo-pagans, and deadbeat Lotharios of Pine Cove, meanwhile, have\nother ideas. And none of them is quite prepared when all hell breaks loose.\"\r\n2825,2924,46438,Raymond Khoury,The Last Templar,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284037l/46438.jpg,3.57,33675,\"fiction, thriller\",\"When the opening gala of a Vatican exhibit attended by archaeologist Tess\nChaykin is stormed by four horsemen dressed as Templar Knights who steal an\nartifact, FBI anti-terrorist specialist Sean Reilly and Tess team up for an\ninvestigation. Reprint.\"\r\n2826,2925,6534932,Kathy Griffin,Official Book Club Selection: A Memoir According to Kathy Griffin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428806540l/6534932.jpg,3.8,31685,\"memoir, biography\",\"The comedian and Emmy-winning self-proclaimed \"\"D-list\"\" star celebrates\nthose who supported her on her rise to fame and also offers intimate\ndetails in a humorous look at the funny woman's life. Reprint. A best-\nselling memoir.\"\r\n2827,2926,240976,\"Milan Kundera, Aaron Asher\",Kniha smíchu a zapomnění,https://images.gr-assets.com/books/1446568718l/240976.jpg,4.01,28159,\"fiction, philosophy\",\"Rich in its stories, characters, and imaginative range, The Book of\nLaughter and Forgetting is the novel that brought Milan Kundera his first\nbig international success in the late 1970s. Like all his work, it is\nvaluable for far more than its historical implications. In seven\nwonderfully integrated parts, different aspects of human existence are\nmagnified and reduced, reordered and emphasized, newly examined, analyzed,\nand experienced.\"\r\n2828,2927,479415,Nicholas Evans,The Horse Whisperer,https://images.gr-assets.com/books/1320410310l/479415.jpg,3.77,38033,\"romance, contemporary\",The Horse WhispererNicholas Evans\r\n2829,2928,46191,Sherry Argov,Why Men Love Bitches: From Doormat to Dreamgirl - A Woman's Guide to Holding Her Own In A Relationship,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180512l/46191.jpg,3.89,26662,\"psychology, nonfiction\",\"Describes why men are attracted to strong women and offers advice on ways a\nwoman can relate to men and gain a man's love and respect.\"\r\n2830,2929,3047851,Sara Shepard,Wanted,https://images.gr-assets.com/books/1325823986l/3047851.jpg,4.15,36207,\"ebooks, mystery\",\"Being wanted isn't always a good thing. For three long years, Hanna,\nSpencer, Aria, and Emily wondered what happened the night their best friend\nAlison disappeared. Now that all their questions have finally been\nanswered, they can put this awful chapter of their lives behind them. Or so\nthey think. Not every story has a happy ending, especially when four pretty\nlittle liars have done so many wicked things. Will the girls get everything\nthey've ever wanted? Not if I have anything to say about it.\"\r\n2831,2930,1225621,Kim Harrison,The Outlaw Demon Wails ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434582373l/1225621._SY475_.jpg,4.38,44119,\"fantasy, paranormal\",\"Having trafficked in forbidden demon magic in order to save the lives of\nher friends, witch and runner Rachel Morgan investigates the death of her\nlover only to uncover a family secret that changes everything she has ever\nbelieved, a discovery that is further complicated by a demon's\nmachinations. Reprint.\"\r\n2832,2931,433567,\"Edwin A. Abbott, Banesh Hoffmann\",Flatland: A Romance of Many Dimensions,https://images.gr-assets.com/books/1435435775l/433567.jpg,3.81,31377,\"fiction, classics\",\"A humorous examination with serious overtones of the concepts of space,\ntime, and dimension.\"\r\n2833,2932,7728889,Libba Bray,The Diviners,https://images.gr-assets.com/books/1336424966l/7728889.jpg,3.96,44513,\"fantasy, paranormal\",The DivinersLibba Bray\r\n2834,2933,3798703,Tim Tharp,The Spectacular Now,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441898584l/3798703._SY475_.jpg,3.53,30125,\"contemporary, fiction\",\"In the last months of high school, eighteen-year-old Sutter Keely lives in\nthe present, staying drunk or high most of the time, but that could change\nwhen he starts working to boost the self-confidence of a classmate, Aimee.\"\r\n2835,2934,14142,\"Erich Fromm, Peter D. Kramer, Rainer Funk\",The Art of Loving,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438550243l/14142._SY475_.jpg,4.01,29048,\"psychology, nonfiction\",\"The fiftieth Anniversary Edition of the groundbreaking international\nbestseller that has shown millions of readers how to achieve rich,\nproductive lives by developing their hidden capacities for love Most people\nare unable to love on the only level that truly matters: love that is\ncompounded of maturity, self-knowledge, and courage. As with every art,\nlove demands practice and concentration, as well as genuine insight and\nunderstanding. In his classic work, The Art of Loving, renowned\npsychoanalyst and social philosopher Erich Fromm explores love in all its\naspects—not only romantic love, steeped in false conceptions and lofty\nexpectations, but also brotherly love, erotic love, self-love, the love of\nGod, and the love of parents for their children.\"\r\n2836,2935,537070,Suzanne Collins,Gregor and the Code of Claw,https://images.gr-assets.com/books/1365854331l/537070.jpg,4.25,33286,\"fantasy, fiction\",Gregor and the Code of ClawSuzanne Collins\r\n2837,2936,64218,Terry Pratchett,Eric,https://images.gr-assets.com/books/1377865202l/64218.jpg,3.72,37938,\"fiction, fantasy\",EricTerry Pratchett\r\n2838,2937,25102,\"Neil Gaiman, Shawn McManus, Colleen Doran, Bryan Talbot, George Pratt, Stan Woch, Dick Giordano, Todd Klein\",The Sandman: A Game of You,https://images.gr-assets.com/books/1312279891l/25102.jpg,4.43,37211,\"comics, fantasy\",\"The Sandman: A Game of YouNeil Gaiman, Shawn McManus, Colleen Doran, Bryan Talbot, George Pratt, Stan Woch, Dick Giordano, Todd Klein\"\r\n2839,2938,9302,Marian Keyes,The Other Side of the Story,https://images.gr-assets.com/books/1407107814l/9302.jpg,3.77,32185,\"fiction, romance\",The Other Side of the StoryMarian Keyes\r\n2840,2939,16729,Pat Conroy,Beach Music,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426903848l/16729.jpg,4.13,33220,\"fiction, contemporary\",\"Living in Rome with his daughter, Jack McCall finds his grief following his\nwife's suicide interrupted by the arrival of his sister-in-law and two\nfriends seeking his help in tracking down a classmate who went underground\nas a Vietnam protestor. Reprint.\"\r\n2841,2940,46601,Francine Rivers,\"An Echo in the Darkness (Mark of the Lion, #2)\",https://images.gr-assets.com/books/1481920193l/46601.jpg,4.6,32386,\"christian, fiction\",\"This classic series has inspired nearly 2 million readers. Both loyal fans\nand new readers will want the latest edition of this beloved series. This\nedition includes a foreword from the publisher, a preface from Francine\nRivers and discussion questions suitable for personal and group use. #2 An\nEcho in the Darkness: Turning away from the opulence of Rome, Marcus is led\nby a whispering voice from the past into a journey that could set him free\nfrom the darkness of his soul.\"\r\n2842,2941,16429619,Mary E. Pearson,The Kiss of Deception,https://images.gr-assets.com/books/1389804901l/16429619.jpg,4.06,46096,\"fantasy, romance\",\"A debut entry in a new trilogy by the author of the Jenna Fox Chronicles\nintroduces Princess Lia, who flees an unwanted marriage and expectations\nabout her supernatural legacy only to be pursued by her jilted fiancé and a\nruthless assassin.\"\r\n2843,2942,42933,James Clavell,Tai-Pan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1577989362l/42933._SY475_.jpg,4.25,34158,\"fiction, history\",Tai-PanJames Clavell\r\n2844,2943,8573020,Eleanor Brown,The Weird Sisters,https://images.gr-assets.com/books/1280449598l/8573020.jpg,3.36,35752,\"fiction, contemporary\",\"Unwillingly brought together to care for their ailing mother, three sisters\nwho were named after famous Shakespearean characters discover that\neverything they have been avoiding may prove more worthwhile than expected.\nA first novel. Reprint. A New York Times best-seller.\"\r\n2845,2944,34498,Terry Pratchett,The Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347487127l/34498.jpg,4.25,37045,\"fantasy, fiction\",The TruthTerry Pratchett\r\n2846,2945,10762469,Tom Perrotta,The Leftovers,https://images.gr-assets.com/books/1404872433l/10762469.jpg,3.38,31583,\"fiction, fantasy\",\"A New York Times Notable Book for 2011 A Washington Post Notable Fiction\nBook for 2011 A USA Today 10 Books We Loved Reading in 2011 Title One of\nNPR's 10 Best Novels of 2011 What if—whoosh, right now, with no\nexplanation—a number of us simply vanished? Would some of us collapse?\nWould others of us go on, one foot in front of the other, as we did before\nthe world turned upside down? That's what the bewildered citizens of\nMapleton, who lost many of their neighbors, friends and lovers in the event\nknown as the Sudden Departure, have to figure out. Because nothing has been\nthe same since it happened—not marriages, not friendships, not even the\nrelationships between parents and children. Kevin Garvey, Mapleton's new\nmayor, wants to speed up the healing process, to bring a sense of renewed\nhope and purpose to his traumatized community. Kevin's own family has\nfallen apart in the wake of the disaster: his wife, Laurie, has left to\njoin the Guilty Remnant, a homegrown cult whose members take a vow of\nsilence; his son, Tom, is gone, too, dropping out of college to follow a\nsketchy prophet named Holy Wayne. Only Kevin's teenaged daughter, Jill,\nremains, and she's definitely not the sweet \"\"A\"\" student she used to be.\nKevin wants to help her, but he's distracted by his growing relationship\nwith Nora Durst, a woman who lost her entire family on October 14th and is\nstill reeling from the tragedy, even as she struggles to move beyond it and\nmake a new start. With heart, intelligence and a rare ability to illuminate\nthe struggles inherent in ordinary lives, Tom Perrotta's The Leftovers is a\nstartling, thought-provoking novel about love, connection and loss.\"\r\n2847,2946,66354,Mihaly Csikszentmihalyi,Flow: The Psychology of Optimal Experience,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432253110l/66354._SY475_.jpg,4.1,28619,\"psychology, nonfiction\",Flow: The Psychology of Optimal ExperienceMihaly Csikszentmihalyi\r\n2848,2949,693016,Lisa Kleypas,Mine Till Midnight,https://images.gr-assets.com/books/1380326170l/693016.jpg,4.08,44104,\"romance, fiction\",\"When an unexpected inheritance elevates her family to the ranks of the\naristocracy, Amelia Hathaway discovers that tending to her younger sisters\nand wayward brother was easy compared to navigating the intricacies of the\nton . Even more challenging: the attraction she feels for the tall, dark,\nand dangerously handsome Cam Rohan. Wealthy beyond most men's dreams, Cam\nhas tired of society's restrictions and longs to return to his\n\"\"uncivilized\"\" Gypsy roots. When Amelia appeals to him for help, he intends\nto offer only friendship-but intentions are no match for desire. But can a\nman who spurns tradition be tempted into that most time-honored\narrangement: marriage? Life in London society is about to get a whole lot\nhotter...in Lisa Kleypas's Mine Till Midnight.\"\r\n2849,2950,96123,\"Carl Bernstein, Bob Woodward\",All the President's Men,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347805228l/96123.jpg,4.17,30919,\"history, nonfiction\",\"The two Washington Post reporters present the inside story of their inquiry\ninto the persons involved in the Watergate scandal that resulted in the\nresignation of President Nixon.\"\r\n2850,2952,20564,\"George Eliot, A.S. Byatt\",The Mill on the Floss,https://images.gr-assets.com/books/1394285531l/20564.jpg,3.77,36017,\"classics, fiction\",\"New chronology and updated further reading. Edited with an Introduction by\nA. S. Byatt.\"\r\n2851,2953,7334201,Gary Shteyngart,Super Sad True Love Story,https://images.gr-assets.com/books/1320540909l/7334201.jpg,3.44,29946,\"fiction, romance\",\"In a novel set in the near future, when a beautiful, yet cruel, woman that\nLenny Abramov met in Italy says she is coming to stay with him in New York,\neven the tanks and soldiers stationed in the city and the ongoing war with\nVenezuela can't get him down.\"\r\n2852,2955,13570854,J.R. Ward,Lover at Last,https://images.gr-assets.com/books/1339084717l/13570854.jpg,4.3,45447,\"paranormal, romance\",\"Disavowed from his family and ostracized by the aristocracy, vampire\nsoldier Qhuinn must deal with Blay moving on as he finds love with a Chosen\nfemale and they prepare to have a young.\"\r\n2853,2957,121732,C.S. Lewis,Surprised by Joy: The Shape of My Early Life,https://images.gr-assets.com/books/1381407473l/121732.jpg,4.14,33698,\"biography, christian\",Surprised by Joy: The Shape of My Early LifeC.S. Lewis\r\n2854,2958,24113,Douglas R. Hofstadter,\"Gödel, Escher, Bach: An Eternal Golden Braid\",https://images.gr-assets.com/books/1428732588l/24113.jpg,4.3,31616,\"science, nonfiction\",\"Winner of the Pulitzer Prize A metaphorical fugue on minds and machines in\nthe spirit of Lewis Carroll Douglas Hofstadter's book is concerned directly\nwith the nature of \"\"maps\"\" or links between formal systems. However,\naccording to Hofstadter, the formal system that underlies all mental\nactivity transcends the system that supports it. If life can grow out of\nthe formal chemical substrate of the cell, if consciousness can emerge out\nof a formal system of firing neurons, then so too will computers attain\nhuman intelligence. Gödel, Escher, Bach is a wonderful exploration of\nfascinating ideas at the heart of cognitive science: meaning, reduction,\nrecursion, and much more.\"\r\n2855,2959,153780,Tamora Pierce,Trickster's Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188723l/153780.jpg,4.28,45843,\"fantasy, fiction\",\"Aly fails to foresee the dangers that await as she uses her magic to\nsafeguard Dova and her younger siblings, despite knowing that her thirteen-\nyear-old charge might be queen of the Copper Isles when the colonial rulers\nare defeated.\"\r\n2856,2961,8953,Rodman Philbrick,Freak the Mighty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440388999l/8953._SX318_.jpg,3.98,34587,\"fiction, contemporary\",\"At the beginning of eighth grade, learning disabled Max and his new friend\nFreak, whose birth defect has affected his body but not his brilliant mind,\nfind that when they combine forces they make a powerful team.\"\r\n2857,2962,15790873,Jennifer E. Smith,This Is What Happy Looks Like,https://images.gr-assets.com/books/1344444283l/15790873.jpg,3.69,40369,\"romance, contemporary\",This Is What Happy Looks LikeJennifer E. Smith\r\n2858,2963,53817,Philip Yancey,What's So Amazing About Grace?,https://images.gr-assets.com/books/1328050483l/53817.jpg,4.21,28501,\"christian, religion\",Ask librarian for help in locating.\r\n2859,2964,10816297,Vince Flynn,Kill Shot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390441073l/10816297.jpg,4.3,28845,\"fiction, thriller\",Kill ShotVince Flynn\r\n2860,2965,74389,Jean M. Auel,The Plains of Passage,https://images.gr-assets.com/books/1324059606l/74389.jpg,3.77,36663,\"fiction, fantasy\",\"Ayla and Jondalar journey across Ice Age Europe, impressing the primitive\ntribes--she with her ability to communicate with animals, and he with his\nmastery of the tools of war. Reissue.\"\r\n2861,2966,17733898,Jeff Kinney,Hard Luck,https://images.gr-assets.com/books/1376473492l/17733898.jpg,4.28,32069,\"fiction, comics\",\"Greg Heffley's on a losing streak. His best friend, Rowley Jefferson, has\nditched him, and finding new friends in middle school is proving to be a\ntough task. To change his fortunes, Greg decides to take a leap of faith\nand turn his decisions over to chance. Will a roll of the dice turn things\naround, or is Greg's life destined to be just another hard-luck story?\"\r\n2862,2967,9838,\"Åsne Seierstad, Ingrid Christopherson\",Bokhandleren i Kabul,https://images.gr-assets.com/books/1388611939l/9838.jpg,3.76,30531,\"memoir, biography\",\"The Norwegian journalist provides a portrait of a committed Muslim man and\nhis family living in post-Taliban Kabul, Afghanistan.\"\r\n2863,2968,833710,D.J. MacHale,The Merchant of Death,https://images.gr-assets.com/books/1351196725l/833710.jpg,3.93,38633,\"fantasy, fiction\",\"Bobby Pendragon is a seemingly normal fourteen-year-old boy. He has a\nfamily, a home, and even Marley, his beloved dog. But there is something\nvery special about Bobby. He is going to save the world. And not just Earth\nas we know it. Bobby is slowly starting to realize that life in the cosmos\nisn't quite what he thought it was. And before he can object, he is swept\noff to an alternate dimension known as Denduron, a territory inhabited by\nstrange beings, ruled by a magical tyrant, and plagued by dangerous\nrevolution. If Bobby wants to see his family again, he's going to have to\naccept his role as savior, and accept it wholeheartedly. Because, as he is\nabout to discover, Denduron is only the beginning....\"\r\n2864,2969,4703581,China Miéville,The City & The City,https://images.gr-assets.com/books/1320475957l/4703581.jpg,3.91,29577,\"fantasy, fiction\",\"Inspector Tyador Borlâu must travel to Ul Qoma to search for answers in the\nmurder of a woman found in the city of Besâzel.\"\r\n2865,2970,128759,Kathy Reichs,Fatal Voyage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1219072994l/128759.jpg,4.04,35970,\"mystery, crime\",\"After a fatal airline crash in the mountains of North Carolina, Dr.\nTemperance Brennan heads to the site to help identify the victims, but the\ndiscovery of body parts that do not belong to any registered passenger\nleads the investigation into a dangerousconfrontation.\"\r\n2866,2971,4345498,Ilona Andrews,Magic Strikes,https://images.gr-assets.com/books/1221738233l/4345498.jpg,4.44,51165,\"fantasy, paranormal\",\"When her werewolf friend Derek is attacked and left for dead, mercenary\nKate Daniels investigates and stumbles upon a dark plot that could forever\nalter the face of Atlanta's shapeshifting community.\"\r\n2867,2972,15748898,Chelsea M. Cameron,My Favorite Mistake,https://images.gr-assets.com/books/1361713404l/15748898.jpg,4.01,30177,\"romance, contemporary\",\"Afraid of getting her heart broken, Taylor Caldwell is intent on getting\nrid of new roommate Hunter Zaccadelli before she falls in love with him,\nbut her determination gives way to desire as they begin to share secrets\nand romance.\"\r\n2868,2973,124918,Arthur Hailey,Airport,https://images.gr-assets.com/books/1309288724l/124918.jpg,3.92,30040,\"fiction, thriller\",AirportArthur Hailey\r\n2869,2974,7201913,James Patterson,Angel,https://images.gr-assets.com/books/1272836170l/7201913.jpg,4.02,39938,\"fantasy, romance\",\"Max Ride and her best friends have always had one another's backs. No.\nMatter. What. Living on the edge as fugitives, they never had a choice. But\nnow they're up against a deadly force that's racing across the globe, and\njust when they need him the most--Fang is gone. He's creating his own gang\nthat will replace everyone--including Max. Max is heartbroken over losing\nFang, her soul mate. Her closest friend. But with Dylan ready and willing\nto fight by her side, and she can no longer deny that his incredible\nintensity draws her in. Max, Dylan, and the rest of their friends must soon\njoin forces with Fang and his new gang for an explosive showdown in Paris\nthat's unlike anything you've ever imagined . . . or read.\"\r\n2870,2975,4983,\"Harold Bloom, Terry Southern, David H. Goldsmith, James Lundquist, Lawrence R. Broer, Peter J. Reed, Loree Rackstraw, William S. Doxey, Jerome Klinkowitz, Richard Giannone, John L. Simons, Leonard Mustazza, Zoltan Ab di-Nagy, Peter Freese, Wendy B. Faris\",Kurt Vonnegut's Cat Cradle,https://images.gr-assets.com/books/1297118346l/4983.jpg,4.35,27519,\"fiction, classics\",\"Vonnegut's satirical commentary on modern man and his madness. An\napocalyptic tale of this planet's ultimate fate. Features a midget as the\nprotagonist; a complete, original theology created by a calypso signer; and\na vision of the future that is at once blackly fatalistic and funny.\"\r\n2871,2976,91248,\"Beverly Cleary, Alan Tiegreen\",Ramona the Brave ,https://images.gr-assets.com/books/1408925322l/91248.jpg,4.09,42479,\"fiction, classics\",\"Ramona the Brave Beverly Cleary, Alan Tiegreen\"\r\n2872,2977,216422,Timothy Zahn,Star Wars: The Last Command,https://images.gr-assets.com/books/1451092026l/216422.jpg,4.2,33145,\"fiction, fantasy\",\"In possession of a secret that could topple an empire, Marianna Sanders\nflees from her arrogant guardian Jordan Draken, who is determined to wrest\nthat secret from her. Original.\"\r\n2873,2978,13578175,Brandon Sanderson,The Emperor's Soul,https://images.gr-assets.com/books/1343059311l/13578175.jpg,4.33,33634,\"fantasy, fiction\",\"2013 Hugo Winner From the best-selling author of the Mistborn Trilogy and\nthe co-author of the final three books of Robert Jordan’s Wheel of Time\nseries comes the tale of a heretic thief who is the only hope for the\nsurvival of an empire. Shai is a Forger, a foreigner who can flawlessly\ncopy and re-create any item by rewriting its history with skillful magic.\nAlthough condemned to death after trying to steal the emperor’s scepter,\nshe is given one opportunity to save herself. Despite the fact that her\nskill as a Forger is considered an abomination by her captors, Shai will\nattempt to create a new soul for the emperor, who is almost dead from the\nattack of assassins. Delving deeply into his life, she discovers Emperor\nAshravan’s truest nature—and the opportunity to exploit it. Her only\npossible ally is one who is truly loyal to the emperor, but councilor\nGaotona must overcome his prejudices to understand that her forgery is as\nmuch artistry as it is deception. Skillfully deducing the machinations of\nher captors, Shai needs a perfect plan to escape. The fate of the kingdom\nlies in one impossible task. Is it possible to create a forgery of a soul\nso convincing that it is better than the soul itself?\"\r\n2874,2979,2906039,Stephen King,Just After Sunset,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348108664l/2906039.jpg,3.85,34722,\"horror, fiction\",Just After SunsetStephen King\r\n2875,2980,201114,Patricia McCormick,Sold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442850952l/201114._SY475_.jpg,4.19,36389,\"fiction, poetry\",SoldPatricia McCormick\r\n2876,2981,552887,James Patterson,Double Cross,https://images.gr-assets.com/books/1256839349l/552887.jpg,3.99,34189,\"crime, suspense\",Double CrossJames Patterson\r\n2877,2982,27822,\"Alexander Pushkin, James E. Falen\",Евгений Онегин: Роман в стихах ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388373138l/27822.jpg,4.08,33240,\"romance, poetry\",\"A novel in verse follows the lives of three women and three men in 1820s\nRussia.\"\r\n2878,2983,13138635,\"Amie Kaufman, Meagan Spooner\",These Broken Stars,https://images.gr-assets.com/books/1383578978l/13138635.jpg,3.93,44488,\"romance, fantasy\",\"It's a night like any other on board the Icarus. Then, catastrophe strikes:\nthe massive luxury spaceliner is yanked out of hyperspace and plummets into\nthe nearest planet. Lilac LaRoux and Tarver Merendsen survive. And they\nseem to be alone. Lilac is the daughter of the richest man in the universe.\nTarver comes from nothing, a young war hero who learned long ago that girls\nlike Lilac are more trouble than they're worth. But with only each other to\nrely on, Lilac and Tarver must work together, making a tortuous journey\nacross the eerie, deserted terrain to seek help. Then, against all odds,\nLilac and Tarver find a strange blessing in the tragedy that has thrown\nthem into each other's arms. Without the hope of a future together in their\nown world, they begin to wonder-would they be better off staying here\nforever? Everything changes when they uncover the truth behind the chilling\nwhispers that haunt their every step. Lilac and Tarver may find a way off\nthis planet. But they won't be the same people who landed on it. The first\nin a sweeping science fiction trilogy, These Broken Stars is a timeless\nlove story about hope and survival in the face of unthinkable odds.\"\r\n2879,2984,2986865,Alison Goodman,The Two Pearls of Wisdom,https://images.gr-assets.com/books/1299076175l/2986865.jpg,3.98,42802,\"fantasy, fiction\",\"Twelve-year-old Eon, aspiring apprentice to the zodiacal Rat Dragon, is\nplaying a dangerous game: he is actually Eona, 16 years old and a girl.\"\r\n2880,2985,4538,E.L. Konigsburg,The View from Saturday,https://images.gr-assets.com/books/1476944774l/4538.jpg,3.74,36803,\"fiction, contemporary\",\"Four students, with their own individual stories, develop a special bond\nand attract the attention of their teacher, a paraplegic, who chooses them\nto represent their sixth-grade class in the Academic Bowl competition.\"\r\n2881,2986,7933615,\"P.C. Cast, Kristin Cast\",Hidden,https://images.gr-assets.com/books/1340127630l/7933615.jpg,3.98,38594,\"fantasy, paranormal\",\"In Hidden by P.C. Cast and Kristin Cast, Zoey at last has what she wanted:\nthe truth is out. Neferet's evil has been exposed, and the High Council is\nno longer on her side—so why is she far from done wreaking havoc in the\nvampyre world? First a mysterious fire ravages the stables, then, Neferet\nmakes a devastating move that will test them all. With the seeds of\ndistrust sown, everyone must band together—but that's proving to be more\ndifficult than ever before. The twins are barely speaking and the House of\nNight's former enemy, Kalona, has now become their warrior, pushing their\ntrust to the limit. To top it off, Zoey is pretty darn sure she might be\nlosing her mind—she saw something when she looked at Aurox through the Seer\nStone that she can hardly explain to herself, let alone her friends. Is it\npossible that Heath has come back in a different form? Is that why Zoey's\nso intrigued by Aurox, when it's so obvious he's dangerous? And who would\nbelieve her if she told them? Zoey knows that following her instinct about\nAurox might be just what they need to defeat evil . . . but if she's wrong,\nit could cause the destruction of those closest to her. With the tension at\na breaking point and friendships on the line, can the nerd herd come\ntogether to stop Neferet before it's too late?\"\r\n2882,2987,11454587,Rachel Hawkins,Spell Bound,https://images.gr-assets.com/books/1313010167l/11454587.jpg,4.09,48116,\"fantasy, paranormal\",\"Hailed as “impossible to put down,” the Hex Hall series has both critics\nand teens cheering. With a winning combination of romance, action, magic\nand humor, this third volume will leave readers enchanted. Just as Sophie\nMercer has come to accept her extraordinary magical powers as a demon, the\nProdigium Council strips them away. Now Sophie is defenseless, alone, and\nat the mercy of her sworn enemies—the Brannicks, a family of warrior women\nwho hunt down the Prodigium. Or at least that’s what Sophie thinks, until\nshe makes a surprising discovery. The Brannicks know an epic war is coming,\nand they believe Sophie is the only one powerful enough to stop the world\nfrom ending. But without her magic, Sophie isn’t as confident. Sophie’s\nbound for one hell of a ride—can she get her powers back before it’s too\nlate?\"\r\n2883,2988,32979,\"Carolyn Keene, Russell H. Tandy, Sara Paretsky\",\"The Secret of the Old Clock (Nancy Drew Mystery Stories, #1)\",https://images.gr-assets.com/books/1351534678l/32979.jpg,3.98,44256,\"mystery, fiction\",Nancy Drew's keen mind is tested when she searches for a missing will.\r\n2884,2989,33810,Nelson DeMille,Plum Island,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460212l/33810.jpg,4.03,30595,\"fiction, suspense\",Plum IslandNelson DeMille\r\n2885,2990,325421,\"Hugh Lofting, Michael Hague\",The Story of Doctor Dolittle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173762816l/325421._SX318_.jpg,3.98,36867,\"classics, fantasy\",\"When his colleague Long Arrow disappears, Dr. Dolittle sets off with his\nassistant, Tommy Stubbins, his dog, Jip, and Polynesia the parrot on an\nadventurous voyage over tropical seas to floating Spidermonkey Island.\"\r\n2886,2991,10911,Jodi Picoult,Second Glance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442728010l/10911._SY475_.jpg,3.79,33486,\"fiction, mystery\",Second GlanceJodi Picoult\r\n2887,2992,94803,Arnold Lobel,Frog and Toad Together,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388457665l/94803.jpg,4.21,34172,\"fiction, classics\",\"Best Friends Frog and Toad are always together. Here are five wonderful\nstories about flowers, cookies, bravery, dreams, and, most of all,\nfriendship.\"\r\n2888,2993,6219656,Shirley Jackson,The Lottery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348757577l/6219656.jpg,4.09,38448,\"classics, horror\",\"Presents an unabridged selection from the story about a seemingly ordinary\nvillage that participates in a yearly lottery to determine a sacrificial\nvictim.\"\r\n2889,2994,58822,Adriana Trigiani,Big Stone Gap,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390406115l/58822.jpg,3.86,34200,\"fiction, romance\",\"Town pharmacist and local spinster Ave Maria has been keeping the secrets\nof Stone Gap for a long time, but now a skeleton is about to tumble from\nher own family closet. A first novel. 150,000 first printing.\"\r\n2890,2995,74824,Steve Berry,The Alexandria Link,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387711944l/74824.jpg,3.92,31070,\"fiction, thriller\",\"When his son is kidnapped, Cotton Malone discovers a link to a conspiracy\ninvolving the lost contents of the Library of Alexandria, a priceless\ntreasury of thousands of ancient manuscripts that vanished more than 1,500\nyears ago.\"\r\n2891,2996,7896345,Kelley Armstrong,The Gathering,https://images.gr-assets.com/books/1277820938l/7896345.jpg,4.03,48722,\"paranormal, fantasy\",\"An ordinary town . . . full of deadly secrets Strange things have been\nhappening in sixteen-year-old Maya's small Vancouver Island community—from\nthe mountain lions that have been constantly approaching her to her best\nfriend's hidden talent for \"\"feeling\"\" out people and situations. There's\nalso a sexy new bad boy who makes Maya feel . . . different. Combine that\nwith a few unexplained deaths and a mystery involving Maya's biological\nparents and it's easy to suspect that this town might have more than its\nshare of skeletons in its closet.\"\r\n2892,2997,9833184,Richelle Mead,The Fiery Heart,https://images.gr-assets.com/books/1383243238l/9833184.jpg,4.39,49513,\"fantasy, paranormal\",\"The fourth installment of Mead's \"\"New York Times\"\"-bestselling series. After\nmaking a life-changing decision, Sydney Sage, an Alchemist who serves to\nbridge the worlds of humans and vampires, must tread a careful path as she\nharnesses her profound magical ability to undermine the way of life she was\nraised to defend.\"\r\n2893,2998,6479550,Ilona Andrews,Magic Bleeds,https://images.gr-assets.com/books/1407110429l/6479550.jpg,4.46,50637,\"fantasy, paranormal\",Magic BleedsIlona Andrews\r\n2894,2999,25152052,\"Isabel Allende, Nick Caistor, Amanda Hopkinson\",El amante japonés,https://images.gr-assets.com/books/1501991754l/25152052.jpg,3.8,23737,\"fiction, romance\",\"El amante japonésIsabel Allende, Nick Caistor, Amanda Hopkinson\"\r\n2895,3000,47990,Terry Pratchett,Jingo,https://images.gr-assets.com/books/1327921813l/47990.jpg,4.11,35961,\"fantasy, fiction\",\"It isn't much of an island that rises up one moonless night from the depths\nof the Circle Sea -- just a few square miles of silt and some old ruins.\nUnfortunately, the historically disputed lump of land called Leshp is once\nagain floating directly between Ankh-Morpork and the city of Al-Khali on\nthe coast of Klatch -- which is spark enough to ignite that glorious\ninternational pastime called \"\"war.\"\" Pressed into patriotic service,\nCommander Sam Vimes thinks he should be leading his loyal watchmen, female\nwatchdwarf, and lady werewolf into battle against local malefactors rather\nthan against uncomfortably well-armed strangers in the Klatchian desert.\nBut war is, after all, simply the greatest of all crimes -- and it's Sir\nSamuel's sworn duty to seek out criminal masterminds wherever they may be\nhiding ... and lock them away before they can do any real damage. Even the\nones on his own side.\"\r\n2896,3001,704043,Lara Adrian,Kiss of Midnight,https://images.gr-assets.com/books/1327884885l/704043.jpg,3.93,48695,\"paranormal, romance\",\"After falling for vampire warrior Lucan Thorne, Gabrielle Maxwell is drawn\ninto the dark and dangerous world of hunter vampires, one in which a blood\nwar is on the edge of ignition.\"\r\n2897,3002,32071,\"D.H. Lawrence, Geoff Dyer\",Sons and Lovers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924291l/32071.jpg,3.61,33792,\"classics, fiction\",\"Sons and LoversD.H. Lawrence, Geoff Dyer\"\r\n2898,3003,8155,Barbara Taylor Bradford,A Woman of Substance ,https://images.gr-assets.com/books/1330029941l/8155.jpg,4.16,31309,\"fiction, romance\",\"In celebration of its thirtieth anniversary, here is the novel that started\nit all: New York Times bestselling author Barbara Taylor Bradford's\ndazzling saga of a woman who dared to dream--and to triumph against all\nodds. . . . On the brooding moors above a humble Yorkshire village stood\nFairley Hall. There, Emma Harte, its oppressed but resourceful servant\ngirl, acquired a shrewd determination. There, she honed her skills,\ndiscovered the meaning of treachery, learned to survive, to become a woman,\nand vowed to make her mark on the world. In the wake of tragedy she rose\nfrom poverty to magnificent wealth as the iron-willed force behind a\nthriving international enterprise. As one of the richest women in the world\nEmma Harte has almost everything she fought so hard to achieve--save for\nthe dream of love, and for the passion of the one man she could never have.\nThrough two marriages, two devastating wars, and generations of secrets,\nEmma's unparalleled success has come with a price. As greed, envy, and\nrevenge consume those closest to her, the brilliant matriarch now finds\nherself poised to outwit her enemies, and to face the betrayals of the past\nwith the same ingenious resolve that forged her empire.\"\r\n2899,3004,15757434,Nicole  Williams,Crash,https://images.gr-assets.com/books/1342588706l/15757434.jpg,4.02,49133,\"romance, contemporary\",CrashNicole  Williams\r\n2900,3005,15791154,David Baldacci,The Hit,https://images.gr-assets.com/books/1361749502l/15791154.jpg,4.05,25123,\"thriller, fiction\",\"From David Baldacci--#1 bestselling author and one of the world's most\npopular, widely read storytellers--comes the most thrilling novel of the\nyear. THE HIT Will Robie is a master of killing. A highly skilled assassin,\nRobie is the man the U.S. government calls on to eliminate the worst of the\nworst-enemies of the state, monsters committed to harming untold numbers of\ninnocent victims. No one else can match Robie's talents as a hitman...no\none, except Jessica Reel. A fellow assassin, equally professional and\ndangerous, Reel is every bit as lethal as Robie. And now, she's gone rogue,\nturning her gun sights on other members of their agency. To stop one of\ntheir own, the government looks again to Will Robie. His mission: bring in\nReel, dead or alive. Only a killer can catch another killer, they tell him.\nBut as Robie pursues Reel, he quickly finds that there is more to her\nbetrayal than meets the eye. Her attacks on the agency conceal a larger\nthreat, a threat that could send shockwaves through the U.S. government and\naround the world.\"\r\n2901,3006,22200,William Gibson,Count Zero,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390358225l/22200.jpg,4,32238,\"fiction, science\",\"In the future world of the Sprawl, an urban complex that extends from\nBoston to Houston, a sentient computer data base known as the Cyberspace\nmatrix dominates humanity's fate\"\r\n2902,3007,24472,Lisa See,Peony in Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438435175l/24472._SX318_.jpg,3.59,34044,\"fiction, romance\",\"In seventeenth-century China, three women become emotionally involved with\nThe Peony Pavilion, a famed opera rumored to cause lovesickness and even\ndeath, including Peony, the cloistered daughter of a wealthy scholar, who\nsuccumbs to its spell only to return after her death as a \"\"hungry ghost\"\" to\nhaunt her former fiancé, who has married another. Reader's Guide included.\nReprint. 250,000 first printing.\"\r\n2903,3008,5231173,Sarah Ockler,Twenty Boy Summer,https://images.gr-assets.com/books/1342447832l/5231173.jpg,3.89,35435,\"romance, contemporary\",\"\"\"Don't worry, Anna. I'll tell her, okay? Just let me think about the best\nway to do it.\"\" \"\"Okay.\"\" \"\"Promise me? Promise you won't say anything?\"\" \"\"Don't\nworry.\"\" I laughed. \"\"It's our secret, right?\"\" According to her best friend\nFrankie, twenty days in Zanzibar Bay is the perfect opportunity to have a\nsummer fling, and if they meet one boy every day, there's a pretty good\nchance Anna will find her first summer romance. Anna lightheartedly agrees\nto the game, but there's something she hasn't told Frankie---she's already\nhad that kind of romance, and it was with Frankie's older brother, Matt,\njust before his tragic death one year ago. Beautifully written and\nemotionally honest, this is a debut novel that explores what it truly means\nto love someone and what it means to grieve, and ultimately, how to make\nthe most of every single moment this world has to offer.\"\r\n2904,3009,81922,\"Robert T. Kiyosaki, Sharon L. Lechter\",Cashflow Quadrant: Rich Dad's Guide to Financial Freedom,https://images.gr-assets.com/books/1483023081l/81922.jpg,4.05,24907,\"business, nonfiction\",\"Cashflow Quadrant: Rich Dad's Guide to Financial FreedomRobert T. Kiyosaki, Sharon L. Lechter\"\r\n2905,3010,7058405,\"Camilla Läckberg, Steven T. Murray\",Isprinsessan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347445122l/7058405.jpg,3.69,29913,\"crime, fiction\",\"The first novel in Camilla LÄckberg's bestselling Swedish mystery series\nset in a small fishing village.\"\r\n2906,3011,22649,Jane Green,Bookends,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258584l/22649.jpg,3.7,32755,\"fiction, romance\",\"The world of four lifelong friends--best friends Catherine and Simon, both\nunlucky in love, and Josh and Lucy, happily married to each other--is\nthrown into turmoil by the arrival of Portia, a beautiful college friend\nwith a reputation for breaking hearts.\"\r\n2907,3013,88071,John Scalzi,The Last Colony,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437660786l/88071._SY475_.jpg,4.03,29154,\"fiction, fantasy\",\"Serving his human colony on distant Huckleberry as a village ombudsman,\nretired fighter John Perry looks forward to settling into farm life with\nhis wife and adopted daughter before he is reluctantly drawn back into the\ndangerous interstellar politics of his past, in the sequel to Old Man's War\nand The Ghost Brigades. Reprint.\"\r\n2908,3014,826582,\"Laura Joffe Numeroff, Felicia Bond\", ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347941764l/826582.jpg,4.26,32340,\"fiction, fantasy\",\"\"\"If you give a mouse a cookie, he's going to ask for a glass of milk. When\nyou give him the milk, he'll probably ask you for a straw. . . \"\". So begins\nthis delightful story about an energetic mouse and an accommodating little\nboy. Full-color illustrations.\"\r\n2909,3015,18593175,Colleen Hoover,Finding Cinderella,https://images.gr-assets.com/books/1380847885l/18593175.jpg,4.3,42821,\"romance, contemporary\",\"Daniel does not believe in love at first sight until he lays eyes on Six, a\ngirl with a quirky personality, but a secret from the past could jeopardize\ntheir chance at happily ever after.\"\r\n2910,3016,9298,Marian Keyes,Last Chance Saloon,https://images.gr-assets.com/books/1407708818l/9298.jpg,3.78,32255,\"fiction, romance\",Last Chance SaloonMarian Keyes\r\n2911,3017,17156015,Georgia Cates,Beauty from Pain,https://images.gr-assets.com/books/1360699932l/17156015.jpg,4.25,46668,\"romance, contemporary\",\"A New York Times and USA Today Bestseller.... They agreed on three\nmonths...but their love knew no boundaries. Jack McLachlan is a winemaking\nmagnate and easily one of Australia's most eligible bachelors. His success\nand wealth makes him no stranger to the complications of romantic\nrelationships and that's why he goes to extreme measures to avoid the\nhassle. He prefers simplicity in the form of a beautiful female companion\nwith no strings attached. He arranges relationships like business deals and\nthey're always the same. No long term relationships. No real names. It's\nhis game and his rules. He's content to play as usual, but when Laurelyn\nPrescott enters his life, his strategy must change because this player is\nlike none he's ever encountered. His world is turned on its head after he\nbegins a three month affair with the beautiful American musician. Nothing\ngoes according to plan and as he breaks more and more of his own rules for\nher, she's exceptionally close to becoming something he never thought\npossible. His ultimate game changer. Beauty From Pain is an adult\ncontemporary novel and is not intended for younger readers due to mature\ncontent.\"\r\n2912,3018,43339,Mary Higgins Clark,Where Are the Children?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257386l/43339.jpg,4,34816,\"mystery, fiction\",\"Nancy Harmon long ago fled the heartbreak of her first marriage, the\nmacabre deaths of her two little children, and the shocking charges against\nher. She changed her name, dyed her hair, and left California for the\nwindswept peace of Cape Cod. Now remarried, she has two more beloved\nchildren, and the terrible pain has begun to heal -- until the morning when\nshe looks in the backyard for her little boy and girl and finds only one\nred mitten. She knows that the nightmare is beginning again....\"\r\n2913,3020,7723,\"Franz Kafka, Jason Baker, Donna Freed\",Die Verwandlung und andere Erzählungen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925094l/7723.jpg,4.01,29817,\"classics, fiction\",\"Die Verwandlung und andere ErzählungenFranz Kafka, Jason Baker, Donna Freed\"\r\n2914,3021,218357,Thrity Umrigar,The Space Between Us,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925898l/218357.jpg,3.98,30326,\"fiction, contemporary\",\"Captures the delicate balance of class and gender in contemporary India as\nwitnessed through the lives of two women--Sera Dubash, an upper middle-\nclass housewife, and Bhima, an illiterate domestic hardened by a life of\nloss and despair.\"\r\n2915,3022,3049,\"Unknown, Burton Raffel, Neil D. Isaacs\",Gawayn and þe Grene Knyȝt,https://images.gr-assets.com/books/1309282183l/3049.jpg,3.68,36477,\"classics, poetry\",\"The Green Knight, a mysteriously powerful creature, tests the honor and\ncourage of King Arthur's youngest knight.\"\r\n2916,3023,4921,Jerome K. Jerome,Three Men in a Boat (To Say Nothing of the Dog),https://images.gr-assets.com/books/1392791656l/4921.jpg,3.9,30250,\"travel, fiction\",Three Men in a Boat (To Say Nothing of the Dog)Jerome K. Jerome\r\n2917,3024,214614,Edward Abbey,Desert Solitaire,https://images.gr-assets.com/books/1399583343l/214614.jpg,4.22,27723,\"nonfiction, memoir\",\"An account of the author's existence, observations and reflections, as a\nseasonal park ranger in southeast Utah\"\r\n2918,3025,6419,Janet Evanovich,Plum Lovin',https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442873718l/6419._SY475_.jpg,3.7,43643,\"mystery, fiction\",\"Receiving simultaneous caches of love letters and hate mail, Connie Rosolli\nenlists the aid of Lula, Grandma Mazur, and the enigmatic Diesel when she\nbecomes suspicious that her secret admirer and stalker are the same person.\nReprint.\"\r\n2919,3026,56454,Tom Rath,Strengths Finder 2.0,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440946880l/56454._SX318_.jpg,3.92,30199,\"business, nonfiction\",\"An updated version of the StrengthsFinder program developed by Gallup\nexperts to help readers discover their distinct talents and strengths and\nhow they can be translated into personal and career successes.\"\r\n2920,3027,9570,Tom Robbins,Another Roadside Attraction,https://images.gr-assets.com/books/1327866271l/9570.jpg,3.97,25777,\"fiction, contemporary\",\"A clairvoyant girl enthralled by the mysterious beauty of butterflies\nmarries the son of Congo missionaries, and the newlyweds set up a roadside\nzoo\"\r\n2921,3028,92163,Edward Rutherfurd,Sarum: The Novel of England,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470349l/92163.jpg,4.07,28292,\"fiction, history\",An epic novel that traces the entire turbulent course of English history.\r\n2922,3029,43328,Sidney Sheldon,Rage of Angels,https://images.gr-assets.com/books/1356445383l/43328.jpg,3.91,27196,\"fiction, thriller\",Rage of AngelsSidney Sheldon\r\n2923,3031,9395215,Alyson Noel,Everlasting,https://images.gr-assets.com/books/1362336387l/9395215.jpg,3.92,38185,\"fantasy, paranormal\",\"Their epic love story has captured the hearts of millions and enchanted\nreaders across the world. Everlasting is the beautiful finale to Alyson\nNoël's bestselling Immortals series, in which their journey draws to a\nspectacular conclusion—where all will be revealed. Their darkest enemies\nnow defeated, Damen and Ever are free to embark upon their final quest—to\nfree Damen from the poison lingering in his body. If they can just find the\nantidote, they'll finally be able to feel each other's touch—and experience\nthe passionate night they've been longing for. But their fight to be\ntogether will lead them into the most formidable terrain yet...into the\ndark heart of Summerland. Here in a land of scorched earth and endless\nrain, Ever and Damen will discover their relationship's hidden origins,\nexpose a secret history they never imagined...and come face to face with\nthe true reason fate keeps tearing them apart. Only then, when the final\nmystery is unraveled and the last secret revealed, Ever and Damen's future\nwill hinge on one ultimate decision that will put everything at\nstake....even eternity.\"\r\n2924,3033,586472,Tom Wolfe,The Right Stuff,https://images.gr-assets.com/books/1393654700l/586472.jpg,4.23,30701,\"history, nonfiction\",The Right StuffTom Wolfe\r\n2925,3034,129645,Madeleine Wickham,Cocktails for Three,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442849180l/129645._SY475_.jpg,3.38,30415,\"fiction, contemporary\",Cocktails for ThreeMadeleine Wickham\r\n2926,3035,32255,Tess Gerritsen,Vanish,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198630l/32255.jpg,4.13,37045,\"mystery, thriller\",\"FBI agent Gabriel Dean rushes into action to protect his pregnant wife,\nhomicide detective Jane Rizzoli, when she is taken hostage along with\nothers at the hospital by Nicholas Tennant, a black-ops agent in possession\nof high-level government secrets, after he is sent to the hospital when\nBoston M.E. Maura Isles discovers that Tennant is still alive as she\nprepares for his autopsy. Reprint.\"\r\n2927,3036,33441,Christopher Moore,\"Fluke: Or, I Know Why the Winged Whale Sings\",https://images.gr-assets.com/books/1168444068l/33441.jpg,3.73,32675,\"fiction, fantasy\",\"Just why do humpback whales sing? That's the question that has marine\nbehavioral biologist Nate Quinn and his crew poking, charting, recording,\nand photographing very big, wet, gray marine mammals. Until the\nextraordinary day when a whale lifts its tail into the air to display a\ncryptic message spelled out in foot-high letters: Bite me. Trouble is,\nNate's beginning to wonder if he hasn't spent just a little too much time\nin the sun. 'Cause no one else on his team saw a thing -- not his longtime\npartner, Clay Demodocus; not their saucy young research assistant; not even\nthe spliff-puffing white-boy Rastaman Kona (né Preston Applebaum). But\nlater, when a roll of film returns from the lab missing the crucial tail\nshot -- and his research facility is trashed -- Nate realizes something\nvery fishy indeed is going on. By turns witty, irreverent, fascinating,\npuzzling, and surprising, Fluke is Christopher Moore at his outrageous\nbest.\"\r\n2928,3038,7362158,Jean Kwok,Girl in Translation,https://images.gr-assets.com/books/1347022887l/7362158.jpg,3.96,34823,\"fiction, contemporary\",\"Emigrating with her mother from Hong Kong to Brooklyn, Kimberly begins a\ndouble life as a schoolgirl by day and sweatshop worker at night, an\nexistence also marked by her first crush and the pressure to save her\nfamily from poverty.\"\r\n2929,3039,17565845,Lauren Oliver,Panic,https://images.gr-assets.com/books/1374066076l/17565845.jpg,3.56,39875,\"contemporary, mystery\",\"From New York Times bestselling author Lauren Oliver comes a captivating,\nthrilling novel of fear, friendship, courage, and hope that will leave\nreaders gasping for air. Panic began as so many things do in Carp, a poor\ntown of twelve thousand people in the middle of nowhere: because it was\nsummer, and there was nothing else to do. Heather never thought she would\ncompete. She'd never thought of herself as fearless, the kind of person who\nwould fight to stand out. But when she finds something, and someone, to\nfight for, she will discover that she is braver than she ever thought.\nDodge has never been afraid of panic. His secret will fuel him, and get him\nall the way through the game; he's sure of it. But what he doesn't know is\nthat he's not the only one with a secret. Everyone has something to play\nfor. For Heather and Dodge, the game will bring new alliances, unexpected\nrevelations, and the possibility of first love for each of them—and the\nknowledge that sometimes the very things we fear are those we need the\nmost.\"\r\n2930,3040,13146214,Abbi Glines,Because of Low,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1322924946l/13146214.jpg,4.14,48344,\"romance, contemporary\",\"When Marcus has no choice but to move into his friend's apartment, he falls\nfor the girl his roommate hopes to marry one day.\"\r\n2931,3042,217432,Kristin Hannah,Between Sisters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240280l/217432.jpg,4,28020,\"fiction, romance\",Between SistersKristin Hannah\r\n2932,3043,17920175,Blake Crouch,Wayward,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388363926l/17920175.jpg,4.12,19208,\"thriller, horror\",\"Ethan Burke, one of the few who knows what lies beyond the borders of\nWayward Pines, settles uncomfortably into his role as sheriff.\"\r\n2933,3044,1375896,\"Angie Sage, Mark Zug\",Queste,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440956685l/1375896._SX318_.jpg,4.04,40562,\"fantasy, fiction\",\"QuesteAngie Sage, Mark Zug\"\r\n2934,3045,23305614,Sophie Kinsella,Finding Audrey,https://images.gr-assets.com/books/1466835008l/23305614.jpg,3.82,38226,\"contemporary, romance\",\"From the #1 New York Times bestselling author of the Shopaholic series\ncomes a terrific blend of comedy, romance, and psychological recovery in a\ncontemporary YA novel sure to inspire and entertain. Audrey wears dark\nglasses all the time, even in the house. She almost never goes out, doesn't\ntalk to new people, and finds making eye contact to be nearly impossible.\nBut then one day she meets Linus. Linus is her brother's friend and a\nsensitive spirit with whom she can talk through her fears. He makes her\nlaugh and doesn't leave her feeling like she's being judged. As their\nfriendship deepens, Audrey's recovery gains momentum, and she and Linus\nbegin to develop feelings for each other. But how can they have a future\ntogether when Audrey hasn't dealt with her past? And how could anyone ever\nlove her once they've seen her at her worst? \"\"An outstanding tragicomedy\nthat gently explores mental illness, the lasting effects of bullying, and\nthe power of friends and loving family to help in the healing.\"\"--Kirkus\nReviews, Starred \"\"Kinsella's knack for humor and sensitivity shine.\"\"\nPublishers Weekly\"\r\n2935,3046,603422,Mollie Katzen,\"The Moosewood Cookbook: Recipes from Moosewood Restaurant, Ithaca, New York\",https://images.gr-assets.com/books/1344370160l/603422.jpg,3.95,34502,\"cookbooks, nonfiction\",\"A compilation of recipes from the Moosewood Restaurant with vegetarian and\nethnic emphasis.\"\r\n2936,3047,105551,Dr. Seuss,Fox in Socks,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1603122427l/105551._SX318_.jpg,4.04,40369,\"fiction, classics\",\"A tricky fox in socks plays tongue-twisting games on his increasingly\nexasperated friend, Mr. Knox.\"\r\n2937,3048,2517,\"Orhan Pamuk, Erdağ M. Göknar\",Benim Adım Kırmızı,https://images.gr-assets.com/books/1374015288l/2517.jpg,3.83,27314,\"fiction, mystery\",\"A furor erupts in sixteenth-century Istanbul when the Sultan commissions\nthe European-style illumination of a great book, and the situation worsens\nwhen one of the miniaturists vanishes mysteriously.\"\r\n2938,3049,78250,Carlos Castaneda,The Teachings of Don Juan: A Yaqui Way of Knowledge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266931l/78250.jpg,3.94,27784,\"philosophy, spirituality\",\"An anthropologist records his corversations with the Yaqui Indian sorcerer\nand offers a structural analysis of Don Juan's teachings\"\r\n2939,3050,9509287,David Baldacci,The Sixth Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441837587l/9509287._SY475_.jpg,4.13,29257,\"mystery, thriller\",\"In the #1 New York Times bestselling thriller that inspired the TV series\nKing & Maxwell, two private investigators dig into a killer's past--but\nwhen their search threatens powerful enemies, it could cost them their\nlives. Edgar Roy--an alleged serial killer--is awaiting trial. He faces\nalmost certain conviction. Sean King and Michelle Maxwell are called in by\nRoy's attorney, Sean's old friend and mentor Ted Bergin, to help work the\ncase. But their investigation is derailed when Sean and Michelle find\nBergin murdered. It is now up to them to ask the questions no one seems to\nwant answered: Is Roy a killer? Who murdered Bergin? The more they dig into\nRoy's past, the more they encounter obstacles, half-truths, dead-ends,\nfalse friends, and escalating threats from every direction. Their\npersistence puts them on a collision course with the highest levels of the\ngovernment and the darkest corners of power. In a terrifying confrontation\nthat will push Sean and Michelle to their limits, the duo may be\npermanently parted.\"\r\n2940,3051,193093,Marcia Brown,Stone Soup (Stories to Go!),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389316444l/193093.jpg,4.23,37313,\"fiction, classics\",\"When three hungry soldiers come to a town where all the food has been\nhidden, they set out to make soup of water and stones, and all the town\nenjoys a feast.\"\r\n2941,3052,213647,Cinda Williams Chima,The Warrior Heir,https://images.gr-assets.com/books/1360575642l/213647.jpg,3.95,40346,\"fantasy, fiction\",\"After learning about his magical ancestry and his own warrior powers,\nsixteen-year-old Jack embarks on a training program to fight enemy wizards.\"\r\n2942,3053,19004663,Janet Evanovich,Top Secret Twenty-One,https://images.gr-assets.com/books/1394500766l/19004663.jpg,3.79,31294,\"mystery, fiction\",\"Bounty hunter Stephanie Plum searches in vain for suspected killer Jimmy\nPoletti while unwillingly providing protection for Randy Briggs, Poletti's\nbookkeeper and next potential victim.\"\r\n2943,3054,2223324,John   Williams,Harry Potter and the Chamber of Secrets: Sheet Music for Flute with C.D,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347429015l/2223324.jpg,4.61,29409,\"fantasy, music\",\"All editions are compatible and can be played separately or together. The\nincluded CD contains a demonstration of each song followed by a play-along\ntrack. Titles are: The Chamber of Secrets * Dobby the House Elf * Family\nPortrait * Fawkes the Phoenix * Gilderoy Lockhart * Harry's Wondrous World\n* Hedwig's Theme * Moaning Myrtle * Nimbus 2000.\"\r\n2944,3055,16791,\"Neil Gaiman, Chris Bachalo, Mark Buckingham, Tori Amos\",Death: the High Cost of Living,https://images.gr-assets.com/books/1366407293l/16791.jpg,4.21,34252,\"comics, fantasy\",\"Death: the High Cost of LivingNeil Gaiman, Chris Bachalo, Mark Buckingham, Tori Amos\"\r\n2945,3056,229123,Catherine Marshall,Christy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389406901l/229123.jpg,4.2,37963,\"fiction, classics\",\"In the year 1912, nineteen-year-old Christy Huddleston leaves home to teach\nschool in the Smoky Mountains -- and comes to know and love the resilient\npeople of the region, with their fierce pride, their dark superstitions,\ntheir terrible poverty, and their yearning for beauty and truth. But her\nfaith will be severely challenged by trial and tragedy, by the needs and\nunique strengths of two remarkable young men, and by a heart torn between\ntrue love and unwavering devotion. And don't miss another heart-soaring\nbestseller from Catherine Marshall: Julie\"\r\n2946,3057,13623150,Tahereh Mafi,Destroy Me,https://images.gr-assets.com/books/1340398466l/13623150.jpg,4.27,46793,\"fantasy, romance\",\"Set after Tahereh Mafi's Shatter Me and before Unravel Me, Destroy Me is a\nnovella told from the perspective of Warner, the ruthless leader of Sector\n45. Even though Juliette shot him in order to escape, Warner can't stop\nthinking about her—and he'll do anything to get her back. But when the\nSupreme Commander of The Reestablishment arrives, he has much different\nplans for Juliette. Plans Warner cannot allow. The Shatter Me series is\nperfect for fans who crave action-packed young adult novels with\ntantalizing romance like Divergent and The Hunger Games. This captivating\nstory, which combines the best of dystopian and paranormal, was praised as\n\"\"a thrilling, high-stakes saga of self-discovery and forbidden love\"\" by\nRansom Riggs, bestselling author of Miss Peregrine's Home for Peculiar\nChildren. Don’t miss Defy Me, the shocking fifth book in the Shatter Me\nseries!\"\r\n2947,3059,40745,Carol S. Dweck,Mindset: The New Psychology of Success,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436227012l/40745._SY475_.jpg,4.04,31174,\"psychology, nonfiction\",\"Reveals how established attitudes affect all aspects of one's life,\nexplains the differences between fixed and growth mindsets, and stresses\nthe need to be open to change in order to achieve fulfillment and success.\"\r\n2948,3060,5972040,Jude Watson,\"Beyond the Grave (The 39 Clues, #4)\",https://images.gr-assets.com/books/1385209619l/5972040.jpg,3.92,37475,\"mystery, fiction\",\"A clue takes Amy and Dan Cahill to Egypt, where they investigate the\norigins of the rivalry between the Tomas and Ekaterina branches of their\nfamily and try to figure out if they can trust a message from their dead\ngrandmother Grace.\"\r\n2949,3061,26435,C.S. Lewis,The Problem of Pain,https://images.gr-assets.com/books/1328546308l/26435.jpg,4.12,29179,\"religion, philosophy\",\"Why must humanity suffer? In this elegant and thoughtful work, C. S. Lewis\nquestions the pain and suffering that occur everyday and how this contrasts\nwith the notion of a God that is both omnipotent and good. An answer to\nthis critical theological problem is found within these pages.\"\r\n2950,3062,2527900,\"Richard H. Thaler, Cass R. Sunstein\",\"Nudge: Improving Decisions About Health, Wealth, and Happiness\",https://images.gr-assets.com/books/1328828013l/2527900.jpg,3.8,29552,\"business, psychology\",\"Offering a groundbreaking study of the application of the science of\nchoice, a guide that uses colorful examples from all aspects of life\ndemonstrates how it is possible to design environments that make it more\nlikely for us to act in our own interests. Reprint.\"\r\n2951,3063,210329,Susan Cooper,The Dark Is Rising,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349051230l/210329.jpg,4.07,39881,\"fantasy, classics\",The Dark Is RisingSusan Cooper\r\n2952,3064,23754479,Jonathan Franzen,Purity,https://images.gr-assets.com/books/1438958976l/23754479.jpg,3.59,24811,\"fiction, contemporary\",\"\"\"A huge-canvased novel about identity, the internet, sexual politics, and\nlove from the author of Freedom and The Corrections\"\"--\"\r\n2953,3065,32446,\"Richard Paige, Dean Koontz\",The Door to December,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257941l/32446.jpg,3.94,30599,\"horror, suspense\",\"Six years after the kidnapping of Laura McCaffrey's three-year-old\ndaughter, Melanie, by her estranged husband, Dylan, the child is found\nwandering the streets of Los Angeles, terrorized by a horrifying secret,\nand Dylan's mangled remains are discovered\"\r\n2954,3066,53625,James Patterson,Four Blind Mice,https://images.gr-assets.com/books/1408929456l/53625.jpg,3.98,33668,\"mystery, fiction\",Four Blind MiceJames Patterson\r\n2955,3067,3975186,Kristin Hannah,True Colors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893974l/3975186._SY475_.jpg,3.89,31276,\"fiction, romance\",\"The Grey sisters have always looked after one another. Growing up on a\nsprawling ranch with an emotionally distant father, they had nowhere else\nto turn after their mother died. Winona, the oldest, craves her father's\napproval. Happier reading a book than riding a horse, she knows she isn't\nthe daughter he wanted - but she's determined to prove her worth. Aurora is\nthe peacemaker, trying to keep everyone happy, whilst hiding her own\nfeelings. Vivi Ann, the youngest, is the star of the family. Beautiful and\nspirited, everything comes easily to her - until a stranger comes to town.\nWhen Vivi Ann makes a fateful decision to follow her heart, everything\nchanges. Suddenly the sisters are pitted against each other. Loyalties are\ntested, secrets revealed - and then a terrible crime threatens to tear\ntheir whole community apart. Compelling and provocative, True Colours by\nKristin Hannah is an unforgettable novel about jealousy, betrayal, passion\nand forgiveness - and what it means to be a family.\"\r\n2956,3068,9595,Kurt Vonnegut Jr.,Slapstick,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1514342815l/9595._SY475_.jpg,3.87,27371,\"fiction, classics\",SlapstickKurt Vonnegut Jr.\r\n2957,3069,38315,Nassim Nicholas Taleb,Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180506l/38315.jpg,4.05,28674,\"business, psychology\",\"Contends that randomness and probability have a large impact on life,\nclaims that people regularly fail to recognize that role, and tells how to\ndifferentiate between randomness in general and the financial markets in\nparticular.\"\r\n2958,3070,14975,Kate Mosse,Labyrinth,https://images.gr-assets.com/books/1312498906l/14975.jpg,3.55,36237,\"fiction, fantasy\",\"Alice, a volunteer at an archaeological dig, becomes a target after\ndiscovering a pair of crumbling skeletons in the Pyrenees mountains, while\neight hundred years in the past, Alaèis, the daughter of a crusader, must\nsafeguard the location of the Holy Grail.\"\r\n2959,3071,7493,Joseph J. Ellis,Founding Brothers: The Revolutionary Generation,https://images.gr-assets.com/books/1388791106l/7493.jpg,3.92,31610,\"history, nonfiction\",\"The introduction, discussion questions, suggestions for further reading,\nand author biography that follow are intended to enhance your reading\ngroup's discussion of Joseph Ellis's Founding Brothers: The Revolutionary\nGeneration . We hope they will enrich your experience of this Pulitzer\nPrize-winning study of the intertwined lives of the founders of the\nAmerican republic--John Adams, Aaron Burr, Benjamin Franklin, Alexander\nHamilton, Thomas Jefferson, James Madison, and George Washington.\"\r\n2960,3072,76679,Isaac Asimov,Forward the Foundation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430055209l/76679.jpg,4.13,31686,\"fiction, science\",\"Hari Seldon struggles to perfect his revolutionary theory of psychohistory\nwhile the great Galactic Empire totters on the brink of apocalyptic\ncollapse\"\r\n2961,3073,6919272,Kerstin Gier,Saphirblau,https://images.gr-assets.com/books/1327251290l/6919272.jpg,4.19,25767,\"fantasy, romance\",SaphirblauKerstin Gier\r\n2962,3074,16142053,Lawrence Wright,\"Going Clear: Scientology, Hollywood, and the Prison of Belief\",https://images.gr-assets.com/books/1358119149l/16142053.jpg,4.02,26117,\"nonfiction, religion\",\"Going Clear: Scientology, Hollywood, and the Prison of BeliefLawrence Wright\"\r\n2963,3075,7619292,\"Young Kim, Stephenie Meyer\",Twilight: The Graphic Novel,https://images.gr-assets.com/books/1317294278l/7619292.jpg,3.74,37292,\"fantasy, romance\",\"Twilight: The Graphic NovelYoung Kim, Stephenie Meyer\"\r\n2964,3076,56034,John Fowles,The French Lieutenant's Woman,https://images.gr-assets.com/books/1466630905l/56034.jpg,3.85,34897,\"fiction, classics\",The French Lieutenant's WomanJohn Fowles\r\n2965,3077,732562,\"Samuel Taylor Coleridge, Gustave Doré\",The Rime of the Ancient Mariner,https://images.gr-assets.com/books/1436976206l/732562.jpg,3.93,37299,\"poetry, classics\",\"A sailor dooms his ship's crew by murdering an albatross and is lost at\nsea, alone with the burden of his guilt, until a meeting with divine\nmessengers brings him the opportunity to do penance. Samuel Taylor\nColeridge's (1772-1834) haunting parable of sin and absolution, The Rime of\nthe Ancient Mariner, is widely recognized as one of the greatest narrative\npoems in the English language and was a defining achievement in the\nestablishment of the Romantic Movement. Coleridge's text is presented here\nalongside the classic illustrations of Gustave Doré (1832-1883), the great\nFrench engraver famous for his illustrations of Dante's Inferno, Milton's\nParadise Lost, and the Bible. His imaginative and detailed illustrations\nare a beautiful and evocative visual compliment to this unique masterpiece\nof English literature.\"\r\n2966,3078,240130,\"Robert Munsch, Michael Martchenko\",The Paper Bag Princess,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912856l/240130.jpg,4.32,38040,\"fantasy, fiction\",\"The Paper Bag PrincessRobert Munsch, Michael Martchenko\"\r\n2967,3079,163977,John Steinbeck,Tortilla Flat,https://images.gr-assets.com/books/1400859671l/163977.jpg,3.82,30048,\"fiction, classics\",\"Danny, a mule skinner during the First World War, returns to Tortilla Flat\nto enjoy the carefree and amoral life of the paisano\"\r\n2968,3080,23814,H. Rider Haggard,King Solomon's Mines,https://images.gr-assets.com/books/1418964233l/23814.jpg,3.8,31191,\"classics, fiction\",\"The first great \"\"Lost World\"\" action-adventure, a precursor to Indiana Jones\nH. Rider Haggard's King Solomon's Mines has entertained generations of\nreaders since its first publication in 1885. Following a mysterious map of\ndubious reliability, a small group of men trek into southern Africa in\nsearch of a lost friend-and a lost treasure, the fabled mines of King\nSolomon. Led by the English adventurer and fortune hunter Allan\nQuartermain, they discover a frozen corpse, survive untold dangers in\nremote mountains and deserts, and encounter the merciless King Twala en\nroute to the legendary hoard of diamonds. For more than seventy years,\nPenguin has been the leading publisher of classic literature in the\nEnglish-speaking world. With more than 1,700 titles, Penguin Classics\nrepresents a global bookshelf of the best works throughout history and\nacross genres and disciplines. Readers trust the series to provide\nauthoritative texts enhanced by introductions and notes by distinguished\nscholars and contemporary authors, as well as up-to-date translations by\naward-winning translators.\"\r\n2969,3081,12647642,Tina Reber,Love Unrehearsed,https://images.gr-assets.com/books/1347242126l/12647642.jpg,4.26,42280,\"romance, contemporary\",\"After a whirlwind romance, Taryn Mitchell finds herself married to A-list\nmovie star Ryan Christensen, but must figure out how a small-town girl like\nherself fits into his glittering world filled with paparazzi, on-set\ntemptations and jealous fans. Original.\"\r\n2970,3082,25105,\"Neil Gaiman, Jill Thompson, Vince Locke, Peter Straub\",The Sandman: Brief Lives,https://images.gr-assets.com/books/1339922078l/25105.jpg,4.55,36487,\"comics, fantasy\",\"An attempt to summon and imprison Death, results, instead, in the capture\nof Morpheus, the Sandman, who must regain the tools of his powers.\"\r\n2971,3083,3934321,L.J. Smith,The Return: Nightfall,https://images.gr-assets.com/books/1347414391l/3934321.jpg,3.57,40213,\"fantasy, paranormal\",\"The first book in a new trilogy from L. J. Smith! Elena Gilbert is\nalive—again. When Elena sacrificed herself to save the two vampire brothers\nwho love her—the handsome, brooding Stefan and the sleek and dangerous\nDamon—she was consigned to a fate beyond death. Until a powerful\nsupernatural force pulled her back. Now Elena is not just human. She has\npowers and gifts that were bestowed on her in the afterlife. What's more,\nher blood pulses with an overwhelming and unique force that makes her\nirresistible to any vampire. Stefan wants to find a way to keep Elena safe\nso that they can make a life together. Damon, however, is driven by an\ninsatiable desire for power, and wants Elena to rule as his princess. When\nStefan is lured away from Fell's Church, Damon seizes his chance to\nconvince her that he is the brother she is meant to be with. . . . But a\ndarkness is infiltrating the town, and Damon, always the hunter, is now the\nhunted; he becomes the prey of a malevolent creature that can possess him\nat will, and who desires not just Elena's blood but her death.\"\r\n2972,3084,3467,Jeanne DuPrau,The People of Sparks,https://images.gr-assets.com/books/1397931991l/3467.jpg,3.65,40859,\"fantasy, fiction\",\"Having escaped to the Unknown Regions, Lina and the others seek help from\nthe village people of Sparks.\"\r\n2973,3085,5954,\"Hermann Hesse, Ursule Molinaro\",Narziß und Goldmund,https://images.gr-assets.com/books/1374680750l/5954.jpg,4.19,25544,\"fiction, classics\",\"Leaving the medieval monastary of Mariabronn, Goldmund embarks on a\nfantastic journey to recapture his past and discover his future\"\r\n2974,3086,25106,\"Neil Gaiman, Bryan Talbot, Stan Woch, P. Craig Russell, Shawn McManus, John Watkiss, Jill Thompson, Duncan Eagleson, Kent Williams, Todd Klein\",The Sandman: Fables and Reflections,https://images.gr-assets.com/books/1311961999l/25106.jpg,4.45,35930,\"comics, fiction\",\"The Sandman: Fables and ReflectionsNeil Gaiman, Bryan Talbot, Stan Woch, P. Craig Russell, Shawn McManus, John Watkiss, Jill Thompson, Duncan Eagleson, Kent Williams, Todd Klein\"\r\n2975,3087,17199504,Samantha Shannon,The Bone Season,https://images.gr-assets.com/books/1421412990l/17199504.jpg,3.75,27652,\"fantasy, fiction\",The Bone SeasonSamantha Shannon\r\n2976,3088,31250,\"Charles Dickens, Helen Small, Stephen Wall\",Little Dorrit,https://images.gr-assets.com/books/1496619146l/31250.jpg,3.97,33997,\"classics, fiction\",\"Little DorritCharles Dickens, Helen Small, Stephen Wall\"\r\n2977,3089,175004,Anthony Horowitz,Eagle Strike,https://images.gr-assets.com/books/1373920729l/175004.jpg,4.11,37051,\"fiction, mystery\",\"After a chance encounter with assassin Yassen Gregorovich, teenage spy Alex\nRider investigates pop star Damian Cray, whose new video game venture hides\nsinister motives involving Air Force One, nuclear missiles, and the drug\ntrade.\"\r\n2978,3090,50833,Jacqueline Susann,Valley of the Dolls,https://images.gr-assets.com/books/1328281855l/50833.jpg,3.7,25210,\"fiction, classics\",\"Three beautiful women compete in the New York entertainment world, where\nsex is a weapon and nearly everyone depends on \"\"dolls\"\" (pills).\"\r\n2979,3091,12657,James A. Michener,The Source,https://images.gr-assets.com/books/1412531751l/12657.jpg,4.3,31499,\"fiction, history\",The SourceJames A. Michener\r\n2980,3092,4954,Dave Eggers,You Shall Know Our Velocity!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925932l/4954.jpg,3.62,23985,\"fiction, contemporary\",\"After acquiring $32,000, Will and Hand, devastated over the death of their\nclosest friend, travel around the world giving away the money, in a rowdy\ndebut novel from the author of A Heartbreaking Work of Staggering Genius.\nReprint. 125,000 first printing.\"\r\n2981,3093,3438000,\"Radwa Ashour, رضوى عاشور\",ثلاثية غرناطة,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503755688l/3438000.jpg,4.29,27568,\"fiction, history\",\"ثلاثية غرناطة هي ثلاثية روائية تتكون من ثلاث روايات للكاتبة المصرية رضوى\nعاشور و هم على التوالي : غرناطة - مريمة - الرحيل. و تدور الأحداث في مملكة\nغرناطة بعد سقوط جميع الممالك الإسلامية في الأندلس، و تبدأ أحداث الثلاثية في\nعام 1491 و هو العام الذي سقطت فيه غرناطة بإعلان المعاهدة التي تنازل\nبمقتضاها أبو عبد الله محمد الصغير آخر ملوك غرناطة عن ملكه لملكي قشتالة و\nأراجون .. و تحكي الرواية قصة عائلة عاصرت احداث السقوط على مدى عدة اجيال و\nما واكبها من احداث و مشاعر متنوعة في ملحمة تاريخية فريدة. ...\"\r\n2982,3094,201126,\"Michael Rosen, Helen Oxenbury\",We're Going on a Bear Hunt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274854l/201126.jpg,4.27,32869,\"fiction, poetry\",\"Come along on a bear hunt in this award-winning classic from Michael Rosen\nand Helen Oxenbury. We’re going on a bear hunt. We’re going to catch a big\none. Will you come too? For more than twenty-five years readers have been\nswishy swashing and splash sploshing through this award-winning favorite.\nJoin in the fun!\"\r\n2983,3095,6339989,Richelle Mead,Vampire Academy Collection,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424313761l/6339989.jpg,4.61,30166,\"paranormal, fantasy\",MEAD/VAMPIRE ACADEMY\r\n2984,3096,673657,David Eddings,Guardians of the West,https://images.gr-assets.com/books/1342528416l/673657.jpg,4.09,37943,\"fantasy, fiction\",\"Garion, the King of Riva, finds himself caught between the Dark Prophecy\nand the Prophecy of Light when he searches a previously obscure part of the\nMrin Codex to identify someone or something called Zandramas\"\r\n2985,3097,7076706,Nora Roberts,The Search,https://images.gr-assets.com/books/1302725483l/7076706.jpg,4.11,34973,\"romance, mystery\",\"Fiona, a dog trainer who performs canine search-and-rescue missions, is\ndevastated after her fiancâe is murdered, but her emotions are rekindled\nwhen Simon, a newcomer to town, brings his puppy Jaws to her for obedience\ntraining.\"\r\n2986,3098,13147,\"James Patterson, Howard Roughan\",Honeymoon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199852l/13147.jpg,3.81,30756,\"mystery, fiction\",\"HoneymoonJames Patterson, Howard Roughan\"\r\n2987,3099,45252,Peter F. Hamilton,Pandora's Star,https://images.gr-assets.com/books/1440699949l/45252.jpg,4.24,28386,\"fiction, fantasy\",\"When the twenty-fourth-century arrival of human colonists in a faraway\nsystem unleashes a race of aliens formerly imprisoned within a giant force\nfield, the aliens, having fought for centuries over scarce resources, turn\nto human space to fulfill their wants. By the author of The Reality\nDysfunction and Fallen Dragon. Reprint.\"\r\n2988,3100,322351,Thomas Rockwell,How to Eat Fried Worms,https://images.gr-assets.com/books/1320519921l/322351.jpg,3.75,37888,\"fiction, classics\",\"A small boy is challenged by a friend to eat fifteen worms in fifteen days\nfor fifty dollars.\"\r\n2989,3101,269322,\"Edgar Allan Poe, Philip Pullman\",The Raven and Other Poems,https://images.gr-assets.com/books/1297913274l/269322.jpg,4.3,34428,\"poetry, classics\",\"Samples of Poe's best poetry include \"\"The Raven,\"\" \"\"Annabel Lee,\"\" and \"\"The\nBells.\"\"\"\r\n2990,3102,6335026,Heather Gudenkauf,The Weight of Silence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348679436l/6335026.jpg,3.93,33235,\"fiction, mystery\",The Weight of SilenceHeather Gudenkauf\r\n2991,3103,22522808,Neil Gaiman,Trigger Warning: Short Fictions and Disturbances,https://images.gr-assets.com/books/1415036119l/22522808.jpg,3.92,29215,\"fantasy, fiction\",\"Multiple award winning, #1 New York Times bestselling author Neil Gaiman\nreturns to dazzle, captivate, haunt, and entertain with this third\ncollection of short fiction following Smoke and Mirrors and Fragile\nThings—which includes a never-before published American Gods story, “Black\nDog,” written exclusively for this volume. In this new anthology, Neil\nGaiman pierces the veil of reality to reveal the enigmatic, shadowy world\nthat lies beneath. Trigger Warning includes previously published pieces of\nshort fiction—stories, verse, and a very special Doctor Who story that was\nwritten for the fiftieth anniversary of the beloved series in 2013—as well\n“Black Dog,” a new tale that revisits the world of American Gods, exclusive\nto this collection. Trigger Warning explores the masks we all wear and the\npeople we are beneath them to reveal our vulnerabilities and our truest\nselves. Here is a rich cornucopia of horror and ghosts stories, science\nfiction and fairy tales, fabulism and poetry that explore the realm of\nexperience and emotion. In Adventure Story—a thematic companion to The\nOcean at the End of the Lane—Gaiman ponders death and the way people take\ntheir stories with them when they die. His social media experience A\nCalendar of Tales are short takes inspired by replies to fan tweets about\nthe months of the year—stories of pirates and the March winds, an igloo\nmade of books, and a Mother’s Day card that portends disturbances in the\nuniverse. Gaiman offers his own ingenious spin on Sherlock Holmes in his\naward-nominated mystery tale The Case of Death and Honey. And Click-Clack\nthe Rattlebag explains the creaks and clatter we hear when we’re all alone\nin the darkness. A sophisticated writer whose creative genius is\nunparalleled, Gaiman entrances with his literary alchemy, transporting us\ndeep into the realm of imagination, where the fantastical becomes real and\nthe everyday incandescent. Full of wonder and terror, surprises and\namusements, Trigger Warning is a treasury of delights that engage the mind,\nstir the heart, and shake the soul from one of the most unique and popular\nliterary artists of our day.\"\r\n2992,3104,106590,David Herbert Donald,Lincoln,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1543429790l/106590._SY475_.jpg,4.17,25995,\"biography, history\",\"Draws extensively on Lincoln's personal papers and legal writings to\npresent a biography of the president\"\r\n2993,3105,1811543,Ilona Andrews,Magic Burns,https://images.gr-assets.com/books/1311280284l/1811543.jpg,4.33,50899,\"fantasy, paranormal\",\"When mercenary Kate Daniels is hired to retrieve a set of stolen maps for\nthe Pack, Atlanta's paramilitary clan of shapeshifters, she is plunged into\nthe middle of an epic battle between two gods hoping for rebirth.\"\r\n2994,3106,3698,\"Graham Greene, Robert  Stone\",The Quiet American,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.96,30395,\"fiction, classics\",\"The Quiet AmericanGraham Greene, Robert  Stone\"\r\n2995,3107,16062211,Katie Ashley,The Proposition,https://images.gr-assets.com/books/1355433171l/16062211.jpg,4.05,43605,\"romance, contemporary\",\"With her thirtieth birthday looming, Emma Harrison finds her biological\nclock clanging and the elusive knight in shining armor yet to appear. She's\nrunning out of options, especially after her gay best friend backs out from\nbeing her sperm donor. Of course, there's always a sperm bank, but Emma\nfears a donor mix-up might impregnate her with the spawn of Satan.Resident\ncompany womanizer, Aidan Fitzgerald, is used to always getting what he\nwants, especially in the bedroom. When Emma spurns his advances at the\ncompany Christmas party, he¹s determined to have her no matter what it\ntakes. After Aidan learns of Emma's predicament, he is quick to offer a\nproposition that will benefit them both. He will father Emma¹s child, but\nshe must conceive it with him naturally. Not one for hook-ups or casual\nsex, Emma is reluctant to take him up on his offer, but his charm, coupled\nwith her intense desire for motherhood, wins out. Soon their baby-making\nsessions become more than just physical. Aidan can¹t seem to walk away from\nher while Emma begins to wonder if Aidan could be the one. But can Aidan\nleave his past behind to become the man Emma needs him to be?\"\r\n2996,3108,6541,Patricia Cornwell,Cause of Death,https://images.gr-assets.com/books/1327632787l/6541.jpg,3.93,35742,\"mystery, crime\",\"The mysterious death of diver Ted Eddings, an investigative reporter, and\nthe murder of a morgue assistant driving her car lead medical examiner Kay\nScarpetta, her niece, and police captain Pete Marino on the trail of a\ndeadly supremacist group.\"\r\n2997,3109,77430,Patrick O'Brian,Master and Commander,https://images.gr-assets.com/books/1467992540l/77430.jpg,4.1,31215,\"fiction, history\",\"The beginning of the sweeping Aubrey-Maturin series. \"\"The best sea story I\nhave ever read.\"\"—Sir Francis Chichester This, the first in the splendid\nseries of Jack Aubrey novels, establishes the friendship between Captain\nAubrey, R.N., and Stephen Maturin, ship's surgeon and intelligence agent,\nagainst a thrilling backdrop of the Napoleonic wars. Details of a life\naboard a man-of-war in Nelson's navy are faultlessly rendered: the\nconversational idiom of the officers in the ward room and the men on the\nlower deck, the food, the floggings, the mysteries of the wind and the\nrigging, and the roar of broadsides as the great ships close in battle.\"\r\n2998,3110,969275,Akira Toriyama,孫悟空と仲間たち,https://images.gr-assets.com/books/1442541694l/969275.jpg,4.42,27382,\"manga, comics\",孫悟空と仲間たちAkira Toriyama\r\n2999,3111,89187,Alastair Reynolds,Revelation Space,https://images.gr-assets.com/books/1405532042l/89187.jpg,3.97,30332,\"fiction, science\",\"As human colonists settle on the planet of Amarantin, a world whose native\ninhabitants mysteriously vanished nearly a million years before, one man\nbecomes convinced that their disappearance could hold the key to human\nsurvival on the planet.\"\r\n3000,3112,7134202,\"James Patterson, Maxine Paetro\",Private,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247223l/7134202.jpg,3.88,31061,\"mystery, fiction\",\"PrivateJames Patterson, Maxine Paetro\"\r\n3001,3113,8205669,Janet Evanovich,Wicked Appetite,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442876280l/8205669._SY475_.jpg,3.77,38918,\"mystery, fiction\",Wicked AppetiteJanet Evanovich\r\n3002,3114,6054449,Rachel Renée Russell,Tales from a Not-So-Fabulous Life,https://images.gr-assets.com/books/1370064528l/6054449.jpg,4.16,31712,\"fiction, contemporary\",Tales from a Not-So-Fabulous LifeRachel Renée Russell\r\n3003,3115,14384,Kresley Cole,A Hunger Like No Other,https://images.gr-assets.com/books/1357616154l/14384.jpg,4.21,49298,\"paranormal, romance\",\"In New York Times and USA TODAY bestselling author Kresley Cole’s sizzling\nseries, a fierce werewolf and a bewitching vampire become unlikely soul\nmates whose passion will test the boundaries of life and death. After\nenduring years of torture from the vampire horde, Lachlain MacRieve, leader\nof the Lykae Clan, is enraged to find the predestined mate he’s waited\nmillennia for is a vampire. Or partly one. Emmaline Troy is a small,\nethereal half Valkyrie/half vampire, who somehow begins to soothe the fury\nburning within him. Sheltered Emmaline finally sets out to uncover the\ntruth about her deceased parents—until a powerful Lykae claims her as his\nmate and forces her back to his ancestral Scottish castle. There, her fear\nof the Lykae—and their notorious dark desires—ebbs as he begins a slow,\nwicked seduction to sate her own dark cravings. Yet when an ancient evil\nfrom her past resurfaces, will their desire deepen into a love that can\nbring a proud warrior to his knees and turn a gentle beauty into the\nfighter she was born to be?\"\r\n3004,3116,10345927,Beth Revis,A Million Suns ,https://images.gr-assets.com/books/1330214586l/10345927.jpg,4.04,42620,\"romance, fantasy\",\"Three months after Amy is disconnected from her family, she learns\nharrowing news about the spaceship Godspeed and accompanies Elder on a race\nto unlock a puzzle that was set in motion centuries earlier, a situation\nthat is complicated by their growing feelings for each other.\"\r\n3005,3117,28251,Trudi Canavan,The High Lord,https://images.gr-assets.com/books/1327357942l/28251.jpg,4.15,33784,\"fantasy, fiction\",\"\"\"You want to know the truth.\"\" Sonea has learned much since she was but a\npenniless urchin possessing an awesome untapped ability. She has earned the\ngrudging respect of her fellow novices and a place in the Magicians' Guild.\nBut there is much she wishes she had never learned—what she witnessed, for\nexample, in the underground chamber of the mysterious High Lord Akkarin . .\n. and the knowledge that the Guild is being observed closely by an ancient\nfearsome enemy. Still, she dares not ignore the terrifying truths the High\nLord would share with her, even though she fears it may be base trickery, a\nscheme to use her astonishing powers to accomplish his dark aims. For Sonea\nknows her future is in his hands—and that only in the shadows will she\nachieve true greatness . . . if she survives.\"\r\n3006,3118,17383934,Amy Tan,The Valley of Amazement,https://images.gr-assets.com/books/1362956150l/17383934.jpg,3.6,27628,\"fiction, romance\",\"New York Times bestselling author of The Joy Luck Club Amy Tan brings us\nher latest novel: a sweeping, evocative epic of two women's intertwined\nfates and their search for identity—from the lavish parlors of Shanghai\ncourtesans to the fog- shrouded mountains of a remote Chinese village\nShanghai, 1912. Violet Minturn is the privileged daughter of the American\nmadam of the city's most exclusive courtesan house. But when the Ching\ndynasty is overturned, Violet is separated from her mother in a cruel act\nof chicanery and forced to become a \"\"virgin courtesan.\"\" Half-Chinese and\nhalf-American, Violet grapples with her place in the worlds of East and\nWest—until she is able to merge her two halves, empowering her to become a\nshrewd courtesan who excels in the business of seduction and illusion,\nthough she still struggles to understand who she is. Back in 1897 San\nFrancisco, Violet's mother, Lucia, chooses a disastrous course as a\nsixteen-year-old, when her infatuation with a Chinese painter compels her\nto leave her home for Shanghai. Shocked by her lover's adherence to Chinese\ntraditions, she is unable to change him, despite her unending American\ningenuity. Fueled by betrayals, both women refuse to submit to fate and\nsocietal expectations, persisting in their quests to recover what was taken\nfrom them: respect; a secure future; and, most poignantly, love from their\nparents, lovers, and children. To reclaim their lives, they take separate\njourneys—to a backwater hamlet in China, the wealthy environs of the Hudson\nRiver Valley, and, ultimately, the unknown areas of their hearts, where\nthey discover what remains after their many failings to love and be loved.\nSpanning more than forty years and two continents, The Valley of Amazement\ntransports readers from the collapse of China's last imperial dynasty to\nthe beginning of the Republic and recaptures the lost world of old Shanghai\nthrough the inner workings of courtesan houses and the lives of the\nforeigners living in the International Settlement, both erased by World War\nII. A deeply evocative narrative of the profound connections between\nmothers and daughters, imbued with Tan's characteristic insight and humor,\nThe Valley of Amazement conjures a story of inherited trauma, desire and\ndeception, and the power and obstinacy of love.\"\r\n3007,3119,3465,\"Nicholas Sparks, Micah Sparks\",Three Weeks with My Brother,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440179668l/3465._SY475_.jpg,4.01,32208,\"memoir, nonfiction\",\"As moving as his bestselling works of fiction, Nicholas Sparks's unique\nmemoir, written with his brother, chronicles the life-affirming journey of\ntwo brothers bound by memories, both humorous and tragicIn January 2003,\nNicholas Sparks and his brother, Micah, set off on a three-week trip around\nthe globe. It was to mark a milestone in their lives, for at thirty-seven\nand thirty-eight respectively, they were now the only surviving members of\ntheir family. Against the backdrop of the wonders of the world and often\novertaken by their feelings, daredevil Micah and the more serious,\nintrospective Nicholas recalled their rambunctious childhood adventures and\nthe tragedies that tested their faith. And in the process, they discovered\nstartling truths about loss, love, and hope.Narrated with irrepressible\nhumor and rare candor, and including personal photos, THREE WEEKS WITH MY\nBROTHER reminds us to embrace life with all its uncertainties...and most of\nall, to cherish the joyful times, both small and momentous, and the\nwonderful people who make them possible.\"\r\n3008,3120,24781,Lloyd Alexander,The High King ,https://images.gr-assets.com/books/1407209964l/24781.jpg,4.26,41448,\"fantasy, fiction\",\"In this final part of the chronicle of Prydain, the forces of good and evil\nmeet in an ultimate confrontation, which determines the fate of Taran, the\nAssistant Pig-Keeper who wanted to be a hero.\"\r\n3009,3121,9462812,Amy Plum,Die for Me,https://images.gr-assets.com/books/1358427893l/9462812.jpg,4,45756,\"paranormal, fantasy\",\"After their parents are killed in a car accident, Kate Mercier and her\nolder sister Georgia move to Paris to live with their grandparents and Kate\nfinds herself drawn to Vincent who seems to harbor a mysterious and\ndangerous secret.\"\r\n3010,3122,77295,Anne Morrow Lindbergh,Gift from the Sea,https://images.gr-assets.com/books/1328312670l/77295.jpg,4.18,30741,\"nonfiction, memoir\",\"A woman's reflections on life, its stages, and its states, comparing them\nwith the natural treasures of life in the sea\"\r\n3011,3123,2159,John Perkins,Confessions of an Economic Hit Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565872483l/2159._SX318_.jpg,3.83,19726,\"history, nonfiction\",PERKINS/CONFESSIONS ECONOMIC HITMAN\r\n3012,3124,426504,\"Jorge Luis Borges, Anthony Kerrigan, Anthony Bonner\",Ficciones,https://images.gr-assets.com/books/1388197956l/426504.jpg,4.47,28657,\"fiction, classics\",\"FiccionesJorge Luis Borges, Anthony Kerrigan, Anthony Bonner\"\r\n3013,3125,37304,John Sandford,Winter Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204668l/37304.jpg,4.24,31336,\"mystery, fiction\",\"Called in to assist the sheriff from a remote, rural area of Wisconsin in\nhis investigation into a brutal triple homicide, Lucas Davenport begins to\nuncover a shocking series of vicious crimes that stun even Davenport with\ntheir evil intent.\"\r\n3014,3126,4625,Ernest Hemingway,The Complete Short Stories of Ernest Hemingway,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523546158l/4625._SY475_.jpg,4.28,28129,\"fiction, classics\",\"THE ONLY COMPLETE COLLECTION BY THE NOBEL PRIZE-WINNING AUTHOR In this\ndefinitive collection of Ernest Hemingway's short stories, readers will\ndelight in the author's most beloved classics such as \"\"The Snows of\nKilimanjaro,\"\" \"\"Hills Like White Elephants,\"\" and \"\"A Clean, Well-Lighted\nPlace,\"\" and will discover seven new tales published for the first time in\nthis collection. For Hemingway fans The Complete Short Stories is an\ninvaluable treasury.\"\r\n3015,3127,50033,Ray Bradbury,Dandelion Wine,https://images.gr-assets.com/books/1374049845l/50033.jpg,4.08,32867,\"fiction, classics\",\"In the unusual world of Green Town, Illinois, a twelve-year-old boy\ndiscovers the wonders of reality and the power of imagination during the\nsummer of 1928.\"\r\n3016,3128,43782,Anne Rice,The Mummy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347523787l/43782.jpg,3.81,34795,\"horror, fantasy\",\"Doomed forever to wander the earth, desperate to quell his insatiable\nhungers, Ramses the Damned turns up in Edwardian London as Dr. Ramsey and\nbegins a romance with heiress Julie Stratford, but his cursed past again\npropels him toward disaster\"\r\n3017,3129,6570502,\"Chip Heath, Dan Heath\",Switch: How to Change Things When Change Is Hard,https://images.gr-assets.com/books/1422839688l/6570502.jpg,4.02,26820,\"psychology, nonfiction\",\"The best-selling authors of Made to Stick offer insight into the difficult\nnature of lasting change, presenting metaphorical illustrations of the\nconflict between the instinctual and the intellectual areas of the brain\nwhile sharing case studies of successful individuals and organizations.\"\r\n3018,3130,24228353,Sejal Badani,Trail of Broken Wings,https://images.gr-assets.com/books/1427135077l/24228353.jpg,3.94,25413,\"fiction, contemporary\",Trail of Broken WingsSejal Badani\r\n3019,3131,243705,John Fowles,The Collector,https://images.gr-assets.com/books/1394828024l/243705.jpg,3.99,32129,\"fiction, classics\",\"\"\"A superb novel...Evil has seldom been so sinister.\"\" --Time Hailed as the\nfirst modern psychological thriller, The Collector is the internationally\nbestselling novel that catapulted John Fowles into the front rank of\ncontemporary novelists. This tale of obsessive love--the story of a lonely\nclerk who collects butterflies and of the beautiful young art student who\nis his ultimate quarry--remains unparalleled in its power to startle and\nmesmerize. \"\"A bravura first novel...As a horror story, this book is a\nremarkable tour de force.\"\" --New Yorker\"\r\n3020,3133,9594,Kurt Vonnegut Jr.,Timequake,https://images.gr-assets.com/books/1405784951l/9594.jpg,3.71,23562,\"classics, fantasy\",\"The author's first full-length novel in seven years, a hilarious moral\nsatire features a science fiction writer, Kilgore Trout, who manages to\nturn time back a decade, insisting that everyone repeat it exactly the same\nway. Reprint.\"\r\n3021,3134,13540215,Amanda Coplin,The Orchardist,https://images.gr-assets.com/books/1335562453l/13540215.jpg,3.75,30121,\"fiction, history\",The OrchardistAmanda Coplin\r\n3022,3135,17262366,Bill Bryson,One Summer: America 1927,https://images.gr-assets.com/books/1380292864l/17262366.jpg,4.06,27237,\"history, nonfiction\",One Summer: America 1927Bill Bryson\r\n3023,3136,41967,Maeve Binchy,Evening Class,https://images.gr-assets.com/books/1368673760l/41967.jpg,3.98,32639,\"fiction, romance\",\"The Italian evening class at Mountainview School is like hundreds of others\nstarting up all over the city. But this class has its own special quality -\nas the focus for the varied hopes and dreams of teacher and pupils alike.\nAidan Dunne needs his new evening class project to succeed almost as much\nas his pupils do. They too are looking for something more: Bill to find a\nway to keep spendthrift Lizzie at his side, and Fran to make sure that\nyoung Kathy finds her way out from behind the kitchen sink. The key to\ntheir success lies with the Signora. Her passion has drawn her from Ireland\nto Italy and back home again with a burning desire to share her love of all\nthings Italian - and a secret hidden in her heart...\"\r\n3024,3137,34919,Terry Brooks,The Talismans of Shannara,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168573644l/34919.jpg,4.01,32139,\"fantasy, fiction\",\"The descendants of the house of Shannara have all completed their perilous\nquests, but the arrival of Rimmer Dall poses the greatest challenge yet to\nthe three heroes\"\r\n3025,3138,65840,L.M. Montgomery,Anne of Windy Poplars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348613064l/65840.jpg,4.04,47657,\"fiction, romance\",\"Anne Shirley has left Redmond College behind to begin a new job and a new\nchapter of her life away from Green Gables. Now she faces a new challenge:\nthe Pringles. They\"\r\n3026,3139,226378,\"Mikhail Lermontov, Paul Foote\",Герой нашего времени,https://images.gr-assets.com/books/1344023178l/226378.jpg,4.11,29747,\"classics, fiction\",\"Five linked adventures portray Pechorin, a man with very little social\ndecency who acts only in accord with his own convictions and whose main\ndrive is staving off boredom by any means possible.\"\r\n3027,3140,9943,Francine Rivers,The Atonement Child,https://images.gr-assets.com/books/1406513472l/9943.jpg,4.26,29250,\"christian, fiction\",\"Dynah Carey finds her life and her faith put to the test after she is raped\nand faced with an unwanted pregnancy.\"\r\n3028,3141,6862,Ian McEwan,Amsterdam,https://images.gr-assets.com/books/1403191209l/6862.jpg,3.41,30469,\"fiction, contemporary\",\"Two old friends, Clive Linley and Vernon Halliday, both former lovers of\nthe late Molly Lane, meet to pay their last respects and make a pact that\nwill have unforeseen consequences\"\r\n3029,3142,40923,Edmund Morris,Theodore Rex,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177930l/40923.jpg,4.16,29474,\"biography, history\",\"Describes Theodore Roosevelt's presidency as he faced the challenges of a\nnew century in which the United States would become a world power, and\ndiscusses his accomplishments and failures, the enemies he made, and his\nfamily life. Reprint. 250,000 first printing.\"\r\n3030,3143,10222,M.M. Kaye,The Far Pavilions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403391799l/10222.jpg,4.2,33348,\"fiction, romance\",\"A monumental, internationally best-selling novel set in nineteenth-century\nIndia weaves a vast tapestry of love, war, and adventure in the foothills\nof the towering Himalayas. Reprint.\"\r\n3031,3144,2211221,Lee Child,Nothing to Lose,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441312964l/2211221._SY475_.jpg,3.9,31780,\"thriller, fiction\",\"When he arrives in the small town of Despair, Colorado, Jack Reacher finds\nhimself taking on an entire town as he searches for the truths behind its\nsinister connection to a brutal war that is killing Americans many miles\naway.\"\r\n3032,3145,17448960,Jasinda Wilder,Falling Into You,https://images.gr-assets.com/books/1363055080l/17448960.jpg,4.04,43246,\"romance, ebooks\",\"\"\"Nell Hawthorne is in love with her life-long best friend, Kyle Calloway.\nTheir young love is invincible and life is full of promise; then one night\nKyle dies suddenly in a tragic accident and Nell is forever changed. She\nmeets Kyle's older brother Colton for the first time at the funeral. They\nboth struggle to move on with life as best they can. Years later, they meet\nagain in New York City, and Colton realizes that Nell has never really\ngotten over Kyle's death. She seems to be harboring a deeply rooted pain, a\nheavy weight of guilt and regret. He knows he shouldn't get involved, but\nhe can't help himself. Trust doesn't come easily for either of them, and\nthey both have demons. Together, they learn the purpose of pain and the\nmeaning of healing, and the importance of forgiveness\"\"--Page 2 of cover.\"\r\n3033,3146,20819682,Paulo Coelho,Adultério,https://images.gr-assets.com/books/1406247571l/20819682.jpg,3.01,24797,\"fiction, romance\",AdultérioPaulo Coelho\r\n3034,3147,22443261,Brandon Sanderson,The Rithmatist ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402239963l/22443261.jpg,4.25,15977,\"fantasy, fiction\",\"The Rithmatist, Brandon Sanderson's New York Times bestselling epic teen\nadventure is now available in paperback. More than anything, Joel wants to\nbe a Rithmatist. Rithmatists have the power to infuse life into two-\ndimensional figures known as Chalklings. Rithmatists are humanity's only\ndefense against the Wild Chalklings. Having nearly overrun the territory of\nNebrask, the Wild Chalklings now threaten all of the American Isles. As the\nson of a lowly chalkmaker at Armedius Academy, Joel can only watch as\nRithmatist students learn the magical art that he would do anything to\npractice. Then students start disappearing--kidnapped from their rooms at\nnight, leaving trails of blood. Assigned to help the professor who is\ninvestigating the crimes, Joel and his friend Melody find themselves on the\ntrail of an unexpected discovery--one that will change Rithmatics--and\ntheir world--forever. A New York Times Book Review Notable Children's Book\nof 2013\"\r\n3035,3148,42172,Donna VanLiere,The Christmas Shoes,https://images.gr-assets.com/books/1434144615l/42172.jpg,4.22,29216,\"fiction, christian\",\"While shopping for gifts on Christmas Eve, Robert, a successful lawyer\nwhose family life is falling apart, meets Nathan, an eight-year-old boy\nwhose mother is dying.\"\r\n3036,3149,196613,\"Rory Freedman, Kim Barnouin\",\"Skinny Bitch: A No-Nonsense, Tough-Love Guide for Savvy Girls Who Want to Stop Eating Crap and Start Looking Fabulous!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442470447l/196613._SX318_.jpg,3.34,26665,\"cookbooks, nonfiction\",\"Presents advice on following a vegan diet which eliminates meat, dairy\nproducts and eggs, and concentrates on vegetables, fruits and soy products,\nto promote a healthier body free of toxins and the harmful ingredients\npresent in overly processed foods. Original.\"\r\n3037,3150,12299419,Kristen Ashley,\"Mystery Man (Dream Man, #1)\",https://images.gr-assets.com/books/1483487036l/12299419.jpg,4.25,53263,\"romance, contemporary\",\"Mystery Man (Dream Man, #1)Kristen Ashley\"\r\n3038,3151,899962,\"Margret Rey, H.A. Rey\",Curious George Goes to the Hospital,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347580591l/899962.jpg,4.22,32218,\"fiction, classics\",\"A curious monkey has some new experiences when he must go to the hospital\nafter swallowing a piece of a jigsaw puzzle.\"\r\n3039,3152,2054761,Alice Schroeder,The Snowball: Warren Buffett and the Business of Life,https://images.gr-assets.com/books/1320458276l/2054761.jpg,4.05,27007,\"biography, business\",\"A portrait of the life and career of investment guru Warren Buffett sheds\nnew light on the man, as well as on the work, ideas, business principles,\nstrategies, and no-nonsense insights that have guided his phenomenally\nsuccessful business endeavors.\"\r\n3040,3153,107779,Julie Garwood,The Bride,https://images.gr-assets.com/books/1334369134l/107779.jpg,4.26,39925,\"romance, fiction\",\"Scottish laird Alec Kincaid--in his quest for an English bride--weds Jamie\nJamison, and thus begins their long and heated battle of wills and the\npassion to which they eventually succumb\"\r\n3041,3154,2836109,John Flanagan,Erak's Ransom,https://images.gr-assets.com/books/1327918666l/2836109.jpg,4.31,34286,\"fantasy, fiction\",\"On a mission to pay the ransom of a new ally, apprentice Will and his\nfriends find themselves in a desert wasteland awash with enemies.\"\r\n3042,3155,18114060,Harlan Coben,Missing Υou,https://images.gr-assets.com/books/1373737793l/18114060.jpg,3.95,24925,\"fiction, mystery\",Missing ΥouHarlan Coben\r\n3043,3156,11691,\"Orhan Pamuk, Maureen Freely\",Kar,https://images.gr-assets.com/books/1357684424l/11691.jpg,3.55,27132,\"fiction, contemporary\",\"Searching for his missing wife, whom he suspects is hiding out with her\nfamous journalist half-brother, Istanbul lawyer Galip assumes the half-\nbrother's identity by wearing his clothes, answering his phone, and even\nwriting his columns, in a new translation of the acclaimed novel. Reader's\nGuide available. Reprint. 20,000 first printing.\"\r\n3044,3157,6348045,John Flanagan,Halt's Peril,https://images.gr-assets.com/books/1327902875l/6348045.jpg,4.38,33782,\"fiction, fantasy\",\"Tennyson, the false prophet of the Outsider cult, has escaped and Halt is\ndetermined to stop him before he crosses the border into Araluen, but\nGenovesan assassins put Will and Halt's extraordinary archery skills to the\ntest.\"\r\n3045,3158,715834,Tess Gerritsen,The Apprentice,https://images.gr-assets.com/books/1467859772l/715834.jpg,4.14,32519,\"mystery, crime\",\"\"\"It is a boiling hot Boston summer. Adding to the city's woes is a series\nof shocking crimes, in which wealthy men are made to watch while their\nwives are brutalized. A sadistic demand that ends in abduction and death.\nThe pattern suggests one man: serial killer Warren Hoyt, recently removed\nfrom the city's streets. Police can only assume an acolyte is at large, a\nmaniac basing his attacks on the twisted medical techniques of the madman\nhe so admires. At least that's what Detective Jane Rizzoli thinks. Forced\nagain to confront the killer who scarred her--literally and figuratively--\nshe is determined to finally end Hoyt's awful influence\"\"--Page 4 of cover.\"\r\n3046,3159,1127996,Betty Crocker,Betty Crocker's Cookbook,https://images.gr-assets.com/books/1431198491l/1127996.jpg,4.25,27892,\"cookbooks, nonfiction\",\"A kitchen full of recipes for main dishes, salads, desserts, and other\ndishes includes discussions of ingredients, cooking methods, and menu\nplanning\"\r\n3047,3160,359410,Gabrielle Zevin,Elsewhere,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442686280l/359410._SY475_.jpg,3.91,40906,\"fantasy, fiction\",ElsewhereGabrielle Zevin\r\n3048,3161,11737271,Harlan Coben,Stay Close,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347702195l/11737271.jpg,3.87,29812,\"mystery, thriller\",Stay CloseHarlan Coben\r\n3049,3162,13133,\"James Patterson, Michael Ledwidge\",The Quickie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442870790l/13133._SY475_.jpg,3.82,30608,\"mystery, fiction\",\"A one-night stand spirals into a web of dark secrets in James Patterson's\nsteamy thriller of love, lust, and murder. Lauren Stillwell is not your\naverage damsel in distress. When the NYPD cop discovers her husband leaving\na hotel with another woman, she decides to beat him at his own game. But\nher revenge goes dangerously awry, and she finds her world spiraling into a\nhell that becomes more terrifying by the hour. In a further twist of fate,\nLauren must take on a job that threatens everything she stands for. Now,\nshe's paralyzed by a deadly secret that could tear her life apart. With her\njob and marriage on the line, Lauren's desire for retribution becomes a\nlethal inferno as she fights to save her livelihood-and her life. Patterson\ntakes us on a twisting roller-coaster ride of thrills in his most gripping\nnovel yet. This story of love, lust and dangerous secrets will have\nreaders' hearts pounding to the very last page.\"\r\n3050,3163,45169,\"James Patterson, Michael Ledwidge\",Step on a Crack,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442786367l/45169._SY475_.jpg,4,31435,\"fiction, thriller\",\"Step on a CrackJames Patterson, Michael Ledwidge\"\r\n3051,3164,15937108,Holly Goldberg Sloan,Counting by 7s,https://images.gr-assets.com/books/1396225872l/15937108.jpg,4.16,33097,\"fiction, contemporary\",\"Twelve-year-old genius and outsider Willow Chance must figure out how to\nconnect with other people and find a surrogate family for herself after her\nparents are killed in a car accident.\"\r\n3052,3166,139417,Laurell K. Hamilton,\"A Kiss of Shadows (Merry Gentry, #1)\",https://images.gr-assets.com/books/1486707201l/139417.jpg,4.01,42358,\"fantasy, paranormal\",\"A Kiss of Shadows (Merry Gentry, #1)Laurell K. Hamilton\"\r\n3053,3167,777211,Vince Flynn,Executive Power,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442431876l/777211._SY475_.jpg,4.33,28205,\"fiction, thriller\",\"CIA operative Mitch Rapp investigates an attack on a team of Navy SEALs in\nthe Philippines, searches for a possible State Department traitor, and\nfights to stop a Middle Eastern assassin out to ignite World War III.\"\r\n3054,3168,6781956,\"Nora Roberts, Angela Dawe\",Savor the Moment,https://images.gr-assets.com/books/1415065163l/6781956.jpg,4.13,37877,\"romance, contemporary\",\"Savor the MomentNora Roberts, Angela Dawe\"\r\n3055,3169,157076,Richard Connell,The Most Dangerous Game,https://images.gr-assets.com/books/1386885674l/157076.jpg,3.91,31944,\"classics, fiction\",The Most Dangerous GameRichard Connell\r\n3056,3170,954674,Cory Doctorow,Little Brother,https://images.gr-assets.com/books/1349673129l/954674.jpg,3.94,36779,\"fiction, thriller\",Little BrotherCory Doctorow\r\n3057,3171,136081,Jeff Lindsay,Dearly Devoted Dexter,https://images.gr-assets.com/books/1327896144l/136081.jpg,3.84,31937,\"fiction, mystery\",\"A secret assassin working as a blood spatter analyst for the Miami Police\nDepartment, Dexter Morgan finds his efforts to seek domestic tranquility\nwith his girlfriend, Rita, and her children undermined by a nasty\npsychopath terrorizing the city, a case complicated by the kidnapping of\nDexter's nemesis, Sergeant Doakes. By the author of Darkly Dreaming Dexter.\nReprint.\"\r\n3058,3172,304079,\"Jalaluddin Rumi, Coleman Barks\",Essential Rumi,https://images.gr-assets.com/books/1391414844l/304079.jpg,4.44,26575,\"philosophy, religion\",\"Rumi the Persian poet is widely acknowledged as being the greatest Sufi\nmystic of his age. He was the founder of the brotherhood of the Whirling\nDervishes. This is a collection of his poetry.\"\r\n3059,3173,22716194,Lisa Genova,Inside the O'Briens,https://images.gr-assets.com/books/1423486279l/22716194.jpg,3.98,27221,\"fiction, psychology\",\"Joe O'Brien is a forty-four-year-old police officer from the Irish Catholic\nneighborhood of Charlestown, Massachusetts. A devoted husband, proud father\nof four children in their twenties, and respected officer, Joe begins\nexperiencing bouts of disorganized thinking, uncharacteristic temper\noutbursts, and strange, involuntary movements. He initially attributes\nthese episodes to the stress of his job, but as these symptoms worsen, he\nagrees to see a neurologist and is handed a diagnosis that will change his\nand his family's lives forever: Huntington's Disease. Huntington's is a\nlethal neurodegenerative disease with no treatment and no cure. Each of\nJoe's four children has a 50 percent chance of inheriting their father's\ndisease, and a simple blood test can reveal their genetic fate. While\nwatching her potential future in her father's escalating symptoms, twenty-\none-year-old daughter Katie struggles with the questions this test imposes\non her young adult life. Does she want to know? What if she's gene\npositive? Can she live with the constant anxiety of not knowing? As Joe's\nsymptoms worsen and he's eventually stripped of his badge and more, Joe\nstruggles to maintain hope and a sense of purpose, while Katie and her\nsiblings must find the courage to either live a life \"\"at risk\"\" or learn\ntheir fate.\"\r\n3060,3174,175983,Steven Erikson,Memories of Ice,https://images.gr-assets.com/books/1316729348l/175983.jpg,4.39,29796,\"fantasy, fiction\",Memories of IceSteven Erikson\r\n3061,3175,2029927,Dean Koontz,Odd Hours,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204532l/2029927.jpg,3.92,32880,\"fiction, fantasy\",\"Haunted by dreams of a powerful red tide, Odd Thomas, accompanied by two\notherworldly sidekicks, is drawn to a small California coastal town, where\nnothing is as it appears and where he confronts overwhelming and sinister\nforces out to stop his quest.\"\r\n3062,3176,261122,Rachel Caine,The Dead Girls' Dance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182865l/261122.jpg,4.06,46247,\"paranormal, fantasy\",\"When Claire Danvers and her equally outcast best friend Eve are invited to\nthe annual Dead Girls' Dance at a fraternity, all hell breaks loose when\nthe living group party with the dead group in a town rampant with\nbloodthirsty vampires.\"\r\n3063,3177,13834,Tamora Pierce,\"The Realms of the Gods (Immortals, #4)\",https://images.gr-assets.com/books/1262375414l/13834.jpg,4.32,41233,\"fantasy, fiction\",\"The Realms of the Gods (Immortals, #4)Tamora Pierce\"\r\n3064,3178,4922079,William R. Forstchen,One Second After,https://images.gr-assets.com/books/1316728333l/4922079.jpg,3.92,26331,\"fiction, thriller\",One Second AfterWilliam R. Forstchen\r\n3065,3179,385706,Suzanne Collins,Gregor and the Curse of the Warmbloods,https://images.gr-assets.com/books/1397852674l/385706.jpg,4.2,31854,\"fantasy, fiction\",Gregor and the Curse of the WarmbloodsSuzanne Collins\r\n3066,3180,9279177,David Levithan,The Lover's Dictionary,https://images.gr-assets.com/books/1312055996l/9279177.jpg,3.89,34771,\"romance, fiction\",The Lover's DictionaryDavid Levithan\r\n3067,3181,32525,\"Helen Gardner, Fred S. Kleiner, Christin J. Mamiya\",Art Through the Ages ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168391513l/32525.jpg,3.84,23738,\"art, history\",\"A comprehensive history of world art reveals how art reflects and\nparticipates in the artists' view of the world in which they live, from the\nprehistoric world through the twenty-first century.\"\r\n3068,3182,15567,Terry Brooks,The Wishsong of Shannara ,https://images.gr-assets.com/books/1328325115l/15567.jpg,3.97,36303,\"fantasy, fiction\",The Wishsong of Shannara Terry Brooks\r\n3069,3183,2498983,Gena Showalter,The Darkest Kiss,https://images.gr-assets.com/books/1399691671l/2498983.jpg,4.26,43594,\"paranormal, romance\",The Darkest KissGena Showalter\r\n3070,3184,2200877,Sarah Addison Allen,The Sugar Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440154317l/2200877._SX318_.jpg,3.98,37734,\"fiction, romance\",\"Quiet Josey Cirrini's peaceful life caring for her elderly mother is turned\nupside down when Della Lee Baker, a confident and bold waitress fleeing an\nabusive boyfriend, decides to hide out in Josey's home.\"\r\n3071,3185,9761771,Jennifer L. Armentrout,Pure,https://images.gr-assets.com/books/1296780419l/9761771.jpg,4.34,44665,\"fantasy, paranormal\",\"Alexandria's supernatural destiny, her connection to Seth, and her\nforbidden feelings for a pure-blood begin to wear on her, until the\nsituation becomes worse with a Daimon infiltration of the Covenants and a\nmysterious threat to Seth and herself.\"\r\n3072,3186,126381,Chimamanda Ngozi Adichie,Purple Hibiscus,https://images.gr-assets.com/books/1329431038l/126381.jpg,4.11,29416,\"fiction, contemporary\",Purple HibiscusChimamanda Ngozi Adichie\r\n3073,3187,113429,Miranda July,No One Belongs Here More Than You,https://images.gr-assets.com/books/1341079226l/113429.jpg,3.81,24717,\"fiction, contemporary\",\"Presents a collection of short works featuring sympathetic protagonists\nwhose inherent sensitivities render them particularly vulnerable to\nunexpected events.\"\r\n3074,3188,9595620,Kevin Hearne,Hammered,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438221107l/9595620._SY475_.jpg,4.22,33950,\"fantasy, paranormal\",\"To defeat Thor, the Norse god of thunder who has killed scores of\ninnocents, Viking vampire Leif Helgarson teams up with Atticus O'Sullivan,\nthe last of the Druids, a werewolf, a sorcerer and an army of frost giants\nto take down the hammer-wielding bully once and for all. Original.\"\r\n3075,3189,14383,Kresley Cole,No Rest for the Wicked,https://images.gr-assets.com/books/1357615569l/14383.jpg,4.3,42026,\"paranormal, romance\",\"New York Times and USA TODAY bestselling author Kresley Cole delivers a\nscorching tale about a foreboding vampire who lives in the shadows—and the\nbeautiful assassin determined to hunt him down—in the “sensational” (RT\nBook Reviews) second novel of the Immortals After Dark series. Centuries\nago, Sebastian Wroth was turned into a vampire against his will. Burdened\nwith hatred and alone for ages, he sees little reason to live. Until an\nexquisite, fey creature comes to kill him, inadvertently saving him\ninstead. When Kaderin the Cold Hearted lost her two beloved sisters to a\nvampire attack long ago, a benevolent force deadened her\nsorrow—accidentally extinguishing all of her emotions. Yet whenever Kaderin\nencounters Sebastian, her feelings—particularly lust—emerge multiplied. For\nthe first time, she’s unable to complete a kill. And when the prize of a\nlegendary month-long contest is powerful enough to change history, Kaderin\nwill do anything to win it for her sisters. Wanting only to win her,\nforever, Sebastian competes as well, taking every opportunity—as they\ntravel to ancient tombs and through catacombs, seeking relics around the\nworld—to use her new feelings to seduce her. But when Kaderin is forced to\nchoose between the vampire she’s falling for and reuniting her family, how\ncan she live without either?\"\r\n3076,3190,3313418,Vince Flynn,Extreme Measures,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349014258l/3313418.jpg,4.32,32211,\"fiction, thriller\",\"Having led a prestigious military and intelligence career, Hank Casey, a\nprotégé of counter-terrorism operative Mitch Rapp, struggles with the\nethics and challenges of his job when the government inexplicably turns\nagainst him. A best-selling novel. Includes execerpt from the author's new\nthriller Pursuit of Honor. Reprint.\"\r\n3077,3191,23093367,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume Four\",https://images.gr-assets.com/books/1486028981l/23093367.jpg,4.47,38069,\"comics, fantasy\",\"\"\"The sweeping tale of one young family fighting to find their place in the\nuniverse. When two soldiers from opposite sides of a never-ending galactic\nwar fall in love, they risk everything to bring a fragile new life into a\ndangerous old world\"\"--P. [4] of cover (v. 1).\"\r\n3078,3192,18528454,Jamie McGuire,A Beautiful Wedding,https://images.gr-assets.com/books/1384555141l/18528454.jpg,4.08,41359,\"romance, contemporary\",\"\"\"You know that Abby Abernathy unexpectedly became Mrs. Maddox. But what do\nyou really know? Why did Abby pop the question? What secrets were shared\nbefore the ceremony? Where did they spend their wedding night? Who else\nknew about it . . . and didn't tell? Everything about Abby and Travis's\nelopement was top-secret . . . until now. Fans of \"\"Beautiful Disaster\"\" and\n\"\"Walking Disaster\"\" will get all of their questions answered in this\nwhirlwind tale of the wedding day (and night)...\"\"--Provided by publisher.\"\r\n3079,3193,16071701,Carl Hiaasen,Bad Monkey,https://images.gr-assets.com/books/1359148688l/16071701.jpg,3.66,27437,\"fiction, mystery\",Bad MonkeyCarl Hiaasen\r\n3080,3194,16099180,Curtis Sittenfeld,Sisterland,https://images.gr-assets.com/books/1362466425l/16099180.jpg,3.35,29553,\"fiction, contemporary\",\"When the strongest earthquake in U.S. history occurs just north of their\nSt. Louis home, Kate and Jeremy find the disaster further complicated by\nKate's twin sister's prediction about a more powerful earthquake.\"\r\n3081,3195,6224826,Nick Hornby,\"Juliet, Naked\",https://images.gr-assets.com/books/1480092420l/6224826.jpg,3.48,30200,\"fiction, music\",\"Ending her relationship with a man who turns out to be in love with a\nreclusive singer, Annie initiates an e-mail friendship with the musician\nthat reveals their mutual loneliness, his concerns about his young son and\nhis plans to release an acoustic version of his most successful album. By\nthe E. M. Forster-winning author of About a Boy. Reprint. 150,000 first\nprinting.\"\r\n3082,3196,801178,\"Jack Canfield, Mark Victor Hansen\",Chicken Soup for the Soul,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348985789l/801178.jpg,3.94,28664,\"nonfiction, psychology\",\"Chicken Soup for the SoulJack Canfield, Mark Victor Hansen\"\r\n3083,3197,7039,Alexander McCall Smith,Tears of the Giraffe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348567024l/7039.jpg,3.95,35205,\"mystery, fiction\",\"Irrepressible sleuth Precious Ramotswe searches for a young man who\nvanished many years ago on the African plains, while dealing with her\nengagement to Mr. J.L.B. Matekoni, sudden and unexpected motherhood, and\nher recently promoted new assistant.\"\r\n3084,3198,49350,Michael Connelly,The Concrete Blonde,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388241215l/49350.jpg,4.12,30286,\"mystery, fiction\",The Concrete BlondeMichael Connelly\r\n3085,3200,34541,Terry Pratchett,Carpe Jugulum,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388895900l/34541.jpg,4.12,35605,\"fantasy, fiction\",Carpe JugulumTerry Pratchett\r\n3086,3201,6388558,Kresley Cole,The Warlord Wants Forever,https://images.gr-assets.com/books/1254801341l/6388558.jpg,4.09,42767,\"paranormal, romance\",The Warlord Wants ForeverKresley Cole\r\n3087,3202,9601,Kurt Vonnegut Jr.,Bluebeard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516339874l/9601.jpg,4.02,27011,\"fiction, classics\",\"An autobiography of Rabo Karabekian, an abstract expressionist artist, who\nacquired the largest collection of abstract expressionist paintings in\nprivate hands.\"\r\n3088,3203,120253,\"Brian Froud, Terry Windling\",\"Good Faeries, Bad Faeries\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348748756l/120253.jpg,3.88,35068,\"fantasy, art\",\"A reversible volume in which good fairies such as the green man, the wood\nwoman, and the pixies are described on one side, and bad fairies such the\ngnome, Black Annis, and Morgana le Fay are described on the other\"\r\n3089,3205,550844,\"Stephen King, Bernie Wrightson\",Cycle of the Werewolf,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565642120l/550844.jpg,3.62,30993,\"horror, fiction\",\"The classic masterpiece by #1 New York Times bestselling author Stephen\nKing—illustrated by the legendary artist Bernie Wrightson! Terror began in\nJanuary—by the light of the full moon... The first scream came from the\nsnowbound railwayman who felt the werewolf’s fangs ripping at his throat.\nThe next month there was a scream of ecstatic agony from the woman attacked\nin her cozy bedroom. Now scenes of unbelievable horror unfold each time the\nfull moon shines on the isolated Maine town of Tarker’s Mills. No one knows\nwho will be attacked next. But one thing is sure. When the full moon rises,\na paralyzing fear sweeps through Tarker's Mills. For snarls that sound like\nhuman words can be heard whining through the wind. And all around are the\nfootprints of a monster whose hunger cannot be sated...\"\r\n3090,3206,91357,Jane Yolen,The Devil's Arithmetic,https://images.gr-assets.com/books/1342046407l/91357.jpg,4.04,39419,\"fiction, fantasy\",\"Hannah resents the traditions of her Jewish heritage until time travel\nplaces her in the middle of a small Jewish village in Nazi-occupied Poland.\"\r\n3091,3207,248787,Alan Weisman,The World Without Us,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441986417l/248787._SY475_.jpg,3.79,28549,\"science, nonfiction\",\"A study of what would happen to Earth if the human presence was removed\nexamines our legacy for the planet, from the objects that would vanish\nwithout human intervention to those that would become long-lasting remnants\nof humankind.\"\r\n3092,3208,239186,Erik Larson,\"Isaac's Storm: A Man, a Time, and the Deadliest Hurricane in History\",https://images.gr-assets.com/books/1403179592l/239186.jpg,4.05,29695,\"history, nonfiction\",\"Provides an account of the hurricane which struck Galveston, Texas, in 1900\nand killed ten thousand people.\"\r\n3093,3209,23341607,Elin Hilderbrand,The Rumor,https://images.gr-assets.com/books/1418769681l/23341607.jpg,3.69,22876,\"fiction, romance\",The RumorElin Hilderbrand\r\n3094,3210,18839,Virginia Woolf,Orlando: A Biography,https://images.gr-assets.com/books/1443118010l/18839.jpg,3.86,32846,\"classics, fiction\",\"Orlando doubles as first an Elizabethan nobleman and then as a Victorian\nheroine who undergoes all the transitions of history in this novel that\nexamines sex roles and social mores.\"\r\n3095,3211,2410506,Cecelia Ahern,Thanks for the Memories,https://images.gr-assets.com/books/1328019535l/2410506.jpg,3.69,31617,\"romance, fiction\",\"How is it possible to know someone you've never met? With her marriage\nalready in pieces, Joyce Conway nearly lost everything else. But she\nsurvived the terrible accident that left her hospitalized—and now,\ninexplicably, she can remember faces she has never seen, cobblestone\nParisian streets she's never visited. A sudden, overwhelming sense of dÉjÀ\nvu has Joyce feeling as if her life is not her own. Justin Hitchcock's\ndecision to donate blood was the first thing to come straight from his\nheart in a long time. He chased his ex-wife and daughter from Chicago to\nLondon—and now, restless and lonely, he lectures to bored college students\nin Dublin. But everything is about to change with the arrival of a basket\nof muffins with a thank-you note enclosed—the first in a series of\nanonymous presents that will launch Justin into the heart of a mystery . .\n. and alter two lives forever.\"\r\n3096,3212,298230,\"Anne Brontë, Angeline Goreau\",Agnes Grey,https://images.gr-assets.com/books/1400875530l/298230.jpg,3.65,33926,\"classics, fiction\",\"Agnes Grey is undoubtedtedly a deeply personal novel, in which Anne Bronte\nviews on the 'contemporary' issue of the treatment of governesses, as well\nas her passionate religious sympathies, find very deliberate expression;\nbut she also touches on issues of moral behaviour, moral responsibility,\nand individual integrity and its survival.\"\r\n3097,3213,26050,Nora Roberts,Angels Fall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442931263l/26050._SY475_.jpg,3.98,34484,\"romance, mystery\",\"Seeking refuge from her past in Angel's Fist, Wyoming, Reece Gilmore\nwitnesses a possible murder, but when all evidence of the crime vanishes,\nno one seems to believe her, except for Brody, a gruff loner who becomes\nher only hope of escaping a killer.\"\r\n3098,3214,6339304,Vince Flynn,Pursuit of Honor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440180728l/6339304._SY475_.jpg,4.35,27137,\"fiction, thriller\",\"After his team member, Mike Nash, witnesses a terror attack in Washington,\nD.C., CIA superagent Mitch Rapp must pursue the al Qaeda terrorists\nresponsible as he fights a covert war that can never be discussed, even\nwith the government's own political leaders.\"\r\n3099,3215,2299110,Sherrilyn Kenyon,\"Acheron (Dark-Hunter, #15) - Part 1\",https://images.gr-assets.com/books/1437687512l/2299110.jpg,4.59,44623,\"paranormal, romance\",\"Determined to solve an ancient mystery, a woman undertakes a forbidden\nquest that pits her against the Dark-Hunter leader and proud god Acheron,\nwith whom she joins forces when ancient guardians and old enemies threaten\nboth of them. Reprint.\"\r\n3100,3216,6135237,Pat Conroy,South of Broad,https://images.gr-assets.com/books/1320532445l/6135237.jpg,3.78,31640,\"fiction, contemporary\",South of BroadPat Conroy\r\n3101,3217,171102,Ami McKay,The Birth House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172385530l/171102._SX318_.jpg,3.99,29721,\"fiction, ebooks\",\"An arresting portrait of the struggles that women faced for control of\ntheir own bodies, The Birth House is the story of Dora Rare—the first\ndaughter in five generations of Rares. As apprentice to the outspoken\nAcadian midwife Miss Babineau, Dora learns to assist the women of an\nisolated Nova Scotian village through infertility, difficult labors, breech\nbirths, unwanted pregnancies, and unfulfilling sex lives. During the\nturbulent World War I era, uncertainty and upheaval accompany the arrival\nof a brash new medical doctor and his promises of progress and fast,\npainless childbirth. In a clash between tradition and science, Dora finds\nherself fighting to protect the rights of women as well as the wisdom that\nhas been put into her care.\"\r\n3102,3218,3657138,Lisa McMann,Fade,https://images.gr-assets.com/books/1293805966l/3657138.jpg,3.95,42540,\"paranormal, fantasy\",FadeLisa McMann\r\n3103,3219,775346,Donna Tartt,The Little Friend,https://images.gr-assets.com/books/1327936589l/775346.jpg,3.43,28978,\"fiction, mystery\",\"Growing up in a small Mississippi town in a family haunted by the murder of\nher brother, Harriet Cleve Dusfresnes lives in a world of her imagination,\nuntil, at the age of twelve, she decides to find the murderer and exact her\nrevenge. By the author of The Secret History. Reprint. 250,000 first\nprinting.\"\r\n3104,3220,3165162,Rick Riordan,Percy Jackson and the Olympians Boxed Set,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181482l/3165162.jpg,4.58,32496,\"fantasy, fiction\",Percy Jackson and the Olympians Boxed SetRick Riordan\r\n3105,3221,2133795,Ingrid Law,Savvy,https://images.gr-assets.com/books/1480110534l/2133795.jpg,3.96,37593,\"fantasy, fiction\",\"Recounts the adventures of Mibs Beaumont, whose thirteenth birthday has\nrevealed her \"\"savvy\"\"--a magical power unique to each member of her family--\njust as her father is injured in a terrible accident.\"\r\n3106,3222,4452257,Bill Simmons,The Book of Basketball: The NBA According to The Sports Guy,https://images.gr-assets.com/books/1320424763l/4452257.jpg,4.16,24245,\"sports, nonfiction\",\"An opinionated tour of the past, present, and future of pro basketball,\nwritten by ESPN's \"\"Sports Guy\"\" columnist, shares insights on everything\nfrom major NBA events and underrated players to how Hall of Famers should\nbe selected.\"\r\n3107,3223,13151,James Patterson,London Bridges,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439049145l/13151._SY475_.jpg,3.92,32455,\"mystery, fiction\",\"Alex Cross must face the world's most dangerous agents, criminals, and\nassassins. The fate of the world rests in his hands. In broad desert\ndaylight, a mysterious platoon of soldiers evacuates the entire population\nof Sunrise Valley, Nevada. Minutes later, a huge bomb detonates a hundred\nfeet above the ground and lays waste to homes, cars, and playgrounds: a\ntown annihilated in an instant. The Russian supercriminal known as the Wolf\nclaims responsibility for the blast. Alex Cross is on vacation in San\nFrancisco with his girlfriend, Jamilla Hughes, when he gets the call. World\nleaders have just four days to prevent an unimaginable cataclysm. Racing\ndown the hairpin turns of the Riviera in the most unforgettable finale\nJames Patterson has ever written, he confronts the truth of the Wolf's\nidentity, a revelation that even Cross himself may be unable to survive.\"\r\n3108,3224,2750180,عائض القرني,لا تحزن,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1202202276l/2750180.jpg,4.15,18825,\"religion, philosophy\",لا تحزنعائض القرني\r\n3109,3225,634583,\"A.P.J. Abdul Kalam, Arun Tiwari\",Wings of Fire: An Autobiography,https://images.gr-assets.com/books/1295670969l/634583.jpg,4.19,24450,\"biography, nonfiction\",\"Avul Pakir Jainulabdeen Abdul Kalam, The Son Of A Little-Educated Boat-\nOwner In Rameswaram, Tamil Nadu, Had An Unparalled Career As A Defence\nScientist, Culminating In The Highest Civilian Award Of India, The Bharat\nRatna. As Chief Of The Country`S Defence Research And Development\nProgramme, Kalam Demonstrated The Great Potential For Dynamism And\nInnovation That Existed In Seemingly Moribund Research Establishments. This\nIs The Story Of Kalam`S Rise From Obscurity And His Personal And\nProfessional Struggles, As Well As The Story Of Agni, Prithvi, Akash,\nTrishul And Nag--Missiles That Have Become Household Names In India And\nThat Have Raised The Nation To The Level Of A Missile Power Of\nInternational Reckoning.\"\r\n3110,3226,11401915,\"L.J. Smith, Kevin Williamson, Julie Plec\",The Ripper,https://images.gr-assets.com/books/1314846147l/11401915.jpg,4.22,27432,\"fantasy, paranormal\",\"Haunted by the past . . . The year is 1888, and the scent of blood lingers\nheavy in the London air. Stefan Salvatore thought he could escape his\nviolent origins by settling in the peaceful countryside of England, but\nwhen a heinous murderer named Jack the Ripper surfaces, Stefan fears\ndarkness will always follow him. Drawn into the investigation, Stefan\nassumes the worst: This is the work of a vampire. And the more he learns,\nthe more he becomes convinced that the killer is someone close to him—and\nthat he can never outrun his past. Based on the popular CW TV show inspired\nby the bestselling novels, Stefan’s Diaries reveals the truth about what\nreally happened between Stefan, Damon, and Katherine—and how the Vampire\nDiaries love triangle began.\"\r\n3111,3227,13588394,Nate Silver,The Signal and the Noise: Why So Many Predictions Fail - But Some Don't,https://images.gr-assets.com/books/1355058876l/13588394.jpg,3.96,26888,\"science, nonfiction\",\"The founder of FiveThirtyEight.com challenges myths about predictions in\nsubjects ranging from the financial market and weather to sports and\npolitics, profiling the world of prediction to explain how readers can\ndistinguish true signals from hype, in a report that also reveals the\nsources and societal costs of wrongful predictions.\"\r\n3112,3228,25614492,Ruta Sepetys,Salt to the Sea,https://images.gr-assets.com/books/1437084512l/25614492.jpg,4.36,39406,\"fiction, history\",\"Racing to freedom with thousands of other refugees as Russian forces close\nin on their homes in East Prussia, Joana, Emilia, and Florian meet aboard\nthe doomed Wilhelm Gustloff and are forced to trust each other in order to\nsurvive.\"\r\n3113,3229,16319,Agatha Christie,The Body in the Library,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733809l/16319.jpg,3.85,36188,\"mystery, fiction\",\"It’s seven in the morning. The Bantrys wake to find the body of a young\nwoman in their library. She is wearing an evening dress and heavy makeup,\nwhich is now smeared across her cheeks. But who is she? How did she get\nthere? And what is the connection with another dead girl, whose charred\nremains are later discovered in an abandoned quarry? The respectable\nBantrys invite Miss Marple to solve the mystery . . . before tongues start\nto wag.\"\r\n3114,3230,119,Gary Russell,The Lord of the Rings: The Art of The Fellowship of the Ring,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347803870l/119.jpg,4.59,24340,\"fantasy, art\",\"More than five hundred images, ranging from the earliest pencil sketches\nand conceptual drawings to paintings and film stills, document the art and\nartistry of the film \"\"The Lord of the Rings, the Fellowship of the Ring.\"\"\"\r\n3115,3231,8379374,Olivia Cunning,\"Backstage Pass (Sinners on Tour, #1)\",https://images.gr-assets.com/books/1348192403l/8379374.jpg,4.05,50044,\"romance, contemporary\",\"Backstage Pass (Sinners on Tour, #1)Olivia Cunning\"\r\n3116,3232,189182,\"Marjorie Flack, Kurt Wiese\",The Story About Ping,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193120l/189182.jpg,4.15,36193,\"fiction, classics\",\"A little duck finds adventure on the Yangtze River when he is too late to\nboard his master's houseboat one evening.\"\r\n3117,3233,8274537,Rachel Renée Russell,Tales from a Not-So-Popular Party Girl,https://images.gr-assets.com/books/1370064608l/8274537.jpg,4.28,26210,\"fiction, contemporary\",\"Nikki's diary describes a frightful Halloween, on which she helps with her\nsister's ballet class party at the same time she is Brandon's date for\ntheir middle school Halloween dance, where she has promised to spend the\nevening with her two best friends.\"\r\n3118,3234,8252,\"Laura Ingalls Wilder, Garth Williams\",Farmer Boy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388446891l/8252.jpg,4.05,39863,\"classics, fiction\",\"While Laura Ingalls grows up in a little house on the western prairie,\nAlmanzo Wilder is living on a big farm in New York State. Here Almanzo and\nhis brother and sisters help with the summer planting and fall harvest. In\nwinter there is wood to be chopped and great slabs of ice to be cut from\nthe river and stored. Time for fun comes when the jolly tin peddler visits,\nor best of all, when the fair comes to town. This is Laura Ingalls Wilder's\nbeloved story of how her husband Almanzo grew up as a farmer boy far from\nthe little house where Laura lived.\"\r\n3119,3235,7108725,Simon Sinek,Start with Why: How Great Leaders Inspire Everyone to Take Action,https://images.gr-assets.com/books/1360936414l/7108725.jpg,4.07,32899,\"business, nonfiction\",\"Draws on real-life stories and figures, including Martin Luther King, Jr.\nand Steve Jobs, to examine the qualities a good leader requires in order to\ninspire and motivate people.\"\r\n3120,3236,17345258,Fannie Flagg,The All-Girl Filling Station's Last Reunion,https://images.gr-assets.com/books/1373052495l/17345258.jpg,3.97,26878,\"fiction, contemporary\",\"A novel spanning decades, generations, and America in the 1940s and today,\ncenters around five women who worked in a Phillips 66 gas station during\nthe World War II years.\"\r\n3121,3237,25354,Dorothy Allison,Bastard Out of Carolina,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424648725l/25354.jpg,4.09,27358,\"fiction, classics\",\"Tired of being labeled white trash, Ruth Anne Boatwright, longs to escape\nfrom her hometown, and especially from Daddy Glen and his meanspirited\njealousy.\"\r\n3122,3238,9464733,Libba Bray,Beauty Queens,https://images.gr-assets.com/books/1289410187l/9464733.jpg,3.6,39455,\"contemporary, fiction\",\"When a plane crash strands thirteen teen beauty contestants on a mysterious\nisland, they struggle to survive, to get along with one another, to combat\nthe island's other diabolical occupants, and to learn their dance numbers\nin case they are rescued in time for the competition.\"\r\n3123,3239,4699575,Daniel Suarez, Daemon,https://images.gr-assets.com/books/1432909825l/4699575.jpg,4.17,18104,\"fiction, fantasy\",\"When the obituary of Matthew Sobol, a legendary architect of computer\ngames, is posted online, a previously dormant daemon activates, initiating\na chain of events that unravels our interconnected world. It recruits,\ncorrupts, and kills. With Sobol's secrets buried with him, and as new\nlayers of his daemon are unleashed, it's up to Detective Peter Sebeck to\nwrest the world from the grasp of a malevolent, self-replicating virtual\nenemy before its ultimate, terrifying purpose is realized: to destroy\ncivilization. So far, Daemon is winning.\"\r\n3124,3240,4035,Scott Turow,The Burden of Proof,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425756834l/4035.jpg,4.05,29103,\"fiction, mystery\",The Burden of ProofScott Turow\r\n3125,3241,22299763,Leigh Bardugo,Crooked Kingdom,https://images.gr-assets.com/books/1456172607l/22299763.jpg,4.62,44289,\"fantasy, fiction\",\"Crooked Kingdom: the highly anticipated sequel to Leigh Bardugo's thrilling\n#1 New York Times-bestselling Six of Crows. Kaz Brekker and his crew have\njust pulled off a heist so daring even they didn't think they'd survive.\nBut instead of divvying up a fat reward, they're right back to fighting for\ntheir lives. Double-crossed and badly weakened, the crew is low on\nresources, allies, and hope. As powerful forces from around the world\ndescend on Ketterdam to root out the secrets of the dangerous drug known as\njurda parem, old rivals and new enemies emerge to challenge Kaz's cunning\nand test the team's fragile loyalties. A war will be waged on the city's\ndark and twisting streets—a battle for revenge and redemption that will\ndecide the fate of the Grisha world.\"\r\n3126,3242,758153,Joy Adamson,Born Free: A Lioness of Two Worlds,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406563918l/758153.jpg,4.17,28820,\"nonfiction, biography\",\"Relates the adventures of a lion cub reared and loved for three years by an\nAmerican game warden and his wife.\"\r\n3127,3243,333867,\"Alfred Bester, Neil Gaiman\",The Stars My Destination,https://images.gr-assets.com/books/1433671750l/333867.jpg,4.13,29055,\"fiction, classics\",\"This massively comprehensive work of science fiction and fantasy\nbibliography is already a library standard. It consists of an alphabetical\nlisting of hundreds of authors, anthologists, editors, artists, etc., with\nbiographical sketches where available, and compilations of their science\nfiction and fantasy works. The contents of most collections and anthologies\nare listed. In most cases the entries include bibliographic data for all\nknown English-language editions and forms, as well as some foreign\ntranslations. Each author's entry also includes listings of books and short\nstories which form connected series, such as Robert Heinlein's famous\nFuture History. Large 8 1/2 x 11 inch pages in two columns of small print.\"\r\n3128,3245,15839984,Rosamund Hodge,Cruel Beauty,https://images.gr-assets.com/books/1371652590l/15839984.jpg,3.74,45721,\"fantasy, romance\",Cruel BeautyRosamund Hodge\r\n3129,3246,11289,Dan Simmons,The Rise of Endymion,https://images.gr-assets.com/books/1329609799l/11289.jpg,4.16,30135,\"fiction, fantasy\",\"As a final genocidal Crusade threatens to enslave humanity forever, Aenea,\na new messiah, comes of age and must deliver her startling message to her\ngrowing army of disciples, but not before embarking on a mission to\ndiscover the very meaning of the universe. Reprint. NYT.\"\r\n3130,3247,3977,Dan Simmons,Endymion,https://images.gr-assets.com/books/1329611385l/3977.jpg,4.14,30664,\"fiction, fantasy\",\"Trapped in an orbiting prison that will kill him at the slightest sign of\ntampering, the narrator looks back on events leading up to his impending\ndeath\"\r\n3131,3248,920607,Shaun Tan,The Arrival,https://images.gr-assets.com/books/1312827620l/920607.jpg,4.33,33764,\"comics, fantasy\",\"In this wordless graphic novel, a man leaves his homeland and sets off for\na new country, where he must build a new life for himself and his family.\"\r\n3132,3249,15704486,Brandon Sanderson,Calamity,https://images.gr-assets.com/books/1437098338l/15704486.jpg,4.2,27146,\"fantasy, fiction\",CalamityBrandon Sanderson\r\n3133,3250,10873,Steve Martin,Shopgirl: A Novella,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442525303l/10873._SY475_.jpg,3.42,28063,\"fiction, romance\",Shopgirl: A NovellaSteve Martin\r\n3134,3252,24580,Mark Twain,Tom Sawyer & Huckleberry Finn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1597509702l/24580.jpg,4.07,30228,\"classics, fiction\",\"A new edition of two popular American novels presents Twain's classic works\ndepicting the youthful escapades of two boys living along the Mississippi,\naccompanied by an updated bibliography and a new introduction. Reprint.\"\r\n3135,3253,15701217,Claire Messud,The Woman Upstairs,https://images.gr-assets.com/books/1345666863l/15701217.jpg,3.31,25135,\"fiction, contemporary\",\"Relegated to the status of schoolteacher after abandoning her dreams of\nbecoming an artist, Nora advocates on behalf of a Lebanese student and is\ndrawn into the child's family until his mother's ambition leads to\nbetrayal.\"\r\n3136,3254,74731,Christopher Moore,The Stupidest Angel: A Heartwarming Tale of Christmas Terror,https://images.gr-assets.com/books/1331320721l/74731.jpg,3.82,32000,\"fiction, fantasy\",The Stupidest Angel: A Heartwarming Tale of Christmas TerrorChristopher Moore\r\n3137,3255,4708,F. Scott Fitzgerald,The Beautiful and Damned,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347567298l/4708.jpg,3.75,26597,\"classics, fiction\",The Beautiful and DamnedF. Scott Fitzgerald\r\n3138,3256,27037,\"Augustine of Hippo, Henry Chadwick, Albert Cook Outler\",Confessiones Sancti Patris nostri Augustini,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266454051l/27037.jpg,3.88,25674,\"history, memoir\",\"A literary expert guides readers through Augustine's classic spiritual\nautobiography, Confessions, exploring the book's historical context, key\nthemes, and overarching message. Part of the Christian Guides to the\nClassics series.\"\r\n3139,3257,23602562,Kent Haruf,Our Souls at Night,https://images.gr-assets.com/books/1418766517l/23602562.jpg,3.96,26249,\"fiction, contemporary\",\"The story of the intertwined lives of widow Addie Moore and widower Louis\nWaters, set against the backdrop of Holt, Colorado.\"\r\n3140,3258,116012,Nora Roberts,Carolina Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347331523l/116012.jpg,4.02,33719,\"romance, mystery\",\"From the #1 New York Times bestselling author-a spellbinding tale about a\nwoman who, though battered in both body and spirit, never loses hope...\"\r\n3141,3259,16138688,Cathy Marie Buchanan,The Painted Girls,https://images.gr-assets.com/books/1352484200l/16138688.jpg,3.61,26798,\"fiction, art\",The Painted GirlsCathy Marie Buchanan\r\n3142,3260,13402447,Chanda Hahn,UnEnchanted,https://images.gr-assets.com/books/1327819697l/13402447.jpg,3.89,35287,\"fantasy, fiction\",Includes preview of The iron butterfly (p. 319-322).\r\n3143,3261,7897478,Sarah Silverman,\"The Bedwetter: Stories of Courage, Redemption and Pee\",https://images.gr-assets.com/books/1269295414l/7897478.jpg,3.52,27706,\"memoir, biography\",\"The Bedwetter: Stories of Courage, Redemption and PeeSarah Silverman\"\r\n3144,3262,2247142,Patricia Highsmith,The Talented Mr. Ripley,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435426615l/2247142._SY475_.jpg,3.93,16536,\"fiction, mystery\",\"In order to convince his son to come home, Herbert Greenleaf, a rich\nshipbuilder, sends the suave con man Tom Ripley to Italy, but is unaware of\nhis son's friend's criminal activities. Reprint.\"\r\n3145,3263,8662836,Simone Elkeles,Chain Reaction,https://images.gr-assets.com/books/1327881446l/8662836.jpg,4.12,47773,\"romance, contemporary\",\"Luis Fuentes is a good boy who doesn't live with the angst that his big\nbrothers, Alex and Carlos, have always lived with. Luis is smart, funny,\nand has big dreams of becoming an astronaut. But when he falls for the\nwrong girl, Luis enters a dark world he's never known, and just when he\nthinks he's got life all figured out, learns some disturbing news about his\nfamily that destroys his positive outlook on life. Will that Fuentes bad\nboy streak come out with a vengeance and lure Luis to live on the edge like\nhis new girlfriend and his own father? Continuing all the steamy romance of\nthe first two books, New York Times and USA Today bestselling author Simone\nElkeles gives fans one more satisfying taste of the irresistible Fuentes\nboys.\"\r\n3146,3264,390711,James Clavell,Noble House,https://images.gr-assets.com/books/1365185986l/390711.jpg,4.23,30367,\"fiction, history\",\"Under the eyes of the KGB, the CIA, and the People's Republic of China,\nBritish and American businessmen maneuver for control of Hong Kong's oldest\ntrading house in a torrid atmosphere of easy money, smuggled guns, and\nnatural disaster\"\r\n3147,3265,28866,Christine Feehan,Dark Prince,https://images.gr-assets.com/books/1405352801l/28866.jpg,4.01,38879,\"romance, paranormal\",\"Enter the enchanting world of the Carpathians, where dark adventure,\nmystery, and love await, and the desires of two daring hearts unite in one\nirresistible passion A telepathic hunter of serial killers, Raven Whitney’s\nwork has drained her body and spirit, and now, in need of rest and\nrejuvenation, she embarks on a vacation far from home. The powerful leader\nof the Carpathians—a wise and secret ancient race that thrives in the\nnight—Mikhail Dubrinsky is engulfed by despair, fearful of never finding\nthe mate who can save him from the encroaching darkness. From the moment\nthey meet, Raven and Mikhail are helpless to resist the desire that sparks\nbetween them. But just as fate unexpectedly brings these life mates\ntogether, malevolent forces threaten to destroy them and their fragile\nlove. With an additional 100 pages of new material, Christine Feehan’s\nmagnificent tale of forbidden love mesmerizes as never before. Experience\nDark Prince as it was always meant to be!\"\r\n3148,3266,4634266,Masashi Kishimoto,NARUTO -ナルト- 巻ノ四十三 ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1221281979l/4634266.jpg,4.57,26364,\"manga, fantasy\",NARUTO -ナルト- 巻ノ四十三 Masashi Kishimoto\r\n3149,3267,16131077,Lauren Beukes,The Shining Girls,https://images.gr-assets.com/books/1352227705l/16131077.jpg,3.49,28006,\"fiction, mystery\",The Shining GirlsLauren Beukes\r\n3150,3268,1128178,Diane Ackerman,The Zookeeper's Wife: A War Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347606702l/1128178.jpg,3.44,20056,\"history, nonfiction\",\"Documents the heroic true story of Warsaw Zoo keepers and resistance\nactivists Jan and Antonina Zabinski who, in the aftermath of Germany's\ninvasion of Poland, saved the lives of hundreds of Jewish citizens by\nsmuggling them into empty cages and their home villa. Reprint. 70,000 first\nprinting.\"\r\n3151,3269,24499258,David Mitchell,Slade House,https://images.gr-assets.com/books/1446777435l/24499258.jpg,3.82,24898,\"horror, fiction\",\"Born out of the short story David Mitchell published on Twitter in 2014 and\ninhabiting the same universe as his latest bestselling novel The Bone\nClocks, this is the perfect book to curl up with on a dark and stormy\nnight. Turn down Slade Alley - narrow, dank and easy to miss, even when\nyou're looking for it. Find the small black iron door set into the right-\nhand wall. No handle, no keyhole, but at your touch it swings open. Enter\nthe sunlit garden of an old house that doesn't quite make sense; too grand\nfor the shabby neighbourhood, too large for the space it occupies. A\nstranger greets you by name and invites you inside. At first, you won't\nwant to leave. Later, you'll find that you can't. This unnerving, taut and\nintricately woven tale by one of our most original and bewitching writers\nbegins in 1979 and reaches its turbulent conclusion around Hallowe'en,\n2015. Because every nine years, on the last Saturday of October, a 'guest'\nis summoned to Slade House. But why has that person been chosen, by whom\nand for what purpose? The answers lie waiting in the long attic, at the top\nof the stairs...\"\r\n3152,3270,18170143,Chris Hadfield,An Astronaut’s Guide to Life on Earth,https://images.gr-assets.com/books/1380495144l/18170143.jpg,4.14,25474,\"science, biography\",An Astronaut’s Guide to Life on EarthChris Hadfield\r\n3153,3271,2321296,Melissa Marr,\"Ink Exchange (Wicked Lovely, #2)\",https://images.gr-assets.com/books/1275693727l/2321296.jpg,3.68,48264,\"fantasy, paranormal\",\"The second installment in Melissa Marr’s #1 New York Times bestselling\nWicked Lovely series brings readers back to the land of faerie and delivers\nanother stunning, high-stakes romance. Unbeknownst to mortals, a power\nstruggle is unfolding in a world of shadows and danger. After centuries of\nstability, the balance among the Faery Courts has altered, and Irial, ruler\nof the Dark Court, is battling to hold his rebellious and newly vulnerable\nfey together. If he fails, bloodshed and brutality will follow. Seventeen-\nyear-old Leslie knows nothing of faeries or their intrigues. When she is\nattracted to an eerily beautiful tattoo of eyes and wings, all she knows is\nthat she has to have it, convinced it is a tangible symbol of changes she\ndesperately craves for her own life. The tattoo does bring changes—not the\nkind Leslie has dreamed of, but sinister, compelling changes that are more\nthan symbolic. Those changes will bind Leslie and Irial together, drawing\nLeslie deeper and deeper into the faery world, unable to resist its\nallures, and helpless to withstand its perils. . .\"\r\n3154,3272,6621287,\"أحلام مستغانمي, Ahlam Mosteghanemi\",نسيان كوم,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1247786907l/6621287.jpg,3.73,24884,\"romance, fiction\",\"نسيان كومأحلام مستغانمي, Ahlam Mosteghanemi\"\r\n3155,3273,5347,John Grisham,Bleachers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920942l/5347.jpg,3.46,27719,\"fiction, sports\",\"Presents a novel about high school football in a small Texas town, a place\nin which football has become a religion.\"\r\n3156,3274,206962,Dr. Seuss,Hop on Pop,https://images.gr-assets.com/books/1327947739l/206962.jpg,3.95,37324,\"classics, fiction\",\"Pairs of rhyming words are introduced and used in simple sentences, such as\n\"\"Day. Play. We play all day. Night. Fight. We fight all night.\"\"\"\r\n3157,3276,103983,Anthony Horowitz,Skeleton Key,https://images.gr-assets.com/books/1306076661l/103983.jpg,4.06,37232,\"fiction, mystery\",Skeleton KeyAnthony Horowitz\r\n3158,3277,43930,Harlan Coben,Gone for Good,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200178l/43930.jpg,4.1,29777,\"mystery, thriller\",\"Investigating his girlfriend's mysterious disappearance, Will Klein learns\nthat she is somehow tied to his brother's death and becomes increasingly\ndisturbed when he realizes that everyone he loves is harboring dark\nsecrets.\"\r\n3159,3278,45101,Robin Hobb,The Mad Ship,https://images.gr-assets.com/books/1328628210l/45101.jpg,4.21,30724,\"fantasy, fiction\",\"While the Vestrits await the return of their \"\"liveship,\"\" the unfortunate\nmagical vessel has been taken by pirates, and Althea Vestrit must liberate\nthe ship. Reprint.\"\r\n3160,3279,722864,\"Joanna Cole, Bruce Degen\",Inside the Human Body,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177016l/722864.jpg,4.26,30884,\"science, fiction\",\"A special field trip on the magic school bus allows Ms. Frizzle's class to\nget a first-hand look at major parts of the body and how they work.\"\r\n3161,3280,126507,Michael Connelly,Lost Light,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388241213l/126507.jpg,4.15,29745,\"mystery, fiction\",\"NEW YORK TIMES BESTSELLER The vision has haunted him for four years--a\nyoung woman lying crumpled in death, her hand outstretched in silent\nsupplication. Harry Bosch was taken off the Angella Benton murder case when\nthe production assistant's death was linked with the violent theft of two\nmillion dollars from a movie set. Both files were never closed. Now retired\nfrom the L.A.P.D., Bosch is determined to find justice for Angella. Without\na badge to open doors and strike fear into the guilty, he's on his own. And\neven in the face of an opponent more powerful and ruthless than any he's\never encountered, Bosch is not backing down.\"\r\n3162,3281,20578940,\"Holly Black, Cassandra Clare\",The Iron Trial,https://images.gr-assets.com/books/1396560808l/20578940.jpg,3.95,33510,\"fantasy, fiction\",\"The Iron TrialHolly Black, Cassandra Clare\"\r\n3163,3282,12962439,\"Daniel Abraham, George R.R. Martin, Tommy Patterson\",A Game of Thrones - The Graphic Novel Volume 1,https://images.gr-assets.com/books/1369052110l/12962439.jpg,4.48,25533,\"comics, fiction\",\"The kingdom of the royal Stark family faces its ultimate challenge in the\nonset of a generation-long winter, the poisonous plots of the rival\nLannisters, the emergence of the Neverborn demons and the arrival of\nbarbarian hordes. 75,000 first printing.\"\r\n3164,3283,7091370,Candace Bushnell,The Carrie Diaries,https://images.gr-assets.com/books/1366214548l/7091370.jpg,3.57,30468,\"fiction, romance\",The Carrie DiariesCandace Bushnell\r\n3165,3284,5181,Bret Lott,Jewel (Oprah's Book Club) ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165518059l/5181.jpg,3.64,31851,\"fiction, contemporary\",\"A mother fights for the dignity of her youngest daughter against the\nbackdrop of a pure and simple way of life in the backwoods of Mississippi\nin 1943\"\r\n3166,3286,228258,\"Tim LaHaye, Jerry B. Jenkins\",Tribulation Force: The Continuing Drama of Those Left Behind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441204541l/228258._SY475_.jpg,3.94,30592,\"fiction, christian\",\"Four Christians left behind after The Rapture join forces to create the\nTribulation Force, fighting the enemies of God left on Earth after three-\nquarters of the world's population has perished amid disease and natural\ndisaster.\"\r\n3167,3287,7015635,Michael Pollan,Food Rules,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348526224l/7015635.jpg,3.99,30577,\"nonfiction, science\",\"Presents a set of rules for eating wisely in accordance with a variety of\nethnic and cultural traditions, sharing guidelines for making grocery\nchoices and dining out.\"\r\n3168,3288,20316309,خولة حمدي,في قلبي أنثى عبرية,https://images.gr-assets.com/books/1387912700l/20316309.jpg,4.04,22912,\"romance, fiction\",\"لم تكن قد بلغت التاسعة من عمرها حين توفيت والدتها. أما والدها فقد توفي\nقبلها بسنوات، مخلفًا عائلته الصغيرة تعيش الفاقة والحرمان. وكان يجب على\nالأرملة الوحيدة أن تبحث عن عمل. لم يكن بإمكانها أن ترفض عرض جيرانها اليهود\nالأغنياء بالعمل عندهم كمدبرة منزل، فهم سيوفرون لها المسكن والمأكل، ويتكفلون\nبرعاية ابنتها الصغيرة، حتى تواصل تعليمها وتنشأ في ظروف مناسبة. ولم يكن\nاختلاف الديانة ليغير في الأمر شيئًا. طوال سنوات من التجاور، نشأت علاقة\nفريدة من نوعها بين العائلتين، ما جعلهما موضع سخرية من البعض، وحسد من البعض\nالآخر. نشأت ريما بين أحضان عائلة جاكوب اليهودية وهم يعتبرونها فردًا منهم.\nفقد كانت بهجة البيت الذي يقيم فيه الأبوان المتقدمان في السن وابنهما جاكوب،\nوروحه النابضة بالحياة، بعد أن تزوجت ابنتهما الكبرى وسافرت مع زوجها إلى\nلبنان. وكان جاكوب أكثرهم تعلقًا بها وحبًا لها. كان شابًا في الثانية\nوالعشرين من عمره حين دخلت ريما ذات السنوات الخمس حياته. فصار يقضي جل أوقاته\nمعها. يلاعبها ويداعبها، يقرأ عليها القصص والحكايات، ويستمتع بانفعالاتها\nالبريئة وضحكاتها العفوية، يشتري لها الألعاب والهدايا، ويستغل أوقات العطل\nللسفر معها... وكانت والدتها تطمئن عليها بين يديه --\"\r\n3169,3289,263147,Ellen Schreiber,Vampire Kisses,https://images.gr-assets.com/books/1345950574l/263147.jpg,3.69,43323,\"paranormal, romance\",\"In her small town, dubbed \"\"Dullsville,\"\" sixteen-year-old Raven -- a\nvampire-crazed goth-girl -- is an outcast. But not for long... The\nintriguing and rumored-to-be haunted mansion on top of Benson Hill has\nstood vacant and boarded-up for years. That is, until its mysteriously\nstrange new occupants move in. Who are these creepy people -- especially\nthe handsome, dark, and elusive Alexander Sterling? Or rather, what are\nthey? Could the town prattle actually ring true? Are they vampires? Raven,\nwho secretly covets a vampire kiss, both at the risk of her own mortality\nand Alexander's loving trust, is dying to uncover the truth. Ellen\nSchreiber's spooky and stirring romance tells the story of two outsiders\nwho fall in love in a town where conformity reigns, and ends with a\nshocking surprise.\"\r\n3170,3290,16044981,Kristin Hannah,Fly Away,https://images.gr-assets.com/books/1355338978l/16044981.jpg,3.94,27109,\"fiction, contemporary\",Fly AwayKristin Hannah\r\n3171,3291,28689,Tad Williams,Stone of Farewell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441754723l/28689._SY475_.jpg,4.09,32709,\"fantasy, fiction\",Stone of FarewellTad Williams\r\n3172,3292,76104,\"Adrian Conan Doyle, John Dickson Carr\",The Exploits of Sherlock Holmes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554631048l/76104.jpg,4.4,26232,\"mystery, classics\",Stories feature the classic detective\r\n3173,3293,176839,Anna Quindlen,One True Thing,https://images.gr-assets.com/books/1320401814l/176839.jpg,4.01,30831,\"fiction, contemporary\",\"A mother. A daughter. A shattering choice. From Anna Quindlen, bestselling\nauthor ofBlack and Blue,comes a novel of life, love and everyday acts of\nmercy. \"\"A triumph.\"\" --San Francisco Chronicle From the Paperback edition.\"\r\n3174,3294,23156040,\"Elena Ferrante, Ann Goldstein\",Storia di chi fugge e di chi resta,https://images.gr-assets.com/books/1411338052l/23156040.jpg,4.29,24967,\"fiction, contemporary\",\"Continues the story of Lina and Elena as they push against boundaries in\n1970s Italy, where Lina has left her husband and is working in a factory\nwhile taking care of her son and Elena has graduated college and published\na novel.\"\r\n3175,3295,28250,Trudi Canavan,The Novice,https://images.gr-assets.com/books/1327357280l/28250.jpg,4.07,32944,\"fantasy, fiction\",\"\"\"Even if a magician's powers surface of their own accord, he will soon be\ndead if he does not gain the knowledge of how to control them.\"\" Alone among\nall the novices in the Magicians' Guild, only Sonea comes from lowly\nbeginnings. Yet she has won powerful allies—including Lord Dannyl, newly\npromoted to Guild Ambassador. But Dannyl must now depart for the Elyne\ncourt, leaving Sonea at the mercy of the lies and malicious rumors her\nenemies are busy spreading . . . until the High Lord Akkarin steps in. The\nprice of Akkarin's support is dear, however, because Sonea, in turn, must\nprotect his mysteries—and a secret that could lead a young novice mage deep\ninto the darkness. Meanwhile, Dannyl's first order to resume High Lord\nAkkarin's long-abandoned research into ancient magical knowledge is setting\nhim on an extraordinary journey fraught with unanticipated peril—as he\nmoves ever-closer to a future both wondrous . . . and terrible.\"\r\n3176,3296,97782,Joshua Ferris,Then We Came to the End,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442800496l/97782._SY475_.jpg,3.45,23614,\"fiction, contemporary\",\"No one knows us quite the same way as the men and women who sit beside us\nin department meetings and crowd the office refrigerator with their labeled\nyogurts. Every office is a family of sorts, and the ad agency Joshua Ferris\nbrilliantly depicts in his debut novel is family at its strangest and best,\ncoping with a business downturn in the time-honored way: through gossip,\npranks, and increasingly frequent coffee breaks. With a demon's eye for the\ndetails that make life worth noticing, Joshua Ferris tells a true and funny\nstory about survival in life's strangest environment--the one we pretend is\nnormal five days a week.\"\r\n3177,3297,17202452,Monica  Murphy,One Week Girlfriend,https://images.gr-assets.com/books/1361553462l/17202452.jpg,3.94,44678,\"romance, sports\",One Week GirlfriendMonica  Murphy\r\n3178,3298,45102,Robin Hobb,Ship of Destiny,https://images.gr-assets.com/books/1403180325l/45102.jpg,4.21,34271,\"fantasy, fiction\",\"Chaos stalks the world as the war between Bingtown and Chalced escalates,\nAlthea and Brashen cope with their blinded Liveship, and a powerful dragon,\ncapable of untold destruction or redemption, appears.\"\r\n3179,3299,15990489,Maeve Binchy,A Week in Winter,https://images.gr-assets.com/books/1346827587l/15990489.jpg,3.79,25371,\"fiction, romance\",\"A final novel by the late best-selling author of Tara Road follows the\nefforts of a woman who against the opinions of local detractors turns a\ncoastal Ireland mansion into a holiday resort and receives an assortment of\nfirst guests who throughout the course of a week share laughter and the\nheartache of respective challenges. 200,000 first printing.\"\r\n3180,3300,13154952,John Grisham,Calico Joe,https://images.gr-assets.com/books/1329430545l/13154952.jpg,3.8,27244,\"fiction, sports\",Calico JoeJohn Grisham\r\n3181,3301,282356,\"Hisaya Nakajo, David Ury\",花ざかりの君たちへ 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186378l/282356.jpg,4.16,30403,\"manga, romance\",\"Japanese-American track-and-field star Mizuki has gotten herself a transfer\nto a high school in Japan...but not just any school! To be close to her\nidol, high jumper Izumi Sano, she's going to an all-boys' high school...and\ndisguising herself as a boy! But as fate would have it, they're more than\nclassmates...they're roommates! Now, Mizuki must keep her secret in the\nclassroom, the locker room, and her own bedroom. And her classmates - and\nthe school nurse - must cope with a new transfer student who may make them\nquestion their own orientation...\"\r\n3182,3302,13928,Juliet Marillier,Daughter of the Forest,https://images.gr-assets.com/books/1343589988l/13928.jpg,4.28,39792,\"fantasy, romance\",\"Sorcha, the seventh child and only daughter of Lord Colum, faces the\ndifficult task of having to save her family from its enemies, who have\nbewitched her father and six older brothers while forcing her to choose\nbetween the life she has always known and a special love. 50,000 first\nprinting.\"\r\n3183,3303,556511,Eric Carle,The Very Busy Spider ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348983154l/556511.jpg,4.19,31537,\"fiction, science\",\"The farm animals try to divert a busy little spider from spinning her web,\nbut she persists and produces a thing of both beauty and usefulness.\nReprint.\"\r\n3184,3304,37738,Judy Blume,Freckle Juice,https://images.gr-assets.com/books/1295888341l/37738.jpg,3.82,34579,\"fiction, classics\",\"Andrew wants freckles so badly that he buys Sharon's freckle recipe for\nfifty cents.\"\r\n3185,3305,7155145,Seth Godin,Linchpin: Are You Indispensable?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442610563l/7155145._SY475_.jpg,3.87,26555,\"business, nonfiction\",\"Argues that it's more essential than ever to become indispensable, and the\nkey to being indispensable is overcoming the fears that hold most people\nback so that one can unleash his or her greatest art, passion, insight and\ngenerosity at work. By the best-selling author of Tribes.\"\r\n3186,3306,34053,Rudyard Kipling,Just So Stories for Little Children,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546075870l/34053.jpg,4.09,35708,\"classics, fiction\",Just So Stories for Little ChildrenRudyard Kipling\r\n3187,3307,78508,Candice Millard,The River of Doubt: Theodore Roosevelt's Darkest Journey,https://images.gr-assets.com/books/1430014768l/78508.jpg,4.16,30894,\"history, biography\",\"Chronicles the 1914 expedition of Theodore Roosevelt into the unexplored\nheart of the Amazon basin to explore and map the region surrounding a\ntributary called the River of Doubt, detailing the perilous conditions they\nfaced.\"\r\n3188,3308,4477,\"Atul Gawande, Susanne Kuhlmann-Krieg\",Complications: A Surgeon's Notes on an Imperfect Science,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441151524l/4477._SY475_.jpg,4.23,26267,\"nonfiction, science\",\"In gripping accounts of true cases, surgeon Atul Gawande explores the power\nand the limits of medicine, offering an unflinching view from the scalpel's\nedge. Complications lays bare a science not in its idealized form but as it\nactually is--uncertain, perplexing, and profoundly human. Complications is\na 2002 National Book Award Finalist for Nonfiction.\"\r\n3189,3309,7779059,Jim Butcher,Side Jobs: Stories From The Dresden Files,https://images.gr-assets.com/books/1269115846l/7779059.jpg,4.23,33738,\"fantasy, fiction\",\"Collects the shorter works featuring Chicago's own professional wizard,\nHarry Dresden, including an all-new never-before-published novella. By the\n#1 best-selling author of Changes. Reprint.\"\r\n3190,3310,497164,\"Roland Barthes, Richard Howard\",La chambre claire. Note sur la photographie,https://images.gr-assets.com/books/1312018081l/497164.jpg,3.92,26754,\"art, philosophy\",\"Examining the themes of presence and absence, the relationship between\nphotography and theatre, history and death, these 'reflections on\nphotography' begin as an investigation into the nature of photographs.\nThen, as Barthes contemplates a photograph of his mother as a child, the\nbook becomes an exposition of his own mind.\"\r\n3191,3311,690866,Amy Tan,The Hundred Secret Senses,https://images.gr-assets.com/books/1327869967l/690866.jpg,3.98,32002,\"fiction, contemporary\",\"A \"\"New York Times\"\" bestseller and a finalist for the Orange Prize for\nfiction, \"\"The Hundred Secret Senses\"\" is the wisest and most captivating\nnovel Tan has written (\"\"The Boston Globe\"\").\"\r\n3192,3312,23638955,Mary Kubica,Pretty Baby,https://images.gr-assets.com/books/1438274437l/23638955.jpg,3.75,24685,\"fiction, mystery\",Pretty BabyMary Kubica\r\n3193,3313,2595138,Andrew Davidson,The Gargoyle,https://images.gr-assets.com/books/1368598513l/2595138.jpg,3.96,32699,\"fiction, fantasy\",\"Awakening in a burn ward after being horribly burned in a terrible car\naccident, the cynical narrator is visited by a beautiful and enigmatic\nsculptress of gargoyles who tells him that they had once been lovers in\nmedieval Germany.\"\r\n3194,3314,823,Neal Stephenson,Quicksilver,https://images.gr-assets.com/books/1377095669l/823.jpg,3.92,27675,\"fiction, fantasy\",\"Neal Stephenson's Quicksilver is here. A monumental literary feat that\nfollows the author's critically acclaimed New York Times bestseller\nCryptonomicon, it is history, adventure, science, truth, invention, sex,\nabsurdity, piracy, madness, death, and alchemy. It sweeps across continents\nand decades with the power of a roaring tornado, upending kings, armies,\nreligious beliefs, and all expectations. It is the story of Daniel\nWaterhouse, fearless thinker and conflicted Puritan, pursuing knowledge in\nthe company of the greatest minds of Baroque-era Europe, in a chaotic world\nwhere reason wars with the bloody ambitions of the mighty, and where\ncatastrophe, natural or otherwise, can alter the political landscape\novernight. It is a chronicle of the breathtaking exploits of \"\"Half-Cocked\nJack\"\" Shaftoe -- London street urchin turned swashbuckling adventurer and\nlegendary King of the Vagabonds -- risking life and limb for fortune and\nlove while slowly maddening from the pox ... and Eliza, rescued by Jack\nfrom a Turkish harem to become spy, confidante, and pawn of royals in order\nto reinvent a contentious continent through the newborn power of finance. A\ngloriously rich, entertaining, and endlessly inventive novel that brings a\nremarkable age and its momentous events to vivid life -- a historical epic\npopulated by the likes of Samuel Pepys, Isaac Newton, William of Orange,\nBenjamin Franklin, and King Louis XIV -- Quicksilver is an extraordinary\nachievement from one of the most original and important literary talents of\nour time. And it's just the beginning ...\"\r\n3195,3316,176327,\"Michael Buckley, Peter Ferguson\",The Fairy-Tale Detectives,https://images.gr-assets.com/books/1349272153l/176327.jpg,4.01,38655,\"fantasy, mystery\",Recorded Books Local 05-20-2006 $59.99.\r\n3196,3317,149847,\"Terry Pratchett, Stephen Briggs\",Mort - playtext,https://images.gr-assets.com/books/1353573597l/149847.jpg,4.29,27706,\"fantasy, fiction\",\"Death comes to us all. When he came to Mort, he offered him a job. But when\nMort is left in charge for an evening, he allows his heart to rule his head\nand soon the whole of causality and the future of the Discworld itself, are\nat risk. Along the way, Mort encounters not only Death's adopted daughter,\nYsabell - who has been 16 for 35 years - and his mysterious manservant\nAlbert - whose cooking can harden an artery at ten paces - but also an\nincompetent wizard with a talking doorknocker and a beautiful, but rather\nbad-tempered and dead, princess. He also, of course, meets Death. On Terry\nPratchett's Discworld, Death really is a 7 foot skeleton in a black hooded\nrobe and wielding a scythe. He is also fond of cats, enjoys a good curry,\nand rides around the skies on a magnificent white horse called Binky.\"\r\n3197,3318,6909544,Caragh M. O'Brien,Birthmarked,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442562480l/6909544._SX318_.jpg,3.89,37656,\"fantasy, romance\",BirthmarkedCaragh M. O'Brien\r\n3198,3319,284440,\"Derek Landy, Tom Percival\",Skulduggery Pleasant,https://images.gr-assets.com/books/1334279051l/284440.jpg,4.21,32785,\"fantasy, mystery\",\"Meet Skulduggery Pleasant Ace Detective Snappy Dresser Razor–tongued Wit\nCrackerjack Sorcerer and Walking, Talking, Fire-throwing Skeleton —as well\nas ally, protector, and mentor of Stephanie Edgley, a very unusual and\ndarkly talented twelve-year-old. These two alone must defeat an all-\nconsuming ancient evil. The end of the world? Over his dead body.\"\r\n3199,3320,31818,Andy Warhol,The Philosophy of Andy Warhol (From A to B and Back Again),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423704668l/31818.jpg,3.77,24879,\"art, philosophy\",\"Warhol offers his observations of love, beauty, fame, work, and art and\ndiscusses the continuous play and display of his many fetishes\"\r\n3200,3321,7805,Vladimir Nabokov,Pale Fire,https://images.gr-assets.com/books/1388155863l/7805.jpg,4.19,26377,\"fiction, classics\",\"Nabokov's parody, half poem and half commentary on the poem, deals with the\nescapades of the deposed king of Zemala in a New England college town\"\r\n3201,3322,89788,Tracy Chevalier,The Lady and the Unicorn,https://images.gr-assets.com/books/1311281285l/89788.jpg,3.67,32490,\"fiction, art\",\"Interweaves historical fact with fiction to explore the mystery behind the\ncreation of the Lady and the Unicorn tapestries, woven at the end of the\nfifteenth century, which today hang in the Cluny Museum in Paris.\"\r\n3202,3323,5338,\"Charles Dickens, Michael Slater\",A Christmas Carol and Other Christmas Writings,https://images.gr-assets.com/books/1388952779l/5338.jpg,4.13,28675,\"classics, fiction\",\"After reading Christmas Carol, the notoriously reculsive Thomas Carlyle was\n\"\"seized with a perfect convulsion of hospitality\"\" and threw not one but two\nChristmas dinner parties. The impact of the story may not always have been\nso dramatic but, along with Dickens other Christmas writings, it has had a\nlasting and significant influence upon our ideas about the Christmas\nspirit, and about the season as a time for celebration, charity, and\nmemory.\"\r\n3203,3324,18007533,B.J. Novak,One More Thing: Stories and Other Stories,https://images.gr-assets.com/books/1393786903l/18007533.jpg,3.66,28922,\"fiction, contemporary\",\"A debut collection by a writer for the Emmy Award-winning series The Office\nincludes the title story, in which a boy's lucrative sweepstakes win proves\nmore harm than good for his family.\"\r\n3204,3326,5212771,Rachel Caine,Carpe Corpus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214475l/5212771.jpg,4.21,41536,\"paranormal, fantasy\",Carpe CorpusRachel Caine\r\n3205,3327,16120760,Nathan Filer,The Shock of the Fall,https://images.gr-assets.com/books/1356034436l/16120760.jpg,3.79,21798,\"fiction, contemporary\",\"***This book has also been published as Where the Moon Isn't.*** Winner of\nthe 2013 Costa First Novel Award \"\"A stunning novel. Ambitious and\nexquisitely realized . . . clearly the work of a major new talent.\"\" —S. J.\nWatson, New York Times bestselling author of Before I Go to Sleep While on\nvacation with their parents, Matthew Homes and his older brother sneak out\nin the middle of the night. Only Matthew comes home safely. Ten years\nlater, Matthew tells us, he has found a way to bring his brother back...\nWhat begins as the story of a lost boy turns into a story of a brave man\nyearning to understand what happened that night, in the years since, and to\nhis very person. Unafraid to look at the shadows of our hearts, Nathan\nFiler's rare and brilliant debut The Shock of the Fall shows us the\nstrength that is rooted in resilience and love.\"\r\n3206,3328,13597728,Madeleine Roux,Asylum,https://images.gr-assets.com/books/1371333892l/13597728.jpg,3.64,29687,\"fiction, fantasy\",\"\"\"Three teens at a summer program for gifted students uncover shocking\nsecets in the sanatorium-turned-dorm where they're staying--secrets that\nlink them all to the asylum's dark past\"\"--\"\r\n3207,3329,24388326,Margaret Atwood,The Heart Goes Last,https://images.gr-assets.com/books/1493598486l/24388326.jpg,3.37,26841,\"fiction, contemporary\",The Heart Goes LastMargaret Atwood\r\n3208,3330,30260,Kim Harrison,A Fistful of Charms,https://images.gr-assets.com/books/1348805978l/30260.jpg,4.28,43181,\"fantasy, paranormal\",\"The evil night things that prowl Cincinnati despise witch and bounty hunter\nRachel Morgan. Her new reputation for the dark arts is turning human and\nundead heads alike with the intent to possess, bed, and kill her -- not\nnecessarily in that order. Now a mortal lover who abandoned Rachel has\nreturned, haunted by his secret past. And there are those who covet what\nNick possesses -- savage beasts willing to destroy the Hollows and everyone\nin it if necessary. Forced to keep a low profile or eternally suffer the\nwrath of a vengeful demon, Rachel must nevertheless act quickly. For the\npack is gathering for the first time in millennia to ravage and to rule.\nAnd suddenly more than Rachel's soul is at stake.\"\r\n3209,3331,213367,John Piper,Desiring God: Meditations of a Christian Hedonist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924844l/213367.jpg,4.19,25099,\"christian, religion\",\"Piper reveals that the debate between duty and delight doesn't truly exist:\ndelight is our duty. Join him as he unveils stunning, life-impacting truths\nthat you saw in the Bible but never dared to believe.\"\r\n3210,3332,12813630,Holly Black,The Coldest Girl in Coldtown,https://images.gr-assets.com/books/1367312471l/12813630.jpg,3.86,37682,\"fantasy, paranormal\",\"Tana lives in a world where walled cities called Coldtowns exist. In them,\nquarantined monsters and humans mingle in a decadently bloody mix of\npredator and prey. The only problem is, once you pass through Coldtown's\ngates, you can never leave. One morning, after a perfectly ordinary party,\nTana wakes up surrounded by corpses. The only other survivors of this\nmassacre are her exasperatingly endearing ex-boyfriend, infected and on the\nedge, and a mysterious boy burdened with a terrible secret. Shaken and\ndetermined, Tana enters a race against the clock to save the three of them\nthe only way she knows how: by going straight to the wicked, opulent heart\nof Coldtown itself. The Coldest Girl in Coldtown is a wholly original story\nof rage and revenge, of guilt and horror, and of love and loathing from\nbestselling and acclaimed author Holly Black.\"\r\n3211,3333,13079,Carl Hiaasen,Skinny Dip,https://images.gr-assets.com/books/1375588741l/13079.jpg,3.79,29862,\"fiction, mystery\",\"Doctoring water samples to help his corrupt agribusiness employer continue\nillegal dumping in the Everglades, biologist Chaz Perrone attempts to\nmurder his wife, who has figured out his scam and who survives to plot her\nhusband's downfall. 300,000 first printing.\"\r\n3212,3334,23492741,Alice Hoffman,The Marriage of Opposites,https://images.gr-assets.com/books/1438581390l/23492741.jpg,3.86,29179,\"fiction, romance\",\"\"\"From the New York Times bestselling author of The Dovekeepers and The\nMuseum of Extraordinary Things: a forbidden love story set on the tropical\nisland of St. Thomas about the extraordinary woman who gave birth to\npainter Camille Pissarro the Father of Impressionism\"\"--\"\r\n3213,3336,2295829,Rachel Caine,Feast of Fools,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182868l/2295829.jpg,4.17,43435,\"paranormal, fantasy\",\"Claire tries to spoil the sinister trap set by Mr. Bishop, an ancient\nvampire who is out to destroy the peace held between the vampires and\nhumans of Morganville at a formal ball.\"\r\n3214,3337,13545075,Neal Shusterman,UnWholly,https://images.gr-assets.com/books/1337871062l/13545075.jpg,4.25,33679,\"fiction, fantasy\",\"\"\"Thanks to Connor, Lev, and Risa, and their high-profile revolt at Happy\nJack Harvest Camp, people can no longer turn a blind eye to unwinding.\nRidding society of troublesome teens and, in the same stroke, providing\nmuch-needed tissues for transplant might be convenient, but its morality\nhas finally been brought into question. However, unwinding has become big\nbusiness, and there are powerful political and corporate interests that\nwant to see it not only continue, but expand, allowing the unwinding of\nprisoners and the impoverished. Cam is a teen who does not exist. He is\nmade entirely out of the parts of other unwinds. Cam, a 21st century\nFrankenstein, struggles with a search for identity and meaning, as well as\nthe concept of his own soul, if indeed a rewound being can have one. When a\nsadistic bounty hunter who takes \"\"trophies\"\" from the unwinds he captures\nstarts to pursue Connor, Risa and Lev, Cam finds his fate inextricably\nbound with theirs\"\"--\"\r\n3215,3338,6751,David Foster Wallace,Consider the Lobster,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388854217l/6751.jpg,4.25,26551,\"nonfiction, fiction\",\"A collection of essays by the award-winning author of Infinite Jest shares\nwhimsical and biting observations about such topics as the Bush-Kerry\npresidential race, the pain experienced by lobsters while they are being\nprepared for the feast, and Franz Kafka's questionable sense of humor.\nReprint.\"\r\n3216,3339,7005865,Eoin Colfer,The Atlantis Complex,https://images.gr-assets.com/books/1274866326l/7005865.jpg,3.97,39307,\"fantasy, fiction\",The Atlantis ComplexEoin Colfer\r\n3217,3340,43781,Anne Rice,Merrick,https://images.gr-assets.com/books/1170230458l/43781.jpg,3.71,32734,\"fiction, paranormal\",MerrickAnne Rice\r\n3218,3341,18739426,Brandon Sanderson,The Bands of Mourning,https://images.gr-assets.com/books/1450134973l/18739426.jpg,4.45,28866,\"fantasy, fiction\",\"With The Alloy of Law and Shadows of Self , Brandon Sanderson surprised\nreaders with a New York Times bestselling spinoff of his Mistborn books,\nset after the action of the trilogy, in a period corresponding to late\n19th-century America.Now, with The Bands of Mourning , Sanderson continues\nthe story. The Bands of Mourning are the mythical metalminds owned by the\nLord Ruler, said to grant anyone who wears them the powers that the Lord\nRuler had at his command. Hardly anyone thinks they really exist. A kandra\nresearcher has returned to Elendel with images that seem to depict the\nBands, as well as writings in a language that no one can read. Waxillium\nLadrian is recruited to travel south to the city of New Seran to\ninvestigate. Along the way he discovers hints that point to the true goals\nof his uncle Edwarn and the shadowy organization known as The Set.\"\r\n3219,3342,11987,\"Albert Camus, Justin O'Brien\",Le Mythe de Sisyphe,https://images.gr-assets.com/books/1401656886l/11987.jpg,4.18,30221,\"philosophy, classics\",Essays deal with nihilism and the problem of suicide\r\n3220,3343,16071745,Lauren Graham,\"Someday, Someday, Maybe \",https://images.gr-assets.com/books/1480527588l/16071745.jpg,3.49,30829,\"fiction, contemporary\",\"A struggling actress in 1990s New York City searches for work and the\nperfect hair product while befriending a rival and resisting her father's\npressure to get a \"\"real\"\" job.\"\r\n3221,3344,12204,Robert Frost,Mountain Interval,https://images.gr-assets.com/books/1415677882l/12204.jpg,4.27,30193,\"poetry, classics\",\"The fictional biography of \"\"The Kids in the Hall\"\" character Buddy Cole\nrecounts his early years as the twenty-third child of Canadian pig farmers\nand the events leading to his fifteen minutes of tabloid fame\"\r\n3222,3345,19547856,Becky Albertalli,Simon vs. the Homo Sapiens Agenda,https://images.gr-assets.com/books/1402915678l/19547856.jpg,4.26,53570,\"contemporary, romance\",Simon vs. the Homo Sapiens AgendaBecky Albertalli\r\n3223,3346,383206,\"Elizabeth Gaskell, Pam Morris\",Wives and Daughters,https://images.gr-assets.com/books/1348267609l/383206.jpg,4.07,32029,\"classics, fiction\",\"Wives and DaughtersElizabeth Gaskell, Pam Morris\"\r\n3224,3347,12558285,A.G. Howard,Splintered,https://images.gr-assets.com/books/1340134213l/12558285.jpg,3.96,37225,\"fantasy, romance\",\"A descendant of the inspiration for \"\"Alice's Adventures in Wonderland,\"\"\nAlyssa Gardner fears she is mentally ill until she finds that Wonderland is\nreal and, if she passes a series of tests to fix Alice's mistakes, she may\nsave her family from their curse.\"\r\n3225,3348,153540,Virginia Lee Burton,The Little House,https://images.gr-assets.com/books/1363184334l/153540.jpg,4.29,34002,\"fiction, classics\",\"A country house is unhappy when the city, with all its buildings and\ntraffic, grows up around her.\"\r\n3226,3349,6174,\"Primo Levi, Stuart J. Woolf, Philip Roth\",Se questo è un uomo,https://images.gr-assets.com/books/1414374949l/6174.jpg,4.28,25625,\"history, philosophy\",The author describes his twenty month ordeal in the Nazi death camp.\r\n3227,3350,500743,Cinda Williams Chima,The Wizard Heir,https://images.gr-assets.com/books/1298426467l/500743.jpg,4.14,33653,\"fantasy, fiction\",\"Seph, an orphaned and untrained wizard who is unable to control his growing\npowers, is sent to a secluded boys' school in Maine where the headmaster\npromises to train him in magic and initiate him into his mysterious order\nof wizards.\"\r\n3228,3351,32831,\"Jules Verne, Caleb Carr, Jordan Stump\",L'île mystérieuse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388278046l/32831.jpg,4.08,26440,\"fantasy, classics\",\"Five Union prisoners of war escape from a Confederate prison camp in a hot-\nair balloon, only to crash land on an unknown island where they must learn\nto survive on their own, in a bold new translation of Verne's classic\nadventure story, featuring a new introduction by Caleb Carr. Reprint.\"\r\n3229,3352,321577,Susan Vreeland,Girl in Hyacinth Blue,https://images.gr-assets.com/books/1364742503l/321577.jpg,3.72,31883,\"fiction, art\",\"Chronicles the history of a painting and the lives with which it\nintersects, from the artist's inspiration to its admiration by two art\nscholars three hundred years later. Reprint.\"\r\n3230,3353,457762,William Steig,Sylvester and the Magic Pebble,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328018633l/457762.jpg,4.14,36260,\"fantasy, fiction\",\"A cherished classic is brought to life with the audio stylings of renowned\nactor James Earl Jones. Sylvester can’t believe his luck when he finds a\nmagic pebble that can make wishes come true. But when a lion jumps out at\nhim on his way home, Sylvester is shocked into making a wish that has\nunexpected consequences. After overcoming a series of obstacles, Sylvester\nis eventually reunited with his loving family. Illustrated with William\nSteig’s glowing pictures, this winner of the Caldecott Medal is beloved by\nchildren everywhere. This package includes a paperback book along with a CD\nof this modern classic read by legendary actor James Earl Jones.\"\r\n3231,3354,9542439,Philippa Gregory,The Lady of the Rivers,https://images.gr-assets.com/books/1327946219l/9542439.jpg,3.96,31744,\"fiction, history\",\"When the death of Joan of Arc shows her the dangers faced by strong women,\nJacquetta, a psychic descendant of a river goddess, studies alchemy and\nbecomes the secret wife of Richard Woodville before returning to the court\nof Henry VI.\"\r\n3232,3355,8437667,Harlan Coben,Live Wire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395350143l/8437667.jpg,4.07,28849,\"mystery, fiction\",\"When a pregnant tennis star reports that her rock-artist husband has gone\nmissing amid scandalous rumors, Myron Bolitar is forced to confront deep\nsecrets about his client's past while struggling with fatherhood roles in\nhis personal life. By the Edgar Award-winning author of Caught. Reprint. A\nbest-selling novel. 850,000 first printing.\"\r\n3233,3356,818811,\"Carolyn Jessop, Laura Palmer\",Escape,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442640131l/818811._SY475_.jpg,3.96,28581,\"memoir, nonfiction\",\"A woman forced into marriage as a teenager with a man thirty-two years her\nsenior describes the years of psychological abuse, her decision to escape\nwith her eight children, and her battle with the church over custody of her\nchildren.\"\r\n3234,3357,15154,David Baldacci,The Collectors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166671030l/15154.jpg,4.01,29596,\"fiction, mystery\",\"Oliver Stone and his Camel Club are in a race to stop a man who is\ndetermined to auction off America to the highest bidder: Roger Seagraves is\nselling America to her enemies, one devastating secret at a time. On a\nlocal level, Annabelle Conroy, the most gifted con artist of her\ngeneration, is becoming a bit of a Robin Hood as she plots a monumental\nscam against one of the most ruthless businessmen on earth. As the killings\non both fronts mount, the Camel Club fights the most deadly foes they've\never faced.\"\r\n3235,3358,841628,Douglas Adams,\"The Hitchhiker's Guide to the Galaxy: The Trilogy of Four (Hitchhiker's Guide, #1-4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348461082l/841628.jpg,4.51,27855,\"fiction, fantasy\",\"A one-volume edition charting Arthur Dent's odyssey through space,\ncomprising:\"\"The Hitchhikers Guide to the Galaxy\"\": One Thursday lunchtime\nthe Earth gets demolished to make way for a hyperspace bypass. For Arthur,\nwho has just had his house demolished, this is too much. Sadly, the\nweekend's just begun.\"\"The Restaurant at the End of the Universe\"\": When all\nissues of space, time, matter and the nature of being are resolved, only\none question remains: Where shall we have dinner? \"\"The Restaurant at the\nEnd of the Universe\"\" provides the ultimate gastronomic experience and, for\nonce, there is no morning after.\"\"Life, the Universe and Everything\"\": In\nconsequence of a number of stunning catastrophes, Arthur Dent is surprised\nto find himself living in a hideously miserable cave on prehistoric Earth.\nAnd then, just as he thinks that things cannot possibly get any worse, they\nsuddenly do.\"\"So Long, and Thanks for all the Fish\"\": Arthur Dent's sense of\nreality is in its dickiest state when he suddenly finds the girl of his\ndreams. They go in search of God's Final Message and, in a dramatic break\nwith tradition, actually find it.\"\r\n3236,3359,78876,Terry Pratchett,Maskerade,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170961678l/78876._SY475_.jpg,4.06,34094,\"fantasy, fiction\",\"The Ghost in the bone-white mask who haunts the Ankh-Morpork Opera House\nwas always considered a benign presence—some would even say lucky—until he\nstarted killing people. The sudden rash of bizarre backstage deaths now\nthreatens to mar the operatic debut of country girl Perdita X. (nee Agnes)\nNitt, she of the ample body and ampler voice. Perdita's expected to hide in\nthe chorus and sing arias out loud while a more petitely presentable\nsoprano mouths the notes. But at least it's an escape from scheming Nanny\nOgg and old Granny Weatherwax back home, who want her to join their witchy\nranks. Once Granny sets her mind on something, however, it's difficult—and\noften hazardous—to dissuade her. And no opera-prowling phantom fiend is\ngoing to keep a pair of determined hags down on the farm after they've seen\nAnkh-Morpork.\"\r\n3237,3360,219205,Stephen R. Donaldson,Lord Foul's Bane,https://images.gr-assets.com/books/1333217655l/219205.jpg,3.71,31771,\"fantasy, fiction\",\"Deprived of all human contact and in a state of moral isolation, Thomas\nCovenant is transported to the mysterious, magical world known as the Land,\nwhere he becomes the tool of the Land's immortal enemy, Lord Foul the\nDespiser. Reissue.\"\r\n3238,3361,50937,\"Marcus Buckingham, Curt Coffman\",\"First, Break All the Rules: What the World's Greatest Managers Do Differently \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357545l/50937._SY475_.jpg,3.92,27207,\"business, nonfiction\",\"First, Break All the Rules: What the World's Greatest Managers Do Differently Marcus Buckingham, Curt Coffman\"\r\n3239,3362,47994,Terry Pratchett,The Last Continent,https://images.gr-assets.com/books/1332672492l/47994.jpg,3.99,32861,\"fantasy, fiction\",\"Something is amiss at Unseen Unversity, Ankh-Morpork's most prestigious\n(i.e., only) institution of higher learning. A professor is missing—but a\nsearch party is on the way! A bevy of senior wizards will follow the trail\nwherever it leads—even to the other side of Discworld, where the Last\nContinent, Fourecks, is under construction. Imagine a magical land where\nrain is but a myth and the ordinary is strange and the past and present run\nside by side. experience the terror as you encounter a Mad Dwarf, the Peach\nButt, and the dreaded Meat Pie Floater. Feel the passion as the denizens of\nthe Last Continent learn what happens when rain falls and the rivers fill\nwith water (it spoils regattas, for one thing). Thrill to the promise of\nnext year's regatta, in remote, rustic Didjabringabeeralong. It'll be\nasolutely gujeroo (no worries).\"\r\n3240,3364,205476,\"Thornton Wilder, Donald Margulies, Tappan Wilder\",Our Town: A Play in Three Acts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442891231l/205476.jpg,3.63,35296,\"classics, fiction\",\"Our Town was first produced and published in 1938 to wide acclaim. This\nPulitzer Prize–winning drama of life in the town of Grover 's Corners, an\nallegorical representation of all life, has become a classic. It is\nThornton Wilder's most renowned and most frequently performed play. It is\nnow reissued in this handsome hardcover edition, featuring a new Foreword\nby Donald Margulies, who writes, \"\"You are holding in your hands a great\nAmerican play. Possibly the great American play.\"\" In addition, Tappan\nWilder has written an eye-opening new Afterword, which includes Thornton\nWilder's unpublished notes and other illuminating photographs and\ndocumentary material.\"\r\n3241,3365,3047848,Sara Shepard,Heartless,https://images.gr-assets.com/books/1265496817l/3047848.jpg,4.1,32754,\"mystery, fiction\",\"#1 New York Times bestselling series The seventh book in the #1 New York\nTimes bestselling series that inspired the hit ABC Family TV show Pretty\nLittle Liars. Rosewood’s four prettiest little liars are back, but this\ntime they swear they’re telling the truth. Hanna, Aria, Spencer, and Emily\nfound a body in the woods, but when they take the cops back it’s vanished\nwithout a trace. And after those same woods go up in flames, the girls all\nsee someone who looks exactly like Ali emerge—but that’s just not possible.\nWith everyone convinced these four are simply out for attention, will\nanyone believe it when the real killer comes after them? Full of unexpected\ntwists and shocking revelations, Heartless is the seventh book in New York\nTimes bestselling author Sara Shepard’s compelling Pretty Little Liars\nseries.\"\r\n3242,3366,32501,Michael Connelly,Echo Park,https://images.gr-assets.com/books/1168391416l/32501.jpg,4.07,30066,\"mystery, fiction\",Echo ParkMichael Connelly\r\n3243,3367,113138,David Baldacci,The Winner,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347754561l/113138.jpg,4.06,27904,\"fiction, thriller\",\"A rags-to-riches deal for single mother LuAnn Tyler is deadlier than she\never could have imagined in this #1 New York Times bestselling thriller\nfrom David Baldacci. THE DREAM She is twenty, beautiful, dirt-poor, and\nhoping for a better life for her infant daughter when LuAnn Tyler is\noffered the gift of a lifetime, a $100 million lottery jackpot. All she has\nto do is change her identity and leave the U.S. forever. THE KILLER It's an\noffer she dares to refuse...until violence forces her hand and thrusts her\ninto a harrowing game of high-stakes, big-money subterfuge. It's a price\nshe won't fully pay...until she does the unthinkable and breaks the promise\nthat made her rich. THE WINNER For if LuAnn Tyler comes home, she will be\npitted against the deadliest contestant of all: the chameleon-like\nfinancial mastermind who changed her life. And who can take it away at\nwill...\"\r\n3244,3369,94319,Anthony Horowitz,Ark Angel,https://images.gr-assets.com/books/1311648941l/94319.jpg,4.11,33935,\"fiction, mystery\",\"After recovering from a near fatal gunshot wound, teenage spy Alex Rider\nembarks on a new mission to stop a group of eco-terrorists from sabotaging\nthe launch of the first outer space hotel. Reprint.\"\r\n3245,3370,68811,Michael Ende,Momo,https://images.gr-assets.com/books/1420905611l/68811.jpg,4.29,28857,\"fiction, classics\",Roman.\r\n3246,3371,20423680,Blake Crouch,The Last Town,https://images.gr-assets.com/books/1399508172l/20423680.jpg,4.09,29258,\"horror, thriller\",The Last TownBlake Crouch\r\n3247,3372,23009402,Sarah Dessen,Saint Anything,https://images.gr-assets.com/books/1414680105l/23009402.jpg,4.05,35111,\"contemporary, romance\",\"Includes an excerpt from an upcoming novel by the author entitled 'The moon\n& more.'\"\r\n3248,3373,13320466,Ayana Mathis,The Twelve Tribes of Hattie,https://images.gr-assets.com/books/1354713124l/13320466.jpg,3.46,28058,\"fiction, contemporary\",The Twelve Tribes of HattieAyana Mathis\r\n3249,3374,16434,Dean Koontz,The Taking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924207l/16434.jpg,3.78,29721,\"horror, fiction\",\"A slam-bang, all-out thriller . . . but also poignant and noble, with\nheroism, self-sacrifice, and redemption as the order of the day. Tightly\nwoven, action-packed, and terrifically suspenseful throughout.--\"\"The Flint\nJournal.\"\" Available in a tall Premium Edition. Reissue.\"\r\n3250,3375,226706,V.C. Andrews,If There Be Thorns,https://images.gr-assets.com/books/1321684186l/226706.jpg,3.75,33086,\"fiction, horror\",\"Now a major Lifetime movie event—Book Three of the Dollanganger series that\nbegan with Flowers in the Attic—the novel of forbidden love that captured\nthe world’s imagination and earned V.C. Andrews a fiercely devoted fanbase.\nThey hide the shocking truth to protect their children. But someone who\nknows their dark secret is watching. Christopher and Cathy have made a\nloving home for their handsome and talented teenager Jory, their\nimaginative nine-year-old Bart, and a sweet baby daughter. Then an elderly\nwoman and her strange butler move in next door. The Old Woman in Black\nwatches from her window, lures lonely Bart inside with cookies and ice\ncream, and asks him to call her “grandmother.” Slowly Bart transforms, each\nvisit pushing him closer to the edge of madness and violence, while his\nanguished parents can only watch. For Cathy and Chris, the horrors of the\npast have come home…and everything they love may soon be torn from them.\"\r\n3251,3376,228696,\"Jane Yolen, John Schoenherr\",Owl Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390829388l/228696.jpg,4.2,33642,\"fiction, poetry\",\"On a winter's night under a full moon, a father and daughter trek into the\nwoods to see the Great Horned Owl.\"\r\n3252,3377,12857,\"Fyodor Dostoyevsky, Constance Garnett, Gary Saul Morson\", Игрок ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348607722l/12857.jpg,3.88,21358,\"classics, fiction\",\"Three sons find their violent and vengeful lives exposed when their\ndespicable father is murdered, and each man struggles to come to terms with\nhis guilt over his involvement in the crime.\"\r\n3253,3378,13413589,Patricia Briggs,Frost Burned,https://images.gr-assets.com/books/1344299919l/13413589.jpg,4.35,36759,\"fantasy, paranormal\",Frost BurnedPatricia Briggs\r\n3254,3379,59145,Honoré de Balzac,Le Père Goriot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389768126l/59145.jpg,3.82,26070,\"classics, fiction\",\"This is the tragic story of a father whose obsessive love for his two\ndaughters leads to his financial and personal ruin. It is set against the\nbackground of a whole society driven by social ambition and lust for money.\nThe detailed descriptions of both affluence and squalor in the Paris of\n1819 are an integral part of the drama played out by a wide range of\ncharacters, including the sinister but fascinating Vautrin. Unquestionably\none of Balzac's finest novels, Pére Goriot still has the power to move the\nmodern reader.\"\r\n3255,3380,3522419,\"Jo Nesbø, Don Bartlett\",Sorgenfri,https://images.gr-assets.com/books/1327312660l/3522419.jpg,3.98,31265,\"crime, mystery\",\"SorgenfriJo Nesbø, Don Bartlett\"\r\n3256,3381,31426,\"Sylvia Plath, Ted Hughes\",The Collected Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168276210l/31426.jpg,4.2,26295,\"poetry, classics\",\"A new edition of Sylvia Plath's Pulitzer Prize-winning Collected Poems,\nedited and with an introduction by Ted Hughes\"\r\n3257,3382,84151,Sherrilyn Kenyon,Night Play,https://images.gr-assets.com/books/1316131575l/84151.jpg,4.36,41837,\"paranormal, romance\",\"Fed up with men and romance, Bride McTierney never expected to find herself\nfalling in love with Vane Kattalakis, a tortured and mysterious man who\njust happens to be a Were-Hunter wolf on the run from his enemies.\nOriginal.\"\r\n3258,3383,9086994,Paulo Coelho,Aleph,https://images.gr-assets.com/books/1397502326l/9086994.jpg,3.37,17563,\"fiction, philosophy\",\"Transform your life. Rewrite your destiny. In his most personal novel to\ndate, internationally bestselling author Paulo Coelho returns with a\nremarkable journey of self-discovery. Like the main character in his much-\nbeloved The Alchemist, Paulo is facing a grave crisis of faith. As he seeks\na path of spiritual renewal and growth, his only real option is to begin\nagain—to travel, to experiment, to reconnect with people and the landscapes\naround him. Setting off to Africa, and then to Europe and Asia via the\nTrans-Siberian railroad, he initiates a journey to revitalize his energy\nand passion. Even so, he never expects to meet Hilal. A gifted young\nviolinist, she is the woman Paulo loved five hundred years before—and the\nwoman he betrayed in an act of cowardice so far-reaching that it prevents\nhim from finding real happiness in this life. Together they will initiate a\nmystical voyage through time and space, traveling a path that teaches love,\nforgiveness, and the courage to overcome life’s inevitable challenges.\nBeautiful and inspiring, Aleph invites us to consider the meaning of our\nown personal journeys.\"\r\n3259,3384,12351649,R.L. Mathewson,Perfection,https://images.gr-assets.com/books/1406578931l/12351649.jpg,4.16,50146,\"romance, contemporary\",\"Zoe is used to taking care of herself and has long ago accepted that if\nanything bad was going to happen, it was going to happen to her. So when\nshe loses her job over something most bosses would probably be happy with\nand her life starts going down hill from there she doesn't expect it to get\nany better. She certainly didn't expect any help from the loud jerk next\ndoor, but then again she has nothing to lose so puts her trust in him and\nhopes for the best. What she didn't expect was the once in a lifetime\nopportunity that he offers her through an arrangement where they both\nbenefit and no one is supposed to get hurt, but she should have known\nbetter because her luck has never been that good.Like most Bradfords,\nTrevor has a soft spot for food, but that's about all. He leads a pretty\nstraightforward life and likes to keep things simple and that includes his\nrelationships. He wants the perfect woman and knows exactly what she'll be\nlike. So when he discovers much to his horror that he's thinking about his\nfrumpy little neighbor he decides the best way to get his head straight is\nby working her out of his system. He'll keep her around, but only until he\nfinds perfection.\"\r\n3260,3385,6687247,Andrew Ross Sorkin,Too Big to Fail The Inside Story of How Wall Street and Washington Fought to Save the Financial System from Crisis - and Lost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347504190l/6687247.jpg,4.09,25493,\"business, history\",\"Presents a moment-by-moment account of the recent financial collapse that\ndocuments state efforts to prevent an economic disaster, offering insight\ninto the pivotal consequences of decisions made throughout the past decade.\"\r\n3261,3386,1470232,Kristin Hannah,Magic Hour,https://images.gr-assets.com/books/1320542057l/1470232.jpg,4.1,27778,\"fiction, romance\",\"Reluctantly giving up her California practice working with troubled\nchildren, Julia Cates is forced to draw on all her skills to deal with a\nyoung mute girl found abandoned and terrified in her Pacific Northwest\nhometown and joins forces with Max Cerasin, a handsome physician with a\nmysterious past, to help the young girl. By the best-selling author of\nBetween Sisters. Reprint.\"\r\n3262,3387,4796,\"John Steinbeck, Susan Shillinglaw\",The Winter of our Discontent,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197029l/4796.jpg,3.99,28050,\"classics, fiction\",\"The Winter of our DiscontentJohn Steinbeck, Susan Shillinglaw\"\r\n3263,3388,373755,William Faulkner,\"Absalom, Absalom!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388474680l/373755.jpg,3.96,30283,\"classics, fiction\",\"Absalom, Absalom!William Faulkner\"\r\n3264,3389,22510983,\"Zoe Sugg, Siobhan Curham\",Girl Online,https://images.gr-assets.com/books/1410112710l/22510983.jpg,3.77,37177,\"contemporary, romance\",\"The incredible debut novel from YouTube phenomenon Zoe Sugg, aka Zoella.I\nhave this dream that, secretly, all teenage girls feel exactly like me. And\nmaybe one day, when we realize that we all feel the same, we can all stop\npretending we're something we're not... But until that day, I'm going to\nkeep it real on this blog and keep it unreal in real life.Penny has a\nsecret. Under the alias Girl Online, Penny blogs her hidden feelings about\nfriendship, boys, high school drama, her crazy family, and the panic\nattacks that have begun to take over her life. When things go from bad to\nworse, her family whisks her away to New York, where she meets Noah, a\ngorgeous, guitar-strumming American. Suddenly Penny is falling in love -\nand capturing every moment of it on her blog.But Noah has a secret, too,\none that threatens to ruin Penny's cover - and her closest friendship -\nforever.\"\r\n3265,3390,205821,Carol Ryrie Brink,Caddie Woodlawn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388281233l/205821.jpg,3.99,37689,\"fiction, history\",\"Chronicles the adventures of eleven-year-old Caddie growing up with her six\nbrothers and sisters on the Wisconsin frontier in the mid-nineteenth\ncentury.\"\r\n3266,3392,139855,J.I. Packer,Knowing God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348545196l/139855.jpg,4.31,29848,\"christian, religion\",\"For more than 30 years, J. I. Packer's classic book Knowing God has\nrevealed to well over a million readers the wonder, glory and the joy of\nknowing God. It continues to sell in tens of thousands to Christians around\nthe world.\"\r\n3267,3393,68396,R.A. Salvatore,The Halfling's Gem,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388973637l/68396.jpg,4.15,27105,\"fantasy, fiction\",\"The dark elf Drizzt Do'Urden and Wulfgar the barbarian race to Calimport to\nrescue their friend Regis and his stolen gem from the vengeance of Pasha\nPook. Reprint.\"\r\n3268,3394,2177236,Harlan Coben,Hold Tight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433737434l/2177236._SY475_.jpg,3.94,30180,\"mystery, fiction\",\"Just how far parents will go to protect their kids? When their son Adam is\nimplicated in the death of his classmate, Tia and Mike Baye install a\nsophisticated spy program on Adam's computer, and within days are jolted by\na message from an unknown correspondent.\"\r\n3269,3395,71252,\"Neil Gaiman, Marc Hempel, Richard Case, D'Israeli, Teddy Kristiansen, Glyn Dillon, Charles Vess, Dean Ormston, Kevin Nowlan, Todd Klein, Frank McConnell\",The Sandman: The Kindly Ones,https://images.gr-assets.com/books/1339922887l/71252.jpg,4.59,32544,\"comics, fantasy\",\"The Sandman: The Kindly OnesNeil Gaiman, Marc Hempel, Richard Case, D'Israeli, Teddy Kristiansen, Glyn Dillon, Charles Vess, Dean Ormston, Kevin Nowlan, Todd Klein, Frank McConnell\"\r\n3270,3396,25103,\"Neil Gaiman, Mike Allred, Gary Amaro, Mark Buckingham, David Giordano, Tony Harris, Steve Leialoha, Vince Locke, Shea Anton Pensa, Alec Stevens, Bryan Talbot, John Watkiss, Todd Klein, Michael Zulli, Stephen King\",The Sandman: Worlds' End,https://images.gr-assets.com/books/1339922260l/25103.jpg,4.48,32362,\"comics, fantasy\",\"The Sandman: Worlds' EndNeil Gaiman, Mike Allred, Gary Amaro, Mark Buckingham, David Giordano, Tony Harris, Steve Leialoha, Vince Locke, Shea Anton Pensa, Alec Stevens, Bryan Talbot, John Watkiss, Todd Klein, Michael Zulli, Stephen King\"\r\n3271,3397,826845,John Wyndham,The Chrysalids,https://images.gr-assets.com/books/1271095852l/826845.jpg,3.92,29364,\"fiction, classics\",\"The terrifying story of a world paralyzed by genetic mutation. In a\ncommunity where deviations are rooted out as abominations, David's ability\nto communicate by \"\"thought shapes\"\" is a dangerous secret. When his ability\nis discovered, the results are horrific.\"\r\n3272,3399,81939,Miguel Ruiz,The Mastery of Love: A Practical Guide to the Art of Relationship (Toltec Wisdom Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348195310l/81939.jpg,4.25,24162,\"spirituality, philosophy\",\"In the tradition of Carlos Castaneda, the author distills essential Toltec\nwisdom on human relationships as well as techniques for integrating this\nawareness into daily life.\"\r\n3273,3400,29641,\"Graham Greene, Monica Ali\",The End of the Affair,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328010344l/29641.jpg,3.96,29372,\"classics, romance\",\"Maurice Bendrix's love affair with his friend's wife, Sarah, had begun in\nLondon during the Blitz. One day, inexplicably and without warning, Sarah\nhad broken off the relationship. Two years later, driven by obsessive\njealousy and grief, Bendrix sends Parkis, a private detective, to follow\nSarah.\"\r\n3274,3401,25205422,Jennifer Weiner,Who Do You Love,https://images.gr-assets.com/books/1432136838l/25205422.jpg,3.74,22026,\"fiction, romance\",Who Do You LoveJennifer Weiner\r\n3275,3402,739840,\"Felix Salten, Barbara Cooney\",Bambi - Eine Lebensgeschichte aus dem Walde,https://images.gr-assets.com/books/1344401718l/739840.jpg,4.1,28655,\"classics, fiction\",\"Presents the story of a deer as he learns to survive the hardships of life\nin the forest.\"\r\n3276,3403,59924,Ursula K. Le Guin,The Lathe of Heaven,https://images.gr-assets.com/books/1433084322l/59924.jpg,4.09,29562,\"fiction, fantasy\",\"George Orr discovers that his dreams possess the remarkable ability to\nchange the world, and when he falls into the hands of a power-mad\npsychiatrist, he counters by dreaming up a perfect world that can overcome\nhis nightmares, in a new edition of the classic science fiction novel.\nReprint. 20,000 first printing.\"\r\n3277,3404,1362,\"Herodotus, Aubrey de Sélincourt, John M. Marincola\",Ἰστορίαι,https://images.gr-assets.com/books/1399225547l/1362.jpg,3.97,28870,\"history, classics\",\"The story of the Greek city-states uniting to repel a superior Persian army\nis the main theme in this classical narrative, but Herodotus fleshes out\nhis text with digressions, describing the wonders of Egypt and recounting\nstories and folk tales.\"\r\n3278,3405,17798287,K. Bromberg,Driven,https://images.gr-assets.com/books/1366000080l/17798287.jpg,4.31,41454,\"romance, contemporary\",\"An unexpected meeting. One precipitous chance. A once in a lifetime love\nstory.Colton Donavan is the cocky, bad boy of racing. With a haunting past\nand a reckless streak a mile long, he's known for his fast lifestyle and\nplayboy ways.Rylee Thomas is the selfless social worker overcoming her own\ntragedy. Dedicated to the traumatized orphans she takes care of, a man like\nColton is the last thing she saw coming. They're driven by love. Fueled by\ndesire. And crashing into love.See why over one million readers have fallen\nin love with this messy, complicated, heartfelt, and unforgettable romance.\nTake the emotional and compelling ride from start to finish, all in one\nboxed set, complete with added bonus scenes.This book contains the\nfollowing complete novels: Driven, Fueled, Crashed, Raced, and Aced. In\naddition, it contains added Driven World scenes written and/or posted on\nsocial media or as bonus chapters in other K. Bromberg paperbacks.\"\r\n3279,3406,18402,Matthew Pearl,The Dante Club,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1397659377l/18402.jpg,3.38,31035,\"mystery, fiction\",\"In 1865, the preparations of the Dante Club--led by Henry Wadsworth\nLongfellow and Oliver Wendell Holmes--to release the first translation of\nDante's \"\"The Divine Comedy\"\" are threatened by a series of murders that re-\ncreate episodes from \"\"Inferno.\"\"\"\r\n3280,3407,46544,Jean M. Auel,The Shelters of Stone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424490852l/46544.jpg,3.8,31333,\"fiction, fantasy\",\"Originally published: New York: Crown, 2002.\"\r\n3281,3408,5292853,Patricia Briggs,Hunting Ground,https://images.gr-assets.com/books/1375461295l/5292853.jpg,4.27,44487,\"fantasy, paranormal\",\"Finding her life as a werewolf more complicated than expected, Anna Latham\nattends a summit in support of a proposal to reveal their existence to\nhumans, an effort that is complicated by the murder of an outspoken rival.\"\r\n3282,3409,5356711,Paulo Coelho,O vencedor está só,https://images.gr-assets.com/books/1358266380l/5356711.jpg,3.37,22229,\"fiction, thriller\",\"Filmfestivalen i Cannes er samlingssted for skuespillere, instruktører,\ndesignere og supermodeller. Charmøren Igor kommer for at genvinde eks-konen\nEwa, men hendes manglende interesse fører Igor ud i et ekstremt voldsorgie\"\r\n3283,3410,133430,James A. Michener,Centennial,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348125094l/133430.jpg,4.21,31235,\"fiction, history\",\"Written as a tribute to America's bicentennial celebration. Centennial is\nan epic novel of the history, land, and people of Colorado. Centered around\nthe fictional town of Centennial, the story contains an extensive cast of\ncharacters including Native Americans, French fur trappers, English\nnoblemen, and American cowboys, all caught up in the dramatic events and\nviolent conflicts that shaped the destiny of the legendary West.\"\r\n3284,3411,6261522,Kimberly Derting,The Body Finder,https://images.gr-assets.com/books/1358266631l/6261522.jpg,3.96,43203,\"paranormal, mystery\",\"A gripping tale of a girl with a morbid ability that could lead her to a\nkiller . . . and the boy who would never let anything happen to her.\nSixteen-year-old Violet Ambrose is grappling with two major issues: Jay\nHeaton and her unusual so-called gift. While her confusing feelings for her\nbest friend are new, she has been able to sense dead bodies—or at least\nthose that have been murdered—and the imprints that attach to their killers\nsince she was a little girl. Violet has never considered her ability\nuseful, but now that a serial killer has begun terrorizing her small town\nshe realizes she might be the only person who can stop him. Fiercely\nprotective of her, Jay agrees to help Violet search for the murderer. But\neven as she's falling in love, Violet is getting closer to discovering a\nkiller . . . and becoming his prey herself.\"\r\n3285,3412,6870,Ian McEwan,Enduring Love,https://images.gr-assets.com/books/1313656531l/6870.jpg,3.62,26390,\"fiction, contemporary\",\"Joe and Clarissa Rose's spring idyll in the park is cut short when Joe\nhelps rescue a child from a balloon accident, one man is killed, and Joe\nbecomes the target of suspicion and ultimately an assassination attempt\"\r\n3286,3413,36071,\"Stephen R. Covey, A. Roger Merrill, Rebecca R. Merrill\",\"First Things First: To Live, to Love, to Learn, to Leave a Legacy\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440528321l/36071._SY475_.jpg,4.06,26813,\"business, nonfiction\",\"Offers an approach to time management based on life values, and provides\nmethods for achieving maximum effectiveness, balance, and personal peace\"\r\n3287,3414,28541,Anne McCaffrey,Dragonsong ,https://images.gr-assets.com/books/1407659596l/28541.jpg,4.24,35694,\"fantasy, fiction\",\"On the planet Pern, after her father forbids her to indulge in music in any\nway, fifteen-year-old Menolly, runs away and takes shelter with the\nplanet's fire lizards who, along with her music, open a new life for her.\"\r\n3288,3415,595375,Nancy Garden,Annie on My Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360021l/595375.jpg,3.97,29278,\"romance, fiction\",\"This groundbreaking book, first published in 1982, is the story of two\nteenage girls whose friendship blossoms into love and who, despite\npressures from family and school that threaten their relationship, promise\nto be true to each other and their feelings. From the moment Liza Winthrop\nmeets Annie Kenyon at the Metropolitan Museum of Art, she knows there is\nsomething special between them. But Liza never knew falling in love could\nbe so wonderful . . . or so confusing. Of the author and the book, the\nMargaret A. Edwards Award committee said, \"\"Nancy Garden has the distinction\nof being the first author for young adults to create a lesbian love story\nwith a positive ending. Using a fluid, readable style, Garden opens a\nwindow through which readers can find courage to be true to themselves.\"\"\nThe 25th Anniversary Edition features a full-length interview with the\nauthor by Kathleen T. Horning, Director of the Cooperative Children's Book\nCenter. Ms. Garden answers such revealing questions as how she knew she was\ngay, why she wrote the book, censorship, and the book's impact on readers –\nthen and now. \"\"No single work has done more for young adult LGBT fiction\nthan this classic about two teenage girls who fall in love.\"\" —School\nLibrary Journal\"\r\n3289,3416,6428887,Michael Crichton,Pirate Latitudes,https://images.gr-assets.com/books/1332304096l/6428887.jpg,3.41,27904,\"fiction, thriller\",\"Jamaica in 1665 is a rough outpost of the English crown, a minor colony\nholding out against the vast supremacy of the Spanish empire. Port Royal,\nJamaica′s capital, a cut-throat town of taverns, grog shops, and bawdy\nhouses, is devoid of London′s luxuries; life here can end swiftly with\ndysentery or a dagger in your back. But for Captain Edward Hunter it is a\nlife that can also lead to riches, if he abides by the island′s code. In\nthe name of His Majesty King Charles II of England, gold in Spanish hands\nis gold for the taking. And law in the New World is made by those who take\nit into their hands. Word in port is that the Spanish treasure galleon El\nTrinidad, fresh from New Spain, is stalled in nearby Matanceros harbor\nawaiting repairs. Heavily fortified, the impregnable Spanish outpost is\nguarded by the blood-swiller Cazalla, a favorite commander of King Philip\nIV himself. With the governor′s backing, Hunter assembles a roughneck crew\nto infiltrate the enemy island and commandeer the galleon, along with its\nfortune in Spanish gold. The raid is as perilous as the bloody legends of\nMatanceros suggest, and Hunter will lose more than one man before he finds\nhimself on the island′s shores, where dense jungle and the firepower of\nSpanish infantry are all that stand between him and the treasure. With the\nhelp of his cunning crew, Hunter hijacks El Trinidad and escapes the deadly\nclutches of Cazalla, leaving plenty of carnage in his wake. But his\ntroubles have just begun. . . .\"\r\n3290,3417,328854,Jonathan Lethem,Motherless Brooklyn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348254729l/328854.jpg,3.91,23614,\"fiction, mystery\",\"Lionel Essrog has always respected Frank Minna, who helped him out when he\nwas young, and when Frank is found dead, Lionel and his friends, the Minna\nMen, scour the streets of Brooklyn in search of the killer. Winner of the\nNational Book Critics Circle Award. Reprint. 75,000 first prnting.\"\r\n3291,3418,714902,Malorie Blackman,Noughts & Crosses,https://images.gr-assets.com/books/1443903273l/714902.jpg,4.23,27725,\"romance, fiction\",\"Callum is a nought - a second-class citizen in a world run by the ruling\nCrosses... Sephy is a Cross, daughter of one of the most powerful men in\nthe country... In their world, noughts and Crosses simply don't mix. And as\nhostility turns to violence, can Callum and Sephy possibly find a way to be\ntogether? They are determined to try. And then the bomb explodes... A\ngripping, stimulating and totally absorbing novel set in a world where\nblack and white are right and wrong. This special new edition includes An\nEye for An Eye, a stunning novella that continues the tale told in Noughts\n& Crosses.\"\r\n3292,3419,152519,Harriet Jacobs,Incidents in the Life of a Slave Girl Written by Herself,https://images.gr-assets.com/books/1418788224l/152519.jpg,4.08,24744,\"nonfiction, biography\",\"A haunting, evocative recounting of her life as a slave in North Carolina,\nand her final escape and emancipation, Jacobs' narrative, written between\n1853 and 1858 and published in 1861, is one of the most important books\never written documenting the traumas and horrors of slavery in the\nantebellum South.\"\r\n3293,3420,8519822,Michael Scott,The Enchantress,https://images.gr-assets.com/books/1317844406l/8519822.jpg,4.24,30171,\"fantasy, fiction\",The EnchantressMichael Scott\r\n3294,3421,8255917,Ron Chernow,Washington: A Life,https://images.gr-assets.com/books/1348969179l/8255917.jpg,4.09,28598,\"biography, history\",\"A comprehensive account of the life of George Washington negates the\nstereotype of a stolid, unemotional man and instead reveals a dashing,\npassionate man of fiery opinions and many moods who fiercely guarded his\nprivate life.\"\r\n3295,3422,16070521,Kristen Proby,Come Away with Me,https://images.gr-assets.com/books/1350383614l/16070521.jpg,3.94,52083,\"romance, contemporary\",\"Being confronted on the beach by a sexy stranger wasn't part of Natalie\nConner's plans for a peaceful morning taking photos. And why on earth would\nhe think she's taking pictures of him, anyway? Who is he? One thing's for\nsure, he's hot, and incredibly romantic, feeding Natalie's wounded soul.\nLuke Williams just wants the world to give him a break, so seeing yet\nanother camera aimed at his face has him ready to pounce on the beauty\nbehind the lens. When he finds out she has no idea who he is, he's\nintrigued and more than a little tempted by her. Natalie has a body made\nfor sex, a sassy mouth and Luke can't get enough of her, but he's not ready\nto tell her who he really his. Natalie is a no nonsense girl who doesn't do\nwell with lies and secrets. What will happen to this new relationship when\nshe discovers what Luke's hiding?\"\r\n3296,3423,785092,T. Harv Eker,Secrets of the Millionaire Mind: Mastering the Inner Game of Wealth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347940515l/785092.jpg,4.14,25389,\"nonfiction, psychology\",Secrets of the Millionaire Mind: Mastering the Inner Game of WealthT. Harv Eker\r\n3297,3424,12866426,C.C. Hunter,\"Taken at Dusk (Shadow Falls, #3)\",https://images.gr-assets.com/books/1320918098l/12866426.jpg,4.33,36683,\"paranormal, romance\",\"In the third installment of the Shadow Falls series, Kylie Galen believes\nthat if she can just discover what she is, all the other uncertainties in\nher life will suddenly make sense, but in a camp for teens with paranormal\nabilities, there's not much that makes sense. Original.\"\r\n3298,3425,16707,\"Michael Chabon, Hans Hermann\",Wonder Boys,https://images.gr-assets.com/books/1380670205l/16707.jpg,3.93,24365,\"fiction, contemporary\",\"Wonder BoysMichael Chabon, Hans Hermann\"\r\n3299,3427,10464963,Julie Otsuka,The Buddha in the Attic,https://images.gr-assets.com/books/1327878988l/10464963.jpg,3.59,28149,\"fiction, history\",\"Presents the stories of six Japanese mail-order brides whose new lives in\nearly twentieth-century San Francisco are marked by backbreaking migrant\nwork, cultural struggles, children who reject their heritage, and the\nprospect of wartime internment.\"\r\n3300,3428,8680,Tom Robbins,Fierce Invalids Home From Hot Climates,https://images.gr-assets.com/books/1327866336l/8680.jpg,4.01,22847,\"fiction, contemporary\",\"Switters, an anarchist pacifist who works for the government and carries a\ngun, chases after his teenage stepsister, only to become madly enamored of\na nun a decade older than him, in this hilarious new novel by the author of\nEven Cowgirls Get the Blues. Reprint. 50,000 first printing.\"\r\n3301,3429,18007535,Jennifer McMahon,The Winter People,https://images.gr-assets.com/books/1377582922l/18007535.jpg,3.76,27234,\"horror, fiction\",The Winter PeopleJennifer McMahon\r\n3302,3430,8428069,Sara Shepard,The Lying Game,https://images.gr-assets.com/books/1316916749l/8428069.jpg,3.96,32296,\"mystery, contemporary\",\"Seventeen-year-old Emma Paxton steps into the life of her long-lost twin\nSutton to solve her murder, while Sutton looks on from her afterlife.\"\r\n3303,3431,32258,Tess Gerritsen,Body Double,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177497l/32258.jpg,4.16,30834,\"mystery, crime\",\"Returning from Paris to discover a murder victim in her driveway, Boston\nmedical examiner Maura Isles is shocked to discover that the victim looks\nexactly like her and is a twin sister she never knew.\"\r\n3304,3432,18143905,Marina Keegan,The Opposite of Loneliness,https://images.gr-assets.com/books/1401056149l/18143905.jpg,3.82,19771,\"nonfiction, fiction\",\"This hope-filled posthumous collection of essays and stories from the\ntalented young Yale graduate who died tragically five days after graduation\ndetails the struggle that we all face as we figure out what we want to be\nand how we can positively impact the world.\"\r\n3305,3433,6613956,\"Paolo Giordano, Shaun Whiteside\",La solitudine dei numeri primi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442465089l/6613956._SY475_.jpg,3.58,19734,\"contemporary, romance\",\"Alice and Mattia are both misfits who seem destined to be alone. Haunted by\nchildhood tragedies that mark their lives, they cannot reach out to anyone\nelse. When Alice and Mattia meet as teenagers, they recognize in each other\na kindred, damaged spirit. When Mattia accepts a research position that\ntakes him thousands of miles away, the two are forced to separate. Then a\nchance occurrence reunites them, forcing a lifetime of concealed emotion to\nthe surface.\"\r\n3306,3434,15835685,Nicole  Williams,Clash,https://images.gr-assets.com/books/1345393364l/15835685.jpg,4.17,40519,\"romance, sports\",\"The second book in the New York Times bestselling Crash trilogy! Their\nRomeo-and-Juliet-level passion is the only thing Jude and Lucy agree on.\nThat, and fighting all the time . . . Also not helping? Lucy's raging\njealousy of the cheerleader who's wormed her way into Jude's life. While\ntrying to hang on to her quintessential bad boy and also training to be the\ntop ballet dancer in her class, Lucy knows something's going to give . . .\nsoon. How can she live without the boy she loves? How can she live with\nherself if she gives up on her dreams? If Lucy doesn't make the right\nchoice, she could lose everything.\"\r\n3307,3435,17349203,\"Neil Gaiman, Skottie Young\",\"Fortunately, the Milk\",https://images.gr-assets.com/books/1380963103l/17349203.jpg,4.04,30500,\"fantasy, fiction\",\"While picking up milk for his children's cereal, a father is abducted by\naliens and finds himself on a wild adventure through time and space.\"\r\n3308,3436,20898019,\"G. Willow Wilson, Adrian Alphona\",\"Ms. Marvel, Vol. 1: No Normal\",https://images.gr-assets.com/books/1413031883l/20898019.jpg,4.13,53515,\"comics, fiction\",\"Marvel Comics presents the all-new Ms. Marvel, the groundbreaking heroine\nthat has become an international sensation! Kamala Khan is an ordinary girl\nfrom Jersey City - until she is suddenly empowered with extraordinary\ngifts. But who truly is the all-new Ms. Marvel? Teenager? Muslim? Inhuman?\nFind out as she takes the Marvel Universe by storm! As Kamala discovers the\ndangers of her newfound powers, she unlocks a secret behind them as well.\nIs Kamala ready to wield these immense new gifts? Or will the weight of the\nlegacy before her be too much to handle? Kamala has no idea either. But\nshe's comin' for you, New York! It's history in the making from acclaimed\nwriter G. Willow Wilson (Air, Cairo) and beloved artist Adrian Alphona\n(Runaways)! COLLECTING: MS. MARVEL 1-5, MATERIAL FROM ALL-NEW MARVEL NOW!\nPOINT ONE\"\r\n3309,3437,178476,Nalini Singh,Slave to Sensation,https://images.gr-assets.com/books/1403541641l/178476.jpg,4.12,44076,\"paranormal, romance\",\"Changeling Lucas Hunter persuades Sascha Duncan, a member of a race of\npsychics who are forbidden to feel emotions, to help him find the killer of\nseveral Changeling women.\"\r\n3310,3438,18711993,أثير عبدالله النشمي,فلتغفرى,https://images.gr-assets.com/books/1382532147l/18711993.jpg,3.5,23407,\"romance, fiction\",فلتغفرىأثير عبدالله النشمي\r\n3311,3439,89716,Gennifer Choldenko,Al Capone Does My Shirts,https://images.gr-assets.com/books/1309198452l/89716.jpg,3.83,33400,\"fiction, history\",\"A twelve-year-old boy named Moose moves to Alcatraz Island in 1935 when\nguards' families were housed there, and has to contend with his\nextraordinary new environment in addition to life with his autistic sister\nNatalie. A Newbery Honor Book & ALA Notable Book. Reprint. Jr Lib Guild &\nChildren's BOMC.\"\r\n3312,3440,6723348,\"Guillermo del Toro, Chuck Hogan\",The Fall,https://images.gr-assets.com/books/1327934155l/6723348.jpg,3.8,25774,\"horror, fiction\",\"The FallGuillermo del Toro, Chuck Hogan\"\r\n3313,3441,17378527,Maggie Stiefvater,The Raven King,https://images.gr-assets.com/books/1477103790l/17378527.jpg,4.32,42427,\"fantasy, paranormal\",The Raven KingMaggie Stiefvater\r\n3314,3442,13152287,\"Pamela Druckerman, Abby Craden\",Bringing up Bébé,https://images.gr-assets.com/books/1327009243l/13152287.jpg,3.95,18276,\"memoir, travel\",\"Bringing up BébéPamela Druckerman, Abby Craden\"\r\n3315,3443,6538,Patricia Cornwell,Portrait of a Killer: Jack The Ripper - Case Closed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388307107l/6538.jpg,3.44,28506,\"history, crime\",\"Examines the century-old series of murders that terrorized London in the\n1880s, drawing on research, state-of-the-art forensic science, and insights\ninto the criminal mind to reveal the true identity of the infamous Jack the\nRipper. Reprint.\"\r\n3316,3444,448873,Megan Whalen Turner,The Thief,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427740839l/448873.jpg,3.92,40807,\"fantasy, fiction\",The ThiefMegan Whalen Turner\r\n3317,3445,235718,Richelle Mead,Succubus Blues,https://images.gr-assets.com/books/1361624810l/235718.jpg,3.94,43289,\"paranormal, fantasy\",\"Being a succubus sounds pretty glamorous. Shape-shifting, killer wardrobe,\nwhat's not to like? But Georgina Kincaid's life gets complicated when an\nunknown entity \"\"helpfully\"\" begins killing her immortal adversaries.\"\r\n3318,3446,8874743,Sarah Winman,When God Was a Rabbit,https://images.gr-assets.com/books/1311417203l/8874743.jpg,3.67,24660,\"fiction, contemporary\",When God Was a RabbitSarah Winman\r\n3319,3447,18003300,Lang Leav,Love & Misadventure,https://images.gr-assets.com/books/1370084153l/18003300.jpg,4.05,28782,\"poetry, romance\",Love & MisadventureLang Leav\r\n3320,3448,6515834,\"Francis Chan, Danae Yankoski\",The Forgotten God: Reversing Our Tragic Neglect of the Holy Spirit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438720585l/6515834._SY475_.jpg,4.17,27044,\"christian, nonfiction\",\"The Forgotten God: Reversing Our Tragic Neglect of the Holy SpiritFrancis Chan, Danae Yankoski\"\r\n3321,3449,85392,Vince Flynn,Term Limits,https://images.gr-assets.com/books/1311847654l/85392.jpg,4.3,25200,\"mystery, suspense\",Term LimitsVince Flynn\r\n3322,3450,7948230,Tom Franklin,\"Crooked Letter, Crooked Letter\",https://images.gr-assets.com/books/1292689648l/7948230.jpg,3.82,28875,\"mystery, fiction\",\"Crooked Letter, Crooked LetterTom Franklin\"\r\n3323,3451,46199,\"Rainer Maria Rilke, Reginald Snell, Franz Xaver Kappus\",Briefe an einen jungen Dichter,https://images.gr-assets.com/books/1321994947l/46199.jpg,4.34,25066,\"poetry, classics\",\"Born in Prague when it was part of the Austro-Hungarian empire and\nrecognized today as a master of verse, poet Rainer Maria Rilke was\nconsiderably less well known in 1902 when he received a heartfelt letter\nfrom an aspiring poet. A 19-year-old student sent Rilke some of his verses,\nseeking an opinion of their worth. Rilke declined to offer a critique,\ninstead encouraging the student to rely upon his own inner judgment:\n\"\"Nobody can advise and help you, nobody. There is only one single means. Go\ninside yourself.\"\" This seemingly dismissive letter proved to be the first\nof ten, written during a six-year period that coincided with an important\nstage in Rilke's artistic development. The poet offered his young\ncorrespondent further advice on developing a rich inner life as well as\nguidance on broader philosophical and existential issues. These letters,\nwhich explore many of the themes that later emerged in Rilke's best works,\nremain a captivating source of insights into the artistic identity and\nprocess.\"\r\n3324,3452,439275,Meg Cabot,Princess in the Spotlight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389100014l/439275._SY475_.jpg,3.67,41713,\"romance, fiction\",\"Just when Mia thought she had the whole Princess thing under control ...\nThings get out of hand, fast: Since Mia's the brand-new crown princess of\nGenovia, indomitable dowager princess GrandmÈre arranges a national\nprimetime interview for her. With just a few innocent remarks, Mia manages\nto enrage her best friend Lilly, practically get one of her teachers fired,\nand alienate the entire country of Genovia. (Population 50,000, but still!)\nThere's the havoc of the interview's aftermath and her dreaded princess\nlessons at the Plaza. Plus an unexpected announcement from her mother, and\nintriguing, exasperating letters from a secret admirer. Mia is swept up in\na whirlwind of royal intrigue the likes of which hasn't been seen since\nvolume I of The Princess Diaries. What's an heir to the royal throne to do?\"\r\n3325,3453,12425532,Anna Banks,Of Poseidon,https://images.gr-assets.com/books/1327879889l/12425532.jpg,4.04,38535,\"fantasy, romance\",Of PoseidonAnna Banks\r\n3326,3454,84140,Sherrilyn Kenyon,\"Night Embrace (Dark-Hunter, #2)\",https://images.gr-assets.com/books/1171050611l/84140.jpg,4.25,29663,\"paranormal, romance\",\"In Night Pleasures, Kyrian of Thrace---an immortal who protects humans from\nvampires---wakes up one morning handcuffed to the one thing that can scare\nhim: a conservative woman in a button-down shirt. But Amanda Devereaux\nturns out to be his perfect partner for hunting down a deadly foe, and for\nhelping him to regain his soul and learn that love doesn't have to bite.\nNight Embrace spins the story of Talon, an ancient Celtic warrior who\nkilled the son of the god Camulus. Camulus cursed Talon, decreeing death\nfor everyone he loved. Now a Dark-Hunter in modern-day New Orleans, Talon\nmeets Sunshine, who is key to ending his curse once and for all. Not to\nmention helping him to save New Orleans from an ancient god bent on total\ndestruction.... Enter a realm like none you've ever experienced with Night\nPleasures and Night Embrace. Now together in one volume!\"\r\n3327,3456,80566,Ann Patchett,Run,https://images.gr-assets.com/books/1327362631l/80566.jpg,3.53,29231,\"fiction, contemporary\",\"Since their mother's death, Tip and Teddy Doyle have been raised by their\nloving, possessive, and ambitious father. As the former mayor of Boston,\nBernard Doyle wants to see his sons in politics, a dream the boys have\nnever shared. But when an argument in a blinding New England snowstorm\ninadvertently causes an accident that involves a stranger and her child,\nall Bernard cares about is his ability to keep his children—all his\nchildren—safe.\"\r\n3328,3457,203220,\"Charles Baudelaire, Richard Howard\",Les Fleurs du mal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388667125l/203220.jpg,4.26,27124,\"poetry, art\",\"Presents the first American translation of the complete text of\nBaudelaire's 1857 masterwork and includes the complete original French\ntexts for easy comparison\"\r\n3329,3458,16169737,\"Janet Evanovich, Lee Goldberg\",The Heist,https://images.gr-assets.com/books/1371429330l/16169737.jpg,3.78,29834,\"mystery, fiction\",\"The HeistJanet Evanovich, Lee Goldberg\"\r\n3330,3459,49540,\"Pierre-Ambroise Choderlos de Laclos, Douglas Parmée\",Les Liaisons dangereuses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298425654l/49540.jpg,4.07,28428,\"classics, fiction\",\"The complex moral ambiguities of seduction and revenge make Les Liaisons\ndangereuses (1782) one of the most scandalous and controversial novels in\nEuropean literature. Its prime movers, the Vicomte de Valmont and the\nMarquise de Merteuil--gifted, wealthy, and bored--form an unholy alliance\nand turn seduction into a game. And they play this game with such wit and\nstyle that it is impossible not to admire them, until they discover\nmysterious rules that they cannot understand. In the ensuing battle there\ncan be no winners, and the innocent suffer with the guilty. This new\ntranslation gives Laclos a modern voice, and readers will be able to judge\nwhether the novel is as \"\"diabolical\"\" and \"\"infamous\"\" as its critics have\nclaimed, or whether it has much to tell us about a world we still inhabit.\nDouglas Parmee is Retired Fellow of Queen's College, Cambridge. He is the\ntranslator of Nana, Attack on the Mill (Zola) and A Sentimental Journey\n(Flaubert) for World's Classics. David Coward is Professor of French at the\nUniversity of Leeds. He is the translator and editor of Maupassant, de\nSade, and Dumas in World's Classics.\"\r\n3331,3460,164531,E. Nesbit,The Railway Children,https://images.gr-assets.com/books/1328865877l/164531.jpg,3.99,35196,\"classics, fiction\",The Railway ChildrenE. Nesbit\r\n3332,3461,26245853,David Baldacci,The Last Mile,https://images.gr-assets.com/books/1450227326l/26245853.jpg,4.22,17326,\"mystery, thriller\",\"In his #1 New York Times bestseller Memory Man, David Baldacci introduced\nthe extraordinary detective Amos Decker-the man who can forget nothing.\nNow, Decker returns in a spectacular new thriller . . . THE LAST MILE\nConvicted murderer Melvin Mars is counting down the last hours before his\nexecution--for the violent killing of his parents twenty years earlier--\nwhen he's granted an unexpected reprieve. Another man has confessed to the\ncrime. Amos Decker, newly hired on an FBI special task force, takes an\ninterest in Mars's case after discovering the striking similarities to his\nown life: Both men were talented football players with promising careers\ncut short by tragedy. Both men's families were brutally murdered. And in\nboth cases, another suspect came forward, years after the killing, to\nconfess to the crime. A suspect who may or may not have been telling the\ntruth. The confession has the potential to make Melvin Mars--guilty or not\n--a free man. Who wants Mars out of prison? And why now? But when a member\nof Decker's team disappears, it becomes clear that something much larger--\nand more sinister--than just one convicted criminal's life hangs in the\nbalance. Decker will need all of his extraordinary brainpower to stop an\ninnocent man from being executed.\"\r\n3333,3463,8559047,Ilona Andrews,Magic Slays,https://images.gr-assets.com/books/1288727226l/8559047.jpg,4.43,44588,\"fantasy, paranormal\",Magic SlaysIlona Andrews\r\n3334,3464,5128,Aldous Huxley,The Doors of Perception & Heaven and Hell,https://images.gr-assets.com/books/1375947566l/5128.jpg,3.96,24213,\"philosophy, psychology\",\"Half an hour after swallowing the drug I became aware of a slow dance of\ngolden lights . . . Among the most profound explorations of the effects of\nmind-expanding drugs ever written, here are two complete classic books—The\nDoors of Perception and Heaven and Hell—in which Aldous Huxley, author of\nthe bestselling Brave New World, reveals the mind's remote frontiers and\nthe unmapped areas of human consciousness. This new edition also features\nan additional essay, \"\"Drugs That Shape Men's Minds,\"\" which is now included\nfor the first time.\"\r\n3335,3465,315519,Irwin Shaw,\"Rich Man, Poor Man\",https://images.gr-assets.com/books/1353725186l/315519.jpg,4.15,28024,\"fiction, classics\",\"Rich Man, Poor ManIrwin Shaw\"\r\n3336,3466,25817531,Gilly Macmillan,What She Knew (Burnt Paper Sky),https://images.gr-assets.com/books/1441801604l/25817531.jpg,3.89,25865,\"mystery, fiction\",What She Knew (Burnt Paper Sky)Gilly Macmillan\r\n3337,3467,13495034,Michael Connelly,The Black Box,https://images.gr-assets.com/books/1344765247l/13495034.jpg,4.09,25288,\"mystery, fiction\",The Black BoxMichael Connelly\r\n3338,3468,5180,Sheri Reynolds,The Rapture of Canaan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442420479l/5180._SY475_.jpg,3.8,30267,\"fiction, religion\",\"Ninah Huff, the teenage granddaughter of the founder of an isolated\nreligious community, causes controversy when she is discovered to be\npregnant with what she claims is a holy child\"\r\n3339,3469,38169,Pat Frank,\"Alas, Babylon\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440605255l/38169._SY475_.jpg,4.07,28386,\"fiction, classics\",The classic apocalyptic novel that stunned the world.\r\n3340,3470,184661,Vince Flynn,The Third Option,https://images.gr-assets.com/books/1314830587l/184661.jpg,4.26,24598,\"fiction, thriller\",The Third OptionVince Flynn\r\n3341,3471,1238684,Kazu Kibuishi,The Stonekeeper,https://images.gr-assets.com/books/1327866356l/1238684.jpg,4.15,32830,\"fantasy, comics\",The StonekeeperKazu Kibuishi\r\n3342,3472,284996,Flannery O'Connor,The Complete Stories,https://images.gr-assets.com/books/1489956381l/284996.jpg,4.44,27352,\"fiction, classics\",\"Thirty-one tales depicting the humorous, if near tragic conditions of life\nin the Deep South during the fifties\"\r\n3343,3473,6780439,L.J. Smith,Dark Reunion,https://images.gr-assets.com/books/1296605183l/6780439.jpg,4.19,33023,\"paranormal, fantasy\",\"Elena: transformed, the golden girl has become what she once feared and\ndesired. Stefan: tormented by losing Elena, he's determined to end his feud\nwith Damon once and for all—whatever the cost. But slowly he begins to\nrealize that his brother is not his only enemy. Damon: at last, he\npossesses Elena. But will his thirst for revenge against Stefan poison his\ntriumph? Or can they come together to face one final battle? Collected here\nin one edition are the third and fourth volumes of The Vampire Diaries, a\nriveting conclusion to the tale of two vampire brothers and the beautiful\ngirl torn between them.\"\r\n3344,3474,18138189,Anthony  Ryan,Tower Lord,https://images.gr-assets.com/books/1382486392l/18138189.jpg,4.19,23765,\"fantasy, fiction\",\"The enthralling second novel in the New York Times bestselling Raven's\nShadow series, and sequel to the critically acclaimed epic fantasy debut\nBlood Song THE REALM BURNS. Vaelin Al Sorna is tired of war. He's fought\ncountless battles in service to the Realm and Faith. His reward was the\nloss of his love, the death of his friends and a betrayal by his king.\nAfter five years in an Alpiran dungeon, he just wants to go home. Reva\nintends to welcome Vaelin back with a knife between the ribs. He destroyed\nher family and ruined her life. Nothing will stop her from exacting bloody\nvengeance - not even the threat of invasion from the greatest enemy the\nRealm has ever faced. Yet as the fires of war spread, foes become friends\nand truths turn to lies. To save the Realm, Reva must embrace a future she\ndoes not want - and Vaelin must revisit a past he'd rather leave buried.\"\r\n3345,3475,5355136,Lisa Scottoline,Look Again,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442935418l/5355136._SY475_.jpg,3.85,29598,\"mystery, fiction\",\"When reporter Ellen Gleeson gets a \"\"Have You Seen This Child?\"\" flyer in the\nmail, the child looks exactly like her adopted son, Will, which prompts\nEllen to launch an investigation that ultimately threatens both of their\nlives.\"\r\n3346,3476,4264,Nick Hornby,Fever Pitch,https://images.gr-assets.com/books/1426114203l/4264.jpg,3.72,25374,\"fiction, sports\",\"An autobiographical memoir by a humorous British author and obsessed soccer\nfan captures the intensity of a sports fan who measures his life in seasons\nrather than years\"\r\n3347,3477,31343,Anne Rice,Pandora,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390793244l/31343.jpg,3.73,33383,\"horror, fantasy\",\"In a New York Times best-seller, the queen of vampire fiction begins a new\nerotic, chilling series with the history of a beautiful but deadly vampire\nfrom ancient Rome to present-day Paris. Reprint.\"\r\n3348,3478,12700306,Kevin Hearne,Tricked,https://images.gr-assets.com/books/1324455119l/12700306.jpg,4.25,30578,\"fiction, paranormal\",\"After having escaped from vengeful Norse gods in the Arizona desert with\nthe help of the Navajo trickster god Coyote, ancient Druid Atticus\nO'Sullivan finds himself facing off against bloodthirsty desert shape-\nshifters called skinwalkers.\"\r\n3349,3479,106393,Sister Souljah,The Coldest Winter Ever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1589833933l/106393._SY475_.jpg,4.47,23737,\"fiction, contemporary\",The Coldest Winter EverSister Souljah\r\n3350,3480,402843,Shunryu Suzuki,\"Zen Mind, Beginner's Mind\",https://images.gr-assets.com/books/1392992935l/402843.jpg,4.23,24481,\"religion, philosophy\",\"The Zen master explains the practice, nature, and basic attitudes of Zen\nmeditation.\"\r\n3351,3481,25489025,\"Han Kang, Deborah     Smith\",채식주의자 ,https://images.gr-assets.com/books/1478196580l/25489025.jpg,3.59,27242,\"fiction, contemporary\",\"Winner of the 2016 Man Booker International Prize ONE OF ENTERTAINMENT\nWEEKLY'S \"\"BEST BOOKS OF 2016 SO FAR\"\" ONE OF TIME'S \"\"BEST BOOKS OF 2016 SO\nFAR\"\" A beautiful, unsettling novel about rebellion and taboo, violence and\neroticism, and the twisting metamorphosis of a soul Before the nightmares\nbegan, Yeong-hye and her husband lived an ordinary, controlled life. But\nthe dreams--invasive images of blood and brutality--torture her, driving\nYeong-hye to purge her mind and renounce eating meat altogether. It's a\nsmall act of independence, but it interrupts her marriage and sets into\nmotion an increasingly grotesque chain of events at home. As her husband,\nher brother-in-law and sister each fight to reassert their control, Yeong-\nhye obsessively defends the choice that's become sacred to her. Soon their\nattempts turn desperate, subjecting first her mind, and then her body, to\never more intrusive and perverse violations, sending Yeong-hye spiraling\ninto a dangerous, bizarre estrangement, not only from those closest to her,\nbut also from herself. Celebrated by critics around the world, The\nVegetarian is a darkly allegorical, Kafka-esque tale of power, obsession,\nand one woman's struggle to break free from the violence both without and\nwithin her. From the Hardcover edition.\"\r\n3352,3482,333538,\"Franz Kafka, Mark Harman, Regaip Minareci, Şerif Yeşilbucak\",Das Schloß,https://images.gr-assets.com/books/1331696371l/333538.jpg,3.97,25043,\"fiction, classics\",\"(Book Jacket Status: Jacketed) Arriving in a village to take up the\nposition of land surveyor for the mysterious lord of a castle, the\ncharacter known as K. finds himself in a bitter and baffling struggle to\ncontact his new employer and go about his duties. As the villagers and the\nCastle officials block his efforts at every turn, K.’s consuming\nquest–quite possibly a self-imposed one–to penetrate the inaccessible heart\nof the Castle and take its measure is repeatedly frustrated. Kafka once\nsuggested that the would-be surveyor in The Castle is driven by a wish “to\nget clear about ultimate things,” an unrealizable desire that provided the\ndriving force behind all of Kafka’s dazzlingly uncanny fictions. Translated\nby Willa and Edwin Muir From the Hardcover edition.\"\r\n3353,3483,15985373,Mark  Lawrence,Emperor of Thorns,https://images.gr-assets.com/books/1352546239l/15985373.jpg,4.27,21143,\"fantasy, fiction\",\"King of Seven Nations, Jorg Ancrath, is still seeking revenge against his\nfather and sets his sights on becoming Emperor using lost technology.\"\r\n3354,3484,5206937,Jonathan Swift,A Modest Proposal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348659670l/5206937.jpg,4.05,31485,\"classics, fiction\",A Modest ProposalJonathan Swift\r\n3355,3485,51299,Sam Harris,Letter to a Christian Nation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385089375l/51299.jpg,4.04,25570,\"religion, philosophy\",\"Argues that the increasing power of Christian fundamentalists in American\npolitics threatens the country's citizens, blames the Bible for promoting\nintolerance of other faiths, and describes atheism as \"\"an admission of the\nobvious.\"\"\"\r\n3356,3486,6441509,L.J. Smith,The Vampire Diaries: The Return: Shadow Souls ,https://images.gr-assets.com/books/1347424332l/6441509.jpg,3.79,31445,\"fantasy, paranormal\",\"On the run . . . Elena Gilbert's love, the vampire Stefan Salvatore, has\nbeen captured and imprisoned by demonic spirits who are wreaking havoc in\nFell's Church. In order to find him, Elena entrusts her life to Stefan's\nbrother: Damon, the handsome but deadly vampire who wants Elena, body and\nsoul. Elena will stop at nothing to free Stefan. Yet with each passing day\nthe tension between Elena and Damon grows, and she is faced with a terrible\ndecision: Which brother does she really want? Back in Fell's Church, Bonnie\nand Meredith explore the evil that has taken over the town. Their research\nleads to some dire discoveries, and soon they are caught up in Elena's most\ndangerous adventure yet!\"\r\n3357,3487,781046,Susane Colasanti,When It Happens,https://images.gr-assets.com/books/1268350521l/781046.jpg,3.74,32443,\"romance, contemporary\",\"High school seniors Sara and Tobey attempt to figure out what is important\nin life as they try to balance their preparations for their futures with\ntheir enjoyment of the present. Reprint.\"\r\n3358,3488,40929,Edmund Morris,The Rise of Theodore Roosevelt ,https://images.gr-assets.com/books/1452010007l/40929.jpg,4.25,26920,\"biography, history\",\"is the story of seven mena naturalist, a writer, a lover, a hunter, a\ncowboy, a soldier, and a politicianwho merged at the age of forty-two to\nbecome the youngest American president in history.\"\r\n3359,3489,24983,Connie Willis,Doomsday Book,https://images.gr-assets.com/books/1403972500l/24983.jpg,4.03,33000,\"fiction, fantasy\",Doomsday BookConnie Willis\r\n3360,3490,20767918,David Baldacci,The Escape,https://images.gr-assets.com/books/1404163742l/20767918.jpg,4.14,18073,\"thriller, fiction\",\"David Baldacci is one of the world's most popular, widely read\nstorytellers. In his blockbuster thrillers Zero Day and The Forgotten, he\nenthralled readers with John Puller. A combat veteran and special agent\nwith the U.S. Army, Puller is the man they call to investigate the toughest\ncrimes facing the nation. But all his training, all his experience, all his\nskills will not prepare him for his newest case, one that will force him to\nhunt down the most formidable and brilliant prey he has ever tracked: his\nown brother. THE ESCAPE It's a prison unlike any other. Military discipline\nrules. Its security systems are unmatched. None of its prisoners dream of\nescaping. They know it's impossible . . . until now. John Puller's older\nbrother, Robert, was convicted of treason and national security crimes. His\ninexplicable escape from prison makes him the most wanted criminal in the\ncountry. Some in the government believe that John Puller represents their\nbest chance at capturing Robert alive, and so Puller must bring in his\nbrother to face justice. But Puller quickly discovers that his brother is\npursued by others who don't want him to survive. Puller is in turn pushed\ninto an uneasy, fraught partnership with another agent, who may have an\nagenda of her own. They dig more deeply into the case together, and Puller\nfinds that not only are her allegiances unclear, but there are troubling\ndetails about his brother's conviction . . . and someone out there doesn't\nwant the truth to ever come to light. As the nationwide manhunt for Robert\ngrows more urgent, Puller's masterful skills as an investigator and\nstrengths as a fighter may not be enough to save his brother-or himself.\"\r\n3361,3491,20342617,Bryan Stevenson,Just Mercy: A Story of Justice and Redemption,https://images.gr-assets.com/books/1420795201l/20342617.jpg,4.58,27173,\"nonfiction, memoir\",New York Times Bestseller\r\n3362,3492,110694,David Eddings,The Seeress of Kell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1569076652l/110694._SY475_.jpg,4.12,32127,\"fantasy, fiction\",The Seeress of KellDavid Eddings\r\n3363,3493,34452,Brian L. Weiss,\"Many Lives, Many Masters\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390099381l/34452.jpg,4.17,18956,\"spirituality, psychology\",\"Describes the case of a young woman suffering from anxiety attacks,\nexplains how hypnosis revealed her memories of past lives, and discusses\nthe usefulness of regression therapy\"\r\n3364,3494,20881071,Michael Connelly,The Burning Room,https://images.gr-assets.com/books/1392997140l/20881071.jpg,4.05,18672,\"mystery, fiction\",\"Detective Harry Bosch and his new partner investigate a recent murder where\nthe trigger was pulled nine years earlier. In the LAPD's Open-Unsolved\nUnit, not many murder victims die almost a decade after the crime. So when\na man succumbs to complications from being shot by a stray bullet nine\nyears earlier, Bosch catches a case in which the body is still fresh, but\nall other evidence is virtually nonexistent. Now Bosch and rookie Detective\nLucia Soto are tasked with solving what turns out to be a highly charged,\npolitically sensitive case. Beginning with the bullet that's been lodged\nfor years in the victim's spine, they must pull new leads from years-old\ninformation, which soon reveal that this shooting may have been anything\nbut random. In this gripping thriller, Michael Connelly shows once again\nwhy Harry Bosch is \"\"one of the greats of crime fiction\"\" (New York Daily\nNews).\"\r\n3365,3495,84699,Keith Ferrazzi,\"Never Eat Alone: And Other Secrets to Success, One Relationship at a Time\",https://images.gr-assets.com/books/1320417949l/84699.jpg,3.8,25826,\"business, nonfiction\",\"Never Eat Alone: And Other Secrets to Success, One Relationship at a TimeKeith Ferrazzi\"\r\n3366,3496,6871617,Jeaniene Frost,\"This Side of the Grave (Night Huntress, #5)\",https://images.gr-assets.com/books/1282659107l/6871617.jpg,4.28,45825,\"paranormal, romance\",\"This Side of the Grave (Night Huntress, #5)Jeaniene Frost\"\r\n3367,3497,153784,Tamora Pierce,First Test,https://images.gr-assets.com/books/1320478357l/153784.jpg,4.24,40036,\"fantasy, fiction\",\"Ten-year-old Keladry of Mindalen, daughter of nobles, serves as a page but\nmust prove herself to the males around her if she is ever to fulfill her\ndream of becoming a knight.\"\r\n3368,3498,1162022,Melina Marchetta,On the Jellicoe Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1212708945l/1162022.jpg,4.15,33398,\"romance, mystery\",\"Winner of the Michael L. Printz Award * ALA Best Book for Young Adults *\nKirkus Best Book Jellicoe Road is a dazzling tale that is part love story,\npart family drama, and part coming-of-age novel. Described by Kirkus\nReviews as “a beautifully rendered mystery” and by VOYA as “a great choice\nfor more sophisticated readers and those teens who like multifaceted\nstories and characters.” Abandoned by her mother on Jellicoe Road when she\nwas eleven, Taylor Markham, now seventeen, is finally being confronted with\nher past. But as the reluctant leader of her boarding school dorm, there\nisn't a lot of time for introspection. And while Hannah, the closest adult\nTaylor has to family, has disappeared, Jonah Griggs, the boy who might be\nthe key to unlocking the secrets for Taylor’s past, is back in town, moody\nstares and all. In this absorbing story by Melina Marchetta, nothing is as\nit seems and every clue leads to more questions as Taylor tries to work out\nthe connection between her mother dumping her; Hannah finding her; Hannah’s\nsudden departure; a mysterious stranger who once whispered something in her\near; a boy in her dreams; five kids who lived on Jellicoe Road eighteen\nyears ago; and the maddening and magnetic Jonah Griggs, who knows her\nbetter than she thinks he does. If Taylor can put together the pieces of\nher past, she just might be able to change her future.\"\r\n3369,3499,3061,\"Kimon Nicolaides, Mamie Harmon\",The Natural Way to Draw,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438525559l/3061._SX318_.jpg,3.88,30880,\"art, nonfiction\",\"Great for the beginner and the expert, this book offers readers exercises\nto improve their work.\"\r\n3370,3500,66692,R.A. Salvatore,Streams of Silver (Icewind Dale #2),https://images.gr-assets.com/books/1457322786l/66692.jpg,4.14,26237,\"fantasy, fiction\",\"More Americans identify as political independents than as either Democrats\nor Republicans. Tired of the two-party gridlock, the pandering and the lack\nof vision, they've turned in increasing numbers to independent and third-\nparty candidates. In 1998, for the first time in decades, a third-party\ncandidate who was not a refugee from one of the two major parties, Jesse\nVentura, won election to state-wide office, as the governor of Minnesota.\nIn 2000, the public was riveted by the Reform Party's implosion over\nPatrick Buchanan's presidential candidacy and by Ralph Nader's Green Party\nrun, which infuriated many Democrats but energized hundreds of thousands of\ndisaffected voters in stadium-sized super-rallies.\"\r\n3371,3501,16249,Lorna Landvik,Angry Housewives Eating Bon Bons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200872l/16249.jpg,3.78,28453,\"fiction, contemporary\",\"From the initial formation of The Freesia Court Book Club and over the\ncourse of the next thirty years, five women in small-town Minnesota share\nthe events, triumphs, tragedies, hardships, joys, and sorrows of their\nlives, in a heartwarming story of friendship. By the author of Patty Jane's\nHouse of Curl. Reader's Guide included. Reprint.\"\r\n3372,3502,16052012,\"Kate DiCamillo, K.G. Campbell\",Flora and Ulysses: The Illuminated Adventures,https://images.gr-assets.com/books/1424980670l/16052012.jpg,3.87,27839,\"fantasy, fiction\",\"Rescuing a squirrel after an accident involving a vacuum cleaner, comic-\nreading cynic Flora Belle Buckman is astonished when the squirrel, Ulysses,\ndemonstrates astonishing powers of strength and flight after being revived.\nNovel interspersed with comic-style graphic sequences and full-page\nillustrations, all rendered in black-and-white.\"\r\n3373,3503,158119,Cecelia Ahern,If You Could See Me Now,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412709926l/158119.jpg,3.84,28891,\"romance, fiction\",\"Elizabeth Egan's life is in turmoil, thanks to the personal problems of her\nsister, Saoirse, complications that include Saoirse's six-year-old son,\nLuke, a quiet and contemplative child whose world is transformed by the\narrival of a new friend named Ivan. Reprint.\"\r\n3374,3504,67,Edward P. Jones,The Known World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538134660l/67._SY475_.jpg,3.82,26550,\"fiction, history\",\"When a plantation proprietor and former slave--now possessing slaves of his\nown--dies, his household falls apart in the wake of a slave rebellion and\ncorrupt underpaid patrollers who enable free black people to be sold into\nslavery. Reader's Guide available. Reprint. 100,000 first printing.\"\r\n3375,3505,38462,James     Baldwin,Giovanni's Room,https://images.gr-assets.com/books/1501485157l/38462.jpg,4.21,24202,\"fiction, classics\",Giovanni's RoomJames     Baldwin\r\n3376,3506,856917,Yuu Watase, 絶対彼氏 (Zettai Kareshi) 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389466159l/856917.jpg,4.01,29385,\"manga, romance\", 絶対彼氏 (Zettai Kareshi) 1Yuu Watase\r\n3377,3507,17333227,Michael Connelly,The Gods of Guilt,https://images.gr-assets.com/books/1362529630l/17333227.jpg,4.09,21903,\"mystery, fiction\",\"Defense attorney Mickey Haller returns with a haunting case in the gripping\nnew thriller from #1 New York Times bestselling author Michael Connelly.\nMickey Haller gets the text, \"\"Call me ASAP - 187,\"\" and the California penal\ncode for murder immediately gets his attention. Murder cases have the\nhighest stakes and the biggest paydays, and they always mean Haller has to\nbe at the top of his game. When Mickey learns that the victim was his own\nformer client, a prostitute he thought he had rescued and put on the\nstraight and narrow path, he knows he is on the hook for this one. He soon\nfinds out that she was back in LA and back in the life. Far from saving\nher, Mickey may have been the one who put her in danger. Haunted by the\nghosts of his past, Mickey must work tirelessly and bring all his skill to\nbear on a case that could mean his ultimate redemption or proof of his\nultimate guilt. The Gods of Guilt shows once again why \"\"Michael Connelly\nexcels, easily surpassing John Grisham in the building of courtroom\nsuspense\"\" (Los Angeles Times).\"\r\n3378,3508,12749,\"Marcel Proust, Simon Vance, Lydia Davis\",Du côté de chez Swann,https://images.gr-assets.com/books/1452956236l/12749.jpg,4.14,24595,\"classics, fiction\",\"Du côté de chez SwannMarcel Proust, Simon Vance, Lydia Davis\"\r\n3379,3509,682920,\"Don    Wood, Audrey Wood\",\"The Little Mouse, the Red Ripe Strawberry, and the Big Hungry Bear\",https://images.gr-assets.com/books/1413750983l/682920.jpg,4.31,30926,\"fiction, fantasy\",\"Little Mouse worries that the big, hungry bear will take his freshly\npicked, ripe, red strawberry for himself.\"\r\n3380,3510,30245,Laurell K. Hamilton,\"Cerulean Sins (Anita Blake, Vampire Hunter, #11)\",https://images.gr-assets.com/books/1396595697l/30245.jpg,3.84,40737,\"paranormal, fantasy\",\"The human consort of Master Vampire Jean-Claude and Micah, the leopard\nshapeshifter, Anita Blake must come to Jean-Claude's assistance when his\noldest ancestor sends one of her vicious and powerful underlings to St.\nLouis, threatening his and his clan's very existence. Reprint.\"\r\n3381,3511,149196,\"Isabel Allende, Margaret Sayers Peden\",Eva Luna,https://images.gr-assets.com/books/1478631242l/149196.jpg,3.95,27534,\"fiction, classics\",\"\"\"Tell me a story no one has heard before\"\", Eva Luna's lover asks her, and\nEva Luna obliges with an enchanting medley that evokes all the pathos,\nlove, joy, and misery of life in Latin America. Set from the humid\nCaribbean to the Antarctic tip of Argentina, Allende's stories capture the\nrichness of the Latin American experience and range in theme from the\nextinction of Amazon tribes to the modern theory that love can conquer\ncancer.In The Stories of Eva Luna Allende employs magical realism to\nintegrate dreamlike elements into the landscape of her Latin American\ncharacters. The result, a provocative collection showcasing her haunting\nmythic voice and fantastic imagery, prompted the San Francisco Chronicle to\nsay, \"\"Allende again shows her brilliance as a storyteller\"\". Copyright ©\nLibri GmbH. All rights reserved.\"\r\n3382,3512,9634967,Daniel H. Wilson,Robopocalypse,https://images.gr-assets.com/books/1327885891l/9634967.jpg,3.67,25914,\"fiction, thriller\",\"Two decades into the future humans are battling for their very survival\nwhen a powerful AI computer goes rogue, and all the machines on earth rebel\nagainst their human controllers.\"\r\n3383,3513,32432,Dean Koontz,Fear Nothing ,https://images.gr-assets.com/books/1168390806l/32432.jpg,3.99,28875,\"horror, fiction\",\"Afflicted with a rare genetic disorder that leaves him extremely vulnerable\nto light, Christopher Snow witnesses a murder in the night, a murder only\nhe can solve, that forces him to uncover the many oddities of Moonlight\nBay.\"\r\n3384,3514,6547187,Jeaniene Frost,First Drop of Crimson,https://images.gr-assets.com/books/1255471887l/6547187.jpg,4.15,43188,\"paranormal, romance\",\"When a demon shape-shifter begins stalking an innocent mortal, Spade, a\npowerful vampire, is duty-bound to protect this woman who arouses his\ndeepest hungers, even if it means destroying his own kind. (Paranormal\nromance). Original. 200,000 first printing.\"\r\n3385,3515,1434105,Janet Evanovich,Plum Lucky ,https://images.gr-assets.com/books/1217483848l/1434105.jpg,3.72,39872,\"mystery, fiction\",\"When Diesel reappears just after Valentine's Day, he starts Stephanie and\nher friends on a search for a bag of stolen money found by Grandma Mazur.\"\r\n3386,3516,2334751,Marian Keyes,This Charming Man,https://images.gr-assets.com/books/1328451976l/2334751.jpg,3.75,28095,\"fiction, romance\",This Charming ManMarian Keyes\r\n3387,3517,4110198,\"James Patterson, Maxine Paetro\",The 8th Confession,https://images.gr-assets.com/books/1408315092l/4110198.jpg,4.02,29973,\"mystery, fiction\",\"The 8th ConfessionJames Patterson, Maxine Paetro\"\r\n3388,3518,51070,Sue Townsend,\"The Secret Diary of Adrian Mole, Aged 13 3/4\",https://images.gr-assets.com/books/1285269220l/51070.jpg,3.85,28952,\"fiction, contemporary\",\"Adrian Mole's first love, Pandora, has left him; a neighbor, Mr. Lucas,\nappears to be seducing his mother (and what does that mean for his\nfather?); the BBC refuses to publish his poetry; and his dog swallowed the\ntree off the Christmas cake. \"\"Why\"\" indeed.\"\r\n3389,3519,31196,W. Somerset Maugham,The Razor's Edge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925123l/31196.jpg,4.18,25267,\"fiction, classics\",\"Leaving wealth and loved ones behind, Larry Darrell journeys to the\nmountains of India in search of spiritual wisdom.\"\r\n3390,3520,47559,Edward Gorey,Amphigorey,https://images.gr-assets.com/books/1327649608l/47559.jpg,4.08,28815,\"art, comics\",\"Brings together seventeen illustrated nonsense compositions, including\n\"\"Epiplective Bicycle,\"\" \"\"The Utter Zoo,\"\" \"\"The Blue Aspic,\"\" \"\"The Sopping\nThursday,\"\" and \"\"The Glorious Nosebleed\"\"\"\r\n3391,3521,14498,\"Mike Carey, Glenn Fabry, Neil Gaiman\",Neverwhere Graphic Novel,https://images.gr-assets.com/books/1309582431l/14498.jpg,4.21,29375,\"fantasy, comics\",\"The comics adaptation of Neil Gaiman's acclaimed novel follows the\nadventures of an ordinary Londoner who stops to help an enigmatic girl and\nis drawn into a battle to save a strange underworld kingdom--London Below--\nfrom destruction.\"\r\n3392,3522,4447622,Chloe Neill,Some Girls Bite,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441402786l/4447622._SY475_.jpg,4.01,46825,\"paranormal, fantasy\",\"When graduate student Merit is saved from a vampire attack by being turned\ninto a vampire herself, she struggles to figure out her place amongst her\nnew vampire friends while being targeted by an unknown entity.\"\r\n3393,3523,17143,James     Baldwin,Go Tell It on the Mountain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348424233l/17143.jpg,4,27845,\"fiction, religion\",Go Tell It on the MountainJames     Baldwin\r\n3394,3524,27000,Jasper Fforde,Lost in a Good Book,https://images.gr-assets.com/books/1419889476l/27000.jpg,4.14,37873,\"fantasy, crime\",\"In order to rescue the love of her life from the corrupt multinational\nGoliath, Thursday seeks out a believed-vanquished enemy from the pages of\nThe Raven and finds unexpected assistance from Great Expectation's Miss\nHavisham. Reader's Guide available. Reprint. 150,000 first printing.\"\r\n3395,3525,16113737,\"Naoki Higashida, K.A. Yoshida, David Mitchell\",自閉症の僕が跳びはねる理由～会話のできない中学生がつづる内なる心～,https://images.gr-assets.com/books/1384018847l/16113737.jpg,3.78,25504,\"nonfiction, memoir\",\"Written by Naoki Higashida when he was only thirteen, this remarkable book\nprovides a rare insight into the often baffling behaviour of autistic\nchildren. Using a question and answer format, Naoki explains things like\nwhy he talks loudly or repeats the same questions, what causes him to have\npanic attacks, and why he likes to jump. He also shows the way he thinks\nand feels about his world - other people, nature, time and beauty, and\nhimself. Abundantly proving that people with autism do possess imagination,\nhumour and empathy, he also makes clear how badly they need our compassion,\npatience and understanding. David Mitchell and his wife have translated\nNaoki's book so that it might help others dealing with autism and generally\nilluminate a little-understood condition. It gives us an exceptional chance\nto enter the mind of another and see the world from a strange and\nfascinating perspective. The book also features eleven original\nillustrations, inspired by Naoki's words, by the artistic duo Kai and\nSunny.\"\r\n3396,3526,26252859,Rick Riordan,The Hidden Oracle,https://images.gr-assets.com/books/1449765273l/26252859.jpg,4.33,45127,\"fantasy, fiction\",\"How do you punish an immortal? By making him human. After angering his\nfather Zeus, the god Apollo is cast down from Olympus. Weak and\ndisoriented, he lands in New York City as a regular teenage boy. Now,\nwithout his godly powers, the four-thousand-year-old deity must learn to\nsurvive in the modern world until he can somehow find a way to regain\nZeus's favor. But Apollo has many enemies-gods, monsters, and mortals who\nwould love to see the former Olympian permanently destroyed. Apollo needs\nhelp, and he can think of only one place to go . . . an enclave of modern\ndemigods known as Camp Half-Blood.\"\r\n3397,3527,7039218,Jeaniene Frost,\"Once Burned (Night Prince, #1)\",https://images.gr-assets.com/books/1335738276l/7039218.jpg,4.24,44106,\"paranormal, romance\",\"Once Burned (Night Prince, #1)Jeaniene Frost\"\r\n3398,3528,24911006,Jon Krakauer,Missoula: Rape and the Justice System in a College Town,https://images.gr-assets.com/books/1491227618l/24911006.jpg,4.06,24270,\"nonfiction, crime\",Missoula: Rape and the Justice System in a College TownJon Krakauer\r\n3399,3529,509784,Isaac Asimov,The End of Eternity,https://images.gr-assets.com/books/1405527675l/509784.jpg,4.21,26560,\"fiction, classics\",\"Andrew Harlan, an Eternal, falls in love with Noys Lambert, who lives in\nreal time, but when he tries to make her an Eternal, he is faced with a\ncrucial decision about the destruction of Eternity.\"\r\n3400,3530,371787,David Eddings,Sorceress of Darshiva,https://images.gr-assets.com/books/1342438281l/371787.jpg,4.09,34086,\"fantasy, fiction\",\"As the bestselling THE Mallorean series contnues, Garion is pursuing\nZandramas, in the form of a great dragon flying over them, across the known\nworld. With the forces of evil threatening on both sides, Garion still had\nto get to the Place Which Is No More, as the Seeress of Kell had warned,\nbut they had no idea where that might be....\"\r\n3401,3531,65497,Janette Oke,\"Love Comes Softly (Love Comes Softly, #1)\",https://images.gr-assets.com/books/1273177650l/65497.jpg,4.22,28690,\"romance, christian\",\"Love Comes Softly introduced the characters of Marty and Clark Davis, whose\ntragic circumstances brought them to a \"\"marriage of convenience\"\" on the\nfrontier prairies during the mid 1800s. The story of how Clark's patient,\ncaring love mirrored that of the heavenly Father, drawing Marty to faith\nand to love, has captured the hearts and imaginations of over one million\nreaders on Book One alone!\"\r\n3402,3532,18666047,Joe Abercrombie,Half a King,https://images.gr-assets.com/books/1389378321l/18666047.jpg,3.98,23911,\"fantasy, fiction\",Half a KingJoe Abercrombie\r\n3403,3533,78987,Jeffrey Archer,The Prodigal Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924362l/78987.jpg,3.92,25523,\"fiction, thriller\",\"Driven by ambition, Florentyna Rosnovski--daughter of a hotel baron and\ndaughter-in-law of his bitterest rival--relinquishes her inheritance to\nmarry the man she loves, builds her own business empire, and ultimately\npursues the U.S. presidency. Reprint.\"\r\n3404,3534,12652457,Brent Weeks,The Broken Eye,https://images.gr-assets.com/books/1376583941l/12652457.jpg,4.46,27754,\"fantasy, fiction\",\"New York Times bestseller The Broken Eye continues the spectacular\nLightbringer series from the New York Times bestselling author of The Black\nPrism and The Blinding Knife. As the old gods awaken and satrapies\nsplinter, the Chromeria races to find the only man who can still end a\ncivil war before it engulfs the known world. But Gavin Guile has been\ncaptured by an old enemy and enslaved on a pirate galley. Worse still,\nGavin has lost more than his powers as Prism--he can't use magic at all.\nWithout the protection of his father, Kip Guile will face a master of\nshadows as his grandfather moves to choose a new Prism and put himself in\npower. With Teia and Karris, Kip will have to use all his wits to survive a\nsecret war between noble houses, religious factions, rebels, and an\nascendant order of hidden assassins called The Broken Eye. Lightbringer The\nBlack Prism The Blinding Knife The Broken Eye The Blood Mirror For more\nfrom Brent Weeks, check out: Night Angel The Way of Shadows Shadow's Edge\nBeyond the Shadows Night Angel: The Complete Trilogy (omnibus) Perfect\nShadow: A Night Angel Novella (e-only) The Way of Shadows: The Graphic\nNovel\"\r\n3405,3535,53022,\"W.B. Yeats, Richard J. Finneran\",The Collected Poems of W.B. Yeats,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436919797l/53022._SY475_.jpg,4.25,28327,\"poetry, classics\",\"The Collected Poems of W.B. YeatsW.B. Yeats, Richard J. Finneran\"\r\n3406,3536,153800,Tamora Pierce,Lady Knight ,https://images.gr-assets.com/books/1215394344l/153800.jpg,4.3,37403,\"fantasy, fiction\",\"When she became a knight, eighteen-year-old Kel hoped to be given a combat\npost, but instead she finds herself named commander of an outpost of\nrefugees, where she must face the unnatural forces of the evil Balyce.\"\r\n3407,3537,627984,David Baldacci,Stone Cold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556721751l/627984._SX318_.jpg,4.11,27510,\"fiction, mystery\",\"The #1 bestselling author of The Collectors and Simple Genius returns with\nSTONE COLD...an unforgetable novel of revenge, conspiracy, and murder that\nbrings a band of unlikely heroes face-to-face with their greatest threat.\nOliver Stone, the leader of the mysterious group that calls itself the\nCamel Club, is both feared and respected by those who've crossed his path.\nKeeping a vigilant watch over our leaders in Washington D.C., the Camel\nClub has won over some allies, but it has also earned formidable enemies-\nincluding those in power who will do anything to prevent Stone and his\nfriends from uncovering the hidden, secret work of the government.\nAnnabelle Conroy, an honorary member of the Camel Club, is also the\ngreatest con artist of her generation. She has swindled forty million\ndollars from casino king Jerry Bagger, the man who murdered her mother. Now\nhe's hot on her trail with only one goal in mind: Annabelle's death. But as\nStone and the Camel Club circle the wagons to protect Annabelle, a new\nopponent, who makes Bagger's menace pale by comparison, suddenly arises.\nOne by one, men from Stone's shadowy past are turning up dead. Behind this\nslaughter stands one man: Harry Finn. To almost all who know him, Finn is a\ndoting father and loving husband who uses his skills behind the scenes to\nkeep our nation safe. But the other face of Harry Finn is that of an\nunstoppable killer who inevitably sets his lethal bull's-eye on Oliver\nStone. And with Finn, Stone may well have met his match. As Annabelle and\nthe Camel Club fight for their lives, the twists and turns whipsaw, leading\nto a finale that is as explosive as it is shattering. And when buried\nsecrets are at last violently resurrected, the members of the Camel Club\nleft standing will be changed forever. With unrelenting pacing, stunning\nreversals, and two of the most compelling characters in modern fiction,\nSTONE COLD is David Baldacci writing at his breathtaking best.\"\r\n3408,3538,3831279,أحمد مراد,ڤيرتيجو,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216693777l/3831279.jpg,3.72,17001,\"fiction, crime\",ڤيرتيجوأحمد مراد\r\n3409,3539,1215290,\"Barbara Shook Hazen, Robert Lewis May, Richard Scarry\",Rudolph the Red-Nosed Reindeer,https://images.gr-assets.com/books/1330095176l/1215290.jpg,4.3,33355,\"classics, fiction\",\"Although the other reindeer laugh at him because of his bright red nose,\nRudolph proves his worth when he is chosen to lead Santa Claus's sleigh on\na foggy night.\"\r\n3410,3540,9555,\"Haruki Murakami, Jay Rubin, Alfred Birnbaum\",象の消滅 [Zō no shōmetsu],https://images.gr-assets.com/books/1391384346l/9555.jpg,3.88,23950,\"fiction, contemporary\",\"象の消滅 [Zō no shōmetsu]Haruki Murakami, Jay Rubin, Alfred Birnbaum\"\r\n3411,3541,218427,Frederik Pohl,Gateway,https://images.gr-assets.com/books/1441698400l/218427.jpg,4.07,29685,\"fiction, classics\",\"The Heechee gateways, remnants of an ancient civilization, provide\ninstantaneous passage to the far reaches of the universe but do not ensure\ndestination, return, wealth, or survival, in a new edition of the classic\noriginal novel from the author's award-winning series. Reprint. 15,000\nfirst printing.\"\r\n3412,3542,15014,\"Kerry Patterson, Joseph Grenny, Ron McMillan, Al Switzler, Stephen R. Covey\",Crucial Conversations: Tools for Talking When Stakes are High,https://images.gr-assets.com/books/1497193248l/15014.jpg,4,26172,\"business, nonfiction\",\"Crucial Conversations: Tools for Talking When Stakes are HighKerry Patterson, Joseph Grenny, Ron McMillan, Al Switzler, Stephen R. Covey\"\r\n3413,3543,25669,Thomas Cahill,How the Irish Saved Civilization: The Untold Story of Ireland's Heroic Role from the Fall of Rome to the Rise of Medieval Europe  ,https://images.gr-assets.com/books/1403191471l/25669.jpg,3.81,29586,\"history, nonfiction\",\"Bringing readers to the Ireland of St. Patrick and the Book of Kells, a\nhistorical examination of Ireland's role in the rise of medieval Europe\ncites the work of countless monks and scribes in the preservation of the\nWest's written treasury. Reprint. Tour.\"\r\n3414,3545,13615414,Mary Roach,Gulp: Adventures on the Alimentary Canal,https://images.gr-assets.com/books/1352232547l/13615414.jpg,3.92,27523,\"science, nonfiction\",\"The humor scientist behind Stiff: The Curious Lives of Human Cadavers and\nSpook: Science Tackles the Afterlife takes a tour of the human digestive\nsystem, explaining why the stomach doesn't digest itself and whether\nconstipation can kill you.\"\r\n3415,3546,53645,Ruth Reichl,Tender at the Bone: Growing Up at the Table,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388325309l/53645.jpg,4.05,27718,\"memoir, nonfiction\",\"\"\"While all good food writers are humorous...few are so riotously,\neffortlessly entertaining as Ruth Reichl.\"\"---The New York Times Book Review\n--\"\r\n3416,3547,34492,Terry Pratchett,Wintersmith,https://images.gr-assets.com/books/1290229201l/34492.jpg,4.22,33917,\"fantasy, fiction\",WintersmithTerry Pratchett\r\n3417,3548,22327,William  Gibson,The Miracle Worker,https://images.gr-assets.com/books/1419184250l/22327.jpg,4.21,28617,\"biography, classics\",\"A text of the television play, intended for reading, of Anne Sullivan\nMacy's attempts to teach her pupil, Helen Keller, to communicate.\"\r\n3418,3549,16033906,Maya Banks,Fever,https://images.gr-assets.com/books/1359944376l/16033906.jpg,4.01,39102,\"romance, contemporary\",\"Jace, Ash, and Gabe, three powerful friends, share everything--even women,\nbut when they meet Bethany, Jace is determined to be the only man in her\nlife, even if it means jeopardizing his lifelong friendships.\"\r\n3419,3550,783291,Alice Sebold,The Almost Moon,https://images.gr-assets.com/books/1310421579l/783291.jpg,2.67,28299,\"fiction, contemporary\",The Almost MoonAlice Sebold\r\n3420,3551,41913,P.D. James,The Children of Men,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271989l/41913.jpg,3.69,28139,\"fiction, mystery\",\"In 2021, with the human race becoming extinct because of the infertility of\nall males, Oxford historian Theodore Faron is drawn into the schemes of an\nunlikely group of revolutionaries out to save society. Reissue. (A\nUniversal Pictures/Strike Entertainment film, releasing December 2006,\ndirected by Alfonso Cuarón, starring Clive Owen, Julianne Moore, Gary\nOldman, Charlie Hunnam, Michael Caine, & Chiwetel Ejiofor) (Science\nFiction)\"\r\n3421,3552,91953,\"Thomas Hobbes, C.B. Macpherson\",\"Leviathan or The Matter, Forme and Power of a Common Wealth Ecclesiasticall and Civil\",https://images.gr-assets.com/books/1326788684l/91953.jpg,3.66,26284,\"nonfiction, fiction\",Presents the seventeenth century treatise on power and politics.\r\n3422,3553,20454672,Sandra Brown,Mean Streak,https://images.gr-assets.com/books/1399916694l/20454672.jpg,4.04,24245,\"mystery, romance\",Mean StreakSandra Brown\r\n3423,3554,17880708,K. Bromberg,Fueled,https://images.gr-assets.com/books/1375489908l/17880708.jpg,4.51,37667,\"romance, sports\",FueledK. Bromberg\r\n3424,3555,2195289,Sloane Crosley,I Was Told There'd Be Cake,https://images.gr-assets.com/books/1311282474l/2195289.jpg,3.45,29695,\"memoir, nonfiction\",I Was Told There'd Be CakeSloane Crosley\r\n3425,3556,17157,Antonia Fraser,Marie Antoinette: The Journey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200308l/17157.jpg,3.91,24158,\"history, biography\",\"The acclaimed author of The Six Wives of Henry VIII describes her life,\nfrom her betrothal as an unsophisticated, poorly educated fourteen-year-old\ngirl to the future King Louis XVI, through her difficult marriage in the\nFrench court, to her courage in the face of revolutionaries who sent her to\nthe guillotine twenty-three years later. Reader's Guide available. Reprint.\n75,000 first printing.\"\r\n3426,3557,161099,Michelle Magorian,\"Good Night, Mr. Tom\",https://images.gr-assets.com/books/1282757902l/161099.jpg,4.28,24828,\"classics, fiction\",\"London is poised on the brink of World War 11. Timid, scrawny Willie Beech\n-- the abused child of a single mother -- is evacuated to the English\ncountryside. At first, he is terrified of everything, of the country sounds\nand sights, even of Mr. Tom, the gruff, kindly old man who has taken him\nin. But gradually Willie forgets the hate and despair of his past. He\nlearns to love a world he never knew existed, a world of friendship and\naffection in which harsh words and daily beatings have no place. Then a\ntelegram comes. Willie must return to his mother in London. When weeks pass\nby with no word from Willie, Mr. Tom sets out for London to look for the\nyoung boy he has come to love as a son.\"\r\n3427,3558,7600924,Tabitha Suzuma,Forbidden,https://images.gr-assets.com/books/1394239949l/7600924.jpg,4.06,37204,\"romance, contemporary\",\"Sixteen-year-old Maya and seventeen-year-old Lochan tell, in their separate\nvoices, of their confusion and longing as they fall in love with one\nanother after years of functioning as parents to three younger siblings due\nto their alcoholic mother's neglect.\"\r\n3428,3559,18209454,\"Rob Thomas, Jennifer Graham\",The Thousand-Dollar Tan Line,https://images.gr-assets.com/books/1393100477l/18209454.jpg,3.99,28789,\"mystery, crime\",\"This first book in an all-new mystery series finds 28-year-old Veronica\nMars investigating one of Neptune's darkest cases with the help of her old\nfriends Logan Echolls, Mac Mackenzie, Wallace Fennel and Dick Casablancas.\nOriginal.\"\r\n3429,3560,703,Philip Roth,The Plot Against America,https://images.gr-assets.com/books/1327711853l/703.jpg,3.71,26262,\"fiction, history\",\"In a novel of alternative history, aviation hero Charles A. Lindbergh\ndefeats Franklin Roosevelt in the 1940 presidential election, negotiating\nan accord with Adolf Hitler and accepting his conquest of Europe and anti-\nSemitic policies.\"\r\n3430,3561,144977,J.R. Moehringer,The Tender Bar: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348917147l/144977.jpg,3.93,23055,\"memoir, biography\",\"The bestselling memoir that captured the hearts of readers and critics\nnationwide is now available in paperback In the tradition of This Boy's\nLife and The Liar's Club, J.R. Moehringer's The Tender Bar is a raucous,\npoignant, luminously written memoir about a boy striving to become a man,\nand his romance with a bar. A national bestseller that was named one of the\n100 Most Notable Books of 2005 by the New York Times, The Tender Bar will\nreach an even larger audience in paperback.\"\r\n3431,3562,201345,Brian Jacques,Martin the Warrior,https://images.gr-assets.com/books/1327877608l/201345.jpg,4.13,34640,\"fantasy, fiction\",Martin the WarriorBrian Jacques\r\n3432,3563,7801229,Cinda Williams Chima,The Exiled Queen,https://images.gr-assets.com/books/1285276245l/7801229.jpg,4.34,33789,\"fantasy, romance\",The Exiled QueenCinda Williams Chima\r\n3433,3564,691520,\"Danny Sugerman, Jerry Hopkins\",No One Here Gets Out Alive,https://images.gr-assets.com/books/1344270704l/691520.jpg,3.92,28436,\"music, biography\",\"Here is Jim Morrison in all his complexity-singer, philosopher, poet,\ndelinquent-the brilliant, charismatic, and obsessed seeker who rejected\nauthority in any form, the explorer who probed \"\"the bounds of reality to\nsee what would happen...\"\" Seven years in the writing, this definitive\nbiography is the work of two men whose empathy and experience with Jim\nMorrison uniquely prepared them to recount this modern tragedy: Jerry\nHopkins, whose famous Presley biography, Elvis, was inspired by Morrison's\nsuggestion, and Danny Sugerman, confidant of and aide to the Doors. With an\nafterword by Michael McClure.\"\r\n3434,3565,17461,\"Marguerite Henry, Wesley Dennis\",Misty of Chincoteague,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279096l/17461.jpg,4.04,35181,\"fiction, classics\",\"Misty of ChincoteagueMarguerite Henry, Wesley Dennis\"\r\n3435,3566,14316,David Mitchell,Black Swan Green,https://images.gr-assets.com/books/1320562118l/14316.jpg,3.97,25728,\"fiction, contemporary\",\"A meditative novel of a young boy on the cusp of adulthood follows a single\nyear in the life of thirteen-year-old Jason Taylor as he grows up in what\nis for him the sleepiest village in Worcestershire, England, in 1982. By\nthe aauthor of Cloud Atlas. Reprint. 75,000 first printing.\"\r\n3436,3567,22686,Jane Green,The Other Woman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409800838l/22686.jpg,3.68,26584,\"fiction, romance\",The Other WomanJane Green\r\n3437,3568,15171,Haven Kimmel,\"A Girl Named Zippy: Growing up Small in Mooreland, Indiana \",https://images.gr-assets.com/books/1334082673l/15171.jpg,3.79,27928,\"memoir, nonfiction\",\"The author offers a chronicle of growing up in a small town in America's\nheartland, offering portraits of her family and her encounters with the\ncomplexities of the adult world, romance, and small-town life during the\n1960s and 1970s.\"\r\n3438,3569,43325,Sidney Sheldon,Nothing Lasts Forever,https://images.gr-assets.com/books/1344265620l/43325.jpg,3.82,23336,\"fiction, thriller\",\"Three young doctors-their hopes, their dreams, their unexpected desires...\nDr. Paige Taylor: She swore it was euthanasia, but when Paige inherited a\nmillion dollars from a patient, the D.A. called it murder. Dr. Kat Hunter:\nShe vowed never to let another man too close again-until she accepted the\nchallenge of a deadly bet. Dr. Honey Taft: To make it in medicine, she knew\nshe'd need something more than the brains God gave her. Racing from the\nlife-and-death decisions of a big major hospital to the tension-packed\nfireworks of a murder trial, Nothing Lasts Forever lays bare the ambitions\nand fears of healers and killers, lovers and betrayers. And proves once\nagain that no reader can outguess Sidney Sheldon, the master of the\nunexpected.\"\r\n3439,3570,4820,Nathaniel Philbrick,\"Mayflower: A Story of Courage, Community, and War\",https://images.gr-assets.com/books/1474488130l/4820.jpg,3.86,25752,\"history, nonfiction\",\"Traces the history of Plymouth Colony in the seventeenth century,\ndescribing the experiences of the Pilgrims who arrived on the \"\"Mayflower\"\"\nand examining the events that led up to the bloody confrontation between\nthe Pilgrims and the Wampanoag tribes.\"\r\n3440,3571,435045,Kresley Cole,Wicked Deeds on a Winter's Night (Immortals After Dark #4),https://images.gr-assets.com/books/1357614752l/435045.jpg,4.37,40001,\"paranormal, romance\",\"New York Times and USA TODAY bestselling author Kresley Cole’s scorching\ntale about a jaded werewolf and a captivating young witch in the third\nnovel in the Immortals After Dark series is “one for the keeper shelf” (RT\nBook Reviews)! Bowen MacRieve of the Lykae clan was nearly destroyed when\nhe lost the one woman meant for him. The ruthless warrior grew even colder,\nnever taking another to his bed—until a smoldering encounter with his\nenemy, Mariketa the Awaited, reawakens his darkest desires. When sinister\nforces unite against her, the Highlander finds himself using all his\nstrength and skill to keep her alive. Temporarily stripped of her powers,\nMari is forced to take refuge with her sworn adversary. It’s rumored that\nno one can tempt Bowen’s hardened heart, but soon passion burns between\nthem. Though a future together is impossible, she fears he has no intention\nof letting her go. If they defeat the evil that surrounds them, can Mari\ndeny Bowen when he demands her body and soul—or will she risk everything\nfor her fierce protector?\"\r\n3441,3572,6462,Joseph J. Ellis,His Excellency: George Washington,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925509l/6462.jpg,3.9,27178,\"history, biography\",\"Draws on the Washington papers from archives at the University of Virginia\nto chronicle George Washington's military career and presidential years,\ndiscussing his struggle to keep an emerging America united and other\naccomplishments.\"\r\n3442,3573,22323,\"William Gibson, Bruce Sterling\",Burning Chrome and Other Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349075772l/22323.jpg,4.05,27359,\"fiction, fantasy\",\"Best-known for his seminal sf novel Neuromancer, William Gibson is actually\nbest when writing short fiction. Tautly-written and suspenseful, Burning\nChrome collects 10 of his best short stories with a preface from Bruce\nSterling, now available for the first time in trade paperback. These\nbrilliant, high-resolution stories show Gibson's characters and intensely-\nrealized worlds at his absolute best, from the chip-enhanced couriers of\n\"\"Johnny Mnemonic\"\" to the street-tech melancholy of \"\"Burning Chrome.\"\"\"\r\n3443,3574,7569223,Lauren Weisberger,Last Night at Chateau Marmont,https://images.gr-assets.com/books/1269790764l/7569223.jpg,3.51,25002,\"romance, contemporary\",Last Night at Chateau MarmontLauren Weisberger\r\n3444,3575,1728744,\"A.L. Singer, Walt Disney Company\",Sleeping Beauty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1187481320l/1728744.jpg,4.32,27469,\"classics, fantasy\",\"A wicked witch's spell over the Princess Aurora is broken when Prince\nPhillip releases her with a kiss.\"\r\n3445,3576,13638570,Rebecca Donovan,\"Out of Breath (Breathing, #3)\",https://images.gr-assets.com/books/1367613888l/13638570.jpg,4.32,39310,\"romance, contemporary\",\"Emma leaves Weslyn and everyone in it behind to attend Stanford University,\njust as she always intended. A shell of her former self, she is not the\nsame girl. She is broken, and the only way that she'll be whole again is\nthrough forgiveness. Emma must find a way to forgive herself and recognize\nher own worth before she can receive the love she deserves.\"\r\n3446,3577,8965,Darren Shan,\"The Vampire's Assistant (Cirque du Freak, #2) \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255813244l/8965.jpg,4.12,29943,\"fantasy, horror\",\"The Vampire's Assistant (Cirque du Freak, #2) Darren Shan\"\r\n3447,3578,104089,Guy Gavriel Kay,Tigana,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348738842l/104089.jpg,4.12,30831,\"fantasy, fiction\",\"Allesan, son of the king of Tigana, and other survivors of the forgotten\nworld band together to plot the demise of Brandin of Ygrath.\"\r\n3448,3579,8765,Nora Ephron,I Feel Bad About My Neck: And Other Thoughts on Being a Woman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1558101309l/8765._SY475_.jpg,3.65,29749,\"memoir, nonfiction\",\"A collection of essays offers a humorous look at the ups and downs of being\na woman of a certain age, discussing the tribulations of maintenance and\ntrying to stop the clock, menopause, and empty nests.\"\r\n3449,3580,78950,Louisa May Alcott,\"Little Men, or Life at Plumfield with Jo's Boys\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1575357839l/78950.jpg,3.84,36501,\"classics, fiction\",\"Louisa May Alcott's classic story about young boys growing up in\nnineteenth-century New England.\"\r\n3450,3581,415,Thomas Pynchon,Gravity's Rainbow,https://images.gr-assets.com/books/1414969925l/415.jpg,4.03,24990,\"fiction, classics\",\"Tyrone Slothrop, a GI in London in 1944, is under suspicion by his\nsuperiors and soon on the run from enemies through Germany.\"\r\n3451,3582,173526,\"Brennan Manning, Michael W. Smith, Rich Mullins\",\"The Ragamuffin Gospel: Good News for the Bedraggled, Beat-Up, and Burnt Out\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266488592l/173526.jpg,4.23,24568,\"christian, religion\",\"Brennan Manning offers insight from a past soaked with brokenness and his\nsweet reunion with God. The NIV Ragamuffin Bible is a precious reminder to\nthe sinner in everyone that they are still God's beloved. Do you believe\nthat God not only loves you, but that he also likes you? Shedding new light\non God's Word, author Brennan Manning poses this question in the NIV\nRagamuffin Bible. Through authentic devotions, meditations, and\nreflections, Brennan offers insight from a past soaked with brokenness and\nhis sweet reunion with God, painting a beautiful picture of a prodigal son\nlimping back to his overjoyed father. This sturdy hardcover Bible is a\nprecious reminder to the sinner in everyone that they are still God's\nbeloved. Features include: Complete text of the world's most popular\nmodern-English Bible, the NIV 104 Devotions guide you into a deeper\nconnection to God and his Word 250 Reflections help you understand what it\nmeans to be a child of God 150 Quotes offer short but thoughtful insights\ninto God's kingdom\"\r\n3452,3583,93728,Meg Cabot,Princess in Love,https://images.gr-assets.com/books/1271682172l/93728.jpg,3.76,39306,\"romance, fiction\",\"Princess Amelia Mignonette Grimaldi Thermopolis Renaldo may seem the\nluckiest girl ever. She's a princess, for starters. She also lives in New\nYork City. And while she's no supermodel, mirrors do not crack at her\nreflection. Best of all, she finally has a boyfriend. The truth is,\nhowever, that Mia spends all her time doing one of three things: preparing\nfor her nerve-racking entrÉe into Genovian society under the slave-driving\nbut elegant GrandmÉre, slogging through congestion unique to Manhattan in\nDecember, and avoiding further smooches from her hapless boyfriend, Kenny.\nAll she wants is a little peace and quiet...and a certain someone else to\nbe her boyfriend. For Mia, being a princess in love is not the fairy tale\nit's supposed to be...or is it?\"\r\n3453,3584,429138,Wilbur Smith,River God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192405l/429138.jpg,4.2,24920,\"fiction, fantasy\",River GodWilbur Smith\r\n3454,3585,140963,Willa Cather,O Pioneers!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388956566l/140963.jpg,3.84,30973,\"fiction, classics\",\"This powerful early Cather novel, a landmark of American fiction, tells the\nstory of the young Alexandra Bergson, whose dying father leaves her in\ncharge of the family and of the Nebraska lands they have struggled to farm.\nIn Alexandra's lifelong fight to survive and succeed, Cather relates an\nimportant chapter in the history of the American frontier.\"\r\n3455,3586,1237300,Naomi Klein,The Shock Doctrine: The Rise of Disaster Capitalism,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590618l/1237300._SY475_.jpg,4.22,24111,\"nonfiction, history\",\"In this groundbreaking alternative history of the most dominant ideology of\nour time, Milton Friedman's free-market economic revolution, Naomi Klein\nchallenges the popular myth of this movement's peaceful global victory.\nFrom Chile in 1973 to Iraq today, Klein shows how Friedman and his\nfollowers have repeatedly harnessed terrible shocks and violence to\nimplement their radical policies. As John Gray wrote in The Guardian,\n\"\"There are very few books that really help us understand the present. The\nShock Doctrine is one of those books.\"\"\"\r\n3456,3587,21094993,\"Jonas Jonasson, Rachel Willson-Broyles\",Analfabeten som kunde räkna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587991944l/21094993._SY475_.jpg,3.74,18072,\"fiction, contemporary\",\"A wildly picaresque new novel from Jonas Jonasson, the author of the\ninternationally bestselling The 100-Year-Old Man Who Climbed Out the Window\nand Disappeared In a tiny shack in the largest township in South Africa,\nNombeko Mayeki is born. Put to work at five years old and orphaned at ten,\nshe quickly learns that the world expects nothing more from her than to die\nyoung, be it from drugs, alcohol, or just plain despair. But Nombeko has\ngrander plans. She learns to read and write, and at just fifteen, using her\ncunning and fearlessness, she makes it out of Soweto with millions of\nsmuggled diamonds in her possession. Then things take a turn for the\nworse.... Nombeko ends up the prisoner of an incompetent engineer in a\nresearch facility working on South Africa's secret nuclear arsenal. Yet the\nunstoppable Nombeko pulls off a daring escape to Sweden, where she meets\ntwins named Holger One and Holger Two, who are carrying out a mission to\nbring down the Swedish monarchy...by any means necessary. Nombeko's life\nends up hopelessly intertwined with the lives of the twins, and when the\ntwins arrange to kidnap the Swedish king and prime minister, it is up to\nour unlikely heroine to save the day—and possibly the world. In this wild\nromp, Jonasson tackles issues ranging from the pervasiveness of racism to\nthe dangers of absolute power while telling a charming and hilarious story\nalong the way. In the satirical voice that has earned him legions of fans\nthe world over, Jonasson gives us another rollicking tale of how even the\nsmallest of decisions can have sweeping—even global—consequences.\"\r\n3457,3588,3686,Ann Patchett,Truth & Beauty: A Friendship,https://images.gr-assets.com/books/1410140355l/3686.jpg,3.94,26344,\"nonfiction, memoir\",Truth & Beauty: A FriendshipAnn Patchett\r\n3458,3589,13369678,Abbi Glines,The Vincent Brothers,https://images.gr-assets.com/books/1330071594l/13369678.jpg,4.13,40788,\"romance, contemporary\",The Vincent BrothersAbbi Glines\r\n3459,3590,35743,Günter Grass,Die Blechtrommel,https://images.gr-assets.com/books/1327945103l/35743.jpg,3.96,25332,\"fiction, classics\",Die BlechtrommelGünter Grass\r\n3460,3592,7544603,Kerstin Gier,Smaragdgrün,https://images.gr-assets.com/books/1345808677l/7544603.jpg,4.2,22620,\"fantasy, romance\",\"Was tut man, wenn einem das Herz gebrochen wurde? Richtig, man telefoniert\nmit der besten Freundin, isst Schokolade und suhlt sich wochenlang im\nUnglück. Dumm nur, dass Gwendolyn, Zeitreisende wider Willen, ihre Energie\nfür ganz andere Dinge braucht: zum Überleben zum Beispiel. Denn die Fäden,\ndie der zwielichtige Graf von Saint Germain in der Vergangenheit gesponnen\nhat, ziehen sich nun auch in der Gegenwart zu einem gefährlichen Netz\nzusammen ... (Quelle: Buchumschlag).\"\r\n3461,3593,248484,\"Shannon Hale, James Noel Smith\",Book of a Thousand Days,https://images.gr-assets.com/books/1362875998l/248484.jpg,3.95,40060,\"fantasy, romance\",\"Book of a Thousand DaysShannon Hale, James Noel Smith\"\r\n3462,3594,194366,Arthur Conan Doyle,The Return of Sherlock Holmes,https://images.gr-assets.com/books/1374680848l/194366.jpg,4.3,31572,\"fiction, crime\",\"'\"\"Holmes!\"\" I cried. \"\"Is it really you? Can it indeed be that you are alive?\nIs it possible that you succeeded in climbing out of that awful abyss?'.\nThe one and only Sherlock Holmes is sensationally back from the dead, and\ndevoting his life once more to examining the criminal complexities of the\ncapital. Cases of mysterious codes, persecuted millionaires, stalkers,\nabductions and a meeting with 'the worst man in London' are all attacked\nwith renewed vigour. But Holmes' old enemies are watching his every move.\nWatching, waiting, plotting...\"\r\n3463,3595,23522,\"Edith Hamilton, Steele Savage\",Mythology,https://images.gr-assets.com/books/1305000423l/23522.jpg,3.98,30804,\"fiction, history\",\"MythologyEdith Hamilton, Steele Savage\"\r\n3464,3596,401679,Anna Dewdney,\"Llama, Llama Red Pajama\",https://images.gr-assets.com/books/1309211387l/401679.jpg,4.27,31129,\"fiction, poetry\",\"Llama Llama's tale of nighttime drama has charmed readers as a classic\nhardcover for a full decade. For the first time, Anna Dewdney's infectious\nrhyming text and expressive artwork are available for the youngest of\nreaders in this board book edition.\"\r\n3465,3597,23577,Al Franken,Lies and the Lying Liars Who Tell Them: A Fair and Balanced Look at the Right,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438778188l/23577.jpg,3.81,24071,\"nonfiction, history\",\"Offers a whimsical critique of the Right, exposing their deceptive\npractices, challenging conceptions about the media's liberal bias, and\nidentifying inconsistencies in the Bush administration.\"\r\n3466,3598,597,Chuck Klosterman,Killing Yourself to Live: 85% of a True Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523544180l/597._SY475_.jpg,3.85,23015,\"music, nonfiction\",\"The author recounts his more than 6,500-mile journey across America, during\nwhich he visited the sites of famous rock star deaths and experienced\nphilosophical changes of perspective.\"\r\n3467,3599,26827675,\"Leah Remini, Rebecca Paley\",Troublemaker: Surviving Hollywood and Scientology,https://images.gr-assets.com/books/1491248986l/26827675.jpg,3.98,25172,\"memoir, nonfiction\",\"Troublemaker: Surviving Hollywood and ScientologyLeah Remini, Rebecca Paley\"\r\n3468,3600,9589,Kurt Vonnegut Jr.,Hocus Pocus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391684344l/9589.jpg,3.81,23046,\"fiction, classics\",\"Tarkington College, a small, exclusive college in upstate New York, is\nturned upside down when ten thousand prisoners from the maximum security\nprison across Lake Mahiga break out and head for the college\"\r\n3469,3601,55398,Steven Erikson,House of Chains,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1548490548l/55398._SY475_.jpg,4.32,25023,\"fantasy, fiction\",\"Years after a tribal attack on the southern flatlands, Tavore, an Adjunct\nto the Empress, struggles to train a band of some twelve thousand\ninexperienced recruits to meet an attack by the forces of her sister,\nSha'ik. By the author of Memories of Ice. 50,000 first printing.\"\r\n3470,3602,6662883,\"Eric Shanower, Skottie Young, L. Frank Baum\",Oz: The Wonderful Wizard of Oz,https://images.gr-assets.com/books/1336571208l/6662883.jpg,4.08,24529,\"comics, fantasy\",\"An eight-volume, graphic novel adaptation of L. Frank Baum's tales of\nDorothy, a little girl from Kansas who is blown by a storm to the magical\nland of Oz, where she has amazing adventures while trying to get home.\"\r\n3471,3603,6667514,Atul Gawande,The Checklist Manifesto: How to Get Things Right,https://images.gr-assets.com/books/1312061594l/6667514.jpg,4.02,23778,\"business, nonfiction\",\"A New York Times Bestseller In latest bestseller, Atul Gawande shows what\nthe simple idea of the checklist reveals about the complexity of our lives\nand how we can deal with it. The modern world has given us stupendous know-\nhow. Yet avoidable failures continue to plague us in health care,\ngovernment, the law, the financial industry--in almost every realm of\norganized activity. And the reason is simple: the volume and complexity of\nknowledge today has exceeded our ability as individuals to properly deliver\nit to people--consistently, correctly, safely. We train longer, specialize\nmore, use ever-advancing technologies, and still we fail. Atul Gawande\nmakes a compelling argument that we can do better, using the simplest of\nmethods: the checklist. In riveting stories, he reveals what checklists can\ndo, what they can't, and how they could bring about striking improvements\nin a variety of fields, from medicine and disaster recovery to professions\nand businesses of all kinds. And the insights are making a difference.\nAlready, a simple surgical checklist from the World Health Organization\ndesigned by following the ideas described here has been adopted in more\nthan twenty countries as a standard for care and has been heralded as \"\"the\nbiggest clinical invention in thirty years\"\" (The Independent).\"\r\n3472,3604,682761,\"Edith Hahn Beer, Susan Dworkin, Susan Sarandon, Julia Ormond, Rory Kennedy\",The Nazi Officer's Wife: How One Jewish Woman Survived The Holocaust,https://images.gr-assets.com/books/1177117840l/682761.jpg,4.14,22207,\"history, nonfiction\",\"The Nazi Officer's Wife: How One Jewish Woman Survived The HolocaustEdith Hahn Beer, Susan Dworkin, Susan Sarandon, Julia Ormond, Rory Kennedy\"\r\n3473,3606,6361871,Ree Drummond,The Pioneer Woman Cooks: Recipes from an Accidental Ranch Wife,https://images.gr-assets.com/books/1366775743l/6361871.jpg,4.18,28720,\"cookbooks, nonfiction\",\"My name is Ree. Some folks know me as The Pioneer Woman. After years of\nliving in Los Angeles, I made a pit stop in my hometown in Oklahoma on the\nway to a new, exciting life in Chicago. It was during my stay at home that\nI met Marlboro Man, a mysterious cowboy with steely blue eyes and a\nmuscular, work-honed body. A strict vegetarian, I fell hard and fast, and\nbefore I knew it we were married and living on his ranch in the middle of\nnowhere, taking care of animals, and managing a brood of four young\nchildren. I had no idea how I'd wound up there, but I knew it was exactly\nwhere I belonged. The Pioneer Woman Cooks is a homespun collection of\nphotography, rural stories, and scrumptious recipes that have defined my\nexperience in the country. I share many of the delicious cowboy-tested\nrecipes I've learned to make during my years as an accidental ranch\nwife—including Rib-Eye Steak with Whiskey Cream Sauce, Lasagna, Fried\nChicken, Patsy's Blackberry Cobbler, and Cinnamon Rolls—not to mention\nseveral \"\"cowgirl-friendly\"\" dishes, such as Sherried Tomato Soup, Olive\nCheese Bread, and CrÈme BrÛlÉe. I show my recipes in full color, step-by-\nstep detail, so it's as easy as pie to follow along. You'll also find\ncolorful images of rural life: cows, horses, country kids, and plenty of\nchaps-wearing cowboys. I hope you get a kick out of this book of mine. I\nhope it makes you smile. I hope the recipes bring you recognition,\naccolades, and marriage proposals. And I hope it encourages even the most\nharried urban cook to slow down, relish the joys of family, nature, and\ngreat food, and enjoy life.\"\r\n3474,3607,13644055,Jennifer L. Armentrout,Opposition,https://images.gr-assets.com/books/1398694101l/13644055.jpg,4.43,40399,\"romance, paranormal\",\"Don't miss Opposition, the fifth and final book in Jennifer L. Armentrout's\nbestselling Lux series, now available as a standalone in print for the\nfirst time! \"\"An unmissable series!\"\" –Samantha Young, New York Times\nbestselling author of On Dublin Street “This is the stuff swoons are made\nof.” —Wendy Higgins, New York Times bestselling author of Sweet Evil Katy\nknows the world changed the night the Luxen came. She can't believe Daemon\nstood by as his kind threatened to obliterate every last human and hybrid\non Earth. But the lines between good and bad have blurred. Daemon will do\nanything to save those he loves, even if it means betrayal. But when it\nquickly becomes impossible to tell friend from foe, and the world is\ncrumbling around them, they may lose everything to ensure the survival of\ntheir friends...and mankind. Want to read the LUX series on your ereader?\nEach book is sold individually in e-format: #1: Obsidian #2: Onyx #3: Opal\n#4: Origin #5: Opposition Dawson’s story: Shadows\"\r\n3475,3608,30271,Laurell K. Hamilton,\"Incubus Dreams (Anita Blake, Vampire Hunter, #12)\",https://images.gr-assets.com/books/1362831466l/30271.jpg,3.78,39200,\"paranormal, fantasy\",\"Incubus Dreams (Anita Blake, Vampire Hunter, #12)Laurell K. Hamilton\"\r\n3476,3609,22435,Brian Greene,\"The Fabric of the Cosmos: Space, Time and the Texture of Reality\",https://images.gr-assets.com/books/1435242004l/22435.jpg,4.11,24060,\"science, nonfiction\",\"A foremost string theorist discusses such topics as Newton's perspectives\non space, Einstein's fusion of space and time, and recent breakthroughs on\nmultidimensional universe theory.\"\r\n3477,3610,31099,Jane Green,Babyville,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264317l/31099.jpg,3.61,27650,\"fiction, romance\",\"Three friends cope with the diverse challenges of maternity as Julia\nstruggles to conceive with her uninterested boyfriend, career woman Maeve\ndeals with unexpected pregnancy, and happily married Samantha finds marital\nstrife after a new baby.\"\r\n3478,3611,6202318,Charlaine Harris,A Touch of Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390540031l/6202318.jpg,3.82,36102,\"paranormal, fiction\",A Touch of DeadCharlaine Harris\r\n3479,3612,380975,Sue Grafton,K is for Killer,https://images.gr-assets.com/books/1315138307l/380975.jpg,3.98,30752,\"mystery, fiction\",K is for KillerSue Grafton\r\n3480,3613,11507,Chaim Potok,My Name Is Asher Lev,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385056726l/11507.jpg,4.19,29273,\"fiction, classics\",\"The novelist records the anguish and triumphs of a young painter as he\nemerges into the great world of art and rejects all else.\"\r\n3481,3614,27528,\"Tim LaHaye, Jerry B. Jenkins\",Nicolae: The Rise of Antichrist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433068715l/27528.jpg,3.95,27152,\"fiction, christian\",\"Nicolae: The Rise of AntichristTim LaHaye, Jerry B. Jenkins\"\r\n3482,3615,15793184,Julie Kibler,Calling Me Home,https://images.gr-assets.com/books/1359803797l/15793184.jpg,4.21,24070,\"fiction, romance\",Calling Me HomeJulie Kibler\r\n3483,3616,6289920,J.R. Ward,Covet,https://images.gr-assets.com/books/1373165689l/6289920.jpg,3.89,38911,\"paranormal, fantasy\",\"As part of his mission to save the souls of seven people, fallen angel Jim\nHeron changes businessman Vin diPietro's life forever by introducing him to\na woman who makes him question his destiny, his sanity, and his heart.\"\r\n3484,3617,6600137,Carrie Jones,Captivate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893132l/6600137._SY475_.jpg,3.94,36772,\"fantasy, paranormal\",\"High school junior Zara and her friends continue to try to contain the\npixies that threaten their small Maine town, but when a Valkyrie takes\nZara's boyfriend, Nick, to Valhalla, the only way to save him is to trust a\npixie king, Astley.\"\r\n3485,3618,4961048,Carrie Fisher,Wishful Drinking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347698159l/4961048.jpg,3.71,29934,\"memoir, biography\",\"A memoir based on the author's one-woman show describes growing up with\ncelebrity parents, her early success in \"\"Star Wars,\"\" battle with addiction\nand mental illness, turbulent romances, role as a single mother, and\nstruggle for recovery and healing.\"\r\n3486,3619,21717,Karin Slaughter,Triptych,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442531921l/21717._SY475_.jpg,4.14,29406,\"mystery, thriller\",\"Troubled by a rocky marriage and the recent loss of his partner, Atlanta\ndetective Michael Ormewood launches an investigation into the savage murder\nof a local woman, but for ex-con John Shelley, desperate to prove his\ninnocence, the nightmare has just begun. 125,000 first printing.\"\r\n3487,3620,300225,Sidney Sheldon,Bloodline,https://images.gr-assets.com/books/1298570618l/300225.jpg,3.79,23726,\"fiction, thriller\",\"Sheldon's sweeping saga of greed and betrayal, sabotage and danger, and the\nties that can kill... Roffe and Sons is a family firm, an international\nempire filled with desperate, cash-hungry family members. At its head was\none of the wealthiest men in the world, a man who has just died in a\nmysterious accident and left his only daughter, Elizabeth, in control of\nthe company. Now as this intelligent, tough, and beautiful young woman\ndares to save -- not sell -- Roffe and Sons, she will have to outwit those\nwho secretly want her power, and the unknown assassin who wants her life.\"\r\n3488,3621,352921,Louise Penny,A Fatal Grace,https://images.gr-assets.com/books/1327918653l/352921.jpg,4.11,27437,\"mystery, fiction\",\"CC de Poitiers managed to alienate everyone in the hamlet of Three Pines,\nright up to the moment she died. When Chief Inspector Armand Gamache begins\nhis investigation, it seems like an impossible murder: CC was electrocuted\non a frozen lake, in front of the entire town, during the annual curling\ntournament. With compassion and courage, Gamache digs beneath the idyllic\nsurface of village life to find long buried secrets, while his own enemies\nthreaten to bring something even more chilling than the bitter winter winds\nto Three Pines.\"\r\n3489,3622,7156505,\"James Patterson, Maxine Paetro\",The 9th Judgment,https://images.gr-assets.com/books/1336275493l/7156505.jpg,4.08,28593,\"mystery, fiction\",\"The 9th JudgmentJames Patterson, Maxine Paetro\"\r\n3490,3623,13353667,\"James Patterson, Michael Ledwidge\",Zoo,https://images.gr-assets.com/books/1355175463l/13353667.jpg,3.43,24768,\"fiction, thriller\",\"ZooJames Patterson, Michael Ledwidge\"\r\n3491,3624,9465845,\"Rick Riordan, Gordon Korman, Peter Lerangis, Jude Watson\",Vespers Rising,https://images.gr-assets.com/books/1357211079l/9465845.jpg,4.12,28203,\"mystery, fiction\",\"Amy Cahill and her younger brother Dan thought they could return to their\nregular lives, but the Vespers, powerful enemies, will stop at nothing to\nget the clues that safeguard their family's great power.\"\r\n3492,3625,29501,Sam Harris,\"The End of Faith: Religion, Terror, and the Future of Reason\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1408542906l/29501.jpg,3.93,24578,\"religion, philosophy\",\"An analysis of the disparity between faith and logic in today's world tours\nhumanity's willingness to challenge religious-based belief systems\nthroughout history, citing the biological origins of spirituality while\nwarning readers that tolerance for fundamentalism must occur with an\nawareness of the modern world's capacity for violence. Reprint. 50,000\nfirst printing.\"\r\n3493,3626,1902241,Mary E. Pearson,The Adoration of Jenna Fox,https://images.gr-assets.com/books/1388715600l/1902241.jpg,3.7,36754,\"fiction, fantasy\",The Adoration of Jenna FoxMary E. Pearson\r\n3494,3628,24812,Bill Watterson,The Complete Calvin and Hobbes,https://images.gr-assets.com/books/1473064526l/24812.jpg,4.82,28900,\"comics, fiction\",\"They’re back! This eagerly awaited four-volume slipcased paperback edition\nof the original groundbreaking collection features the adventures of Calvin\nand his pet tiger, Hobbes. New York Times best-seller! Watterson's\nimaginative approach to his material and his inventive graphics have made\nCalvin and Hobbes one of the few universally admired by other cartoonists.\"\"\n--Charles Solomon, Los Angeles Times Book Review Calvin and Hobbes is\nunquestionably one of the most popular comic strips of all time. The\nimaginative world of a boy and his real-only-to-him tiger was first\nsyndicated in 1985 and appeared in more than 2,400 newspapers when Bill\nWatterson retired on January 1, 1996. The entire body of Calvin and Hobbes\ncartoons published in a truly noteworthy tribute to this singular cartoon\nin The Complete Calvin and Hobbes. Composed of three hardcover, four-color\nvolumes in a sturdy slipcase, this edition includes all Calvin and Hobbes\ncartoons that ever appeared in syndication. This is the treasure that all\nCalvin and Hobbes fans seek.\"\r\n3495,3629,23686,Rumiko Takahashi,\"Ranma ½, Volume 1\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349047176l/23686.jpg,4.15,26303,\"manga, fantasy\",\"A remastered 2-in-1 edition of the all-time classic hit from one of Japan’s\nmost beloved creators, available for the first time in a format faithful to\nthe original work. One day, teenaged martial artist Ranma Saotome went on a\ntraining mission with his father and ended up taking a dive into some\ncursed springs at a legendary training ground in China. Now, every time\nhe’s splashed with cold water, he changes into a girl. His father, Genma,\nchanges into a panda! What’s a half-guy, half-girl to do? Contains volumes\n1 and 2! Years ago, Genma promised his old friend Soun Tendo that Ranma\nwould marry one of Soun’s three daughters and carry on the family’s martial\narts school. Except that the girl picked to be Ranma’s bride doesn’t seem\nto like him, Ranma keeps getting into fights…and did we mention that whole\nchanging into a girl thing? Reads R to L (Japanese Style) for teen plus\naudiences.\"\r\n3496,3630,2815590,Ron Rash,Serena,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347430224l/2815590.jpg,3.52,25082,\"fiction, history\",\"Traveling to the mountains of 1929 North Carolina to forge a timber\nbusiness with her new husband, Serena Pemberton champions her mastery of\nharsh natural and working conditions but turns murderous when she learns\nshe cannot bear children. 25,000 first printing.\"\r\n3497,3631,94799,Hampton Sides,Ghost Soldiers: The Epic Account of World War II's Greatest Rescue Mission,https://images.gr-assets.com/books/1320454587l/94799.jpg,4.17,23873,\"history, nonfiction\",\"Chronicles the daring mission of the elite U.S. Army Sixth Ranger Battalion\nto slip behind enemy lines in the Phillipines and rescue the 513 American\nand British POWs who had spent over three years in a hellish, Japanese-run\ncamp near Cabanatuan. Reprint. 300,000 first printing.\"\r\n3498,3632,12007,Iain M. Banks,Use of Weapons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587400756l/12007.jpg,4.18,26350,\"fiction, science\",Use of WeaponsIain M. Banks\r\n3499,3633,17267122,Gail McHugh,Pulse,https://images.gr-assets.com/books/1369753154l/17267122.jpg,4.29,32128,\"romance, contemporary\",\"\"\"A sexy contemporary romance novel set in New York City about a love\ntriangle\"\"--\"\r\n3500,3634,115076,Marisa de los Santos,Love Walked In,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893276l/115076._SY475_.jpg,3.69,28712,\"fiction, romance\",\"Thirty-one-year-old Philadelphia cafâe manager Cornelia Brown, who harbors\nromantic notions about golden-age Hollywood film stars, embarks on a too-\ngood-to-be-true relationship with the debonair Martin Grace.\"\r\n3501,3635,92143,Jeff Smith,Bone: The Complete Cartoon Epic in One Volume,https://images.gr-assets.com/books/1483068004l/92143.jpg,4.42,27721,\"fantasy, fiction\",\"Three modern cartoon cousins get lost in a pre-technological valley,\nspending a year there making new friends and out-running dangerous enemies,\nin a compilation of the creator's Bone series all in one binding. Original.\"\r\n3502,3636,2479827,Christopher Paolini,\"Eragon, Eldest & Brisingr (Inheritance, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348466270l/2479827.jpg,4.2,25623,\"fantasy, fiction\",\"Eragon, Eldest & Brisingr (Inheritance, #1-3)Christopher Paolini\"\r\n3503,3637,5941233,Christopher Pike,Thirst No. 1,https://images.gr-assets.com/books/1327887604l/5941233.jpg,3.82,30154,\"fantasy, paranormal\",\"At five thousand years old, the vampire Alisa thought she was smart enough\nto stay out of trouble. But when her creator returns to hunt her, she must\nprotect herself by befriending Ray, the boy who may be her only chance at\nfinding her maker. When she begins to fall in love with Ray, all of a\nsudden there is more at stake than her own life. Originally published in\n1994, this series netted more than 500,000 copies as individual titles and\nlater as bind-ups. This hot new repackage will revive the series for\ntoday’s teen.\"\r\n3504,3638,11741,Marilynne Robinson,Housekeeping,https://images.gr-assets.com/books/1327882949l/11741.jpg,3.82,28416,\"fiction, classics\",\"A modern classic, Housekeeping is the story of Ruth and her younger sister,\nLucille, who grow up haphazardly, first under the care of their competent\ngrandmother, then of two comically bumbling great-aunts, and finally of\nSylvie, their eccentric and remote aunt. The family house is in the small\nFar West town of Fingerbone set on a glacial lake, the same lake where\ntheir grandfather died in a spectacular train wreck, and their mother drove\noff a cliff to her death. It is a town \"\"chastened by an outsized landscape\nand extravagant weather, and chastened again by an awareness that the whole\nof human history had occurred elsewhere.\"\" Ruth and Lucille's struggle\ntoward adulthood beautifully illuminates the price of loss and survival,\nand the dangerous and deep undertow of transience.\"\r\n3505,3639,511614,\"Dodie Smith, Michael Dooling\",The Hundred and One Dalmatians,https://images.gr-assets.com/books/1387310637l/511614.jpg,4.11,27717,\"classics, fiction\",The novel on which the Disney film was based.\r\n3506,3640,119389,Sidney Sheldon,Windmills of the Gods,https://images.gr-assets.com/books/1405239745l/119389.jpg,3.82,23333,\"fiction, thriller\",\"She's on the glinting edge of East-West confrontation, a beautiful and\naccomplished scholar who has suddenly become our newest ambassador to an\nIron Curtain country, a woman who is about to dramatically change the\ncourse of world events -- if she lives. For Mary Ashley has been marked for\ndeath by the world's most proficient and mysterious assassin, and plunged\ninto a nightmare of espionage, kidnapping, and terror. Here, only two\npeople -- both powerfully attractive and ultimately enigmatic men -- can\noffer her help. And one of them wants to kill her.\"\r\n3507,3641,747746,F. Scott Fitzgerald,The Curious Case of Benjamin Button,https://images.gr-assets.com/books/1331235364l/747746.jpg,3.53,30313,\"fiction, fantasy\",\"Today, F. Scott Fitzgerald is known for his novels, but in his lifetime,\nhis fame stemmed from his prolific achievement as one of America's most\ngifted story writers. \"\"The Curious Case of Benjamin Button,\"\" a witty and\nfantastical satire about aging, is one of his most memorable stories. In\n1860 Benjamin Button is born an old man and mysteriously begins aging\nbackward. At the beginning of his life he is withered and worn, but as he\ncontinues to grow younger he embraces life -- he goes to war, runs a\nbusiness, falls in love, has children, goes to college and prep school,\nand, as his mind begins to devolve, he attends kindergarten and eventually\nreturns to the care of his nurse. This strange and haunting story embodies\nthe sharp social insight that has made Fitzgerald one of the great voices\nin the history of American literature.\"\r\n3508,3642,38262,Daniel Defoe,The Fortunes and Misfortunes of the Famous Moll Flanders,https://images.gr-assets.com/books/1338130955l/38262.jpg,3.5,30379,\"classics, fiction\",The Fortunes and Misfortunes of the Famous Moll FlandersDaniel Defoe\r\n3509,3643,175675,E.L. Doctorow,Ragtime,https://images.gr-assets.com/books/1320531790l/175675.jpg,3.88,26815,\"fiction, classics\",\"Recounts the interrelated early twentieth-century lives of the families of\na New Rochelle manufacturer, an immigrant socialist, and a Harlem musician\nand their involvement with Evelyn Nesbit, Henry Ford, Houdini, Morgan,\nFreud, Zapata, and other period notables. Reader's Guide included. Reprint.\"\r\n3510,3644,35921,David Weber,On Basilisk Station ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390456253l/35921.jpg,4.11,28970,\"fiction, ebooks\",Comprehensive Teacher's Guide available.\r\n3511,3645,3272165,Ben Goldacre,\"Bad Science: Quacks, Hacks, and Big Pharma Flacks\",https://images.gr-assets.com/books/1327251503l/3272165.jpg,4.07,22692,\"science, nonfiction\",\"Bad Science: Quacks, Hacks, and Big Pharma FlacksBen Goldacre\"\r\n3512,3646,80642,Ruth Reichl,Garlic and Sapphires: The Secret Life of a Critic in Disguise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436980266l/80642._SY475_.jpg,3.92,26542,\"memoir, nonfiction\",\"The editor-in-chief of \"\"Gourmet\"\" recounts her visits to some of the world's\nmost acclaimed restaurants, both as herself and as an anonymous diner in\ndisguise, to offer insight into the differences in her dining experiences.\"\r\n3513,3647,6891433,Jo Nesbø,\"Panserhjerte (Harry Hole, #8)\",https://images.gr-assets.com/books/1408635770l/6891433.jpg,4.08,10991,\"crime, mystery\",\"Panserhjerte (Harry Hole, #8)Jo Nesbø\"\r\n3514,3648,24094,Tamora Pierce,\"Wolf-Speaker (Immortals, #2)\",https://images.gr-assets.com/books/1495451734l/24094.jpg,4.21,37448,\"fantasy, fiction\",\"Wolf-Speaker (Immortals, #2)Tamora Pierce\"\r\n3515,3650,6748,David Foster Wallace,A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438206388l/6748._SY475_.jpg,4.28,23272,\"nonfiction, memoir\",A Supposedly Fun Thing I'll Never Do Again: Essays and ArgumentsDavid Foster Wallace\r\n3516,3651,98413,Ai Yazawa,NANA―ナナ― 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388701565l/98413.jpg,4.21,28627,\"manga, romance\",\"A shoujo manga about two women named Nana. Although both Nanas come from\ndifferent backgrounds and have nearly opposite personalities, they end up\nliving together as roommates.vol. 1 In Japanese. Annotation copyright Tsai\nFong Books, Inc. Distributed by Tsai Fong Books, Inc.\"\r\n3517,3652,298567,\"Joseph Delaney, Patrick  Arrasmith\",\"The Spook's Apprentice (The Last Apprentice / Wardstone Chronicles, #1)\",https://images.gr-assets.com/books/1381497933l/298567.jpg,3.97,27305,\"fantasy, horror\",\"Capturing witches Binding boggarts Driving away ghosts For years, Old\nGregory has been the Spook for the county, ridding the local villages of\nevil. Now his time is coming to an end. But who will take over for him?\nTwenty-nine apprentices have tried–some floundered, some fled, some failed\nto stay alive. Only Thomas Ward is left. He's the last hope; the last\napprentice. Can Thomas succeed? Will he learn the difference between a\nbenign witch and a malevolent one? Does the Spook's warning against girls\nwith pointy shoes include Alice? And what will happen if Thomas\naccidentally frees Mother Malkin, the most evil witch in the county ... ?\"\r\n3518,3653,32257,Tess Gerritsen,The Sinner,https://images.gr-assets.com/books/1277923817l/32257.jpg,4.12,28283,\"mystery, crime\",\"Investigating the brutal murder of one nun and the critical injury of\nanother within a cloistered convent, medical examiner Maura Isles and\nhomicide detective Jane Rizzoli stumble upon long-buried secrets that link\nthese horrific crimes.\"\r\n3519,3654,6250169,Terry Pratchett,Unseen Academicals,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388348045l/6250169.jpg,3.97,30330,\"fantasy, fiction\",Unseen AcademicalsTerry Pratchett\r\n3520,3655,11071466,Morgan Matson,Second Chance Summer,https://images.gr-assets.com/books/1337189920l/11071466.jpg,4.16,31983,\"contemporary, romance\",Second Chance SummerMorgan Matson\r\n3521,3656,381704,Plum Sykes,Bergdorf Blondes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441219737l/381704.jpg,3.26,23795,\"fiction, contemporary\",Bergdorf BlondesPlum Sykes\r\n3522,3657,17162,Robert Cormier,The Chocolate War,https://images.gr-assets.com/books/1333120554l/17162.jpg,3.48,31633,\"fiction, classics\",\"A high-school freshman who refuses to participate in the annual fund-\nraising chocolate sale is forced to defend his convictions.\"\r\n3523,3658,14118,\"Teddy Slater, Ron Dias, Ric González\",Beauty and the Beast (Little Golden Book),https://images.gr-assets.com/books/1395619448l/14118.jpg,4.4,26454,\"fantasy, fiction\",\"Through her great capacity to love, a kind and beautiful maid releases a\nhandsome prince from the spell which has made him an ugly beast.\"\r\n3524,3659,22836957,Michael Punke,The Revenant,https://images.gr-assets.com/books/1409498796l/22836957.jpg,3.92,19289,\"fiction, history\",The RevenantMichael Punke\r\n3525,3660,25104,\"Neil Gaiman, Michael Zulli, Jon J. Muth, Charles Vess, Mikal Gilmore\",The Sandman: The Wake,https://images.gr-assets.com/books/1339922545l/25104.jpg,4.53,32360,\"comics, fantasy\",\"The Sandman: The WakeNeil Gaiman, Michael Zulli, Jon J. Muth, Charles Vess, Mikal Gilmore\"\r\n3526,3661,2615,Clayton M. Christensen,The Innovator's Dilemma: The Revolutionary Book that Will Change the Way You Do Business (Collins Business Essentials),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347654027l/2615.jpg,4,21997,\"business, nonfiction\",\"In this revolutionary bestseller, Harvard professor Clayton M. Christensen\nsays outstanding companies can do everything right and still lose their\nmarket leadership -- or worse, disappear completely. And he not only proves\nwhat he says, he tells others how to avoid a similar fate. Focusing on\n\"\"disruptive technology\"\" -- the Honda Super Cub, Intel's 8088 processor, or\nthe hydraulic excavator, for example -- Christensen shows why most\ncompanies miss \"\"the next great wave.\"\" Whether in electronics or retailing,\na successful company with established products will get pushed aside unless\nmanagers know when to abandon traditional business practices. Using the\nlessons of successes and failures from leading companies, The Innovator's\nDilemma presents a set of rules for capitalizing on the phenomenon of\ndisruptive innovation. Find out: When it is right not to listen to\ncustomers. When to invest in developing lower-performance products that\npromise lower margins. When to pursue small markets at the expense of\nseemingly larger and more lucrative ones. Sharp, cogent, and provocative,\nThe Innovator's Dilemma is one of the most talked-about books of our time\n-- and one no savvy manager or entrepreneur should be without.\"\r\n3527,3662,765281,\"Teddy Slater, Bill Langley, Ron Dias, Walt Disney Company\",Lady and the Tramp (Little Golden Book),https://images.gr-assets.com/books/1420795364l/765281.jpg,4.36,28011,\"classics, fiction\",\"When mean Aunt Sarah takes over a cocker spaniel's once-happy home, the dog\nflees and experiences some dangerous moments before her hero, Tramp,\narrives on the scene.\"\r\n3528,3663,153795,Tamora Pierce,Squire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215394320l/153795.jpg,4.27,37110,\"fantasy, fiction\",\"After becoming a squire to Lord Raoul, commander of the King's Own, Kel of\nMindelan, must face a terrifying test in the Chamber of the Ordeal before\nshe can be a knight.\"\r\n3529,3664,1821571,Anthony Horowitz,Snakehead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349007138l/1821571.jpg,4.15,32743,\"fiction, mystery\",SnakeheadAnthony Horowitz\r\n3530,3665,10560331,Ally Carter,\"Out of Sight, Out of Time\",https://images.gr-assets.com/books/1314135923l/10560331.jpg,4.35,39918,\"mystery, romance\",\"When seventeen-year-old Cammie wakes up in a convent high in the Alps, she\nslowly comes to realize that she's been tortured, the last four months have\nbeen erased from her mind, and an ancient terrorist organization is hunting\nfor her.\"\r\n3531,3666,15778138,Abbi Glines,Just for Now,https://images.gr-assets.com/books/1348461168l/15778138.jpg,4.25,39625,\"romance, contemporary\",Just for NowAbbi Glines\r\n3532,3667,17286958,\"Bill O'Reilly, Martin Dugard\",Killing Jesus: A History ,https://images.gr-assets.com/books/1361640009l/17286958.jpg,3.89,18107,\"history, nonfiction\",\"Killing Jesus: A History Bill O'Reilly, Martin Dugard\"\r\n3533,3668,183822,James Rollins,Sandstorm,https://images.gr-assets.com/books/1305960920l/183822.jpg,3.94,29665,\"thriller, fiction\",SandstormJames Rollins\r\n3534,3669,173673,Foundation for Inner Peace,A Course in Miracles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172417770l/173673.jpg,4.17,17015,\"spirituality, religion\",\"\"\"The only edition that contains in one place all of the writings that Dr.\nHelen Schucman, its Scribe, authorized to be printed\"\"--P. [4] of cover.\"\r\n3535,3670,18656030,James S.A. Corey,Cibola Burn,https://images.gr-assets.com/books/1405023040l/18656030.jpg,4.12,21551,\"fiction, ebooks\",\"The fourth book in the NYT bestselling Expanse series, Cibola Burn sees the\ncrew of the Rocinante on a new frontier, as the rush to colonize the new\nplanets threatens to outrun law and order and give way to war and chaos.\nNow a Prime Original series. Enter a new frontier. \"\"An empty apartment, a\nmissing family, that's creepy. But this is like finding a military base\nwith no one on it. Fighters and tanks idling on the runway with no drivers.\nThis is bad juju. Something wrong happened here. What you should do is tell\neveryone to leave.\"\" The gates have opened the way to a thousand new worlds\nand the rush to colonize has begun. Settlers looking for a new life stream\nout from humanity's home planets. Ilus, the first human colony on this vast\nnew frontier, is being born in blood and fire. Independent settlers stand\nagainst the overwhelming power of a corporate colony ship with only their\ndetermination, courage, and the skills learned in the long wars of home.\nInnocent scientists are slaughtered as they try to survey a new and alien\nworld. The struggle on Ilus threatens to spread all the way back to Earth.\nJames Holden and the crew of his one small ship are sent to make peace in\nthe midst of war and sense in the midst of chaos. But the more he looks at\nit, the more Holden thinks the mission was meant to fail. And the whispers\nof a dead man remind him that the great galactic civilization that once\nstood on this land is gone. And that something killed it. The\nExpanseLeviathan WakesCaliban's WarAbaddon's GateCibola BurnNemesis\nGamesBabylon's AshesPersepolis RisingTiamat's Wrath The Expanse Short\nFiction The Butcher of Anderson StationGods of RiskThe ChurnThe Vital\nAbyssStrange Dogs\"\r\n3536,3671,353814,Nelson DeMille,The Charm School,https://images.gr-assets.com/books/1337601423l/353814.jpg,4.26,25706,\"fiction, thriller\",\"#1 New York Times bestselling author, Nelson DeMille, delivers an explosive\nthriller of international intrigue and high-voltage political tension set\nin contemporary Russia.On a dark road deep inside Russia, a young American\ntourist picks up a most unusual passenger a U.S. POW on the run with an\nincredible secret to reveal to an unsuspecting world. The secret concerns\n\"\"The Charm School,\"\" a vast and astounding KGB conspiracy that stands poised\nagainst the very heartland of America. Arrayed against this renegade power\nof the Soviet state are three Americans: an Air Force officer, who will fly\none last covert mission into the center of a mad experiment; an embassy\nliaison, who will have her hopes for a saner superpower balance brutally\ntested; and the chief of the CIA's Moscow station, who will find his\nintricate dance of destiny and death reaching its devastating conclusion.\"\r\n3537,3672,332631,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",Y: The Last Man Vol. 2: Cycles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189635l/332631.jpg,4.23,30504,\"fiction, fantasy\",\"Y: The Last Man Vol. 2: CyclesBrian K. Vaughan, Pia Guerra, José Marzán Jr.\"\r\n3538,3673,3475268,Kim Harrison,\"White Witch, Black Curse\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442365029l/3475268._SY475_.jpg,4.35,38315,\"fantasy, paranormal\",\"White Witch, Black CurseKim Harrison\"\r\n3539,3674,19793,Wayne W. Dyer,‎The Power of Intention‎,https://images.gr-assets.com/books/1347598399l/19793.jpg,4.18,22361,\"spirituality, nonfiction\",‎The Power of Intention‎Wayne W. Dyer\r\n3540,3675,93426,Jack Weatherford,Genghis Khan and the Making of the Modern World,https://images.gr-assets.com/books/1320531289l/93426.jpg,4.01,25452,\"history, biography\",\"A re-evaluation of Genghis Khan's rise to power examines the reforms the\nconqueror instituted throughout his empire and his uniting of East and\nWest, which set the foundation for the nation-states and economic systems\nof the modern era.\"\r\n3541,3676,126609,Theodore Dreiser,Sister Carrie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387666415l/126609.jpg,3.72,27401,\"classics, fiction\",\"Young Caroline Meeber leaves home for the first time and experiences work,\nlove, and the pleasures and responsibilities of independence in late-\nnineteenth-century Chicago and New York.\"\r\n3542,3677,9409469,Cinda Williams Chima,The Gray Wolf Throne,https://images.gr-assets.com/books/1312142235l/9409469.jpg,4.39,31763,\"fantasy, romance\",The Gray Wolf ThroneCinda Williams Chima\r\n3543,3678,1362193,Andrea Hirata,Laskar Pelangi,https://images.gr-assets.com/books/1489732961l/1362193.jpg,4.15,18311,\"fiction, biography\",Laskar PelangiAndrea Hirata\r\n3544,3679,7904429,Bryan Lee O'Malley,\"Scott Pilgrim, Volume 6: Scott Pilgrim's Finest Hour\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348186871l/7904429.jpg,4.41,29308,\"comics, fiction\",Some collected adventures of modern teen Scott Pilgrim.\r\n3545,3680,31623,Patricia Cornwell,Blow Fly,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389270705l/31623.jpg,3.74,29283,\"mystery, fiction\",\"Leaving Virginia in the hope of finding some peace and quiet, Dr. Kay\nScarpetta journeys to Florida, where a series of baffling murders quickly\nentangles her in an international conspiracy that confronts her with the\nmost unexpected circumstance of her life. 1,500,000 first printing.\"\r\n3546,3681,33443,Joanne Fluke,Chocolate Chip Cookie Murder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389411047l/33443.jpg,3.72,31242,\"mystery, fiction\",Chocolate Chip Cookie MurderJoanne Fluke\r\n3547,3682,9729504,Mitchell Zuckoff,Lost in Shangri-la,https://images.gr-assets.com/books/1299264036l/9729504.jpg,3.82,27776,\"history, nonfiction\",Lost in Shangri-laMitchell Zuckoff\r\n3548,3683,7247854,Sam Kean,\"The Disappearing Spoon: And Other True Tales of Madness, Love, and the History of the World from the Periodic Table of the Elements\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438018063l/7247854._SY475_.jpg,3.9,26820,\"science, nonfiction\",\"The Disappearing Spoon: And Other True Tales of Madness, Love, and the History of the World from the Periodic Table of the ElementsSam Kean\"\r\n3549,3684,52635,Clive Barker,The Hellbound Heart,https://images.gr-assets.com/books/1327312426l/52635.jpg,4.02,25074,\"horror, fiction\",The Hellbound HeartClive Barker\r\n3550,3685,17704903,\"Bill Dedman, Paul Clark Newell Jr.\",Empty Mansions: The Mysterious Life of Huguette Clark and the Spending of a Great American Fortune,https://images.gr-assets.com/books/1367929741l/17704903.jpg,3.76,22819,\"biography, history\",\"A cousin of Huguette Clark and a Pulitzer Prize-winning journalist trace\nthe life of the reclusive American heiress against a backdrop of the now-\ninfamous W. A. Clark family and include coverage of the internet sensation\nand elder-abuse investigation that occurred at the end of her life.\"\r\n3551,3686,6457081,Tracy Chevalier,Remarkable Creatures,https://images.gr-assets.com/books/1327161912l/6457081.jpg,3.81,29667,\"fiction, science\",Remarkable CreaturesTracy Chevalier\r\n3552,3687,3558003,Rachel Caine,Lord of Misrule,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214471l/3558003.jpg,4.18,38874,\"paranormal, fantasy\",Lord of MisruleRachel Caine\r\n3553,3688,39031,\"Douglas Preston, Lincoln Child\",The Cabinet of Curiosities,https://images.gr-assets.com/books/1169235779l/39031.jpg,4.26,29003,\"thriller, fiction\",\"In an ancient tunnel underneath New York City a charnel house is\ndiscovered. Inside are thirty-six bodies--all murdered and mutilated more\nthan a century ago. While FBI agent Pendergast investigates the old crimes,\nidentical killings start to terrorize the city. The nightmare has begun.\nAgain.\"\r\n3554,3689,498641,Brother Lawrence,The Practice of the Presence of God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347467147l/498641.jpg,4.32,23889,\"christian, spirituality\",The Practice of the Presence of GodBrother Lawrence\r\n3555,3690,12191246,Lee Child,Second Son,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1311907335l/12191246.jpg,3.95,24230,\"fiction, thriller\",\"A Jack Reacher short story published as an individual ebook, now also\navailable in the new complete Jack Reacher short story collection, No\nMiddle Name. Ever wondered what early experiences shaped Reacher's\nexplosive career as butt-kicker supreme, the one-man guided-missile battler\nfor justice? Lee Child looks back on an incident in his hero Jack Reacher's\nteenage years as the younger son of a tough career US Marine, on a faraway\nmilitary base in the Pacific. 'The coolest continuing series character now\non offer' Stephen King\"\r\n3556,3692,9820,Wallace Stegner,Crossing to Safety,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436043179l/9820._SY475_.jpg,4.16,25578,\"fiction, classics\",\"Two American couples, one from the East and one from the West, form a fast\nand lifelong friendship during the mid-thirties of the Depression.\"\r\n3557,3693,9440448,John Sandford,Buried Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439147974l/9440448._SY475_.jpg,4.23,24695,\"mystery, fiction\",\"Investigating the discovery of two bodies in a house demolition, Lucas\nDavenport identifies the victims as two girls who disappeared in 1985, a\ncold case that overshadowed the early years of his career. By the best-\nselling author of Storm Prey. Reprint.\"\r\n3558,3694,13497505,Bob Goff,Discover an Incredible Life in an Ordinary World,https://images.gr-assets.com/books/1335237698l/13497505.jpg,4.25,25791,\"christian, nonfiction\",\"Recounts lessons the author learned through taking on challenging and\nunique opportunities, offering commentary on the inherent compatibility of\nadventure and the Christian life as well as love's ability to encourage and\ninspire action.\"\r\n3559,3695,106835,\"Benjamin Graham, Jason Zweig, Warren Buffett\",The Intelligent Investor,https://images.gr-assets.com/books/1409602421l/106835.jpg,4.27,29825,\"business, nonfiction\",\"The Intelligent InvestorBenjamin Graham, Jason Zweig, Warren Buffett\"\r\n3560,3696,2095,Stephen Hawking,The Universe in a Nutshell,https://images.gr-assets.com/books/1159814395l/2095.jpg,4.13,23596,\"science, nonfiction\",\"The author explores recent scientific breakthroughs in the fields of\nsupergravity, supersymmetry, quantum theory, superstring theory, and\np-branes as he searches for the Theory of Everything that lies at the heart\nof the cosmos.\"\r\n3561,3697,9300768,Joe Abercrombie,The Heroes,https://images.gr-assets.com/books/1375671200l/9300768.jpg,4.26,24964,\"fantasy, fiction\",The HeroesJoe Abercrombie\r\n3562,3698,1001896,Blanche Fisher Wright,The Real Mother Goose,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439507704l/1001896._SX318_.jpg,4.33,31643,\"fiction, classics\",\"Fifteen of the best-loved verses and pictures from the original Mother\nGoose.\"\r\n3563,3699,5296,Oscar Wilde,An Ideal Husband,https://images.gr-assets.com/books/1417045098l/5296.jpg,4.03,29952,\"classics, fiction\",\"Although Oscar Wilde (1854–1900) created a wide range of poetry, essays,\nand fairy tales (and one novel) in his brief, tragic life, he is perhaps\nbest known as a dramatist. His witty, clever drama, populated by brilliant\ntalkers skilled in the art of riposte and paradox, are still staples of the\ntheatrical repertoire. An Ideal Husband revolves around a blackmail scheme\nthat forces a married couple to reexamine their moral standards —\nproviding, along the way, a wry commentary on the rarity of politicians who\ncan claim to be ethically pure. A supporting cast of young lovers, society\nmatrons, an overbearing father, and a formidable femme fatale continually\nexchange sparkling repartee, keeping the play moving at a lively pace. ike\nmost of Wilde's plays, this scintillating drawing-room comedy is wise,\nwell-constructed, and deeply satisfying. An instant success at its 1895\ndebut, the play continues to delight audiences over one hundred years\nlater. An Ideal Husband is a must-read for Wilde fans, students of English\nliterature, and anyone delighted by wit, urbanity, and timeless\nsophistication.\"\r\n3564,3700,42058,\"William Shakespeare, John Jowett\",The Tragedy of King Richard the Third,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328043960l/42058.jpg,3.92,29182,\"classics, fiction\",\"\"\"Documentation of the extensive textual variants is organized for maximum\nclarity: the readings of the Folio and the Quarto are presented in separate\nbanks, and more specialist information is given at the back of the book.\nAppendices also include selected passages from the main source and a\nspecial index of actors and other theatrical personnel.\"\"--BOOK JACKET.\"\r\n3565,3701,22557520,Anna Todd,After,https://images.gr-assets.com/books/1438077259l/22557520.jpg,3.74,32027,\"romance, contemporary\",\"\"\"Book one of the After series--the Internet sensation with millions of\nreaders. Tessa didn't plan on meeting Hardin during her freshman year of\ncollege. But now that she has, her life will never be the same\"\"--\"\r\n3566,3702,1966969,Maria V. Snyder,Fire Study,https://images.gr-assets.com/books/1357064290l/1966969.jpg,3.95,40523,\"fantasy, romance\",Fire StudyMaria V. Snyder\r\n3567,3703,11734,Philip Roth,The Human Stain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953496l/11734.jpg,3.84,21724,\"fiction, contemporary\",\"A college professor with a sexual indiscretion in his past is hounded from\nhis job by academic enemies who label him a racist.\"\r\n3568,3704,16303287,\"Cassandra Clare, Sarah Rees Brennan, Maureen Johnson, Cassandra Jean\",The Bane Chronicles,https://images.gr-assets.com/books/1395159015l/16303287.jpg,4.2,36885,\"fantasy, paranormal\",\"The Bane ChroniclesCassandra Clare, Sarah Rees Brennan, Maureen Johnson, Cassandra Jean\"\r\n3569,3705,409918,Michael Connelly,The Narrows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442594230l/409918._SY475_.jpg,4.09,26274,\"mystery, fiction\",\"When an infamous serial killer known as the Poet reemerges, FBI agent\nRachel Walling, long haunted by her unsuccessful efforts to bring him to\njustice, receives assistance from LAPD detective Harry Bosch, who finds the\ncase to be the most terrifying of his career. Reprint.\"\r\n3570,3706,13312527,Tarryn Fisher,The Opportunist,https://images.gr-assets.com/books/1374526831l/13312527.jpg,4.22,38511,\"contemporary, romance\",\"Olivia Kaspen is a sharp tongued manipulator used to always getting what\nshe wants. With just one exception-Caleb Drake, the one she foolishly let\nslip away. After a chance encounter brings Caleb back into her life, Olivia\nfinds herself wanting a second chance with her first love, and asking\nherself how far she is willing to go to get him back. Her only problem is a\nred head named Leah, Caleb's new love. Olivia must fight for what was once\nhers, and in the process discover that sometimes love falls short of\nredemption.\"\r\n3571,3707,14096,Jon Kabat-Zinn,\"Wherever You Go, There You Are: Mindfulness Meditation in Everyday Life\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440661171l/14096._SX318_.jpg,4.11,24259,\"spirituality, psychology\",\"An updated tenth anniversary edition of the best-selling guide explains how\nanyone can use mindfulness--the Buddhist art of living each moment fully as\nit happens--to reduce anxiety, achieve inner peace, find fulfillment, and\nenrich one's life, accompanied by a series of anecdotes, instructions, and\nmeditations. Reprint. 100,000 first printing.\"\r\n3572,3708,50144,\"Banana Yoshimoto, Megan Backus\",キッチン [Kitchen],https://images.gr-assets.com/books/1327904393l/50144.jpg,3.83,25797,\"fiction, contemporary\",\"\"\"A scathing comedy of social striving in the suburbs, Absurd Person\nSingular follows the fortunes of three couples who turn up in each other's\nkitchens on three successive Christmases, to hilarious and devastating\neffect. In Absent Friends, Diana and Paul host a tea party for Colin,\nrecently returned to England after the tragic drowning of his fiancée. But\nColin proves impervious to their awkward attempts to console him as he\nunwittingly touches every raw nerve in the troubled lives of his old\nfriends. The action of Bedroom Farce unfolds simultaneously--and\nuproariously--in the onstage bedrooms of three couples all in some way\nconnected to an utterly self-absorbed fourth couple who heedlessly intrude\non their friends' privacy, leaving chaos in their wake.\"\"--Page 4 of cover.\"\r\n3573,3709,123543,Eric Van Lustbader,Robert Ludlum's The Bourne Legacy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392350704l/123543.jpg,3.86,23352,\"fiction, thriller\",\"Former CIA agent David Webb leads a quiet life as a university professor\nuntil he becomes a target of an assassin and is framed for the murders of\ntwo close friends, and as he fights for his life, he finds himself under\nthe control of his alternate person\"\r\n3574,3710,129619,Judith McNaught,A Kingdom of Dreams ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285802l/129619.jpg,4.25,34308,\"romance, fiction\",\"Abducted from her covent school, headstrong Scottish beauty Jennifer\nMerrick does not easily surrender to Royce Westmoreland, Duke of Claymore.\"\r\n3575,3711,7095831,Paolo Bacigalupi,Ship Breaker,https://images.gr-assets.com/books/1327874074l/7095831.jpg,3.74,31911,\"fiction, fantasy\",\"A tale set in a Gulf Coast shanty town 100 years in the future finds teen\nNailer dreaming of a better life on the sea before discovering a beached\nclipper ship and lone survivor. By the Nebula- and Hugo-nominated author of\nPump Six and Other Stories.\"\r\n3576,3712,385742,Suzanne Collins,Gregor and the Prophecy of Bane,https://images.gr-assets.com/books/1337457481l/385742.jpg,4.17,29586,\"fantasy, fiction\",\"After his little sister is kidnapped and taken away to the Underground,\nGregor's pledge to never return there is quickly broken in order to track\ndown the rat, Bane, and find his sibling with the help of his old friend\nAres and princess Luxa. Reprint.\"\r\n3577,3713,85733,\"James Patterson, Peter de Jonge\",Beach Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387705973l/85733.jpg,3.81,27240,\"mystery, fiction\",\"Beach RoadJames Patterson, Peter de Jonge\"\r\n3578,3714,9802372,Maureen Johnson,The Name of the Star,https://images.gr-assets.com/books/1327880449l/9802372.jpg,3.9,22842,\"mystery, paranormal\",\"Rory, of Bâenouville, Louisiana, is spending a year at a London boarding\nschool when she witnesses a murder by a Jack the Ripper copycat and becomes\ninvolved with the very unusual investigation.\"\r\n3579,3715,325085,\"Charles Dickens, Mark Ford\",Nicholas Nickleby,https://images.gr-assets.com/books/1352758388l/325085.jpg,3.89,30272,\"classics, fiction\",\"When his father dies, Nicholas is sent by his uncle to a school to be a\nteacher, but when Nicholas finds that the headmaster bullies the students,\nhe must decide whether to stay, or leave and allow his uncle to cut off\nsupport.\"\r\n3580,3716,4673605,\"Dean Koontz, Kevin J. Anderson, Chuck Dixon, Brett Booth\",Dean Koontz's Frankenstein: Prodigal Son Volume 1 (Frankenstein),https://images.gr-assets.com/books/1320410883l/4673605.jpg,4.09,25349,\"horror, fantasy\",\"Dean Koontz's Frankenstein: Prodigal Son Volume 1 (Frankenstein)Dean Koontz, Kevin J. Anderson, Chuck Dixon, Brett Booth\"\r\n3581,3717,12651,\"Jean-Jacques Rousseau, Maurice Cranston\",Du contrat social: ou Principes du droit politique,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197284l/12651.jpg,3.75,24397,\"philosophy, classics\",\"Du contrat social: ou Principes du droit politiqueJean-Jacques Rousseau, Maurice Cranston\"\r\n3582,3718,3002300,Laurie Halse Anderson,Chains,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348415444l/3002300.jpg,4.09,32493,\"fiction, history\",\"When her owner dies at the start of the Revolution, a greedy nephew keeps\nIsabel and her younger sister enslaved and sells them to Loyalists in New\nYork, where Isabel is offered the chance to spy for the Patriots.\"\r\n3583,3719,53447,Ernesto Sabato,El túnel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170423850l/53447._SY475_.jpg,4.04,23161,\"fiction, classics\",\"Novela de estructura casi policial, El túnel presenta en el personaje de\nMaría Iribarne la comprensión de la totalidad y el absoluto a la vez que\nlas zonas ocultas de misterio que impulsarán a Juan Pablo Castel a\nasesinarla. El creador --pintor en este caso-- al dar forma a su obsesión\ninterna debe renunciar a cualquier otra opción, en un proceso a la vez\nconstructivo y destructivo que centrará el análisis de las motivaciones del\ncrimen. Obra esencial de Sabato, que Camus refrendó ante la crítica\nmundial, El túnel nos entrega los elementos básicos de su visión metafísica\ndel existir.\"\r\n3584,3720,110331,\"Alexander Hamilton, James Madison, John Jay, Philo-Publius, Clinton Rossiter, Charles R. Kessler\",The Federalist,https://images.gr-assets.com/books/1327865541l/110331.jpg,4.05,24648,\"history, classics\",\"Three early American statesmen defend the political principles and\nideologies set forth in the Constitution of the United States, in a new\nedition of the classic, which is accompanied by a selected bibliography,\nhistorical glossary, new introduction, andother resource material.\"\r\n3585,3721,272315,Julie Anne Peters,Keeping You a Secret,https://images.gr-assets.com/books/1358442201l/272315.jpg,3.98,25864,\"romance, fiction\",\"National Book Award finalist Julie Anne Peters delivers a moving, modern\nclassic love story with a \"\"coming out\"\" theme--now with a fresh, redesigned\ncover! With a steady boyfriend, the position of Student Council President,\nand a chance to go to an Ivy League college, high school life is just fine\nfor Holland Jaeger. At least, it seems to be. But when Cece Goddard comes\nto school, everything changes. Cece and Holland have undeniable feelings\nfor each other, but how will others react to their developing relationship?\nThis moving love story between two girls is for fans of Nancy Garden's\nclassic young adult coming out novel, Annie on My Mind. With her\ncharacteristic humor and breezy style, Peters has captured the compelling\nemotions of young love.\"\r\n3586,3722,25242224,\"Elena Ferrante, Ann Goldstein\",Storia della bambina perduta,https://images.gr-assets.com/books/1499781984l/25242224.jpg,4.39,21358,\"fiction, contemporary\",\"Storia della bambina perdutaElena Ferrante, Ann Goldstein\"\r\n3587,3723,1629601,E. Lockhart,The Disreputable History of Frankie Landau-Banks,https://images.gr-assets.com/books/1313980820l/1629601.jpg,3.82,35300,\"fiction, contemporary\",\"Tells of the life and transformation of Frankie Landau-Banks who began her\nteenage years as a quiet member of the Debate Club and grew to become a\nsixteen-year-old criminal mastermind with an attitude to match. Reprint.\"\r\n3588,3724,6578507,\"Sarah Blake, Orlagh Cassidy\",The Postmistress,https://images.gr-assets.com/books/1409169468l/6578507.jpg,3.3,30320,\"fiction, contemporary\",\"The PostmistressSarah Blake, Orlagh Cassidy\"\r\n3589,3725,10790277,Michael J. Sullivan,Rise of Empire,https://images.gr-assets.com/books/1307960500l/10790277.jpg,4.35,25757,\"fantasy, fiction\",\"The adventure continues as Royce and Hadrian aid the struggling kingdom of\nMelengar as it alone stands in defiance against the newly formed empire.\nWar approaches and a desperate gamble behind enemy lines is their only\nchance at forming an alliance with the Nationalists to the south. But Royce\nhas plans of his own as he uses this opportunity to discover if an ancient\nwizard is using Riyria as pawns in his own bid for power. To find the\ntruth, Royce must unravel Hadrian's hidden past. What he discovers will\nlead them to the end of the known world, on a journey rife with treachery\nand intrigue. When author Michael J. Sullivan self-published the first\nbooks of his Riyria Revelations, they rapidly became ebook bestsellers.\nNow, Orbit is pleased to present the complete series for the first time in\nbookstores everywhere. Rise of Empire was originally published as: Nyphron\nRising and The Emerald Storm. BOOKS IN THE RIYRIA REVELATIONS Theft of\nSwords (The Crown Conspiracy & Avempartha) Rise of Empire (Nyphron Rising &\nThe Emerald Storm) Heir of Novron (Wintertide & Percepliquis)\"\r\n3590,3726,657371,Nic Sheff,Tweak: Growing Up On Methamphetamines,https://images.gr-assets.com/books/1259233004l/657371.jpg,3.93,23544,\"memoir, nonfiction\",\"Sheff relates his personal struggle with drugs and alcohol in this poignant\nand often disturbing memoir. Paul Michael Garcia is the perfect choice for\nnarrator; his stern and entirely believable voice captures the desolation\nin Sheff's tale. His reading is wonderfully underplayed, and necessarily\nso. Garcia becomes Sheff, offering a gritty and raw performance that\ndemonstrates just how dire the circumstances surrounding Sheff's existence\nreally were.\"\r\n3591,3727,10836728,Daniel O'Malley,The Rook,https://images.gr-assets.com/books/1327619585l/10836728.jpg,4.12,27569,\"fantasy, mystery\",\"Myfanwy Thomas awakes in a London park surrounded by dead bodies. With her\nmemory gone, her only hope of survival is to trust the instructions left in\nher pocket by her former self. She quickly learns that she is a Rook, a\nhigh-level operative in a secret agency that protects the world from\nsupernatural threats. But there is a mole inside the organization and this\nperson wants her dead. As Myfanwy battles to save herself, she encounters a\nperson with four bodies, a woman who can enter her dreams, children\ntransformed into deadly fighters, and an unimaginably vast conspiracy.\nSuspenseful and hilarious, THE ROOK is an outrageously inventive debut for\nreaders who like their espionage with a dollop of purple slime.\"\r\n3592,3728,44170,Frank Beddor,The Looking Glass Wars,https://images.gr-assets.com/books/1354845928l/44170.jpg,3.93,34581,\"fantasy, fiction\",\"When she is cast out of Wonderland by her evil aunt Redd, young Alyss Heart\nfinds herself living in Victorian Oxford as Alice Liddell and struggles to\nkeep memories of her kingdom intact until she can return and claim her\nrightful throne. Reprint.\"\r\n3593,3729,2241558,Philippa Gregory,The Other Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192598l/2241558.jpg,3.62,32105,\"fiction, history\",\"From #1 New York Times bestselling author and “queen of royal fiction” (USA\nTODAY) Philippa Gregory—a dazzling new novel about the intriguing,\nromantic, and maddening Mary, Queen of Scots. Fleeing violent rebellions in\nScotland, Mary looks to Queen Elizabeth of England for sanctuary. Though\npromised protection, Mary, perceived as a serious threat to the English\ncrown, is soon imprisoned by her former friend as a “guest” in the house of\nGeorge Talbot, Earl of Shrewsbury, and his indomitable wife, Bess of\nHardwick. The newly married couple welcomes the condemned queen into their\nhome, certain that serving as her hosts and jailers will bring them an\nadvantage in the cutthroat world of the Elizabethan court. To their horror,\nthey grow to realize that the task will bankrupt their estate and lose them\nwhat little favor they’ve managed to gain as their home becomes the\nepicenter of intrigue and rebellion against Queen Elizabeth. And Mary is\nnot as hopeless as she appears, manipulating the earl and spinning her own\nweb of treachery and deceit, as she sharpens her weapons to reclaim her\nScottish throne—and to take over Queen Elizabeth’s of England.\"\r\n3594,3730,6261961,Joyce Maynard,Labor Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441909727l/6261961._SX318_.jpg,3.55,23043,\"fiction, romance\",\"With the end of summer closing in and a steamy Labor Day weekend looming in\nthe town of Holton Mills, New Hampshire, lonely, friendless thirteen-year-\nold Henry spends most of his time watching television, reading, and\ndaydreaming with only his emotionally fragile, long-divorced mother for\ncompany. But everything changes on the Thursday before the holiday weekend\nwhen a mysterious bleeding man named Frank asks Henry for a hand. Over the\nnext five days, Henry will learn some of life's most valuable lessons,\nabout the breathless pain of jealousy, the power of betrayal, and the\nimportance of putting those we care about above ourselves—and that real\nlove is worth waiting for. From acclaimed author Joyce Maynard comes a\nbeautiful, poignant tale of love, sex, adolescence, and devastating\ntreachery as seen through the eyes of a young teenager—and the man he later\nbecomes.\"\r\n3595,3731,7576115,Terry Pratchett,I Shall Wear Midnight,https://images.gr-assets.com/books/1328232764l/7576115.jpg,4.35,30945,\"fantasy, fiction\",\"As the witch of the Chalk, Tiffany Aching performs the distinctly\nunglamorous work of caring for the needy. But someone âe\"\" or something âe\"\"\nis inciting fear, generating dark thoughts and angry murmurs against\nwitches. Tiffany must find the source of unrest and defeat the evil at its\nroot. Aided by the tiny-but-tough Wee Free Men, Tiffany faces a dire\nchallenge, for if she falls, the whole Chalk falls with her . . . THE\nFOURTH BOOK IN THE TIFFANY ACHING SEQUENCE\"\r\n3596,3732,17831614,Christina Lauren,Beautiful Player,https://images.gr-assets.com/books/1375285002l/17831614.jpg,4.38,42635,\"romance, contemporary\",\"Moving to New York City for graduate school, Hanna Bergstrom turns to her\nbrother's best friend, womanizing venture capitalist Will Sumner, for\ndating advice as she transforms herself from a bookworm academic into a\nseductive beauty who every man seems to notice - especially Will. Original.\"\r\n3597,3733,18077903,\"Ed Catmull, Amy Wallace\",\"Creativity, Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration\",https://images.gr-assets.com/books/1400863577l/18077903.jpg,4.24,25488,\"business, nonfiction\",\"The co-founder and president of Pixar Animation Studios presents a\ndistillation of the ideas and management principles he has used to develop\na the company's successful creative culture, reflecting on how Pixar's\ncommitment to specific values has involved a daily effort. 80,000 first\nprinting.\"\r\n3598,3734,91760,\"Frida Kahlo, Carlos Fuentes, Sarah M. Lowe\",El diario de Frida Kahlo: Un íntimo autorretrato ,https://images.gr-assets.com/books/1407009131l/91760.jpg,3.88,25038,\"art, biography\",\"Publicado En Su Totalidad, el diario ilustrado de Frida Kahlo refleja los\nultimos diez anos de una vida turbulenta. Este documento, a veces\napasionado, otras sorprendente e intimo, custodiado bajo llave durante\naproximadamente cuarenta anos, revela nuevos rasgos de la compleja\npersonalidad de esta destacada artista mexicana.\"\r\n3599,3735,11580,\"Stephen King, Bernie Wrightson, Michele Wrightson\",Creepshow,https://images.gr-assets.com/books/1332002598l/11580.jpg,4.06,27690,\"horror, comics\",Five scary tales written in comic book format.\r\n3600,3736,10785687,Bob McCabe,Harry Potter Page to Screen: The Complete Filmmaking Journey,https://images.gr-assets.com/books/1317345385l/10785687.jpg,4.56,27361,\"fantasy, nonfiction\",\"Harry Potter: Page to Screen opens the doors to Hogwarts castle and the\nwizarding world of Harry Potter to reveal the complete behind-the-scenes\nsecrets, techniques, and over-the-top artistry that brought J.K. Rowling’s\nacclaimed novels to cinematic life. Developed in collaboration with the\ncreative team behind the celebrated movie series, this deluxe, 500-plus\npage compendium features exclusive stories from the cast and crew, hundreds\nof never-before-seen photographs and concept illustrations sourced from the\nclosed film sets, and rare memorabilia. As the definitive look at the magic\nthat made cinematic history, Page to Screen is the ultimate collectible,\nperfect for Muggles everywhere.\"\r\n3601,3737,29925,Jeff Shaara,Gods and Generals,https://images.gr-assets.com/books/1330062676l/29925.jpg,4.05,25515,\"fiction, history\",Gods and GeneralsJeff Shaara\r\n3602,3738,2712967,Gena Showalter,The Darkest Pleasure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390666521l/2712967.jpg,4.28,38040,\"paranormal, fantasy\",The Darkest PleasureGena Showalter\r\n3603,3739,151370,Madeleine L'Engle,Many Waters,https://images.gr-assets.com/books/1330360643l/151370.jpg,4.01,33049,\"fantasy, fiction\",\"The fifteen-year-old Murry twins, Sandy and Dennys, are accidentally sent\nback to a strange Biblical time period, in which mythical beasts roam the\ndesert and a man named Noah is building a boat in preparation for a great\nflood.\"\r\n3604,3740,598159,\"Bill Martin Jr., Eric Carle\",\"Panda Bear, Panda Bear, What Do You See?\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235284l/598159.jpg,4.21,27402,\"fiction, poetry\",\"Illustrations and rhyming text present ten different endangered animals. On\nboard pages.\"\r\n3605,3741,8701129,Lisa Gardner,Love You More,https://images.gr-assets.com/books/1385141722l/8701129.jpg,4.15,27629,\"mystery, thriller\",\"When state police trooper Tessa Leoni claims to have killed her husband in\nself-defense, Detective D.D. Warren must investigate a difficult case when\nshe discovers that Tessa's 6-year-old daughter is also missing. Reprint.\"\r\n3606,3742,792161,Michael Morpurgo,War Horse,https://images.gr-assets.com/books/1360677423l/792161.jpg,4.13,24952,\"fiction, history\",\"Joey the horse recalls his experiences growing up on an English farm, his\nstruggle for survival as a cavalry horse during World War I, and his\nreunion with his beloved master.\"\r\n3607,3743,336161,Eric Carle,The Grouchy Ladybug,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1510010469l/336161._SX318_.jpg,4.09,26716,\"fiction, science\",\"It's the Grouchy Ladybug's 20th birthday. To celebrate, we are introducing\na new, larger format edition with brighter, more colorful pages created\nfrom Eric Carle's original artwork using the latest reproduction\ntechnology. The Grouchy Ladybug is bigger and brigher, as irascible but\nirresistable as ever and will surely delight new generations of readers, as\nwell as her devoted fans of all ages. Happy Birthday, Grouchy Ladybug!\"\r\n3608,3744,21685,Dennis Lehane,A Drink Before the War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921356l/21685.jpg,3.96,25800,\"mystery, fiction\",A Drink Before the WarDennis Lehane\r\n3609,3745,657034,Chelsea Cain,Heartsick,https://images.gr-assets.com/books/1317065387l/657034.jpg,3.92,27974,\"mystery, thriller\",\"Addicted to painkillers and still bound to Gretchen Lowell, the beautiful\nserial killer who had abducted and tortured him before turning herself in,\nPortland detective Archie Sheridan is caught in another deadly duel with a\nmurderer targeting teenage girl\"\r\n3610,3746,12820360,Julianne Donaldson,Edenbrooke,https://images.gr-assets.com/books/1371398291l/12820360.jpg,4.34,28536,\"romance, fiction\",EdenbrookeJulianne Donaldson\r\n3611,3747,16248311,Kathleen Tessaro,The Perfume Collector,https://images.gr-assets.com/books/1358532124l/16248311.jpg,3.97,22544,\"fiction, romance\",The Perfume CollectorKathleen Tessaro\r\n3612,3748,15704001,Tara Sivec,\"Seduction and Snacks (Chocolate Lovers, #1)\",https://images.gr-assets.com/books/1371178840l/15704001.jpg,4.14,32972,\"romance, contemporary\",\"Fans of romantic comedies will enjoy this story about a single mother who\nsells toys who has to confront the one night stand that changed her life.\"\r\n3613,3750,39030,\"Douglas Preston, Lincoln Child\",Reliquary,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922100l/39030.jpg,4,27362,\"thriller, mystery\",\"Relic: The #1 New York Times bestselling thriller by Douglas Preston's and\nLincoln Child, with more than one million copies sold to date Just days\nbefore a massive exhibition opens at the popular New York Museum of Natural\nHistory, visitors are being savagely murdered in the museum's dark hallways\nand secret rooms. Autopsies indicate that the killer cannot be human... But\nthe museum's directors plan to go ahead with a big bash to celebrate the\nnew exhibition, in spite of the murders. Museum researcher Margo Green must\nfind out who--or what--is doing the killing. But can she do it in time to\nstop the massacre?\"\r\n3614,3751,8459594,Gabrielle Hamilton,\"Blood, Bones and Butter: The Inadvertent Education of a Reluctant Chef\",https://images.gr-assets.com/books/1327889966l/8459594.jpg,3.71,24531,\"memoir, nonfiction\",\"Blood, Bones and Butter: The Inadvertent Education of a Reluctant ChefGabrielle Hamilton\"\r\n3615,3752,140302,Agatha Christie,Poirot Investigates,https://images.gr-assets.com/books/1359475912l/140302.jpg,4.07,15476,\"mystery, crime\",\"First there was the mystery of the film star and the diamond . . . then\ncame the “suicide” that was murder . . . the mystery of the absurdly cheap\nflat . . . a suspicious death in a locked gun room . . . a milliondollar\nbond robbery . . . the curse of a pharaoh’s tomb . . . a jewel robbery by\nthe sea . . . the abduction of a prime minister . . . the disappearance of\na banker . . . a phone call from a dying man . . . and, finally, the\nmystery of the missing will. What links these fascinating cases? Only the\nbrilliant deductive powers of Hercule Poirot!\"\r\n3616,3753,10,J.K. Rowling,\"Harry Potter Collection (Harry Potter, #1-6)\",https://images.gr-assets.com/books/1328867351l/10.jpg,4.73,24618,\"fantasy, fiction\",\"Collects in a boxed set the first six books in the series that relates the\nadventures of young Harry Potter, who attends Hogwarts School of Witchcraft\nand Wizardry, where he and others of his kind learn their craft.\"\r\n3617,3754,30016,Isaac Asimov,The Naked Sun,https://images.gr-assets.com/books/1335782263l/30016.jpg,4.12,26532,\"fiction, mystery\",\"The Earth will be destroyed by Solaria's robot army if Elijah Baley fails\nto find the murderer of an eminent scientist\"\r\n3618,3755,114230,Herman Melville,\"Bartleby, the Scrivener: A Story of Wall Street\",https://images.gr-assets.com/books/1320404048l/114230.jpg,3.9,26265,\"classics, fiction\",\"Bartleby, the Scrivener: A Story of Wall StreetHerman Melville\"\r\n3619,3756,23512999,Stephen King,The Bazaar of Bad Dreams,https://images.gr-assets.com/books/1468705688l/23512999.jpg,3.92,22054,\"horror, fiction\",\"Now in a mass-market paperback premium edition—the instant #1 New York\nTimes bestseller! Stephen King delivers an “outstanding” (USA TODAY)\ncollection of stories, featuring revelatory autobiographical comments on\nwhen, why, and how he came to write (or rewrite) each story. “I’ve made\nsome things for you, Constant Reader. …Feel free to examine them, but\nplease be careful. The best of them have teeth.” Since Nightshift,\npublished thirty-five years ago, Stephen King has dazzled an entire\ngeneration of readers with his genius as a prominent writer of short\nfiction. Now in his latest collection, he once again assembles a generous\narray of unforgettable, tantalizing tales—including those that, until\nrecently, have never been published in a book (such as the story “Cookie\nJar,” which is exclusive to this edition). There are thrilling connections\nbetween these works—themes of mortality, the afterlife, guilt, and what we\nwould do differently if we could see into the future or correct the\nmistakes of the past. Magnificent, eerie, and utterly compelling, The\nBazaar of Bad Dreams is one of Stephen King’s finest gifts to readers\neverywhere—a master storyteller at his very best.\"\r\n3620,3757,9835731,\"Lars Kepler, Ann Long\",Hypnotisören,https://images.gr-assets.com/books/1482166605l/9835731.jpg,3.63,23690,\"mystery, thriller\",\"HypnotisörenLars Kepler, Ann Long\"\r\n3621,3758,76658,Piers Anthony,On a Pale Horse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210126l/76658.jpg,4.13,29492,\"fantasy, fiction\",\"As the Incarnation of Death, Zane must end the lives of others but then he\nfinds himself being drawn into an evil plot of Satan's, to destroy Luna,\nthe woman he loves. Copyright © Libri GmbH. All rights reserved.\"\r\n3622,3759,4902793,Charlaine Harris,\"Sookie Stackhouse, Books 1-7\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348741686l/4902793.jpg,4.43,25359,\"paranormal, fantasy\",\"Presents the adventures of supernaturally gifted cocktail waitress Sookie\nStackhouse as she deals with her increasingly complicated love life and an\nunderground world of vampires and other paranormal beings.\"\r\n3623,3760,43324,Sidney Sheldon,The Sands of Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388485229l/43324.jpg,3.64,21443,\"fiction, thriller\",\"Spain. A land of eternal passion and unceasing bloodshed. From the\nvengeance of a pitiless tyrant, four women flee the sacred, once-safe walls\nof a convent: LUCIA, the proud survivor harboring a murderous secret from\nthe savage clan wars of Sicily...GRACIELLA, the beauty still unpurged of\nguilt from one reckless, youthful sin...MEGAN, the orphan seeking perilous\nrefuge in the arms of a defiant Basque rebel...and TERESA, the believer\nhaunted by a faith that mocks her with silence. Leaving innocence but not\nhope behind, they venture into an alien, dazzling world, where each will\nencounter an unexpected destiny -- and the truth about herself.\"\r\n3624,3761,25378,\"Tommy Lee, Vince Neil, Nikki Sixx, Neil Strauss, Mick Mars, Tommy Lee\",The Dirt: Confessions of the World's Most Notorious Rock Band,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184697l/25378.jpg,4.16,22482,\"music, nonfiction\",\"The most influential, enduring, and iconic metal band of the 1980's reveals\neverything a tell-all of epic proportions. This unbelievable autobiography\nexplores the rebellious lives of four of the most influential icons in\nAmerican rock history. Motley Crue was the voice of a barely pubescent\nGeneration X, the anointed high priests of backward-masking pentagram rock,\npioneers of Hollywood glam, and the creators of MTV's first \"\"power ballad.\"\"\nTheir sex lives claimed celebrities from Heather Locklear to Pamela\nAnderson to Donna D'Errico. Their scuffles involved everyone from Axl Rose\nto 2LiveCrew. Their hobbies have included collecting automatic weapons,\ncultivating long arrest records, pushing the envelope of conceivable drug\nabuse, and dreaming up backstage antics that would make Ozzy Osbourne\nblanch with modesty. Provocatively written and brilliantly designed, this\nbook includes over 100 photos, many never before published, for the most\nexciting and insightful look ever into the Crue.\"\r\n3625,3762,7797,\"Theo LeSieg, Roy McKie\",Ten Apples Up on Top,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349125208l/7797.jpg,4.11,28034,\"fiction, poetry\",\"Three friends balance counting and fun in this silly Beginner Book by Dr.\nSeuss and illustrated by Roy McKie. When a lion, a dog, and a tiger meet\nup, they soon discover that they can each do different things while\nbalancing apples on their heads. Whether drinking milk, jumping rope, or\nroller-skating, they can do a lot with ten apples up on top! But watch out,\nshe has a mop! She'll knock those apples from up on top. Seuss's apple-\nbalancing characters will have youngsters reading, counting, and giggling!\nOriginally created by Dr. Seuss, Beginner Books encourage children to read\nall by themselves, with simple words and illustrations that give clues to\ntheir meaning. \"\"A hilarious story in rhyme about a number of animals who\ncould carry 10 apples on their heads.\"\"--Elementary English.\"\r\n3626,3763,331319,\"Theodore Dreiser, Richard R. Lingeman\",An American Tragedy ,https://images.gr-assets.com/books/1309283443l/331319.jpg,3.94,25665,\"classics, fiction\",\"An American Tragedy Theodore Dreiser, Richard R. Lingeman\"\r\n3627,3764,4645,Ernest Hemingway,The Snows of Kilimanjaro and Other Stories,https://images.gr-assets.com/books/1400889884l/4645.jpg,3.88,21365,\"fiction, classics\",\"Contains ten of Hemingway's classic stories including \"\"The snows of\nKilimanjaro,\"\" \"\"A day's wait,\"\" \"\"Fathers and sons,\"\" \"\"The killers,\"\" and \"\"The\nshort happy life of Francis Macomber\"\"\"\r\n3628,3766,9503336,Elin Hilderbrand,Silver Girl,https://images.gr-assets.com/books/1344270562l/9503336.jpg,3.87,24819,\"fiction, romance\",Silver GirlElin Hilderbrand\r\n3629,3767,22896,Alice Hoffman,Practical Magic,https://images.gr-assets.com/books/1490354120l/22896.jpg,3.8,32994,\"fiction, fantasy\",\"Sorcery is the legacy of Gillian and Sally Owens, a legacy they both try to\nescape until they realize their magic is a gift, not an affliction\"\r\n3630,3768,13536649,Kevin Hearne,Trapped ,https://images.gr-assets.com/books/1346092123l/13536649.jpg,4.28,27544,\"fiction, fantasy\",\"Before he can bind his apprentice, Granuaile, to the earth and double the\nnumber of Druids in the world, Atticus O'Sullivan, along with his trusted\nIrish wolfhound and Granuaile, must travel to the base of Mount Olympus\nwhere the Roman god Bacchus is waiting to take his sworn revenge. Original.\"\r\n3631,3769,9475,Jenny Nimmo,Midnight for Charlie Bone,https://images.gr-assets.com/books/1328868798l/9475.jpg,3.79,32917,\"fiction, mystery\",\"Charlie Bone's life with his widowed mother and two grandmothers undergoes\na dramatic change when he discovers that he can hear people in photographs\ntalking and his aunts decide he must change schools and attend the Bloor's\nAcademy for gifted children. Reprint.\"\r\n3632,3770,23395680,\"Amie Kaufman, Jay Kristoff\",Illuminae,https://images.gr-assets.com/books/1443433956l/23395680.jpg,4.32,44500,\"fiction, romance\",\"IlluminaeAmie Kaufman, Jay Kristoff\"\r\n3633,3771,140671,Glen Cook,The Black Company,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389929874l/140671.jpg,3.96,27392,\"fantasy, fiction\",\"The tough mercenaries of the Black Company risk their lives and their souls\nas they set out to find the White Rose, a mystical figure who embodies the\nvery essence of good. Reissue.\"\r\n3634,3772,42986,Herman Wouk,War and Remembrance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422331351l/42986.jpg,4.38,26633,\"fiction, history\",War and RemembranceHerman Wouk\r\n3635,3773,37034,\"Susan Hill, John Lawrence\",The Woman in Black,https://images.gr-assets.com/books/1327869942l/37034.jpg,3.68,24200,\"horror, fiction\",\"Arthur Kipps, a young solicitor, has come north from London to attend the\nfuneral and settle the affairs of Mrs. Alice Drablow of Eel Marsh House.\nThe routine formalities he anticipates give way to a tumble of events and\nsecrets more sinister and terrifying than any nightmare: the rocking chair\nin the deserted nursery, the eerie sound of a pony and trap, a child's\nscream in the fog, and most dreadfully and for Kipps, most tragically, the\nwoman in black.\"\r\n3636,3774,239810,Barbara Robinson,The Best Christmas Pageant Ever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177116l/239810.jpg,4.18,32516,\"fiction, classics\",The Best Christmas Pageant EverBarbara Robinson\r\n3637,3776,9827,James Clavell,King Rat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388889819l/9827.jpg,4.1,25071,\"fiction, classics\",\"The shattering novel about an American Corporal who seeks to dominate both\ncaptors and captives in an Japanese prison camp during WWII.\"\r\n3638,3777,8811134,Michael  Grant,Fear,https://images.gr-assets.com/books/1309186708l/8811134.jpg,4.25,33178,\"fantasy, paranormal\",FearMichael  Grant\r\n3639,3779,327255,Frederick Forsyth,The Fourth Protocol,https://images.gr-assets.com/books/1351838040l/327255.jpg,3.99,24896,\"fiction, thriller\",\"Spændingsroman om russiske forsøg på at sprænge en atombombe i London, og\nbegge efterretningstjenesters arbejde med problemet. Spionen Kim Philby\nspiller en væsentlig rolle.\"\r\n3640,3780,10990,Diana Gabaldon,Lord John and the Private Matter,https://images.gr-assets.com/books/1320485657l/10990.jpg,3.66,28653,\"fiction, mystery\",\"Returning from Scottish exile in 1757, Lord John Grey pursues a traitor\nthrough London and across the seas, an endeavor that is complicated by a\ndelicate family affair and his memories of the Jacobite Rising. By the\nauthor of Outlander. Reprint.\"\r\n3641,3781,9681214,Aimee Carter,The Goddess Test,https://images.gr-assets.com/books/1387217173l/9681214.jpg,3.83,44328,\"fantasy, romance\",The Goddess TestAimee Carter\r\n3642,3782,36086,Steven Johnson,The Ghost Map,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430524696l/36086.jpg,3.91,24895,\"history, science\",\"A historical chronicle of Victorian London's worst cholera outbreak traces\nthe day-by-day efforts of Dr. John Snow, who put his own life on the line\nin his efforts to prove his previously dismissed contagion theory about how\nthe epidemic was spreading. 80,000 first printing.\"\r\n3643,3783,9297774,Anna Carey,Eve,https://images.gr-assets.com/books/1389188190l/9297774.jpg,3.69,34746,\"romance, fantasy\",\"Where do you go when nowhere is safe? After a deadly virus wiped out most\nof Earth's population, the world is a terrifying place. Eighteen-year-old\nEve has never been beyond the heavily guarded perimeter of her school,\nwhere she and two hundred other orphaned girls have been promised a bright\nfuture in The New America. But the night before graduation, Eve learns the\nshocking truth about her school's real purpose—and the horrifying fate that\nawaits her. Fleeing the only home she's ever known, Eve sets off on a long,\ntreacherous journey, searching for a place she can survive. Along the way\nshe encounters Caleb, a rough, rebellious boy living in the wild. Caleb\nslowly wins her trust . . . and her heart. But when soldiers begin hunting\nthem, Eve must choose between true love and her life.\"\r\n3644,3784,18353714,David Baldacci,The Target,https://images.gr-assets.com/books/1391463804l/18353714.jpg,4.04,18115,\"thriller, fiction\",The TargetDavid Baldacci\r\n3645,3785,52372,Susan Sontag,On Photography,https://images.gr-assets.com/books/1328061531l/52372.jpg,3.84,22611,\"art, philosophy\",\"Winner of the National Book Critics' Circle Award for Criticism. One of the\nmost highly regarded books of its kind, On Photography first appeared in\n1977 and is described by its author as \"\"a progress of essays about the\nmeaning and career of photographs.\"\" It begins with the famous \"\"In Plato's\nCave\"\"essay, then offers five other prose meditations on this topic, and\nconcludes with a fascinating and far-reaching \"\"Brief Anthology of\nQuotations.\"\"\"\r\n3646,3786,504420,Vince Flynn,Protect and Defend,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429284131l/504420.jpg,4.34,23952,\"fiction, thriller\",\"In the aftermath of an Israeli attack on Iranian nuclear facilities, CIA\ndirector Irene Kennedy and operative Mitch Kelly are dispatched to the\nMiddle East to diffuse Iran's sworn retaliation against the United States\nbut are unaware that a Lebanese terrorist is working with Iran's Supreme\nCouncil to sabotage their efforts. Reprint.\"\r\n3647,3787,5182,Mary McGarry Morris,Songs in Ordinary Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1590718454l/5182.jpg,3.68,27034,\"fiction, contemporary\",\"A novel set in a small town in Vermont in 1960 offers the story of lonely\nand vulnerable Marie Fermoyle, her three children, and a dangerous con man\"\r\n3648,3788,40067,Erik Larson,Thunderstruck,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435981040l/40067._SY475_.jpg,3.67,24760,\"history, nonfiction\",\"A portrait of the Edwardian era recounts two parallel stories--the case of\nDr. Hawley Crippen, who murdered his wife and fled to America, and\nGuglielmo Marconi, the inventor of wireless communication--as the new\ntechnology is used to capture a killer.\"\r\n3649,3789,1168341,Michio Kaku,\"Physics of the Impossible: A Scientific Exploration of the World of Phasers, Force Fields, Teleportation, and Time Travel\",https://images.gr-assets.com/books/1320469147l/1168341.jpg,4.07,22251,\"science, nonfiction\",\"Looks at the scientific principles behind the technology of the future,\nexamining the theoretical basis, as well as limitations, of the laws of\nphysics to discuss how seemingly impossible devices could become\ncommonplace in the future.\"\r\n3650,3790,15595,Karen Cushman,The Midwife's Apprentice,https://images.gr-assets.com/books/1305983479l/15595.jpg,3.71,33217,\"fiction, history\",\"In a small village in medieval England, a young homeless girl acquires a\nhome and a new career when she becomes the apprentice to a sharp-tempered\nmidwife.\"\r\n3651,3791,40200,Michel Faber,The Crimson Petal and the White,https://images.gr-assets.com/books/1408937589l/40200.jpg,3.87,24932,\"fiction, romance\",\"Yearning to escape her life of prostitution in 1870s London, Sugar finds\nher fate entangled in the complicated family life of patron William\nRackham, an egotistical perfume magnate. Reprint. 150,000 first printing.\"\r\n3652,3792,4701,Mark Haddon,A Spot of Bother,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428506021l/4701.jpg,3.46,23676,\"fiction, contemporary\",A Spot of BotherMark Haddon\r\n3653,3793,8709524,Richelle Mead,Silver Shadows,https://images.gr-assets.com/books/1389304070l/8709524.jpg,4.37,38152,\"fantasy, paranormal\",\"\"\" Sydney Sage is an Alchemist, one of a group of humans who dabble in magic\nand serve to bridge the worlds of humans and vampires. Now in the aftermath\nof an event that ripped their world apart, Sydney and Adrian struggle to\npick up the pieces and find their way back to each other. But first, they\nhave to survive\"\"--\"\r\n3654,3794,16255,Armistead Maupin,Tales of the City,https://images.gr-assets.com/books/1483075229l/16255.jpg,4.06,23666,\"contemporary, classics\",Tales of the CityArmistead Maupin\r\n3655,3795,100924,C.S. Lewis,Perelandra,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388623162l/100924.jpg,3.97,26791,\"fantasy, christian\",\"Focuses on the age-old nature and consequences of temptation as experienced\nin a brand new world.\"\r\n3656,3796,5510384,Ellen Hopkins,Tricks,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347236052l/5510384.jpg,4.29,28687,\"poetry, fiction\",TricksEllen Hopkins\r\n3657,3797,7673,Michael Crichton,Eaters of the Dead,https://images.gr-assets.com/books/1388369310l/7673.jpg,3.64,24885,\"fiction, fantasy\",\"The year is A.D. 922. A refined Arab courtier, representative of the\npowerful Caliph of Baghdad, encounters a party of Viking warriors who are\njourneying to the barbaric North. He is appalled by their Viking\ncustoms—the wanton sexuality of their pale, angular women, their disregard\nfor cleanliness . . . their cold-blooded human sacrifices. But it is not\nuntil they reach the depths of the Northland that the courtier learns the\nhorrifying and inescapable truth: He has been enlisted by these savage,\ninscrutable warriors to help combat a terror that plagues them—a\nmonstrosity that emerges under cover of night to slaughter the Vikings and\ndevour their flesh . . .\"\r\n3658,3798,11100431,Michael J. Sullivan,Heir of Novron,https://images.gr-assets.com/books/1307960132l/11100431.jpg,4.46,25185,\"fantasy, fiction\",Heir of NovronMichael J. Sullivan\r\n3659,3800,3863861,Julie James,Just the Sexiest Man Alive,https://images.gr-assets.com/books/1342552584l/3863861.jpg,3.94,36473,\"romance, contemporary\",\"When she is hired to coach People's \"\"Sexiest Man Alive\"\" for his role in an\nupcoming legal thriller, lawyer Taylor Donovan refuses to fall for Jason\nAndrews's Hollywood heartthrob ways. Original.\"\r\n3660,3801,9436746,\"James Patterson, Maxine Paetro\",10th Anniversary,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789160l/9436746.jpg,4.05,27052,\"mystery, fiction\",\"10th AnniversaryJames Patterson, Maxine Paetro\"\r\n3661,3802,922991,Victoria Hislop,The Island,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349030764l/922991.jpg,3.99,23415,\"fiction, romance\",The IslandVictoria Hislop\r\n3662,3803,32441,Dean Koontz,The Good Guy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257720l/32441.jpg,3.81,27061,\"horror, fiction\",\"Chatting with a nervous stranger sitting at a local bar, Timothy Carrier\nsoon realizes that he has been mistaken for a killer-for-hire and has been\ngiven an envelope full of cash and a contract on a pretty young woman.\"\r\n3663,3804,64948,Dean Koontz,Whispers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388638928l/64948.jpg,3.9,26304,\"horror, fiction\",\"He's back--the terror that stalked Hilary Thomas as a child is back in her\nlife, in her house, at her bedroom door. She killed him once. But he keeps\ncoming back. Again. And again...\"\r\n3664,3805,6777616,Alan Bradley,The Weed That Strings the Hangman's Bag,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266442l/6777616.jpg,3.99,33519,\"mystery, fiction\",\"Flavia de Luce applies her skills in the chemistry lab to solving the\nmurder of a master puppeteer, a case that is further complicated by her\ntormenting sisters.\"\r\n3665,3806,32422,Dean Koontz,Hideaway,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257014l/32422.jpg,3.82,27511,\"horror, fiction\",HideawayDean Koontz\r\n3666,3807,634407,\"Ian Rankin, Mircea Pricăjan\",Knots & Crosses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388781809l/634407.jpg,3.83,26055,\"mystery, crime\",\"Knots & CrossesIan Rankin, Mircea Pricăjan\"\r\n3667,3808,48464,Flannery O'Connor,\"A Good Man Is Hard to Find, and Other Stories\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251628l/48464.jpg,4.24,25504,\"fiction, classics\",\"A collection of short stories depicting the emotions and life-styles of the\ninhabitants of the rural South\"\r\n3668,3809,138396,\"Robert Kirkman, Charlie Adlard\",\"The Walking Dead, Vol. 2: Miles Behind Us\",https://images.gr-assets.com/books/1298563748l/138396.jpg,4.25,26082,\"comics, horror\",\"Survivors of the first zombie attack leave the campground near Atlanta and\ntake to the road seeking civilization and safe shelter, and they soon\ndiscover the promising nearby Wiltshire Estates, but it, too, is crawling\nwith zombies.\"\r\n3669,3810,3828382,Seth Godin,Tribes: We Need You to Lead Us,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347711639l/3828382.jpg,3.84,23803,\"business, nonfiction\",Tribes: We Need You to Lead UsSeth Godin\r\n3670,3811,46815,Marya Hornbacher,Wasted: A Memoir of Anorexia and Bulimia ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181134l/46815.jpg,3.99,25452,\"memoir, nonfiction\",\"Why would a talented young woman enter into a torrid affair with hunger,\ndrugs, sex, and death? Through five lengthy hospital stays, endless\ntherapy, and the loss of family, friends, jobs, and all sense of what it\nmeans to be \"\"normal,\"\" Marya Hornbacher lovingly embraced her anorexia and\nbulimia -- until a particularly horrifying bout with the disease in college\nput the romance of wasting away to rest forever. A vivid, honest, and\nemotionally wrenching memoir, Wasted is the story of one woman's travels to\nreality's darker side -- and her decision to find her way back on her own\nterms.\"\r\n3671,3814,6547188,Kim Harrison,Black Magic Sanction,https://images.gr-assets.com/books/1310918991l/6547188.jpg,4.39,36216,\"fantasy, paranormal\",\"A corrupt coven has denounced and shunned bounty-hunting witch Rachel\nMorgan for dealing with demons, a crime that is punishable by death, and\nnow for the first time Rachel must face off against her own kind. By the\nbest-selling author of White Witch, Black Curse. Reprint. A best-selling\nbook.\"\r\n3672,3815,11505008,William  Davis,\"Wheat Belly: Lose the Wheat, Lose the Weight, and Find Your Path Back to Health \",https://images.gr-assets.com/books/1317793840l/11505008.jpg,3.71,21263,\"nonfiction, science\",\"Wheat Belly: Lose the Wheat, Lose the Weight, and Find Your Path Back to Health William  Davis\"\r\n3673,3816,18500665,Susan Ee,End of Days,https://images.gr-assets.com/books/1423384676l/18500665.jpg,4.1,27238,\"fantasy, paranormal\",\"End of Days is the explosive conclusion to Susan Ee's bestselling Penryn &\nthe End of Days trilogy. After a daring escape from the angels, Penryn and\nRaffe are on the run. They're both desperate to find a doctor who can\nreverse the twisted changes inflicted by the angels on Raffe and Penryn's\nsister. As they set off in search of answers, a startling revelation about\nRaffe's past unleashes dark forces that threaten them all. When the angels\nrelease an apocalyptic nightmare onto humans, both sides are set on a path\ntoward war. As unlikely alliances form and strategies shift, who will\nemerge victorious? Forced to pick sides in the fight for control of the\nearthly realm, Raffe and Penryn must choose: Their own kind, or each other?\"\r\n3674,3817,36315,\"H.P. Lovecraft, August Derleth, Robert Bloch\",The Best of H.P. Lovecraft ,https://images.gr-assets.com/books/1333214256l/36315.jpg,4.31,25841,\"horror, fiction\",\"The Best of H.P. Lovecraft H.P. Lovecraft, August Derleth, Robert Bloch\"\r\n3675,3818,82192,Mary  Stewart,The Crystal Cave,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439344566l/82192._SY475_.jpg,4.12,34643,\"fantasy, fiction\",\"Born the bastard son of a Welsh princess, Myridden Emrys -- or as he would\nlater be known, Merlin -- leads a perilous childhood, haunted by portents\nand visions. But destiny has great plans for this no-man's-son, taking him\nfrom prophesying before the High King Vortigern to the crowning of Uther\nPendragon . . . and the conception of Arthur -- king for once and always.\"\r\n3676,3819,8138071,Kim Harrison,Pale Demon,https://images.gr-assets.com/books/1280381240l/8138071.jpg,4.45,35141,\"fantasy, paranormal\",\"Condemned to death for practicing witchcraft, bounty hunter Rachel Morgan\nis given three days to clear her name and get to the annual witches'\nconvention in San Francisco, an effort that forces her to endure a cross-\ncountry drive with a motley crew of supernatural companions. Reprint.\"\r\n3677,3820,160149,\"H.P. Lovecraft, S.T. Joshi\",The Call of Cthulhu and Other Weird Stories,https://images.gr-assets.com/books/1320618937l/160149.jpg,4.25,25663,\"horror, paranormal\",\"A definitive collection of stories from the unrivaled master of twentieth-\ncentury horror in a Penguin Classics Deluxe edition with cover art by\nTravis Louie. \"\"I think it is beyond doubt that H. P. Lovecraft has yet to\nbe surpassed as the twentieth century's greatest practitioner of the\nclassic horror tale.\"\" -Stephen King Frequently imitated and widely\ninfluential, Howard Philips Lovecraft reinvented the horror genre in the\n1920s, discarding ghosts and witches and instead envisioning mankind as a\ntiny outpost of dwindling sanity in a chaotic and malevolent universe. S.\nT. Joshi, Lovecraft's preeminent interpreter, presents a selection of the\nmaster's fiction, from the early tales of nightmares and madness such as\n\"\"The Outsider\"\" to the overpowering cosmic terror of \"\"The Call of Cthulhu.\"\"\nMore than just a collection of terrifying tales, this volume reveals the\ndevelopment of Lovecraft's mesmerizing narrative style and establishes him\nas a canonical- and visionary-American writer. For more than sixty-five\nyears, Penguin has been the leading publisher of classic literature in the\nEnglish-speaking world. With more than 1,500 titles, Penguin Classics\nrepresents a global bookshelf of the best works throughout history and\nacross genres and disciplines. Readers trust the series to provide\nauthoritative texts enhanced by introductions and notes by distinguished\nscholars and contemporary authors, as well as up-to-date translations by\naward-winning translators.\"\r\n3678,3821,15015,Neale Donald Walsch,\"Conversations with God, An Uncommon Dialogue: Living in the World with Honesty, Courage, and Love, Book 1\",https://images.gr-assets.com/books/1327944254l/15015.jpg,4.15,21977,\"spirituality, religion\",\"Presents God's answers to the author's questions concerning everyday life\nand how man should respond to opportunities and challenges.\"\r\n3679,3822,23705512,\"Felicia Day, Joss Whedon\",You're Never Weird on the Internet (Almost),https://images.gr-assets.com/books/1440565049l/23705512.jpg,4.14,28276,\"memoir, nonfiction\",\"The instant New York Times bestseller from “queen of the geeks” Felicia\nDay, You’re Never Weird on the Internet (Almost) is a “relentlessly funny\nand surprisingly inspirational” (Forbes.com) memoir about her unusual\nupbringing, her rise to internet stardom, and embracing her weirdness to\nfind her place in the world. When Felicia Day was a girl, all she wanted\nwas to connect with other kids (desperately). Growing up in the Deep South,\nwhere she was “home-schooled for hippie reasons,” she looked online to find\nher tribe. The Internet was in its infancy and she became an early adopter\nat every stage of its growth—finding joy and unlikely friendships in the\nemerging digital world. Her relative isolation meant that she could pursue\npassions like gaming, calculus, and 1930’s detective novels without shame.\nBecause she had no idea how “uncool” she really was. But if it hadn’t been\nfor her strange background—the awkwardness continued when she started\ncollege at sixteen, with Mom driving her to campus every day—she might\nnever have had the naïve confidence to forge her own path. Like when she\ngraduated as valedictorian with a math degree and then headed to Hollywood\nto pursue a career in acting despite having zero contacts. Or when she\ntired of being typecast as the crazy cat-lady secretary and decided to\ncreate her own web series before people in show business understood that\nonline video could be more than just cats chasing laser pointers. Felicia’s\nrags-to-riches rise to Internet fame launched her career as one of the most\ninfluen­tial creators in new media. Ever candid, she opens up about the\nrough patches along the way, recounting battles with writer’s block, a\nfull-blown gaming addiction, severe anxiety, and depression—and how she\nreinvented herself when overachieving became overwhelming. Showcasing\nFelicia’s “engaging and often hilarious voice” (USA TODAY), You’re Never\nWeird on the Internet (Almost) is proof that everyone should celebrate what\nmakes them different and be brave enough to share it with the world,\nbecause anything is possible now—even for a digital misfit.\"\r\n3680,3823,7926569,\"James Patterson, Michael Ledwidge\",Now You See Her,https://images.gr-assets.com/books/1435387035l/7926569.jpg,3.98,23426,\"mystery, fiction\",\"The perfect life A successful lawyer and loving mother, Nina Bloom would do\nanything to protect the life she's built in New York--including lying to\neveryone, even her daughter, about her past. But when an innocent man is\nframed for murder, she knows that she can't let him pay for the real\nkiller's crimes. The perfect lie Nina's secret life began 18 years ago. She\nhad looks to die for, a handsome police-officer husband, and a carefree\nlife in Key West. When she learned she was pregnant with their first child,\nher happiness was almost overwhelming. But Nina's world is shattered when\nshe unearths a terrible secret that causes her to run for her life and\nchange her identity. The perfect way to die Now, years later, Nina risks\neverything she's earned to return to Florida and confront the murderous\nevil she fled. In a story of wrenching suspense, James Patterson gives us\nhis most head-spinning, action-filled story yet--a Hitchcock-like blend of\nunquenchable drama and pleasure.\"\r\n3681,3824,268601,J.D. Robb,Glory in Death,https://images.gr-assets.com/books/1309282048l/268601.jpg,4.25,35158,\"mystery, romance\",\"In Lieutenant Eve Dallas's latest case, two murder victims have one\nconnection--Eve's lover, Roarke.\"\r\n3682,3825,16002136,\"Matt Fraction, David Aja, Javier Pulido, Matt Hollingsworth, Chris Eliopoulos, Alan Davis\",\"Hawkeye, Volume 1: My Life as a Weapon\",https://images.gr-assets.com/books/1360413248l/16002136.jpg,4.17,31993,\"comics, fiction\",\"Experience a brand-new kind of Iron Fist story, one steeped in legends and\nfables stretching back through the centuries! Orphaned as a child and\nraised in the lost city of K'un-Lun, Danny Rand returned to America as the\nmystical martial artist Iron Fist - but all his kung fu skills can't help\nhim find his place in the modern world. After learning that the legacy of\nthe Iron Fist holds more secrets than he ever dreamed, Danny is invited to\nfight in a tournament against the Immortal Weapons. At stake is the life of\nhis friend, the legacy of his father and mentor...and the future of K'un-\nLun! COLLECTING: Immortal Iron Fist 1-16, Annual 1; Immortal Iron Fist:\nOrson Randall and the Green Mist of Death 1; Immortal Iron Fist: The Origin\nof Danny Rand 1; Civil War: Choosing Sides 1\"\r\n3683,3826,11312,Susan Cooper,\"Over Sea, Under Stone\",https://images.gr-assets.com/books/1443993959l/11312.jpg,3.85,34020,\"fantasy, fiction\",\"Three siblings on vacation in Cornwall find an ancient manuscript which\nsends them on a dangerous quest that entraps them in the eternal battle\nbetween the forces of the Light and the Dark.\"\r\n3684,3827,6375845,\"Jeph Loeb, Jim Lee, Scott Williams, Alex Sinclair, Richard Starkings\",Absolute Batman Hush,https://images.gr-assets.com/books/1342295000l/6375845.jpg,4.29,24125,\"fiction, mystery\",\"Absolute Batman HushJeph Loeb, Jim Lee, Scott Williams, Alex Sinclair, Richard Starkings\"\r\n3685,3828,11299,\"Haruki Murakami, Jay Rubin\",神の子どもたちはみな踊る,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271916l/11299.jpg,3.78,22682,\"fiction, contemporary\",\"The economy was booming. People had more money than they knew what to do\nwith. And then the earthquake struck. For the characters in After the\nQuake, the Kobe earthquake is an echo from a past they buried long ago.\nSatsuki has spent thirty years hating one man: a lover who destroyed her\nchances of having children. Did her desire for revenge cause the\nearthquake? Junpei's estranged parents live in Kobe. Should he contact\nthem? Miyake left his family in Kobe to make midnight bonfires on a beach\nhundreds of miles away. Fourteen-year-old Sala has nightmares that the\nEarthquake Man is trying to stuff her inside a little box. Katagiri returns\nhome to find a giant frog in his apartment on a mission to save Tokyo from\na massive burrowing worm. 'When he gets angry, he causes earthquakes,' says\nFrog. 'And right now he is very, very angry.'This new collection of\nstories, from one of the world's greatest living writers, dissects the\nviolence beneath the surface of modern Japan.\"\r\n3686,3829,6405929,James Patterson,\"I, Alex Cross\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391200811l/6405929.jpg,3.98,27046,\"mystery, fiction\",\"When a beloved relative is murdered, Detective Alex Cross vows to hunt down\nthe killer . . . and discovers a secret that could rock the entire world.\nDetective Alex Cross is pulled out of a family celebration and given the\nawful news that a beloved niece was brutally murdered. Alex vows to hunt\ndown the killer, and soon learns that she was mixed up in one of\nWashington, D. C.'s wildest scenes. And she was not this killer's only\nvictim. The hunt for the murderer leads Alex and his girlfriend, Detective\nBrianna Stone, to Washington's most infamous club-a place where every\nfantasy is possible, if you have the credentials to get in. The killer\ncould be one of their patrons, one of Washington's elite who will do\nanything to keep their secrets buried. With astonishing plot twists and\nelectrifying revelations that will keep readers on the edge of their seat,\nI, Alex Cross is the master of suspense at his sharpest and best.\"\r\n3687,3830,53498,Sharon Creech,Love That Dog,https://images.gr-assets.com/books/1415581593l/53498.jpg,4.01,30254,\"poetry, fiction\",\"Jack Room 105 -- Miss Stretchberry September 13 /center I don't want to\nbecause boys don't write poetry. Girls do. Meet Jack, who tells his story\nwith a little help from some paper, a pencil, his teacher, and a dog named\nSky.\"\r\n3688,3831,73864,Dave Pelzer,A Man Named Dave: A Story of Triumph and Forgiveness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440803504l/73864._SY475_.jpg,3.87,23605,\"biography, memoir\",A Man Named Dave: A Story of Triumph and ForgivenessDave Pelzer\r\n3689,3832,121927,Laurell K. Hamilton,\"Danse Macabre (Anita Blake, Vampire Hunter, #14)\",https://images.gr-assets.com/books/1289499526l/121927.jpg,3.81,36848,\"paranormal, fantasy\",\"Danse Macabre (Anita Blake, Vampire Hunter, #14)Laurell K. Hamilton\"\r\n3690,3833,40425,Edgar Rice Burroughs,Tarzan of the Apes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349074111l/40425.jpg,3.88,27529,\"classics, fiction\",\"Unabridged classic adventure novel from 1914 tells of an aristocratic\nEnglish infant, abandoned on the death of his parents in the African\njungle, who is reared by apes. Story includes riveting encounters with man-\neating beasts, Tarzan's love affair with the beautiful Jane Porter, buried\ntreasure, much more. Original, exotic, highly readable.\"\r\n3691,3834,127586,Anne McCaffrey,\"The White Dragon (Pern: Dragonriders of Pern, #3)\",https://images.gr-assets.com/books/1307994871l/127586.jpg,4.17,33172,\"fantasy, fiction\",\"Jaxom, a rebellious young aristocrat, and Ruth, his white dragon, fly into\nanother time to retrieve the queen's stolen egg, thereby averting a\ndragonrider war, and find their planet threatened once again by a\nThreadfall. Reissue.\"\r\n3692,3835,26023,Jen Lancaster,\"Bright Lights, Big Ass: A Self-Indulgent, Surly, Ex-Sorority Girl's Guide to Why it Often Sucks in the City, or Who are These Idiots and Why Do They All Live Next Door to Me?\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925110l/26023.jpg,4.07,26690,\"memoir, nonfiction\",\"A hilarious new memoir by the best-selling author of Bitter Is the New\nBlack chronicles the not-so-wonderful moments of her life in the big city,\nfrom reporting rude neighbors to Homeland Security or harboring a crush on\nher grocery store clerk, to fighting and losing the Battle of the\nStairmaster. Original.\"\r\n3693,3836,74998,Enid Blyton,The Magic Faraway Tree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389353760l/74998.jpg,4.29,26364,\"fantasy, fiction\",The Magic Faraway TreeEnid Blyton\r\n3694,3837,17650,Margaret Atwood,The Robber Bride,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263287l/17650.jpg,3.82,29797,\"fiction, contemporary\",\"The story of three women living in Toronto explores the paradox of woman as\nvillain\"\r\n3695,3838,2679633,Larissa Ione,Pleasure Unbound,https://images.gr-assets.com/books/1289064020l/2679633.jpg,4.07,40836,\"paranormal, romance\",Pleasure UnboundLarissa Ione\r\n3696,3839,1388813,Lara Adrian,Midnight Awakening ,https://images.gr-assets.com/books/1343539714l/1388813.jpg,4.25,34491,\"paranormal, romance\",\"Prowling the streets of Boston in search of the Rogue vampires who had\ndestroyed her life, Elise Chase, a Darkhaven beauty possessing a powerful\npsychic gift, turns for help to Tegan, the deadliest of the Breed warriors,\nwho could hold the key to teaching her how to harness her unique talents.\nOriginal.\"\r\n3697,3840,542639,Robert Hughes,The Shock of the New,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175649708l/542639._SX318_.jpg,3.73,21410,\"art, history\",\"A beautifully illustrated hundred-year history of modern art, from cubism\nto pop and avant-guard. More than 250 color photos.\"\r\n3698,3841,1611988,Jeffrey Archer,A Prisoner of Birth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442339900l/1611988._SX318_.jpg,4.09,21932,\"fiction, thriller\",A Prisoner of BirthJeffrey Archer\r\n3699,3842,6424184,Christopher Pike,Thirst No. 2,https://images.gr-assets.com/books/1327900390l/6424184.jpg,4.06,26045,\"paranormal, fantasy\",\"Chronicles the events in the life of Alisa, a five-thousand-year-old\nvampire.\"\r\n3700,3843,125963,Ted Dekker,Thr3e,https://images.gr-assets.com/books/1380856492l/125963.jpg,4.08,24907,\"fiction, thriller\",\"By all accounts seminary student Kevin Parsins is leading a good, if not\nvirtuous, life. But like all people, Kevin has his secrets. And someone\nwants them revealed. While driving home from a day at graduate school,\nKevin receives a call from a mysterious stranger who calls himself Slater.\nSlater demands Kevin confess his sin in the next three minutes or the\nvehicle he is manning will be blown to pieces. Thus starts a harrowing\nchain of events. After narrowly escaping his exploding car, Kevin continues\nto receive phone calls from Slater, each with another riddle, another\nconsequence, and another three minutes to confess his sin. The problem is\nKevin is unsure of what that sin might be. And Slater's cycle won't stop\nuntil he figures it out.\"\r\n3701,3844,347610,Adam Hochschild,King Leopold's Ghost,https://images.gr-assets.com/books/1348621563l/347610.jpg,4.15,25021,\"history, nonfiction\",Documents the plundering of the territory.\r\n3702,3845,10830444,\"James Patterson, David Ellis\",Guilty Wives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328322404l/10830444.jpg,3.82,22665,\"mystery, fiction\",\"Guilty WivesJames Patterson, David Ellis\"\r\n3703,3846,12283261,\"Jodi Picoult, Samantha van Leer\",Between the Lines,https://images.gr-assets.com/books/1326314890l/12283261.jpg,3.58,29791,\"fantasy, romance\",\"Between the LinesJodi Picoult, Samantha van Leer\"\r\n3704,3847,10059498,Diane Chamberlain,The Midwife's Confession,https://images.gr-assets.com/books/1323870279l/10059498.jpg,4.05,24283,\"fiction, mystery\",The Midwife's ConfessionDiane Chamberlain\r\n3705,3848,9635657,Rachel Renée Russell,Tales From a Not-So-Talented Pop Star,https://images.gr-assets.com/books/1370064614l/9635657.jpg,4.31,22337,\"fiction, romance\",\"When scholarship student Nikki Maxwell, whose father is the school\nexterminator, decides to enter the talent show at her expensive private\nschool, her nemesis MacKenzie threatens to reveal Nikki's status to the\nrest of the school.\"\r\n3706,3849,10138607,Craig Thompson,Habibi,https://images.gr-assets.com/books/1327899014l/10138607.jpg,4.04,27673,\"comics, fiction\",\"A graphic tale by the author of Blankets follows the relationship between\ntwo refugee child slaves who are thrown together by circumstance and who\nstruggle to make a place for themselves in a world fueled by fear and vice,\nin a visual parable that touches on themes of cultural divisions and the\nshared heritage of Christianity and Islam.\"\r\n3707,3850,11093329,Anthony Horowitz,The House of Silk,https://images.gr-assets.com/books/1327877129l/11093329.jpg,3.95,23541,\"mystery, fiction\",The House of SilkAnthony Horowitz\r\n3708,3851,33808,Nelson DeMille,The Lion's Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440720718l/33808._SY475_.jpg,4.17,23780,\"fiction, thriller\",\"Detective John Corey, last seen in Plum Island, now faces his toughest\nassignment yet: the pursuit and capture of the world's most dangerous\nterrorist -- a young Arab known as \"\"The Lion\"\" who has baffled a federal\ntask force and shows no sign of stopping in his quest for revenge against\nthe American pilots who bombed Libya and killed his family. Filled with\nunrelenting suspense and surprising plot twists at every terrifying turn,\nTHE LION'S GAME is a heartstopping race against time and one of Nelson\nDeMille's most riveting thrillers.\"\r\n3709,3852,9761778,Jennifer L. Armentrout,Deity,https://images.gr-assets.com/books/1323658176l/9761778.jpg,4.41,39069,\"fantasy, paranormal\",\"Targeted by a fanatical order that wants to prevent her Awakening on her\neighteenth birthday, Alexandra hides the truth to protect Aiden and finds\nher illicit encounters with Seth causing her to develop additional marks of\nthe Apollyon.\"\r\n3710,3854,6236809,\"Kanoko Sakurakouji, JN Productions, Pancha Diaz\",\"Black Bird, Volume 1\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348717424l/6236809.jpg,4.08,27196,\"manga, romance\",\"Black Bird, Volume 1Kanoko Sakurakouji, JN Productions, Pancha Diaz\"\r\n3711,3855,28678119,\"Erin Watt, Elle Kennedy, Jen Frederick\",Paper Princess,https://images.gr-assets.com/books/1476744953l/28678119.jpg,4.08,34831,\"romance, contemporary\",\"Paper PrincessErin Watt, Elle Kennedy, Jen Frederick\"\r\n3712,3856,37426,Tom Perrotta,Little Children,https://images.gr-assets.com/books/1327556734l/37426.jpg,3.61,24109,\"fiction, contemporary\",\"A group of young suburban parents, including a stay-at-home dad, a former\nfeminist, and an obssessive-compulsive mom, finds its sleepy existence\nshattered when a convicted child molester moves back into town and two of\nthe parents have an affair.\"\r\n3713,3857,99894,Ira Levin,The Boys from Brazil,https://images.gr-assets.com/books/1328882615l/99894.jpg,4.05,25448,\"fiction, thriller\",The Boys from BrazilIra Levin\r\n3714,3858,884288,Terry Pratchett,Interesting Times,https://images.gr-assets.com/books/1430881376l/884288.jpg,4.17,26733,\"fantasy, fiction\",\"A fantasy featuring the wizard Rincewind on a mission to an empire\nundergoing a cultural revolution reminiscent of the one in China. The\nnovel's title is a play on the Chinese curse, \"\"May you live in interesting\ntimes.\"\" By the author of Men at Arms.\"\r\n3715,3859,2003625,Kresley Cole,Dark Desires After Dusk,https://images.gr-assets.com/books/1327887013l/2003625.jpg,4.38,35300,\"paranormal, romance\",\"From #1 New York Times bestselling author Kresley Cole, an electrifying\nstandalone tale of a ruthless demon mercenary and the lovely young halfling\nwho enchants him, set in the Immortals After Dark universe. A seductive\nbeauty he can never have, yet can’t resist... Cadeon Woede will stop at\nnothing to atone for the one wrong that will haunt him forever. But once he\nsecures the key to his redemption, the halfling Holly Ashwin, Cade finds\nthat the woman he thought he could use for his own ends and then forget\nhaunts him as much as his past. A tormented warrior she should fear, but\ncan’t deny... Raised as a human, Holly never knew that some frightening\nlegends are real until she encounters a brutal demon who inexplicably\nguards her like a treasure. Thrust into a sensual new world of myth and\npower, with him as her protector, she begins to crave the demon’s wicked\ntouch. Surrender to dark desires... Yet just when he earns Holly’s trust,\nwill Cade be forced to betray the only woman who can sate his wildest\nneeds—and claim his heart?\"\r\n3716,3861,13330603,Chris Bohjalian,The Sandcastle Girls,https://images.gr-assets.com/books/1332018541l/13330603.jpg,3.86,26623,\"fiction, history\",\"Presents the parallel stories of a young woman who falls in love with an\nArmenian soldier while aiding victims of the Armenian genocide in the early\ntwentieth century, and a young woman who researches her Armenian heritage\nand discovers a terrible familysecret.\"\r\n3717,3862,7091713,\"Rachel Caine, Cynthia Holloway\",Kiss of Death,https://images.gr-assets.com/books/1270564957l/7091713.jpg,4.22,33464,\"paranormal, fantasy\",\"Kiss of DeathRachel Caine, Cynthia Holloway\"\r\n3718,3863,17828418,Laurelin Paige,Fixed on You,https://images.gr-assets.com/books/1368076802l/17828418.jpg,4.16,37797,\"romance, contemporary\",\"Stalking and restraining orders are a thing of Alayna Wither's past. With\nher MBA newly in hand, she has her future figured out--move up at the\nnightclub she works at and stay away from any guy who might trigger her\nobsessive love disorder. A perfect plan. But what Alayna didn't figure on\nis Hudson Pierce, the new owner of the nightclub. He's smart, rich, and\ngorgeous--the kind of guy Alayna knows to stay away from if she wants to\nkeep her past tendencies in check. Except, Hudson's fixed his sights on\nher. He wants her in his bed and makes no secret of it. Avoiding him isn't\nan option after he offers a business proposition she can't turn down and\nshe's drawn further into his universe, unable to resist his gravitational\npull. When she learns Hudson has a dark history of his own, she realizes\ntoo late that she's fallen for the worst man she could possibly get\ninvolved with. Or maybe their less than ideal pasts give them an\nopportunity to heal each other and finally find the love their lives have\nbeen missing.\"\r\n3719,3864,3173558,\"James Patterson, NaRae Lee\",\"Maximum Ride: The Manga, Vol. 1\",https://images.gr-assets.com/books/1299863638l/3173558.jpg,4.24,26254,\"manga, fiction\",\"Maximum Ride: The Manga, Vol. 1James Patterson, NaRae Lee\"\r\n3720,3865,12099007,\"Nora Roberts, MacLeod Andrews\",The Last Boyfriend,https://images.gr-assets.com/books/1334384607l/12099007.jpg,4.06,26861,\"romance, contemporary\",\"The Last BoyfriendNora Roberts, MacLeod Andrews\"\r\n3721,3866,10776592,\"Lene Kaaberbøl, Agnete Friis\",Drengen i kufferten,https://images.gr-assets.com/books/1320545877l/10776592.jpg,3.6,21666,\"mystery, fiction\",\"Protecting the young daughter of an illegal immigrant who has escaped\npolice custody in the aftermath of a brutal murder, Danish Red Cross nurse\nNina Borg struggles with a belief in the woman's innocence as she learns\nmore about her violent past.\"\r\n3722,3867,22571552,Jon Ronson,So You’ve Been Publicly Shamed,https://images.gr-assets.com/books/1413749614l/22571552.jpg,3.91,22484,\"nonfiction, psychology\",\"\"\"From the author of The Psychopath Test and Lost at Sea, an exploration of\nshame, one of our world's most overlooked forces. Public shaming as a form\nof social control, such a big part of our lives it feels weird when there\nisn't anyone to be furious about. Whole careers are being ruined by one\nmistake. Our collective outrage at it has the force of a hurricane. Then we\nall quickly forget about it and move on to the next one, and it doesn't\ncross our minds to wonder if the shamed person is okay or in ruins. What's\nit doing to them? An examination of human nature and its flaws\"\"--\nPublisher's website.\"\r\n3723,3868,81779,\"Plato, Christopher Gill\",Συμπόσιον,https://images.gr-assets.com/books/1359922039l/81779.jpg,4.01,22413,\"philosophy, classics\",Translated with an Introduction and Notes by Christopher Gill.\r\n3724,3869,11711,D.B.C. Pierre,Vernon God Little,https://images.gr-assets.com/books/1339082247l/11711.jpg,3.58,22284,\"fiction, contemporary\",Vernon God LittleD.B.C. Pierre\r\n3725,3870,76867,Michael Connelly,A Darkness More Than Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437930956l/76867._SY475_.jpg,4.12,25552,\"mystery, crime\",A Darkness More Than NightMichael Connelly\r\n3726,3871,80670,Judy Blume,Otherwise Known as Sheila the Great,https://images.gr-assets.com/books/1416181295l/80670.jpg,3.94,31847,\"fiction, classics\",\"Spending the summer in Tarrytown, New York, is a lot of fun for ten-year-\nold Sheila even though her friends make her face up to some self-truths she\ndoes not want to admit.\"\r\n3727,3872,58098,Ntozake Shange,For Colored Girls Who Have Considered Suicide When the Rainbow Is Enuf ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524175075l/58098._SY475_.jpg,4.27,24288,\"poetry, fiction\",\"A theatrical celebration, in verse and prose, of being female and Black\nincorporates the triumphs, joys, griefs, and losses of Black women in\nAmerica\"\r\n3728,3873,26236956,Nora Roberts,The Obsession,https://images.gr-assets.com/books/1444838367l/26236956.jpg,4.18,25318,\"romance, mystery\",The ObsessionNora Roberts\r\n3729,3874,30228,Laurell K. Hamilton,\"Micah (Anita Blake, Vampire Hunter, #13)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403105892l/30228.jpg,3.62,37410,\"paranormal, fantasy\",\"Micah (Anita Blake, Vampire Hunter, #13)Laurell K. Hamilton\"\r\n3730,3875,7060582,Chloe Neill,Twice Bitten ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441494976l/7060582._SY475_.jpg,4.23,38287,\"paranormal, fantasy\",\"Chicago's newest vampire, Merit, is assigned to protect the shape-shifters\nAlpha, Gabriel and Keene, as thousands of his brethren convene in the Windy\nCity, but finds herself in an assassin's line of fire as tensions rise\nbetween the supernaturals. Original.\"\r\n3731,3876,320167,Patricia Cornwell,The Last Precinct,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348336603l/320167.jpg,3.83,26250,\"mystery, fiction\",\"Attracting unwanted attentions when she is mandated to research the four-\nhundred-year-old murder of a Jamestown, Virginia, settler, Kay Scarpetta\nfinds enemies among those she is sworn to protect. Reprint.\"\r\n3732,3877,10047589,Jennifer Close,Girls in White Dresses,https://images.gr-assets.com/books/1320442277l/10047589.jpg,3.12,25167,\"fiction, contemporary\",\"Attending an endless series of bridal showers for their friend Kristi,\nthree bridesmaids struggle with private challenges, including Isabella's\nunhappiness at a job where she is nevertheless very successful, Mary's\nrelationship with a man who prioritizes his mother, and Lauren's attraction\nto a man she despises.\"\r\n3733,3878,92780,\"Stella Gibbons, Lynne Truss, Roz Chast\",Cold Comfort Farm,https://images.gr-assets.com/books/1416161594l/92780.jpg,3.92,28260,\"fiction, classics\",\"When a well-educated young socialite in 1930s England is left orphaned and\nunable to support herself at age twenty-two, she moves in with her\neccentric relatives on their farm. Reissue.\"\r\n3734,3879,12842134,Gayle Forman,Just One Year,https://images.gr-assets.com/books/1375129683l/12842134.jpg,3.9,31517,\"romance, contemporary\",\"\"\"After spending an amazing day and night with a nameless girl in Paris,\nWillem embarks on his own transformative journey to find her once again\"\"--\"\r\n3735,3880,17876897,Sylvia Day,One With You,https://images.gr-assets.com/books/1458742883l/17876897.jpg,4.04,29564,\"romance, fiction\",\"FROM #1 INTERNATIONAL BESTSELLING AUTHOR SYLVIA DAY The final chapter in\nthe global blockbuster Crossfire quintet Gideon Cross. Falling in love with\nhim was the easiest thing I’ve ever done. It happened instantly.\nCompletely. Irrevocably. Marrying him was a dream come true. Staying\nmarried to him is the fight of my life. Love transforms. Ours is both a\nrefuge from the storm and the most violent of tempests. Two damaged souls\nentwined as one. We have bared our deepest, ugliest secrets to one another.\nGideon is the mirror that reflects all my flaws ... and all the beauty I\ncouldn’t see. He has given me everything. Now, I must prove I can be the\nrock, the shelter for him that he is for me. Together, we could stand\nagainst those who work so viciously to come between us. But our greatest\nbattle may lie within the very vows that give us strength. Committing to\nlove was only the beginning. Fighting for it will either set us free ... or\nbreak us apart. Heartbreakingly and seductively poignant, One with You is\nthe breathlessly awaited finale to the Crossfire saga, the searing love\nstory that has captivated millions of readers worldwide.\"\r\n3736,3883,33458,Christopher Moore,The Lust Lizard of Melancholy Cove,https://images.gr-assets.com/books/1168444147l/33458.jpg,3.85,26312,\"fiction, fantasy\",\"The town psychiatrist has decided to switch everybody in Pine Cove,\nCalifornia, from their normal antidepressants to placebos, so\nnaturally—well, to be accurate, artificially—business is booming at the\nlocal blues bar. Trouble is, those lonely slide-guitar notes have also\nattracted a colossal sea beast named Steve with, shall we say, a thing for\nexplosive oil tanker trucks. Suddenly, morose Pine Cove turns libidinous\nand is hit by a mysterious crime wave, and a beleaguered constable has to\nfight off his own gonzo appetites to find out what's wrong and what, if\nanything, to do about it.\"\r\n3737,3884,154091,William Gibson,Mona Lisa Overdrive,https://images.gr-assets.com/books/1374778887l/154091.jpg,3.97,26410,\"fiction, science\",\"Living in the vast computer landscape of cyberspace, young Mona taps into\nthe mind of world-famous Sense/Net star Angie Mitchell who deciphers\ncyperspace plans, including those devised by Japanese underworld\"\r\n3738,3886,18553,Theodore Taylor,The Cay,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197101l/18553.jpg,3.74,25832,\"classics, fiction\",\"Follows the adventures, joys, and heartaches of a privileged and prejudiced\nDutch boy stranded on a remote tropical island with a kindly and wise West\nIndian, following an enemy attack on a boat leaving Curacao.\"\r\n3739,3888,3238153,Justina Chen,North of Beautiful,https://images.gr-assets.com/books/1479868327l/3238153.jpg,3.92,32034,\"romance, contemporary\",\"As he continued to stare, I wanted to point to my cheek and remind him, But\nyou were the one who wanted this, remember? You're the one who asked-and I\nrepeat-Why not fix your face? It's hard not to notice Terra Cooper. She's\ntall, blond, and has an enviable body. But with one turn of her cheek, all\npeople notice is her unmistakably \"\"flawed\"\" face. Terra secretly plans to\nleave her stifling small town in the Northwest and escape to an East Coast\ncollege, but gets pushed off-course by her controlling father. When an\nunexpected collision puts Terra directly in Jacob's path, the handsome but\nquirky Goth boy immediately challenges her assumptions about herself and\nher life, and she is forced in yet another direction. With her carefully\nlaid plans disrupted, will Terra be able to find her true path? Written in\nlively, artful prose, award-winning author Justina Chen Headley has woven\ntogether a powerful novel about a fractured family, falling in love,\ntravel, and the meaning of true beauty.\"\r\n3740,3889,77554,Carol Shields,The Stone Diaries,https://images.gr-assets.com/books/1285159303l/77554.jpg,3.84,27989,\"fiction, classics\",\"From her birth in rural Manitoba, to her journey with her father to\nsouthern Indiana, to her years as a wife, mother, and widow, to her old\nage, Daisy Stone Goodwill struggles to find a place for herself in her own\nlife.\"\r\n3741,3890,838917,Stormie Omartian,The Power of a Praying Woman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178808089l/838917._SX318_.jpg,4.38,10970,\"christian, nonfiction\",\"Omartian offers guidance on how to pray for oneself and for others. In this\nbook of faith and courage, she teaches women how to become closer to God\nthrough prayer.\"\r\n3742,3891,1087075,Beth Harbison,Shoe Addicts Anonymous ,https://images.gr-assets.com/books/1311992714l/1087075.jpg,3.57,24029,\"fiction, romance\",\"Four very different women who share a common shoe size and a lust for great\nfootwear--the wife of a rigid politician, a debt-ridden eBay addict, an\nagoraphobic phone sex operator, and a nanny for the family from hell--meet\nevery Tuesday night to trade shoes and form friendships that will help each\nof them triumph over their problems. 50,000 first printing.\"\r\n3743,3892,124509,\"Peter Høeg, Tiina Nunnally\",Frøken Smillas fornemmelse for sne,https://images.gr-assets.com/books/1485595488l/124509.jpg,3.73,25868,\"fiction, mystery\",\"Een vrouw twijfelt of haar 6-jarig buurjongetje wel echt van het dak is\ngevallen en begint een onderzoek dat haar voert naar een ijsgrot in\nGroenland.\"\r\n3744,3893,135611,Bill Bryson,Shakespeare: The World as Stage ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434075816l/135611._SX318_.jpg,3.79,25343,\"nonfiction, history\",\"William Shakespeare, the most celebrated poet in the English language, left\nbehind nearly a million words of text, but his biography has long been a\nthicket of wild supposition arranged around scant facts. With a steady hand\nand his trademark wit, Bill Bryson sorts through this colorful muddle to\nreveal the man himself. Bryson documents the efforts of earlier scholars,\nfrom today's most respected academics to eccentrics like Delia Bacon, an\nAmerican who developed a firm but unsubstantiated conviction that her\nnamesake, Francis Bacon, was the true author of Shakespeare's plays.\nEmulating the style of his famous travelogues, Bryson records episodes in\nhis research, including a visit to a bunkerlike room in Washington, D.C.,\nwhere the world's largest collection of First Folios is housed. Bryson\ncelebrates Shakespeare as a writer of unimaginable talent and enormous\ninventiveness, a coiner of phrases (\"\"vanish into thin air,\"\" \"\"foregone\nconclusion,\"\" \"\"one fell swoop\"\") that even today have common currency. His\nShakespeare is like no one else's—the beneficiary of Bryson's genial\nnature, his engaging skepticism, and a gift for storytelling unrivaled in\nour time.\"\r\n3745,3894,9282,Nicholas Evans,The Smoke Jumper,https://images.gr-assets.com/books/1403193693l/9282.jpg,4.05,25668,\"fiction, romance\",\"A woman must choose between two men, best friends, that both love her, in a\npoignant story of love, loyalty, honor, and guilt set against the perilous\nbackdrop of wilderness firefighting. By the author of The Horse Whisperer.\nReprint.\"\r\n3746,3895,4570768,Julia Hoban,Willow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428890977l/4570768.jpg,3.94,28342,\"romance, contemporary\",\"Sixteen-year-old Willow, who was driving the car that killed both of her\nparents, copes with the pain and guilt by cutting herself, until she meets\na smart and sensitive boy who is determined to help her stop.\"\r\n3747,3896,56073,Hillary Rodham Clinton,Living History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442705677l/56073._SY475_.jpg,3.75,23870,\"biography, nonfiction\",\"The author chronicles her eight years as First Lady of the United States,\nlooking back on her husband's two administrations, the challenges she faced\nduring the period, the impeachment crisis, and her own political work.\"\r\n3748,3897,106076,\"Jeph Loeb, Tim Sale\",Batman: Dark Victory,https://images.gr-assets.com/books/1327940341l/106076.jpg,4.11,22838,\"comics, mystery\",\"Batman: Dark VictoryJeph Loeb, Tim Sale\"\r\n3749,3898,7821828,Edmund de Waal,The Hare with Amber Eyes: A Family's Century of Art and Loss,https://images.gr-assets.com/books/1316730175l/7821828.jpg,3.85,21885,\"history, biography\",\"Traces the parallel stories of 19th-century art patron Charles Ephrussi and\nhis unique collection of 264 miniature netsuke Japanese ivory carvings,\ndocumenting Ephrussi's relationship with Marcel Proust and the impact of\nthe Holocaust on his cosmopolitan family. Reprint. 25,000 first printing.\"\r\n3750,3899,76664,Piers Anthony,A Spell for Chameleon,https://images.gr-assets.com/books/1476435403l/76664.jpg,3.93,29962,\"fantasy, fiction\",\"As the only person in Xanth without magic of any sort, Bink wanders in\nexile, searching for the magic powers that will allow him to return\"\r\n3751,3900,857501,\"Al Perkins, Eric Gurney\",\"Hand, Hand, Fingers, Thumb\",https://images.gr-assets.com/books/1397803649l/857501.jpg,4.22,24029,\"fiction, classics\",\"Easy-to-read rhyming text describes what can be done on a drum with hand,\nfingers, and thumb. On board pages.\"\r\n3752,3901,11861062,Lissa Price,Starters,https://images.gr-assets.com/books/1358435131l/11861062.jpg,3.91,32143,\"fantasy, romance\",\"In a world decimated by a viral outbreak where desperate teens rent their\nbodies to seniors who want to experience youth again, orphan Callie rents\nout her body only to discover that her renter is planning to commit a\nmurder.\"\r\n3753,3902,1611656,Kresley Cole,Dark Needs at Night's Edge,https://images.gr-assets.com/books/1357613946l/1611656.jpg,4.32,36250,\"paranormal, romance\",\"When lovely Nomi Renate was murdered, an evil force turned her into a\nspectre--a phantom that's neither fully alive nor dead. When Conrad Wroth,\na vampire warlord, first beholds Nomi, he will stop at nothing in order to\nclaim the ethereal beauty as his own. Original.\"\r\n3754,3903,38787,\"Juan Rulfo, Margaret Sayers Peden, Susan Sontag\",Pedro Páramo,https://images.gr-assets.com/books/1500663791l/38787.jpg,4.04,20450,\"fiction, classics\",\"Deserted villages of rural Mexico, where images and memories of the past\nlinger like unquiet ghosts, haunted the imaginations of the author. In one\nsuch village of the mind, Comala, he set his classic novel Pedro Páramo, a\ndream-like tale that intertwines a man's quest to find his lost father and\nreclaim his patrimony with the father's obsessive love for a woman who will\nnot be possessed, Susana San Juan.\"\r\n3755,3904,77391,L.M. Montgomery,Anne of Ingleside,https://images.gr-assets.com/books/1285712495l/77391.jpg,4.05,36641,\"classics, fiction\",\"Anne, now a joyful wife and mother, returns to visit the fishing village of\nAvonlea in this portrayal of family life on picturesque Prince Edward\nIsland\"\r\n3756,3905,1779929,Kelly Corrigan,The Middle Place,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347969743l/1779929.jpg,3.85,24282,\"memoir, nonfiction\",\"\"\"An amazing story told with steep honesty. The Middle Place is memoir at\nits highest form.\"\" --Darin Strauss, author of More Than It Hurts You and\nThe Real McCoy \"\"If you're in a book club or just love to read, make sure\nthis book ends up in your lap, where it will remain until you finish. Plan\nto laugh, cry, and be consumed by Kelly Corrigan.\"\" --Winston-Salem Journal\n\"\"Bravely reveals the frightened daughter inside the grown-up wife and\nmother.\"\" --Elle \"\"Come for the writing, stay for the drama. Or vice-versa.\nEither way, you won't regret it.\"\" --San Francisco Chronicle For Kelly\nCorrigan, family is everything. At thirty-six, she had a marriage that\nworked, two funny, active kids, and a weekly newspaper column. But even as\na thriving adult, Kelly still saw herself as the daughter of garrulous\nIrish-American charmer George Corrigan. She was living deep within what she\ncalls the Middle Place--\"\"that sliver of time when parenthood and childhood\noverlap\"\"--comfortably wedged between her adult duties and her parents'\ncare. But Kelly is abruptly shoved into coming-of-age when she finds a lump\nin her breast--and gets the diagnosis no one wants to hear. When George,\ntoo, learns that he has late-stage cancer, it is Kelly's turn to take care\nof the man who had always taken care of her--and to show us a woman who\nfinally takes the leap and grows up.\"\r\n3757,3906,43928,Harlan Coben,Deal Breaker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389110688l/43928.jpg,3.94,28921,\"mystery, fiction\",\"Sports agent Myron Bolitar rushes to find out the truth when the future of\nhis star client, rookie quarterback Christian Steele, is threatened by the\nreappearance of a former girlfriend everyone believed to be dead.\"\r\n3758,3907,34080,\"T.S. Eliot, Michael North\",The Waste Land,https://images.gr-assets.com/books/1327910597l/34080.jpg,4.11,29008,\"poetry, fiction\",\"The text of Eliot s 1922 masterpiece is accompanied by thorough explanatory\nannotations as well as by Eliot s own knotty notes, some of which require\nannotation themselves.\"\"\"\r\n3759,3908,22875451,\"Heather Cocks, Jessica  Morgan\",The Royal We,https://images.gr-assets.com/books/1421107274l/22875451.jpg,3.8,25312,\"romance, fiction\",\"The Royal WeHeather Cocks, Jessica  Morgan\"\r\n3760,3909,861326,Julia Quinn,The Viscount Who Loved Me,https://images.gr-assets.com/books/1379594308l/861326.jpg,4.19,35591,\"romance, fiction\",\"1814 promises to be another eventful season, but not, This Author believes,\nfor Anthony Bridgerton, London's most elusive bachelor, who has shown no\nindication that he plans to marry. And, in all truth, why should he? When\nit comes to playing the consummate rake, nobody does it better . . . —Lady\nWhistledown's Society Papers, April 1814 But this time the gossip\ncolumnists have it wrong. Anthony Bridgerton hasn't just decided to marry—\nhe's also chosen a wife! The only obstacle is his intended's older sister,\nKate Sheffield—the most meddlesome woman ever to grace a London ballroom.\nThe spirited schemer is driving Anthony mad with her determination to stop\nthe betrothal, but when he closes his eyes at night, Kate's the woman\nhaunting his increasingly erotic dreams . . . Contrary to popular belief,\nKate is quite sure that reformed rakes do not make the best husbands— and\nAnthony Bridgerton is the most wicked rogue of them all. Kate is determined\nto protect her sister—but she fears her own heart is vulnerable. And when\nAnthony's lips touch hers, she's suddenly afraid she might not be able to\nresist the reprehensible rake herself . . .\"\r\n3761,3910,9531,\"Dave Barry, Ridley Pearson, Greg Call\",Peter and the Shadow Thieves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441850204l/9531._SY475_.jpg,4.15,29555,\"fantasy, fiction\",\"In this riveting and adventure-packed follow-up to Peter and the\nStarcatchers, we discover Peter leaving the relative safety of Mollusk\nIsland—along with his trusted companion Tinker Bell—for the cold, damp\nstreets of London. On a difficult journey across the sea, he and Tink\ndiscover the dark and deadly, slithering part-man/part-creature Lord Ombra.\nIt seems that the dreaded Ombra has a variety of mysterious powers\nincluding the ability to make shadows disappear. When Peter reaches London,\nhe sets out to find the indomitable Molly. Together they must combat\nOmbra’s terrible forces to both protect the Starcatchers and the treasured\nstarstuff and most importantly to rescue Molly’s mother from the clutches\nof evil. Dave Barry and Ridley Pearson have done it again—written a\ncompulsively readable, impossible-to-put-down tale that will delight\nreaders of all ages.\"\r\n3762,3911,531989,Junot Díaz,Drown,https://images.gr-assets.com/books/1313700390l/531989.jpg,4.05,23295,\"fiction, contemporary\",\"A critically acclaimed debut collection of ten cynical and sentimental\nstories captures the bleakness of life, first in the Dominican Republic and\nthen in New Jersey suburbia, for immigrants of color. Reprint.\"\r\n3763,3913,28634,Milan Kundera,Nesmrtelnost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388507539l/28634.jpg,4.12,18574,\"fiction, philosophy\",NesmrtelnostMilan Kundera\r\n3764,3914,15793074,Jeffrey Archer,Best Kept Secret,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388637155l/15793074.jpg,3.94,18673,\"fiction, mystery\",\"International bestselling author Jeffrey Archer's mesmerizing saga of the\nClifton and Barrington families continues. London, 1945. Who shall inherit\nthe Barrington family fortune? The vote in the House of Lords has ended in\na tie. The Lord Chancellor's deciding vote will cast a long shadow on the\nlives of Harry Clifton and Giles Barrington. Harry returns to America to\npromote his latest novel while Emma goes in search of the little girl who\nwas found abandoned in her father's office on the night he was killed. When\nthe general election is called, Giles Barrington has to defend his seat in\nthe House of Commons and is horrified to discover who the Conservatives\nselect to stand against him. But it is Sebastian Clifton, Harry and Emma's\nson, who ultimately influences his uncle's fate. \"\"One of the top ten\nstorytellers in the world.\"\" —Los Angeles Times In 1957, Sebastian wins a\nscholarship to Cambridge, and a new generation of the Clifton family\nmarches onto the page. But after Sebastian is expelled from school, he\nunwittingly becomes caught up in an international art fraud involving a\nRodin statue that is worth far more than the sum it raises at auction. Does\nhe become a millionaire? Does he go to Cambridge? Is his life in danger?\nBest Kept Secret, the third volume in Archer's bestselling series, will\nanswer all these questions but, once again, pose so many more... \"\"[A] PAGE-\nTURNING, HEART-STOPPING SAGA.\"\" —Publishers Weekly on Sins of the Father\"\r\n3765,3915,910863,Robert Charles Wilson,Spin,https://images.gr-assets.com/books/1406383726l/910863.jpg,4.01,26015,\"fiction, ebooks\",\"After witnessing the onset of an astronomical event that has caused the sun\nto go black and the stars and moon to disappear, Tyler, Jason, and Diane\nlearn that the darkness has been caused by a time-altering, alien-created\nartificial barrier and that the sun will be extinguished in less than forty\nyears. Winner of the 2006 Hugo Award for Best Novel. Reissue.\"\r\n3766,3916,12083,Eugene O'Neill,Long Day's Journey Into Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252659l/12083.jpg,4.07,27215,\"classics, fiction\",\"A play about a family of four psychologically disturbed people reveals\naspects of the author's own life.\"\r\n3767,3917,74928,\"Kohta Hirano, Duane Johnson\",ヘルシング 1,https://images.gr-assets.com/books/1403205185l/74928.jpg,4.28,23895,\"manga, horror\",\"Chronicles the exploits of the secret Hellsing Organization, formed by the\nHellsing family to protect England and the Protestant church from vampires\nand other monsters, and its top operative, the vampire Alucard.\"\r\n3768,3918,228261,\"Tim LaHaye, Jerry B. Jenkins\",Soul Harvest: The World Takes Sides,https://images.gr-assets.com/books/1406513506l/228261.jpg,3.95,25675,\"fiction, christian\",\"The Tribulation Force, Rayford Steele and Buck Williams, struggle to\nsurvive and find members of their families after the global earthquake in\nthe twenty-first month of the Tribulation, as they contine their fight\nagainst the Antichrist.\"\r\n3769,3919,123106,Laurie Halse Anderson,Twisted,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347459741l/123106.jpg,3.83,29573,\"fiction, contemporary\",TwistedLaurie Halse Anderson\r\n3770,3920,4692,Noah Gordon,The Physician,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389582565l/4692.jpg,4.35,19310,\"fiction, history\",\"Read by millions in thirty-two countries, soon to be a major motion\npicture, and voted “one of the ten most-beloved books of all time,” here is\nthe English-language edition of Noah Gordon's masterworkIn eleventh-century\nLondon, a child holds the hand of his dying mother and is terrified, aware\nsomething is taking her. Orphaned and given to an itinerant barber-surgeon,\nRob Cole becomes a fast-talking swindler, peddling a worthless medicine.\nBut as he matures, his strange gift—an acute sensitivity to impending\ndeath—never leaves him, and he yearns to become a healer.Arab madrassas are\nthe only authentic medical schools, and he makes his perilous way to\nPersia. Christians are barred from Muslim schools, but claiming he is a\nJew, he studies under the world's most renowned physician, Avicenna. How\nthe woman who is his great love struggles against her only\nrival—medicine—makes a riveting modern classic. The Physician is the first\nbook in Noah Gordon's Dr. Robert Cole trilogy, which continues with Shaman\nand concludes with Matters of Choice.\"\r\n3771,3921,21337,\"Dean Koontz, Kevin J. Anderson, Scott Brick\",Dean Koontz's Frankenstein: Prodigal Son,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167321609l/21337._SX318_.jpg,4.01,25871,\"horror, thriller\",\"In a reworking of Mary Shelley's classic horror novel, Detective Carson\nO'Connor and her partner, Michael Maddison, are confronted by a serial\nkiller in search of victims that possess the humanity missing in himself.\"\r\n3772,3922,122125,\"Jane Yolen, Mark Teague\",How Do Dinosaurs Say Goodnight?,https://images.gr-assets.com/books/1278431558l/122125.jpg,4.13,27968,\"fiction, fantasy\",\"How Do Dinosaurs Say Goodnight?Jane Yolen, Mark Teague\"\r\n3773,3923,867247,\"Miyamoto Musashi, Victor Harris\",五輪書 [Go Rin no Sho],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440367630l/867247._SX318_.jpg,4.09,19246,\"philosophy, classics\",\"五輪書 [Go Rin no Sho]Miyamoto Musashi, Victor Harris\"\r\n3774,3924,281433,Dean Koontz,Ticktock,https://images.gr-assets.com/books/1310582919l/281433.jpg,3.71,25679,\"horror, fiction\",TicktockDean Koontz\r\n3775,3925,573201,Robert Ludlum,The Icarus Agenda,https://images.gr-assets.com/books/1403167832l/573201.jpg,3.93,24170,\"fiction, thriller\",\"When his part in the settlement of a hostage crisis is revealed,\ncongressman Evan Kendrick becomes the pawn of those who wish to make him\npresident and the target of terrorists seeking revenge\"\r\n3776,3926,7098304,Kresley Cole,Demon From the Dark ,https://images.gr-assets.com/books/1357611692l/7098304.jpg,4.47,34257,\"paranormal, romance\",\"From New York Times bestselling author Kresley Cole comes this scorching\ntale of a demon outcast poisoned with vampire blood and the vulnerable\nyoung witch he vows to protect—even from himself. A DANGEROUS DEMON SHE\nCAN’T RESIST . . . Malkom Slaine: tormented by his sordid past and racked\nby vampiric hungers, he’s pushed to the brink by the green-eyed beauty\nunder his guard. A MADDENING WITCH HE ACHES TO CLAIM . . . Carrow Graie:\nhiding her own sorrows, she lives only for the next party or prank. Until\nshe meets a tortured warrior worth saving. TRAPPED TOGETHER IN A SAVAGE\nPRISON . . . In order for Malkom and Carrow to survive, he must unleash\nboth the demon and vampire inside him. When Malkom becomes the nightmare\nhis own people feared, will he lose the woman he craves body and soul?\"\r\n3777,3927,18108281,J.R. Ward,The King,https://images.gr-assets.com/books/1371919011l/18108281.jpg,4.37,17398,\"paranormal, romance\",The KingJ.R. Ward\r\n3778,3928,21031,Irvin D. Yalom,When Nietzsche Wept: A Novel of Obsession,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388423612l/21031.jpg,4.25,18054,\"psychology, fiction\",When Nietzsche Wept: A Novel of ObsessionIrvin D. Yalom\r\n3779,3929,365990,Cormac McCarthy,The Crossing ,https://images.gr-assets.com/books/1327197531l/365990.jpg,4.11,21586,\"fiction, contemporary\",\"In the 1930s, Billy and his family come to Hidalgo County, New Mexico,\nwhere he becomes obsessed with a wild wolf that lives a precarious\nexistence threatened by the region's ranchers.\"\r\n3780,3930,19068,\"Aristotle, J.A.K. Thomson, Jonathan Barnes, Hugh Tredennick\",Ἠθικὰ Νικομάχεια ,https://images.gr-assets.com/books/1472992134l/19068.jpg,3.91,19380,\"philosophy, classics\",\"Previously published as Ethics, Aristotle's The Nicomachean Ethics\naddresses the question of how to live well, and originates the concept of\ncultivating a virtuous character as the basis of his ethical system. This\nPenguin Classics edition is translated from the Greek by J.A.K. Thomson\nwith revisions and notes by Hugh Tredennick, and an introduction and\nbibliography by Jonathan Barnes. 'One swallow does not make a summer;\nneither does one day. Similarly neither can one day, or a brief space of\ntime, make a man blessed and happy' In The Nicomachean Ethics, Aristotle\nsets out to examine the nature of happiness. He argues that happiness\nconsists in 'activity of the soul in accordance with virtue', for example\nwith moral virtues, such as courage, generosity and justice, and\nintellectual virtues, such as knowledge, wisdom and insight. The Ethics\nalso discusses the nature of practical reasoning, the value and the objects\nof pleasure, the different forms of friendship, and the relationship\nbetween individual virtue, society and the State. Aristotle's work has had\na profound and lasting influence on all subsequent Western thought about\nethical matters. Aristotle (384-22 BC) studied at the Academy of Plato for\n20 years and then established his own school and research institute, 'The\nLyceum'. His writings, which were of extraordinary range, profoundly\naffected the whole course of ancient and medieval philosophy and are still\neagerly studied and debated by philosophers today. If you enjoyed The\nNicomachean Ethics, you might like Plato's The Symposium, also available in\nPenguin Classics.\"\r\n3781,3932,29802,Bryan Lee O'Malley,\"Scott Pilgrim, Volume 3: Scott Pilgrim & The Infinite Sadness\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348130575l/29802.jpg,4.29,28569,\"comics, fiction\",\"The full-color, completely remastered, utterly astounding republication of\nthe SCOTT PILGRIM epic continues! This new 6\"\"x9\"\" hardcover presents Scott's\nrun-in with Ramona ex, Envy boy toy, and The Clash at Demon Head with\nbassist Todd Ingram as you've never seen it before—in full-color! Plus,\npreviously unpublished extras, hard-to-find short stories, and exclusive\nbonus materials will make you see Scott Pilgrim in a whole new light!\"\r\n3782,3933,14990,Mary Roach,Spook: Science Tackles the Afterlife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401287778l/14990.jpg,3.57,26306,\"science, nonfiction\",\"Draws on the achievements of scientists, engineers, and mediums to consider\nthe feasibility of life after death, from a reincarnation researcher's\nexperimentation with out-of-body experiences to laboratory investigations\ninto ghosts.\"\r\n3783,3934,171547,William Blake,Songs of Innocence and of Experience,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348408738l/171547.jpg,4.11,26608,\"poetry, classics\",\"Unabridged, full color value reproduction of Songs of Innocence and of\nExperience by William Blake. This classic poetry, written in 1789, was\noriginally hand colored on each page and is reproduced here in full color\nfor a visually rich experience. Songs includes his most famous poem, -Tiger\nTiger burning bright, In the forests of the night, - and many others.\nInteresting to read, and unique to Blake's poetry in this collection, are\nthat the poems of Innocence are often counter poised with the poems of\nExperience. This book of poetry is provided to the reader in a slim volume\nwith the full color plates and text at an affordable price.\"\r\n3784,3935,306364,Lisa Kleypas,Sugar Daddy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442765007l/306364._SY475_.jpg,4,31604,\"romance, contemporary\",Sugar DaddyLisa Kleypas\r\n3785,3936,900065,\"Stan Berenstain, Jan Berenstain\",The Berenstain Bears and the Messy Room,https://images.gr-assets.com/books/1344371748l/900065.jpg,4.16,27997,\"fiction, classics\",\"The entire Bear family becomes involved in an attempt to clean and organize\nthe cubs' messy room.\"\r\n3786,3937,349473,\"Richard Bachman, Stephen King\",Blaze,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442600647l/349473._SY475_.jpg,3.65,27673,\"horror, fiction\",\"BlazeRichard Bachman, Stephen King\"\r\n3787,3938,286507,David Eddings,Demon Lord of Karanda,https://images.gr-assets.com/books/1342528740l/286507.jpg,4.05,30618,\"fantasy, fiction\",\"The company must track down Zandramas, who has stolen Garion's baby son and\nplans to use him in a plot to make Dark Destiny rule supreme, but their\nquest to halt an evil prophecy is challenged at every turn\"\r\n3788,3939,2693801,\"H.W. Janson, Anthony F. Janson\",History of Art,https://images.gr-assets.com/books/1330064588l/2693801.jpg,3.8,22146,\"art, history\",\"This classic book uses an exceptional art program, featuring impeccable\naccurate five-color illustrations, to introduce readers to the vast world\nof painting, sculpture, architecture, photography, and the minor arts. With\nits effectively written, balanced, and interesting narrative, this book\npresents art as a succession of styles--from Prehistory through the 20th\ncentury--and enlarges the readers' capacity to appreciate works of art\nindividually. Written more than 40 years ago, this text has been constantly\nreworked to respond to the needs of this ever-changing field. A reference\nwork suitable for those employed in all art media, including painters,\nsculptors, photographers, and architects.\"\r\n3789,3940,7202831,Tess Gerritsen,Ice Cold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441916230l/7202831.jpg,4.14,24651,\"suspense, mystery\",\"Stranded with her traveling companions in an eerily deserted Wyoming\nvillage during a blizzard, Maura discovers that they are being watched and\npursues help when a party member is injured, an effort that turns\nnightmarish when she is abducted into the woods.\"\r\n3790,3941,68520,Bernard Cornwell,The Winter King,https://images.gr-assets.com/books/1311987677l/68520.jpg,4.27,23540,\"fantasy, fiction\",\"It takes a remarkable writer to make an old story as fresh and compelling\nas the first time we heard it. With The Winter King, the first volume of\nhis magnificent Warlord Chronicles, Bernard Cornwell finally turns to the\nstory he was born to write: the mythic saga of King Arthur. The tale begins\nin Dark Age Britain, a land where Arthur has been banished and Merlin has\ndisappeared, where a child-king sits unprotected on the throne, where\nreligion vies with magic for the souls of the people. It is to this\ndesperate land that Arthur returns, a man at once utterly human and truly\nheroic: a man of honor, loyalty, and amazing valor; a man who loves\nGuinevere more passionately than he should; a man whose life is at once\ntragic and triumphant. As Arthur fights to keep a flicker of civilization\nalive in a barbaric world, Bernard Cornwell makes a familiar tale into a\nlegend all over again.\"\r\n3791,3942,59969,Frank Miller,Sin City: A Dame to Kill For,https://images.gr-assets.com/books/1470924735l/59969.jpg,4.16,23170,\"comics, fiction\",\"Graphic novels offer a collection of intertwined stories stemming from\ncorruption, revenge, and the criminal underworld in a city so brutal it is\nknown as \"\"The Town Without Pity.\"\"\"\r\n3792,3943,544424,Simone Elkeles,Leaving Paradise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207436l/544424.jpg,4.02,37323,\"contemporary, romance\",\"Feeling like outsiders since Caleb Becker's drunken car accident left\nMaggie Armstrong a cripple, Caleb and Maggie end up finding comfort and\nstrength from a surprising source: each other. Original.\"\r\n3793,3944,475276,Yukiru Sugisaki,ディー・エヌ・エンジェル 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429639856l/475276.jpg,4.01,25247,\"manga, fantasy\",\"Daisuke turns into a phantom thief to win the heart of Risa. But how can\nshe fall in love with someone she can't see?\"\r\n3794,3945,226791,David Baldacci,Total Control,https://images.gr-assets.com/books/1344266875l/226791.jpg,4.06,24438,\"thriller, fiction\",\"When Sidney Archer's perfect life is shattered by the death of her husband,\nJason Archer, in a plane crash, she learns that her husband might still be\nalive and involved in a deadly and powerful game that could topple the\ngovernment. Reprint.\"\r\n3795,3946,6411016,Karl Marlantes,Matterhorn: A Novel of the Vietnam War,https://images.gr-assets.com/books/1431983015l/6411016.jpg,4.25,22525,\"fiction, history\",\"In the tradition of Norman Mailer's \"\"The Naked and the Dead\"\" and James\nJones's \"\"The Thin Red Line,\"\" Marlantes tells the powerful and compelling\nstory of a young Marine lieutenant, Waino Mellas, and his comrades in Bravo\nCompany, who are dropped into the mountain jungle of Vietnam as boys and\nforced to fight their way into manhood.\"\r\n3796,3947,2159225,\"Trenton Lee Stewart, Diana Sudyka\",The Mysterious Benedict Society and the Perilous Journey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442804083l/2159225._SY475_.jpg,4.19,31395,\"mystery, fiction\",\"The Mysterious Benedict Society is back with a new mission, significantly\ncloser to home. After reuniting for a celebratory scavenger hunt, Reynie,\nKate, Sticky, and Constance are forced to go on an unexpected search--a\nsearch to find Mr. Benedict. It seems that while he was preparing the kids'\nadventure, he stepped right into a trap orchestrated by his evil twin Mr.\nCurtain. With only one week to find a captured Mr. Benedict, the gifted\nfoursome faces their greatest challenge of all--a challenge that will\nreinforce the reasons they were brought together in the first place and\nwill require them to fight for the very namesake that united them.\"\r\n3797,3948,37526,\"William Shakespeare, Barbara A. Mowat, Paul Werstine\",The Cronicle History of Henry the fift,https://images.gr-assets.com/books/1331563646l/37526.jpg,3.87,29341,\"classics, fiction\",\"The Cronicle History of Henry the fiftWilliam Shakespeare, Barbara A. Mowat, Paul Werstine\"\r\n3798,3949,19083,Aristotle,Politics,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391135988l/19083.jpg,3.91,22128,\"philosophy, classics\",\"One of the fundamental works of Western political thought, Aristotle’s\nmasterwork is the first systematic treatise on the science of politics. For\nalmost three decades, Carnes Lord’s justly acclaimed translation has served\nas the standard English edition. Widely regarded as the most faithful to\nboth the original Greek and Aristotle’s distinctive style, it is also\nwritten in clear, contemporary English. This new edition of the Politics\nretains and adds to Lord’s already extensive notes, clarifying the flow of\nAristotle’s argument and identifying literary and historical references. A\nglossary defines key terms in Aristotle’s philosophical-political\nvocabulary. Lord has made revisions to problematic passages throughout the\ntranslation in order to enhance both its accuracy and its readability. He\nhas also substantially revised his introduction for the new edition,\npresenting an account of Aristotle’s life in relation to political events\nof his time; the character and history of his writings and of the Politics\nin particular; his overall conception of political science; and his impact\non subsequent political thought from antiquity to the present. Further\nenhancing this new edition is an up-to-date selected bibliography.\"\r\n3799,3950,522776,Jordan Belfort,The Wolf of Wall Street,https://images.gr-assets.com/books/1320489812l/522776.jpg,3.67,18289,\"biography, memoir\",The Wolf of Wall StreetJordan Belfort\r\n3800,3951,174834,Dietrich Bonhoeffer,Nachfolge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281510l/174834.jpg,4.35,23544,\"religion, spirituality\",NachfolgeDietrich Bonhoeffer\r\n3801,3952,29430012,Amor Towles,A Gentleman in Moscow,https://images.gr-assets.com/books/1459524472l/29430012.jpg,4.37,33394,\"fiction, history\",\"From the New York Times bestselling author of Rules of Civility, a novel\nabout a man who is ordered to spend the rest of his life inside a luxury\nhotel--a beautifully transporting novel. The mega-bestseller with more than\n2 million readers, soon to be a major television series \"\"Perhaps the\nultimate quarantine read . . . A Gentleman in Moscow is about the\nimportance of community; the distance of a kind act; and resilience. It's a\nmanual for getting through the days to come.\"\" --O, The Oprah Magazine In\n1922, Count Alexander Rostov is deemed an unrepentant aristocrat by a\nBolshevik tribunal, and is sentenced to house arrest in the Metropol, a\ngrand hotel across the street from the Kremlin. Rostov, an indomitable man\nof erudition and wit, has never worked a day in his life, and must now live\nin an attic room while some of the most tumultuous decades in Russian\nhistory are unfolding outside the hotel's doors. Unexpectedly, his reduced\ncircumstances provide him entry into a much larger world of emotional\ndiscovery. Brimming with humor, a glittering cast of characters, and one\nbeautifully rendered scene after another, this singular novel casts a spell\nas it relates the count's endeavor to gain a deeper understanding of what\nit means to be a man of purpose.\"\r\n3802,3953,6792458,Michelle Alexander,The New Jim Crow: Mass Incarceration in the Age of Colorblindness,https://images.gr-assets.com/books/1328751532l/6792458.jpg,4.49,23205,\"nonfiction, history\",\"Argues that the War on Drugs and policies that deny convicted felons equal\naccess to employment, housing, education and public benefits create a\npermanent under-caste based largely on race. Reprint. 12,500 first\nprinting.\"\r\n3803,3954,32585,\"Knut Hamsun, George Egerton\",Sult,https://images.gr-assets.com/books/1456243307l/32585.jpg,4.09,21394,\"classics, philosophy\",\"SultKnut Hamsun, George Egerton\"\r\n3804,3955,18465852,Cristina Henriquez,The Book of Unknown Americans,https://images.gr-assets.com/books/1413655729l/18465852.jpg,3.85,22461,\"fiction, contemporary\",The Book of Unknown AmericansCristina Henriquez\r\n3805,3957,64865,Sue Grafton,B is for Burglar,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789165l/64865.jpg,3.83,32733,\"mystery, fiction\",B is for BurglarSue Grafton\r\n3806,3958,3289281,Kate Atkinson,When Will There Be Good News?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441378919l/3289281._SY475_.jpg,3.97,25366,\"fiction, mystery\",When Will There Be Good News?Kate Atkinson\r\n3807,3959,3134981,\"Brian Azzarello, Lee Bermejo\",Joker,https://images.gr-assets.com/books/1334501983l/3134981.jpg,4.04,23033,\"comics, fiction\",\"\"\"Joker is getting out of the madhouse and, though he's laughing, he's not\nhappy. While away, his fellow rogues have sliced and diced his chunk of the\npie and sold it off for scrap-- thinking he was gone for good. But now\nJoker's back on the street and eager to make Gotham bleed like it's never\nbled before. During this long night of the soul, he'll cross paths with the\nlikes of The Penguin, Two-Face, Killer Croc, Harley Quinn, The Riddler and,\nof course, The Batman-- and heaven help them all\"\" -- dust jacket.\"\r\n3808,3960,359375,\"Sergei Lukyanenko, Andrew Bromfield\",Ночной дозор ,https://images.gr-assets.com/books/1351342315l/359375.jpg,3.97,25574,\"fantasy, fiction\",\"The \"\"Others,\"\" a mysterious ancient race of humans possessing supernatural\npowers, who swear allegiance to either the Dark or the Light, have long\nlived together in an uneasy truce, until the emergence of a young boy with\nextraordinary powers fulfills an ancient prophecy and threatens to plunge\nEarth into a catastrophic war between Dark and Light forces. Original.\n40,000 first printing.\"\r\n3809,3961,17402288,Jenny Offill,Dept. of Speculation,https://images.gr-assets.com/books/1367929545l/17402288.jpg,3.72,20253,\"fiction, contemporary\",\"An unflinching portrait of marriage features a heroine simply referred to\nas \"\"the Wife,\"\" who transitions from an idealistic woman who once exchanged\nlove letters with her husband and who confronts an array of universal\ndifficulties.\"\r\n3810,3962,22544024,Susan Meissner,Secrets of a Charmed Life,https://images.gr-assets.com/books/1403809486l/22544024.jpg,4.17,21375,\"fiction, contemporary\",\"An elderly Oxford woman reminisces about her childhood during World War II,\nduring which she was evacuated from London during the Blitz and was\nseparated from her sister. Includes reader's guide. By the author of A Fall\nof Marigolds. Original.\"\r\n3811,3963,85448,Pat Conroy,The Great Santini,https://images.gr-assets.com/books/1442599829l/85448.jpg,4.13,22921,\"fiction, contemporary\",\"Eighteen-year-old Ben's attempts to stand up for himself, his mother, and\nhis sister are resisted by his intolerant father, a fighter pilot and\ninflexible disciplinarian. Reprint.\"\r\n3812,3964,51606,Dalton Trumbo,Johnny Got His Gun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925458l/51606.jpg,4.16,24871,\"fiction, classics\",Johnny Got His GunDalton Trumbo\r\n3813,3965,32502,Michael Connelly,Angels Flight,https://images.gr-assets.com/books/1440615586l/32502.jpg,4.13,25469,\"mystery, fiction\",\"The New York Times bestseller that inspired the new season of hit original\ndrama series BOSCH \"\"A stunner, superbly paced.\"\" - Esquire An activist\nattorney is killed in a cute little L.A. trolley called Angels Flight, far\nfrom Harry Bosch's Hollywood turf. But the case is so explosive--and the\ndead man's enemies inside the L.A.P.D. are so numerous--that it falls to\nHarry to solve it. Now the streets are superheating. Harry's year-old Vegas\nmarriage is unraveling. And the hunt for a killer is leading Harry to\nanother high-profile L.A. murder case, one where every cop had a motive.\nThe question is, did any have the guts?\"\r\n3814,3966,4909,Frank McCourt,Teacher Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441149612l/4909._SY475_.jpg,3.73,23736,\"memoir, biography\",\"The author describes his coming of age as a teacher, storyteller, and\nwriter, a personal journey during which he spent fifteen years finding his\nvoice in the classroom, and came to terms with the undervalued importance\nof teaching.\"\r\n3815,3967,5489684,Ellen Schreiber,Vampire Kisses: The Beginning (Vampire Kisses Omnibus),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934678l/5489684._SY475_.jpg,4.12,25698,\"paranormal, fantasy\",\"A new guy in town. Rumors of vampires. Dangerous first love. This is where\nit all begins. . . . The mansion on top of Benson Hill has stood empty for\nyears. But one day it seems to be occupied, and its mysterious, handsome\ninhabitant Alexander Sterling becomes the source of much talk around town.\nRaven, a vampire-obsessed Goth-girl who has always considered herself an\noutsider in \"\"Dullsville,\"\" is determined to uncover the truth surrounding\nthe secretive Alexander. As she gets to know him, and their spark\nintensifies, Raven finds herself in some unanticipated situations. Can\nAlexander make her lifelong dream come true? But love always has its\ncomplications—especially when it can only be awakened at nightfall. The\nfirst three books in Ellen Schreiber's bestselling Vampire Kisses series\ncapture the thrill of a most unusual romance.\"\r\n3816,3968,9307674,Eoin Colfer,The Last Guardian,https://images.gr-assets.com/books/1330969364l/9307674.jpg,4.15,34459,\"fantasy, fiction\",The Last GuardianEoin Colfer\r\n3817,3969,414895,\"Pierre Boulle, Xan Fielding\",La planète des singes,https://images.gr-assets.com/books/1320558901l/414895.jpg,3.91,22742,\"fiction, classics\",\"Presents a satiric view of modern society in a portrait of a planet where\nhumans and apes have exchanged roles.\"\r\n3818,3970,7600922,Rachel Caine,Ghost Town,https://images.gr-assets.com/books/1268376325l/7600922.jpg,4.27,31362,\"paranormal, fantasy\",\"While developing a new system to maintain defenses in Morganville, Texas,\nClaire Danvers discovers a way to amplify vampire mental powers which has a\nside-effect of causing residents--both human and vampire--to forget who\nthey are.\"\r\n3819,3971,182496,Belva Plain,Evergreen,https://images.gr-assets.com/books/1392996056l/182496.jpg,3.98,23790,\"fiction, romance\",\"Reprint. Originally published: New York: Delacorte Press, c1978.\"\r\n3820,3972,356373,\"Henry T. Blackaby, Claude V. King, Richard Blackaby\",Experiencing God : Knowing and Doing His Will - Workbook,https://images.gr-assets.com/books/1293504214l/356373.jpg,4.32,21778,\"christian, religion\",\"A modern classic--revised with more than 70 percent new material--is based\non seven Scriptural realities that teach Christians how to develop a true\nrelationship with the Creator.\"\r\n3821,3973,592657,James Dickey,Deliverance,https://images.gr-assets.com/books/1334998332l/592657.jpg,3.86,24522,\"fiction, classics\",\"Four suburban businessmen take a canoe trip along a Georgia river, an\nodyssey that pits their courage against the river's raging rapids and the\nmost primitive human impulses of fear, lust, and murder\"\r\n3822,3974,28547,Anne McCaffrey,Dragonsinger,https://images.gr-assets.com/books/1410942014l/28547.jpg,4.26,31874,\"fantasy, fiction\",DragonsingerAnne McCaffrey\r\n3823,3975,13049981,Cynthia Hand,Boundless,https://images.gr-assets.com/books/1342208984l/13049981.jpg,4.15,36433,\"fantasy, paranormal\",BoundlessCynthia Hand\r\n3824,3976,29354916,John Grisham,The Whistler,https://images.gr-assets.com/books/1462900031l/29354916.jpg,3.87,34797,\"fiction, mystery\",\"\"\"Originally published in hardcover in the United States by Doubleday, a\ndivision of Penguin Random House LLC, in 2016\"\"--Title page verso.\"\r\n3825,3977,568454,\"Katsura Hoshino, Mayumi Kobayashi\",\"D.Gray-man, Volume 1\",https://images.gr-assets.com/books/1440124280l/568454.jpg,4.21,23910,\"manga, fantasy\",\"D.Gray-man, Volume 1Katsura Hoshino, Mayumi Kobayashi\"\r\n3826,3978,41810,Isaac Asimov,The Robots of Dawn,https://images.gr-assets.com/books/1351030933l/41810.jpg,4.13,26075,\"fiction, mystery\",\"Called to the Spacer world to solve a case of roboticide, New York City\ndetective Elijah Baley teams up with humanoid robot R. Daneel Olivaw to\nprove that the prime suspect, a renowned roboticist, is innocent of the\ncrime. Reprint.\"\r\n3827,3979,18431,\"Ian Caldwell, Dustin Thomason\",The Rule of Four,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389185899l/18431.jpg,3.22,22724,\"fiction, mystery\",\"Endeavoring to decipher a five-hundred-year old text that weaves a\nmathematical labyrinth within a love story, researchers Tom Sullivan and\nPaul Harris obtain a diary that may contain the key to the code, but when a\nfellow researcher is killed, they realize that the book contains a\ndangerous secret. 100,000 first printing.\"\r\n3828,3980,16718083,Jessica Sorensen,The Redemption of Callie & Kayden,https://images.gr-assets.com/books/1366785115l/16718083.jpg,4.11,38452,\"romance, contemporary\",The Redemption of Callie & KaydenJessica Sorensen\r\n3829,3982,32505,Michael Connelly,The Closers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262627l/32505.jpg,4.08,24688,\"mystery, fiction\",The ClosersMichael Connelly\r\n3830,3983,275000,Erin Hunter,Fire and Ice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924381l/275000.jpg,4.36,30745,\"fiction, fantasy\",\"Join the legion of fans who have made Erin Hunter’s Warriors series a #1\nnational bestseller—with new editions featuring a striking new look! More\nthrilling fantasy, fierce warrior cats, and epic adventures await in\nWarriors #2: Fire and Ice. Deep in the heart of the forest, four Clans of\nwarrior cats coexist in uneasy harmony—but uncertain times are upon them,\nand dangers threaten the precarious balance of the forest. Fireheart is a\nThunderClan warrior now, but his troubles are far from over. The cats of\nrival RiverClan grow restless, while WindClan is weak and faces threats\nfrom all sides. Now Fireheart faces not only imminent battle, but betrayal\nfrom within his own Clan. Supports the Common Core State Standards\"\r\n3831,3984,5509920,Gena Showalter,The Darkest Whisper,https://images.gr-assets.com/books/1351277969l/5509920.jpg,4.33,35144,\"paranormal, romance\",\"Sabin, who avoids intimate relationships because of a demon curse that\ncauses him to destroy his lovers, unwillingly falls in love with fellow\nimmortal Gwendolyn, and together they battle to claim the power of\nPandora's box.\"\r\n3832,3985,46190,Rob Sheffield,\"Love Is a Mix Tape: Life and Loss, One Song at a Time\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437483494l/46190._SY475_.jpg,3.83,21971,\"music, memoir\",\"In the 1990s, \"\"alternative\"\" was suddenly mainstream, and bands like Pearl\nJam and Pavement, Nirvana and R.E.M.--bands that a year before would have\nbeen too weird for MTV--were MTV. The boundaries of American culture were\nexploding, and music was leading the way. It was also the 1990s when a shy\nmusic geek named Rob Sheffield met a hell-raising Appalachian punk-rock\ngirl named Renée, who was way too cool for him but fell in love with him\nanyway. He was tall. She was short. He was shy. She was a social butterfly.\nThey had nothing in common except that they both loved music. Music brought\nthem together and kept them together. And it was music that would help Rob\nthrough a sudden, unfathomable loss. Here, Rob, now a writer for Rolling\nStone, uses the songs on fifteen mix tapes to tell the story of his brief\ntime with Renée.--From publisher description.\"\r\n3833,3986,14595,\"Legs McNeil, Gillian McCain\",Please Kill Me: The Uncensored Oral History of Punk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436668905l/14595._SY475_.jpg,4.16,20652,\"music, nonfiction\",\"\"\"With new photos and afterword by the authors\"\"--Cover.\"\r\n3834,3988,833549,Arnold Lobel,Frog and Toad All Year,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410742437l/833549.jpg,4.34,28930,\"fiction, classics\",\"Friends all year. In winter, spring, summer, and fall, Frog and Toad are\nalways together. Here is a wise and wonderful story for each seasonof the\nyear-and one for Christmas, too.\"\r\n3835,3989,68418,R.A. Salvatore,\"The Dark Elf Trilogy Collector's Edition (Forgotten Realms: Dark Elf Trilogy, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191945l/68418.jpg,4.33,20722,\"fantasy, fiction\",\"The Dark Elf Trilogy Collector's Edition (Forgotten Realms: Dark Elf Trilogy, #1-3)R.A. Salvatore\"\r\n3836,3990,30225,Laurell K. Hamilton,\"The Harlequin (Anita Blake, Vampire Hunter, #15)\",https://images.gr-assets.com/books/1257988532l/30225.jpg,3.9,35620,\"paranormal, fantasy\",\"When vampire hunter Anita Blake confronts The Harlequin, terrifying,\npowerful creatures feared even by the centuries-old vampires, rivals Jean-\nClaude, Master Vampire of the City, and Richard, the alpha werewolf, must\nbecome allies.\"\r\n3837,3991,237320,Sarah Weeks,So B. It,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925805l/237320.jpg,4.1,26658,\"fiction, contemporary\",\"You couldn′t really tell about Mama′s brain just from looking at her, but\nit was obvious as soon as she spoke. She had a high voice, like a little\ngirl′s, and she only knew 23 words. I know this for a fact, because we kept\na list of the things Mama said tacked to the inside of the kitchen cabinet.\nMost of the words were common ones, like good and more and hot, but there\nwas one word only my mother said: soof. Although she lives an\nunconventional lifestyle with her mentally disabled mother and their doting\nneighbour, Bernadette, Heidi has a lucky streak that has a way of pointing\nher in the right direction. When a mysterious word in her mother′s\nvocabulary begins to haunt her, Heidi′s thirst for the truth leads her on a\ncross-country journey in search of the secrets of her past.\"\r\n3838,3992,1675216,Margaret Peterson Haddix,Found,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437191875l/1675216._SY475_.jpg,3.97,30807,\"mystery, fantasy\",\"When thirteen-year-olds Jonah and Chip, who are both adopted, learn they\nwere discovered on a plane that appeared out of nowhere, full of babies\nwith no adults on board, they realize that they have uncovered a mystery\ninvolving time travel and two opposing forces, each trying to repair the\nfabric of time.\"\r\n3839,3994,682745,Jim Carroll,The Basketball Diaries 1963-1966,https://images.gr-assets.com/books/1493867556l/682745.jpg,3.98,23739,\"memoir, fiction\",\"The original classic story about growing up with drugs and sex and about\nlearning to survive on the streets of New York--once again in print. An\nurban classic of coming of age.\"\r\n3840,3995,59978,Frank Miller,Sin City: That Yellow Bastard,https://images.gr-assets.com/books/1471122291l/59978.jpg,4.22,22932,\"fiction, crime\",\"Frank Miller changes the game in the fourth volume of his signature crime\nseries, introducing the only truly heroic figure in Sin City's world of\nvice, Detective Hartigan. A highlight of the series, and the inspiration\nfor one of the segments of the blockbuster Sin City film, That Yellow\nBastard returns in a newly redesigned edition, with a brand-new cover by\nMiller-some of his first comics art in years! The worst thing to be in\nBasin City is an honest cop, but it's Hartigan's last day on the job, and\nhe plans to go out with a bang. Little Nancy Callahan, age eleven, has been\nkidnapped by a psycho who likes to hear children scream, and Hartigan's\ngoing to find her no matter what it takes. No matter who the psycho's daddy\nis. All the prison time in the world won't change that. Hell of a way to\nstart retirement . . . With a new look generating more excitement than ever\nbefore, this third edition is the perfect way to attract a whole new\ngeneration of readers to Frank Miller's masterpiece! * Over a million Sin\nCity books in print! * New cover by Frank Miller! * With Miller and\ncodirector Robert Rodriguez gearing up for Sin City 2, this third edition\nis being released at just the right time! * That Yellow Bastard was one of\nthe stories in the Sin City film, starring Bruce Willis as Hartigan and\nJessica Alba as Nancy!\"\r\n3841,3996,68458,Andrzej Sapkowski,Krew elfów,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227447452l/68458.jpg,4.23,11981,\"fantasy, fiction\",Krew elfówAndrzej Sapkowski\r\n3842,3997,6697,Rebecca Wells,Little Altars Everywhere,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428535264l/6697.jpg,3.55,25045,\"fiction, contemporary\",Little Altars EverywhereRebecca Wells\r\n3843,3998,82747,Marian Keyes,Angels,https://images.gr-assets.com/books/1407711412l/82747.jpg,3.73,25680,\"fiction, romance\",\"After catching her husband having an affair and being fired from her job,\nMaggie Walsh suddenly finds her perfectly organized existence has become a\nperfect mess. She decides, for the first time in her life, to do something\ndaring -- and flees to her best friend, Emily, in the faraway wonderland of\nLos Angeles. In this mecca of tanned, beautiful bodies, unsvelte, uncool\nMaggie is decidedly a fish out of water. Yet, overnight, she's mixing with\nfilm folk, pitching scripts, even experimenting with sex -- and discovering\nthat the end of a marriage is not the end of the world.\"\r\n3844,3999,8306745,Brandon Mull,A World Without Heroes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388338606l/8306745.jpg,4.07,27160,\"fantasy, fiction\",\"Fourteen-year-old Jason Walker is transported to a strange world called\nLyrian, where he joins Rachel, who was also drawn there from our world, and\na few rebels, to piece together the Word that can destroy the malicious\nwizard emperor, Surroth.\"\r\n3845,4000,5201089,John Flanagan,The Kings of Clonmel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227576494l/5201089.jpg,4.29,30299,\"fantasy, fiction\",\"Halt, Will, and Horace set out for Hibernia, where a quasi-religious group,\nthe Outsiders, is sowing confusion and sedition, and they find that secrets\nfrom Halt's past may hold the key to restoring order.\"\r\n3846,4001,25816688,Joe Hill,The Fireman,https://images.gr-assets.com/books/1469316385l/25816688.jpg,3.92,17052,\"horror, fiction\",The FiremanJoe Hill\r\n3847,4002,19346451,Pittacus Lore,The Revenge of Seven,https://images.gr-assets.com/books/1398024854l/19346451.jpg,4.28,26075,\"fantasy, fiction\",The Revenge of SevenPittacus Lore\r\n3848,4003,387749,Lew Wallace,Ben-Hur: A Tale of the Christ,https://images.gr-assets.com/books/1450180491l/387749.jpg,4.02,25280,\"classics, fiction\",\"Ben-Hur is one of the best selling books of all times. This poignant novel\nintertwines the life stories of a Jewish charioteer named Judah Ben-Hur and\nJesus Christ. It explores the themes of betrayal and redemption. Ben-Hur's\nfamily is wrongly accused and convicted of treason during the time of\nChrist. Ben-Hur fights to clear his family's name and is ultimately\ninspired by the rise of Jesus Christ and his message. A powerful,\ncompelling novel.\"\r\n3849,4004,9646,\"George Orwell, Lionel Trilling\",Homage to Catalonia,https://images.gr-assets.com/books/1394868278l/9646.jpg,4.14,22227,\"history, nonfiction\",\"Homage to CataloniaGeorge Orwell, Lionel Trilling\"\r\n3850,4005,251519,Lolly Winston,Good Grief,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441110752l/251519._SX318_.jpg,3.72,24273,\"fiction, romance\",Good GriefLolly Winston\r\n3851,4006,18635622,\"George R.R. Martin, Gary Gianni\",A Knight of the Seven Kingdoms,https://images.gr-assets.com/books/1423281810l/18635622.jpg,4.19,20009,\"fantasy, fiction\",\"A Knight of the Seven KingdomsGeorge R.R. Martin, Gary Gianni\"\r\n3852,4007,7747263,Melissa de la Cruz,Misguided Angel,https://images.gr-assets.com/books/1322343431l/7747263.jpg,3.93,33454,\"fantasy, paranormal\",\"After inheriting the dark Van Alen Legacy, Schuyler fled to Florence with\nher forbidden love, Jack. Now the two of them must embark on the mission\nSchuyler was destined to complete: to find and protect the five remaining\ngates that guard earth from Lucifer, lord of the Silver Bloods. Back in New\nYork, Mimi has been elected Regent of a crumbling coven. Struggling with\nher heartache over the loss of Kingsley and with her overwhelming desire to\ndestroy Jack, she must focus all of her energy on a perilous new threat.\nVampires are being abducted and their captors are planning to burn them\nalive online…for all the world to see. Help arrives in the form of Deming\nChen, a Venator from Shanghai, who must untangle the web of deceptions\nbefore the killers strike again. As the young vampires struggle for the\nsurvival of the coven, they uncover a deadly secret, a truth first\ndiscovered by Schuyler’s mother during the Renaissance but kept buried for\ncenturies. And as the Blue Blood enclave weakens yet further, fate leads\nSchuyler to a terrible choice that will ultimately map the destiny of her\nheart.\"\r\n3853,4008,16109563,Madeline Sheehan,Undeniable,https://images.gr-assets.com/books/1356218855l/16109563.jpg,4.08,38501,\"romance, contemporary\",\"Warning: This is not a typical, sappy love story. This is an all-consuming,\nsoul-crushing, tear-your-heart-into-pieces story. It's intense, gritty and\nraw, dark and disturbing, and it doesn't happen overnight. This is an epic\nlove story that knows no boundaries and has no time limits. It grows and\ndevelops—with hurt, sacrifice, and heartache—over the span of a lifetime.\nEva Fox is the princess of the Silver Demons Motorcycle Club. Growing up\nwith bikers in the club lifestyle is all that she knows. When she's a young\ngirl, Eva meets the reason for her existence. Deuce West is the sexy, biker\nbad-ass of the Hell's Horsemen Motorcycle Club. Like Eva, he was born and\nraised in the club—but that's where the similarities end. Their first\nmeeting is innocent, but as Eva matures into a woman, their chance reunions\nevolve into a fit of lust and love. Fate continues to bring them together\ntime and time again, but their twisted journey is filled with pain,\nbetrayal, and bloodshed that could tear them apart. Eva sees in Deuce what\nhe cannot see in himself—a man worthy of love—and Eva spends her lifetime\nproving to him that her undeniable love is the one thing he can't live\nwithout. This is Eva and Deuce's story. It wasn't easy. Nothing worth doing\never is.And love is worth everything\"\r\n3854,4009,6613,Candace Bushnell,Four Blondes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438538645l/6613._SY475_.jpg,2.8,22278,\"fiction, contemporary\",\"Four very different women endure romantic intrigues, betrayals, liaisons,\nand victories as they seek love amid the playgrounds of the rich and\npowerful.\"\r\n3855,4010,949709,Pam Adams,There Was an Old Lady Who Swallowed a Fly (Classic Board Books with Holes),https://images.gr-assets.com/books/1413746503l/949709.jpg,4.2,26360,\"poetry, fiction\",\"A new version of the well-loved poem about the old lady who swallowed a fly\nwith a die-cut hole to see what is in her stomach.\"\r\n3856,4011,28233082,Robert Bryndza,The Girl In The Ice,https://images.gr-assets.com/books/1450369120l/28233082.jpg,3.95,33739,\"mystery, thriller\",\"\"\"When a young boy discovers the body of a woman beneath a thick sheet of\nice in a South London park, Detective Erika Foster is called in to lead the\nmurder investigation. The victim, a beautiful young socialite, appeared to\nhave the perfect life. Yet when Erika begins to dig deeper, she starts to\nconnect the dots between the murder and the killings of three prostitutes,\nall found strangled, hands bound and dumped in water around London. What\ndark secrets is the girl in the ice hiding?\"\"--Back cover.\"\r\n3857,4012,1270615,\"Joss Whedon, Georges Jeanty\",The Long Way Home,https://images.gr-assets.com/books/1331332425l/1270615.jpg,3.96,26561,\"comics, fantasy\",\"Describes the adventures of Buffy after the events covered by the\ntelevision program, as she faces a mysterious threat called \"\"Twilight,\"\"\nwhile Giles and Faith deal with a rogue slayer.\"\r\n3858,4013,7324659,Anthony Bourdain,Medium Raw: A Bloody Valentine to the World of Food and the People Who Cook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348947719l/7324659.jpg,3.73,21973,\"nonfiction, memoir\",\"An instant New York Times bestseller and the follow-up to the mega-hit\nKitchen Confidential In the ten years since Anthony Bourdain's classic\nKitchen Confidential first alerted us to the idiosyncrasies and lurking\nperils of eating out, much has changed for the subculture of chefs and\ncooks, for the restaurant business–and for Anthony Bourdain. Medium Raw\ntracks Bourdain's unexpected voyage from journeyman cook to globe-traveling\nprofessional eater and drinker, and even to fatherhood, in a series of\ntakes-no-prisoners confessions, rants, investigations, and interrogations\nof some of the most controversial figures in food. Beginning with a secret,\nhighly illegal after-hours gathering of powerful chefs that he compares to\na mafia summit, Bourdain pulls back the curtain–but never pulls his\npunches–on the modern gastronomical revolution. Cutting right to the bone,\nBourdain sets his sights on some of the biggest names in the foodie world,\nincluding David Chang, the young superstar chef; the revered Alice Waters;\nthe Top Chef contestants; and many more. Medium Raw is the deliciously\nfunny, shockingly delectable result, sure to delight philistines and\ngourmands alike.\"\r\n3859,4014,3562,L.M. Montgomery,Emily of New Moon,https://images.gr-assets.com/books/1327883976l/3562.jpg,4.09,33317,\"classics, fiction\",Emily of New MoonL.M. Montgomery\r\n3860,4015,113205,\"Mikhail Bulgakov, Mirra Ginsburg, Mikhail Bulgakov\",Собачье сердце,https://images.gr-assets.com/books/1457906509l/113205.jpg,4.14,20086,\"classics, fiction\",\"Собачье сердцеMikhail Bulgakov, Mirra Ginsburg, Mikhail Bulgakov\"\r\n3861,4016,676737,John Gardner,Grendel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347871284l/676737.jpg,3.69,25787,\"fiction, fantasy\",\"The Beowulf story retold from the monster's point of view reveals the\ndarker side of human nature and values\"\r\n3862,4017,68528,Bernard Cornwell,The Pale Rider,https://images.gr-assets.com/books/1421710510l/68528.jpg,4.27,21686,\"fiction, history\",The Pale RiderBernard Cornwell\r\n3863,4018,64582,James Gleick,Chaos: Making a New Science,https://images.gr-assets.com/books/1327941595l/64582.jpg,3.98,21703,\"nonfiction, science\",\"Explains the meaning and application of chaos--the study of patterns\nemerging from seemingly random phenomena--and introduces the scientists\nresponsible for major discoveries in this field.\"\r\n3864,4019,16982,\"Kurt Busiek, Alex Ross\",Marvels,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1509276500l/16982._SY475_.jpg,4.21,21636,\"comics, fiction\",\"MarvelsKurt Busiek, Alex Ross\"\r\n3865,4020,13722902,Dave Eggers,A Hologram for the King,https://images.gr-assets.com/books/1337179987l/13722902.jpg,3.29,20094,\"fiction, contemporary\",A Hologram for the KingDave Eggers\r\n3866,4021,10959277,\"Jay Asher, Carolyn Mackler\",The Future of Us,https://images.gr-assets.com/books/1366214559l/10959277.jpg,3.58,32986,\"romance, fiction\",\"Receiving her first computer and an America Online CD-ROM in 1996, student\nEmma and her best friend, Josh, log on and discover themselves on Facebook,\n15 years in the future, and learn astonishing things about their adult\nselves. Co-written by the award-winning author of Tangled and the best-\nselling author of Thirteen Reasons Why.\"\r\n3867,4022,1713912,James Patterson,Cross Country,https://images.gr-assets.com/books/1344270626l/1713912.jpg,3.83,26068,\"mystery, fiction\",Cross CountryJames Patterson\r\n3868,4023,6538757,Kristen Ashley,Rock Chick,https://images.gr-assets.com/books/1266750153l/6538757.jpg,4.2,41292,\"romance, contemporary\",\"Indy Savage is a former wild child (okay, maybe not so \"\"former\"\") and\ncurrent used bookstore owner. Lee Nightingale is a former bad boy and now\nruns a private investigation service. Toss together a quiet barista with a\nnot-so-lawful side business, a crazy Vietnam Vet, a pothead, a drag queen,\nfamily and friends who will not mind their own business, a few stun guns\nand a bag of diamonds, and mix them all up with some shootings, a high\nspeed chase and car bombs exploding, then hang on for your first wild Rock\nChick ride.\"\r\n3869,4024,11366397,Suzanne Young,The Program,https://images.gr-assets.com/books/1344986164l/11366397.jpg,4.07,30517,\"romance, fiction\",The ProgramSuzanne Young\r\n3870,4026,45244,Peter F. Hamilton,Judas Unchained,https://images.gr-assets.com/books/1316501189l/45244.jpg,4.3,20850,\"fiction, fantasy\",Judas UnchainedPeter F. Hamilton\r\n3871,4027,7035,Alexander McCall Smith,Morality for Beautiful Girls,https://images.gr-assets.com/books/1379303019l/7035.jpg,3.97,29574,\"mystery, fiction\",\"Precious Ramotswe investigates two very different cases--the alleged\npoisoning of the brother of an important government official, and the moral\ncharacter of the finalists of the Miss Beauty and Integrity Contest.\"\r\n3872,4028,4570679,Jennifer Echols,Going Too Far,https://images.gr-assets.com/books/1276962788l/4570679.jpg,3.93,35071,\"romance, contemporary\",Going Too FarJennifer Echols\r\n3873,4029,16240761,Philipp Meyer,The Son,https://images.gr-assets.com/books/1355349098l/16240761.jpg,3.98,19821,\"fiction, history\",The SonPhilipp Meyer\r\n3874,4030,84132,Sherrilyn Kenyon,The Dream Hunter,https://images.gr-assets.com/books/1437696622l/84132.jpg,4.06,34888,\"paranormal, romance\",\"Arikos, an Dream-Hunter condemned by the gods to live forever without\nemotions and who can only experience feelings through the dreams of others,\nis given the chance to live two weeks as a mortal man, in exchange for\nacquiring a human soul, Dr. Megeara Kafieri, a woman determined to salvage\nher late father's reputation by finding the fabled island of Atlantis.\nOriginal.\"\r\n3875,4031,33455,\"Christopher Moore, Oliver Wyman\",Island of the Sequined Love Nun,https://images.gr-assets.com/books/1168444146l/33455.jpg,3.78,25166,\"fiction, fantasy\",\"Island of the Sequined Love NunChristopher Moore, Oliver Wyman\"\r\n3876,4032,26114135,Bryn Greenwood,All the Ugly and Wonderful Things,https://images.gr-assets.com/books/1500552983l/26114135.jpg,4.12,30089,\"fiction, contemporary\",\"A beautiful and provocative love story between two unlikely people and the\nhard-won relationship that elevates them above the Midwestern meth lab\nbackdrop of their lives. As the daughter of a drug dealer, Wavy knows not\nto trust people, not even her own parents. It's safer to keep her mouth\nshut and stay out of sight. Struggling to raise her little brother, Donal,\neight-year-old Wavy is the only responsible adult around. Obsessed with the\nconstellations, she finds peace in the starry night sky above the fields\nbehind her house, until one night her star gazing causes an accident. After\nwitnessing his motorcycle wreck, she forms an unusual friendship with one\nof her father's thugs, Kellen, a tattooed ex-con with a heart of gold. By\nthe time Wavy is a teenager, her relationship with Kellen is the only\ntender thing in a brutal world of addicts and debauchery. When tragedy rips\nWavy's family apart, a well-meaning aunt steps in, and what is beautiful to\nWavy looks ugly under the scrutiny of the outside world. A powerful novel\nyou won’t soon forget, Bryn Greenwood's All the Ugly and Wonderful Things\nchallenges all we know and believe about love.\"\r\n3877,4033,16101126,Sarah Dessen,The Moon and More,https://images.gr-assets.com/books/1426912781l/16101126.jpg,3.63,29896,\"contemporary, romance\",\"From a #1 \"\"New York Times\"\"-bestselling author comes the story of a life-\nchanging summer romance. During her last summer at home before leaving for\ncollege, Emaline begins a whirlwind romance with Theo, an assistant\ndocumentary filmmaker who is in town to make a movie.\"\r\n3878,4034,353,Robert A. Heinlein,Time Enough for Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1218664355l/353.jpg,3.96,25603,\"fiction, fantasy\",\"Time Enough for Love is the capstone and crowning achievement of Heinleins\nfamous Future History series.\"\r\n3879,4035,3895,\"Ina Garten, Melanie Acevedo\",The Barefoot Contessa Cookbook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195329l/3895.jpg,4.21,22497,\"cookbooks, nonfiction\",\"Presents a collection of recipes for appetizers, entrees, desserts, and\naccompaniments\"\r\n3880,4036,7800188,\"Kathy Reichs, Brendan Reichs\",Virals,https://images.gr-assets.com/books/1278653923l/7800188.jpg,3.94,30226,\"mystery, fiction\",\"The niece of famed forensic anthropologist Temperance Brennan, fourteen-\nyear-old Tory and her three friends are exposed to a rare strain of canine\nparvovirus that gives them special powers which they use to try to solve a\nmurder.\"\r\n3881,4037,12902549,\"Laura Schroff, Alex Tresniowski, Valerie Salembier\",\"An Invisible Thread: The True Story of an 11-Year-Old Panhandler, a Busy Sales Executive, and an Unlikely Meeting with Destiny\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328320486l/12902549.jpg,4,22781,\"memoir, nonfiction\",\"Presents the true story of a friendship that has spanned three decades,\nrecounting how the author, a harried sales executive, befriended an eleven-\nyear-old panhandler, changing both of their lives forever.\"\r\n3882,4039,6365221,Rhoda Janzen,Mennonite in a Little Black Dress: A Memoir of Going Home,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440941806l/6365221._SX318_.jpg,3.17,23096,\"memoir, nonfiction\",Mennonite in a Little Black Dress: A Memoir of Going HomeRhoda Janzen\r\n3883,4040,830791,David Baldacci,The Simple Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436530071l/830791._SY475_.jpg,4.03,23615,\"fiction, thriller\",\"When cop-turned-attorney John Fiske comes to Washington to investigate his\nbrother's murder, he unearths decades-old secrets and discovers the truth\nis anything but simple in this #1 New York Times bestselling thriller. It's\nnever what it seems... Young attorney Michael Fiske broke the law when he\ntook Rufus Harms's prison letter from the Supreme Court. But he also sealed\nhis own fate. Suddenly everyone who has anything to do with Harms or his\nappeal mysteriously dies. Now Michael's brother John, a cop turned\nattorney, comes to Washington to find out why his brother was murdered--and\nwhat it had to do with a crime that Harms committed twenty-five years\nbefore. But the one man who can help John, the one man who knows what\nreally happened more than two decades ago--and why--has escaped from prison\nand is running for his life.\"\r\n3884,4041,26891429,Justin Cronin,The City of Mirrors,https://images.gr-assets.com/books/1447866792l/26891429.jpg,4.2,16352,\"horror, fiction\",\"#1 NEW YORK TIMES BESTSELLER * \"\"A thrilling finale to a trilogy that will\nstand as one of the great achievements in American fantasy fiction.\"\"--\nStephen King You followed The Passage. You faced The Twelve. Now enter The\nCity of Mirrors for the final reckoning. As the bestselling epic races to\nits breathtaking finale, Justin Cronin's band of hardened survivors await\nthe second coming of unspeakable darkness. The world we knew is gone. What\nworld will rise in its place? The Twelve have been destroyed and the\nterrifying hundred-year reign of darkness that descended upon the world has\nended. The survivors are stepping outside their walls, determined to build\nsociety anew--and daring to dream of a hopeful future. But far from them,\nin a dead metropolis, he waits: Zero. The First. Father of the Twelve. The\nanguish that shattered his human life haunts him, and the hatred spawned by\nhis transformation burns bright. His fury will be quenched only when he\ndestroys Amy--humanity's only hope, the Girl from Nowhere who grew up to\nrise against him. One last time light and dark will clash, and at last Amy\nand her friends will know their fate. Praise for The City of Mirrors\n\"\"Compulsively readable.\"\"--The New York Times Book Review \"\"The City of\nMirrors is poetry. Thrilling in every way it has to be, but poetry just the\nsame . . . The writing is sumptuous, the language lovely, even when the\naction itself is dark and violent.\"\"--The Huffington Post \"\"This really is\nthe big event you've been waiting for . . . A true last stand that builds\nand comes with a bloody, roaring payoff you won't see coming, then builds\nagain to the big face off you've been waiting for.\"\"--NPR \"\"A masterpiece . .\n. with The City of Mirrors, the third volume in The Passage trilogy, Justin\nCronin puts paid to what may well be the finest post-apocalyptic epic in\nour dystopian-glutted times. A stunning achievement by virtually every\nmeasure.\"\"--The National Post \"\"Justin Cronin's Passage trilogy is remarkable\nfor the unremitting drive of its narrative, for the breathtaking sweep of\nits imagined future, and for the clear lucidity of its language.\"\"--Stephen\nKing \"\"Superb . . . This conclusion to bestseller Cronin's apocalyptic\nthriller trilogy ends with all of the heartbreak, joy, and unexpected\ntwists of fate that events in The Passage and The Twelve foreordained.\"\"--\nPublishers Weekly (starred review) \"\"Readers who have been patiently\nawaiting the conclusion to Cronin's sweeping postapocalyptic trilogy are\nrichly rewarded with this epic, heart-wrenching novel. . . . Not only does\nthis title bring the series to a thrilling and satisfying conclusion, but\nit also exhibits Cronin's moving exploration of love as both a destructive\nforce and an elemental need, elevating this work among its dystopian\npeers.\"\"--Library Journal (starred review) Praise for Justin Cronin \"\"One of\nthose rare authors who work on two different levels, blending elegantly\ncrafted literary fiction with cliff-hanging thrills.\"\"--Fort Worth Star-\nTelegram\"\r\n3885,4042,91249,Beverly Cleary,Ramona Forever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470149l/91249.jpg,4.05,26685,\"fiction, classics\",Ramona ForeverBeverly Cleary\r\n3886,4043,5508,\"Ruud van der Rol, Rian Verhoeven, Anna Quindlen, Anne Frank, Tony Langham, Plym Peters\",Anne Frank: Beyond the Diary - A Photographic Remembrance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345168l/5508.jpg,4.25,22725,\"history, biography\",\"More than one hundred photographs, many never before published, make up a\npoignant memoir of Anne Frank's struggle to survive during a time that must\nnever be forgotten. Reprint.\"\r\n3887,4044,395962,Jacqueline Carey,Kushiel's Chosen,https://images.gr-assets.com/books/1395020871l/395962.jpg,4.31,28621,\"fantasy, romance\",\"Following hard on the heels of Kushiel's Dart, Jacqueline Carey's\nspectacular debut novel, comes Kushiel's Chosen, the second in the\nglittering and riveting Kushiel's Legacy Trilogy. Phèdre nó Delaunay has\nsurvived much in her short life; she is an anguissette, a courtly spy, and\nthe keeper of a nation's secrets. She has saved a kingdom, kept her people\nfrom a barbaric invasion, and thwarted Melisande Shahrizai, a ruthless,\nMachiavellian villainess. But her gods are not yet finished with Phèdre,\nfor while the young queen who sits upon the throne is well loved by the\npeople, there are those who believe other heads should wear the crown-\nMelisande was able to escape the royal guard, and is not done scheming for\npower and revenge. To save all she holds dear, Phèdre will travel from the\nsun-drenched villas of La Serenissima to the wilds of old Hellas, and will\ndiscover a plot so dreadful as to make the earth tremble . . .\"\r\n3888,4045,22874559,Chetan Bhagat,Half Girlfriend,https://images.gr-assets.com/books/1407223058l/22874559.jpg,3.16,22082,\"romance, fiction\",Half GirlfriendChetan Bhagat\r\n3889,4046,233691,Gary Larson,The Far Side Gallery 3,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254730l/233691.jpg,4.45,24199,\"comics, fiction\",\"1988 FarWorks, Inc. All Rights Reserved. The Far Side and the Larson\nsignature are registered trademarks of FarWorks, Inc.\"\r\n3890,4047,52397,Octavia E. Butler,\"Parable of the Sower (Earthseed, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442169447l/52397._SY475_.jpg,4.14,25577,\"fiction, fantasy\",\"This highly acclaimed post-apocalyptic novel of hope and terror from award-\nwinning author Octavia E. Butler \"\"pairs well with 1984 or The Handmaid's\nTale\"\" (John Green, New York Times)--now with a new foreword by N. K.\nJemisin. When global climate change and economic crises lead to social\nchaos in the early 2020s, California becomes full of dangers, from\npervasive water shortage to masses of vagabonds who will do anything to\nlive to see another day. Fifteen-year-old Lauren Olamina lives inside a\ngated community with her preacher father, family, and neighbors, sheltered\nfrom the surrounding anarchy. In a society where any vulnerability is a\nrisk, she suffers from hyperempathy, a debilitating sensitivity to others'\nemotions. Precocious and clear-eyed, Lauren must make her voice heard in\norder to protect her loved ones from the imminent disasters her small\ncommunity stubbornly ignores. But what begins as a fight for survival soon\nleads to something much more: the birth of a new faith . . . and a\nstartling vision of human destiny.\"\r\n3891,4048,11872242,\"James Patterson, Maxine Paetro\",11th hour,https://images.gr-assets.com/books/1328409443l/11872242.jpg,4.02,22697,\"mystery, fiction\",\"11th hourJames Patterson, Maxine Paetro\"\r\n3892,4049,13151129,\"Orson Scott Card, Aaron Johnston\",\"Earth Unaware (The First Formic War, #1) \",https://images.gr-assets.com/books/1327948408l/13151129.jpg,3.91,27961,\"fiction, fantasy\",\"Struggling with outdated systems and claim-jumping corporate interests in\nthe deeps of the Kuiper Belt, a family on board the mining ship El Cavador\nspots an object moving toward the solar system that triggers a catastrophic\nwar.\"\r\n3893,4050,687278,Pema Chödrön,When Things Fall Apart: Heart Advice for Difficult Times,https://images.gr-assets.com/books/1320553046l/687278.jpg,4.29,20761,\"spirituality, nonfiction\",\"Describes a traditional Buddhist approach to suffering and how embracing\nthe painful situation and using communication, negative habits, and painful\nemotions leads to emotional growth and happiness.\"\r\n3894,4051,9999107,Daisy Goodwin,My Last Duchess,https://images.gr-assets.com/books/1307342832l/9999107.jpg,3.41,23992,\"fiction, romance\",My Last DuchessDaisy Goodwin\r\n3895,4052,659612,V.C. Andrews,Seeds of Yesterday,https://images.gr-assets.com/books/1321685100l/659612.jpg,3.81,27307,\"fiction, horror\",Seeds of YesterdayV.C. Andrews\r\n3896,4053,140131,\"Al Dempster, Milt Banta, Golden Books, Walt Disney Company\",Three Little Pigs (Little Golden Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191633l/140131.jpg,4.19,25466,\"fiction, classics\",Big Bad Wolf tries a variety of tricks to catch three little pigs.\r\n3897,4054,60431,Andy Goldsworthy,Andy Goldsworthy: A Collaboration with Nature,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197300l/60431.jpg,3.95,20745,\"art, nonfiction\",\"Using a seemingly endless range of natural materials, Goldsworthy creates\nsculpture in the open that manifests a sympathetic contact with the natural\nworld. 120 full-color photographs.\"\r\n3898,4055,608287,Denis Johnson,Jesus' Son: Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387705452l/608287.jpg,4.15,20120,\"fiction, contemporary\",\"Eleven stories narrated by a young recovering alcoholic, whose dependency\nhas led him to crime, cruelty, and loss in the Midwest, depict the\ndisparity of emotions that constitute the American experience.\"\r\n3899,4056,13573622,Vince Flynn,The Last Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431210893l/13573622.jpg,4.34,21240,\"thriller, fiction\",\"When a CIA black ops master with ties to disreputable figures in the\nIslamic Republic goes missing, Mitch Rapp is ordered to track down the\nmissing man at all costs and finds himself enmeshed in a dangerous plot\ninvolving the interests of numerous countries. Reprint. 850,000 first\nprinting.\"\r\n3900,4057,9503,Amy Tan,Saving Fish from Drowning: A Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388209360l/9503.jpg,3.41,24579,\"fiction, contemporary\",\"On an ill-fated art expedition, eleven Americans find themselves deep in\nthe Burmese jungle, where they encounter a tribe awaiting a leader and the\nmystical book of wisdom that will protect them from the Myanmar military\nregime.\"\r\n3901,4058,13547381,Lisa Genova,Love Anthony,https://images.gr-assets.com/books/1339757265l/13547381.jpg,3.94,22838,\"fiction, contemporary\",Love AnthonyLisa Genova\r\n3902,4059,641604,Seth Godin,Purple Cow: Transform Your Business by Being Remarkable,https://images.gr-assets.com/books/1309203098l/641604.jpg,3.78,25230,\"business, nonfiction\",Purple Cow: Transform Your Business by Being RemarkableSeth Godin\r\n3903,4060,16131489,Rick Yancey,The Last Star,https://images.gr-assets.com/books/1444237685l/16131489.jpg,3.64,30324,\"fiction, fantasy\",The Last StarRick Yancey\r\n3904,4061,744615,\"Bryan Lee O'Malley, Steve Buccellato\",\"Scott Pilgrim, Volume 4: Scott Pilgrim Gets It Together\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348203290l/744615.jpg,4.32,27532,\"comics, fiction\",\"Scott still has to deal with four of his new girlfriend's seven evil ex-\nboyfriends who want to kill him, and to make matters worse, his girlfriend\nnow wants him to get a job.\"\r\n3905,4062,426825,Leon Uris,QB VII,https://images.gr-assets.com/books/1359742726l/426825.jpg,4.17,24396,\"fiction, history\",\"Depicts the courtroom battle which ensues when an American novelist libels\na distinguished British physician\"\r\n3906,4063,24876258,Jim Butcher,The Aeronaut's Windlass ,https://images.gr-assets.com/books/1425415066l/24876258.jpg,4.18,20845,\"fantasy, fiction\",\"Since time immemorial, the Spires have sheltered humanity, towering for\nmiles over the mist-shrouded surface of the world. Within their halls,\naristocratic houses have ruled for generations, developing scientific\nmarvels, fostering trade alliances, and building fleets of airships to keep\nthe peace. Captain Grimm commands the merchant ship, Predator. Fiercely\nloyal to Spire Albion, he has taken their side in the cold war with Spire\nAurora, disrupting the enemy's shipping lines by attacking their cargo\nvessels. But when the Predator is severely damaged in combat, leaving\ncaptain and crew grounded, Grimm is offered a proposition from the\nSpirearch of Albion -- to join a team of agents on a vital mission in\nexchange for fully restoring Predator to its fighting glory. And even as\nGrimm undertakes this dangerous task, he will learn that the conflict\nbetween the Spires is merely a premonition of things to come. Humanity's\nancient enemy, silent for more than ten thousand years, has begun to stir\nonce more. And death will follow in its wake.\"\r\n3907,4064,23529,\"Alan Moore, Eddie Campbell, Pete Mullins\",From Hell,https://images.gr-assets.com/books/1327894621l/23529.jpg,4.16,23971,\"comics, horror\",\"From HellAlan Moore, Eddie Campbell, Pete Mullins\"\r\n3908,4065,86321,Nora Roberts,Black Rose,https://images.gr-assets.com/books/1298119100l/86321.jpg,4.03,29058,\"romance, paranormal\",\"Roz, a wealthy and independent woman who believes that love is behind her,\nis stunned when unexpected romance comes into her life, in the second\nvolume in a new trilogy that began with Blue Dahlia about three women who\nencounter one another at major crossroads in their lives. Original.\"\r\n3909,4066,65910,Lisa Gardner,The Perfect Husband,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388630844l/65910.jpg,4.01,26578,\"mystery, suspense\",\"Presents the suspenseful, nerve-shattering story of a woman who puts her\nhusband behind bars for the murders of ten women, only to become his\nintended next target when he escapes, and is forced to learn to fight back\nto save her own life. Original.\"\r\n3910,4067,113310,Katherine Neville,The Eight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263286l/113310.jpg,3.92,22928,\"fiction, mystery\",The EightKatherine Neville\r\n3911,4068,1499952,Jean Webster,Daddy-Long-Legs       ,https://images.gr-assets.com/books/1339593021l/1499952.jpg,4.09,20889,\"classics, fiction\",\"Orphaned Judy Abbot relates her college adventures in letters to the\nmysterious benefactor that she calls Daddy-Long-Legs.\"\r\n3912,4069,161887,Edith Pattou,East,https://images.gr-assets.com/books/1277997811l/161887.jpg,4.14,30596,\"fantasy, romance\",EastEdith Pattou\r\n3913,4070,127584,Anne McCaffrey,Dragonquest,https://images.gr-assets.com/books/1307994633l/127584.jpg,4.09,31971,\"fantasy, fiction\",\"On Pern, men breed and train great fire-breathing dragons to help them\nfight the deadly silver Threads that fall from the sky, destroying all\nlife-forms, whenever the Red Star passes near. Reissue.\"\r\n3914,4071,357636,\"Sigmund Freud, James Strachey, Peter Gay\",Das Unbehagen in der Kultur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438544596l/357636._SY475_.jpg,3.76,21447,\"philosophy, nonfiction\",\"During the summer of 1929, Freud worked on what became this seminal volume\nof twentieth-century thought.\"\r\n3915,4072,12394068,James Bowen,A Street Cat Named Bob: How One Man and His Cat Found Hope on the Streets,https://images.gr-assets.com/books/1331779332l/12394068.jpg,3.96,17971,\"biography, nonfiction\",\"When James Bowen found an injured, ginger street cat curled up in the\nhallway of his sheltered accommodation, he had no idea just how much his\nlife was about to change. James was living hand to mouth on the streets of\nLondon and the last thing he needed was a pet. Yet James couldn't resist\nhelping the strikingly intelligent tom cat, whom he quickly christened Bob.\nHe slowly nursed Bob back to health and then sent the cat on his way,\nimagining he would never see him again. But Bob had other ideas. Soon the\ntwo were inseparable and their diverse, comic and occasionally dangerous\nadventures would transform both their lives, slowly healing the scars of\neach other's troubled pasts. A Street Cat Named Bob is a moving and\nuplifting story that will touch the heart of anyone who reads it.\"\r\n3916,4073,17411703,J. Kenner,Complete Me,https://images.gr-assets.com/books/1363420378l/17411703.jpg,4.23,32212,\"romance, contemporary\",\"In this third and final installment of the erotic trilogy, billionaire\nDamien Stark sets his sights on Nikki Fairchild, a headstrong Southern\nbelle who will only say yes to him on her own terms, which leads to a\ndangerous obsession. Original.\"\r\n3917,4074,19288321,Robin Hobb,Fool's Assassin,https://images.gr-assets.com/books/1393886110l/19288321.jpg,4.35,15601,\"fiction, fantasy\",Fool's AssassinRobin Hobb\r\n3918,4075,31979,\"Joss Whedon, John Cassaday\",\"Astonishing X-Men, Volume 1: Gifted\",https://images.gr-assets.com/books/1500464817l/31979.jpg,4.17,22373,\"comics, fiction\",\"Cyclops and Emma Frost want to reunite the X-Men in order to astonish the\nworld, but as the demand for a \"\"mutant cure\"\" escalates, they find some\nunexpected allies and adversaries.\"\r\n3919,4076,5152561,Melissa Marr,Fragile Eternity,https://images.gr-assets.com/books/1327813714l/5152561.jpg,3.83,37303,\"paranormal, romance\",\"In the third mesmerizing tale in Melissa Marr’s #1 New York Times\nbestselling Wicked Lovely series, old friends become new enemies—and one\nwrong move could plunge the Earth into chaos. Seth never expected he would\nwant to settle down with anyone, but that was before Aislinn. She is\neverything he'd ever dreamed of, and he wants to be with her forever.\nForever takes on new meaning, though, when your girlfriend is an immortal\nfaery queen. Aislinn never expected to rule the very creatures who'd always\nterrified her, but that was before Keenan. He stole her mortality to make\nher a monarch, and now she faces challenges and enticements beyond any\nshe'd ever imagined. Seth and Aislinn struggle to stay true to themselves\nand each other—all while navigating the shadowy rules and shifting\nallegiances of the Faery Courts.\"\r\n3920,4077,11227041,Kristen Ashley,The Gamble,https://images.gr-assets.com/books/1327890208l/11227041.jpg,4.29,42242,\"romance, contemporary\",The GambleKristen Ashley\r\n3921,4078,32628,Clive Barker,The Great and Secret Show,https://images.gr-assets.com/books/1407710558l/32628.jpg,4.05,23328,\"horror, fantasy\",The Great and Secret ShowClive Barker\r\n3922,4079,29,Bill Bryson,The Mother Tongue: English and How It Got That Way,https://images.gr-assets.com/books/1388209925l/29.jpg,3.95,24133,\"nonfiction, history\",\"With dazzling wit and astonishing insight, Bill Bryson--the acclaimed\nauthor of The Lost Continent--brilliantly explores the remarkable history,\neccentricities, resilience and sheer fun of the English language. From the\nfirst descent of the larynx into the throat (why you can talk but your dog\ncan't), to the fine lost art of swearing, Bryson tells the fascinating,\noften uproarious story of an inadequate, second-rate tongue of peasants\nthat developed into one of the world's largest growth industries.\"\r\n3923,4080,1918305,Eric    Weiner,The Geography of Bliss: One Grump's Search for the Happiest Places in the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347304179l/1918305.jpg,3.83,23023,\"travel, nonfiction\",The Geography of Bliss: One Grump's Search for the Happiest Places in the WorldEric    Weiner\r\n3924,4082,25564665,Elle Kennedy,The Mistake,https://images.gr-assets.com/books/1447598937l/25564665.jpg,4.15,37148,\"romance, sports\",The MistakeElle Kennedy\r\n3925,4083,73089,Susan Elizabeth Phillips,Match Me If You Can,https://images.gr-assets.com/books/1327154923l/73089.jpg,4.13,33805,\"romance, contemporary\",\"You met star quarterback Kevin Tucker in This Heart of Mine. Now get ready\nto meet his shark of an agent, Heath Champion, and Annabelle Granger, the\ngirl least likely to succeed. Annabelle's endured dead-end jobs, a broken\nengagement . . . even her hair's a mess! But that's going to change now\nthat she's taken over her late grandmother's matchmaking business. All\nAnnabelle has to do is land the Windy City's hottest bachelor as her\nclient, and she'll be the most sought-after matchmaker in town. Why does\nthe wealthy, driven, and gorgeous sports agent Heath Champion need a\nmatchmaker, especially a red-haired screw-up like Annabelle Granger? True,\nshe's entertaining, and she does have a certain quirky appeal. But Heath is\nsearching for the ultimate symbol of success -- the perfect wife. And to\nmake an extraordinary match, he needs an extraordinary matchmaker, right?\nSoon everyone in Chicago has a stake in the outcome, and a very big\nquestion: When the determined matchmaker promised she'd do anything to keep\nher star client happy . . . did she mean anything? If Annabelle isn't\ncareful, she just might find herself going heart-to-heart with the toughest\nnegotiator in town.\"\r\n3926,4084,59830,Nora Roberts,\"Heaven and Earth (Three Sisters Island, #2)\",https://images.gr-assets.com/books/1345222134l/59830.jpg,4.13,28103,\"romance, paranormal\",\"Heaven and Earth (Three Sisters Island, #2)Nora Roberts\"\r\n3927,4085,32430,Dean Koontz,The Bad Place,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388294158l/32430.jpg,3.86,26848,\"horror, fiction\",\"After repeatedly waking up in strange places and not knowing how he arrived\nthere, Frank Pollard enlists the help of Nick and Julie Dakota, a husband-\nand-wife detective team, to watch where he goes in his sleep. Reissue.\"\r\n3928,4086,17204568,Tracy Brogan,Crazy Little Thing,https://images.gr-assets.com/books/1361951139l/17204568.jpg,3.8,23854,\"romance, contemporary\",\"Trying to move on from her divorce, Sadie Turner and her children take a\nsummer vacation at her aunt's lake house where she is unprepared for\nromance when she meets the sexy new neighbor Desmond.\"\r\n3929,4087,187812,Meg Cabot,Avalon High,https://images.gr-assets.com/books/1172542154l/187812.jpg,3.8,37402,\"fantasy, romance\",\"This New York Times bestselling hit from Meg Cabot mixes the wit of the\nPrincess Diaries with a supernatural twist on the Arthurian legend. Ellie’s\nthrilled to meet Will, the star football player whose popularity at her new\nschool is almost legendary. Yet as she gets to know Will better, Ellie\nstarts to uncover some strange things about him. And the school. And even\nherself. Ellie doesn’t think much of déjà vu, but she just can’t shake the\nhaunting feeling that, somehow, this has all happened before… A long-ago\nlegend comes to new life in this tale of a love triangle, a medieval sword,\nand a totally awesome pool raft in this stand-alone novel from the New York\nTimes bestselling author of The Princess Diaries.\"\r\n3930,4088,3609763,Stephenie Meyer,The Twilight Saga: The Official Guide,https://images.gr-assets.com/books/1344265906l/3609763.jpg,4.23,24065,\"fantasy, paranormal\",\"Fans of the #1 New York Times bestselling Twilight Saga will treasure this\ndefinitive official guide -- now a deluxe paperback edition with French\nflaps! This must-have guide is the definitive encyclopedic reference to the\nTwilight Saga and provides readers with everything they need to further\nexplore the unforgettable world Stephenie Meyer created in Twilight, New\nMoon, Eclipse, Breaking Dawn, and The Short Second Life of Bree Tanner.\nThis comprehensive handbook -- essential for every Twilight Saga fan -- is\nfull-color throughout, with nearly 100 gorgeous illustrations and\nphotographs, and with exclusive new material, character profiles,\ngenealogical charts, maps, extensive cross-references, an in-depth\nconversation with author Shannon Hale and much more.\"\r\n3931,4089,297135,Kristin Hannah,Summer Island,https://images.gr-assets.com/books/1320540976l/297135.jpg,3.97,22598,\"fiction, romance\",Summer IslandKristin Hannah\r\n3932,4090,64023,Richard J. Foster,Celebration of Discipline: The Path to Spiritual Growth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440657038l/64023._SX318_.jpg,4.18,23026,\"spirituality, religion\",Celebration of Discipline: The Path to Spiritual GrowthRichard J. Foster\r\n3933,4091,517188,Muriel Spark,The Prime of Miss Jean Brodie ,https://images.gr-assets.com/books/1379598918l/517188.jpg,3.76,26538,\"fiction, classics\",\"At the staid Marcia Blaine School for Girls, in Edinburgh, Scotland,\nteacher extraordinaire Miss Jean Brodie is unmistakably, and outspokenly,\nin her prime. She is passionate in the application of her unorthodox\nteaching methods, in her attraction to the married art master, Teddy Lloyd,\nin her affair with the bachelor music master, Gordon Lowther, and—most\nimportant—in her dedication to \"\"her girls,\"\" the students she selects to be\nher crème de la crème. Fanatically devoted, each member of the Brodie\nset—Eunice, Jenny, Mary, Monica, Rose, and Sandy—is \"\"famous for something,\"\"\nand Miss Brodie strives to bring out the best in each one. Determined to\ninstill in them independence, passion, and ambition, Miss Brodie advises\nher girls, \"\"Safety does not come first. Goodness, Truth, and Beauty come\nfirst. Follow me.\"\" And they do. But one of them will betray her.\"\r\n3934,4092,138202,Megan McCafferty,\"Sloppy Firsts (Jessica Darling, #1)\",https://images.gr-assets.com/books/1320531275l/138202.jpg,3.94,31757,\"fiction, contemporary\",\"Sloppy Firsts (Jessica Darling, #1)Megan McCafferty\"\r\n3935,4093,13477676,Matthew Quick,\"Forgive Me, Leonard Peacock\",https://images.gr-assets.com/books/1370282544l/13477676.jpg,3.93,27647,\"contemporary, fiction\",\"Forgive Me, Leonard PeacockMatthew Quick\"\r\n3936,4094,39963,Richard Peck,A Long Way From Chicago,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195985l/39963.jpg,3.92,27642,\"fiction, classics\",\"A boy recounts his annual summer trips to rural Illinois with his sister\nduring the Great Depression to visit their larger-than-life grandmother.\"\r\n3937,4095,5575,James Patterson,Virgin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436538932l/5575._SY475_.jpg,3.87,25426,\"mystery, fiction\",\"The Blessed Virgin's deliverance of a prophecy to a peasant girl in Fatima\nin 1914 is followed years later by signs and omens including worldwide\ndroughts and famines that signify its imminent fulfillment\"\r\n3938,4096,514313,Ben Mezrich,Bringing Down the House: The Inside Story of Six M.I.T. Students Who Took Vegas for Millions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348387571l/514313.jpg,3.87,16455,\"nonfiction, biography\",\"Recounts the story of how a notorious gang of MIT blackjack savants devised\nand received backing for a system for winning at the world's most\nsophisticated casinos, an endeavor that earned them more than three million\ndollars. Reprint. 100,000 first printing.\"\r\n3939,4097,18465566,\"Mariko Tamaki, Jillian Tamaki\",This One Summer,https://images.gr-assets.com/books/1456895195l/18465566.jpg,3.67,29592,\"comics, fiction\",\"The team behind Skim presents the sumptuous graphic tale of a young teen\nwhose latest summer at a beach lake house is overshadowed by her parents'\nconstant arguments, her younger friend's secret sorrows and the dangerous\nactivities of older teens. Simultaneous.\"\r\n3940,4098,13184572,Jennifer Weiner,The Next Best Thing,https://images.gr-assets.com/books/1334300363l/13184572.jpg,3.46,24098,\"fiction, romance\",The Next Best ThingJennifer Weiner\r\n3941,4099,1883838,Nikki Sixx,The Heroin Diaries: A Year in the Life of a Shattered Rock Star,https://images.gr-assets.com/books/1408936840l/1883838.jpg,4.12,20531,\"music, biography\",The Heroin Diaries: A Year in the Life of a Shattered Rock StarNikki Sixx\r\n3942,4100,4957350,Paul Harding,Tinkers,https://images.gr-assets.com/books/1364258693l/4957350.jpg,3.37,21665,\"fiction, contemporary\",\"On his deathbed, surrounded by his family, George Washington Crosby's\nthoughts drift back to his childhood and the father who abandoned him when\nhe was twelve.\"\r\n3943,4101,15568,Terry Brooks,The Druid of Shannara,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390260857l/15568.jpg,4,24815,\"fantasy, fiction\",\"The evil Shadowen have seized control of the Four Lands, and Walker Bok,\none of the scions of Shannara, must retrieve the Elfstone from the Stone\nKing\"\r\n3944,4102,22843341,Penelope Ward,Stepbrother Dearest,https://images.gr-assets.com/books/1407407844l/22843341.jpg,4.14,34347,\"romance, contemporary\",Stepbrother DearestPenelope Ward\r\n3945,4103,14376,Alan Lightman,Einstein's Dreams,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925066l/14376.jpg,4.08,21241,\"fiction, science\",\"Young Albert Einstein's dreams are imagined in a book that joins science\nand art to ponder such questions as the viscosity and flexibility of time.\nReissue.\"\r\n3946,4104,5695,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",Бесы,https://images.gr-assets.com/books/1386958613l/5695.jpg,4.26,20615,\"philosophy, fiction\",\"Originally completed in 1872, this novel offers a politically prophetic\nstudy of a nation in turmoil and the anti-czarist liberal reformers who\nthreaten the soul of the Russian nation\"\r\n3947,4105,84144,Sherrilyn Kenyon,Seize the Night,https://images.gr-assets.com/books/1348418164l/84144.jpg,4.36,29053,\"paranormal, romance\",\"An immortal renegade Dark-Hunter, Valerius Magnus struggles with his\nattraction to Tabitha Deveraux, the sister-in-law of the Dark-Hunter's\nmortal enemy and a young woman stalked by a dark power.\"\r\n3948,4108,85987,\"Isabel Allende, Margaret Sayers Peden\",Retrato en sepia,https://images.gr-assets.com/books/1379900929l/85987.jpg,3.93,21649,\"fiction, romance\",\"'Portrait in Sepia' is both a historical novel set at the end of the 19th\ncentury in Chile and a family saga peopled by characters from Daughter of\nFortune and The House of the Spirits, two of Allende's most celebrated\nnovels.\"\r\n3949,4109,18301124,Amy Harmon,Making Faces,https://images.gr-assets.com/books/1378983590l/18301124.jpg,4.36,25941,\"romance, contemporary\",\"Ambrose Young was beautiful. The kind of beautiful that graced the covers\nof romance novels, and Fern Taylor would know. She'd been reading them\nsince she was thirteen. But maybe because he was so beautiful he was never\nsomeone Fern thought she could have . . . until he wasn't beautiful\nanymore. \"\"Making Faces\"\" is the story of a small town where five young men\ngo off to war, and only one comes back. It is the story of loss. Collective\nloss, individual loss, loss of beauty, loss of life, loss of identity. It\nis the tale of one girl's love for a broken boy, and a wounded warrior's\nlove for an unremarkable girl. This is a story of friendship that overcomes\nheartache, heroism that defies the common definitions, and a modern tale of\n\"\"Beauty and the Beast,\"\" where we discover that there is a little beauty and\na little beast in all of us.\"\"\"\r\n3950,4110,288644,Vikas Swarup,Q & A: Slumdog Millionaire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1225937144l/288644.jpg,3.98,13986,\"fiction, contemporary\",\"\"\"Eighteen-year-old Ram Mohammed Thomas is in prison after answering twelve\nquestions correctly on a TV quiz show to win one billion rupees. The\nproducers have arrested him, convinced that he has cheated his way to\nvictory. Twelve extraordinary events in street-kid Ram's life - how he was\nfound in a dustbin by a priest; came to have three names; fooled a\nprofessional hitman; even fell in love - give him the crucial answes. In\nhis warm-hearted tale lies all the comedy, tragedy, joy and pathos of\nmodern India.\"\"\"\r\n3951,4112,789344,Donald J. Sobol,\"Encyclopedia Brown, Boy Detective (Encyclopedia Brown, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298650085l/789344.jpg,4.03,30283,\"mystery, fiction\",\"Fifth-grader \"\"Encyclopedia\"\" Leroy Brown solves ten mysteries and, by\nputting the solutions at the back of the book, challenges the reader to do\nthe same.\"\r\n3952,4113,138685,C.J. Sansom,Dissolution,https://images.gr-assets.com/books/1329914905l/138685.jpg,4.08,22863,\"mystery, fiction\",\"Having worked to establish laws that protect the interests of the crown in\n1537, Thomas Cromwell, Henry VIII's feared vicar-general, enlists fellow\nreformer and lawyer Matthew Shardlake and his young protégé to investigate\na commissioner's murder, which may be tied to an impending rebellion.\nReprint.\"\r\n3953,4114,890143,Lisi Harrison,\"The Clique (The Clique, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347819098l/890143.jpg,3.6,27783,\"contemporary, fiction\",\"The Clique (The Clique, #1)Lisi Harrison\"\r\n3954,4115,17910054,Elizabeth Kolbert,The Sixth Extinction: An Unnatural History,https://images.gr-assets.com/books/1372677697l/17910054.jpg,4.09,21113,\"science, nonfiction\",\"Draws on the work of geologists, botanists, marine biologists, and other\nresearchers to discuss the five devastating mass extinctions on Earth and\npredicts the coming of a sixth.\"\r\n3955,4116,13325079,Ben Fountain,Billy Lynn's Long Halftime Walk,https://images.gr-assets.com/books/1336052759l/13325079.jpg,3.81,20778,\"fiction, contemporary\",Billy Lynn's Long Halftime WalkBen Fountain\r\n3956,4117,99315,Daniel H. Pink,A Whole New Mind: Why Right-Brainers Will Rule the Future,https://images.gr-assets.com/books/1309284710l/99315.jpg,3.95,20852,\"business, psychology\",\"Uses the two sides of the human brain as a metaphor for understanding how\nthe information age came about throughout the course of the past\ngeneration, counseling readers on how to survive and find a place in a\nsociety that is marked by rising affluence, job outsourcing, and computer\ntechnology at the expense of inventiveness, empathy, and meaning. Reprint.\"\r\n3957,4118,77160,Lian Hearn,Across the Nightingale Floor ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438630231l/77160._SY475_.jpg,4.06,23597,\"fantasy, fiction\",\"In a novel set in a land much like feudal Japan, a young boy named Takeo\nbecomes a pawn in the ceaseless battles between rival warlord clans in a\nculture ruled by codes of honor and formal rituals.\"\r\n3958,4119,2094,\"Stephen Hawking, Leonard Mlodinow\",A Briefer History of Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924782l/2094.jpg,4.19,19838,\"nonfiction, science\",\"A shorter, more accessible edition of a now-classic survey of the origin\nand nature of the universe features new full-color illustrations and an\nexpanded, easier to understand treatment of the volume's more important\ntheoretical concepts.\"\r\n3959,4120,117047,Richard Dawkins,The Blind Watchmaker: Why the Evidence of Evolution Reveals a Universe Without Design,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553577503l/117047._SY475_.jpg,4.08,21141,\"science, nonfiction\",The Blind Watchmaker: Why the Evidence of Evolution Reveals a Universe Without DesignRichard Dawkins\r\n3960,4121,59822,Nora Roberts,\"Face the Fire (Three Sisters Island, #3)\",https://images.gr-assets.com/books/1330175555l/59822.jpg,4.15,27206,\"romance, paranormal\",\"The final book in the New England-set trilogy that began with Dance Upon\nthe Air and Heaven and Earth.\"\r\n3961,4122,17834834,Ronald H. Balson,Once We Were Brothers,https://images.gr-assets.com/books/1376835596l/17834834.jpg,4.28,13856,\"fiction, history\",Once We Were BrothersRonald H. Balson\r\n3962,4123,27401883,\"Emily Bleeker, Dan John Miller\",When I'm Gone,https://images.gr-assets.com/books/1465938298l/27401883.jpg,3.94,33348,\"fiction, romance\",\"When I'm GoneEmily Bleeker, Dan John Miller\"\r\n3963,4124,16435,Dean Koontz,Life Expectancy,https://images.gr-assets.com/books/1308458308l/16435.jpg,3.98,24584,\"horror, fiction\",\"A dying man's clairvoyant prophesies about his grandson, Jimmy Tock, reveal\nfive terrifying and horrific events, occuring on five different days at\ndifferent periods in his life, that will turn the young man's world upside\ndown. 600,000 first printing.\"\r\n3964,4125,2866413,Cinda Williams Chima,The Dragon Heir,https://images.gr-assets.com/books/1304657191l/2866413.jpg,4.14,28845,\"fantasy, fiction\",\"Maddie Moss is blackmailed into stealing the Dragonheart from Jason Haley,\nwho seems powerless against the oncoming onslaught but whose connection to\nthe Dragonheart may prove that he is destined for a great purpose.\"\r\n3965,4126,7171876,Ellen Hopkins,\"Fallout (Crank, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432084125l/7171876._SX318_.jpg,4.29,25592,\"poetry, fiction\",\"Written in free verse, explores how three teenagers try to cope with the\nconsequences of their mother's addiction to crystal meth and its effects on\ntheir lives.\"\r\n3966,4127,123598,Patricia Cornwell,Black Notice,https://images.gr-assets.com/books/1388461944l/123598.jpg,3.85,27472,\"mystery, fiction\",\"The discovery of the decomposed body of a stowaway aboard a cargo ship\nleads Chief Medical Examiner Kay Scarpetta on a perilous international\nodyssey on a mission that could destroy her career and threatens her life\nand the lives of everyone she loves.\"\r\n3967,4128,28449257,Emma Donoghue,The Wonder,https://images.gr-assets.com/books/1463229441l/28449257.jpg,3.65,26981,\"fiction, mystery\",The WonderEmma Donoghue\r\n3968,4129,111218,Alison Weir, Innocent Traitor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388228144l/111218.jpg,3.94,24976,\"fiction, history\",\"A fictional portrait of Lady Jane Grey, the great-niece of Henry VIII,\nfollows her turbulent life against the backdrop of Tudor power politics and\nreligious upheaval, from her youth, to her nine-day reign as Queen of\nEngland, to its tragic aftermath.\"\r\n3969,4130,4656,John Irving,The Fourth Hand,https://images.gr-assets.com/books/1375776688l/4656.jpg,3.3,23277,\"fiction, contemporary\",The Fourth HandJohn Irving\r\n3970,4131,425123,Dennis Lehane,\"Gone, Baby, Gone\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234938l/425123.jpg,4.14,23899,\"mystery, fiction\",\"The tough neighborhood of Dorchester is no place for the innocent or the\nweak. A territory defined by hard heads and even harder luck, its streets\nare littered with the detritus of broken families, hearts, dreams. Now, one\nof its youngest is missing. Private investigators Patrick Kenzie and Angela\nGennaro don't want the case. But after pleas from the child's aunt, they\nopen an investigation that will ultimately risk everything—their\nrelationship, their sanity, and even their lives—to find a little girl\nlost.\"\r\n3971,4132,8957,Darren Shan,\"Tunnels of Blood (Cirque du Freak, #3) \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449857l/8957.jpg,4.14,26287,\"fantasy, horror\",\"Darren, the vampire's assistant, gets a taste of the city when he leaves\nthe Cirque Du Freak with Evra the snake-boy and Mr. Crepsley. When corpses\nare discovered--corpses drained of blood-- Darren and Evra are compelled to\nhunt down whatever foul creature is committing such horrendous acts.\nMeanwhile, beneath the streets, evil stalks Darren and Evra, and all clues\npoint to Mr. Crepsley. Can they escape, or are they doomed to perish in the\ntunnels of blood?\"\r\n3972,4133,217436,Kristin Hannah,On Mystic Lake,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206921l/217436.jpg,3.95,23050,\"fiction, romance\",\"A heartwarming tale of love set on Mystic Lake follows Annie Colwater on\njourney of discovery of passion as she struggles to cope with a shattered\nmarriage. Reprint.\"\r\n3973,4134,78131,Iris Johansen,The Killing Game,https://images.gr-assets.com/books/1314902885l/78131.jpg,4.18,24790,\"mystery, fiction\",\"Top forensic sculptor Eve Duncan is forced into a deadly game of terror\nwith a twisted murderer who uses the mysterious circumstances surrounding\nher daughter's death as a way to lure her to him.\"\r\n3974,4135,15768409,Michelle Hodkin,The Retribution of Mara Dyer,https://images.gr-assets.com/books/1417969205l/15768409.jpg,4.14,35910,\"paranormal, fantasy\",The Retribution of Mara DyerMichelle Hodkin\r\n3975,4136,3882,Rachael Ray,Rachael Ray 365: No Repeats--A Year of Deliciously Different Dinners (A 30-Minute Meal Cookbook),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925636l/3882.jpg,3.68,21573,\"cookbooks, nonfiction\",\"Bestselling cookbook phenom and Food Network megastar Ray is back with her\nmost indispensable cookbook yet, filled with enough 30-minute recipes and\nvariation to put something different and irresistible on the table every\nnight for an entire year. 16-page full-color insert.\"\r\n3976,4137,2145681,Augusten Burroughs,A Wolf at the Table,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205251l/2145681.jpg,3.7,22175,\"memoir, nonfiction\",\"The author traces the story of his relationship with his father, in a\npsychologically charged tale that evaluates such themes as the line between\nlove and hate and a child's longing for unconditional love.\"\r\n3977,4138,40290,Orson Scott Card,Alvin Maker: Seventh Son,https://images.gr-assets.com/books/1327295457l/40290.jpg,3.86,26621,\"fantasy, fiction\",\"American Library Association \"\"Best Books for Young Adults\"\" From the author\nof Ender's Game, an unforgettable story about young Alvin Maker: the\nseventh son of a seventh son. Born into an alternative frontier America\nwhere life is hard and folk magic is real, Alvin is gifted with the power.\nHe must learn to use his gift wisely. But dark forces are arrayed against\nAlvin, and only a young girl with second sight can protect him. Includes an\nexcerpt of Orson Scott Card's new novel, THE LOST GATE! The Tales of Alvin\nMaker series Seventh Son Red Prophet Prentice Alvin Alvin Journeyman\nHeartfire The Crystal City\"\r\n3978,4139,16697,Michael Chabon,The Mysteries of Pittsburgh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429934414l/16697.jpg,3.63,19778,\"contemporary, fiction\",\"By the Pulitzer Prize-winning author of The Amazing Adventures of Kavalier\n& Clay This P.S. edition features an extra 16 pages of insights into the\nbook, including author interviews, recommended reading, and more.\"\r\n3979,4140,146274,James L. Swanson,Manhunt: The 12-Day Chase for Lincoln's Killer,https://images.gr-assets.com/books/1344193262l/146274.jpg,4.12,21927,\"history, nonfiction\",\"The murder of Abraham Lincoln set off the greatest manhunt in American\nhistory. From April 14 to April 26, 1865, the assassin, John Wilkes Booth,\nled Union cavalry and detectives on a wild twelve-day chase through the\nstreets of Washington, D.C., across the swamps of Maryland, and into the\nforests of Virginia, while the nation, still reeling from the just-ended\nCivil War, watched in horror and sadness. James L. Swanson's Manhunt is a\nfascinating tale of murder, intrigue, and betrayal. A gripping hour-by-hour\naccount told through the eyes of the hunted and the hunters, this is\nhistory as you've never read it before.\"\r\n3980,4141,6631792,Cecelia Ahern,The Book of Tomorrow,https://images.gr-assets.com/books/1276970678l/6631792.jpg,3.66,24885,\"fiction, fantasy\",The Book of TomorrowCecelia Ahern\r\n3981,4142,10327303,Ally Carter,Uncommon Criminals,https://images.gr-assets.com/books/1298155996l/10327303.jpg,4.15,35104,\"mystery, contemporary\",Uncommon CriminalsAlly Carter\r\n3982,4143,18298225,Kasie West,On the Fence,https://images.gr-assets.com/books/1383229604l/18298225.jpg,4.04,30934,\"romance, contemporary\",\"She's a tomboy. He's the boy next door. With three older brothers,\nCharlotte Reynolds, aka Charlie, has always been more comfortable calling\nthe shots on a basketball court than flirting with the opposite sex. So\nwhen her police officer dad demands she get a summer job to pay for the\nlatest in a long line of speeding tickets, she's more than a little\nsurprised to find herself working at a chichi boutique and going out with a\nboy who has never seen her tear it up in a pickup game. Charlie seeks late-\nnight refuge in her backyard, talking out her problems with her neighbor\nand honorary fourth brother, Braden, sitting back-to-back against the fence\nthat separates them. Braden may know her better than anyone. But there's a\nsecret Charlie's keeping that even he hasn't figured out—she's fallen for\nhim. Hard. She knows what it means to go for the win, but if spilling her\nsecret means losing him for good, the stakes just got too high. On the\nFence is a sweet and satisfying read about finding yourself and finding\nlove where you least expect it.\"\r\n3983,4144,25153134,Mark  Edwards,Follow You Home,https://images.gr-assets.com/books/1432662633l/25153134.jpg,3.86,15871,\"mystery, fiction\",Follow You HomeMark  Edwards\r\n3984,4145,846984,Jerry Spinelli,\"Love, Stargirl\",https://images.gr-assets.com/books/1320395760l/846984.jpg,3.8,30515,\"fiction, romance\",\"Still moping months after being dumped by her Arizona boyfriend Leo,\nfifteen-year-old Stargirl, a home-schooled free spirit, writes \"\"the world's\nlongest letter\"\" to Leo, describing her new life in Pennsylvania. Reprint.\"\r\n3985,4146,481446,Michelle Moran,Nefertiti,https://images.gr-assets.com/books/1320449831l/481446.jpg,4.07,24959,\"fiction, history\",\"Raised far from the Egyptian court with her sister, Mutnodjmet, the\nbeautiful and ambitious Nefertiti becomes the wife of the radical new\npharaoh, Amunhotep, encouraging his plans to overturn Egypt's state\nreligion and making powerful enemies in the process, while her sister,\nrecognizing her sister's dangerous position, does what she can to protect\nher family. A first novel. Reprint. 40,000 first printing.\"\r\n3986,4147,11709037,David McRaney,‎You Are Not So Smart‎,https://images.gr-assets.com/books/1391879112l/11709037.jpg,3.85,20583,\"psychology, nonfiction\",\"An entertaining illumination of the stupid beliefs that make us feel wise.\nYou believe you are a rational, logical being who sees the world as it\nreally is, but journalist David McRaney is here to tell you that you're as\ndeluded as the rest of us. But that's OK- delusions keep us sane. You Are\nNot So Smart is a celebration of self-delusion. It's like a psychology\nclass, with all the boring parts taken out, and with no homework. Based on\nthe popular blog of the same name, You Are Not So Smart collects more than\n46 of the lies we tell ourselves everyday, including: Dunbar's Number -\nHumans evolved to live in bands of roughly 150 individuals, the brain\ncannot handle more than that number. If you have more than 150 Facebook\nfriends, they are surely not all real friends. Hindsight bias - When we\nlearn something new, we reassure ourselves that we knew it all along.\nConfirmation bias - Our brains resist new ideas, instead paying attention\nonly to findings that reinforce our preconceived notions. Brand loyalty -\nWe reach for the same brand not because we trust its quality but because we\nwant to reassure ourselves that we made a smart choice the last time we\nbought it. Packed with interesting sidebars and quick guides on cognition\nand common fallacies, You Are Not So Smart is a fascinating synthesis of\ncutting-edge psychology research to turn our minds inside out.\"\r\n3987,4148,72854,Sara Donati,Into the Wilderness,https://images.gr-assets.com/books/1320395200l/72854.jpg,4.1,25293,\"romance, fiction\",\"A schoolmarm leaves England in 1792 to join her father and brother in a\nmountainous village in upstate New York, where she falls in love with a man\ntorn between white and Native American culture.\"\r\n3988,4149,1519,\"Aeschylus, Robert Fagles, William Bedell Stanford\",Ὀρέστεια,https://images.gr-assets.com/books/1391822282l/1519.jpg,3.99,24588,\"classics, fiction\",\"A trilogy of plays dramatizes the murder of Agamemnon by his wife,\nClytaemnestra, the revenge of her son, Orestes, and his judgement by the\ncourt of Athena\"\r\n3989,4150,17167084,Louise Penny,How the Light Gets In,https://images.gr-assets.com/books/1364312402l/17167084.jpg,4.41,24325,\"mystery, fiction\",\"The #1 New York Times Bestseller \"\"There is a crack in everything. That's\nhow the light gets in.\"\" —Leonard Cohen Christmas is approaching, and in\nQuébec it's a time of dazzling snowfalls, bright lights, and gatherings\nwith friends in front of blazing hearths. But shadows are falling on the\nusually festive season for Chief Inspector Armand Gamache. Most of his best\nagents have left the Homicide Department, his old friend and lieutenant\nJean-Guy Beauvoir hasn't spoken to him in months, and hostile forces are\nlining up against him. When Gamache receives a message from Myrna Landers\nthat a longtime friend has failed to arrive for Christmas in the village of\nThree Pines, he welcomes the chance to get away from the city. Mystified by\nMyrna's reluctance to reveal her friend's name, Gamache soon discovers the\nmissing woman was once one of the most famous people not just in North\nAmerica, but in the world, and now goes unrecognized by virtually everyone\nexcept the mad, brilliant poet Ruth Zardo. As events come to a head,\nGamache is drawn ever deeper into the world of Three Pines. Increasingly,\nhe is not only investigating the disappearance of Myrna's friend but also\nseeking a safe place for himself and his still-loyal colleagues. Is there\npeace to be found even in Three Pines, and at what cost to Gamache and the\npeople he holds dear? How the Light Gets In is the ninth Chief Inspector\nGamache Novel from Louise Penny. One of Publishers Weekly's Best\nMystery/Thriller Books of 2013 One of The Washington Post's Top 10 Books of\nthe Year An NPR Best Book of 2013\"\r\n3990,4151,347656,John Piper,Don't Waste Your Life,https://images.gr-assets.com/books/1369824233l/347656.jpg,4.11,20095,\"christian, nonfiction\",\"A passionate call for this generation to make their lives count for\neternity. Piper discusses the risks for those who seek to accomplish\nsomething in life for the sake of Christ.\"\r\n3991,4152,54984,Ildefonso Falcones,La catedral del mar,https://images.gr-assets.com/books/1366301973l/54984.jpg,4.05,18906,\"fiction, history\",La catedral del marIldefonso Falcones\r\n3992,4153,111222,Alison Weir,The Life of Elizabeth I,https://images.gr-assets.com/books/1320433923l/111222.jpg,4.05,23628,\"history, biography\",\"Presents an exhaustively researched biography that reveals the personality,\nprivate life, and romantic intrigues of Elizabeth I\"\r\n3993,4154,747061,The Church of Jesus Christ of Latter-day Saints,\"The Book of Mormon, Doctrine and Covenants, the Pearl of Great Price\",https://images.gr-assets.com/books/1396619969l/747061.jpg,4.36,21692,\"religion, nonfiction\",\"The Book of Mormon, Doctrine and Covenants, the Pearl of Great PriceThe Church of Jesus Christ of Latter-day Saints\"\r\n3994,4155,8163722,\"Jon Stewart, Rory Albanese, Kevin Bleyer, Rich Bloomquist, Steve Bodow, Tim Carvell, Wyatt Cenac, Hallie Haglund, J.R. Havlan, David Javerbaum, Elliott Kalan, Josh Lieb, Sam Means, Jo Miller, John Oliver, Daniel Radosh, Jason Ross\",Earth: A Visitor's Guide to the Human Race ,https://images.gr-assets.com/books/1344264519l/8163722.jpg,3.91,23240,\"nonfiction, history\",\"Presents a humorous summation of the history of humanity and our\nachievements in society, government, religion, science, and culture.\"\r\n3995,4156,6315602,Rachel Vincent,My Soul to Take,https://images.gr-assets.com/books/1454287869l/6315602.jpg,3.88,35680,\"paranormal, fantasy\",My Soul to TakeRachel Vincent\r\n3996,4157,15019,Neale Donald Walsch,Conversations With God. An Uncommon Dialogue. Book 2,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328966l/15019.jpg,4.1,19444,\"spirituality, religion\",\"AND GOD SAID… Neale Donald Walsch didn’t claim to be special or spiritually\ngifted. He was just a frustrated man who sat down one day with pen in his\nhand and some tough questions in his heart. As he wrote his questions to\nGod, he realized that God was answering them—directly—through Walsch’s pen.\nAnd the result was a series of witty, provocative, and profound books that\nhave changed the lives of readers around the world. Here in one handsome\nvolume, with new introductions and afterwords, are the second two books in\nthe Conversations with God series. In Conversations with God 2, Neale\nDonald Walsch and God continue their discussion and move on to larger\ntopics than the personal issues addressed in Conversation with God 1. The\npair discusses time, space, and politics. It is an honest look at some of\nthe broad issues important to all of us on the planet. Conversations with\nGod 3, the final book of the original three-book series, contains\n“universal truths of the highest order, and the challenges and\nopportunities of the soul.” In this volume, the dialogue expands to include\nmore about the nature of God, about love and fear, about who we are and who\nwe may become. Here is also a profound dialogue about the culture,\nphilosophy, and spirituality of highly evolved beings in other realms of\nthe universe and how they have learned to view life, love, and the pursuit\nof happiness.\"\r\n3997,4158,9413044,Brodi Ashton,Everneath,https://images.gr-assets.com/books/1340210035l/9413044.jpg,3.76,36153,\"fantasy, paranormal\",EverneathBrodi Ashton\r\n3998,4159,3400816,Janet Evanovich,Plum Spooky,https://images.gr-assets.com/books/1320400804l/3400816.jpg,3.77,32890,\"mystery, fiction\",\"Believing her life cannot get any more complicated only to receive a return\nvisit from the mysterious Diesel, Stephanie Plum goes camping in the woods\nwith her sidekick, Lula, in the New Jersey Pine Barrens, where they hope to\nspot the elusive Jersey Devil. Reprint. A #1 best-seller.\"\r\n3999,4160,1426,Paulo Coelho,Manual do guerreiro da luz,https://images.gr-assets.com/books/1359135200l/1426.jpg,3.69,19063,\"philosophy, spirituality\",\"Within each of us is a warrior of light. Each of us capable of listening to\nthe silence of the heart, of accepting failure without letting it get us\ndown and of holding onto hope even in the face of weariness and depression.\nValues like love for all things, discipline, friendship and learning to\nlisten to our own hearts are the arms with which this warrior confronts the\nbattles we face in the name of personal growth and in the defence of the\nlight. On every page there is an inspirational thought, which can be read\nas part of Paulo Coelho's whole philosophy or used form the basis of a\ndaily meditation. This text is a guide to the process.\"\r\n4000,4161,2548866,G. Norman Lippert,James Potter and the Hall of Elders' Crossing ,https://images.gr-assets.com/books/1497650972l/2548866.jpg,3.78,21310,\"fantasy, ebooks\",James Potter and the Hall of Elders' Crossing G. Norman Lippert\r\n4001,4162,2936415,Jon Krakauer,Where Men Win Glory: The Odyssey of Pat Tillman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439088374l/2936415._SY475_.jpg,4.03,21302,\"biography, nonfiction\",\"Traces the controversial story of NFL player and army soldier Pat Tillman,\ndescribing the military's efforts to hide the truth about his death by\nfriendly fire, in an account that draws on Tillman's journals and letters\nas well as interviews with family members and fellow soldiers. Reprint. A\nbest-selling book.\"\r\n4002,4163,824062,\"Brother Andrew, Elizabeth Sherrill, John Sherrill\",God's Smuggler,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347829238l/824062.jpg,4.32,22970,\"biography, christian\",\"God's SmugglerBrother Andrew, Elizabeth Sherrill, John Sherrill\"\r\n4003,4164,9923372,J. Courtney Sullivan,Maine,https://images.gr-assets.com/books/1295996313l/9923372.jpg,3.34,23979,\"fiction, contemporary\",\"Three generations of women converge on the family beach house in this\nwickedly funny, emotionally resonant story of love and dysfunction.\"\r\n4004,4165,18660447,Kasie West,Fill-in boyfrined,https://images.gr-assets.com/books/1414605032l/18660447.jpg,3.92,31656,\"contemporary, romance\",Fill-in boyfrinedKasie West\r\n4005,4166,161426,Meg Rosoff,How I Live Now,https://images.gr-assets.com/books/1327870252l/161426.jpg,3.58,28896,\"fiction, romance\",\"Soon after fifteen year old Daisy arrives at her aunt's farm in England her\naunt goes away on business, leaving Daisy with four cousins she's never met\n--the next day when London is attacked by an unnamed enemy, power fails,\nsystems fail, the farm becomes more isolated with no adults in charge and\nno rules, and yet the cousins' uncanny bond grows into something\nextraordinary as time passes. Reprint.\"\r\n4006,4167,47613,Garth Nix,Mister Monday,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298425074l/47613.jpg,3.77,28430,\"fantasy, fiction\",\"Although Arthur Penhaligon is supposed to die an early death, he is saved\nby a key shaped like the minute hand of a clock, and now some bizarre\ncreatures--including Mister Monday, his avenging messengers, and an army of\ndog-faced Fetchers--will stop at nothing to get the key back.\"\r\n4007,4168,9166559,Heather Gudenkauf,These things hidden,https://images.gr-assets.com/books/1296001564l/9166559.jpg,3.85,27030,\"thriller, crime\",These things hiddenHeather Gudenkauf\r\n4008,4169,852460,\"Dawn J. Ranck, Phyllis Pellman Good\",Fix-It and Forget-It Cookbook: Feasting with Your Slow Cooker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442758991l/852460._SX318_.jpg,3.85,22697,\"cookbooks, nonfiction\",\"Fix-It and Forget-It Cookbook: Feasting with Your Slow CookerDawn J. Ranck, Phyllis Pellman Good\"\r\n4009,4170,6006518,\"Lili St. Crow, Lilith Saintcrow\",Strange Angels,https://images.gr-assets.com/books/1331244487l/6006518.jpg,3.78,35169,\"paranormal, romance\",\"Strange AngelsLili St. Crow, Lilith Saintcrow\"\r\n4010,4171,103342,\"Malika Oufkir, Michèle Fitoussi\",La Prisonnière,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442961301l/103342._SX318_.jpg,4.08,16134,\"nonfiction, memoir\",\"Malika Oufkir was born into a proud Berber family in 1953, the eldest\ndaughter of the King of Morocco's closest aide. She was adopted by the king\nto be a companion to his little daughter, and at the royal court of Rabat,\nMalika grew up locked away in a golden cage, among the royal wives and\nconcubines. But when Malika was eighteen, in 1972, her father was arrested\nafter an attempt to assassinate the king. General Oufkir was swiftly and\nsummarily executed. Malika, her beautiful mother and her five younger\nbrothers and sisters were seized and thrown into an isolated desert jail.\nFor fifteen years, they had no contact with the outside world, and lived in\nincreasingly barbaric and inhumane conditions. Like a modern Scheherazade,\nMalika kept up the spirits of her younger siblings by telling them stories\nevery night about an epic world of her own invention. Then, after fifteen\nendless years of imprisonment, the Oufkir children managed to dig a tunnel\nwith their bare hands, and made an audacious escape. Although they were\nrecaptured after five days, the ensuing public outrage resulted in house\narrest rather than a return to prison. In 1996, Malika was finally\npermitted to leave Morocco to begin a new life in exile.\"\r\n4011,4172,6013511,Nora Roberts,Black Hills,https://images.gr-assets.com/books/1303019108l/6013511.jpg,4.08,26676,\"romance, mystery\",\"Childhood sweethearts Cooper Sullivan and Lil Chance are reunited when Coop\nleaves New York to assist his aging grandparents on their South Dakota\nranch, but Coop must come to Lil's aid when the unsolved killing of a hiker\nis linked to vandalism at Lil'swildlife refuge.\"\r\n4012,4173,91714,\"Mark Millar, Steve McNiven, Dexter Vines, Morry Hollowell\",Civil War: A Marvel Comics Event,https://images.gr-assets.com/books/1345813608l/91714.jpg,4.05,23851,\"comics, fiction\",\"An accident on a reality show leads the government to issue a directive\nthat all superheroes must register, a requirement that pits Captain America\nand his Underground Avengers against the Iron Man and Mr. Fantastic, who\nwant to comply.\"\r\n4013,4174,609870,\"Kim Carpenter, John R. Perry, Krickitt Carpenter\",The Vow: The Kim and Krickitt Carpenter Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387752760l/609870.jpg,3.77,16705,\"ebooks, religion\",\"Presents the true story of a couple who fell in love again after the wife,\nKrickitt, suffered a traumatic brain injury in an automobile crash and lost\nall memory of her previous life.\"\r\n4014,4175,7171856,Robert A. Heinlein,The Puppet Masters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348052588l/7171856.jpg,3.86,24641,\"fiction, classics\",\"Now in Mass Market. An Epic Battle Against Mind-Controlling Alien Invaders\nas Only Robert A. Heinlein, the Best-Selling Grand Master of Science\nFiction, Could Tell It. “One of the most influential writers in American\nliterature.” —The New York Times Book Review. First came the news that a\nflying saucer had landed in Iowa. Then came the announcement that the whole\nthing was a hoax. End of story. Case closed. Except that two agents of the\nmost secret intelligence agency in the U.S. government were on the scene\nand disappeared without reporting in. And four more agents who were sent in\nalso disappeared. So the head of the agency and his two top agents went in\nand managed to get out with their discovery: an invasion is underway by\nslug-like aliens who can touch a human and completely control his or her\nmind. What the humans know, they know. What the slugs want, no matter what,\nthe human will do. And most of Iowa is already under their control. Sam\nCavanaugh was one of the agents who discovered the truth. Unfortunately,\nthat was just before he was taken over by one of the aliens and began\nworking for the invaders, with no will of his own. And he has just learned\nthat a high official in the Treasury Department is now under control of the\naliens. Since the Treasury Department includes the Secret Service, which\nsafeguards the President of the United States, control of the entire nation\nis near at hand .\"\r\n4015,4176,23212667,Megan Miranda,All the Missing Girls,https://images.gr-assets.com/books/1452098621l/23212667.jpg,3.79,36522,\"mystery, fiction\",\"Ten years ago, Nicolette Farrell left Cooley Ridge, North Carolina under\ndifficult circumstances. She'd just broken up with Tyler, the man she\nthought she'd marry, and her best friend, Corrine, had disappeared, never\nto be heard from again. When the call comes that her father is ailing, Nic\nis living in Philadelphia, light years away from her younger self. She\ndrops everything to care for her dad, but within days of her return another\ngirl goes missing. As Nic works to unravel what happened to the missing\ngirl, shocking truths emerge about her neighbors, her family, and what\nreally happened to Corinne that night ten years ago.\"\r\n4016,4177,921651,Mercer Mayer,Just Go to Bed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349015862l/921651.jpg,4.22,24452,\"fiction, classics\",\"No matter what a little boy pretends to be, cowboy, general, space cadet,\nrobot, sea monster, or race care driver, his parents only seem to think\nabout putting him to bed.\"\r\n4017,4179,228063,\"CLAMP, William Flanagan\",xxxHOLiC #1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216406l/228063.jpg,4.17,23323,\"manga, fantasy\",\"As Hana tries to enlist reincarnated historical figures to her side before\nher enemies do, Chikahito learns more about Hana's Inou Squad and those who\ncontrol them.\"\r\n4018,4180,279692,\"Harry Allard, James  Marshall\",Miss Nelson Is Back,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429278920l/279692.jpg,4.33,26289,\"fiction, classics\",\"Miss Nelson must leave her class for a little while, and out of boredom the\nchildren begin to act up. Miss Nelson finds out about this and calls on her\nevil friend, the witch, Miss Viola Swamp. Just as in the previous book in\nthis series (Miss Nelson is Missing), Miss Swamp puts More...the children's\nmischief to bed, and gets the kids working hard again\"\r\n4019,4181,77505,Kim Stanley Robinson,Green Mars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389628152l/77505.jpg,3.91,24627,\"fiction, science\",\"The First Hundred - the planet's human pioneers - landed on Mars a\ngeneration ago. As humanity's dream of a new world falters in the wake of a\nfailed revolution, those first colonists have scattered or died. The first\ngeneration of children born on Mars, along with the survivors of the\noriginal settlers, wrestle for control.\"\r\n4020,4182,28691,Tad Williams,\"To Green Angel Tower (Memory, Sorrow, and Thorn, #3)\",https://images.gr-assets.com/books/1347824309l/28691.jpg,4.16,25997,\"fantasy, fiction\",\"As King Elias is drawn ever deeper into the nightmarish web of Sithi dark\nmagic, the allies of Prince Josua rally their forces at the Stone of\nFarewell, in preparation for a final confrontation with the undead Sithi\nStorm King and his evil minions. By the author of The Dragonbone Chair.\n50,000 first printing.\"\r\n4021,4183,45685,\"Oscar Wilde, Inga Moore\",The Canterville Ghost,https://images.gr-assets.com/books/1363935696l/45685.jpg,3.89,22152,\"classics, fiction\",\"This classic ghost story tells of a malevolent ghost, who discovers there\nis no peace for the wicked when a rumbustious American family moves into\nhis ancestral home. This is one of the Walker Treasures series - a\ncollection of classic works of literature for children.\"\r\n4022,4184,18630542,\"Bryan Lee O'Malley, Nathan Fairbairn\",Seconds: A Graphic Novel,https://images.gr-assets.com/books/1399502867l/18630542.jpg,4.07,20595,\"comics, fantasy\",\"Follows the experience of a young restaurant owner who is given a magical\nsecond chance to correct past mistakes.\"\r\n4023,4185,16134551,Tijan,Fallen Crest High,https://images.gr-assets.com/books/1355101275l/16134551.jpg,4.13,37150,\"romance, contemporary\",Fallen Crest HighTijan\r\n4024,4186,327246,Jenő Barcsay,Művészeti Anatómia,https://images.gr-assets.com/books/1328858785l/327246.jpg,3.97,21640,\"art, nonfiction\",Művészeti AnatómiaJenő Barcsay\r\n4025,4187,6572,John Saul,Suffer the Children,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925349l/6572.jpg,3.9,24533,\"horror, fiction\",\"100 years after a young girl's murder, children are again disappearing from\nPort Arbello.\"\r\n4026,4188,24137,Karen Cushman,\"Catherine, Called Birdy\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167520363l/24137._SX318_.jpg,3.7,31185,\"history, classics\",\"With wit and determination, thirteen-year-old Catherine chronicles her\nsometimes outrageous strategies to thwart her father's plans to marry her\noff and finds \"\"a way to make her voice heard among all of these forces that\nwant to shut it down\"\" in medieval England. The beloved Newbery Honor Book's\n25th Anniversary! (Bustle) New introduction by Linda Sue Park.\"\r\n4027,4189,613283,Jean Sasson,Princess: A True Story of Life Behind the Veil in Saudi Arabia ,https://images.gr-assets.com/books/1377538002l/613283.jpg,4,20019,\"biography, nonfiction\",A true story of life behind the veil in Saudi Arabia for a young princess.\r\n4028,4190,15547,Terry Brooks,Magic Kingdom for Sale—Sold!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673242l/15547._SY475_.jpg,3.86,26995,\"fantasy, fiction\",Magic Kingdom for Sale—Sold!Terry Brooks\r\n4029,4191,68984,\"Joseph Murphy, Ian McMahan\",The Power of Your Subconscious Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924010l/68984.jpg,4.12,16951,\"psychology, spirituality\",\"Examines the connection between the mental dynamics of thinking in relation\nto one's quality of life while offering simple techniques designed to\ncreate new, more innovative thought processes and stimulate creativity.\nReissue.\"\r\n4030,4192,31341,Anne Rice,Blood and Gold: The Vampire Marius,https://images.gr-assets.com/books/1168274792l/31341.jpg,3.88,25780,\"horror, fantasy\",\"Here is the gorgeous and sinister story of Marius, patrician by birth,\nscholar by choice, one of the oldest vampires of them all, which sweeps\nfrom his genesis in ancient Rome, in the time of the Emperor Augustus, to\nhis meeting in the present day with a creature of snow and ice. Thorne is a\nNorthern vampire in search of Maharet, his 'maker', the ancient Egyptian\nvampire queen who holds him and others in thrall with chains made of her\nred hair, 'bound with steel and with her blood and gold'. When the\nVisigoths sack his city, Marius is there; with the resurgence of the glory\nthat was Rome, he is there, still searching for his lost love Pandora, but\nbewitched in turn by Botticelli, the Renaissance beauty Bianca, with her\nsordid secrets, and the boy he calls Amadeo (otherwise known as the Vampire\nArmand). Criss-crossing through the stories of other vampires from Rice's\nglorious Pantheon of the undead, haunted by Pandora and by his alter ego\nMael, tracked by the Talamasca, the tale of Marius, the self-styled\nguardian of 'those who must be kept' is the most wondrous and mind-blowing\nof them all.\"\r\n4031,4193,10816908,Rae Carson,The Crown of Embers,https://images.gr-assets.com/books/1335241091l/10816908.jpg,4.2,32885,\"fantasy, romance\",The Crown of EmbersRae Carson\r\n4032,4194,153785,Tamora Pierce,Page ,https://images.gr-assets.com/books/1215394280l/153785.jpg,4.22,33405,\"fantasy, fiction\",\"Keladry of Mindelan continues her training to become a squire with the aid\nof a new maid, the support of her friends, interference from some other\npages, and some serious, even dangerous opposition.\"\r\n4033,4195,18170039,Kiera Cass,The Guard,https://images.gr-assets.com/books/1380307008l/18170039.jpg,3.75,32401,\"romance, fantasy\",\"Two novellas set in the world of Kiera Cass's #1 New York Times bestselling\nSelection series are now available in print for the first time. The Prince\nand The Guard both offer captivating views into the hearts and minds of the\ntwo men fighting to win America Singer's love. This collection also\nfeatures exclusive bonus content, including a sneak peek at The One, the\neagerly anticipated third novel in the Selection series. Before America\narrived at the palace to compete in the Selection, there was another girl\nin Prince Maxon's life. The Prince opens the week before the Selection\nbegins and follows Maxon through the first day of the competition. Raised\nas a Six, Aspen Leger never dreamed that he would find himself living in\nthe palace as a member of the royal guard. In The Guard, readers get an\ninside look at Aspen's life within the palace walls—and the truth about a\nguard's world that America will never know.\"\r\n4034,4196,816870,\"Esther Forbes, Lynd Ward\",Johnny Tremain,https://images.gr-assets.com/books/1308964858l/816870.jpg,3.62,30157,\"fiction, classics\",\"Johnny TremainEsther Forbes, Lynd Ward\"\r\n4035,4197,172732,\"Ernesto Che Guevara, Aleida Guevara March\",Diarios de motocicleta: notas de viaje por América Latina,https://images.gr-assets.com/books/1354902593l/172732.jpg,3.79,18964,\"biography, memoir\",Publisher Description\r\n4036,4199,125956,Ted Dekker,Black 1. The Birth of Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268108l/125956.jpg,4.21,23496,\"fantasy, fiction\",Black 1. The Birth of EvilTed Dekker\r\n4037,4200,6437061,N.K. Jemisin,The Hundred Thousand Kingdoms,https://images.gr-assets.com/books/1303143211l/6437061.jpg,3.8,28989,\"fantasy, fiction\",\"Yeine Darr is an outcast from the barbarian north. But when her mother dies\nunder mysterious circumstances, she is summoned to the majestic city of\nSky. There, to her shock, Yeine is named an heiress to the king. But the\nthrone of the Hundred Thousand Kingdoms is not easily won, and Yeine is\nthrust into a vicious power struggle. The Hundred Thousand Kingdoms is the\ndebut novel from a major new voice in fantasy fiction.\"\r\n4038,4201,857445,Peggy Rathmann,Officer Buckle & Gloria (Hardcover),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348468943l/857445.jpg,4.16,24578,\"fiction, fantasy\",\"The children at Napville Elementary School always ignore Officer Buckle's\nsafety tips, until a police dog named Gloria accompanies him when he gives\nhis safety speeches.\"\r\n4039,4202,63033,\"Roberto Bolaño, Natasha Wimmer\",Los detectives salvajes,https://images.gr-assets.com/books/1342651149l/63033.jpg,4.09,17946,\"fiction, contemporary\",\"National Bestseller In this dazzling novel, the book that established his\ninternational reputation, Roberto Bolaño tells the story of two modern-day\nQuixotes--the last survivors of an underground literary movement, perhaps\nof literature itself--on a tragicomic quest through a darkening, entropic\nuniverse: our own. The Savage Detectives is an exuberant, raunchy, wildly\ninventive, and ambitious novel from one of the greatest Latin American\nauthors of our age.\"\r\n4040,4203,11300302,Gena Showalter,Alice in Zombieland,https://images.gr-assets.com/books/1333628241l/11300302.jpg,4.05,30537,\"fantasy, paranormal\",\"When her entire existence is shattered in the blink of an eye, Ali is\nforced to partner with secretive bad boy Cole Holland to avenge the deaths\nof her loved ones by returning an undead army to their graves.\"\r\n4041,4204,6801582,Aprilynne Pike,Spells,https://images.gr-assets.com/books/1328316409l/6801582.jpg,3.99,34331,\"fantasy, romance\",SpellsAprilynne Pike\r\n4042,4205,59151,\"Stefan Zweig, Joel Rotenberg, Hans Hausmann, Dirk Muller, Peter Gay, Willy Trenk-Trebitsch, Mario Adorf, Gert Westphal\",Schachnovelle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924796l/59151.jpg,4.28,16716,\"fiction, classics\",\"SchachnovelleStefan Zweig, Joel Rotenberg, Hans Hausmann, Dirk Muller, Peter Gay, Willy Trenk-Trebitsch, Mario Adorf, Gert Westphal\"\r\n4043,4206,594361,\"Justine Korman Fontes, Don Williams, Walt Disney Company\",The Lion King (Little Golden Book),https://images.gr-assets.com/books/1320412442l/594361.jpg,4.46,23098,\"fiction, fantasy\",The story of a lion who lives in Africa and is the next heir to the throne.\r\n4044,4207,11198312,Gordon Korman,The Medusa Plot,https://images.gr-assets.com/books/1328836311l/11198312.jpg,4.07,24489,\"mystery, fiction\",\"Unable to return to their normal lives despite the end of the Clue hunt,\nnew Madrigal leaders Amy and Dan anxiously prepare for a retaliatory strike\nby the Vespers, who kidnap a number of Cahill family members and demand\nthat Amy and Dan steal a famous painting.\"\r\n4045,4208,266904,Jeanne Birdsall,\"The Penderwicks: A Summer Tale of Four Sisters, Two Rabbits, and a Very Interesting Boy\",https://images.gr-assets.com/books/1320508900l/266904.jpg,4.12,32251,\"fiction, contemporary\",\"While vacationing with their widowed father in the Berkshire Mountains,\nfour young sisters, ages four through twelve, share adventures with a local\nboy, much to the dismay of his snobbish mother.\"\r\n4046,4209,7164343,Nelson DeMille,The Lion,https://images.gr-assets.com/books/1259186800l/7164343.jpg,4.22,21564,\"fiction, thriller\",\"#1 NEW YORK TIMES BESTSELLER \"\"[Demille is] a master.\"\" - Dan Brown, #1\nbestselling author of The Da Vinco Code John Corey, former NYPD Homicide\ndetective and special agent for the Anti-Terrorist Task Force, is back.\nAnd, unfortunately for Corey, so is Asad Khalil, the notorious Libyan\nterrorist otherwise known as \"\"The Lion.\"\" Last we heard from him, Khali had\nclaimed to be defecting to the US only to unleash the most horrific reign\nof terrorism ever to occur on American soil. While Corey and his partner,\nFBI agent Kate Mayfield, chased him across the country, Khalil methodically\neliminated his victims one by one and then disappeared without a trace.\nNow, years later, Khalil has returned to America to make good on his\nthreats and take care of unfinished business. \"\"The Lion\"\" is a killing\nmachine once again loose in America with a mission of revenge, and John\nCorey will stop at nothing to achieve his own goal -- to find and kill\nKhahil.\"\r\n4047,4210,112754,Karen Marie Moning,Kiss of the Highlander,https://images.gr-assets.com/books/1400966202l/112754.jpg,4.31,32793,\"romance, paranormal\",\"Fleeing her humdrum life, Gwen Cassidy heads for Scotland in search of\nadventure, but a plunge into a Highland ravine lands her in the arms of\nDrustan MacKeltar, a powerful sixteenth-century warrior enchanted by a\npowerful spell.\"\r\n4048,4211,12722468,Sally Bedell Smith,Elizabeth The Queen: The Life Of A Modern Monarch,https://images.gr-assets.com/books/1324343095l/12722468.jpg,3.85,20063,\"biography, history\",Elizabeth The Queen: The Life Of A Modern MonarchSally Bedell Smith\r\n4049,4212,19101283,\"Jo Nesbø, Charlotte Barslund\",Sønnen,https://images.gr-assets.com/books/1390177620l/19101283.jpg,4.07,19393,\"mystery, crime\",\"\"\"SONNY'S ON THE RUN Sonny is a model prisoner. He listens to the\nconfessions of other inmates, and absolves them of their sins. HE'S BEEN\nLIED TO HIS WHOLE LIFE But then one prisoner's confession changes\neverything. He knows something about Sonny's disgraced father. SONNY WANTS\nREVENGE He needs to break out of prison and make those responsible pay for\ntheir crimes. b> WHATEVER THE COST\"\"\"\r\n4050,4213,6839093,\"John Layman, Rob Guillory\",Taster's Choice,https://images.gr-assets.com/books/1409985990l/6839093.jpg,4,27570,\"comics, mystery\",\"Tony Chu, a detective with the power to receive psychic impressions from\nwhatever he eats, works with the Special Crimes Division of the FDA to\nsolve their most bizarre cases.\"\r\n4051,4214,785453,Linda Sue Park,A Single Shard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348868705l/785453.jpg,3.87,27345,\"fiction, history\",A Single ShardLinda Sue Park\r\n4052,4215,29187,\"Margaret Weis, Tracy Hickman\",Time of the Twins,https://images.gr-assets.com/books/1390667790l/29187.jpg,4.13,24671,\"fantasy, fiction\",\"In the uneasy peace following the War of the Lance, Caramon and Tasslehoff\nthe Kender set out to reform Caramon's twin brother Raistlin, the most\npowerful warrior of evil in the land of Krynn. Reprint.\"\r\n4053,4216,7743117,Christopher Moore,Sacré Bleu: A Comedy d'Art,https://images.gr-assets.com/books/1331321350l/7743117.jpg,3.77,22559,\"fiction, fantasy\",\"In July 1890, Vincent van Gogh went into a cornfield and shot himself. Or\ndid he? Vincent’s friends, baker-turned-painter Lucien Lessard and bon\nvivant Henri Toulouse-Lautrec, have their doubts. Now they’re determined to\nanswer the questions surrounding van Gogh’s untimely death—like who was the\ncrooked little “color man” Vincent claimed was stalking him across France .\n. . and why had the painter recently become deathly afraid of a certain\nshade of blue? Ooh la la, quelle surprise, and zut alors, what follows is a\nsurreal odyssey and brothel-crawl deep into the art world of late-\nnineteenth-century Paris, as the one, the only, Christopher Moore cooks up\na delectable confection of intrigue, passion, and art history . . . with\ncancan girls, baguettes, and fine French cognac thrown in for good measure.\"\r\n4054,4217,331256,\"Arkady Strugatsky, Boris Strugatsky, Antonina W. Bouis, Antonina W. Bouis, Theodore Sturgeon\",Пикник на обочине,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173812259l/331256.jpg,4.21,17689,\"fiction, ebooks\",\"When his ship crashes on an unknown planet, a young man from Earth finds\nhimself stranded in a polluted world whose inhabitants are controlled by\npowerful doses of radiation.\"\r\n4055,4218,2068676,Meg Cabot,Queen of Babble Gets Hitched,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435404778l/2068676._SX318_.jpg,3.82,28734,\"romance, fiction\",\"Big mouth. Big heart. Big wedding. Big problems. It's the wedding of the\ncentury! Things are looking up at last for Lizzie Nichols. She has a career\nshe loves in the field of her choice (wedding gown restoration), and the\nlove of her life, Jean-Luc, has finally proposed. Life's become a dizzying\nwhirl of wedding gown fittings—not necessarily her own—as Lizzie prepares\nfor her dream wedding at her fiancé's château in the south of France. But\nthe dream soon becomes a nightmare as the best man—whom Lizzie might once\nhave accidentally slept with . . . no, really, just slept—announces his\ntotal lack of support for the couple, a sentiment the maid of honor happens\nto second; Lizzie's Midwestern family can't understand why she doesn't want\nto have her wedding in the family backyard; her future, oh-so-proper French\nin-laws seem to be slowly trying to lure the groom away from medical school\nand back into investment banking; and Lizzie finds herself wondering if her\nPrince Charming really is as charming as she once believed. Is Lizzie\nreally ready to embrace her new role as wife and mistress of Château Mirac?\nOr is she destined to fall into another man's arms . . . and into the trap\nof becoming a Bad Girl instead?\"\r\n4056,4219,182381,Elizabeth Gaskell,Cranford,https://images.gr-assets.com/books/1375746052l/182381.jpg,3.85,25805,\"classics, fiction\",\"A portrait of life in a quiet English country town in the mid-nineteenth\ncentury follows the adventures of Miss Matty and Miss Deborah, two middle-\naged spinster sisters living in reduced circumstances.\"\r\n4057,4220,11761,Don DeLillo,Underworld,https://images.gr-assets.com/books/1334304280l/11761.jpg,3.92,19152,\"fiction, contemporary\",\"A work combining fiction and history in a collaboration that encompasses\nfifty years gives readers a glimpse into the realities upon which America's\nmodern culture is based and explores the complex relationship between\n\"\"waste analyst\"\" Nick Shay and artist Klara Sax\"\r\n4058,4221,50140,\"Jack Kerouac, Aram Saroyan\",Big Sur,https://images.gr-assets.com/books/1428984256l/50140.jpg,3.86,21875,\"classics, fiction\",\"Retiring to a seaside cabin near San Francisco, Jack Duluoz looks for\ntranquility, but finds only horror and despair\"\r\n4059,4222,200572,P.G. Wodehouse,My Man Jeeves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348915558l/200572.jpg,4.13,23020,\"fiction, classics\",\"My Man Jeeves is a collection of short stories by P. G. Wodehouse, first\npublished in the UK in May 1919 by George Newnes. Of the eight stories in\nthe collection, half feature the popular characters Jeeves and Bertie\nWooster, while the others concern Reggie Pepper, an early prototype for\nWooster.\"\r\n4060,4223,6368610,Melissa Marr,Radiant Shadows,https://images.gr-assets.com/books/1258758145l/6368610.jpg,3.97,33385,\"fantasy, paranormal\",\"Hunger for nourishment. Hunger for touch. Hunger to belong. Half-human and\nhalf-faery, Ani is driven by her hungers. Those same appetites also attract\npowerful enemies and uncertain allies, including Devlin. He was created as\nan assassin and is brother to the faeries' coolly logical High Queen and to\nher chaotic twin, the embodiment of War. Devlin wants to keep Ani safe from\nhis sisters, knowing that if he fails, he will be the instrument of Ani's\ndeath. Ani isn't one to be guarded while others fight battles for her,\nthough. She has the courage to protect herself and the ability to alter\nDevlin's plans—and his life. The two are drawn together, each with reason\nto fear the other and to fear for one another. But as they grow closer, a\nlarger threat imperils the whole of Faerie. Will saving the faery realm\nmean losing each other? Alluring romance, heart-stopping danger, and\nsinister intrigue combine in the penultimate volume of Melissa Marr's New\nYork Times bestselling Wicked Lovely series.\"\r\n4061,4224,13448656,Kristen Ashley,Motorcycle Man,https://images.gr-assets.com/books/1337615202l/13448656.jpg,4.43,41818,\"romance, contemporary\",Motorcycle ManKristen Ashley\r\n4062,4225,20980987,Amanda Palmer,\"The Art of Asking; or, How I Learned to Stop Worrying and Let People Help\",https://images.gr-assets.com/books/1408547261l/20980987.jpg,3.97,20075,\"nonfiction, memoir\",\"Now with a new Postscript from Brain Pickings creator Maria Popova Rock\nstar, crowdfunding pioneer, and TED speaker Amanda Palmer knows all about\nasking. Performing as a living statue in a wedding dress, she wordlessly\nasked thousands of passersby for their dollars. When she became a singer,\nsongwriter, and musician, she was not afraid to ask her audience to support\nher as she surfed the crowd (and slept on their couches while touring). And\nwhen she left her record label to strike out on her own, she asked her fans\nto support her in making an album, leading to the world's most successful\nmusic Kickstarter. Even while Amanda is both celebrated and attacked for\nher fearlessness in asking for help, she finds that there are important\nthings she cannot ask for-as a musician, as a friend, and as a wife. She\nlearns that she isn't alone in this, that so many people are afraid to ask\nfor help, and it paralyzes their lives and relationships. In this\ngroundbreaking book, she explores these barriers in her own life and in the\nlives of those around her, and discovers the emotional, philosophical, and\npractical aspects of THE ART OF ASKING. Part manifesto, part revelation,\nthis is the story of an artist struggling with the new rules of exchange in\nthe twenty-first century, both on and off the Internet. THE ART OF ASKING\nwill inspire readers to rethink their own ideas about asking, giving, art,\nand love.\"\r\n4063,4226,14288998,Veronica Rossi,Into the Still Blue,https://images.gr-assets.com/books/1417467183l/14288998.jpg,4.17,33983,\"romance, fantasy\",Into the Still BlueVeronica Rossi\r\n4064,4227,296302,Ann Brashares,The Last Summer (of You and Me),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442116771l/296302._SY475_.jpg,3.58,26094,\"fiction, romance\",\"A first adult novel by the best-selling author of the Sisterhood of the\nTraveling Pants series finds a trio of summer friends, including a pair of\nsisters and a young man entering an early adulthood, marked by budding\nlove, sexual curiosity, a sudden serious illness, and a deep secret.\n600,000 first printing.\"\r\n4065,4228,95406,\"Garth Ennis, Steve Dillon\",Preacher Vol. 2: Until the End of the World,https://images.gr-assets.com/books/1309914965l/95406.jpg,4.28,24086,\"fiction, horror\",\"Reverend Jesse Custer, an old Texas minister who is joined with a spiritual\nentity called Genesis and wields the Word of God, revisits terrors of his\nchildhood on his way to find God.\"\r\n4066,4229,36,\"Chris   Smith, Christopher Lee, Richard Taylor\",The Lord of the Rings: Weapons and Warfare,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290346l/36.jpg,4.53,18788,\"fantasy, art\",\"Describes in detail, with over one thousand photographs, the battles,\narmies, and armor used in the War of the Ring based on J.R.R. Tolkien's\n\"\"Lord of the Rings\"\" trilogy, including battle plans and character histories\nand descriptions.\"\r\n4067,4230,215543,D.J. MacHale,The Lost City of Faar,https://images.gr-assets.com/books/1431400965l/215543.jpg,4.16,25401,\"fantasy, fiction\",The Lost City of FaarD.J. MacHale\r\n4068,4231,31374,Elizabeth  George,A Great Deliverance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422723527l/31374.jpg,4.06,28027,\"mystery, fiction\",\"The quiet and peaceful world of the Yorkshire countryside is shattered by a\nbrutal murder and the shocking revelations unearthed by Scotland Yard\ninvestigators Barbara Havers and Thomas Lynsley. Reissue. (A BBC production\nfor PBS television, airing Summer 2002) (Mystery)\"\r\n4069,4232,7194,\"Arturo Pérez-Reverte, Sonia Soto\",El club Dumas,https://images.gr-assets.com/books/1327896341l/7194.jpg,3.82,24090,\"mystery, thriller\",\"Lucas Corso's search for the original copy of a book of the occult takes\nhim from Madrid to Paris and into a secret society of antiquarians.\"\r\n4070,4233,248482,Shannon Hale,Enna Burning,https://images.gr-assets.com/books/1388286936l/248482.jpg,3.97,31710,\"fantasy, fiction\",\"* A New York Public Library Book for the Teen Age * An Amazon \"\"Editor's\nPick\"\" for Best Book of the Year * An Association of Booksellers for\nChildren \"\"Best Book,\"\" Science Fiction & Fantasy category \"\"[T]his novel's\npulsing heart lies in rich writing and sharply drawn characters, elements\nthat will be devoured by genre fans just like kindling beneath flames.\"\"\n-Booklist \"\"[An] original tale that stands on its own . . . with a richly\ndetailed setting, eloquent descriptions, a complex plot, a large cast of\ncharacters, and romance, this high fantasy will be welcomed by fans of The\nGoose Girl and those who have yet to discover it.\"\"-School Library Journal\n\"\"Powerful and romantic.\"\" -Kirkus Reviews Don't miss the companion novels:\nTHE GOOSE GIRL 1-58234-990-8 pb - $8.95 1-58234-843-X hc - $17.95 RIVER\nSECRETS 1-58234-901-0 $17.95 New! See page 28-29\"\r\n4071,4235,21456940,أحمد مراد,1919,https://images.gr-assets.com/books/1396549800l/21456940.jpg,3.65,17330,\"history, fiction\",1919أحمد مراد\r\n4072,4236,105999,\"Beverly Cleary, Paul O. Zelinsky\",Dear Mr. Henshaw,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556608149l/105999.jpg,3.7,28979,\"fiction, classics\",\"Dear Mr. Henshaw, I wish somebody would stop stealing the good stuff out of\nmy lunchbag. I guess I wish a lot of other things, too. I wish someday Dad\nand Bandit would pull up in front in the rig ... Dad would yell out of the\ncab, \"\"Come on, Leigh. Hop in and I'll give you a lift to school.\"\" Leigh\nBotts has been author Boyd Henshaw's number one fan ever since he was in\nsecond grade. Now in sixth grade, Leigh lives with his mother and is the\nnew kid at school. He's lonely, troubled by the absence of his father, a\ncross-country trucker, and angry because a mysterious thief steals from his\nlunchbag. Then Leigh's teacher assigns a letter-writing project. Naturally\nLeigh chooses to write to Mr. Henshaw, whose surprising answer changes\nLeigh's life.\"\r\n4073,4238,3378,Douglas Coupland,Generation X: Tales for an Accelerated Culture,https://images.gr-assets.com/books/1485623844l/3378.jpg,3.73,20030,\"fiction, contemporary\",\"Generation X is Douglas Coupland's classic novel about the generation born\nin the late 1950s and 1960s—a generation known until then simply as twenty\nsomethings. Andy, Claire, and Dag, each in their twenties, have quit\npointless jobs in their respective hometowns to find better meaning in\nlife. Adrift in the California desert, the trio develops an ascetic regime\nof story-telling, boozing, and working McJobs—\"\"low-pay, low-prestige, low-\nbenefit, no-future jobs in the service industry.\"\" They create their own\nmodern fables of love and death among the cosmetic surgery parlors and\ncocktail bars of Palm Springs as well as disturbingly funny tales of\nnuclear waste, historical overdosing, and mall culture. A dark snapshot of\nthe trio's highly fortressed inner world quickly emerges—peeling back the\nlayers on their fanatical individualism, pathological ambivalence about the\nfuture, and unsatisfied longing for permanence, love, and their own home.\nAndy, Dag, and Claire are underemployed, overeducated, intensely private,\nand unpredictable. They have nowhere to assuage their fears, and no culture\nto replace their anomie.\"\r\n4074,4239,23168277,Viet Thanh Nguyen,The Sympathizer,https://images.gr-assets.com/books/1423543886l/23168277.jpg,4,20972,\"fiction, history\",The SympathizerViet Thanh Nguyen\r\n4075,4240,16305,Agatha Christie,Evil Under the Sun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922974l/16305.jpg,3.94,28776,\"crime, fiction\",Evil Under the SunAgatha Christie\r\n4076,4241,17375956,Joanna Wylde,Reaper's Property,https://images.gr-assets.com/books/1360943604l/17375956.jpg,4.13,38499,\"romance, contemporary\",\"Marie doesn't need a complication like Horse. The massive, tattooed badass\nbiker who shows up at her brother's house one afternoon doesn't agree. He\nwants Marie on his bike and in his bed. Now. But Marie just left her\nabusive jerk of an ex-husband and she's not looking for a new man.\nEspecially one like Horse. She doesn't know his real name or where he\nlives. She's ninety percent certain he's a criminal and that the \"\"business\"\"\nhe talked with her brother wasn't website design. She needs him out of her\nlife, which would be a snap if he wasn't so damned sexy. Horse is part of\nthe Reapers Motorcycle Club, and when he wants something, he takes it. What\nis he wants is Marie, but she's not interested in becoming some biker's\nproperty. Then her brother steals from the club. Now Marie can save him by\ngiving Horse what he wants-at home, in public, on his bike... and if she's\na very, very good girl, he'll let her brother live. Author's Note: This\nbook was originally released through a small publisher in 2013.\"\r\n4077,4242,164542,\"Mary O'Hara, Dave Blossom\",\"My Friend Flicka (Flicka, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429495342l/164542.jpg,4.15,25180,\"classics, fiction\",The story of Ken McLaughlin and the filly he named Flicka.\r\n4078,4243,12326644,\"Philippa Gregory, Mirjana Valent\",The Kingmaker's Daughter,https://images.gr-assets.com/books/1332688725l/12326644.jpg,3.95,24258,\"fiction, history\",\"Presents a tale inspired by the daughters of \"\"Kingmaker\"\" Richard,\nfifteenth-century Earl of Warwick, who uses his daughters as political\npawns before their strategic marriages place them on opposing sides in a\nroyal war that will cost them everyone they love.\"\r\n4079,4244,292275,\"Henrik Ibsen, William Archer\",Hedda Gabler,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348233987l/292275.jpg,3.79,24567,\"classics, fiction\",\"Hedda GablerHenrik Ibsen, William Archer\"\r\n4080,4245,1298205,Walt Disney Company,Dumbo (Little Golden Book),https://images.gr-assets.com/books/1320426193l/1298205.jpg,4.29,23338,\"fiction, classics\",A little elephant with enormous ears becomes the star of the circus.\r\n4081,4246,22698568,Erika Johansen,The Invasion of the Tearling,https://images.gr-assets.com/books/1461864829l/22698568.jpg,4.15,24341,\"fantasy, fiction\",The Invasion of the TearlingErika Johansen\r\n4082,4247,13256064,\"Jo Nesbø, Don Bartlett\",Gjenferd,https://images.gr-assets.com/books/1333577303l/13256064.jpg,4.11,19526,\"crime, mystery\",\"GjenferdJo Nesbø, Don Bartlett\"\r\n4083,4249,588369,Cecelia Ahern,A Place Called Here,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348943631l/588369.jpg,3.66,22074,\"fiction, fantasy\",\"Since Sandy Shortt's classmate disappeared 20 years ago, she has been\nobsessed with missing things. Finding becomes her goal - whether it's a\nmissing sock or the graver issue of finding the people who vanish from\ntheir lives. Sandy dedicates her life to finding these missing people,\noffering devastated families a flicker of hope.\"\r\n4084,4250,99664,W. Somerset Maugham,The Painted Veil,https://images.gr-assets.com/books/1320421719l/99664.jpg,3.9,24113,\"classics, fiction\",The Painted VeilW. Somerset Maugham\r\n4085,4251,31337,Anne Rice,Blackwood Farm,https://images.gr-assets.com/books/1327522790l/31337.jpg,3.85,24567,\"horror, fantasy\",\"Haunted since birth by a mysterious doppelgèanger known as Goblin, Quinn\nBlackwood seeks out the legendary vampire Lestat to free him from the\nhorrifying specter that draws him back to Sugar Devil Swamp and its dark\nsecrets.\"\r\n4086,4252,832543,Caroline Myss,Anatomy of the Spirit: The Seven Stages of Power and Healing,https://images.gr-assets.com/books/1320424261l/832543.jpg,4.12,20720,\"spirituality, nonfiction\",\"Describes a seven-step process for promoting physical, emotional, and\nspiritual healing, offering a detailed introduction to the new field of\nenergy medicine\"\r\n4087,4253,7036,Alexander McCall Smith,The Kalahari Typing School for Men,https://images.gr-assets.com/books/1380393680l/7036.jpg,3.99,26837,\"mystery, fiction\",The Kalahari Typing School for MenAlexander McCall Smith\r\n4088,4254,16158535,Beatriz Williams,A Hundred Summers,https://images.gr-assets.com/books/1366561825l/16158535.jpg,3.9,22006,\"fiction, romance\",A Hundred SummersBeatriz Williams\r\n4089,4255,25558608,Sabaa Tahir,A Torch Against the Night,https://images.gr-assets.com/books/1463675717l/25558608.jpg,4.34,30535,\"fantasy, romance\",\"After the events of the Fourth Trial, Martial soldiers hunt the two\nfugitives as they flee the city of Serra and undertake a perilous journey\nthrough the heart of the Empire.\"\r\n4090,4256,556136,Gary D. Schmidt,The Wednesday Wars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442044636l/556136._SX318_.jpg,4.06,26847,\"fiction, contemporary\",\"During the 1967 school year, on Wednesday afternoons when all his\nclassmates go to either Catechism or Hebrew school, seventh-grader Holling\nHoodhood stays in Mrs. Baker's classroom where they read the plays of\nWilliam Shakespeare and Holling learns muchof value about the world he\nlives in.\"\r\n4091,4257,227454,R.A. Salvatore,The Legacy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389897830l/227454.jpg,4.18,20882,\"fantasy, fiction\",\"Dark Elf hero Drizzt Do'Urden finds the peace and prosperity of Mithril\nHall--marked by Bruenor's reclaiming of his throne and the marriage of\nWulgar and Carri-brie--shattered when his old enemies, including the Spider\nQueen Lolth, arrive to exact their revenge. Reprint.\"\r\n4092,4258,803171,Judy Schachner,Skippyjon Jones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437964397l/803171._SX318_.jpg,4.25,26421,\"fiction, fantasy\",Skippyjon JonesJudy Schachner\r\n4093,4259,9410421,Nora Roberts,Chasing Fire,https://images.gr-assets.com/books/1302982596l/9410421.jpg,4.09,26687,\"romance, mystery\",Chasing FireNora Roberts\r\n4094,4260,95887,Brian Tracy,Eat That Frog!: 21 Great Ways to Stop Procrastinating and Get More Done in Less Time,https://images.gr-assets.com/books/1328854785l/95887.jpg,3.84,18288,\"business, nonfiction\",Eat That Frog!: 21 Great Ways to Stop Procrastinating and Get More Done in Less TimeBrian Tracy\r\n4095,4261,4600,Sandra Boynton,\"Moo, Baa, La La La!\",https://images.gr-assets.com/books/1451996462l/4600.jpg,4.19,26065,\"fiction, classics\",\"Moo, Baa, La La La!Sandra Boynton\"\r\n4096,4262,342504,Wallace D. Wattles,The Science of Getting Rich,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440958184l/342504._SX318_.jpg,4.18,19433,\"business, nonfiction\",\"Transform your approach to money and create success. The formula for\ngetting rich from a Christian perspective and the inspiration behind Rhonda\nByrne's bestselling book and movie, The Secret. Wallace Wattles concisely\nshows how to use the power of thought and willpower on the way to getting\nrich. Use the Science of Getting Rich to: Think creatively, rather than\ncompetitively and how this is one of the keys to becoming wealthy Set\nyourself on the right course to obtaining wealth Get rich in a ethical way\nUse positive thinking to obtain your desires Succeed doing what you want to\ndo Wattles shows that by focusing only on what your heart desires and\nbelieving unconditionally that those things are yours to have, you connect\nto the Universe which gave you those desires in the first place and intends\nfor you to fulfil them. His philosophy is at the essence of how we can\nattain real fulfilment and inner-peace doing what we love. This book will\nshow you exactly how to control your thoughts so you can have the success\nyou were created for. Science of getting Rich contents: The Right To Be\nRich There is A Science of Getting Rich Is Opportunity Monopolized? The\nFirst Principle in The Science of Getting Rich Increasing Life How Riches\nCome to You Gratitude Thinking in the Certain Way How to Use the Will\nFurther Use of the Will Acting in the Certain Way Efficient Action Getting\ninto the Right Business The Impression of Increase The Advancing Man Some\nCautions, and Concluding Observations Summary of the Science of Getting\nRich Inspiring quotes from The Science of Getting Rich: \"\"The very best\nthing you can do for the whole world is to make the most of yourself.\"\" \"\"You\nmust get rid of the thought of competition. You are to create, not to\ncompete for what is already created.\"\" \"\"Get rich; that is the best way you\ncan help the poor.\"\" \"\"Do all the work you can do, every day, and do each\npiece of work in a perfectly successful manner; put the power of success,\nand the purpose to get rich, into everything that you do\"\" \"\"Success in life\nis becoming what you want to be.\"\" \"\"A man's way of doing things is the\ndirect result of the way he thinks about things.\"\" \"\"To get rich, you need\nonly to use your will power upon yourself.\"\" Excerpt from chapter 1 - The\nRight to be Rich Whatever may be said in praise of poverty, the fact\nremains that it is not possible to live a really complete or successful\nlife unless one is rich. No man can rise to his greatest possible height in\ntalent or soul development unless he has plenty of money; for to unfold the\nsoul and to develop talent he must have many things to use, and he cannot\nhave these things unless he has money to buy them with. A man develops in\nmind, soul, and body by making use of things, and society is so organized\nthat man must have money in order to become the possessor of things;\ntherefore, the basis of all advancement for man must be the science of\ngetting rich. The object of all life is development; and everything that\nlives has an inalienable right to all the development it is capable of\nattaining. Man's right to life means his right to have the free and\nunrestricted use of all the things which may be necessary to his fullest\nmental, spiritual, and physical unfoldment; or, in other words, his right\nto be rich. In this book, I shall not speak of riches in a figurative way;\nto be really rich does not mean to be satisfied or contented with a little.\nNo man ought to be satisfied with a little if he is capable of using and\nenjoying more.\"\r\n4097,4263,2277444,James Rollins,The Last Oracle,https://images.gr-assets.com/books/1367511748l/2277444.jpg,4.15,23103,\"fiction, suspense\",\"In Washington, D.C., a homeless man takes an assassin's bullet and dies in\nCommander Gray Pierce's arms. A bloody coin clutched in the dead man's\nhand—an ancient relic that can be traced back to the Greek Oracle of\nDelphi—is the key to a conspiracy that dates back to the Cold War and\nthreatens the very foundation of humanity. For what if it were possible to\nbioengineer the next great prophet—a new Buddha, Muhammad, or even Jesus?\nWould this Second Coming be a boon . . . or would it initiate a chain\nreaction that would result in the extinction of humankind? Vital seconds\nare ticking rapidly away as Pierce races across the globe in search of\nanswers, one step ahead of ruthless killers determined to reclaim the\npriceless artifact. Suddenly the future of all things is balanced on the\nbrink between heaven and hell—and salvation or destruction rests in the\nhands of remarkable children. Will the past be enough to save the future?\"\r\n4098,4264,2501458,\"أحلام مستغانمي, Ahlam Mosteghanemi\",ذاكرة الجسد,https://images.gr-assets.com/books/1291756684l/2501458.jpg,3.87,17717,\"fiction, ebooks\",\"ذاكرة الجسدأحلام مستغانمي, Ahlam Mosteghanemi\"\r\n4099,4265,101911,A. Manette Ansay,Vinegar Hill (P.S.),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440121207l/101911._SY475_.jpg,3.36,23966,\"fiction, contemporary\",\"In a stark, troubling, yet ultimately triumphant celebration of self-\ndetermination, award-winning author A. Manette Ansay re-creates a stifling\nworld of guilty and pain, and the tormented souls who inhabit it. It is\n1972 when circumstance carries Ellen Grier and her family back to Holly's\nField, Wisconsin. Dutifully accompanying her newly unemployed husband,\nEllen has brought her two children into the home of her in-laws on Vinegar\nHill--a loveless house suffused with the settling dust of bitterness and\nroutine--where calculated cruelty is a way of life preserved and\nperpetuated in the service of a rigid, exacting and angry God. Behind a\nfacade of false piety, there are sins and secrets in this place that could\ncrush a vibrant young woman's passionate spirit. And here Ellen must find\nthe straight to endure, change, and grow in the all-pervading darkness that\nthreatens to destroy everything she is and everyone she loves.\"\r\n4100,4266,234501,David Brin,Startide Rising,https://images.gr-assets.com/books/1476445711l/234501.jpg,4.04,24179,\"fiction, science\",\"After crash-landing on an uncharted planet, the human and dolphin crew of a\nspaceship from Earth battle fleets of alien warships.\"\r\n4101,4267,16282066,Shelly Crane,Significance,https://images.gr-assets.com/books/1434591910l/16282066.jpg,4.13,18579,\"paranormal, romance\",\"A story by NEW YORK TIMES and USA TODAY bestselling author, Shelly Crane.\nMaggie is a seventeen year old girl who's had a bad year. Her mom left, her\ndad is depressed, she's graduating, barely, and her boyfriend of almost\nthree years dumped her for a college football scholarship. Lately she\nthinks life is all about hanging on by a thread and is gripping tight with\neverything she has. Then she meets Caleb. She saves his life and instantly\nknows there's something about him that's intriguing but she is supposed to\nbe on her way to a date with his cousin. But things change when they touch,\nsparks ignite. Literally. They imprint with each other and she sees their\nfuture life together flash before her eyes. She learns that not only is she\nhis soul mate, and can feel his heartbeat in her chest, but there is a\nwhole other world of people with gifts and abilities that she never knew\nexisted. She herself is experiencing supernatural changes unlike anything\nshe's ever felt before and she needs the touch of his skin to survive. Now,\nnot only has her dad come out of his depression to be a father again, and a\npain as well, but Caleb's enemies know he's imprinted and are after Maggie\nto stop them both from gaining their abilities and take her from him. Can\nCaleb save her or will they be forced to live without each other after just\nfinding one another? Read the epic love story before the TV show!\"\r\n4102,4268,880,Robert   Harris,Pompeii,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189565l/880.jpg,3.79,22734,\"fiction, history\",PompeiiRobert   Harris\r\n4103,4269,25066991,David Baldacci,The Guilty,https://images.gr-assets.com/books/1435632658l/25066991.jpg,4.12,12597,\"thriller, fiction\",The GuiltyDavid Baldacci\r\n4104,4270,243685,Bertrand Russell,A History of Western Philosophy And Its Connection with Political and Social Circumstances from the Earliest Times to the Present Day,https://images.gr-assets.com/books/1344399003l/243685.jpg,4.05,20895,\"philosophy, history\",A History of Western Philosophy And Its Connection with Political and Social Circumstances from the Earliest Times to the Present DayBertrand Russell\r\n4105,4271,13235,Lewis Carroll,Complete Works of Lewis Carroll,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920699l/13235.jpg,4.34,23390,\"classics, poetry\",Complete Works of Lewis CarrollLewis Carroll\r\n4106,4272,39542,Nigella Lawson,How to Be a Domestic Goddess: Baking and the Art of Comfort Cooking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388364849l/39542.jpg,4,22647,\"cookbooks, nonfiction\",How to Be a Domestic Goddess: Baking and the Art of Comfort CookingNigella Lawson\r\n4107,4273,672875,\"Thomas Malory, Keith Baines, Robert Graves\",Le Morte d'Arthur,https://images.gr-assets.com/books/1309288301l/672875.jpg,3.92,25879,\"classics, fantasy\",\"Le Morte d'ArthurThomas Malory, Keith Baines, Robert Graves\"\r\n4108,4274,196764,Cupcake Brown,A Piece of Cake: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360391l/196764.jpg,4.15,20083,\"memoir, nonfiction\",\"An inspirational, frequently disturbing memoir of a troubled youth\ndescribes how the author fell victim to the ills of the child welfare\nsystem and her long and difficult struggle to rebuild her life.\"\r\n4109,4275,24782,Lloyd Alexander,Taran Wanderer,https://images.gr-assets.com/books/1406315774l/24782.jpg,4.14,29544,\"fantasy, fiction\",\"The fourth book of the Prydain cycle tells of the adventures that befell\nTaran when he went in search of his birthright and the truth about himself.\"\r\n4110,4276,136637,\"Douglas Preston, Lincoln Child\",Brimstone,https://images.gr-assets.com/books/1369943498l/136637.jpg,4.12,24949,\"horror, suspense\",\"A body is found in the attic of a fabulous Long Island estate. There is a\nclaw print scorched into the wall, and the stench of sulfur chokes the air.\nWhen FBI Special Agent Pendergast investigates the gruesome crime, he\ndiscovers that thirty years ago four men conjured something unspeakable.\nHas the devil come to claim his due? Some things can't be undone.\"\r\n4111,4277,17529,Kate Douglas Wiggin,Rebecca of Sunnybrook Farm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348026765l/17529.jpg,3.85,27831,\"classics, fiction\",Rebecca of Sunnybrook FarmKate Douglas Wiggin\r\n4112,4278,114166,Lisa Kleypas,Devil in Winter ,https://images.gr-assets.com/books/1309220205l/114166.jpg,4.26,38100,\"romance, fiction\",Devil in Winter Lisa Kleypas\r\n4113,4279,2169506,Susan Beth Pfeffer,The Dead and the Gone,https://images.gr-assets.com/books/1266309782l/2169506.jpg,3.84,28910,\"fiction, fantasy\",The Dead and the GoneSusan Beth Pfeffer\r\n4114,4280,125955,Ted Dekker,White,https://images.gr-assets.com/books/1380858193l/125955.jpg,4.3,23201,\"fantasy, fiction\",\"Thomas tries to fight wars on two different worlds, one in which a virus\nthreatens to wipe out all life and the other in which a forbidden love can\ndestroy the Circle.\"\r\n4115,4281,6758331,Gena Showalter,\"The Darkest Passion (Lords of the Underworld, #5)\",https://images.gr-assets.com/books/1351278057l/6758331.jpg,4.37,32610,\"paranormal, romance\",\"The Darkest Passion (Lords of the Underworld, #5)Gena Showalter\"\r\n4116,4282,4601396,Chuck Palahniuk,Pygmy,https://images.gr-assets.com/books/1320495043l/4601396.jpg,2.96,21242,\"fiction, contemporary\",\"Pygmy--a young adult from a totalitarian state, disguised as an exchange\nstudent--plans a terrorist attack and depicts U.S. Midwestern life through\nthe eyes of a hateful, indoctrinated little killer, in this double-edged\nsatire of American xenophobia by the best-selling author of Fight Club.\nReprint. A best-selling novel.\"\r\n4117,4283,16130307,Lauren Weisberger,Revenge Wears Prada: The Devil Returns,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440180884l/16130307._SX318_.jpg,2.84,19210,\"fiction, romance\",\"A long-awaited sequel to The Devil Wears Prada finds Andy Sachs and her\npartner, Emily, blossoming throughout eight years at the head of a wildly\nsuccessful high fashion bridal magazine only to be haunted by memories of\ntheir former boss on the eve of Andy's wedding. 350,000 first printing.\"\r\n4118,4284,5693,\"Anton Chekhov, Richard Pevear, Larissa Volokhonsky\",Рассказы и Повести,https://images.gr-assets.com/books/1491936310l/5693.jpg,4.36,23027,\"fiction, classics\",\"Presents English translations of thirty short stories by nineteenth-century\nRussian author Anton Chekhov, including representative selections from each\nof his major creative periods.\"\r\n4119,4285,7648269,S.C. Gwynne,\"Empire of the Summer Moon: Quanah Parker and the Rise and Fall of the Comanches, the Most Powerful Indian Tribe in American History\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395176404l/7648269.jpg,4.13,19423,\"history, nonfiction\",\"Describes the actions of both whites and Comanches during a 40-year war\nover territory, in a story that begins with the kidnapping of a white girl,\nwho grew up to marry a Comanche chief and have a son, Quanah, who became a\ngreat warrior.\"\r\n4120,4286,18999,John le Carré,Smiley's People,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348407722l/18999.jpg,4.24,22691,\"thriller, fiction\",Smiley's PeopleJohn le Carré\r\n4121,4287,11433,\"Karen Kingsbury, Gary Smalley\",Redemption,https://images.gr-assets.com/books/1406514548l/11433.jpg,4.36,22101,\"christian, fiction\",\"When Laura Baxter Jacobs finds out that her husband is involved in an\nadulterous relationship and wants a divorce, she decides she will love him\nand remain faithful to her marriage at all costs. This book shows how God\ncan redeem seemingly hopeless relationships, while illustrating one of Gary\nSmalley's key messages: love is a decision.\"\r\n4122,4288,64481,Jennifer Donnelly,A Northern Light,https://images.gr-assets.com/books/1376507768l/64481.jpg,3.83,29018,\"mystery, fiction\",\"In 1906, sixteen-year-old Mattie, determined to attend college and be a\nwriter against the wishes of her father and fiance, takes a job at a summer\ninn where she discovers the truth about the death of a guest. Based on a\ntrue story.\"\r\n4123,4289,79705,\"Tim LaHaye, Jerry B. Jenkins\",Apollyon: The Destroyer Is Unleashed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407891956l/79705.jpg,3.97,23202,\"christian, fiction\",\"International fugitives Rayford Steele and Buck Williams travel to\nJerusalem as the fourth judgment of the apocalypse begins. Reprint. 500,000\nfirst printing.\"\r\n4124,4290,192893,Dorothy L. Sayers,Whose Body?,https://images.gr-assets.com/books/1387573241l/192893.jpg,3.91,28214,\"mystery, fiction\",\"The stark naked body was lying in the tub. Not unusual for a proper bath,\nbut highly irregular for murder -- especially witha pair of gold pince-nez\ndeliberately perched before the sightless eyes. What's more, the face\nappeared to have been shaved after death. The police assumed that the\nvictim was a prominent financier, but Lord Peter Wimsey, who dabbled in\nmystery detection as a hobby, knew better. In this, his first murder case,\nLord Peter untangles the ghastly mystery of the corpse in the bath.\"\r\n4125,4292,737957,Ross King,Michelangelo and the Pope's Ceiling,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348041547l/737957.jpg,3.82,20718,\"history, art\",Michelangelo and the Pope's CeilingRoss King\r\n4126,4293,11922,Kelley Armstrong,Stolen,https://images.gr-assets.com/books/1300923278l/11922.jpg,4.16,34373,\"paranormal, fantasy\",\"The only living female werewolf, Elena Michaels confronts billionaire\nTyrone Winsloe, who has been capturing Elena's fellow paranormal brethren,\nconducting experiments on them, and hunting them to their deaths in a live\nvideo game.\"\r\n4127,4294,85306,David Baldacci,Hour Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388416892l/85306.jpg,3.94,23124,\"mystery, fiction\",\"Amazon.com Review Two disgraced former Secret Service officers team up to\nsolve a series of copy-cat crimes in this exciting new thriller by a master\nof the game. Sean King was momentarily distracted when a presidential\ncandidate he'd been guarding was assassinated a few feet from where he\nstood, and Michelle Maxwell left the Service under a similar cloud when she\nlost a \"\"protectee\"\" to an ingenious kidnapping scheme, events told in\nBaldacci's typical terse, fast-paced style in __. Now partners in a private\ninvestigation firm in a small Virginia town, they're hired to investigate a\nburglary at the home of a wealthy local family. But even before the chief\nsuspect in the break-in meets his death in a gruesome slaying reminiscent\nof a serial killer long since caught and punished, King and Maxwell get\ncaught up in a string of other murders, each of which copies the techniques\nof another madman, from San Francisco's Zodiac Killer to Chicago's infamous\nJohn Wayne Gacy. While the two protagonists aren't especially complex or\nwell-developed, the action never stops, and Baldacci's trademark pacing\nkeeps the reader turning pages until the denouement, which unfortunately\nisn't quite as satisfying as the rest of the novel. --Jane Adams Amazon.com\nExclusive Content Why Hour Game: An Exclusive Essay by David Baldacci Hour\nGame, he went out of his way to create a murderous original. Read this\nAmazon.com From Publishers Weekly Baldacci's last book, Split Second, was a\nrelatively weak offering from this bestselling author, sunk by a cartoonish\nvillain and absurd plot. But it did introduce two of Baldacci's (_Absolute\nPower_, etc.) most memorable characters, former Secret Service agents Sean\nKing and Michelle Maxwell, in business together as private investigators in\nsmalltown Wrightsburg, Va. Baldacci is back in form, and King and Maxwell\nreappear in this utterly absorbing, complex mystery-thriller that spins in\nunexpected directions. The novel starts as a serial-killer thriller, for\nthere's a murderer at work in Wrightsburg whose selection of victims\nappears random but whose modus operandi, differing from kill to kill,\nmimics the work of a notorious serial killer—the Zodiac killer, John Wayne\nGacy, etc. The fifth victim is local resident and international tycoon\nRobert E. Lee Battle. King and Maxwell have already been tangling with the\ngothic horror show of a dysfunctional Southern family that is the Battles,\nas they've been hired to help prove the innocence of a Battle handyman\naccused of stealing from the family. Then that handyman is murdered, and\nthe duo (along with a clueless local sheriff and an obnoxious FBI agent)\nmust race to figure out if the same killer is behind all the murders and,\nif so, why. There are terrific action sequences sprinkled throughout, and\nplenty of suspense, and the King/Maxwell relationship, while not romantic,\nemits sparks. It's Baldacci's portrayal of smalltown Southern life,\nhowever, and his sharp characterizations of the Battles, from the bombastic\nBobby and his regal widow to his weird extended family, that give the novel\ntexture and depth: this is Baldacci's most accomplished tale since his\nnonthriller Wish You Well, and it rivals that novel in its social\ncommentary. Despite fair clues, few if any readers will ID the villain\n(villains?) before they're revealed, and a snappy surprise ending will have\nBaldacci's many fans remembering why they love this author so much.\nCopyright © Reed Business Information, a division of Reed Elsevier Inc. All\nrights reserved.\"\r\n4128,4295,2277378,Louise Penny,The Cruelest Month,https://images.gr-assets.com/books/1327970261l/2277378.jpg,4.15,23121,\"mystery, fiction\",The Cruelest MonthLouise Penny\r\n4129,4296,10444,\"Noel Streatfeild, Diane Goode\",Ballet Shoes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180362l/10444.jpg,4.06,26211,\"classics, fiction\",\"In a classic children's story, three unsinkable orphans, believing that\nthey are destined for greatness, set out to make their marks in the world\nof show business. Reprint.\"\r\n4130,4297,93000,Harry Gregson-Williams,\"The Chronicles of Narnia: The Lion, the Witch and The Wardrobe (Sheet Music)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349023172l/93000.jpg,4.32,17866,\"fantasy, fiction\",Presents piano selections from the motion picture.\r\n4131,4298,668,\"Ayn Rand, Leonard Peikoff\",We the Living,https://images.gr-assets.com/books/1306188481l/668.jpg,3.89,20994,\"classics, philosophy\",\"We the Living depicts the struggle of the individual against the state, and\nthe impact of the Russian Revolution on three human beings who demand the\nright to live their own lives and pursue their own happiness. This classic\nnovel is not a story of politics, but of the men and women who fight for\nexistence within a totalitarian state.\"\r\n4132,4299,20443207,Marie Rutkoski,The Winner's Crime,https://images.gr-assets.com/books/1411741455l/20443207.jpg,4.17,31721,\"fantasy, romance\",\"Following your heart can be a crime A royal wedding is what most girls\ndream about. It means one celebration after another: balls, fireworks, and\nrevelry until dawn. But to Kestrel it means living in a cage of her own\nmaking. As the wedding approaches, she aches to tell Arin the truth about\nher engagement: that she agreed to marry the crown prince in exchange for\nArin's freedom. But can Kestrel trust Arin? Can she even trust herself? For\nKestrel is becoming very good at deception. She's working as a spy in the\ncourt. If caught, she'll be exposed as a traitor to her country. Yet she\ncan't help searching for a way to change her ruthless world . . . and she\nis close to uncovering a shocking secret. This dazzling follow-up to The\nWinner's Curse reveals the high price of dangerous lies and untrustworthy\nalliances. The truth will come out, and when it does, Kestrel and Arin will\nlearn just how much their crimes will cost them. The Winner's Crime by\nMarie Rutkoski is the second book in the Winner's Trilogy. “The Winner's\nCrime teeters on a knife-sharp edge between devastatingly romantic one\nmoment and simply devastating the next. Marie Rutkoski has captivated me\nwith her world of mind games, power struggles, and espionage, and left me\npositively desperate to see how Kestrel and Arin's story will play out.”\n—Marissa Meyer, New York Times-bestselling author of the Lunar Chronicles\nseries \"\"The middle entry in a fantasy trilogy brings new players to the\ngame while exponentially raising the stakes. . . . . The twisty plot is a\ncleverly constructed puzzle box of intrigue and deceit, couched in graceful\nprose that shifts from restrained to voluptuous. . . . Enthralling,\nagonizing and incandescent.\"\" —Kirkus Reviews, starred review “Brilliant\nplotting and absolutely gorgeous writing combine to make The Winner's Crime\na standout, but it is the complex, deeply layered characters with their gut\nwrenching dilemmas and impossible choices that cracked my heart wide open.\nIt left me breathless and craving more--I don't know how I will be able to\nwait for the final book. A truly unforgettable read!” —Robin LaFevers, New\nYork Times–bestselling author of Grave Mercy and Dark Triumph\"\r\n4133,4301,76889,E.E. Cummings,100 Selected Poems by e. e. Cummings,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179993l/76889.jpg,4.32,22346,\"poetry, classics\",\"Lyrical verses span the career of a twentieth-century American poet, and\nilluminate his concern for the future of humanity\"\r\n4134,4302,2202049,Jen Lancaster,\"Such a Pretty Fat: One Narcissist's Quest to Discover if Her Life Makes Her Ass Look Big, or Why Pie is Not the Answer\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348071660l/2202049.jpg,4.06,24631,\"memoir, nonfiction\",\"A hilarious, refreshingly honest new memoir by the author of Bitter Is the\nNew Black and Bright Lights, Big Ass sheds new light on the subject of\nsurly neighbors, marriage, urban life, beauty, the fitness craze, and other\nidiosyncrasies of the modern world. Original.\"\r\n4135,4303,831194,Erin Hunter,Forest of Secrets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198807l/831194.jpg,4.4,28913,\"fantasy, fiction\",Forest of SecretsErin Hunter\r\n4136,4304,6065182,Sarah Waters,The Little Stranger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348922866l/6065182.jpg,3.51,21077,\"fiction, horror\",\"After being summoned to treat a patient at dilapidated Hundreds Hall, Dr.\nFaraday finds himself becoming entangled in the lives of the owners, the\nAyres family, and the supernatural presences in the house.\"\r\n4137,4305,17562900,Patricia Briggs,Night Broken,https://images.gr-assets.com/books/1379437095l/17562900.jpg,4.42,31278,\"fantasy, paranormal\",Night BrokenPatricia Briggs\r\n4138,4306,17399160,Sara Raasch,Snow Like Ashes,https://images.gr-assets.com/books/1392224823l/17399160.jpg,3.98,34993,\"fantasy, romance\",\"A striking fantasy tale of dark magic, dangerous politics, and discovering\nyour true self—perfect for fans of Game of Thrones, An Ember in the Ashes\nand A Court of Thorns and Roses. Sixteen years ago the Kingdom of Winter\nwas conquered and its citizens enslaved, leaving them without magic or a\nmonarch. Now the Winterians' only hope for freedom is the eight survivors\nwho managed to escape, and who have been waiting for the opportunity to\nsteal back Winter's magic and rebuild the kingdom ever since. Orphaned as\nan infant during Winter's defeat, Meira has lived her whole life as a\nrefugee. Training to be a warrior—and desperately in love with her best\nfriend, Winter's future king—she would do anything to help Winter rise to\npower again. So when scouts discover the location of the ancient locket\nthat can restore Winter's magic, Meira decides to go after it herself—only\nto find herself thrust into a world of evil magic and dangerous\npolitics—and ultimately comes to realize that her destiny is not, never has\nbeen, her own.\"\r\n4139,4307,17830123,Matthew  Thomas,We Are Not Ourselves,https://images.gr-assets.com/books/1418103690l/17830123.jpg,3.7,18488,\"fiction, contemporary\",\"\"\"Born in 1941, Eileen Tumulty is raised by her Irish immigrant parents in\nWoodside, Queens, in an apartment where the mood swings between heartbreak\nand hilarity, depending on whether guests are over and how much alcohol has\nbeen consumed. Eileen can't help but dream of a calmer life, in a better\nneighborhood. When Eileen meets Ed Leary, a scientist whose bearing is\nnothing like those of the men she grew up with, she thinks she's found the\nperfect partner to deliver her to the cosmopolitan world she longs to\ninhabit. They marry, and Eileen quickly discovers Ed doesn't aspire to the\nsame, ever bigger, stakes in the American Dream. Eileen encourages her\nhusband to want more: a better job, better friends, a better house, but as\nyears pass it becomes clear that his growing reluctance is part of a deeper\npsychological shift. An inescapable darkness enters their lives, and Eileen\nand Ed and their son Connell try desperately to hold together a semblance\nof the reality they have known, and to preserve, against long odds, an idea\nthey have cherished of the future. Through the Learys, novelist Matthew\nThomas charts the story of the American Century, particularly the promise\nof domestic bliss and economic prosperity that captured hearts and minds\nafter WWII. The result is a powerfully affecting work of art; one that\nreminds us that life is more than a tally of victories and defeats, that we\nlive to love and be loved, and that we should tell each other so before the\nmoment slips away. Epic in scope, heroic in character, masterful in prose,\nWe Are Not Ourselves is a testament to our greatest desires and our\ngreatest frailties.\"\"--\"\r\n4140,4308,59821,Nora Roberts,Red Lily,https://images.gr-assets.com/books/1362364238l/59821.jpg,4.07,29200,\"romance, fiction\",\"In this conclusion to the In the Garden trilogy, Hayley, finally finding a\nplace to settle down with her young daughter, revels in newfound\nfriendships, one of which leads to romance, while investigating a\ncenturies-old mystery. Original.\"\r\n4141,4309,159760,Mary Pipher,Reviving Ophelia: Saving the Selves of Adolescent Girls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441333242l/159760._SY475_.jpg,3.86,22687,\"nonfiction, psychology\",\"Describes the psychological pitfalls faced by teenage girls growing up in a\ndangerous world in which violence, sexual harassment, eating disorders,\npromiscuity, and drug use have become the norm.\"\r\n4142,4310,68526,Bernard Cornwell,The Lords of the North,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440472759l/68526._SY475_.jpg,4.32,20296,\"fiction, history\",The Lords of the NorthBernard Cornwell\r\n4143,4311,162719,Margaret Peterson Haddix,Just Ella,https://images.gr-assets.com/books/1327897599l/162719.jpg,3.75,27884,\"fantasy, romance\",\"It's a familiar story: In spite of the obstacles put in her way by her\nwicked stepmother, Ella goes to the ball, sweeps Prince Charming off his\nfeet, and is chosen to be his bride. Now she's comfortably ensconced in the\npalace, awaiting marriage to the man of her dreams. It's happily ever after\ntime, right? Wrong! Life for Ella has become an endless round of lessons\nand restrictions; even worse, Prince Charming turns out to be more like\nPrince Boring. Why can't she talk with him the way she can with Jed, her\nearnest young tutor? Slowly, Ella comes to realize she doesn't want the\nlife she fought so hard to win. But breaking her engagement proves more\ndifficult -- and dangerous -- than escaping her stepmother's tyranny.\"\r\n4144,4312,16122643,Raine Miller,Eyes wide open,https://images.gr-assets.com/books/1360846127l/16122643.jpg,4.14,36054,\"romance, contemporary\",\"Set against the backdrop of the 2012 Olympic games in London, Ethan and\nBrynne try to move on from the painful histories that continue to haunt\nthem while being stalked by a dangerous enemy who will not stop until they\nlose everything.\"\r\n4145,4313,18404427,Lisa See,China Dolls,https://images.gr-assets.com/books/1405290827l/18404427.jpg,3.58,20563,\"fiction, history\",\"Overcoming respective pasts to audition for showgirl roles at an exclusive\nSan Francisco nightclub, three Asian-American girls rely on each other for\nsurvival until the Japanese attack on Pearl Harbor causes one of them to be\nbetrayed and sent to an internment camp. 200,000 first printing.\"\r\n4146,4314,238360,Kate Brian,Megan Meade's Guide to the McGowan Boys,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388397285l/238360.jpg,3.93,29726,\"romance, contemporary\",\"While her military parents are stationed in South Korea, high school junior\nMegan learns a great deal about boys and herself when she she moves to\nMassachusetts and lives with a family that has seven sons.\"\r\n4147,4315,911579,\"Russell Hoban, Lillian Hoban\",Bread and Jam for Frances,https://images.gr-assets.com/books/1384258893l/911579.jpg,4.2,27933,\"fiction, classics\",\"Bread and Jam for FrancesRussell Hoban, Lillian Hoban\"\r\n4148,4316,9567,Tom Robbins,Half Asleep in Frog Pajamas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347326626l/9567.jpg,3.73,17053,\"fiction, contemporary\",\"After the stock market crashes on the Thursday before Easter, an ambitious\nbut ineffectual young stockbroker faces a mind-blowing, destiny-altering\nweekend of scheming to escape blame and coping with a mysterious stranger\"\r\n4149,4317,15858,Gregory Maguire,Mirror Mirror,https://images.gr-assets.com/books/1407710336l/15858.jpg,3.27,26307,\"fantasy, fiction\",\"The year is 1502, and seven-year-old Bianca de Nevada lives perched high\nabove the rolling hills and valleys of Tuscany and Umbria at Montefiore,\nthe farm of her beloved father, Don Vicente. But one day a noble entourage\nmakes its way up the winding slopes to the farm -- and the world comes to\nMontefiore. In the presence of Cesare Borgia and his sister, the lovely and\nvain Lucrezia -- decadent children of a wicked pope -- no one can claim\ninnocence for very long. When Borgia sends Don Vicente on a years-long\nquest, he leaves Bianca under the care -- so to speak -- of Lucrezia. She\nplots a dire fate for the young girl in the woods below the farm, but in\nthe dark forest salvation can be found as well ... A lyrical work of\nstunning creative vision, Mirror Mirror gives fresh life to the classic\nstory of Snow White -- and has a truth and beauty all its own.\"\r\n4150,4318,21969786,Patrick Ness,More Than This,https://images.gr-assets.com/books/1398164413l/21969786.jpg,4.03,21512,\"fiction, fantasy\",More Than ThisPatrick Ness\r\n4151,4319,293625,Cormac McCarthy,Child of God,https://images.gr-assets.com/books/1320509467l/293625.jpg,3.86,20313,\"fiction, horror\",\"A violent, dispossessed man roams the Tennessee hill country caught up in\nhis own depravity\"\r\n4152,4320,95621,Francine Rivers,\"As Sure as the Dawn (Mark of the Lion, #3)\",https://images.gr-assets.com/books/1490993178l/95621.jpg,4.39,23509,\"fiction, christian\",\"When gladiator Atretes locates his missing son, his plans to return to\nGermania are upset by Rizpah, the young widow who adopted his abandoned\nbaby and who will fight to keep the child she loves.\"\r\n4153,4321,16158596,Max Barry,Lexicon,https://images.gr-assets.com/books/1356080172l/16158596.jpg,3.9,20524,\"fiction, thriller\",\"Recruited into an exclusive government school where students are taught the\nscience of coercion to support a secretive organization, orphaned street\nhustler Emily Ruff becomes the school's most talented prodigy before\ncatastrophically falling in love.\"\r\n4154,4322,2804776,\"Candace Bushnell, Donna Murphy\",One Fifth Avenue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255607925l/2804776.jpg,3.33,20962,\"fiction, romance\",\"One Fifth AvenueCandace Bushnell, Donna Murphy\"\r\n4155,4323,20701984,\"Cece Bell, David Lasky\",El Deafo,https://images.gr-assets.com/books/1423770455l/20701984.jpg,4.13,27630,\"memoir, biography\",\"The author recounts in graphic novel format her experiences with hearing\nloss at a young age, including using a bulky hearing aid, learning how to\nlip read, and determining her \"\"superpower.\"\"\"\r\n4156,4324,16140408,Samantha Young,Down London Road,https://images.gr-assets.com/books/1363128044l/16140408.jpg,4.24,38186,\"romance, contemporary\",\"Johanna Walker, used to taking charge especially since it has always been\nup to her to care for her family due to an absent father and a useless\nmother, is tempted to finally put her own needs first when the sexy new\nbartender at work moves into the flat below hers. Original.\"\r\n4157,4325,30069,\"Robert Kirkman, Charlie Adlard\",\"The Walking Dead, Vol. 3: Safety Behind Bars\",https://images.gr-assets.com/books/1345769167l/30069.jpg,4.31,23167,\"horror, fiction\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n4158,4326,22584,Philip K. Dick,\"Flow My Tears, the Policeman Said\",https://images.gr-assets.com/books/1398026028l/22584.jpg,3.93,22063,\"fiction, fantasy\",\"\"\"Grappling with many of the themes Philip K. Dick is best known for--\nidentity, altered reality, drug use, and dystopias--Flow My Tears, the\nPoliceman Said is both a rollicking chase story and a meditation on\nreality. Jason Taverner--talk show host and man-about-town--wakes one day\nto find that no one knows who he is. In a society where lack of\nidentification is a crime, Taverner must evade the secret police while\ntrying to unravel the mystery of why no one remembers him\"\"--\"\r\n4159,4327,95622,Francine Rivers,The Last Sin Eater,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171304293l/95622._SY475_.jpg,4.06,20985,\"fiction, christian\",The Last Sin EaterFrancine Rivers\r\n4160,4328,73385,Jude Deveraux,A Knight in Shining Armor,https://images.gr-assets.com/books/1330613623l/73385.jpg,4.23,26636,\"romance, fiction\",A Knight in Shining ArmorJude Deveraux\r\n4161,4329,7157310,Jonathan Maberry,Rot & Ruin,https://images.gr-assets.com/books/1264898635l/7157310.jpg,4.1,25526,\"horror, fiction\",Rot & RuinJonathan Maberry\r\n4162,4331,1149440,Charles R. Cross,Heavier Than Heaven: A Biography of Kurt Cobain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348289083l/1149440.jpg,4.09,18496,\"nonfiction, biography\",\"This is the first in-depth biography of the troubled genius Kurt Cobain.\nBased on exclusive access to Cobains unpublished diaries, more than 400\ninterviews, four years of research, and a wealth of documentation, Heavier\nThan Heaven traces Cobains life from his early days in a double-wide\ntrailer outside of Aberdeen, Washington, to his rise to fame, fortune, and\nthe adulation of a generation.\"\r\n4163,4332,261243,\"Thucydides, Rex Warner, Moses I. Finley\",Ἱστορίαι,https://images.gr-assets.com/books/1422072332l/261243.jpg,3.87,21500,\"classics, history\",\"A translation of Thucydide's history of the wars between Athens and Sparta\nis critically introduced\"\r\n4164,4334,5776788,Richard Kadrey,Sandman Slim,https://images.gr-assets.com/books/1311727590l/5776788.jpg,3.93,22779,\"fantasy, horror\",\"Supernatural fantasy has a new antihero Life sucks and then you die. Or, if\nyou're James Stark, you spend eleven years in Hell as a hitman before\nfinally escaping, only to land back in the hell-on-earth that is Los\nAngeles. Now Stark's back, and ready for revenge. And absolution, and maybe\neven love. But when his first stop saddles him with an abusive talking\nhead, Stark discovers that the road to absolution and revenge is much\nlonger than you'd expect, and both Heaven and Hell have their own ideas for\nhis future. Resurrection sucks. Saving the world is worse.\"\r\n4165,4335,5556466,John Hart,The Last Child,https://images.gr-assets.com/books/1312058481l/5556466.jpg,4.09,22293,\"mystery, fiction\",The Last ChildJohn Hart\r\n4166,4336,17717,\"Jorge Luis Borges, Donald A. Yates, James E. Irby, André Maurois\",Labyrinths,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286895l/17717.jpg,4.46,20237,\"fiction, classics\",\"A new edition of a classic work by a late forefront Argentinean writer\nfeatures the 1964 augmented original text and is complemented by a\nbiographical essay, a tribute to the writer's body of work, and a\nchronology of his life. Reprint.\"\r\n4167,4337,89399,Anita Shreve,Fortune's Rocks,https://images.gr-assets.com/books/1344271150l/89399.jpg,3.86,22908,\"fiction, romance\",\"At a turn-of-the-century coastal resort in New Hampshire, young Olympia\nBiddeford is drawn into an intense love affair with a much older man, John\nHaskell, a married physician and activist, an affair that has a profound\nand long-reaching impact on everyone around them. 75,000 first printing.\nTour.\"\r\n4168,4338,52258,Patricia Highsmith,The Price of Salt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193744l/52258.jpg,3.93,16348,\"fiction, romance\",The Price of SaltPatricia Highsmith\r\n4169,4339,9662386,Colleen Houck,Tiger's Quest,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442622790l/9662386._SX318_.jpg,4.34,28303,\"fantasy, romance\",\"Kelsey returns home to Oregon, where Mr. Kadam has enrolled her in college,\nbut danger sends her back to India to begin another quest, this time with\nKishan, to try to break the curse that forces Kishan and his brother Ren to\nlive as tigers.\"\r\n4170,4340,6319978,Chloe Neill,Friday Night Bites: A Chicagoland Vampires Novel ,https://images.gr-assets.com/books/1304024900l/6319978.jpg,4.15,36503,\"paranormal, fantasy\",\"New vampire Merit acts as a liaison between humans and vampires to keep\nunsavory aspects of the vampire lifestyle out of the media, but finds that\nnot everyone wants peace between the two races.\"\r\n4171,4341,70420,Tim Harford,\"The Undercover Economist: Exposing Why the Rich Are Rich, the Poor Are Poor--and Why You Can Never Buy a Decent Used Car!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438041608l/70420._SY475_.jpg,3.79,17310,\"business, nonfiction\",\"Harford ranges from Africa, Asia, Europe, and of course the United States\nto reveal how supermarkets, airlines, health care providers, and coffee\nchains--to name just a few--are vacuuming money from our wallets.\"\r\n4172,4342,365006,Frank E. Peretti,The Oath,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235108l/365006.jpg,4.06,21092,\"fiction, christian\",The OathFrank E. Peretti\r\n4173,4343,2218252,Anna Godbersen,Rumors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442612484l/2218252._SX318_.jpg,3.85,31018,\"romance, fiction\",\"Gossip Girl meets the Gilded Age in this delicious and compelling novel,\nthe second in the New York Times bestselling series from author Anna\nGodbersen. As old friends become rivals, Manhattan’s most dazzling\nsocialites find their futures threatened by whispers from the past. In this\ndelicious sequel to the New York Times bestselling The Luxe, nothing is\nmore dangerous than a scandal...or more precious than a secret. True love.\nFalse friends. Scandalous gossip. This is Manhattan, 1899. After bidding\ngood-bye to New York’s brightest star, Elizabeth Holland, rumors continue\nto fly about her untimely demise. All eyes are on those closest to the\ndearly departed: her mischievous sister, Diana, now the family’s only hope\nfor redemption; New York’s most notorious cad, Henry Schoonmaker, the flame\nElizabeth never extinguished; the seductive Penelope Hayes, poised to claim\nall that her best friend left behind—including Henry; even Elizabeth’s\nscheming former maid, Lina Broud, who discovers that while money matters\nand breeding counts, gossip is the new currency. “Mystery, romance,\njealousy, betrayal, humor, and gorgeous, historically accurate details. I\ncouldn’t put The Luxe down!” —Cecily von Ziegesar, author of the #1 New\nYork Times bestselling Gossip Girl series\"\r\n4174,4344,16101018,\"Drew Daywalt, Oliver Jeffers\",The Day the Crayons Quit,https://images.gr-assets.com/books/1397425766l/16101018.jpg,4.41,29759,\"fiction, art\",\"When Duncan arrives at school one morning, he finds a stack of letters, one\nfrom each of his crayons, complaining about how he uses them. Kids can\nimagine their own conversations with crayons with this picture book by\nDaywalt and \"\"New York Times\"\"-bestselling illustrator Jeffers. Full color.\"\r\n4175,4345,93729,Meg Cabot,\"Princess in Waiting (The Princess Diaries, #4)\",https://images.gr-assets.com/books/1493531966l/93729.jpg,3.66,33327,\"romance, contemporary\",\"The fourth book in the #1 New York Times bestselling Princess Diaries\nseries by Meg Cabot. Never before has the world seen such a princess. Nor\nhave her own subjects, for that matter. But Genovian politics are nothing\nnext to Mia's real troubles. Between canceled dates with her long-sought-\nafter royal consort, a second semester of the dreaded Algebra, more\nprincess lessons from Grandmère, and the inability to stop gnawing on her\nfingernails, isn't there anything Mia is good at besides inheriting an\nunwanted royal title? Princess in Waiting is the fourth book in the\nbeloved, bestselling series that inspired the feature film starring Anne\nHathaway and Julie Andrews.\"\r\n4176,4347,3181953,Kathleen Kent,The Heretic's Daughter,https://images.gr-assets.com/books/1344269239l/3181953.jpg,3.77,23815,\"fiction, history\",\"Martha Carrier was one of the first women to be accused, tried and hanged\nas a witch in Salem, Massachusetts. Like her mother, young Sarah Carrier is\nbright and willful, openly challenging the small, brutal world in which\nthey live. Often at odds with one another, mother and daughter are forced\nto stand together against the escalating hysteria of the trials and the\nsuperstitious tyranny that led to the torture and imprisonment of more than\n200 people accused of witchcraft. This is the story of Martha's courageous\ndefiance and ultimate death, as told by the daughter who survived. Kathleen\nKent is a tenth generation descendent of Martha Carrier. She paints a\nhaunting portrait, not just of Puritan New England, but also of one\nfamily's deep and abiding love in the face of fear and persecution.\"\r\n4177,4348,88077,\"Thomas Mann, John E. Woods\",Der Zauberberg,https://images.gr-assets.com/books/1403170928l/88077.jpg,4.14,21078,\"fiction, classics\",\"A sanitorium in the Swiss Alps reflects the societal ills of pre-twentieth-\ncentury Europe, and a young marine engineer rises from his life of\nanonymity to become a pivotal character in a story about how a human's\nenvironment affects self-identity. 10,000 first printing.\"\r\n4178,4349,32507,Michael Connelly,Chasing the Dime,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388628891l/32507.jpg,3.96,23771,\"mystery, fiction\",Chasing the DimeMichael Connelly\r\n4179,4350,17234658,Claudia Gray,A Thousand Pieces of You,https://images.gr-assets.com/books/1400166295l/17234658.jpg,3.94,28422,\"fiction, romance\",\"Cloud Atlas meets Orphan Black in this epic dimension-bending trilogy by\nNew York Times bestselling author Claudia Gray about a girl who must chase\nher father's killer through multiple dimensions. Marguerite Caine's\nphysicist parents are known for their groundbreaking achievements. Their\nmost astonishing invention, called the Firebird, allows users to jump into\nmultiple universes—and promises to revolutionize science forever. But then\nMarguerite's father is murdered, and the killer—her parent's handsome,\nenigmatic assistant Paul— escapes into another dimension before the law can\ntouch him. Marguerite refuses to let the man who destroyed her family go\nfree. So she races after Paul through different universes, always leaping\ninto another version of herself. But she also meets alternate versions of\nthe people she knows—including Paul, whose life entangles with hers in\nincreasingly familiar ways. Before long she begins to question Paul's\nguilt—as well as her own heart. And soon she discovers the truth behind her\nfather's death is far more sinister than she expected. A Thousand Pieces of\nYou explores an amazingly intricate multi-universe where fate is\nunavoidable, the truth elusive, and love the greatest mystery of all.\"\r\n4180,4351,828084,Patricia Reilly Giff,Pictures of Hollis Woods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348404062l/828084.jpg,4,23708,\"fiction, contemporary\",\"In this Newbery Honor Book, a troublesome 12-year-old orphan, staying with\nan elderly artist who needs her, remembers the only other time she was\nhappy in a foster home, with a family that truly seemed to care about her.\"\r\n4181,4352,45245,Peter F. Hamilton,The Reality Dysfunction,https://images.gr-assets.com/books/1331274659l/45245.jpg,4.14,22492,\"fiction, fantasy\",\"Space is not the only void... In AD 2600 the human race is finally\nbeginning to realize its full potential. Hundreds of colonized planets\nscattered across the galaxy host a multitude of prosperous and wildly\ndiverse cultures. Genetic engineering has pushed evolution far beyond\nnature's boundaries, defeating disease and producing extraordinary\nspaceborn creatures. Huge fleets of sentient trader starships thrive on the\nwealth created by the industrialization of entire star systems. And\nthroughout inhabited space the Confederation Navy keeps the peace. A true\ngolden age is within our grasp. But now something has gone catastrophically\nwrong. On a primitive colony planet a renegade criminal's chance encounter\nwith an utterly alien entity unleashes the most primal of all our fears. An\nextinct race which inhabited the galaxy aeons ago called it \"\"The Reality\nDysfunction.\"\" It is the nightmare which has prowled beside us since the\nbeginning of history. THE REALITY DYSFUNCTION is a modern classic of\nscience fiction, an extraordinary feat of storytelling on a truly epic\nscale.\"\r\n4182,4354,13537891,Zadie Smith, NW ,https://images.gr-assets.com/books/1492591246l/13537891.jpg,3.41,20062,\"fiction, contemporary\",\"Growing up in the same 1970s urban planning development in Northwest\nLondon, four young people pursue independent and reasonably successful\nlives until one of them is abruptly drawn out of her isolation by a\nstranger who is seeking her help. By the author of On Beauty. Reprint.\"\r\n4183,4355,530848,Heather Brewer,The Chronicles of Vladimir Tod: Eighth Grade Bites,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433470335l/530848._SY475_.jpg,3.92,28119,\"fantasy, paranormal\",\"For thirteen years Vlad has kept secret that he is half-vampire, but when\nhis missing teacher is replaced by a sinister substitute, he learns that\nthere is more to being a vampire than he could have guessed.\"\r\n4184,4356,10639,Barry Schwartz,The Paradox of Choice: Why More Is Less,https://images.gr-assets.com/books/1410138134l/10639.jpg,3.84,20990,\"psychology, nonfiction\",The Paradox of Choice: Why More Is LessBarry Schwartz\r\n4185,4357,30324,Annette Curtis Klause,Blood and Chocolate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434755939l/30324._SY475_.jpg,3.77,33500,\"fantasy, paranormal\",\"Having fallen for a human boy, a beautiful teenage werewolf must battle\nboth her packmates and the fear of the townspeople to decide where she\nbelongs and with whom. Simultaneous.\"\r\n4186,4358,6413193,Michael Connelly,Nine Dragons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440462713l/6413193._SY475_.jpg,3.97,22102,\"crime, mystery\",\"Harry Bosch is assigned a homicide call in South L.A. that takes him to\nFortune Liquors, where the Chinese owner has been shot to death behind the\ncounter in an apparent robbery. Joined by members of the department's Asian\nCrime Unit, Bosch relentlessly investigates the killing and soon identifies\na suspect, a Los Angeles member of a Hong Kong triad. But before Harry can\nclose in, he gets the word that his young daughter Maddie, who lives in\nHong Kong with her mother, is missing. Bosch drops everything to journey\nacross the Pacific to find his daughter. Could her disappearance and the\ncase be connected? With the stakes of the investigation so high and so\npersonal, Bosch is up against the clock in a new city, where nothing is at\nit seems.\"\r\n4187,4359,9784,D.H. Lawrence,Women in Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919531l/9784.jpg,3.66,22372,\"classics, fiction\",\"Women in Love is widely regarded as D. H. Lawrence's greatest novel. The\nnovel continues where The Rainbow left off with the third generation of\nBrangwens: Ursula Brangwen, now a teacher at Beldover, a mining town in the\nMidlands, and her sister Gudrun, who has returned from art school in\nLondon. The focus of the novel is primarily on their relationships,\nUrsula's with Rupert Birkin, a school inspector, though he gives that up,\nand Gudrun's with Gerald Crich, an industrialist, and later with a\nsculptor, Loerke.\"\r\n4188,4360,31106,Jane Green,Second Chance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442488146l/31106._SY475_.jpg,3.53,22795,\"fiction, romance\",\"Reunited by the tragic death of one of their number, a group of former\nschoolmates works through their shared grief while evaluating the\nunforeseen ways in which each of their lives have been affected by the\ntragedy and their friendship. By the author of Swapping Lives. Reprint.\"\r\n4189,4361,889284,David Brin,The Postman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348914032l/889284.jpg,3.87,24778,\"fiction, fantasy\",\"In the aftermath of a war that has devastated the nation, a traveling\nstoryteller borrows the jacket of a long-dead postal worker and is\ntransformed unwittingly into a symbol of hope for America's future.\"\r\n4190,4362,12799058,Elin Hilderbrand,Summerland,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328319028l/12799058.jpg,3.85,22497,\"fiction, romance\",SummerlandElin Hilderbrand\r\n4191,4363,15957,Ann Patchett,The Patron Saint of Liars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347356188l/15957.jpg,3.76,20722,\"fiction, contemporary\",\"A pregnant woman leaves her husband and moves to St. Elizabeth's, a\nCatholic home for unwed mothers in Kentucky, to begin a new life.\"\r\n4192,4364,96593,\"Jack Canfield, Janet Switzer\",The Success Principles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442932524l/96593._SY475_.jpg,4.26,19634,\"business, nonfiction\",\"Canfield, co-creator of the bestselling Chicken Soup for the Soul( series,\nturns to the principles he's studied, taught, and lived for more than 30\nyears in this practical and inspiring guide that will help any person get\nfrom where they are to where they want to be.\"\r\n4193,4365,13565914,Kristen Ashley,Knight,https://images.gr-assets.com/books/1333056159l/13565914.jpg,3.94,44570,\"romance, contemporary\",KnightKristen Ashley\r\n4194,4366,7723797,\"Alexander Osterwalder, Yves Pigneur\",Business Model Generation,https://images.gr-assets.com/books/1384676138l/7723797.jpg,4.16,20389,\"business, nonfiction\",\"Business Model Generation is a handbook for visionaries, game changers, and\nchallengers striving to defy outmoded business models and design tomorrow's\nenterprises. If your organization needs to adapt to harsh new realities,\nbut you don't yet have a strategy that will get you out in front of your\ncompetitors, you need Business Model Generation. Co-created by 470\n\"\"Business Model Canvas\"\" practitioners from 45 countries, the book features\na beautiful, highly visual, 4-color design that takes powerful strategic\nideas and tools, and makes them easy to implement in your organization. It\nexplains the most common Business Model patterns, based on concepts from\nleading business thinkers, and helps you reinterpret them for your own\ncontext. You will learn how to systematically understand, design, and\nimplement a game-changing business model--or analyze and renovate an old\none. Along the way, you'll understand at a much deeper level your\ncustomers, distribution channels, partners, revenue streams, costs, and\nyour core value proposition. Business Model Generation features practical\ninnovation techniques used today by leading consultants and companies\nworldwide, including 3M, Ericsson, Capgemini, Deloitte, and others.\nDesigned for doers, it is for those ready to abandon outmoded thinking and\nembrace new models of value creation: for executives, consultants,\nentrepreneurs, and leaders of all organizations. If you're ready to change\nthe rules, you belong to \"\"the business model generation!\"\"\"\r\n4195,4367,10954979,Stephen Greenblatt,The Swerve: How the World Became Modern,https://images.gr-assets.com/books/1406088245l/10954979.jpg,3.83,13405,\"history, nonfiction\",\"Describes the impact that the translation of \"\"On the Nature of Things\"\" by\nRoman philosopher Lucretius had on history, inspiring artists, great\nthinkers, and scientists of the fifteenth century and fueling the beginning\nof the Renaissance.\"\r\n4196,4368,10108,Margaret George,\"The Autobiography of Henry VIII. With Notes by His Fool, Will Somers\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439956289l/10108._SY475_.jpg,4.25,22571,\"fiction, history\",\"The Autobiography of Henry VIII is the magnificent historical novel that\nestablished Margaret George's career. Evocatively written in the first\nperson as Henry VIII's private journals, the novel was the product of\nfifteen years of meticulous research and five handwritten drafts. Much has\nbeen written about the mighty, egotistical Henry VIII: the man who\ndismantled the Church because it would not grant him the divorce he wanted;\nwho married six women and beheaded two of them; who executed his friend\nThomas More; who sacked the monasteries; who longed for a son and neglected\nhis daughters, Mary and Elizabeth; who finally grew fat, disease-ridden,\ndissolute. Now, in her magnificent work of storytelling and imagination\nMargaret George bring us Henry VIII's story as he himself might have told\nit, in memoirs interspersed with irreverent comments from his jester and\nconfident, Will Somers. Brilliantly combining history, wit, dramatic\nnarrative, and an extraordinary grasp of the pleasures and perils of power,\nthis monumental novel shows us Henry the man more vividly than he has ever\nbeen seen before.\"\r\n4197,4369,3717,Chuck Palahniuk,Stranger Than Fiction: True Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390189467l/3717.jpg,3.56,18091,\"fiction, contemporary\",\"A collection of nonfiction writings documents encounters with Marilyn\nManson and Juliette Lewis, the challenges faced by the author when \"\"Fight\nClub\"\" was made into a movie, the lives of submariners, and the violent\nexperiences of college wrestlers.\"\r\n4198,4370,570172,Norman Doidge,The Brain That Changes Itself: Stories of Personal Triumph from the Frontiers of Brain Science,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440953986l/570172._SY475_.jpg,4.2,19319,\"science, psychology\",\"A new science called neuroplasticity is overthrowing the old notion that\nthe human brain is immutable. Psychoanalyst Doidge traveled the country to\nmeet both the brilliant scientists championing neuroplasticity and the\npeople whose lives they've transformed--people whose mental limitations or\nbrain damage were seen as unalterable. We see a woman born with half a\nbrain that rewired itself to work as a whole, blind people who learn to\nsee, learning disorders cured, IQs raised, aging brains rejuvenated, stroke\npatients learning to speak, children with cerebral palsy learning to move\nwith more grace, depression and anxiety disorders successfully treated, and\nlifelong character traits changed. Using these stories to probe mysteries\nof the body, emotion, love, sex, culture, and education, Dr. Doidge has\nwritten an inspiring book that will permanently alter the way we look at\nour brains, human nature, and human potential.--From publisher description.\"\r\n4199,4371,61181,Larry Niven,The Ringworld Engineers ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170563308l/61181.jpg,3.86,22047,\"fiction, science\",The Ringworld Engineers Larry Niven\r\n4200,4372,7766027,Barry Lyga,I Hunt Killers,https://images.gr-assets.com/books/1333289403l/7766027.jpg,4.02,25487,\"mystery, horror\",\"It was a beautiful day. It was a beautiful field. Except for the body. Jazz\nis the son of the world's most infamous serial killer, and for Dear Old\nDad, \"\"Take Your Son to Work Day\"\" was year-round. Jazz has witnessed crime\nscenes the way cops wish they could-from the criminal's point of view. Now,\nwith bodies piling up in the sleepy town of Lobo's Nod, Jazz must work with\nthe police to prove that murder doesn't run in the family.\"\r\n4201,4373,17880714,K. Bromberg,Crashed,https://images.gr-assets.com/books/1391008361l/17880714.jpg,4.56,32520,\"romance, sports\",\"From New York Times Best-Selling Author K. Bromberg comes the epic\nconclusion of of Rylee and Colton's story... When life crashes down around\nus, how hard are we willing to fight for the one thing we can’t live\nwithout, each other? Life is full of moments. Big moments. Little moments.\nAnd none of them are inconsequential. Every single moment prepares you for\nthat one instance that defines your life. You must overcome all your fears,\nconfront the demons that chase you, and cleanse the poison that clings to\nyour soul or you risk the chance of losing everything. Mine started the\nminute Rylee fell out of that damn storage closet. She made me feel. Made\nme whole when all I thought I could ever be was incomplete. Became the\nlifeline I never knew I needed. Hell yes, she’s worth the fight...but how\ndo you fight for someone you know you don’t deserve? Love is full of ups\nand downs. Heart stopping highs. Soul shattering lows. And none of them are\ninsignificant. Love is a racecourse of unexpected twists and turns that\nmust be negotiated. You have to break down walls, learn to trust, and heal\nfrom your past in order to win. But sometimes it’s the expected that’s the\nhardest to hold on to. Colton has healed and completed me, stolen my heart,\nand made me realize our love’s not predictable nor perfect—it’s bent. And\nbent’s okay. But when outside factors put our relationship to the test,\nwhat lengths will I have to go to prove to him that he’s worth the fight?\nWhoever said love is patient and love is kind, never met the two of us. We\nknow our love is worth it—have acknowledged that we were meant to be—but\nwhen our pasts crash into our future, will the repercussions make us\nstronger or break us apart?\"\r\n4202,4374,23398625,J. Ryan Stradal,Kitchens of the Great Midwest,https://images.gr-assets.com/books/1428066565l/23398625.jpg,3.77,21071,\"fiction, contemporary\",Kitchens of the Great MidwestJ. Ryan Stradal\r\n4203,4375,1031461,\"Ann McGovern, Winslow Pinney Pels, Winslow Pinn, Ey Pels\",Stone Soup,https://images.gr-assets.com/books/1360057986l/1031461.jpg,4.28,25518,\"fiction, classics\",\"When the little old lady claims she has no food to give him, a hungry young\nman proceeds to make a soup with a stone and water.\"\r\n4204,4376,1220507,\"Alaa Al Aswany, علاء الأسواني\",شيكاجو,https://images.gr-assets.com/books/1258877751l/1220507.jpg,3.41,17325,fiction,\"شيكاجوAlaa Al Aswany, علاء الأسواني\"\r\n4205,4377,15734464,\"James Patterson, Maxine Paetro\",12th of Never,https://images.gr-assets.com/books/1353436409l/15734464.jpg,3.99,19998,\"mystery, fiction\",\"12th of NeverJames Patterson, Maxine Paetro\"\r\n4206,4378,15790883,Brian  McClellan,Promise of Blood,https://images.gr-assets.com/books/1350337505l/15790883.jpg,4.16,21192,\"fantasy, fiction\",Promise of BloodBrian  McClellan\r\n4207,4379,294042,James Rollins,Black Order,https://images.gr-assets.com/books/1305960795l/294042.jpg,4.14,22321,\"thriller, fiction\",\"In Copenhagen . . . a suspicious bookstore fire propels Commander Gray\nPierce on a relentless hunt across four continents—and into a terrifying\nmystery sur-rounding horrific experiments once performed in a now-abandoned\nlaboratory buried in a hollowed-out mountain in Poland. In the mountains of\nNepal . . . in a remote monastery, Buddhist monks inexplicably turn to\ncannibalism and torture—while Painter Crowe, director of SIGMA Force,\nbegins to show signs of the same baffling, mind-destroying malady . . . and\nLisa Cummings, a dedicated American doctor, becomes the target of a brutal\nclandestine assassin. Now only Gray Pierce and SIGMA Force can save a world\nsuddenly in terrible jeopardy. Because a new order is on the rise—an\nannihilating nightmare growing at the heart of the greatest mystery of all:\nthe origin of life.\"\r\n4208,4380,2199587,Karin Slaughter,Fractured,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389140280l/2199587.jpg,4.18,23256,\"mystery, crime\",FracturedKarin Slaughter\r\n4209,4381,28763485,Nicola Yoon,The Sun Is Also a Star,https://images.gr-assets.com/books/1459793538l/28763485.jpg,4.14,42363,\"contemporary, romance\",The Sun Is Also a StarNicola Yoon\r\n4210,4382,23717678,\"James Patterson, David Ellis\",The Murder House,https://images.gr-assets.com/books/1464826516l/23717678.jpg,4.05,13837,\"mystery, thriller\",\"The Murder HouseJames Patterson, David Ellis\"\r\n4211,4383,38180,Nevil Shute,On the Beach,https://images.gr-assets.com/books/1327943327l/38180.jpg,3.92,24401,\"fiction, classics\",\"A novel about the survivors of an atomic war, who face an inevitable end as\nradiation poisoning moves toward Australia from the North.\"\r\n4212,4384,22749994,Nick Hornby,Funny Girl,https://images.gr-assets.com/books/1415127744l/22749994.jpg,3.37,17151,\"fiction, contemporary\",Funny GirlNick Hornby\r\n4213,4385,6257535,Edward Rutherfurd,New York,https://images.gr-assets.com/books/1320467954l/6257535.jpg,4.1,16106,\"fiction, history\",\"A tale set against a backdrop of New York City's history from its founding\nthrough the September 11 attacks traces the experiences of characters who\nwitness such periods as the Revolutionary War, the city's emergence as a\nfinancial giant, and the Gilded Age.\"\r\n4214,4386,20764879,\"V.E. Schwab, Victoria Schwab\",A Gathering of Shadows,https://images.gr-assets.com/books/1429627728l/20764879.jpg,4.33,29389,\"fantasy, fiction\",\"Four months have passed since the shadow stone fell into Kell's possession.\nFour months since his path crossed with Delilah Bard. Four months since Rhy\nwas wounded and the Dane twins fell, and the stone was cast with Holland's\ndying body through the rift, and into Black London. In many ways, things\nhave almost returned to normal, though Rhy is more sober, and Kell is now\nplagued by his guilt. Restless, and having given up smuggling, Kell is\nvisited by dreams of ominous magical events, waking only to think of Lila,\nwho disappeared from the docks like she always meant to do. As Red London\nfinalizes preparations for the Element Games-an extravagent international\ncompetition of magic, meant to entertain and keep healthy the ties between\nneighboring countries-a certain pirate ship draws closer, carrying old\nfriends back into port. But while Red London is caught up in the pageantry\nand thrills of the Games, another London is coming back to life, and those\nwho were thought to be forever gone have returned. After all, a shadow that\nwas gone in the night reappears in the morning, and so it seems Black\nLondon has risen again-and so to keep magic's balance, another London must\nfall.\"\r\n4215,4387,65948,Dean Koontz,From the Corner of His Eye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388275293l/65948.jpg,4,23641,\"horror, fiction\",\"As blind child prodigy Bartholomew grows up, regains his sight at thirteen,\nand sets out to transform the lives of everyone around him, Junior Cain, a\nserial killer and rapist who believes that Bartholomew is his nemesis, goes\non a hunt to kill him.\"\r\n4216,4388,9833,\"Haruki Murakami, Philip Gabriel, Jay Rubin\",\" めくらやなぎと、眠る女 [Mekurayanagi to, nemuru onna]\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388789153l/9833.jpg,3.83,19216,\"fiction, contemporary\",\" めくらやなぎと、眠る女 [Mekurayanagi to, nemuru onna]Haruki Murakami, Philip Gabriel, Jay Rubin\"\r\n4217,4389,2815949,\"Ina Garten, Quentin Bacon\",Barefoot Contessa Back to Basics,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178334l/2815949.jpg,4.23,22228,\"cookbooks, nonfiction\",\"Explains how to transform readily available ingredients into an easy-to-\nprepare meal, introducing nearly one hundred original recipes for\neverything from lobster and corn chowder to easy sticky buns.\"\r\n4218,4390,31100,Jane Green,To Have and to Hold ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207925l/31100.jpg,3.61,21001,\"fiction, romance\",\"Setting aside her dreams of living a grass-roots life in the English\ncountryside, Alice accepts the proposal of wealthy man-about-town Joe, who\nshatters Alice's romantic ideals by criticizing her looks and cheating on\nher before an indiscretion forces them to move to a country house in\nAmerica. Reprint. 125,000 first printing.\"\r\n4219,4391,80570,Koren Zailckas,Smashed: Story of a Drunken Girlhood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441846371l/80570._SY475_.jpg,3.5,20658,\"memoir, nonfiction\",\"A twenty-four-year-old survivor of alcoholism recounts her journey from\nteen experimentation to binge drinking, a process during which she endured\ndepression, rage, sexual exploitation, and troubled relationships before\nmaking the decision to heal, in a personal memoir that also offers insight\ninto youth alcohol abuse. Reprint.\"\r\n4220,4392,9355,John Irving,Until I Find You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193718l/9355.jpg,3.61,20784,\"fiction, contemporary\",\"Chronicles the life and times of actor Jack Burns, whose unique bond with\nhis mother, Alice, a Toronto tattoo artist, and their search for his\nmissing father, William, shapes his relationships with women and his\nHollywood career.\"\r\n4221,4393,6380822,Bree Despain,The Dark Divine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187646l/6380822.jpg,3.81,33209,\"paranormal, fantasy\",\"Grace Divine learns a dark secret when her best friend from childhood\nreturns, upsetting her pastor-father and the rest of her family, around the\ntime strange things are happening in and near their small Minnesota town.\"\r\n4222,4394,139220,Bill Buford,Heat,https://images.gr-assets.com/books/1320554917l/139220.jpg,3.89,18583,\"memoir, nonfiction\",\"The author offers an account of his entry into the world of a professional\ncook-in-training, documenting his experiences in the kitchen of Mario\nBatali's restaurant Babbo and his apprenticeships in Italy with Batali's\nformer teachers.\"\r\n4223,4395,241823,Clarissa Pinkola Estés,Women Who Run With the Wolves,https://images.gr-assets.com/books/1500974527l/241823.jpg,4.15,21127,\"psychology, nonfiction\",\"A Jungian analyst explores the feminine psyche through stories of \"\"wild\nwomen\"\"--the mythological archetype of the strong, primitive woman\"\r\n4224,4397,56452,\"Marcus Buckingham, Donald O. Clifton\",\"Now, Discover Your Strengths\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1575812755l/56452.jpg,3.95,19767,\"business, nonfiction\",\"Outlines a program developed by Gallup experts and based on a study of more\nthan two million people to help readers discover their distinct talents and\nstrengths and how they can be translated into personal and career\nsuccesses. 100,000 first printing.\"\r\n4225,4398,2467566,Chris Anderson,The Long Tail: Why the Future of Business Is Selling Less of More,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442430307l/2467566._SY475_.jpg,3.83,14932,\"business, nonfiction\",\"Revised and updated with expanded coverage of the revolutionary changes\ntaking place in today's business arenas, a best-selling guide challenges\npopular beliefs about the marks of successes and failures as well as the\ndirection of near-future commerce and culture. Original.\"\r\n4226,4399,54270,Adolf Hitler,Mein Kampf,https://images.gr-assets.com/books/1395618385l/54270.jpg,3.13,16285,\"history, biography\",\"Although this monumental book was first ignored, it was a significant\nwarning to the world for it contained an outline of Hitler's plans for his\nrise to power\"\r\n4227,4400,31098,Jane Green,Swapping Lives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388445971l/31098.jpg,3.56,22521,\"contemporary, fiction\",\"Longing for a traditional family life in the country in spite of her\nsuccessful career and many friends, magazine director Vicky Townsley\nparticipates in a contest that has her switching places for one month with\nAmber Winslow, a busy wife and mother. By the author of The Other Woman.\nReprint.\"\r\n4228,4401,4201106,Louise Penny,\"A Rule Against Murder (Armand Gamache, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441314151l/4201106._SX318_.jpg,4.21,22817,\"mystery, fiction\",\"Irene Finney and her four adult children have come together to commemorate\ntheir late father's life at a beautiful lakeside getaway. However, past\nsecrets and unfinished jealousies ignite when a corpse is found the day\nafter the ceremony with a slew of possible suspects to blame.\"\r\n4229,4402,12951824,Nora Roberts,The Perfect Hope,https://images.gr-assets.com/books/1351012631l/12951824.jpg,4.14,23185,\"romance, contemporary\",\"Innkeeper Hope Beaumont's past makes an unwelcome appearance as she adjusts\nto life in small-town Boonsboro and her attraction to tough and surly Ryder\nMontgomery.\"\r\n4230,4403,12368985,Aleatha Romig,Consequences,https://images.gr-assets.com/books/1350233855l/12368985.jpg,3.97,29809,\"romance, contemporary\",ConsequencesAleatha Romig\r\n4231,4404,783127,Sean Covey,The 7 Habits Of Highly Effective Teens,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442369818l/783127._SY475_.jpg,4.01,19240,\"nonfiction, psychology\",\"Being a teenager is both wonderful and challenging. In The 7 Habits of\nHighly Effective Teens, author Sean Covey applies the timeless principles\nof the 7 Habits to teens and the tough issues and life-changing decisions\nthey face. In an entertaining style, Covey provides a step-by-step guide to\nhelp teens improve self-image, build friendships, resist peer pressure,\nachieve their goals, get along with their parents, and much more. In\naddition, this book is stuffed with cartoons, clever ideas, great quotes,\nand incredible stories about real teens from all over the world. The 7\nHabits of Highly Effective Teens will engage teenagers unlike any other\nbook. An indispensable book for teens, as well as parents, grandparents,\nand any adult who influences young people, The 7 Habits of Highly Effective\nTeens is destined to become the last word on surviving and thriving as a\nteen and beyond.\"\r\n4232,4405,7150174,Tom Angleberger,The Strange Case of Origami Yoda,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441744261l/7150174._SY475_.jpg,3.9,23322,\"fiction, fantasy\",\"When unpopular sixth grader Dwight successfully dispenses sound advice to\nhis classmates via an origami finger puppet, his classmate Tommy\ninvestigates the source of Dwight's accuracy and makes a surprising\ndiscovery.\"\r\n4233,4406,33727,Jennifer Crusie,Welcome to Temptation,https://images.gr-assets.com/books/1479663151l/33727.jpg,3.94,27123,\"romance, contemporary\",Welcome to TemptationJennifer Crusie\r\n4234,4407,8537327,Thanhha Lai,Inside Out & Back Again,https://images.gr-assets.com/books/1357771743l/8537327.jpg,4.09,22972,\"poetry, fiction\",Inside Out & Back AgainThanhha Lai\r\n4235,4408,12995284,Josephine Angelini,Dreamless,https://images.gr-assets.com/books/1320248839l/12995284.jpg,4.2,30424,\"fantasy, romance\",\"StarHearts, as fans of Josephine Angelini call themselves, will stay up all\nnight reading Dreamless, the second book in the bestselling Starcrossed\nseries. The saga mixes mythology, romance, action, and intrigue in a\ncompletely original way. Dreamless continues the story of Helen Hamilton, a\nshy girl living on Nantucket Island whose desire for an ordinary life was\nthwarted when she discovered she is a Scion, a descendant of a Greek god\nand a mortal. Each Scion has a power, and Helen’s is the ability to travel\nto Hades. Helen is determined to use her talent to stop a war amongst the\ngods and change her destiny, which is to live a life patterned after that\nof the tragic Helen of Troy. But her quest may cost her Lucas Delios, the\nboy she loves.\"\r\n4236,4409,13323842,Abbi Glines,Predestined,https://images.gr-assets.com/books/1327068385l/13323842.jpg,4.09,33711,\"paranormal, romance\",PredestinedAbbi Glines\r\n4237,4411,37875,Guy Kawasaki,\"The Art of the Start: The Time-Tested, Battle-Hardened Guide for Anyone Starting Anything\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433719169l/37875._SY475_.jpg,3.82,18466,\"business, nonfiction\",\"A new product, a new service, a new company, a new division, a new anything\n- where there's a will, Kawasaki shows the way with his essential steps to\nlaunching one's dreams.\"\r\n4238,4412,7099273,\"Wes  Moore, Tavis Smiley\",\"The Other Wes Moore: One Name, Two Fates\",https://images.gr-assets.com/books/1320554118l/7099273.jpg,3.77,19964,\"biography, nonfiction\",\"Traces the parallel lives of two youths with the same name in the same\ncommunity, describing how the author grew up to be a Rhodes Scholar and\npromising business leader while his counterpart suffered a life of violence\nand imprisonment.\"\r\n4239,4413,86643,Ariana Franklin,Mistress of the Art of Death,https://images.gr-assets.com/books/1435958507l/86643.jpg,3.95,27332,\"mystery, fiction\",Mistress of the Art of DeathAriana Franklin\r\n4240,4414,89284,Tucker Max,Assholes Finish First,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389934184l/89284.jpg,3.64,19838,\"biography, nonfiction\",\"Presents a new collection of alcohol-induced \"\"fratire\"\" adventures in\nhedonism that convey the author's experiences of being intoxicated at\ninappropriate times, seducing a large number of women, and otherwise living\nin complete disregard of social norms.\"\r\n4241,4415,1429082,\"Naoko Takeuchi, 武内 直子\",美少女戦士セーラームーン,https://images.gr-assets.com/books/1308886282l/1429082.jpg,4.28,18035,\"manga, fantasy\",\"美少女戦士セーラームーンNaoko Takeuchi, 武内 直子\"\r\n4242,4416,73086,Susan Elizabeth Phillips,Kiss an Angel ,https://images.gr-assets.com/books/1309115033l/73086.jpg,4.21,32191,\"romance, contemporary\",\"How did pretty, flighty Daisy Devreaux find herself in this fix? She can\neither go to jail or marry the mystery man her father has chosen for her.\nAlex Markov, however, has no intention of playing the loving bridegroom to\na spoiled little featherhead with champagne tastes. As humorless as he is\ndeadly handsome, he drags the irrepressible Daisy away from her uptown life\nand sets out to tame her. Except it won't be as easy as he thinks. This man\nwithout a soul has met a woman who's nothing but heart. Will vows spoken in\nhaste shatter . . . or offer the promise of love everlasting?\"\r\n4243,4417,7815744,Dan Ariely,The Upside of Irrationality: The Unexpected Benefits of Defying Logic at Work and at Home,https://images.gr-assets.com/books/1268511997l/7815744.jpg,4,22422,\"psychology, nonfiction\",The Upside of Irrationality: The Unexpected Benefits of Defying Logic at Work and at HomeDan Ariely\r\n4244,4418,12358,\"Sarah Vowell, Katherine Streeter\",The Partly Cloudy Patriot,https://images.gr-assets.com/books/1430720573l/12358.jpg,3.9,22819,\"history, nonfiction\",\"The author shares her perspective on such topics as the 2000 election,\npresent-day civil rights activists, and the relationship between the United\nStates and Canada.\"\r\n4245,4419,34898,Ruth Stiles Gannett,My Father's Dragon (My Father's Dragon Trilogy),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438398138l/34898._SX318_.jpg,4.09,25905,\"fantasy, fiction\",My Father's Dragon (My Father's Dragon Trilogy)Ruth Stiles Gannett\r\n4246,4420,18505832,Greg Iles,Natchez Burning,https://images.gr-assets.com/books/1383438264l/18505832.jpg,4.12,18722,\"fiction, mystery\",Natchez BurningGreg Iles\r\n4247,4421,141526,Charles Bukowski,Pulp,https://images.gr-assets.com/books/1348053445l/141526.jpg,3.68,18216,\"fiction, crime\",PulpCharles Bukowski\r\n4248,4422,32416,Thomas Harris,Hannibal Rising,https://images.gr-assets.com/books/1394208690l/32416.jpg,3.44,22767,\"horror, crime\",\"Relates the early life in Eastern Europe of cannibalistic serial killer\nHannibal Lecter, from the ages of six to twenty, following the loss of his\nentire family during World War II.\"\r\n4249,4423,238126,J.D. Robb,Immortal in Death ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348108817l/238126.jpg,4.26,29315,\"mystery, romance\",\"A top model is dead--and the suspect is none other than Eve Dallas's best\nfriend.\"\r\n4250,4424,6696602,Sherrilyn Kenyon,inf,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442250235l/6696602._SY475_.jpg,4.04,31598,\"paranormal, fantasy\",infSherrilyn Kenyon\r\n4251,4425,2149535,Laurell K. Hamilton,\"Blood Noir (Anita Blake, Vampire Hunter, #16)\",https://images.gr-assets.com/books/1310494632l/2149535.jpg,3.85,32159,\"paranormal, fantasy\",\"More high-octane action in the New York Times bestselling Anita Blake,\nVampire Hunter series.\"\r\n4252,4426,5933841,Thomas Pynchon,Inherent Vice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347697574l/5933841.jpg,3.71,18109,\"fiction, mystery\",\"Reluctantly investigating a kidnapping threat against his ex-girlfriend's\nbillionaire beau, Doc Sportello tackles a bizarre tangle of nefarious\ncharacters before stumbling on a mysterious entity that may actually be a\ntax shelter for a dental group.\"\r\n4253,4427,10914,Jodi Picoult,Songs of the Humpback Whale: A Novel in Five Voices,https://images.gr-assets.com/books/1421422550l/10914.jpg,3.19,24756,\"fiction, contemporary\",Songs of the Humpback Whale: A Novel in Five VoicesJodi Picoult\r\n4254,4428,6945530,\"Guillermo del Toro, Chuck Hogan\",The Night Eternal,https://images.gr-assets.com/books/1327932900l/6945530.jpg,3.67,18773,\"fiction, fantasy\",\"The Night EternalGuillermo del Toro, Chuck Hogan\"\r\n4255,4429,86147,Jay McInerney,\"Bright Lights, Big City\",https://images.gr-assets.com/books/1399647015l/86147.jpg,3.74,21227,\"fiction, contemporary\",\"Written entirely in the second person, McInerney's first novel is a vivid\naccount of cocaine addiction.\"\r\n4256,4430,16158519,Nora Roberts,Whiskey Beach,https://images.gr-assets.com/books/1357477045l/16158519.jpg,3.96,19769,\"romance, mystery\",\"Suffering an intense year of public and police scrutiny after being wrongly\nimplicated in his fiancée's murder, Boston lawyer Eli Landon takes\nsanctuary in a centuries-old family home and falls in love with resident\nhousekeeper Abra Walsh, with whom he is entangled in an old, life-\nthreatening mystery. By the best-selling author of The Witness.\"\r\n4257,4431,14755,Jennifer Weiner,The Guy Not Taken: Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388261676l/14755.jpg,3.46,20420,\"fiction, romance\",\"A collection of short stories that explores the progress of love and\nrelationships over a course of a lifetime, from a teenager coming to terms\nwith her father's disappearance to a widow accepting two young women into\nher home.\"\r\n4258,4432,1894269,Robert Kirkman,\"The Walking Dead, Vol. 8: Made To Suffer\",https://images.gr-assets.com/books/1266634689l/1894269.jpg,4.47,22017,\"comics, horror\",\"The Walking Dead, Vol. 8: Made To SufferRobert Kirkman\"\r\n4259,4433,6337006,Kresley Cole,Pleasure of a Dark Prince ,https://images.gr-assets.com/books/1357612049l/6337006.jpg,4.41,32358,\"paranormal, romance\",\"#1 New York Times bestselling author Kresley Cole enraptures again with\nthis seductive tale of a fierce werewolf prince who will stop at nothing to\nprotect the lovely archer he covets from afar. A DANGEROUS BEAUTY... Lucia\nthe Huntress: as mysterious as she is exquisite, she harbors secrets that\nthreaten to destroy her -- and those she loves. AN UNCONTROLLABLE NEED...\nGarreth MacRieve, Prince of the Lykae: the brutal Highland warrior who\nburns to finally claim this maddeningly sensual creature as his own. THAT\nLEAD TO A PLEASURE SO WICKED.... From the shadows, Garreth has long watched\nover Lucia. Now, the only way to keep the proud huntress safe from harm is\nto convince her to accept him as her guardian. To do this, Garreth will\nruthlessly exploit Lucia's greatest weakness -- her wanton desire for him.\"\r\n4260,4434,858037,Syd Hoff,Danny and the Dinosaur,https://images.gr-assets.com/books/1406512465l/858037.jpg,4,24985,\"fiction, fantasy\",\"A little boy is surprised and pleased when one of the dinosaurs from the\nmuseum agrees to play with him.\"\r\n4261,4435,51799,\"Giovanni Boccaccio, G.H. McWilliam\",Il decamerone,https://images.gr-assets.com/books/1472027832l/51799.jpg,3.86,22800,\"classics, fiction\",Translated with an Introduction and Notes by G. H. McWilliam.\r\n4262,4437,25010281,Michael Connelly,The Crossing,https://images.gr-assets.com/books/1428347007l/25010281.jpg,4.21,17428,\"crime, suspense\",\"Harry Bosch crosses the line to team up with Lincoln Lawyer Mickey Haller\nin the new thriller from #1 New York Times bestselling author Michael\nConnelly. Detective Harry Bosch has retired from the LAPD, but his half-\nbrother, defense attorney Mickey Haller, needs his help. A woman has been\nbrutally murdered in her bed and all evidence points to Haller's client, a\nformer gang member turned family man. Though the murder rap seems ironclad,\nMickey is sure it's a setup. Though it goes against all his instincts,\nBosch reluctantly takes the case. The prosecution's file just has too many\nholes and he has to find out for himself: if Haller's client didn't do it,\nthen who did? With the secret help of his former LAPD partner Lucy Soto,\nHarry starts digging. Soon his investigation leads him inside the police\ndepartment, where he realizes that the killer he's been tracking has also\nbeen tracking him.\"\r\n4263,4438,13530981,Alice Munro,Dear Life,https://images.gr-assets.com/books/1333579320l/13530981.jpg,3.75,19278,\"fiction, contemporary\",\"**Winner of the Nobel Prize in Literature** Alice Munro captures the\nessence of life in her brilliant new collection of stories. Moments of\nchange, chance encounters, the twist of fate that leads a person to a new\nway of thinking or being: the stories in Dear Life build to form a radiant,\nindelible portrait of just how dangerous and strange ordinary life can be.\"\r\n4264,4439,1767779,Eileen Christelow,Five Little Monkeys Jumping on the Bed (The Five Little Monkeys),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348724920l/1767779.jpg,4.09,24781,\"fiction, music\",Five Little Monkeys Jumping on the Bed (The Five Little Monkeys)Eileen Christelow\r\n4265,4440,40223,Jacqueline Carey,Kushiel's Avatar,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1600832044l/40223.jpg,4.37,25782,\"fantasy, romance\",Kushiel's AvatarJacqueline Carey\r\n4266,4441,5787,\"Jorge Luis Borges, Andrew Hurley\",El Aleph,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440785365l/5787._SY475_.jpg,4.39,16590,\"fiction, classics\",\"Twenty fictional pieces survey the depth and range of the distinguished\nArgentine writer's forty-year career as he journeys inside the minds of an\nunrepentant Nazi, an imprisoned Maya priest, fanatical Christian\ntheologians, a man awaiting his assassin, and a woman plotting vengeance on\nher father's \"\"killer.\"\" Reprint.\"\r\n4267,4442,18134249,Rachel Van Dyken,Ruin,https://images.gr-assets.com/books/1374686324l/18134249.jpg,4.19,35844,\"romance, contemporary\",RuinRachel Van Dyken\r\n4268,4443,2054,Raymond Chandler,The Long Goodbye,https://images.gr-assets.com/books/1388225584l/2054.jpg,4.23,22503,\"mystery, fiction\",\"An encounter with a drunk brings both adventure and trouble to a cynical\nmiddle-aged private detective\"\r\n4269,4444,2050,Raymond Chandler,\"Farewell, My Lovely\",https://images.gr-assets.com/books/1465778099l/2050.jpg,4.17,21864,\"mystery, classics\",\"Moose Malloy, a six-foot-five giant just out of prison, gets detective\nPhilip Marlowe involved in his seemingly hopeless search for Velma, his\nmissing girlfriend, a seemingly routine case soon complicated by a gang of\njewel thieves, a suspicious fortune-teller, corruption, and murder.\nReissue.\"\r\n4270,4445,24779,Lloyd Alexander,The Castle of Llyr,https://images.gr-assets.com/books/1405714238l/24779.jpg,4.07,27425,\"fantasy, fiction\",\"When Princess Eilonwy is sent to the Isle of Mona for training, she is\nbewitched by the evil enchantress Achren, so Taran and other friends must\ntry to rescue her.\"\r\n4271,4446,6289938,Rachel Caine,Fade Out,https://images.gr-assets.com/books/1327067249l/6289938.jpg,4.2,32918,\"paranormal, fantasy\",Fade OutRachel Caine\r\n4272,4447,508903,Lilian Jackson Braun,The Cat Who Could Read Backwards,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298562424l/508903.jpg,3.84,23114,\"mystery, fiction\",\"The first installment of the author's popular series features the unusual\ndetective team of award-winning reporter Jim Qwilleran and Koko, his\nbrilliant Siamese cat, who penetrate the world of modern art to solve a\nmystery.\"\r\n4273,4448,15993374,Nyrae Dawn,Charade,https://images.gr-assets.com/books/1357756816l/15993374.jpg,3.98,35216,\"romance, contemporary\",\"Nineteen-year-old Cheyenne tries to portray the perfect life to mask the\nmemories of her past. Walking in on her boyfriend with another woman her\nfreshman year in college threatens that picture of perfection. Twenty-one-\nyear-old Colt never wanted college and never expected to amount to\nanything, but when his mom's dying wish is for him to get his degree, he\nhas no choice but to pretend it's what he wants too. Cheyenne needs a fake\nboyfriend to get back at her ex and Colt needs cash to take care of his\nmom, so they strike a deal that helps them both. But what if Cheyenne's\npast isn't what she thought? Soon they're trading one charade for another-\nlosing themselves in each other to forget about their pain. The more they\nplay their game, the more it becomes the only thing they have that feels\nreal.Both Cheyenne and Colt know life is never easy, but neither of them\nexpect the tragedy that threatens to end their charade and rip them apart\nforever.\"\r\n4274,4449,12959086,\"Rick Riordan, Haley Riordan\",The Demigod Diaries,https://images.gr-assets.com/books/1328573978l/12959086.jpg,4.19,28461,\"fantasy, fiction\",\"Three short stories in the form of diary entries, plus interviews, puzzles,\nand games, reveal new insights into the world of Percy Jackson and the\nother heroes of Olympus.\"\r\n4275,4450,17032328,Courtney Cole,If You Stay,https://images.gr-assets.com/books/1355661483l/17032328.jpg,3.94,31388,\"romance, contemporary\",If You StayCourtney Cole\r\n4276,4451,20170296,\"Neil Patrick Harris, David Javerbaum, Antony Hare\",Neil Patrick Harris: Choose Your Own Autobiography,https://images.gr-assets.com/books/1400599072l/20170296.jpg,3.86,21596,\"memoir, biography\",\"Neil Patrick Harris: Choose Your Own AutobiographyNeil Patrick Harris, David Javerbaum, Antony Hare\"\r\n4277,4452,128756,Kathy Reichs,Death du Jour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390961759l/128756.jpg,3.96,27715,\"mystery, crime\",\"Forensic anthropologist Kathy Reichs exploded onto bestseller lists\nworldwide with her phenomenal debut novel Déjà Dead -- and introduced \"\"[a]\nbrilliant heroine\"\" (Glamour) in league with Patricia Cornwell's Kay\nScarpetta. Dr. Temperance Brennan, Quebec's director of forensic\nanthropology, now returns in a thrilling new investigation into the secrets\nof the dead. In the bitter cold of a Montreal winter, Tempe Brennan is\ndigging for a corpse buried more than a century ago. Although Tempe thrives\non such enigmas from the past, it's a chain of contemporary deaths and\ndisappearances that has seized her attention -- and she alone is ideally\nplaced to make a chilling connection among the seemingly unrelated events.\nAt the crime scene, at the morgue, and in the lab, Tempe probes a mystery\nthat sweeps from a deadly Quebec fire to startling discoveries in the\nCarolinas, and culminates in Montreal with a terrifying showdown -- a\nnerve-shattering test of both her forensic expertise and her skills for\nsurvival.\"\r\n4278,4453,313631,Josh McDowell,More Than a Carpenter,https://images.gr-assets.com/books/1439771268l/313631.jpg,4.19,19269,\"christian, nonfiction\",\"With almost ten million copies in print, More Than a Carpentercontinues to\nbe the most powerful evangelism tool worldwide. Josh McDowell's timeless\nexamination of the true nature of Christ and his impact on our lives is one\nof the best-selling Christian books ever. Written by a former skeptic of\nChristianity, it is a hard-hitting book for those who doubt Jesus' deity\nand his purpose.\"\r\n4279,4454,1137215,Cherie Priest,Boneshaker ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433161048l/1137215._SY475_.jpg,3.5,26202,\"fantasy, fiction\",Boneshaker Cherie Priest\r\n4280,4455,165395,Rita Mae Brown,Rubyfruit Jungle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172341177l/165395._SY475_.jpg,3.88,22583,\"fiction, classics\",\"\"\"Critically acclaimed, Rubyfruit Junglelaunched Rita Mae Brown s career as\none of this country s most distinctive writers and continues to be a\npowerful seminal work more than 40 years after its original publication.\nBawdy and moving, the ultimate word-of-mouth bestseller, Rubyfruit Jungleis\nabout growing up a lesbian in America - and living happily ever after.\"\"\"\r\n4281,4456,12588363,Lauren Kate,Fallen in Love,https://images.gr-assets.com/books/1362339849l/12588363.jpg,3.77,30759,\"fantasy, romance\",\"A collection of four love stories featuring Shelby, Miles, and other\ncharacters from the Fallen series.\"\r\n4282,4457,18225810,Raina Telgemeier,Sisters,https://images.gr-assets.com/books/1411022689l/18225810.jpg,4.29,23347,\"comics, memoir\",\"In a semi-autobiographical graphic novel, Raina's disappointing bond with a\ncranky, independent younger sister is further challenged by the arrival of\na baby brother and an estrangement in their parents' marriage.\"\r\n4283,4458,536982,D.J. MacHale,The Never War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347748833l/536982.jpg,4.12,24219,\"fantasy, fiction\",\"The third installment in an epic series of adventures First Earth Fourteen-\nyear-old Bobby Pendragon is a loyal friend, sports star, devoted pet owner\n-- and Traveler. Along with his uncle Press, Bobby has visited the\nalternate dimension of Denduron and participated in a civil war. He's also\nwaded through the endangered underwater territory of Cloral. Now Bobby once\nagain finds himself thrust beyond the boundaries of time and space into a\nplace that seems somewhat familiar: First Earth. Bobby and the Traveler\nfrom Cloral -- Spader -- have flumed to New York City, 1937. Against a\nbackdrop of gangsters, swing music, and the distant sound of a brewing war,\nthe two must uncover the evil Saint Dane's newest plot. But is Bobby ready\nfor the difficult choices ahead?\"\r\n4284,4459,15566,Terry Brooks,The Elf Queen of Shannara ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673287l/15566.jpg,4.02,23895,\"fantasy, fiction\",\"Ordered to do the impossible--find the Elves and bring them back to the\nworld of men--Wren must rely on the assistance of Tiger Ty, who accompanies\nher into the jungle on her search. Reissue.\"\r\n4285,4460,201342,Brian Jacques,Mattimeo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194271l/201342.jpg,4.02,26345,\"fantasy, fiction\",MattimeoBrian Jacques\r\n4286,4461,22886612,James S.A. Corey,Nemesis Games,https://images.gr-assets.com/books/1407524221l/22886612.jpg,4.37,20681,\"fiction, ebooks\",\"The fifth book in the NYT bestselling Expanse series, Nemesis Games drives\nthe crew of the Rocinante apart, and as they struggle to survive, the inner\nplanets fall victim to an enemy's catastrophic plan. Now a Prime Original\nseries. A thousand worlds have opened, and the greatest land rush in human\nhistory has begun. As wave after wave of colonists leave, the power\nstructures of the old solar system begin to buckle. Ships are disappearing\nwithout a trace. Private armies are being secretly formed. The sole\nremaining protomolecule sample is stolen. Terrorist attacks previously\nconsidered impossible bring the inner planets to their knees. The sins of\nthe past are returning to exact a terrible price. And as a new human order\nis struggling to be born in blood and fire, James Holden and the crew of\nthe Rocinante must struggle to survive and get back to the only home they\nhave left. Nemesis Games is a breakneck science fiction adventure following\nthe bestselling Cibola Burn. The Expanse Leviathan WakesCaliban's\nWarAbaddon's GateCibola BurnNemesis GamesBabylon's AshesPersepolis\nRisingTiamat's Wrath The Expanse Short Fiction The Butcher of Anderson\nStationGods of RiskThe ChurnThe Vital AbyssStrange Dogs\"\r\n4287,4462,845977,Marianne Williamson,\"A Return to Love: Reflections on the Principles of \"\"A Course in Miracles\"\"\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437440428l/845977._SY475_.jpg,4.29,19144,\"spirituality, nonfiction\",\"Back by popular demand -- and newly updated by the author -- the mega-\nbestselling spiritual guide in which Marianne Williamson shares her\nreflections on A Course in Miracles and her insights on the application of\nlove in the search for inner peace. Williamson reveals how we each can\nbecome a miracle worker by accepting God and by the expression of love in\nour daily lives. Whether psychic pain is in the area of relationships,\ncareer, or health, she shows us how love is a potent force, the key to\ninner peace, and how by practicing love we can make our own lives more\nfulfilling while creating a more peaceful and loving world for our\nchildren.\"\r\n4288,4463,5509321,David Baldacci,First Family,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442058434l/5509321._SY475_.jpg,3.98,22203,\"mystery, fiction\",\"In this #1 New York Times bestseller, a child is kidnapped at a\npresidential retreat and two former Secret Service agents must become\nprivate investigators in a desperate search that might destroy them both. A\ndaring kidnapping turns a children's birthday party at Camp David, the\npresidential retreat, into a national security nightmare. Former Secret\nService agents turned private investigators Sean King and Michelle Maxwell\ndon't want to get involved. But years ago Sean saved the First Lady's\nhusband, then a senator, from political disaster. Now the president's wife\npresses Sean and Michelle into a desperate search to rescue a kidnapped\nchild. With Michelle still battling her own demons, the two are pushed to\nthe limit, with forces aligned on all sides against them-and the line\nbetween friend and foe impossible to define...or defend.\"\r\n4289,4464,257845,Charles Portis,True Grit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436277655l/257845.jpg,4.12,21199,\"fiction, classics\",True GritCharles Portis\r\n4290,4465,653396,Susan  Jeffers,Feel The Fear And Do It Anyway: How to Turn Your Fear and Indecision into Confidence and Action,https://images.gr-assets.com/books/1363288028l/653396.jpg,4.01,18278,\"psychology, business\",\"A psychotherapist shows how to identify the fears that are inhibiting one's\nlife, ranging from public speaking and intimacy to aging and rejection, and\nhow to transform frustration and helplessness into power to create success\nin every aspect of life, in a twentieth anniversary edition of the best-\nselling guide. Reissue. 50,000 first printing.\"\r\n4291,4466,17792606,Katy Evans,Mine,https://images.gr-assets.com/books/1377178049l/17792606.jpg,4.29,39411,\"romance, sports\",MineKaty Evans\r\n4292,4467,13538552,Matthew Dicks,Memoirs of an Imaginary Friend,https://images.gr-assets.com/books/1343851908l/13538552.jpg,4.1,18344,\"contemporary, fiction\",Memoirs of an Imaginary FriendMatthew Dicks\r\n4293,4468,4835,\"Salman Rushdie, Paul Birkbeck\",Haroun and the Sea of Stories,https://images.gr-assets.com/books/1419913148l/4835.jpg,4.01,19221,\"fantasy, fiction\",\"Haroun and the Sea of StoriesSalman Rushdie, Paul Birkbeck\"\r\n4294,4470,13450339,Kresley Cole,Poison Princess,https://images.gr-assets.com/books/1356422925l/13450339.jpg,4.14,25679,\"fantasy, paranormal\",\"In the aftermath of a cataclysmic event, sixteen-year-old Evie, from a\nwell-to-do Louisiana family, learns that her terrible visions are actually\nprophecies and that there are others like herself--embodiments of Tarot\ncards destined to engage in an epic battle.\"\r\n4295,4471,83143,Paullina Simons,\"Tatiana and Alexander (The Bronze Horseman, #2)\",https://images.gr-assets.com/books/1390089221l/83143.jpg,4.3,20654,\"romance, fiction\",\"The epic saga of love and war continues—the heart-stopping sequel to\nPaullina Simons's beloved international bestseller The Bronze Horseman.\nTatiana is eighteen years old, pregnant, and widowed when she escapes war-\ntorn Leningrad to find a new life in America. But the ghosts of her past do\nnot rest easily. She becomes consumed by the belief that her husband, Red\nArmy officer Alexander Belov, is still alive and needs her desperately.\nMeanwhile, oceans and continents away in the Soviet Union, Alexander barely\nescapes execution, and is forced to lead a battalion of soldiers considered\nexpendable by the Soviet high command. Yet Alexander is determined to take\nhis men through the ruins of Europe in one last desperate bid to escape\nStalin's death machine and somehow find his way to Tatiana once again.\"\r\n4296,4472,17910124,Brian Staveley,The Emperor's Blades,https://images.gr-assets.com/books/1369246817l/17910124.jpg,4.15,19877,\"fantasy, fiction\",\"The children of an assassinated emperor try to stay alive and avenge their\nfather's death while continuing down their individual life-paths, one in a\nmonastery, another training with elite soldiers, and one appointed a\nminister determined to prove herself to her people.\"\r\n4297,4473,18723,Monica Ali,Brick Lane,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433730686l/18723.jpg,3.38,21002,\"fiction, contemporary\",Brick LaneMonica Ali\r\n4298,4474,18079804,Sally Green,Half Bad,https://images.gr-assets.com/books/1413889712l/18079804.jpg,3.8,26913,\"fantasy, paranormal\",\"In modern-day England, where witches live alongside humans, Nathan, son of\na White witch and the most powerful Black witch, must escape captivity\nbefore his seventeenth birthday and receive the gifts that will determine\nhis future.\"\r\n4299,4475,53639,\"Nikos Kazantzakis, Νίκος Καζαντζάκης\",Βίος και πολιτεία του Αλέξη Ζορμπά,https://images.gr-assets.com/books/1328007439l/53639.jpg,4.1,15203,\"fiction, classics\",\"Βίος και πολιτεία του Αλέξη ΖορμπάNikos Kazantzakis, Νίκος Καζαντζάκης\"\r\n4300,4476,598117,\"William H. Armstrong, James Barkley\",Sounder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1588161155l/598117._SX318_.jpg,3.96,24061,\"fiction, classics\",\"The Powerful Newbery Award-Winning Classic A landmark in children's\nliterature, winner of the 1970 Newbery Medal, and the basis of an acclaimed\nfilm, Sounder traces the keen sorrow and the abiding faith of a poor\nAfrican-American boy in the 19th-century South. The boy's father isa\nsharecropper, struggling to feed his family in hard times. Night after\nnight, he and his great coon dog, Sounder, return to the cabin empty-\nhanded. Then, one morning, almost like a miracle, a sweet-smelling ham is\ncooking in the family's kitchen. At last the family will have a good meal.\nBut that night, an angry sheriff and his deputies come, and the boy's life\nwill never be the same. A landmark in children's literature, winner of the\n1970 Newbery Medal and the basis of an acclaimed film, Sounder traces the\nkeen sorrow and the abiding faith of a poor African-American boy in the\n19th-century South.\"\r\n4301,4477,11337189,\"Lawrence M. Krauss, Richard Dawkins\",A Universe from Nothing: Why There Is Something Rather Than Nothing,https://images.gr-assets.com/books/1365217267l/11337189.jpg,3.92,17204,\"science, nonfiction\",\"Bestselling author and acclaimed physicist Lawrence Krauss offers a\nparadigm-shifting view of how everything that exists came to be in the\nfirst place. “Where did the universe come from? What was there before it?\nWhat will the future bring? And finally, why is there something rather than\nnothing?” One of the few prominent scientists today to have crossed the\nchasm between science and popular culture, Krauss describes the\nstaggeringly beautiful experimental observations and mind-bending new\ntheories that demonstrate not only can something arise from nothing,\nsomething will always arise from nothing. With a new preface about the\nsignificance of the discovery of the Higgs particle, A Universe from\nNothing uses Krauss’s characteristic wry humor and wonderfully clear\nexplanations to take us back to the beginning of the beginning, presenting\nthe most recent evidence for how our universe evolved—and the implications\nfor how it’s going to end. Provocative, challenging, and delightfully\nreadable, this is a game-changing look at the most basic underpinning of\nexistence and a powerful antidote to outmoded philosophical, religious, and\nscientific thinking.\"\r\n4302,4478,1970449,\"Slash, Anthony Bozza\",Slash,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347554088l/1970449.jpg,3.96,17989,\"music, biography\",\"SlashSlash, Anthony Bozza\"\r\n4303,4480,8475505,Rachel Hawkins,Rebel Belle,https://images.gr-assets.com/books/1371650817l/8475505.jpg,3.88,30506,\"fantasy, paranormal\",\"\"\"Seventeen-year-old Harper Price's charmed life is turned upside down when\nshe discovers she's been given magical powers in order to protect her\nschool nemesis David Stark, who's an Oracle\"\"--\"\r\n4304,4481,32254,Tess Gerritsen,The Mephisto Club,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389056704l/32254.jpg,4.01,23378,\"mystery, crime\",\"On Christmas Eve, Boston Medical Examiner Maura Isles is summoned to the\nscene of a brutal killing and teams up with Detective Jane Rizzoli to\ninvestigate the victim's ties to Joyce O'Donnell, a cantankerous\npsychologist, and to a sinister cabal called the Mephisto Club, a group\ndevoted to a study of evil in all its malevolent forms. 225,000 first\nprinting.\"\r\n4305,4482,73297,Francine Rivers,The Scarlet Thread ,https://images.gr-assets.com/books/1406510347l/73297.jpg,4.14,21233,\"fiction, christian\",The Scarlet Thread Francine Rivers\r\n4306,4483,24814,Bill Watterson,It's a Magical World: A Calvin and Hobbes Collection,https://images.gr-assets.com/books/1437420710l/24814.jpg,4.75,22351,\"comics, fiction\",\"The final collection of comic strips from the popular syndicated series\nfollows the adventures of Calvin and his stuffed tiger, Hobbes\"\r\n4307,4485,10033,\"Jean-Paul Sartre, Hazel E. Barnes, Mary Warnock, Richard Eyre\",L'être et le néant,https://images.gr-assets.com/books/1329978583l/10033.jpg,3.94,19897,\"philosophy, classics\",\"This translation originally published: London: Methuen, 1958.\"\r\n4308,4486,1128437,Andrzej Sapkowski,Miecz przeznaczenia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208553771l/1128437.jpg,4.4,12909,\"fiction, fantasy\",\"Polskie tłumaczenie streszczeniem w języku angielskim: Geralt jest\nwiedźmin, człowiek, którego magiczne moce, wzmocnione przez długi szkolenia\ni tajemniczy eliksir, uczyniły go znakomitym wojownikiem i bezwzględnym\nzabójcą. A jednak nie jest zwykłym zabójcą jego cele są wielorakie potwory\ni podłe diabły, które pustoszą kraj i atakują niewinnych. Jest to zbiór\nopowiadań, po przygodach kolekcji przeboju Ostatnie życzenie. Dołącz do\nGeralta, jak walczy z potworami, demonami i uprzedzeń podobni ...\"\r\n4309,4487,27333,\"Rachel Carson, Linda Lear, Edward O. Wilson\",Silent Spring,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442353674l/27333._SY475_.jpg,3.94,24027,\"nonfiction, science\",\"Discusses the reckless annihilation of fish and birds by the use of\npesticides and warns of the possible genetic effects on humans.\"\r\n4310,4488,13452375,Brandon Sanderson,Legion,https://images.gr-assets.com/books/1338512017l/13452375.jpg,4.13,20291,\"fantasy, fiction\",LegionBrandon Sanderson\r\n4311,4489,23215469,Holly Madison,Down the Rabbit Hole: Curious Adventures and Cautionary Tales of a Former Playboy Bunny,https://images.gr-assets.com/books/1427158803l/23215469.jpg,3.4,13213,\"memoir, biography\",\"A former girlfriend of Hugh Hefner describes how her years inside the\nPlayboy Mansion went from a fairytale of A-list celebrity parties to an\noppressive regime of strict rules, scheduled sex, and a total loss of\nidentity, so much so that she even contemplated suicide.\"\r\n4312,4490,10343389,James Patterson,Kill Alex Cross,https://images.gr-assets.com/books/1338802382l/10343389.jpg,4,20206,\"crime, mystery\",\"With relentless danger around every corner, Detective Alex Cross is hunting\ndown a kidnapper . . . but only if someone powerful doesn't kill him first.\nThe President's son and daughter are abducted, and Detective Alex Cross is\none of the first on the scene. But someone very high-up is using the FBI,\nSecret Service, and CIA to keep him off the case and in the dark. A deadly\ncontagion in the water supply cripples half of the capital, and Alex\ndiscovers that someone may be about to unleash the most devastating attack\nthe United States has ever experienced. As his window for solving both\ncrimes narrows, Alex makes a desperate decision that goes against\neverything he believes-one that may alter the fate of the entire country.\nKill Alex Cross is fast, exciting, and tightly wound, full of \"\"fast-and-\nfurious action\"\" (Washington Post).\"\r\n4313,4491,18505784,Nadia Hashimi,The Pearl that Broke Its Shell,https://images.gr-assets.com/books/1384543130l/18505784.jpg,4.12,19016,\"fiction, contemporary\",\"Afghan-American Nadia Hashimi's literary debut novel is a searing tale of\npowerlessness, fate, and the freedom to control one's own fate that\ncombines the cultural flavor and emotional resonance of the works of Khaled\nHosseini, Jhumpa Lahiri, and Lisa See. In Kabul, 2007, with a drug-addicted\nfather and no brothers, Rahima and her sisters can only sporadically attend\nschool, and can rarely leave the house. Their only hope lies in the ancient\ncustom of bacha posh, which allows young Rahima to dress and be treated as\na boy until she is of marriageable age. As a son, she can attend school, go\nto the market, and chaperone her older sisters. But Rahima is not the first\nin her family to adopt this unusual custom. A century earlier, her great-\ngreat grandmother, Shekiba, left orphaned by an epidemic, saved herself and\nbuilt a new life the same way. Crisscrossing in time, The Pearl the Broke\nIts Shell interweaves the tales of these two women separated by a century\nwho share similar destinies. But what will happen once Rahima is of\nmarriageable age? Will Shekiba always live as a man? And if Rahima cannot\nadapt to life as a bride, how will she survive?\"\r\n4314,4492,7826116,\"Scott Westerfeld, Keith Thompson\",Behemoth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422535707l/7826116.jpg,4.18,30049,\"fantasy, fiction\",\"Continues the story of Austrian Prince Alek who, in an alternate 1914\nEurope, eludes the Germans by traveling in the Leviathan to Constantinople,\nwhere he faces a whole new kind of genetically-engineered warship.\"\r\n4315,4493,72536,Martha Stout,The Sociopath Next Door,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187807l/72536.jpg,3.75,21550,\"psychology, nonfiction\",\"Examines the sociopaths--individuals with an antisocial personality\ndisorder who possess no conscience or sense of guilt--that we encounter in\neveryday life, describing how to recognize such individuals and how to\nprotect oneself from them.\"\r\n4316,4494,79422,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",\"Y: The Last Man, Vol. 8: Kimono Dragons\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234343l/79422.jpg,4.22,23842,\"comics, fiction\",\"\"\"This work brings to a conclusion the hunt for Ampersand--the monkey who\ncan unlock the mystery of the male-killing plague--as the last man on Earth\nand his companions finally reach Japan and discover the truth behind\nAmpersand's abduction.\"\"--Provided by publisher.\"\r\n4317,4497,261331,Jennifer Donnelly,The Tea Rose,https://images.gr-assets.com/books/1327888567l/261331.jpg,4.18,22448,\"romance, fiction\",The Tea RoseJennifer Donnelly\r\n4318,4498,8680418,Ben Aaronovitch,Moon Over Soho,https://images.gr-assets.com/books/1320411169l/8680418.jpg,4.1,16566,\"fantasy, mystery\",\"After the death of a part-time jazz drummer, London constable and\nsorcerer's apprentice Peter Grant investigates a series of supernatural\ndeaths in and around Soho that are linked to Peter's dad--a talented\ntrumpet player named Richard \"\"Lord\"\" Grant. Original.\"\r\n4319,4499,17456328,Charles Belfoure,The Paris Architect,https://images.gr-assets.com/books/1375064865l/17456328.jpg,3.98,18925,\"fiction, history\",\"A gifted architect reluctantly begins a secret life devising ingenious\nhiding places for Jews in Nazi-occupied Paris Like most gentiles in Nazi-\noccupied Paris, architect Lucien Bernard has little empathy for the Jews.\nSo when a wealthy industrialist offers him a large sum of money to devise\nsecret hiding places for Jews, Lucien struggles with the choice of risking\nhis life for a cause he doesn't really believe in. Ultimately he can't\nresist the challenge and begins designing expertly concealed hiding spaces\n--behind a painting, within a column, or inside a drainpipe--detecting\npossibilities invisible to the average eye. But when one of his clever\nhiding spaces fails horribly and the immense suffering of Jews becomes\nincredibly personal, he can no longer deny reality. Written by an expert\nwhose knowledge imbues every page, this story becomes more gripping with\nevery life the architect tries to save.\"\r\n4320,4500,12954620,\"Morgan Rhodes, Michelle Rowen\",Falling Kingdoms,https://images.gr-assets.com/books/1337026387l/12954620.jpg,3.83,32623,\"fantasy, romance\",\"\"\"A fantasy about three kingdoms on the brink of war and the destiny of one\nprincess\"\"--Provided by publisher.\"\r\n4321,4501,244383,\"Esther Hicks, Jerry Hicks, Wayne W. Dyer\",Ask and It Is Given: Learning to Manifest Your Desires,https://images.gr-assets.com/books/1390062620l/244383.jpg,4.18,17170,\"spirituality, nonfiction\",\"The teachings of the nonphysical entity Abraham will help you learn how to\nmanifest your desires so that you're living the joyous and fulfilling life\nyou deserve. 50,000 first printing. Original.\"\r\n4322,4502,7005479,\"Isabel Allende, Margaret Sayers Peden\",La isla bajo el mar,https://images.gr-assets.com/books/1501991943l/7005479.jpg,4.01,18864,\"fiction, ebooks\",\"La isla bajo el marIsabel Allende, Margaret Sayers Peden\"\r\n4323,4503,99329,\"Henry Fielding, Thomas Keymer, Alice Wakely\",\"The History of Tom Jones, a Foundling\",https://images.gr-assets.com/books/1444450775l/99329.jpg,3.73,24718,\"classics, fiction\",\"Chronicles the romantic adventures of mysterious orphan Tom Jones, a\nreckless yet personable young man, as he falls in love with the\nunattainable Sophia Western, the beautiful daughter of a neighboring\nsquire, in an exuberant study of eighteenth-century life. Reprint.\"\r\n4324,4504,80176,Sherwood Anderson,\"Winesburg, Ohio: A Group of Tales of Ohio Small-Town Life\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391639013l/80176.jpg,3.84,20125,\"fiction, classics\",\"Winesburg, Ohio: A Group of Tales of Ohio Small-Town LifeSherwood Anderson\"\r\n4325,4506,89656,Sue Grafton,C is for Corpse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431914718l/89656._SY475_.jpg,3.87,29204,\"mystery, fiction\",C is for CorpseSue Grafton\r\n4326,4507,156533,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",Y: The Last Man Vol. 5: Ring of Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389533488l/156533.jpg,4.27,24606,\"comics, fiction\",\"Y: The Last Man Vol. 5: Ring of TruthBrian K. Vaughan, Pia Guerra, José Marzán Jr.\"\r\n4327,4508,15096,Joanne Harris,Five Quarters of the Orange,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1583190215l/15096.jpg,3.83,23332,\"fiction, contemporary\",Five Quarters of the OrangeJoanne Harris\r\n4328,4509,63032,Roberto Bolaño,2666,https://images.gr-assets.com/books/1412644327l/63032.jpg,4.2,15000,\"fiction, mystery\",2666Roberto Bolaño\r\n4329,4510,2748,Douglas Coupland,Microserfs,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546099595l/2748.jpg,3.88,19516,\"fiction, contemporary\",MicroserfsDouglas Coupland\r\n4330,4511,15799936,\"Matthew Inman, The Oatmeal\",How to Tell If Your Cat Is Plotting to Kill You,https://images.gr-assets.com/books/1461518764l/15799936.jpg,3.95,22994,\"comics, fiction\",\"Mr Oats delivers a side-splitting serving of cat comics in his new book,\n'How to Tell If Your Cat Is Plotting to Kill You'. If your cat is kneading\nyou, that's not a sign of affection. Your cat is actually checking your\ninternal organs for weakness. If your cat brings you a dead animal, this\nisn't a gift. It's a warning. 'How to Tell If Your Cat Is Plotting to Kill\nYou' is a hilarious, brilliant offering of cat comics, facts, and\ninstructional guides from the creative wonderland at TheOatmeal.com.\"\r\n4331,4512,93947,David Baldacci,Simple Genius,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388340824l/93947.jpg,3.89,22171,\"fiction, thriller\",Simple GeniusDavid Baldacci\r\n4332,4513,14965,Anita Shreve,Light on Snow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166668978l/14965._SY475_.jpg,3.56,22845,\"fiction, contemporary\",Light on SnowAnita Shreve\r\n4333,4514,8960,Darren Shan,\"Vampire Mountain (Cirque du Freak, #4) \",https://images.gr-assets.com/books/1255813254l/8960.jpg,4.16,23847,\"fantasy, horror\",\"Darren Shan and Mr. Crepsley embark on a dangerous trek to the very heart\nof the vampire world. But they face more than the cold on Vampire Mountain-\nthe vampaneze have been there before them. Will a meeting with the Vampire\nPrinces restore Darren's human side, or turn him further toward the\ndarkness? Only one thing is certain-Darren's initiation into the vampire\nclan is more deadly than he can ever have imagined.\"\r\n4334,4515,14185,Philip K. Dick,The Three Stigmata of Palmer Eldritch,https://images.gr-assets.com/books/1338461946l/14185.jpg,4.01,20140,\"fiction, fantasy\",\"Palmer Eldritch returns from the edge of the universe with a drug called\nChew-D for the colonists of Mars who are under threat of god-like or\nsatanic psychics that threaten to wage war against the human soul.\"\r\n4335,4516,23128304,\"Haruki Murakami, Ted Goossen\",ふしぎな図書館  Fushigi na toshokan,https://images.gr-assets.com/books/1419549475l/23128304.jpg,3.55,18806,\"fiction, fantasy\",\"Fully illustrated and beautifully designed, this is a unique and\nwonderfully creepy tale that is sure to delight Murakami fans. 'All I did\nwas go to the library to borrow some books'. On his way home from school,\nthe young narrator of The Strange Library finds himself wondering how taxes\nwere collected in the Ottoman Empire. He pops into the local library to see\nif it has a book on the subject. This is his first mistake. Led to a\nspecial 'reading room' in a maze under the library by a strange old man, he\nfinds himself imprisoned with only a sheep man, who makes excellent donuts,\nand a girl, who can talk with her hands, for company. His mother will be\nworrying why he hasn't returned in time for dinner and the old man seems to\nhave an appetite for eating small boy's brains. How will he escape?\"\r\n4336,4517,9598,Kurt Vonnegut Jr.,Deadeye Dick,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1515193617l/9598.jpg,3.8,19212,\"fiction, contemporary\",\"A young boy's life is irrevocably changed when he accidently kills a\npregnant woman while playing with one of his father's many rifles\"\r\n4337,4518,8579016,Rhonda Byrne,\"The Power (The Secret, #2)\",https://images.gr-assets.com/books/1366245447l/8579016.jpg,4.09,16917,\"spirituality, psychology\",\"The Secret revealed the law of attraction. Now Rhonda Byrne reveals the\ngreatest power in the universe – The Power to have anything you want. In\nthis book you will come to understand that all it takes is just one thing\nto change your relationships, money, health, happiness, career, and your\nentire life. Every discovery, invention, and human creation comes from The\nPower. Perfect health, incredible relationships, a career you love, a life\nfilled with happiness, and the money you need to be, do, and have\neverything you want, all come from The Power. The life of your dreams has\nalways been closer to you than you realized, because The Power – to have\neverything good in your life – is inside you. To create anything, to change\nanything, all it takes is just one thing... THE POWER.\"\r\n4338,4519,181886,\"Diana L. Paxson, Marion Zimmer Bradley\",Ancestors of Avalon ,https://images.gr-assets.com/books/1311305924l/181886.jpg,3.89,21408,\"fantasy, fiction\",\"Ancestors of Avalon Diana L. Paxson, Marion Zimmer Bradley\"\r\n4339,4520,398323,\"Per Petterson, Anne Born\",Ut og stjæle hester,https://images.gr-assets.com/books/1317791439l/398323.jpg,3.79,19199,\"fiction, classics\",Spring/Summer 2008\r\n4340,4521,51078,\"Doug Moench, Chuck Dixon, Jim Aparo, Norm Breyfogle, Graham Nolan, Jim Balent\",\"Batman: Knightfall, Part One: Broken Bat\",https://images.gr-assets.com/books/1376156963l/51078.jpg,4.08,18298,\"comics, fiction\",\"When all of Batman's greatest foes break out of Arkham at once, he must\nface them all in single combat, and last enemy he must battle is the\ndeadliest, the mysterious and mighty Bane, who engineered the breakout.\"\r\n4341,4522,25451555,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume Five\",https://images.gr-assets.com/books/1486028990l/25451555.jpg,4.44,29429,\"fantasy, comics\",\"Multiple storylines collide in this cosmos-spanning new volume. While\nGwendolyn and Lying Cat risk everything to find a cure for The Will, Marko\nmakes an uneasy alliance with Prince Robot IV to find their missing\nchildren, who are trapped on a strange world with terrifying new enemies.\nCollects Saga #25-30.\"\r\n4342,4523,206196,Brad Thor,The Lions of Lucerne,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522067l/206196.jpg,4.04,18770,\"thriller, fiction\",The Lions of LucerneBrad Thor\r\n4343,4525,207569,Elizabeth George Speare,The Sign of the Beaver,https://images.gr-assets.com/books/1362166273l/207569.jpg,3.77,20450,\"fiction, classics\",The Sign of the BeaverElizabeth George Speare\r\n4344,4526,46227,\"John Fante, Charles Bukowski\",Ask the dust ,https://images.gr-assets.com/books/1388283697l/46227.jpg,4.14,16226,\"fiction, classics\",\"Ask the dust John Fante, Charles Bukowski\"\r\n4345,4527,470495,Rick Bragg,All Over But the Shoutin',https://images.gr-assets.com/books/1327905477l/470495.jpg,4.09,21072,\"memoir, nonfiction\",\"A correspondent for \"\"The New York Times\"\" recounts growing up in the Alabama\nhills, the son of a violent veteran and a mother who tried to insulate her\nchildren from poverty and ignorance\"\r\n4346,4528,32433,\"Leigh Nichols, Dean Koontz\",The Key to Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348697141l/32433.jpg,3.93,22578,\"horror, fiction\",\"The Key to MidnightLeigh Nichols, Dean Koontz\"\r\n4347,4529,13554713,\"Philip Pullman, Jacob Grimm, Wilhelm Grimm\",Grimm Tales for Young and Old,https://images.gr-assets.com/books/1339554952l/13554713.jpg,4.11,17219,\"fantasy, fiction\",\"Grimm Tales for Young and OldPhilip Pullman, Jacob Grimm, Wilhelm Grimm\"\r\n4348,4530,43886,Terry Goodkind,\"Debt of Bones (The Sword of Truth, #0.5)\",https://images.gr-assets.com/books/1502300279l/43886.jpg,3.85,23279,\"fantasy, fiction\",\"A poor peasant named Abby seeks to win the aid of First Wizard Zedd to save\nher community.\"\r\n4349,4531,26114,Milan Kundera,Žert,https://images.gr-assets.com/books/1448044837l/26114.jpg,3.99,16464,\"fiction, classics\",ŽertMilan Kundera\r\n4350,4532,12326627,Philippa Gregory,The White Princess,https://images.gr-assets.com/books/1479698298l/12326627.jpg,3.85,22584,\"fiction, history\",\"Passionately in love with Richard III in spite of her arranged marriage to\npretender to the throne Henry Tudor, Princess Elizabeth of York is forced\nto marry the man who murdered her lover and create a royal family under the\ncontrolling gaze of his mother, Margaret Beaufort.\"\r\n4351,4533,377425,Stephen Coonts,Flight of the Intruder,https://images.gr-assets.com/books/1327959569l/377425.jpg,4.04,21765,\"fiction, thriller\",\"During the Vietnam War, attack pilot Jake Grafton, struggling with his\nconscience and trying to find meaning to all the senseless death and\ndestruction, decides to plan an illegal bombing raid into the very heart of\nHanoi\"\r\n4352,4534,11313,Susan Cooper,Silver on the Tree,https://images.gr-assets.com/books/1364805592l/11313.jpg,4.16,25818,\"fantasy, fiction\",\"The Dark is rising in its last and greatest bid to control the world. And\nWill Stanton -- last-born of the immortal Old Ones, dedicated to keeping\nthe world free -- must join forces with this ageless master Merriman and\nBran, the Welsh boy whose destiny ties him to the Light. Drawn in with them\nare the three Drew children, who are mortal, but have their own vital part\nin the story. These six fight fear and death in the darkly brooding Welsh\nhills, in a quest through time and space that touches the most ancient\nmyths of the British Isles, and that brings Susan Cooper's masterful\nsequence of novels to a satysfying close.\"\r\n4353,4535,225774,Enid Bagnold,National Velvet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1530561613l/225774.jpg,4.09,22682,\"classics, fiction\",\"A fourteen-year-old English girl wins a horse in a raffle, trains it, and\nrides it in the Grand National steeplechase.\"\r\n4354,4536,211099,Richard Branson,\"Losing My Virginity: How I've Survived, Had Fun, and Made a Fortune Doing Business My Way\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216295l/211099.jpg,3.97,26225,\"business, biography\",\"\"\"Oh, screw it, let's do it.\"\" That's the philosophy that has allowed Richard\nBranson, in slightly more than twenty-five years, to spawn so many\nsuccessful ventures. From the airline business (Virgin Atlantic Airways),\nto music (Virgin Records and V2), to cola (Virgin Cola), to retail (Virgin\nMegastores), and nearly a hundred others, ranging from financial services\nto bridal wear, Branson has a track record second to none. Losing My\nVirginity is the unusual, frequently outrageous autobiography of one of the\ngreat business geniuses of our time. When Richard Branson started his first\nbusiness, he and his friends decided that \"\"since we're complete virgins at\nbusiness, let's call it just that: Virgin.\"\" Since then, Branson has written\nhis own \"\"rules\"\" for success, creating a group of companies with a global\npresence, but no central headquarters, no management hierarchy, and minimal\nbureaucracy. Many of Richard Branson's companies--airlines, retailing, and\ncola are good examples--were started in the face of entrenched competition.\nThe experts said, \"\"Don't do it.\"\" But Branson found golden opportunities in\nmarkets in which customers have been ripped off or underserved, where\nconfusion reigns, and the competition is complacent. And in this stressed-\nout, overworked age, Richard Branson gives us a new model: a dynamic,\nhardworking, successful entrepreneur who lives life to the fullest. Family,\nfriends, fun, and adventure are equally important as business in Branson's\nlife. Losing My Virginity is a portrait of a productive, sane, balanced\nlife, filled with rich and colorful stories: Crash-landing his hot-air\nballoon in the Algerian desert, yet remaining determined to have another go\nat being the first to circle the globe Signing the Sex Pistols, Janet\nJackson, the Rolling Stones, Boy George, and Phil Collins Fighting back\nwhen British Airways took on Virgin Atlantic and successfully suing this\npillar of the British business establishment Swimming two miles to safety\nduring a violent storm off the coast of Mexico Selling Virgin Records to\nsave Virgin Atlantic Staging a rescue flight into Baghdad before the start\nof the Gulf War . . . And much more. Losing My Virginity is the ultimate\ntale of personal and business survival from a man who combines the business\nprowess of Bill Gates and the promotional instincts of P. T. Barnum. Also\navailable in the UK from Virgin Publishing, and in Canada from General\nPublishing, From the Hardcover edition.\"\r\n4355,4537,1591,\"Aristophanes, Sarah Ruden\",Λυσιστράτη,https://images.gr-assets.com/books/1335892524l/1591.jpg,3.84,25758,\"fiction, poetry\",\"Aristophanes helped shape comedy ... despite their often fantasical\npremises, were fairly consistently concerned with contemporary politics and\nsocial institutions. ... mildly aristocratic ... patriotic ... suspicious\nof social innovation ... sympathetic to the struggles of the common people\n... unrestrained in insult ... exuberantly bawdy.\"\r\n4356,4538,5983057,Elizabeth Kostova,The Swan Thieves,https://images.gr-assets.com/books/1256542427l/5983057.jpg,3.53,23399,\"fiction, mystery\",\"Psychiatrist Andrew Marlow, devoted to his profession and the painting\nhobby he loves, has a solitary but ordered life. When renowned painter\nRobert Oliver attacks a canvas in the National Gallery of Art and becomes\nhis patient, Marlow finds that order destroyed. Desperate to understand the\nsecret that torments the genius, he embarks on a journey that leads him\ninto the lives of the women closest to Oliver and a tragedy at the heart of\nFrench Impressionism. Kostova's masterful new novel travels from American\ncities to the coast of Normandy, from the late 19th century to the late\n20th, from young love to last love. THE SWAN THIEVES is a story of\nobsession, history's losses, and the power of art to preserve human hope.\"\r\n4357,4539,12444166,Karen Marie Moning,Iced,https://images.gr-assets.com/books/1333022535l/12444166.jpg,4.13,28890,\"fantasy, paranormal\",IcedKaren Marie Moning\r\n4358,4540,15062217,Peter Clines,14,https://images.gr-assets.com/books/1338999953l/15062217.jpg,3.92,20011,\"horror, fiction\",A young man moves into a very strange apartment building.\r\n4359,4541,9165406,Gary D. Schmidt,Okay for Now,https://images.gr-assets.com/books/1388860777l/9165406.jpg,4.19,24254,\"fiction, art\",\"While Doug struggles to be more than the thug that his teachers and the\npolice think him to be, he finds an unlikely ally in Lil Spicer, as they\nexplore Audubon's art.\"\r\n4360,4542,85957,\"Tim LaHaye, Jerry B. Jenkins\",\"Assassins : Assignment: Jerusalem, Target: Antichrist\",https://images.gr-assets.com/books/1406512196l/85957.jpg,3.98,24143,\"christian, fiction\",\"Assassins : Assignment: Jerusalem, Target: AntichristTim LaHaye, Jerry B. Jenkins\"\r\n4361,4543,13521459,Joe Abercrombie,Red Country,https://images.gr-assets.com/books/1333663008l/13521459.jpg,4.27,19926,\"fantasy, fiction\",Red CountryJoe Abercrombie\r\n4362,4544,85443,Pat Conroy,The Lords of Discipline,https://images.gr-assets.com/books/1320483838l/85443.jpg,4.28,19050,\"fiction, classics\",\"Dramatically interweaves the themes of brotherhood and betrayal as senior\ncadet Will McLean courageously struggles to forge his own honor code and\nmanhood in a regimented, venerable, but corrupt Southern military academy.\nReprint.\"\r\n4363,4545,13202092,\"Scott Jurek, Steve Friedman\",Eat And Run,https://images.gr-assets.com/books/1344746039l/13202092.jpg,3.95,17376,\"sports, nonfiction\",\"Eat And RunScott Jurek, Steve Friedman\"\r\n4364,4546,7093222,Karin Slaughter,Broken,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430045032l/7093222.jpg,4.2,22244,\"mystery, crime\",\"Grant County medical examiner Sara Linton and Georgia Bureau of\nInvestigation Special Agent Will Trent have their work cut out for them\nwhen the prime suspect in a shoreside murder winds up dead in his holding\ncell. By the best-selling author of A Faint Cold Fear.\"\r\n4365,4547,18656006,Elin Hilderbrand,The Matchmaker,https://images.gr-assets.com/books/1395694896l/18656006.jpg,3.82,19094,\"fiction, romance\",The MatchmakerElin Hilderbrand\r\n4366,4548,50930,\"Tim LaHaye, Jerry B. Jenkins\",The Mark: The Beast Rules the World,https://images.gr-assets.com/books/1406510315l/50930.jpg,4.02,21668,\"christian, fiction\",\"An evil world leader proclaims himself the Antichrist, drawing up plans to\nmark all human beings, but the members of the Tribulation Force are\ndetermined to stop him.\"\r\n4367,4549,2113410,Marisa de los Santos,Belong to Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441939798l/2113410._SY475_.jpg,3.84,22521,\"contemporary, fiction\",\"Everyone has secrets. Some we keep to protect ourselves, others we keep to\nprotect those we love. Cornelia Brown surprised herself when she was\ngripped by the sudden, inescapable desire to move with her husband to the\nsuburbs. Her mettle is quickly tested by her impeccably dressed, overly\njudgmental neighbor Piper Truitt—the embodiment of everything Cornelia\nfeared she'd find in suburbia. With Lake, another recent arrival, Cornelia\nshares a love of literature and old movies—as she forms an instant bond\nwith this warm yet elusive woman and her perceptive, brilliant young son,\nDev. But there are shocking secrets and unexpected surprises lurking\nbeneath the peaceful veneer of suburban life—and nothing is quite what it\nseems.\"\r\n4368,4551,57727,James Ellroy,L.A. Confidential,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348575361l/57727.jpg,4.2,21511,\"fiction, crime\",L.A. ConfidentialJames Ellroy\r\n4369,4552,16045144,Louise Penny,The Beautiful Mystery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388713271l/16045144.jpg,4.18,16170,\"mystery, fiction\",\"When the choir director of a monastery in Quâebec is murdered, Chief\nInspector Armand Gamache and Jean-Guy Beauvoir of the Sãuretâe du Quâebec\nare challenged to find the killer in a cloistered community that has taken\na vow of silence.\"\r\n4370,4553,616678,David Eddings,The Diamond Throne,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212601l/616678.jpg,3.93,26150,\"fantasy, fiction\",\"Sparhawk--Pandion Knight and Queen's Champion--finds his land under evil\nrule and the queen deathly ill upon his return, and sets off with his\nmagic-empowered friends to find a cure\"\r\n4371,4554,133765,\"Joss Whedon, Brett Matthews, Will Conrad\",\"Those Left Behind (Serenity, #1)\",https://images.gr-assets.com/books/1403203994l/133765.jpg,4.04,23220,\"comics, fiction\",\"The ragtag crew of Serenity, a ship full of mercenaries, fugitives, and one\nlaw-abiding prostitute, takes on a scavenger mission with the hopes of\nearning enough dough to disappear for a while, only to discover that the\nmission is orchestrated by an old enemy. Original.\"\r\n4372,4555,63461,Larry McMurtry,Terms of Endearment,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170617268l/63461.jpg,4.15,21352,\"fiction, classics\",\"Fiercely independent and idiosyncratic, Aurora Greenway is used to the\nworld revolving around her, but her daughter's hasty marriage and\nsubsequent struggle with cancer cause Aurora to rethink her life. Reprint.\n15,000 first printing.\"\r\n4373,4556,84142,Sherrilyn Kenyon,Kiss of the Night,https://images.gr-assets.com/books/1348682795l/84142.jpg,4.24,21022,\"paranormal, romance\",\"Wulf, an immortal Viking warrior, is forced into the position of protecting\nCassandra Peters, a young woman who holds the key to saving the world from\nDaimons, vicious vampires who must destroy Cassandra to end the curse that\nhas banished them into the da\"\r\n4374,4557,474634,Madeleine Wickham,The Wedding Girl,https://images.gr-assets.com/books/1320539465l/474634.jpg,3.47,20501,\"fiction, romance\",\"At the age of eighteen, in that first golden Oxford summer, Milly was up\nfor anything. Rupert and his American lover, Allan, were an important part\nof her new, exciting life, so when Rupert suggested to her that she and\nAllan should get married to keep Allan in the country, Milly didn't\nhesitate. Ten years later, Milly is a very different person and engaged to\nSimon—who is wealthy, serious, and believes her to be perfect. Milly's\nsecret history is locked away so securely she has almost persuaded herself\nthat it doesn't exist—until, only four days before her elaborate wedding.\nTo have and to hold takes on a whole new meaning when one bride's past\ncatches up with her and bring the present crashing down. With her trademark\nstyle of keen insight, and razor sharp wit, Madeleine Wickham introduces\nher fanatical fan-base, plus a host of new readers to a fresh and\nirresistible heroine in The Wedding Girl.\"\r\n4375,4559,8069535,Carrie Jones,Entice,https://images.gr-assets.com/books/1305547585l/8069535.jpg,4.03,28584,\"fantasy, paranormal\",EnticeCarrie Jones\r\n4376,4560,3764,Ian Fleming,\"From Russia, with Love\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440169210l/3764._SY475_.jpg,3.88,19802,\"fiction, thriller\",\"When Soviet spy Tatiana Romanova declares she wants to defect to Britain,\nJames Bond chaperones her on a journey aboard the Orient Express, but\ndespite his physical attraction to her, Bond does not trust Romanova's\nintentions.\"\r\n4377,4561,24731,T.C. Boyle,The Tortilla Curtain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208754l/24731.jpg,3.64,20921,\"fiction, contemporary\",\"The lives of two different couples--wealthy Los Angeles liberals Delaney\nand Kyra Mossbacher, and Candido and America Rincon, a pair of Mexican\nillegals--suddenly collide, in a story that unfolds from the shifting\nviewpoints of the various characters\"\r\n4378,4562,6368611,Melissa Marr,Darkest Mercy,https://images.gr-assets.com/books/1278717537l/6368611.jpg,4.11,29069,\"fantasy, paranormal\",\"The political and romantic tensions that began when Aislinn became Summer\nQueen threaten to boil over as the Faerie Courts brace against the threat\nof all-out war.\"\r\n4379,4563,27209486,Emma Straub,Modern Lovers,https://images.gr-assets.com/books/1458657735l/27209486.jpg,3.45,20453,\"fiction, contemporary\",Modern LoversEmma Straub\r\n4380,4564,13624367,R.L. Mathewson,\"Checkmate (A Neighbor from Hell, #3)\",https://images.gr-assets.com/books/1406585363l/13624367.jpg,4.15,38343,\"romance, contemporary\",\"There's nothing worse than living next door to your childhood nemesis,\nexcept maybe being forced to share your dream project with him, being\nblackmailed into going along with something that was just wrong on so many\nlevels, and having your hot cocoa stolen by the person that drove you to\ndrink it in the first place.As long as she has plenty of hot cocoa, a pair\nof pliers on hand and is able to resist Connor O'Neil's bad boy charm then\nRory James should be able to make it through this project with her sanity\nintact. If not.....She'd probably face a few more nights in jail, have a\nfew more restraining orders slapped against her and lose her heart to the\nman that ruined her life.Show more Show less\"\r\n4381,4565,34534,Terry Pratchett,The Amazing Maurice and His Educated Rodents ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168566225l/34534.jpg,4.04,24279,\"fantasy, fiction\",\"Winner of the 2001 Carnegie Medal One rat, popping up here and there,\nsqueaking loudly, and taking a bath in the cream, could be a plague all by\nhimself. After a few days of this, it was amazing how glad people were to\nsee the kid with his magical rat pipe. And they were amazing when the rats\nfollowed hint out of town. They'd have been really amazed if they'd ever\nfound out that the rats and the piper met up with a cat somewhere outside\nof town and solemnly counted out the money. The Amazing Maurice runs the\nperfect Pied Piper scam. This streetwise alley cat knows the value of cold,\nhard cash and can talk his way into and out of anything. But when Maurice\nand his cohorts decide to con the town of Bad Blinitz, it will take more\nthan fast talking to survive the danger that awaits. For this is a town\nwhere food is scarce and rats are hated, where cellars are lined with\ndeadly traps, and where a terrifying evil lurks beneath the hunger-stricken\nstreets.... Set in Terry Pratchett's widely popular Discworld, this\nmasterfully crafted, gripping read is both compelling and funny. When one\nof the world's most acclaimed fantasy writers turns a classic fairy tale on\nits head, no one will ever look at the Pied Piper -- or rats -- the same\nway again!\"\r\n4382,4566,771332,\"Eugene B. Sledge, Paul Fussell\",With The Old Breed: At Peleliu And Okinawa,https://images.gr-assets.com/books/1297640051l/771332.jpg,4.4,16952,\"nonfiction, biography\",\"Memoir of the author's experience fighting in too of thebattles of the\nSouth Pacific during World War II.\"\r\n4383,4567,42369,\"Eleanor Estes, Louis Slobodkin\",The Hundred Dresses,https://images.gr-assets.com/books/1476941110l/42369.jpg,4.07,26136,\"fiction, classics\",\"In winning a medal she is no longer there to receive, a tight-lipped little\nPolish girl teaches her classmates a lesson. Includes a note from the\nauthor's daughter, Helena Estes.\"\r\n4384,4568,13481275,Sarah Addison Allen,Lost Lake,https://images.gr-assets.com/books/1455574760l/13481275.jpg,3.85,24271,\"fiction, fantasy\",\"Seeking solace in a Georgia lakeside cottage with her eccentric 8-year-old\ndaughter, recently widowed Kate wonders if the area's almost-magical\nability for sparking romances has been imagined before experiencing a\npoignant renewal. By the best-selling author of Garden Spells. 125,000\nfirst printing.\"\r\n4385,4569,18244799,Meredith Wild,Hardwired,https://images.gr-assets.com/books/1374851880l/18244799.jpg,4.07,9235,\"romance, contemporary\",HardwiredMeredith Wild\r\n4386,4570,15705011,Tracy Chevalier,The Last Runaway,https://images.gr-assets.com/books/1349448072l/15705011.jpg,3.78,20997,\"fiction, history\",\"Forced to leave England and struggling with illness in the wake of a family\ntragedy, Quaker Honor Bright is forced to rely on strangers in the harsh\nlandscape of 1850 Ohio and is compelled to join the Underground Railroad\nnetwork to help runaway slaves escape to freedom. By the best-selling\nauthor of Girl with a Pearl Earring. Reprint. 150,000 first printing.\"\r\n4387,4571,345299,Steven Erikson,Midnight Tides,https://images.gr-assets.com/books/1366996057l/345299.jpg,4.34,20725,\"fantasy, fiction\",\"The five tribes of the Tiste Edur have finally been united under the\nimplacable rule of the Warlock King of Hiroth, but their peace was made at\nthe cost of a pact made with a hidden power, and ancient forces are\nawakening that may destroy them all.\"\r\n4388,4572,17332969,Kass Morgan,The 100,https://images.gr-assets.com/books/1377012321l/17332969.jpg,3.56,26762,\"romance, fiction\",The 100Kass Morgan\r\n4389,4573,9666812,Alexandra Adornetto,Hades,https://images.gr-assets.com/books/1478985289l/9666812.jpg,3.97,27679,\"fantasy, paranormal\",HadesAlexandra Adornetto\r\n4390,4574,156530,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr., Paul Chadwick\",Y: The Last Man Vol. 3: One Small Step,https://images.gr-assets.com/books/1306252925l/156530.jpg,4.22,24954,\"fiction, fantasy\",\"\"\"In the summer of 2002, a plague of unknown origin destroyed every last\nsperm, fetus, and fully developed mammal with a Y chromosome, with the\napparent exception of one young man . . . Now, aided by the mysterious\nAgent 355, the human male Yorick Brown must contend with dangerous\nextremists, a hoped-for reunion with a girlfriend on the other side of the\nglobe, and the search for exactly why he's the only man to survive.\"\"--Book\n1, Back cover.\"\r\n4391,4575,867248,\"Karma Wilson, Jane Chapman\",Bear Snores On,https://images.gr-assets.com/books/1344390790l/867248.jpg,4.25,24556,\"fiction, fantasy\",\"On a cold winter night many animals gather to party in the cave of a\nsleeping bear, who then awakes and protests that he has missed the food and\nthe fun.\"\r\n4392,4576,30253864,Lauren Graham,\"Talking as Fast as I Can: From Gilmore Girls to Gilmore Girls, and Everything in Between\",https://images.gr-assets.com/books/1492797634l/30253864.jpg,4.04,30471,\"memoir, nonfiction\",\"Talking as Fast as I Can: From Gilmore Girls to Gilmore Girls, and Everything in BetweenLauren Graham\"\r\n4393,4577,317282,Gabrielle Zevin,Memoirs of a Teenage Amnesiac,https://images.gr-assets.com/books/1317793286l/317282.jpg,3.7,28373,\"contemporary, romance\",\"If Naomi had picked tails, she would have won the coin toss. She wouldn't\nhave had to go back for the yearbook camera, and she wouldn't have hit her\nhead on the steps. She wouldn't have woken up in an ambulance with amnesia.\nShe certainly would have remembered her boyfriend, Ace. She might even have\nremembered why she fell in love with him in the first place. She would\nunderstand why her best friend, Will, keeps calling her \"\"Chief.\"\" She'd know\nabout her mom's new family. She'd know about her dad's fiancée. She never\nwould have met James, the boy with the questionable past and the even\nfuzzier future, who tells her he once wanted to kiss her. She wouldn't have\nwanted to kiss him back. But Naomi picked heads. After her remarkable\ndebut, Gabrielle Zevin has crafted an imaginative second novel all about\nlove and second chances. Memoirs of a Teenage Amnesiac is a 2008 Bank\nStreet - Best Children's Book of the Year.\"\r\n4394,4578,7983,\"Brian Jacques, Gary Chalk\",Salamandastron,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924804l/7983.jpg,4.05,23723,\"fantasy, fiction\",\"Urthstripe the Strong, a wise old badger, leads the animals of the great\nfortress of Salamandastron and Redwall Abbey against the weasel Ferahgo the\nAssassin and his corps of vermin.\"\r\n4395,4579,43805,Anne Rice,Servant of the Bones,https://images.gr-assets.com/books/1312931293l/43805.jpg,3.7,24324,\"horror, fiction\",\"Drawn from his centuries-long slumber, Azriel, an embittered immortal and\nServant of the Bones, becomes a witness to the murder of an innocent girl,\na crime that leads him into the conflict between a great leader of the\nHasidim, and his stepson, a diabolical cult leader. Reissue.\"\r\n4396,4580,283494,Holly Black,Ironside: A Modern Faery's Tale,https://images.gr-assets.com/books/1354844906l/283494.jpg,4.04,29416,\"fantasy, paranormal\",Ironside: A Modern Faery's TaleHolly Black\r\n4397,4581,4932435,Melina Marchetta,Finnikin of the Rock,https://images.gr-assets.com/books/1346007613l/4932435.jpg,3.93,29401,\"fantasy, romance\",\"Finnikin reluctantly joins forces against the imposter who has ruled\nLumatere for years with an enigmatic young novice who claims that her dark\ndreams will lead them to a surviving royal child and a way to regain the\nthrone.\"\r\n4398,4582,32650,\"Thomas Hardy, Alexander Theroux\",The Return of the Native,https://images.gr-assets.com/books/1403182613l/32650.jpg,3.84,24957,\"classics, fiction\",\"Presents Hardy's classic novel of two people caught up in their passion for\neach other and conflicting ambitions.\"\r\n4399,4583,11660590,\"Michael Crichton, Richard   Preston\",Micro,https://images.gr-assets.com/books/1314593813l/11660590.jpg,3.38,19460,\"mystery, science\",\"MicroMichael Crichton, Richard   Preston\"\r\n4400,4584,10037,\"Jean-Paul Sartre, Stuart Gilbert, Lionel Abel\",No Exit and Three Other Plays,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348307264l/10037.jpg,4.09,21841,\"philosophy, fiction\",\"English translations of four plays which dramatize the theme of man's\nresponsibility for his own actions, by the leader of French existentialism.\"\r\n4401,4585,46656,Greg Bear,\"Foundation and Chaos (Second Foundation Trilogy, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348674606l/46656.jpg,4.14,21137,\"fiction, fantasy\",\"Foundation and Chaos (Second Foundation Trilogy, #2)Greg Bear\"\r\n4402,4586,3832,P.D. James,Cover Her Face,https://images.gr-assets.com/books/1298412294l/3832.jpg,3.94,22941,\"mystery, fiction\",\"Headstrong and beautiful, the young housemaid Sally Jupp is put rudely in\nher place, strangled in her bed behind a bolted door. Coolly brilliant\npoliceman Adam Dalgliesh of Scotland Yard must find her killer among a\nhouseful of suspects, most of whom had very good reason to wish her ill.\nCover Her Face is P. D. James's electric debut novel, an ingeniously\nplotted mystery that immediately placed her among the masters of suspense.\"\r\n4403,4587,8581936,Kiersten White,Supernaturally,https://images.gr-assets.com/books/1371926956l/8581936.jpg,3.92,32807,\"paranormal, fantasy\",SupernaturallyKiersten White\r\n4404,4588,92855,Terry Brooks,First King of Shannara,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171251172l/92855.jpg,3.94,22623,\"fantasy, fiction\",\"Banished from Paranor because of his study of forbidden arcane arts, the\nDruid Bremen discovers that Brona, the evil Warlock Lord, and his dark\nforces are once again on the move, destroying everything in their path, and\nonly a powerful weapon wielded by a united Four Lands can stop them.\nReissue.\"\r\n4405,4589,7945049,Louise Penny,Bury Your Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439067695l/7945049._SY475_.jpg,4.33,22391,\"mystery, fiction\",\"Taking leave during Quebec's Winter Carnival after a case gone wrong, a\ndisgruntled Chief Inspector Armand Gamache is unable to avoid assisting a\npolitically charged investigation involving a historian's murder during a\nsearch for a famous figure's burial site. By the Agatha Award-winning\nauthor A Fatal Grace. Reprint.\"\r\n4406,4590,84785,Michael Connelly,The Overlook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442875969l/84785._SY475_.jpg,3.91,21154,\"mystery, fiction\",The OverlookMichael Connelly\r\n4407,4591,6604887,منى المرشود,أنت لي,https://images.gr-assets.com/books/1247238391l/6604887.jpg,4.03,15108,\"romance, ebooks\",أنت ليمنى المرشود\r\n4408,4592,90192,\"Nathaniel Hawthorne, Robert S. Levine\",The House of the Seven Gables,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348244293l/90192.jpg,3.45,23797,\"classics, fiction\",\"This all-new edition of Hawthorne s celebrated 1851 novel is based on The\nOhio State University Press s Centenary Edition of the Works of Nathaniel\nHawthorne.\"\"\"\r\n4409,4593,295086,Erin Hunter,Rising storm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189624l/295086.jpg,4.38,27260,\"fantasy, fiction\",\"Fire alone can save our clan... Fireheart's traitorous enemy Tigerclaw has\nbeen vanquished and exiled from ThunderClan—but Fireheart can't shake the\nfeeling that he's lurking out there in the forest, waiting for the chance\nto strike. That's not the only problem facing the young ThunderClan deputy\nin these blazing summer months, as he struggles to handle ominous omens, a\ndisrespectful apprentice with a shocking secret, and a devastated Clan\nleader who is a shell of her former self. Meanwhile the forest gets hotter\nand hotter . . . and everyone braces for the coming storm. . . .\"\r\n4410,4594,31845516,Glennon Doyle Melton,Love Warrior,https://images.gr-assets.com/books/1473164102l/31845516.jpg,4.1,20094,\"memoir, nonfiction\",Love WarriorGlennon Doyle Melton\r\n4411,4595,6449551,Louise Penny,The Brutal Telling,https://images.gr-assets.com/books/1327952311l/6449551.jpg,4.23,21381,\"mystery, fiction\",\"A stranger is found murdered in the village bistro and antiques store and\nall clues point to bistro owner Olivier being the killer. Once again, Chief\nInspector Gamache and his team are called in to strip back layers of lies,\nexposing both treasures and rancid secrets long buried--but not forgotten.\"\r\n4412,4596,11337912,Richard Paul Evans,The Prisoner of Cell 25,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348544498l/11337912.jpg,4.19,24672,\"fantasy, fiction\",\"Michael Vey, a fourteen-year old who has Tourette's syndrome and special\nelectric powers, finds there are others like him, and must rely on his\npowers to save himself and the others from a diabolical group seeking to\ncontrol them.\"\r\n4413,4597,318742,\"W.E.B. Du Bois, Donald B. Gibson, Monica W. Elbert\",The Souls of Black Folk,https://images.gr-assets.com/books/1309202855l/318742.jpg,4.24,20355,\"history, classics\",\"The Souls of Black FolkW.E.B. Du Bois, Donald B. Gibson, Monica W. Elbert\"\r\n4414,4598,45220,\"Hannah  Green, Joanne Greenberg\",I Never Promised You a Rose Garden,https://images.gr-assets.com/books/1309209871l/45220.jpg,3.85,22420,\"fiction, psychology\",\"Chronicles the three-year battle of a mentally ill, but perceptive, teenage\ngirl against a world of her own creation, emphasizing her relationship with\nthe doctor who gave her the ammunition of self-understanding with which to\ndestroy that world of fantasy.\"\r\n4415,4599,8069828,Cinda Williams Chima,The Crimson Crown,https://images.gr-assets.com/books/1345041697l/8069828.jpg,4.48,27279,\"fantasy, romance\",\"A thousand years ago, two young lovers were betrayed-Alger Waterlow to his\ndeath, and Hanalea, Queen of the Fells, to a life without love. Now, once\nagain, the Queendom of the Fells seems likely to shatter apart. For young\nqueen Raisa ana'Marianna, maintaining peace even within her own castle\nwalls is nearly impossible; tension between wizards and Clan has reached a\nfevered pitch. With surrounding kingdoms seeking to prey on the Fells'\ninner turmoil, Raisa's best hope is to unite her people against a common\nenemy. But that enemy might be the person with whom she's falling in love.\nThrough a complicated web of lies and unholy alliances, former streetlord\nHan Alister has become a member of the Wizard Council of the Fells.\nNavigating the cut-throat world of blue blood politics has never been more\ndangerous, and Han seems to inspire hostility among Clan and wizards alike.\nHis only ally is the queen, and despite the perils involved, Han finds it\nimpossible to ignore his feelings for Raisa. Before long, Han finds himself\nin possession of a secret believed to be lost to history, a discovery\npowerful enough to unite the people of the Fells. But will the secret die\nwith him before he can use it? A simple, devastating truth concealed by a\nthousand-year-old lie at last comes to light in this stunning conclusion to\nthe Seven Realms series.\"\r\n4416,4600,6080822,Elin Hilderbrand,The Castaways,https://images.gr-assets.com/books/1289792088l/6080822.jpg,3.69,21491,\"fiction, romance\",\"Vacationing together in accordance with their tight-knit friendships, four\nprominent Nantucket couples are shattered by a boating accident that kills\ntwo of their number, an event that sends the island into mourning and\nreveals unexpected truths about their private lives. Reprint.\"\r\n4417,4602,275,\"Marguerite Duras, Barbara Bray, Maxine Hong Kingston\",L'Amant,https://images.gr-assets.com/books/1423329337l/275.jpg,3.76,18947,\"fiction, classics\",\"The story of an affair between a fifteen-year-old French girl and her\nChinese lover, set in prewar Indochina\"\r\n4418,4603,13350,Christopher Paolini,\"Eragon & Eldest (Inheritance, #1-2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389897828l/13350.jpg,4.27,21181,\"fantasy, fiction\",\"Eragon & Eldest (Inheritance, #1-2)Christopher Paolini\"\r\n4419,4604,16033909,Maya Banks,Burn,https://images.gr-assets.com/books/1359944814l/16033909.jpg,4.01,30693,\"romance, contemporary\",\"Three wealthy, powerful men experience intense and obsessive erotic\nrelationships with three very different women, including Ash who meets\nJosie, a woman he isn't able to control, which only makes her more\ndesirous.\"\r\n4420,4605,3690,\"Graham Greene, John Updike\",The Power and the Glory,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210459l/3690.jpg,3.99,21315,\"fiction, classics\",\"The Power and the GloryGraham Greene, John Updike\"\r\n4421,4606,24790,Isabel Allende,Paula,https://images.gr-assets.com/books/1316284499l/24790.jpg,4.07,19852,\"memoir, biography\",PaulaIsabel Allende\r\n4422,4607,20575411,Marilynne Robinson,Lila,https://images.gr-assets.com/books/1393645345l/20575411.jpg,3.9,14894,\"fiction, religion\",\"NATIONAL BOOK AWARD FINALIST NATIONAL BOOK CRITICS CIRCLE AWARD WINNER A\nnew American classic from the Pulitzer Prize-winning author of Gilead and\nHousekeeping Marilynne Robinson, one of the greatest novelists of our time,\nreturns to the town of Gilead in an unforgettable story of a girlhood lived\non the fringes of society in fear, awe, and wonder. Lila, homeless and\nalone after years of roaming the countryside, steps inside a small-town\nIowa church-the only available shelter from the rain-and ignites a romance\nand a debate that will reshape her life. She becomes the wife of a\nminister, John Ames, and begins a new existence while trying to make sense\nof the life that preceded her newfound security. Neglected as a toddler,\nLila was rescued by Doll, a canny young drifter, and brought up by her in a\nhardscrabble childhood. Together they crafted a life on the run, living\nhand to mouth with nothing but their sisterly bond and a ragged blade to\nprotect them. Despite bouts of petty violence and moments of desperation,\ntheir shared life was laced with moments of joy and love. When Lila arrives\nin Gilead, she struggles to reconcile the life of her makeshift family and\ntheir days of hardship with the gentle Christian worldview of her husband\nwhich paradoxically judges those she loves. Revisiting the beloved\ncharacters and setting of Robinson's Pulitzer Prize-winning Gilead and\nHome, a National Book Award finalist, Lila is a moving expression of the\nmysteries of existence that is destined to become an American classic.\"\r\n4423,4609,28940,Kate Atkinson,Behind the Scenes at the Museum,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436172919l/28940._SY475_.jpg,3.94,21844,\"fiction, mystery\",\"A family saga chronicles a century of life as four generations of Yorkshire\nwomen move through two World Wars, coronations, secrets, heartbreak, and\nhappiness, all seen through the eyes of Ruby Lennox\"\r\n4424,4610,26192646,Stephanie Danler,Sweetbitter,https://images.gr-assets.com/books/1448999786l/26192646.jpg,3.28,21709,\"fiction, contemporary\",SweetbitterStephanie Danler\r\n4425,4611,110384,Julia Quinn,\"Romancing Mister Bridgerton (Bridgertons, #4)\",https://images.gr-assets.com/books/1274211494l/110384.jpg,4.2,31652,\"romance, fiction\",\"Romancing Mister Bridgerton (Bridgertons, #4)Julia Quinn\"\r\n4426,4612,89755,\"Edward Bloor, Danny De Vito\",Tangerine,https://images.gr-assets.com/books/1328875988l/89755.jpg,3.61,23053,\"fiction, sports\",\"Twelve-year-old Paul, who lives in the shadow of his football hero brother\nErik, fights for the right to play soccer despite his near blindness and\nslowly begins to remember the incident that damaged his eyesight. An ALA\nBest Book for Young Adults. Reprint. Jr Lib Guild.\"\r\n4427,4613,33547,Richard Matheson,Hell House,https://images.gr-assets.com/books/1384259876l/33547.jpg,3.81,22644,\"horror, fiction\",\"Rolf Rudolph Deutsch is going die. But when Deutsch, a wealthy magazine and\nnewpaper publisher, starts thinking seriously about his impending death, he\noffers to pay a physicist and two mediums, one physical and one mental,\n$100,000 each to establish the facts of life after death. Dr. Lionel\nBarrett, the physicist, accompanied by the mediums, travel to the Belasco\nHouse in Maine, which has been abandoned and sealed since 1949 after a\ndecade of drug addiction, alcoholism, and debauchery. For one night,\nBarrett and his colleagues investigate the Belasco House and learn exactly\nwhy the townfolks refer to it as the Hell House.\"\r\n4428,4614,3648,Claire Messud,The Emperor's Children,https://images.gr-assets.com/books/1320497348l/3648.jpg,2.93,15362,\"fiction, contemporary\",\"Three friends on the verge of their thirties--beautiful, sophisticated\nMarina Thwaite; Danielle, a quiet TV producer; and Julius, a freelance\nwriter--make their way through New York City, until Marina's idealistic\ncousin, Bootie, arrives to complicate their lives.\"\r\n4429,4615,23281906,Nora Roberts,The Liar,https://images.gr-assets.com/books/1415980586l/23281906.jpg,3.95,16326,\"mystery, contemporary\",The LiarNora Roberts\r\n4430,4616,32530,Lisa Gardner,The Third Victim,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388625989l/32530.jpg,4.16,21790,\"mystery, suspense\",\"Officer Rainie Conner is leading her first homicide investigation, a school\nshooting. The police chief's 13-year-old son is the prime suspect, but\nRainie doesn't believe he pulled the trigger. With the help of FBI profiler\nPierce Quincy, she races to uncover the truth. But a ruthless killer\nwatches from the shadows--and lives to destroy her as he has destroyed her\npeaceful little Oregon community.\"\r\n4431,4617,29154543,Michael Connelly,The Wrong Side of Goodbye,https://images.gr-assets.com/books/1457022523l/29154543.jpg,4.36,13351,\"mystery, fiction\",The Wrong Side of GoodbyeMichael Connelly\r\n4432,4618,8045080,David Baldacci,Hell's Corner ,https://images.gr-assets.com/books/1330171863l/8045080.jpg,4.1,19003,\"fiction, thriller\",\"After a bomb detonates near the motorcade of the U.S. president and\nBritain's prime minister, British MI-5 agent Mary Chapman--along with the\nhelp of Oliver Stone--investigates whether or not the bomber had a\ndifferent target in mind.\"\r\n4433,4619,114206,Nora Roberts,\"Key of Valor (Key Trilogy, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442003703l/114206._SY475_.jpg,4.1,27228,\"romance, paranormal\",\"Nora Roberts presents the stunning conclusion to the all-new trilogy of\ndestiny and desire ... Join Zoe in the ultimate quest for courage. Zoe is\nabout to discover her true courageous spirit. She must find the key of\nvalor--on the last of three dangerous quests that will force her to\nconfront her darkest fears ... or suffer immeasurable loss.\"\r\n4434,4620,781182,\"Bryan Burrough, John Helyar\",Barbarians at the Gate: The Fall of RJR Nabisco,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442897076l/781182._SY475_.jpg,4.22,19176,\"business, history\",\"Barbarians at the Gate: The Fall of RJR NabiscoBryan Burrough, John Helyar\"\r\n4435,4621,20706284,Ann Leckie,Ancillary Sword,https://images.gr-assets.com/books/1413464739l/20706284.jpg,4.03,19265,\"fiction, fantasy\",Ancillary SwordAnn Leckie\r\n4436,4622,17689,\"David Fishelson, Aaron Leichter, Max Brod, Franz Kafka\",Franz Kafka's The Castle,https://images.gr-assets.com/books/1327873352l/17689.jpg,4.07,22321,\"fiction, classics\",\"THE STORY: Cited as one of the 100 greatest works of fiction of all time by\na panel of international writers in 2002, THE CASTLE remains Kafka's most\nmagical novel (New York Times). By turns sexy, comic and horrifying, this\nnew stage version of T\"\r\n4437,4623,18108877,Rysa Walker,Time's Twisted Arrow ,https://images.gr-assets.com/books/1371864811l/18108877.jpg,3.87,22031,\"fantasy, fiction\",\"In the year 2307, historians are born with a genetic license to time-travel\nand are sent out with strict orders to observe everything and change\nnothing. But when a violent act of sabotage strands twenty-three CHRONOS\nhistorians at various points in time, it triggers a chain of events that\nwill alter history and potentially erase more than half of the human\npopulation. In TIME'S TWISTED ARROW, the first book of The CHRONOS Files,\nseventeen-year old Kate learns that she has inherited designer DNA when her\ngrandmother arrives with a strange medallion that she claims only Kate and\na few other descendants of the CHRONOS historians can operate. Kate soon\nfinds herself in an alternate reality. Leaders of a previously unknown\nreligion now hold great power and her grandmother has been murdered\nsomewhere in the past. Her mother never existed, her father doesn't know\nher, and she has – rather inconveniently – managed to fall in love. In\norder to restore the time line, Kate must travel back to 1893 and keep\nherself and her grandmother clear of the serial killer, H.H. Holmes, who is\nstalking young women at the Chicago World's Fair. Unfortunately, other\ndescendants of CHRONOS have a very different agenda.\"\r\n4438,4624,9591398,\"Catherynne M. Valente, Ana Juan\",The Girl Who Circumnavigated Fairyland in a Ship of Her Own Making,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179691l/9591398.jpg,3.97,25551,\"fantasy, fiction\",\"The Girl Who Circumnavigated Fairyland in a Ship of Her Own MakingCatherynne M. Valente, Ana Juan\"\r\n4439,4626,14781501,\"James Patterson, Marshall Karp\",NYPD Red,https://images.gr-assets.com/books/1379898888l/14781501.jpg,3.9,19252,\"mystery, thriller\",\"NYPD RedJames Patterson, Marshall Karp\"\r\n4440,4627,30068,\"Douglas Preston, Lincoln Child\",The Book of the Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441846702l/30068._SY475_.jpg,4.13,22985,\"thriller, mystery\",\"An FBI agent, rotting away in a high-security prison for a murder he did\nnot commit... His brilliant, psychotic brother, about to perpetrate a\nhorrific crime... A young woman with an extrodinary past, on th edge of a\nviolent breakdown... An ancient Egyptian tomb with an enigmatic curse,\nabout to be unveiled at a celebrity-studded New York gala... Memento Mori\"\r\n4441,4628,14897790,Timur Vermes,Er ist wieder da,https://images.gr-assets.com/books/1338925378l/14897790.jpg,3.44,9472,\"fiction, contemporary\",Er ist wieder daTimur Vermes\r\n4442,4629,12617758,Chris Pavone,The Expats,https://images.gr-assets.com/books/1325641431l/12617758.jpg,3.42,20548,\"fiction, mystery\",\"Can we ever escape our secrets? Kate Moore's quiet Luxembourg days are\nfilled with playdates and coffee mornings, her weekends in Paris and skiing\nthe Alps. But Kate is also guarding a tremendous secret--one that's\nbecoming so unbearable it begins to unravel her new expat life. She\nsuspects that another American couple are not who they claim to be, her\nhusband is acting suspiciously, and as she travels around Europe, she finds\nherself looking over her shoulder, increasingly terrified that her own past\nis catching up with her. As Kate begins to dig, to uncover the secrets of\nthe people around her, she finds herself buried in layers of deceit so\nthick they threaten her family, her marriage, and her life.\"\r\n4443,4630,128752,Kathy Reichs,Bare Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440033047l/128752._SY475_.jpg,3.95,26419,\"mystery, crime\",Bare BonesKathy Reichs\r\n4444,4631,16131025,Elin Hilderbrand,Beautiful Day,https://images.gr-assets.com/books/1352225899l/16131025.jpg,3.75,19563,\"fiction, romance\",Beautiful DayElin Hilderbrand\r\n4445,4632,85958,\"Tim LaHaye, Jerry B. Jenkins\",The Indwelling: The Beast Takes Possession,https://images.gr-assets.com/books/1406508233l/85958.jpg,3.97,21855,\"christian, fiction\",\"The second half of the seven-year Tribulation era begins as Rayford, Buck,\nChloe, and the other members of the Tribulation Force reveal who killed\nNicolae as the time of God's judgement approaches.\"\r\n4446,4633,206682,Jeff Lindsay,Dexter in the Dark,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1527405895l/206682.jpg,3.49,22484,\"fiction, mystery\",Dexter in the DarkJeff Lindsay\r\n4447,4634,16634,\"Hermann Hesse, Richard Winston, Clara Winston, Theodore Ziolkowski\",Das Glasperlenspiel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922806l/16634.jpg,4.11,20198,\"fiction, classics\",\"Das GlasperlenspielHermann Hesse, Richard Winston, Clara Winston, Theodore Ziolkowski\"\r\n4448,4635,13366259,Kevin Powers,The Yellow Birds,https://images.gr-assets.com/books/1346188518l/13366259.jpg,3.74,17858,\"fiction, contemporary\",\"A novel written by a veteran of the war in Iraq, The Yellow Birds is the\nharrowing story of two young soldiers trying to stay alive. \"\"The war tried\nto kill us in the spring.\"\" So begins this powerful account of friendship\nand loss. In Al Tafar, Iraq, twenty-one-year old Private Bartle and\neighteen-year-old Private Murphy cling to life as their platoon launches a\nbloody battle for the city. Bound together since basic training when Bartle\nmakes a promise to bring Murphy safely home, the two have been dropped into\na war neither is prepared for. In the endless days that follow, the two\nyoung soldiers do everything to protect each other from the forces that\npress in on every side: the insurgents, physical fatigue, and the mental\nstress that comes from constant danger. As reality begins to blur into a\nhazy nightmare, Murphy becomes increasingly unmoored from the world around\nhim and Bartle takes actions he could never have imagined. With profound\nemotional insight, especially into the effects of a hidden war on mothers\nand families at home, The Yellow Birds is a groundbreaking novel that is\ndestined to become a classic.\"\r\n4449,4636,85418,Harlan Coben,Just One Look,https://images.gr-assets.com/books/1309286625l/85418.jpg,4,22664,\"mystery, fiction\",\"A seemingly innocuous twenty-year-old photograph turns Grace Lawson's\npeaceful life upside down when her husband, Jack, mysteriously vanishes\nwith the photograph and unanswered questions threaten her marriage and\neverything she knows. Reprint.\"\r\n4450,4637,16117804,Katie Ashley,The Proposal,https://images.gr-assets.com/books/1358298141l/16117804.jpg,4.04,34169,\"romance, contemporary\",\"Aidan struggles to win back Emma's heart as a new man enters her life. In\nthe weeks following Aidan's betrayal, Emma has tried her best to move on.\nIgnoring his countless texts, voice mails, and flowers, she isn't sure she\nwants to be won back by him.\"\r\n4451,4638,48132,\"Gerald Durrell, Helma Lapiņa\",My Family and Other Animals,https://images.gr-assets.com/books/1327885239l/48132.jpg,4.27,20057,\"biography, memoir\",\"A memoir of an English boy growing up on the Greek island of Corfu recounts\nthe author's humorous adventures as he collects all kinds of animals and\ninsects and brings them back to the house, much to his family's dismay.\"\r\n4452,4639,174403,Tawni O'Dell,Back Roads,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442816374l/174403.jpg,3.72,21022,\"fiction, contemporary\",Back RoadsTawni O'Dell\r\n4453,4640,11449,Raymond Carver,Cathedral,https://images.gr-assets.com/books/1421615759l/11449.jpg,4.3,18378,\"classics, fiction\",\"Twelve stories deal with loneliness, loss, the tragic banality of everyday\nlife, and redemption.\"\r\n4454,4641,30065028,J.K. Rowling,Fantastic Beasts and Where to Find Them: The Original Screenplay,https://images.gr-assets.com/books/1476913365l/30065028.jpg,4.41,18290,\"fantasy, fiction\",\"J.K. Rowling's screenwriting debut is captured in this exciting hardcover\nedition of the \"\"Fantastic Beasts and Where to Find Them\"\" screenplay. When\nMagizoologist Newt Scamander arrives in New York, he intends his stay to be\njust a brief stopover. However, when his magical case is misplaced and some\nof Newt's fantastic beasts escape, it spells trouble for everyone\n\"\"Fantastic Beasts and Where to Find Them\"\" marks the screenwriting debut of\nJ.K. Rowling, author of the beloved and internationally bestselling Harry\nPotter books. Featuring a cast of remarkable characters, this is epic,\nadventure-packed storytelling at its very best. Whether an existing fan or\nnew to the wizarding world, this is a perfect addition to any reader's\nbookshelf. \"\"\"\r\n4455,4643,1999475,Donald Miller,A Million Miles in a Thousand Years: What I Learned While Editing My Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440864796l/1999475._SY475_.jpg,4.18,18963,\"christian, memoir\",\"Details one man's opportunity to edit his life as if he were a character in\na movie, challenging readers to reconsider what they strive for in life and\nrevealing how to get a second chance at life the first time around.\"\r\n4456,4644,7992995,Alison Goodman,Eona: The Last Dragoneye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388543903l/7992995.jpg,4.12,29756,\"fantasy, romance\",\"Facing the ultimate battle for control of the land she calls home, Eona\nfinds herself waging an internal battle every bit as devastating as the war\nthreatening to break out across the kingdom.\"\r\n4457,4645,14570,Louisa May Alcott,Eight Cousins,https://images.gr-assets.com/books/1328864060l/14570.jpg,4.02,27612,\"classics, fiction\",Eight CousinsLouisa May Alcott\r\n4458,4646,590552,Maurice Sendak,Chicken Soup with Rice: A Book of Months,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388259279l/590552.jpg,4.25,25523,\"poetry, fiction\",\"Each month is gay, each season nice, when eating chicken soup with\nrice./DIV\"\r\n4459,4647,64862,Sue Grafton,R is for Ricochet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265730l/64862.jpg,3.96,24563,\"mystery, fiction\",R is for RicochetSue Grafton\r\n4460,4648,11947156,Quinn Loftis,Prince of Wolves ,https://images.gr-assets.com/books/1327878769l/11947156.jpg,4.06,30137,\"paranormal, romance\",\"Jaque Pierce was just an ordinary 17 year old girl getting ready to start\nher senior year in highschool in Coldspring, TX. When a mysterious foreign\nexchange student from Romania moves in across the street, Jacque and her\ntwo best friends Sally and Jen don't realize the last two weeks of their\nsummer were going to get a lot more interesting. From the moment Jacque\nsets eyes on Fane she feels and instant connection, a pull like a moth to a\nflame. Little does she know that the flame she is drawn too is actually a\nCanis Lupus, werewolf, and she just happens to be his mate, the other half\nof his soul. The problem is Fane is not the only wolf in Coldspring, TX.\nJust as Fane and Jacque are getting to know each other, another wolf steps\nout to try and claim Jacque as his mate. Fane will now have to fight for\nthe right to complete the mating bond, something that is his right by birth\nbut is being denied him by a crazed Alpha. Will the love Fane has for\nJacque be enough to give him the strength to defeat his enemy, will Jacque\naccept that she is Fane's mate and complete the bond between them?\"\r\n4461,4649,99296,\"Doreen Cronin, Harry Bliss\",Diary of a Worm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347567458l/99296.jpg,4.19,23320,\"fiction, science\",\"Diary of a WormDoreen Cronin, Harry Bliss\"\r\n4462,4650,222576,Susan Cooper,The Grey King,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390358853l/222576.jpg,4.18,28027,\"fantasy, fiction\",\"There is a Welsh legend about a harp of gold, hidden within a certain hill,\nthat will be found by a boy and a white dog with silver eyes -- a dog that\ncan see the wind. Will Stanton knew nothing of this when he came to Wales\nto recover from a severe illness. But when he met Bran, a strange boy who\nowned a white dog, he began to remember. For Will is the last-born of the\nOld Ones, immortals dedicated to saving the world from the forces of evil,\nthe Dark. And it is Will's task to wake-with the golden harp -- the six who\nmust be roused from their long slumber in the Welsh hills to prepare for\nthe last battle between the Dark and the Light.\"\r\n4463,4652,15981894,Emily Snow,Devoured,https://images.gr-assets.com/books/1347063810l/15981894.jpg,3.94,33961,\"romance, contemporary\",\"The USA TODAY bestseller that introduced Sienna Jensen and Lucas Wolfe and\nlaunched new adult romance novelist Emily Snow. Sienna’s dreams lie in\nCalifornia, but when she discovers her grandmother’s Nashville home has\nbeen foreclosed, she has no other choice than to move back to Music City,\nwhere she comes face-to-face with the flawed, gorgeous man she never\nthought she’d see again—and who now holds the deed to her grandma’s estate.\nMillionaire rock star Lucas Wolfe is just as surprised to find the\noutspoken redhead glaring at him from across a courtroom. He still can’t\nget the night Sienna spent with him out of his mind, and the chemistry\nbetween them is as undeniable as ever. Now, Lucas is determined to do\nwhatever it takes to lure Sienna into his bed, so he makes a deal with her:\nif she spends ten days with him, playing by his rules, he’ll hand over the\ndeed to her grandmother’s home. Though she agrees to the arrangement for\nher family’s sake, Sienna struggles with the promises she’s made to herself\nand a past that still haunts her. As Lucas’s game of seduction continues\nand Sienna is introduced to his dark, erotic world, she realizes that at\nany moment, she could be devoured.\"\r\n4464,4654,20697435,Michel Faber,The Book of Strange New Things,https://images.gr-assets.com/books/1394824754l/20697435.jpg,3.66,15189,\"fiction, philosophy\",The Book of Strange New ThingsMichel Faber\r\n4465,4655,9266776,Claire LaZebnik,Epic Fail,https://images.gr-assets.com/books/1293626043l/9266776.jpg,3.73,29207,\"romance, contemporary\",\"Will Elise’s love life be an epic win or an epic fail? At Coral Tree Prep\nin Los Angeles, who your parents are can make or break you. Case in point:\nAs the son of Hollywood royalty, Derek Edwards is pretty much prince of the\nschool—not that he deigns to acknowledge many of his loyal subjects. As the\ndaughter of the new principal, Elise Benton isn’t exactly on everyone’s\nmust-sit-next-to-at-lunch list. When Elise’s beautiful sister catches the\neye of the prince’s best friend, Elise gets to spend a lot of time with\nDerek, making her the envy of every girl on campus. Except she refuses to\nfall for any of his rare smiles and instead warms up to his enemy, the\nsurprisingly charming social outcast Webster Grant. But in this hilarious\ntale of fitting in and flirting, not all snubs are undeserved, not all\ncelebrity brats are bratty, and pride and prejudice can get in the way of\ntrue love for only so long.\"\r\n4466,4656,30240,Laurell K. Hamilton,\"A Caress of Twilight (Merry Gentry, #2)\",https://images.gr-assets.com/books/1327877187l/30240.jpg,4.05,29980,\"fantasy, paranormal\",\"Faerie princess-turned-detective Meredith Gentry desperately tries to\noutwit a clever killer sent by her rival for the dark throne of an exotic\nkingdom, an investigation that plunges her into the seedy underworld of Los\nAngeles and the faux glamour of Hollywood, where an unexpected proposition\nfrom the Faerie king puts her life in further danger. By the author of A\nKiss of Shadows. Reprint.\"\r\n4467,4657,376514,Richard Condon,The Manchurian Candidate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1411320965l/376514.jpg,4.09,19205,\"fiction, thriller\",The Manchurian CandidateRichard Condon\r\n4468,4658,37737,Judy Blume,Fudge-a-Mania,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922685l/37737.jpg,3.99,23833,\"fiction, classics\",\"Peter chronicles his family's vacation in Maine highlighted by the antics\nof his younger brother Fudge and the presence of his sworn enemy Sheila\nTubman.\"\r\n4469,4659,11946245,James Patterson,Nevermore,https://images.gr-assets.com/books/1328150920l/11946245.jpg,3.88,27982,\"fantasy, romance\",\"Maximum Ride and her faithful friends stand ready to face the two greatest\nthreats that humankind has ever known--now combining forces in an\nunbeatable plot to destroy life as we know it once and for all. And this\ntime, the enemy truly can't be stopped. The danger mounts just as the boy\ngenetically engineered to be her \"\"perfect match\"\", Dylan, has finally worked\nhis way into Max's heart--and just as her beloved Fang unexpectedly returns\nto the flock. An explosive confrontation between the two boys with a claim\nto Max's heart ensues, and the entire world hangs in the balance. In this\npowerful and moving latest sequel in James Patterson's epic fantasy series,\nfans will finally get the answers they've been waiting for--and an ending\nfull of shock, surprises, and the greatest conclusion you never saw coming.\nMaximum Ride and her faithful friends stand ready to face the two greatest\nthreats that humankind has ever known--now combining forces in an\nunbeatable plot to destroy life as we know it once and for all. And this\ntime, the enemy truly can't be stopped. The danger mounts just as Dylan has\nfinally worked his way into Max's heart--and just as her beloved Fang\nunexpectedly returns to the flock. An explosive confrontation between the\ntwo boys with a claim to Max's heart ensues, and the entire world hangs in\nthe balance. In this powerful and moving latest sequel in James Patterson's\nepic fantasy series, fans will finally get the answers they've been waiting\nfor--and an ending full of shock, surprises, and the greatest conclusion\nyou never saw coming.\"\r\n4470,4660,12540,Anne Lamott,Operating Instructions: A Journal of My Son's First Year,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924319l/12540.jpg,4.18,19466,\"memoir, nonfiction\",\"A single mother and writer grappling alone with the problems of a newborn\nbaby presents a vivid account of the confusion, joys, sorrows, and\nstruggles of the first year in her son's life. Reprint. 20,000 first\nprinting.\"\r\n4471,4661,61663,\"Carl Sagan, Ann Druyan\",Pale Blue Dot: A Vision of the Human Future in Space,https://images.gr-assets.com/books/1500191671l/61663.jpg,4.32,19834,\"science, nonfiction\",\"The late author of such best-sellers as Cosmos examines humankind's\nchanging awareness of its place in the universe and the rich potential of\nhuman ventures into the world beyond Earth. Reprint.\"\r\n4472,4662,17449417,Abbi Glines,\"Simple Perfection (Perfection, #2)\",https://images.gr-assets.com/books/1415743194l/17449417.jpg,4.25,35952,\"romance, contemporary\",\"Della struggles with the ghosts of her past while trying to hide her true\nfeelings from Woods, in the conclusion to the roller coaster romance that\nbegan in Twisted Perfection. Original.\"\r\n4473,4663,64081,Shane Claiborne,The Irresistible Revolution: Living as an Ordinary Radical,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432916833l/64081._SX318_.jpg,4.07,18566,\"christian, religion\",\"A founding member of The Simple Way, a radical faith community in North\nPhiladelphia, describes an authentic faith rooted in belief, action, and\nlove, offering an invitation into the movement that begins inside each\nindividual and extends into a broken world. Original. 20,000 first\nprinting. $15,000 ad/promo.\"\r\n4474,4664,2251306,John Medina,\"Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and School\",https://images.gr-assets.com/books/1328763686l/2251306.jpg,4,19172,\"psychology, business\",\"Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and SchoolJohn Medina\"\r\n4475,4665,215539,D.J. MacHale,The Pilgrims of Rayne,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432097761l/215539._SY475_.jpg,4.14,21540,\"fantasy, fiction\",\"When Bobby Pendragon first arrives on the tropical world of Ibara, he finds\nparadise. As he works to uncover clues about the turning point this\nseemingly idyllic territory will soon face, all he can determine is that\nthe people of Ibara are blissfully happy. It's not long before Bobby\ndiscovers, however, that they are also blissfully...oblivious. The leaders\nof Ibara are keeping a devastating secret from their people, one that gives\nSaint Dane all the opportunity he needs to launch his final assault on\nHalla. While Bobby struggles to learn the truth in time to thwart Saint\nDane, Courtney Chetwynde desperately searches for Mark Diamond. On the\nheels of a shocking tragedy, Mark has disappeared. Worse, he seems to be\nunder Saint Dane's influence. It's up to Courtney to find Mark and stop him\nfrom making a grave mistake that could change the future of all existence.\"\r\n4476,4666,7347109,Richard C. Morais,The Hundred-Foot Journey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442960146l/7347109._SY475_.jpg,3.54,17275,\"fiction, contemporary\",\"An American release of a well-received 2008 publication in India is a\ntribute to Indian and French flavors that follows the life journey of chef\nHassan Haji, who progresses from his family's modest restaurant in Mumbai\nto master haute cuisine in an elegant Parisian restaurant. Reprint.\"\r\n4477,4667,8435445,Anthony Horowitz,Scorpia Rising,https://images.gr-assets.com/books/1417405144l/8435445.jpg,4.29,23268,\"fiction, mystery\",\"When the world's deadliest terrorist organization, Scorpia, stirs up\ntrouble in the Middle East, it is up to fourteen-year-old MI6 agent Alex\nRider to thwart their plans.\"\r\n4478,4668,7150178,Lincoln Peirce,Big Nate: In a Class By Himself,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442288527l/7150178._SY475_.jpg,4.16,20612,\"fiction, comics\",\"Big Nate is in a class by himself! But things don't always go your way just\nbecause you're awesome. Nate barely survives his dad's toxic oatmeal before\nrushing off to school—minus his lunch. He body slams the no-nonsense\nprincipal. He accidentally insults his least favorite teacher, the\nhorrifying Mrs. Godfrey (aka Godzilla). And school has barely started! Nate\nkeeps his cool. He knows he's destined for greatness. A fortune cookie told\nhim so. For fans of the ever popular, ever hilarious Diary of a Wimpy Kid\nseries: Get ready to meet Big Nate!\"\r\n4479,4669,3474186,Meg Cabot,Forever Princess,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347807104l/3474186.jpg,4.08,28127,\"romance, contemporary\",\"What's a Princess to do? It's Mia's senior year, and things seem great. She\naced her senior project, got accepted to her dream college(s), and has her\neighteenth birthday gala coming up . . . not to mention prom, graduation,\nand Genovia's first-ever elections. What's not to love about her life? Well\n. . . everyone adores her dreamy boyfriend, J.P., but Mia is not sure he's\nthe one. Her first love, Michael, is back from Japan . . . and back in her\nlife. That senior project? It's a romance novel she secretly wrote, and no\none wants to publish it. And her father is losing in the Genovian polls—to\nMia's loathsome cousin René! With not just Genovia's but her own future\nhanging in the balance, Mia's got some choices to make. And what she\ndecides might determine not just the next four years but . . . forever!\"\r\n4480,4670,519112,Tim Burton,The Melancholy Death of Oyster Boy and Other Stories,https://images.gr-assets.com/books/1338646527l/519112.jpg,4.13,19773,\"poetry, fiction\",\"From breathtaking stop-action animation to bittersweet modern fairy tales,\nfilmmaker Tim Burton has become known for his unique visual brilliance --\nwitty and macabre at once. Now he gives birth to a cast of gruesomely\nsympathetic children -- misunderstood outcasts who struggle to find love\nand belonging in their cruel, cruel worlds. His lovingly lurid\nillustrations evoke both the sweetness and the tragedy of these dark yet\nsimple beings -- hopeful, hapless heroes who appeal to the ugly outsider in\nall of us, and let us laugh at a world we have long left behind (mostly\nanyway).\"\r\n4481,4671,5186,Edwidge Danticat,\"Breath, Eyes, Memory \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423684958l/5186.jpg,3.86,22123,\"fiction, contemporary\",\"An unforgettable novel that shimmers with the wonder and terror of its\nauthor's native Haiti. Set in the island's impoverished villages and in New\nYork's Haitian community, this is the story of Sophie Caco, who was\nconceived in an act of violence, abandoned by her mother and then summoned\nto America. In New York, Sophie discovers that Haiti imposes harsh rules on\nits own. Copyright © Libri GmbH. All rights reserved.\"\r\n4482,4672,12395,\"Louis-Ferdinand Céline, Ralph Manheim, William T. Vollmann\",Voyage au bout de la nuit,https://images.gr-assets.com/books/1462934409l/12395.jpg,4.25,17388,\"fiction, classics\",\"Originally published to shocked reviews in 1932 France, a scathing literary\ncritique of what the writer believed to be the poor judgment and hypocrisy\nof society follows the travels of petit-bourgeois anti-hero Bardamu, from\nthe trenches of World War I and the African jungle to America and Paris.\"\r\n4483,4673,4527502,Michael Connelly,The Scarecrow ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348416548l/4527502.jpg,4.03,22084,\"mystery, fiction\",The Scarecrow Michael Connelly\r\n4484,4674,16130537,Matt Haig,The Humans,https://images.gr-assets.com/books/1353739654l/16130537.jpg,4.07,16955,\"fiction, fantasy\",The HumansMatt Haig\r\n4485,4675,6566616,Anthony Horowitz,Crocodile Tears,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284725l/6566616.jpg,4.18,23068,\"fiction, mystery\",Crocodile TearsAnthony Horowitz\r\n4486,4676,3692091,Essam Youssef,1/4 جرام,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215584856l/3692091.jpg,4.02,15919,\"fiction, suspense\",1/4 جرامEssam Youssef\r\n4487,4677,49158,Shaunti Feldhahn,For Women Only: What You Need to Know about the Inner Lives of Men,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1532716026l/49158.jpg,4.06,15385,\"psychology, christian\",\"What's going on in a man's mind? Feldhahn's research reveals the inner\nlives of men and will open women's eyes to what the men in their life are\nreally thinking and feeling.\"\r\n4488,4679,38568,Lynsay Sands,A Quick Bite,https://images.gr-assets.com/books/1410129015l/38568.jpg,3.91,31557,\"paranormal, romance\",\"That hot guy tied to Lissianna Argeneau's bed? He's not dessert—he's the\nmain course! Lissianna has been spending her centuries pining for Mr.\nRight, not just a quick snack, and this sexy guy she finds in her bed looks\nlike he might be a candidate. But there's another, more pressing issue: her\ntendency to faint at the sight of blood . . . an especially annoying quirk\nfor a vampire. Of course it doesn't hurt that this man has a delicious-\nlooking neck. What kind of cold-blooded vampire woman could resist a bite\nof that? Dr. Gregory Hewitt recovers from the shock of waking up in a\nstranger's bedroom pretty quickly—once he sees a gorgeous woman about to\ntreat him to a wild night of passion. But is it possible for the good\ndoctor to find true love with a vampire vixen, or will he be just a good\nmeal? That's a question Dr. Greg might be willing to sink his teeth into .\n. . if he can just get Lissianna to bite.\"\r\n4489,4680,248682,Nora Roberts,Key of Knowledge,https://images.gr-assets.com/books/1282136458l/248682.jpg,4.09,26416,\"romance, fantasy\",\"Follows Dana, who has a penchant for books, as she is forced to embark on a\ndangerous quest to find the Key of Knowledge--or suffer a horrifying fate.\"\r\n4490,4681,144790,Matthew Reilly,Ice Station,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185756l/144790.jpg,4.1,20605,\"thriller, fiction\",\"The discovery of a metallic object buried in a 100-million-year-old layer\nof ice brings Lieutenant Shane Schofield and a team of Marines to\nAntarctica, where they must risk their lives to secure this discovery for\nthe United States.\"\r\n4491,4682,825508,Ken Follett,A Dangerous Fortune,https://images.gr-assets.com/books/1387637715l/825508.jpg,3.99,18219,\"fiction, thriller\",\"In 1866, a young student drowns in a mysterious accident at the exclusive\nWindfield School, and the repercussions will be felt in a growing circle of\ntreachery during the next three decades. Reprint.\"\r\n4492,4683,27001,Jasper Fforde,The Well of Lost Plots,https://images.gr-assets.com/books/1304713470l/27001.jpg,4.09,28332,\"fantasy, fiction\",\"Exhausted by her stint as Miss Havisham's apprentice at Jurisfiction,\nThursday Next is delighted by a respite in the Character Exchange Program\nin the Well of Lost Plots, a place filled with linguistic chaos, lousy\nbooks, and a murderer.\"\r\n4493,4684,25698,Adam Smith,An Inquiry into the Nature and Causes of the Wealth of Nations ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1567191193l/25698._SY475_.jpg,3.87,17180,\"philosophy, classics\",An Inquiry into the Nature and Causes of the Wealth of Nations Adam Smith\r\n4494,4685,12872236,Richard Ford,Canada,https://images.gr-assets.com/books/1327927048l/12872236.jpg,3.49,18396,\"fiction, contemporary\",CanadaRichard Ford\r\n4495,4686,6628,Jasper Fforde,The Big Over Easy,https://images.gr-assets.com/books/1432412758l/6628.jpg,3.92,24870,\"fantasy, mystery\",\"Unconvinced that a former convict and millionaire philanthropist has been\nmurdered by his suicide-victim ex-wife, detective inspector Jack Spratt and\nhis assistant, Mary Mary, uncover a plot involving money laundering and\nasylum-seeking titans.\"\r\n4496,4687,519048,\"Holly Black, Tony DiTerlizzi\",The Seeing Stone,https://images.gr-assets.com/books/1358701671l/519048.jpg,3.87,29213,\"fantasy, fiction\",\"Book 2 of The Spiderwick Chronicles in which Mallory, Simon and Jared ask\nmany questions and discover the fate of the missing cat. The Grace kids are\njust beginning to get used to Aunt Lucinda's strange old mansion when Simon\nsuddenly disappears. At first Mallory thinks the twins are pulling some\nkind of prank, but when it becomes obvious that he's been snatched by\ngoblins, Jared and his sister, Mallory, have to rely on the help of a\nmischievous house boggart, a nasty bridge troll, not to mention a\nloudmouthed hobgoblin, to get Simon back (and uncover why he was snatched\nin the first place). With the aid of a seeing stone the true nature of the\nsecret world around them is now revealed. It's important the Grace kids\ntell their story but the faeries will do everything to stop them...\"\r\n4497,4688,542389,Antony Beevor,\"Stalingrad: The Fateful Siege, 1942–1943\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348217283l/542389.jpg,4.29,18920,\"history, nonfiction\",\"Stalingrad: The Fateful Siege, 1942–1943Antony Beevor\"\r\n4498,4689,6419566,Kyousuke Motomi,ビーストマスター 1,https://images.gr-assets.com/books/1256593259l/6419566.jpg,4.21,21692,\"manga, romance\",ビーストマスター 1Kyousuke Motomi\r\n4499,4690,191170,\"Doreen Cronin, Betsy Lewin\",\"Giggle, Giggle, Quack\",https://images.gr-assets.com/books/1408923126l/191170.jpg,4.19,22402,\"fiction, fantasy\",\"When Farmer Brown goes on vacation, leaving his brother Bob in charge, Duck\nmakes trouble by changing all his instructions to notes the animals like\nmuch better.\"\r\n4500,4691,1624,Beryl Markham,West with the Night,https://images.gr-assets.com/books/1368204688l/1624.jpg,4.18,19738,\"memoir, biography\",\"A new edition of a great, underappreciated classic of our time Beryl\nMarkham's West with the Night is a true classic, a book that deserves the\nsame acclaim and readership as the work of her contemporaries Ernest\nHemingway, Antoine de Saint-Exupéry, and Isak Dinesen. If the first\nresponsibility of a memoirist is to lead a life worth writing about,\nMarkham succeeded beyond all measure. Born Beryl Clutterbuck in the middle\nof England, she and her father moved to Kenya when she was a girl, and she\ngrew up with a zebra for a pet; horses for friends; baboons, lions, and\ngazelles for neighbors. She made money by scouting elephants from a tiny\nplane. And she would spend most of the rest of her life in East Africa as\nan adventurer, a racehorse trainer, and an aviatrix—she became the first\nperson to fly nonstop from Europe to America, the first woman to fly solo\neast to west across the Atlantic. Hers was indisputably a life full of\nadventure and beauty. And then there is the writing. When Hemingway read\nMarkham's book, he wrote to his editor, Maxwell Perkins: \"\"She has written\nso well, and marvelously well, that I was completely ashamed of myself as a\nwriter . . . [She] can write rings around all of us who consider ourselves\nas writers . . . It is really a bloody wonderful book.\"\" With a new\nintroduction by Sara Wheeler—one of Markham's few legitimate literary\nheirs—West with the Night should once again take its place as one of the\nworld's great adventure stories.\"\r\n4501,4692,2475251,Steven Galloway,The Cellist of Sarajevo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442797420l/2475251._SX318_.jpg,4.02,20403,\"fiction, music\",The Cellist of SarajevoSteven Galloway\r\n4502,4693,4066312,Lisa Kleypas,Smooth Talking Stranger  (Travis Family #3) ,https://images.gr-assets.com/books/1388444124l/4066312.jpg,4.17,28858,\"romance, contemporary\",\"Billionaire playboy, and all-around ladies' man, Jake Travis has a\nreputation as big as the state of Texas. He drives too fast, lives too\nhard, and loves too many women to count. In her advice column, and her love\nlife, Ella Varner is always practical. So when she's left holding her\nreckless sister's baby, she decides to ask Jake Travis to take a paternity\ntest. Ella is instantly struck by Jake's bold good looks and easy charm--\nbut she's not falling for his sweet talk. This big sexy tomcat needs to\ntake responsibility for his actions, and Ella's making him stick to his\nword. Now if she can only ignore the unspoken attraction that smolders\nbetween them...\"\r\n4503,4694,9972053,Betty White,If You Ask Me: And of Course You Won't,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348700186l/9972053.jpg,3.65,22405,\"biography, memoir\",If You Ask Me: And of Course You Won'tBetty White\r\n4504,4695,31862,\"René Descartes, Donald A. Cress\",Discours de la Méthode suivi de Méditations Métaphysiques,https://images.gr-assets.com/books/1405624402l/31862.jpg,3.67,20522,\"philosophy, classics\",\"Discours de la Méthode suivi de Méditations MétaphysiquesRené Descartes, Donald A. Cress\"\r\n4505,4696,5739373,Daniel Silva,The Defector,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442626527l/5739373._SY475_.jpg,4.28,18927,\"fiction, thriller\",\"Gabriel Allon learns of the disappearance of a suspected double agent who\nrecently saved his life, a situation for which British intelligence blames\nAllon, due to his enabling the man's alleged activities.\"\r\n4506,4697,12758317,John Irving,In One Person,https://images.gr-assets.com/books/1379313446l/12758317.jpg,3.65,18561,\"fiction, contemporary\",In One PersonJohn Irving\r\n4507,4698,433533,L.M. Montgomery,Rilla of Ingleside,https://images.gr-assets.com/books/1285712722l/433533.jpg,4.16,29277,\"classics, fiction\",\"Rilla, Anne Shirley's youngest daughter, discovers the problems and\ndifficulties of coming of age during the terrifying days of World War I.\"\r\n4508,4699,68143,James Surowiecki,The Wisdom of Crowds,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211043l/68143.jpg,3.8,18457,\"business, nonfiction\",\"Looks at the theory that large groups have more collective intelligence\nthan a smaller number of experts, drawing on a wide range of disciplines to\noffer insight into such topics as politics, business, and the environment.\"\r\n4509,4700,39033,\"Douglas Preston, Lincoln Child\",\"Still Life with Crows (Pendergast, #4)\",https://images.gr-assets.com/books/1169235780l/39033.jpg,4.18,22493,\"mystery, fiction\",\"Still Life with Crows (Pendergast, #4)Douglas Preston, Lincoln Child\"\r\n4510,4701,397860,James Herbert,The Fog,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348466044l/397860.jpg,3.87,19322,\"horror, fiction\",\"The Fog is a powerful, classic horror novel from James Herbert, author of\nThe Rats.It begins with a crack that rips the earth apart. Peaceful village\nlife shattered. But the disaster is just the beginning. Out of the\nbottomless pit creeps a malevolent fog. Spreading through the air it leaves\na deadly, horrifying trail, destined to devastate the lives of all those it\nencounters . . .\"\r\n4511,4702,8676,\"Anthony Robbins, Kenneth H. Blanchard, Jason Winters\",Unlimited Power : The New Science Of Personal Achievement,https://images.gr-assets.com/books/1419212761l/8676.jpg,4.21,18588,\"psychology, business\",\"Anthony Robbins calls it the new science of personal achievement. You'll\ncall it the best thing that ever happened to you. If you have ever dreamed\nof a better life, Unlimited Power will show you how to achieve the\nextraordinary quality of life you desire and deserve, and how to master\nyour personal and professional life. Anthony Robbins has proven to millions\nthrough his books, tapes, and seminars that by harnessing the power of the\nmind you can do, have, achieve, and create anything you want for your life.\nHe has shown heads of state, royalty, Olympic and professional athletes,\nmovie stars, and children how to achieve. With Unlimited Power, he\npassionately and eloquently reveals the science of personal achievement and\nteaches you: * How to find out what you really want * The Seven Lies of\nSuccess * How to reprogram your mind in minutes to eliminate fears and\nphobias * The secret of creating instant rapport with anyone you meet * How\nto duplicate the success of others * The Five Keys to Wealth and Happiness\nUnlimited Power is a revolutionary fitness book for the mind. It will show\nyou, step by step, how to perform at your peak while gaining emotional and\nfinancial freedom, attaining leadership and self-confidence, and winning\nthe cooperation of others. It will give you the knowledge and the courage\nto remake yourself and your world. Unlimited Power is a guidebook to\nsuperior performance in an age of success.\"\r\n4512,4703,7122034,\"Douglas Preston, Lincoln Child\",Fever Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442790934l/7122034._SY475_.jpg,4.09,21634,\"mystery, thriller\",\"Yesterday, Special Agent Pendergast still mourned the loss of his beloved\nwife, Helen, who died in a tragic accident in Africa twelve years ago.\nToday, he discovers she was murdered. Tomorrow, he will learn her most\nguarded secrets, leaving him to wonder: Who was the woman I married? Why\nwas she murdered? And, above all . . . Who murdered her? FEVER DREAM\nRevenge is not sweet: It is essential.\"\r\n4513,4704,11395597,Jeanette Winterson,Why Be Happy When You Could Be Normal?,https://images.gr-assets.com/books/1320512373l/11395597.jpg,3.94,19537,\"memoir, biography\",Why Be Happy When You Could Be Normal?Jeanette Winterson\r\n4514,4705,10193062,Ann Aguirre,Outpost,https://images.gr-assets.com/books/1343084394l/10193062.jpg,4.12,25650,\"romance, fantasy\",\"Deuce's whole world has changed. Down below, she was considered an adult.\nNow, topside in a town called Salvation, she's a brat in need of training\nin the eyes of the townsfolk. She doesn't fit in with the other girls:\nDeuce only knows how to fight. To make matters worse, her Hunter partner,\nFade, keeps Deuce at a distance. Her feelings for Fade haven't changed, but\nhe seems not to want her around anymore. Confused and lonely, she starts\nlooking for a way out. Deuce signs up to serve in the summer patrols—those\nwho make sure the planters can work the fields without danger. It should be\nroutine, but things have been changing on the surface, just as they did\nbelow ground. The Freaks have grown smarter. They're watching. Waiting.\nPlanning. The monsters don't intend to let Salvation survive, and it may\ntake a girl like Deuce to turn back the tide. Outpost is the second book in\nAnn Aguirre's page-turning The Razorland Trilogy.\"\r\n4515,4706,18594409,Roz Chast,Can't We Talk about Something More Pleasant?,https://images.gr-assets.com/books/1421087235l/18594409.jpg,4.1,19118,\"memoir, nonfiction\",\"Celebrates the final years of the author's aging parents' lives through\ncartoons, family photos, and documents that reflect the author's struggles\nwith caregiver challenges.\"\r\n4516,4707,37847,\"Marilyn Manson, Neil Strauss\",The Long Hard Road Out of Hell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924321l/37847.jpg,3.88,19011,\"biography, music\",\"The best-selling autobiography of America’s most controversial celebrity\nicon, Marilyn Manson (with a bonus chapter not in the hardcover). In his\ntwenty-nine years, rock idol Manson has experienced more than most people\nhave (or would want to) in a lifetime. Now, in his shocking and candid\nmemoir, he takes readers from backstage to gaol cells, from recording\nstudios to emergency rooms, from the pit of despair to the top of the\ncharts, and recounts his metamorphosis from a frightened Christian\nschoolboy into the most feared and revered music superstar in the country.\nIllustrated with dozens of exclusive photographs and featuring a behind-\nthe-scenes account of his headline-grabbing Dead to the World tour.\"\r\n4517,4709,372638,Bernard Waber,\"Lyle, Lyle, Crocodile (Lyle the Crocodile)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193703l/372638.jpg,4.13,24284,\"fiction, classics\",\"Lyle is afraid of losing his family forever after he is taken from their\nNew York apartment and committed to a zoo.\"\r\n4518,4710,10874177,Gail Carriger,Etiquette & Espionage,https://images.gr-assets.com/books/1331952557l/10874177.jpg,3.79,29821,\"fantasy, fiction\",Etiquette & EspionageGail Carriger\r\n4519,4711,3018539,\"José Saramago, Margaret Jull Costa\",As Intermitências da Morte,https://images.gr-assets.com/books/1327937800l/3018539.jpg,3.97,12984,\"fiction, fantasy\",\"While Death sits in her apartment contemplating the world around her and\nwondering what would happen if she became human and fell in love, no one\ndies, raising concerns among politicians, religious leaders, doctors,\nmorticians, and others as they confront the harsh realities of eternal\nlife.\"\r\n4520,4712,58889,Tamora Pierce,Sandry's Book,https://images.gr-assets.com/books/1328860148l/58889.jpg,3.99,30169,\"fantasy, fiction\",\"Four young misfits find themselves living in a strictly disciplined temple\ncommunity where they become friends while also learning to do crafts and to\nuse their powers, especially magic.\"\r\n4521,4714,27406704,\"Fredrik Backman, Henning Koch, سمانه پرهیزکاری\",Britt-Marie var här,https://images.gr-assets.com/books/1460442061l/27406704.jpg,4.07,21737,\"fiction, contemporary\",\"Britt-Marie can't stand a mess, but when she walks out on her cheating\nhusband, she has to fend for herself as a caretaker amidst children,\nlocals, drunkards, and a handsome new policeman.\"\r\n4522,4715,44361,Rob Bell,Velvet Elvis: Repainting the Christian Faith,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436926982l/44361._SX318_.jpg,3.77,18071,\"christian, religion\",Velvet Elvis: Repainting the Christian FaithRob Bell\r\n4523,4716,210834,\"Rudyard Kipling, Edward Said\",Kim,https://images.gr-assets.com/books/1387747342l/210834.jpg,3.72,23349,\"classics, fiction\",\"KimRudyard Kipling, Edward Said\"\r\n4524,4717,508413,Beverly  Lewis,The Shunning,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266572591l/508413.jpg,4.13,20379,\"fiction, christian\",\"The bestselling story of Katie Lapp, who longs for things forbidden to a\nyoung Amish woman. But an unexpected discovery reveals her true past.\nHeritage of Lancaster County book 1.\"\r\n4525,4718,15711341,Anne Bishop,Written in Red,https://images.gr-assets.com/books/1411439502l/15711341.jpg,4.29,29502,\"paranormal, fantasy\",Written in RedAnne Bishop\r\n4526,4719,77378,Nicholas Meyer,\"The Seven-Percent Solution: Being a Reprint from the Reminiscences of John H. Watson, MD\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388958854l/77378.jpg,4.14,19334,\"mystery, crime\",\"Relates the astounding and previously unknown collaboration between Sigmund\nFreud and Sherlock Holmes, as recorded by Holmes' friend and chronicler,\nDr. John H. Watson.\"\r\n4527,4720,319644,Suzanne Collins,Gregor and the Marks of Secret,https://images.gr-assets.com/books/1397854344l/319644.jpg,4.21,23727,\"fantasy, fiction\",Gregor and the Marks of SecretSuzanne Collins\r\n4528,4721,3116205,Timothy J. Keller,The Prodigal God: Christianity Redefined Through the Parable of the Prodigal Sons,https://images.gr-assets.com/books/1427212055l/3116205.jpg,4.39,20087,\"christian, nonfiction\",\"Uses the biblical tale of the prodigal son to provide both an introduction\nto Christianity and a primer to the nature of the gospel for believers,\ndiscussing how Jesus' essential message as revealed by the story can enable\na greater understanding of the Christian faith.\"\r\n4529,4722,44255,Peter Mayle,Toujours Provence,https://images.gr-assets.com/books/1411874268l/44255.jpg,4,21873,\"travel, memoir\",Toujours ProvencePeter Mayle\r\n4530,4723,27398,Jonathan Harr,The Lost Painting: The Quest for a Caravaggio Masterpiece,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187150l/27398.jpg,3.71,18944,\"art, history\",\"Recounts the search for a long-lost masterpiece by Italian Baroque master\nMichelangelo Caravaggio, following a young graduate student across hundreds\nof years and four countries to uncover the mystery of \"\"The Taking of\nChrist.\"\"\"\r\n4531,4724,16099189,Chris Bohjalian,The Light in the Ruins,https://images.gr-assets.com/books/1355182026l/16099189.jpg,3.65,20519,\"fiction, mystery\",\"Hoping to safeguard themselves during World War II within their villa in\nFlorence, the Rosati family become prisoners in their home instead when the\nNazis take over the estate, a situation that leads to a murder\ninvestigation years later.\"\r\n4532,4726,226004,Vernor Vinge,A Deepness in the Sky,https://images.gr-assets.com/books/1217218691l/226004.jpg,4.32,21876,\"fiction, science\",\"After thousands of years searching, humans stand on the verge of first\ncontact with an alien race. Two human groups: the Qeng Ho, a culture of\nfree traders, and the Emergents, a ruthless society based on the\ntechnological enslavement of minds. The group that opens trade with the\naliens will reap unimaginable riches. But first, both groups must wait at\nthe aliens' very doorstep for their strange star to relight and for their\nplanet to reawaken, as it does every two hundred and fifty years.... Then,\nfollowing terrible treachery, the Qeng Ho must fight for their freedom and\nfor the lives of the unsuspecting innocents on the planet below, while the\naliens themselves play a role unsuspected by the Qeng Ho and Emergents\nalike. More than just a great science fiction adventure, A Deepness in the\nSky is a universal drama of courage, self-discovery, and the redemptive\npower of love. A Deepness in the Sky is a 1999 Nebula Award Nominee for\nBest Novel and the winner of the 2000 Hugo Award for Best Novel.\"\r\n4533,4727,18288,\"Immanuel Kant, Paul Guyer, Allen W. Wood\",Kritik der reinen Vernunft,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348663530l/18288.jpg,3.92,19521,\"philosophy, classics\",\"The most accurate and informative English translation ever produced of this\nepochal philosophical text.\"\r\n4534,4728,16298,Agatha Christie,A Murder is Announced,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348508635l/16298.jpg,3.96,25811,\"mystery, fiction\",\"The villagers of Chipping Cleghorn are agog with curiosity when the Gazette\nadvertises “A murder is announced and will take place on Friday, October\n29th, at Little Paddocks at 6.30 p.m.” A childish practical joke? Or a\nspiteful hoax? Unable to resist the mysterious invitation, the locals\narrive at Little Paddocks at the appointed time when, without warning, the\nlights go out and a gun is fired. When they come back on, a gruesome scene\nis revealed. An impossible crime? Only Miss Marple can unravel it.\"\r\n4535,4729,926908,\"Rien Poortvliet, Wil Huygen\",Leven en werken van de Kabouter,https://images.gr-assets.com/books/1463189122l/926908.jpg,4.01,22584,\"fantasy, art\",\"Leven en werken van de KabouterRien Poortvliet, Wil Huygen\"\r\n4536,4730,153193,MaryJanice Davidson,Undead and Unemployed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183083l/153193.jpg,3.93,29168,\"paranormal, romance\",\"Undead, and unable to shake her penchant for shoes, Betsy Taylor, the new\nQueen of the Vampires, gets a job selling designer footwear at Macy's while\ntrying to catch a vicious vampire slayer with the help of a gorgeous ally.\nOriginal.\"\r\n4537,4731,1305,Steven Pressfield,Gates of Fire: An Epic Novel of the Battle of Thermopylae,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924869l/1305.jpg,4.4,17952,\"fiction, history\",\"An ambitious, cinematic historical novel chronicles the battle of three\nhundred Spartan warriors against a huge force of Persian soldiers in 480\nB.C. against the background of life in ancient Sparta and its extraordinary\nculture. Reprint.\"\r\n4538,4732,137098,Hester Browne,The Little Lady Agency,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437584510l/137098._SY475_.jpg,3.74,22562,\"romance, fiction\",\"Reviled by her snobby family but adored by her friends, unemployed\netiquette expert Melissa Romney-Jones reinvents herself as Honey and goes\ninto business as a matchmaker for inept bachelors, a profession that is\nchallenged by an intriguing American client and her sister's lavish wedding\npreparations. Reprint.\"\r\n4539,4733,385228,John Stuart Mill,On Liberty,https://images.gr-assets.com/books/1459346459l/385228.jpg,3.93,19604,\"philosophy, classics\",\"Discussed and debated from time immemorial, the concept of personal liberty\nwent without codification until the 1859 publication of On Liberty. John\nStuart Mill's complete and resolute dedication to the cause of freedom\ninspired this treatise, an enduring work through which the concept remains\nwell known and studied. The British economist, philosopher, and ethical\ntheorist's argument does not focus on \"\"the so-called Liberty of the\nWill…but Civil, or Social Liberty: the nature and limits of the power which\ncan be legitimately exercised by society over the individual.\"\" Mill asks\nand answers provocative questions relating to the boundaries of social\nauthority and individual sovereignty. In powerful and persuasive prose, he\ndeclares that there is \"\"one very simple principle\"\" regarding the use of\ncoercion in society — one may only coerce others either to defend oneself\nor to defend others from harm. The new edition offers students of political\nscience and philosophy, in an inexpensive volume, one of the most\ninfluential studies on the nature of individual liberty and its role in a\ndemocratic society.\"\r\n4540,4734,22934446,Alan Cumming,Not My Father's Son,https://images.gr-assets.com/books/1429218612l/22934446.jpg,4,11436,\"memoir, biography\",Not My Father's SonAlan Cumming\r\n4541,4735,468070,Nigella Lawson,Nigella Express: Good Food Fast,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437577758l/468070._SX318_.jpg,3.96,20034,\"cookbooks, nonfiction\",\"The Domestic Goddess is back, and this time it's instant. Nigella and her\nstyle of cooking have earned a special place in our lives, symbolizing all\nthat is best, most pleasurable, most hands-on, and least fussy about good\nfood. But that doesn't mean she wants us to spend hours in the kitchen,\nslaving over a hot stove. Featuring fabulous fast foods, ingenious\nshortcuts, terrific time-saving ideas, effortless entertaining tips, and\nsimple, scrumptious meals, Nigella Express is her solution to eating well\nwhen time is short. Here are mouthwatering meals, quick to prepare and easy\nto follow, that you can conjure up after a day in the office or on a busy\nweekend, for family or unexpected guests. This is food you can make as you\nhit the kitchen running, with vital advice on how to keep your pantry\nstocked, and your freezer and fridge stacked. When time is precious, you\ncant spend hours shopping, so you need to make life easier by being\nprepared. Not that these recipes are basic, though they are always simple,\nbut it's important to make every ingredient earn its place, minimizing\neffort by maximizing taste. Here too is great food that can be prepared\nquickly but cooked slowly in the oven, leaving you time to have a bath, a\ndrink, talk to friends, or help the children with their homework, minimum\nstress for maximum enjoyment. Nigella Express features a new generation of\nfast food, never basic, never dull, always doable, quick, and delicious.\nFeaturing recipes seen on Food Networks Nigella Express series. Praise for\nNigella Lawson and her cookbooks:\"\r\n4542,4737,7863423,Jill Shalvis,Simply Irresistible,https://images.gr-assets.com/books/1323268405l/7863423.jpg,3.92,27319,\"romance, contemporary\",Simply IrresistibleJill Shalvis\r\n4543,4738,16247792,Sylvain Reynard,Gabriel's redemption,https://images.gr-assets.com/books/1366632463l/16247792.jpg,4.23,28331,\"romance, contemporary\",\"Professor Gabriel Emerson must confront long-hidden secrets from his past\nafter he travels to Oxford with Julianne who is making an academic\npresentation on research that conflicts with his own in this conclusion to\nthe trilogy following Gabriel's Inferno. Original. 250,000 first printing.\"\r\n4544,4739,5989573,Bryan Lee O'Malley,\"Scott Pilgrim, Volume 5: Scott Pilgrim Vs. the Universe\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348110908l/5989573.jpg,4.33,24936,\"comics, fiction\",\"Scott Pilgrim continues to battle his girlfriend's evil ex-boyfriends while\ntrying to keep his band together and losing control of his relationship\nwith Ramona.\"\r\n4545,4740,213233,Atul Gawande,Better: A Surgeon's Notes on Performance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437843332l/213233._SX318_.jpg,4.19,17109,\"nonfiction, science\",\"Explores the efforts of physicians to close the gap between best intentions\nand best performance in the face of insurmountable obstacles, discussing\nsuch topics as the ethical considerations of lethal injections,\nmalpractice, and surgical errors.\"\r\n4546,4742,19095025,Kylie Scott,Play,https://images.gr-assets.com/books/1393202794l/19095025.jpg,4.33,22231,\"romance, contemporary\",PlayKylie Scott\r\n4547,4743,6441654,\"Rebecca Housel, J. Jeremy Wisnewski, William Irwin\",\"Twilight and Philosophy: Vampires, Vegetarians, and the Pursuit of Immortality (The Blackwell Philosophy and Pop Culture Series)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348132058l/6441654.jpg,4.39,18027,\"philosophy, fantasy\",\"Twilight and Philosophy: Vampires, Vegetarians, and the Pursuit of Immortality (The Blackwell Philosophy and Pop Culture Series)Rebecca Housel, J. Jeremy Wisnewski, William Irwin\"\r\n4548,4744,49176,Eric Berne,Games People Play,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437170019l/49176.jpg,3.81,17035,\"psychology, nonfiction\",\"The fortieth anniversary edition of the groundbreaking best seller examines\nthe interpersonal defenses which individuals construct to avoid dealing\nwith reality in everyday situations in a volume that features a new\nprologue , as well as commentary by Kurt Vonnegut from his original 1965\nLIFE magazine review. Reissue. 20,000 first printing.\"\r\n4549,4745,18966322,Brandon Sanderson,Mitosis,https://images.gr-assets.com/books/1385570447l/18966322.jpg,3.87,17250,\"fantasy, fiction\",MitosisBrandon Sanderson\r\n4550,4746,7186,\"Alexandre Dumas fils, David Coward\",La Dame aux camélias,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165607713l/7186.jpg,3.97,13562,\"classics, fiction\",\"La Dame aux caméliasAlexandre Dumas fils, David Coward\"\r\n4551,4747,11942639,Rachel Hauck,The Wedding Dress,https://images.gr-assets.com/books/1327923985l/11942639.jpg,3.83,16310,\"romance, fiction\",The Wedding DressRachel Hauck\r\n4552,4748,206309,\"Stephen C. Lundin, Harry Paul, John Christensen, Kenneth H. Blanchard\",Fish! A Remarkable Way to Boost Morale and Improve Results,https://images.gr-assets.com/books/1393219562l/206309.jpg,3.92,19405,\"business, nonfiction\",\"Imagine a workplace where everyone chooses to bring energy, passion, and a\npositive attitude to the job every day. Imagine an environment in which\npeople are truly connected to their work, to their colleagues, and to their\ncustomers. In this engrossing parable, a fictional manager is charged with\nthe responsibility of turning a chronically unenthusiastic and unhelpful\ndepartment into an effective team. Across the street from her office is\nSeattles very real Pike Place Fish Market, world famous and wildly\nsuccessful thanks to its fun, bustling, joyful atmosphere and customer\nservice. By applying ingeniously simple lessons learned from the actual\nPike Place fishmongers, our manager learns how to energize those who report\nto her and effect an astonishing transformation in her workplace.\nAddressing todays work issues (including employee retention and burnout)\nwith an engaging metaphor and an appealing message that applies to any\nsector of any organization, Fish! offers wisdom that is easy to grasp,\ninstantly applicable, and profoundthe hallmarks of a true business classic.\nBased on a bestselling ChartHouse training video which has been adopted by\ncorporations including Southwest Airlines, Sprint, and Nordstrom.\"\r\n4553,4749,49250,Stephen E. Ambrose,\"D-Day June 6, 1944: The Climactic Battle of WWII\",https://images.gr-assets.com/books/1391798880l/49250.jpg,4.25,17875,\"history, nonfiction\",\"Chronicles the events, politics, and personalities of this pivotal day in\nWorld War II, shedding light on the strategies of commanders on both sides\nand the ramifications of the battle\"\r\n4554,4750,7981456,Linda Sue Park,A Long Walk to Water,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441975555l/7981456._SY475_.jpg,4.23,21593,\"fiction, nonfiction\",A Long Walk to WaterLinda Sue Park\r\n4555,4751,8811139,Michael  Grant,Light,https://images.gr-assets.com/books/1331533067l/8811139.jpg,4.4,23730,\"fantasy, paranormal\",LightMichael  Grant\r\n4556,4752,28477789,\"Vi Keeland, Penelope Ward\",Stuck-Up Suit,https://images.gr-assets.com/books/1456315337l/28477789.jpg,4.14,22609,\"romance, contemporary\",\"For fans of Samantha Young and Christina Lauren comes a sexy romance from\ntwo New York Times Best Selling authors about two strangers whose lives\naccidentally collide on the train with the drop of a phone.\"\r\n4557,4753,189147,Philip José Farmer,To Your Scattered Bodies Go,https://images.gr-assets.com/books/1327657439l/189147.jpg,3.94,22741,\"fantasy, fiction\",\"Richard Francis Burton attempts to fight his way out of the Riverworld in\nwhich he finds himself trapped after death.\"\r\n4558,4754,114132,Nora Roberts,Midnight Bayou,https://images.gr-assets.com/books/1309200744l/114132.jpg,3.96,25476,\"romance, mystery\",\"Haunted by ghostly visions from a century past, Declan Fitzgerald is drawn\nto his beautiful neighbor, Angelina. But as the passion between them grows,\ntheir future together depends on uncovering a secret from the past as dark\nand deep as the bayou.\"\r\n4559,4755,12967,Mark Helprin,Winter's Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442048864l/12967._SY475_.jpg,3.5,19932,\"fantasy, fiction\",Winter's TaleMark Helprin\r\n4560,4756,106646,Sidney Sheldon,The Doomsday Conspiracy,https://images.gr-assets.com/books/1408853925l/106646.jpg,3.59,17093,\"fiction, thriller\",\"When a mysterious weather balloon crashes to earth in the Swiss Alps, the\nhead of the NSA handpicks Robert Bellamy to track down and identify the ten\nknown witnesses to the event. A man whose obsession with his covert\nassignments has cost him the only woman he can ever love, Bellamy now faces\nthe impossible. But as he searches for clues from Rome to Budapest to\nTexas, this mission blows up in his face -- and rips the lid off an\nincredible conspiracy that stretches around the globe and even into\nspace... Alone and betrayed on every side, Bellamy must run for his life --\nholding an astonishing secret and the key to the planet's very survival.\"\r\n4561,4757,201175,\"J.D. Robb, Susan Ericksen\",Rapture in Death,https://images.gr-assets.com/books/1347628556l/201175.jpg,4.26,26184,\"mystery, romance\",\"Rapture in DeathJ.D. Robb, Susan Ericksen\"\r\n4562,4758,161744,Thomas Paine,Common Sense,https://images.gr-assets.com/books/1309209451l/161744.jpg,3.97,16864,\"history, classics\",\"Presents the text of Paine's political pamphlet, citing the evils of\nmonarchy and the necessity for the British colonies to break free of\nEngland and self-govern.\"\r\n4563,4759,54529,Adeline Yen Mah,Falling Leaves: The Memoir of an Unwanted Chinese Daughter,https://images.gr-assets.com/books/1423952608l/54529.jpg,3.88,19598,\"memoir, biography\",\"The daughter of a wealthy Hong Kong businessman describes her very\ndifficult childhood and the psychological abuse she suffered at the hands\nof her stepmother\"\r\n4564,4760,3338544,مصطفى محمود,رحلتي من الشك إلى الإيمان,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216840475l/3338544.jpg,4.03,16854,\"religion, philosophy\",رحلتي من الشك إلى الإيمانمصطفى محمود\r\n4565,4761,13416236,C.C. Hunter,Whispers at Moonrise ,https://images.gr-assets.com/books/1331497103l/13416236.jpg,4.38,28430,\"fantasy, paranormal\",\"Struggling for answers about her heritage and newfound powers, Kylie\nwonders about half-Fae Derek's declaration of love and the priorities of\nwerewolf boyfriend Lucas. Original.\"\r\n4566,4762,7148931,Timothy Ferriss,The 4-Hour Body,https://images.gr-assets.com/books/1351861578l/7148931.jpg,3.76,15007,\"ebooks, nonfiction\",\"Do you want to lose fat, double testosterone, get the perfect posterior or\ngive your partner a fifteen-minute female orgasm? Whatever your physical\ngoal, The 4-Hour Body eclipses every other health manual by sharing the\nbest kept secrets in the latest science and research to provide new\nstrategies for redesigning the human body. And you don't need to exhaust\nyourself. International bestselling author, Timothy Ferriss, helps you\nreach your true genetic potential in 3-6 months with a commitment of less\nthan four hours per week. You can pick and choose from a menu of options,\nfrom simple to extreme, for dramatic body changes. Based on over 15 years\nof research and with personal stories, amazing before and after photos,\nrecipes and sidebars, The 4-Hour Body will give unbelievable results and\nchange the way you look forever.\"\r\n4567,4763,58314,\"Michel Houellebecq, Frank Wynne\",Les Particules élémentaires,https://images.gr-assets.com/books/1403180525l/58314.jpg,3.78,13577,\"fiction, contemporary\",\"Half-brothers Michel and Bruno have a mother in common but little else.\nMichel is a molecular biologist, a thinker and idealist, a man with no\nerotic life to speak of and little in the way of human society. Bruno, by\ncontrast, is a libertine, though more in theory than in practice, his\nendless lust is all too rarely reciprocated. Both are symptomatic members\nof our atomised society, where religion has given way to shallow 'new age'\nphilosophies and love to meaningless sexual connections. Atomised tells the\nstories of the two brothers, but the real subject of the novel is the\ndismantling of contemporary society and its assumptions, its political\nincorrectness, and its caustic and penetrating asides on everything from\nanthropology to the problem pages of girls' magazines. A dissection of\nmodern lives and loves. By turns funny, acid, infuriating, didactic,\ntouching and visceral.\"\r\n4568,4764,17314410,Georgia Cates,Beauty from Surrender,https://images.gr-assets.com/books/1367294723l/17314410.jpg,4.13,31623,\"romance, contemporary\",\"How do you move on when he's every song you sing? After Laurelyn walks away\nfrom Jack, she returns to Nashville to pursue the only dream she has left,\nand immerses herself in her music. An unforeseen opportunity sends her on a\nrocket ride straight to the top where Laurelyn finds the success she's\nalways dreamed of. Meanwhile, Jack is searching for Laurelyn, but the woman\nhe finds isn't the same one who drifted away without a goodbye. Can he make\nher visualize a life beyond the glitz and glamour ... a life that includes\nhim?\"\r\n4569,4765,224410,\"Roy Thomas, Dick Giordano, Mark D. Beazley, Bram Stoker\",Stoker's Dracula ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518830041l/224410.jpg,3.93,14660,\"classics, horror\",Presents a graphic novel adaptation of Bram Stoker's horror story.\r\n4570,4766,207266,Dav Pilkey,The Adventures of Captain Underpants,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348215410l/207266.jpg,3.84,22535,\"fiction, comics\",\"Captain Underpants, the former school principal turned crime-fighting,\nwedgie-dodging superhero, uses his wacky talents to outwit the evil Dr.\nDiaper. By the author of the Dumb Bunnies series. Simultaneous.\"\r\n4571,4767,13435889,Paul Tough,\"How Children Succeed: Grit, Curiosity, and the Hidden Power of Character\",https://images.gr-assets.com/books/1344730141l/13435889.jpg,3.91,16402,\"nonfiction, psychology\",\"Challenges conventional views about standardized testing to argue that\nsuccess is more determined by self-discipline, and describes the work of\npioneering researchers and educators who have enabled effective new\nteaching methods.\"\r\n4572,4768,149049,Arthur C. Clarke,The Fountains of Paradise,https://images.gr-assets.com/books/1344265959l/149049.jpg,3.96,20012,\"fiction, science\",The Fountains of ParadiseArthur C. Clarke\r\n4573,4769,98920,Elif Shafak,Baba ve Piç,https://images.gr-assets.com/books/1309282092l/98920.jpg,3.79,14215,\"fiction, contemporary\",\"Story of two families, one Turkish and one Armenian American.\"\r\n4574,4770,17237214,David Levithan,Two Boys Kissing,https://images.gr-assets.com/books/1364194940l/17237214.jpg,4.11,24587,\"contemporary, romance\",\"A chorus of men who have died of AIDS observes and yearns to help a cross-\nsection of today's gay teens who navigate new love, long-term\nrelationships, coming out, self-acceptance and more in a society that has\nchanged in many ways. By the author of Boy Meets Boy.\"\r\n4575,4772,21726,Scott B. Smith,The Ruins,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432679747l/21726._SX318_.jpg,3.5,21613,\"horror, fiction\",\"In Cancâun, Mexico, for a peaceful vacation, a group of tourists sets off\nin search of one of their group who disappeared during an excursion to some\nnearby Mayan ruins, only to come face to face with an insidious evil that\nthreatens their lives.\"\r\n4576,4773,336245,Erin Hunter,A Dangerous Path,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189622l/336245.jpg,4.42,26126,\"fantasy, fiction\",A Dangerous PathErin Hunter\r\n4577,4774,543339,Michael Blake,Dances with Wolves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388608222l/543339.jpg,4.19,19133,\"fiction, classics\",\"Lieutenant John Dunbar, the only soldier at an army outpost deep in Indian\nterritory, befriends the local Comanche tribe and learns their ways from\nthe beautiful Comanche woman whose life he saved\"\r\n4578,4775,153779,Tamora Pierce,\"Bloodhound (Beka Cooper, #2)\",https://images.gr-assets.com/books/1320443071l/153779.jpg,4.26,29414,\"fantasy, fiction\",\"Beka, who has been promoted from \"\"Puppy\"\" to \"\"Dog\"\" and who is now a full-\nfledged member of the Provost's Guard, heads with her former partner to a\nneighboring port city to investigate a case of counterfeit coins.\"\r\n4579,4776,6122735,Brent Weeks,The Night Angel Trilogy,https://images.gr-assets.com/books/1450327994l/6122735.jpg,4.42,17523,\"fantasy, fiction\",\"This special 10th anniversary edition celebrates the blockbuster assassin\nfantasy series that launched New York Times bestselling author Brent Weeks'\ncareer. For Durzo Blint, assassination is an art - and he is the city's\nmost accomplished artist. For Azoth, survival is just the beginning. He was\nraised on the streets and knows an opportunity when he sees one - even when\nthe risks are as high as working for someone like Durzo Blint. Azoth must\nlearn to navigate the assassins' world of dangerous politics and strange\nmagics - and become the perfect killer. The Night Angel TrilogyThe Way of\nShadowsShadow's EdgeBeyond the Shadows Night Angel: The Complete Trilogy\n(omnibus)Perfect ShadowThe Way of Shadows: The Graphic Novel For more from\nBrent Weeks, check out: LightbringerThe Black Prism The Blinding Knife The\nBroken Eye The Blood Mirror\"\r\n4580,4777,426025,William Faulkner,A Rose for Emily,https://images.gr-assets.com/books/1487468453l/426025.jpg,4.06,22629,\"classics, fiction\",\"William Faulkner [RL 8 IL 7-12] An aristocratic Southern woman hides a\nmacabre secret. Themes: lost love; secret passions. 36 pages. Tale Blazers.\"\r\n4581,4778,5883777,Anonymous,Holy Bible English Standard Version,https://images.gr-assets.com/books/1328227151l/5883777.jpg,4.66,17863,\"religion, christian\",\"The ESV Classic Reference Bible combines the ESV Bible text with an\nextensive system of more than 80,000 cross-references in the center column\non each page. With its readable type, color maps, and a major concordance,\nthe Classic Reference Bible is the first choice for personal Bible reading\nand in-depth study. 9.5-point type Words of Christ in red Concordance with\nover 14,500 references Over 80,000 cross-references\"\r\n4582,4779,321545,Ellis Peters,A Morbid Taste for Bones,https://images.gr-assets.com/books/1296427936l/321545.jpg,3.99,23590,\"mystery, fiction\",A Morbid Taste for BonesEllis Peters\r\n4583,4780,233389,\"Giorgio Vasari, Julia Conway Bondanella, Peter Bondanella\",\"Le Vite de' più eccellenti pittori, scultori, e architettori da Cimabue insino a' tempi nostri\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708111l/233389.jpg,3.78,18288,\"art, biography\",\"Beginning with Cimabue and Giotto in the 13th century, Vasari traces the\ndevelopment of Italian art across three centuries to the golden epoch of\nLeonardo and Michelangelo.\"\r\n4584,4781,84139,Sherrilyn Kenyon,Unleash the Night,https://images.gr-assets.com/books/1462051642l/84139.jpg,4.34,32491,\"romance, fantasy\",\"The result of a forbidden union between snow leopard and white tiger, Were-\nHunter Wren Tigarian must battle not only the world of ordinary humans but\nalso his fellow Were-Hunters to win the woman he loves, Marguerite D'Aubert\nGoudeau, the daughter of a wealthy and prominent U.S. senator. Original.\"\r\n4585,4782,4935682,Angie Sage,Syren,https://images.gr-assets.com/books/1327949203l/4935682.jpg,4.1,25245,\"fantasy, fiction\",SyrenAngie Sage\r\n4586,4783,5558786,\"Dmitry Glukhovsky, M. David Drevs\",Метро 2033,https://images.gr-assets.com/books/1328809143l/5558786.jpg,3.98,15858,\"horror, fiction\",\"Метро 2033Dmitry Glukhovsky, M. David Drevs\"\r\n4587,4784,5396496,Christos Tsiolkas,The Slap,https://images.gr-assets.com/books/1330062364l/5396496.jpg,3.16,18037,\"fiction, contemporary\",\"At a festive barbecue in the Melbourne suburb a man slaps the child of\nanother couple, triggering a court case and a variety of confrontations\nwithin the lives of the the families and friends present.\"\r\n4588,4785,207781,\"Robert Henri, Forbes Watson, Margery A. Ryerson\",\"The Art Spirit: Notes, Articles, Fragments of Letters and Talks to Students, Bearing on the Concept and Technique of Picture Making, the Study of Art Generally, and on Appreciation (Icon Editions)\",https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.87,16333,\"art, nonfiction\",\"In this book are the essential beliefs and theories of a great teacher and\nAmerican artist, Robert Henri. While it embodies the entire system of his\nteaching, with much technical advice and critical comment for the student,\nit also contains inspiration for those to whom the happiness to be found\nthrough all the arts is important.No other American painter attracted such\na large, intensely personal group of followers as Henri, whose death in\n1929 brought to an end a life that has been completely devoted to art. He\nwas an inspired artist and teacher who believed that everyone is vitally\nconcerned in the happiness and wisdom to be found through the arts. Many of\nhis paintings have been acquired by museums and private collectors. Among\nthem are the Baltimore Museum of Art, the Metropolitan Museum of Art, the\nNational Gallery of Art, the Whitney Museum of American Art, the Wichita\nArt Museum, and Yale University Art Gallery.\"\r\n4589,4786,17171909,Marcus Sakey,Brilliance,https://images.gr-assets.com/books/1437159954l/17171909.jpg,3.95,11235,\"fiction, thriller\",\"Federal agent Nick Cooper draws on his supernatural ability to eliminate\nterrorists to hunt down a dangerous man who committed a horrific massacre\non Wall Street that left hundreds dead and injured.\"\r\n4590,4788,9799,Jonathan Lethem,The Fortress of Solitude,https://images.gr-assets.com/books/1418677318l/9799.jpg,3.87,15100,\"fantasy, music\",\"Their friendship compromised by the belief systems of the racially charged\n1970s, Dylan Ebdus and Mingus Rude share a series of misadventures based on\ntheir mutual obsession with comic-book heroes. By the author of Motherless\nBrooklyn. Reader's Guide available. Reprint. 100,000 first printing.\"\r\n4591,4789,379316,Dean Koontz,The Darkest Evening of the Year,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257721l/379316.jpg,3.71,21297,\"horror, fiction\",\"NEW YORK TIMES BESTSELLER Who will be with you in the darkest hour? Amy\nRedwing has devoted her life to rescuing dogs. But the unique bond she\nshares with Nickie, a golden retriever she saves in the most dangerous\nencounter of her life, is deeper than any she has ever known. In one night,\ntheir loyalty will be put to the test, and each will prove to the other how\nfar they will go—when the stakes turn deadly serious.\"\r\n4592,4790,18077769,Jeff VanderMeer,Authority ,https://images.gr-assets.com/books/1403941730l/18077769.jpg,3.55,18430,\"fiction, horror\",\"John Rodriguez, the new head of a secret agency tasked to monitor Area X—a\nlush and remote terrain mysteriously sequestered from civilization—is faced\nwith disturbing truths about himself and the agency he has sworn to serve\nwhen the secrets of Area X begin to reveal themselves. Original. 50,000\nfirst printing.\"\r\n4593,4791,277190,\"Holly Black, Tony DiTerlizzi\",The Wrath of Mulgarath,https://images.gr-assets.com/books/1358702186l/277190.jpg,3.92,28129,\"fantasy, fiction\",\"Presents the final installment in the fantasy series about the adventures\nof the Grace kids, as they battle dwarves and goblins in a desperate fight\nto free their mom from the clutches of the evil ogre, Mulgarath.\"\r\n4594,4793,251762,Myla Goldberg,Bee Season,https://images.gr-assets.com/books/1371912051l/251762.jpg,3.55,21160,\"fiction, contemporary\",\"A bag with ten copies of the title that may also include miscellaneous\nnotes, discussion questions, biographical information, and reading lists to\nassist book group discussion leaders.\"\r\n4595,4794,182012,Karin Slaughter,Indelible,https://images.gr-assets.com/books/1299703450l/182012.jpg,4.19,20930,\"mystery, crime\",IndelibleKarin Slaughter\r\n4596,4795,236208,Dean Koontz,Night Chills,https://images.gr-assets.com/books/1308460533l/236208.jpg,3.86,20424,\"horror, fiction\",Night ChillsDean Koontz\r\n4597,4796,29254,\"Ram Dass, Richard Alpert\",Be Here Now,https://images.gr-assets.com/books/1369858407l/29254.jpg,4.27,18275,\"spirituality, philosophy\",\"This book is enhanced with content such as audio or video, resulting in a\nlarge file that may take longer to download than expected. The enhanced\nedition of Be Here Now includes: Two guided video meditations, 30 minutes\nin length * Twenty minute video retrospective of Ram Dass' spiritual\njourney *The first chapter of Ram Dass' new book, Be Love Now\"\r\n4598,4797,6530,Patricia Cornwell,Trace,https://images.gr-assets.com/books/1310723816l/6530.jpg,3.76,23287,\"thriller, mystery\",TracePatricia Cornwell\r\n4599,4798,1279686,Conn Iggulden,Genghis: Birth of an Empire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1396740724l/1279686.jpg,4.34,16498,\"fiction, history\",\"Tartar raids kill the father of Temujin and banishes his family from the\nland; but when he grows older, he assembles a small army of men and begins\nraiding Tartar camps and eventually unites all the Mongol tribes together.\"\r\n4600,4799,291354,David Eddings,The Ruby Knight,https://images.gr-assets.com/books/1487687688l/291354.jpg,3.96,24586,\"fantasy, fiction\",\"Sparhawk, Knight and Queen's Champion, and his companions brave untold\nperils as they seek the Bhelliom, a fabulous, long-lost jewel with the\npower to cure the poison that threatens the life of Ehlana, Queen of Elenia\"\r\n4601,4800,32638,Clive Barker,The Thief of Always,https://images.gr-assets.com/books/1309239541l/32638.jpg,4.18,19799,\"fantasy, horror\",The Thief of AlwaysClive Barker\r\n4602,4801,715791,Lara Adrian,Kiss of Crimson ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434807577l/715791._SY475_.jpg,4.17,31897,\"paranormal, romance\",Kiss of Crimson Lara Adrian\r\n4603,4802,2653622,Tess Gerritsen,The Keepsake,https://images.gr-assets.com/books/1320502170l/2653622.jpg,4.09,21829,\"mystery, crime\",The KeepsakeTess Gerritsen\r\n4604,4804,25564446,Brittainy C. Cherry,The Air He Breathes,https://images.gr-assets.com/books/1441375261l/25564446.jpg,4.2,22217,\"romance, contemporary\",The Air He BreathesBrittainy C. Cherry\r\n4605,4805,3585344,Kresley Cole,Kiss of a Demon King ,https://images.gr-assets.com/books/1357612809l/3585344.jpg,4.35,31111,\"paranormal, romance\",\"From #1 New York Times bestselling author Kresley Cole comes a spellbinding\nstandalone novel set in the Immortals After Dark universe: the story of a\ndemon king trapped by an enchantress for her wanton purposes—and the\nscorching aftermath that follows when he turns the tables and claims her as\nhis captive. His obsession… Sabine, Sorceress of Illusions: the evil beauty\nwho surrenders her body, but not her heart. Her downfall… Rydstrom Woede:\nthe ruthless warrior who vows to keep her at all costs. They were never\nsupposed to want each other this much... With each smoldering encounter,\ntheir shared hunger only increases. If they can defeat the sinister enemy\nthat stands between them, will Sabine make the ultimate sacrifice for her\ndemon? Or will the proud king lay down his crown and arms to save his\nsorceress?\"\r\n4606,4806,478951,Steven Erikson,The Bonehunters,https://images.gr-assets.com/books/1399934281l/478951.jpg,4.42,20359,\"fantasy, fiction\",The BonehuntersSteven Erikson\r\n4607,4808,22341276,Charlie N. Holmberg,The Glass Magician,https://images.gr-assets.com/books/1410466975l/22341276.jpg,3.87,13650,\"fantasy, romance\",\"Three months after returning Magician Emery Thane's heart to his body,\nCeony Twill is well on her way to becoming a Folder. Unfortunately, not all\nof Ceony's thoughts have been focused on paper magic. Though she was\npromised romance by a fortuity box, Ceony still hasn't broken the teacher-\nstudent barrier with Emery, despite their growing closeness. When a\nmagician with a penchant for revenge believes that Ceony possesses a\nsecret, he vows to discover it ...even if it tears apart the very fabric of\ntheir magical world. After a series of attacks target Ceony and catch those\nshe holds most dear in the crossfire, Ceony knows she must find the true\nlimits of her powers ...and keep her knowledge from falling into wayward\nhands.\"\r\n4608,4809,10098912,Ashwin Sanghi,Chanakya's Chant,https://images.gr-assets.com/books/1327939570l/10098912.jpg,3.68,15474,\"fiction, thriller\",Chanakya's ChantAshwin Sanghi\r\n4609,4810,12467,Norman Mailer,The Naked and the Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181219l/12467.jpg,3.94,18912,\"fiction, classics\",\"Portrays the contrasting personalities and nostalgic reminiscences of a\ngroup of World War II American soldiers engaged in a combat operation\nagainst the Japanese. Reprint. 15,000 first printing.\"\r\n4610,4811,35100,James M. McPherson,Battle Cry of Freedom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185755l/35100.jpg,4.32,19132,\"history, nonfiction\",\"Filled with fresh interpretations and information, puncturing old myths and\nchallenging new ones, Battle Cry of Freedom will unquestionably become the\nstandard one-volume history of the Civil War. James McPherson's fast-paced\nnarrative fully integrates the political, social, and military events that\ncrowded the two decades from the outbreak of one war in Mexico to the\nending of another at Appomattox. Packed with drama and analytical insight,\nthe book vividly recounts the momentous episodes that preceded the Civil\nWar—the Dred Scott decision, the Lincoln-Douglas debates, John Brown's raid\non Harper's Ferry—and then moves into a masterful chronicle of the war\nitself—the battles, the strategic maneuvering on both sides, the politics,\nand the personalities.\"\r\n4611,4812,646056,\"Michael Teitelbaum, Sue DiCicco\",The Little Mermaid (Little Golden Storybook),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1176695795l/646056._SX318_.jpg,4.36,21994,\"fantasy, classics\",\"A little sea princess, longing to be human, trades her mermaid's tail for\nlegs to win the love of a prince.\"\r\n4612,4813,86424,\"James Patterson, Andrew Gross\",Lifeguard,https://images.gr-assets.com/books/1344264201l/86424.jpg,3.76,20053,\"mystery, fiction\",\"LifeguardJames Patterson, Andrew Gross\"\r\n4613,4815,37739,Judy Blume,Blubber,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348784315l/37739.jpg,3.78,25402,\"fiction, classics\",\"Jill goes along with the rest of the fifth-grade class in tormenting a\nclassmate and then finds out what it's like when she, too, becomes a\ntarget.\"\r\n4614,4816,7954556,Jeaniene Frost,\"One Grave at a Time (Night Huntress, #6)\",https://images.gr-assets.com/books/1315175727l/7954556.jpg,4.25,34506,\"paranormal, romance\",\"How do you send a killer to the grave when he’s already dead? Having\nnarrowly averted an (under)World War, Cat Crawfield wants nothing more than\na little downtime with her vampire husband, Bones. Unfortunately, her gift\nfrom New Orleans’s voodoo queen just keeps on giving—leading to a personal\nfavor that sends them into battle once again, this time against a\nvillainous spirit. Centuries ago, Heinrich Kramer was a witch hunter. Now,\nevery All Hallows Eve, he takes physical form to torture innocent women\nbefore burning them alive. This year, however, a determined Cat and Bones\nmust risk all to send him back to the other side of eternity—forever. But\none wrong step and they’ll be digging their own graves.\"\r\n4615,4817,9897164,Jennifer L. Armentrout,Apollyon,https://images.gr-assets.com/books/1350101819l/9897164.jpg,4.4,31942,\"fantasy, paranormal\",\"Alex travels to the Underworld in search of the one person who might have\ninformation that could prevent the destruction planned by the gods.\"\r\n4616,4818,6202661,Lindsey Kelk,I Heart New York,https://images.gr-assets.com/books/1276963692l/6202661.jpg,3.84,19491,\"romance, fiction\",I Heart New YorkLindsey Kelk\r\n4617,4819,2213324,Meg Cabot,Airhead ,https://images.gr-assets.com/books/1260574610l/2213324.jpg,3.77,32457,\"romance, contemporary\",\"Sixteen-year-old Emerson Watts, an advanced placement student with a\ndisdain for fashion, is the recipient of a \"\"whole body transplant\"\" and\nfinds herself transformed into one of the world's most famous teen\nsupermodels.\"\r\n4618,4820,25190,\"A.N. Roquelaure, Anne Rice\",\"Beauty's Release (Sleeping Beauty, #3)\",https://images.gr-assets.com/books/1167595462l/25190.jpg,3.71,22424,\"fiction, romance\",\"From Anne Rice, author of Beauty's Kingdom, the third book in the erotic\nSleeping Beauty series Before E.L. James' Fifty Shades of Grey and Sylvia\nDay's Bared to You,, there was Anne Rice’s provocative take on the timeless\nfairy tale “Sleeping Beauty. “ In the final volume of Anne Rice's\ndeliciously tantalizing erotic trilogy, Beauty's adventures on the dark\nside of sexuality make her the bound captive of an Eastern Sultan and a\nprisoner in the exotic confines of the harem. As this voluptuous adult\nfairy tale moves toward conclusion, all Beauty's encounters with the myriad\nvariations of sexual fantasy are presented in a sensuous, rich prose that\nintensifies this exquisite rendition of Love's secret world, and makes the\nBeauty series and incomparable study of erotica. In it, Anne Rice, writing\nas A.N. Roquelaure, makes the forbidden side of passion a doorway into the\nhidden regions of the psyche and the heart.\"\r\n4619,4821,3389671,Beth Fantaskey,Jessica's Guide to Dating on the Dark Side,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389334437l/3389671.jpg,3.85,32763,\"romance, paranormal\",\"Seventeen-year-old Jessica, adopted and raised in Pennsylvania, learns that\nshe is descended from a royal line of Romanian vampires and that she is\nbetrothed to a vampire prince, who poses as a foreign exchange student\nwhile courting her.\"\r\n4620,4822,26596,E.E. Cummings,E.E. Cummings: Complete Poems 1904-1962,https://images.gr-assets.com/books/1355093052l/26596.jpg,4.35,18662,\"poetry, classics\",E.E. Cummings: Complete Poems 1904-1962E.E. Cummings\r\n4621,4824,20663702,Caitlin Doughty,Smoke Gets in Your Eyes: And Other Lessons from the Crematory,https://images.gr-assets.com/books/1416181987l/20663702.jpg,4.04,10979,\"nonfiction, memoir\",\"Morbid and illuminating (Entertainment Weekly) a young mortician goes\nbehind the scenes of her curious profession.\"\"\"\r\n4622,4825,7096123,Daniel Silva,The Rembrandt Affair,https://images.gr-assets.com/books/1360176576l/7096123.jpg,4.26,18957,\"fiction, thriller\",The Rembrandt AffairDaniel Silva\r\n4623,4826,15730101,H.P. Lovecraft,The Call of Cthulhu,https://images.gr-assets.com/books/1377787655l/15730101.jpg,4.05,17199,\"horror, classics\",The Call of CthulhuH.P. Lovecraft\r\n4624,4827,373915,\"Joe Hill, Christopher Golden\",20th Century Ghosts,https://images.gr-assets.com/books/1388224829l/373915.jpg,3.95,21987,\"horror, fiction\",\"20th Century GhostsJoe Hill, Christopher Golden\"\r\n4625,4828,6819,David Mitchell,Ghostwritten,https://images.gr-assets.com/books/1320415093l/6819.jpg,4.06,17900,\"fiction, fantasy\",\"The lives of nine total strangers from nine different countries become\nintertwined in a strange series of circumstances.\"\r\n4626,4829,21219083,Simon Wood,The One That Got Away,https://images.gr-assets.com/books/1421800005l/21219083.jpg,3.77,17367,\"thriller, mystery\",\"Graduate students Zoë and Holli only mean to blow off some steam on their\nroad trip to Las Vegas. But something goes terribly wrong on their way\nhome, and the last time Zoë sees her, Holli is in the clutches of a\nsadistic killer. Zoë flees with her life, changed forever. A year later and\nstill tortured with guilt, Zoë latches on to a police investigation where\nthe crime eerily resembles her abduction. Along with a zealous detective,\nshe retraces the steps of that fateful night in the desert, hoping that her\nmemory will return and help them find justice for Holli. Her\nabductor—labeled the “Tally Man” by a fascinated media—lies in wait for\nZoë. For him, she is not a survivor but simply the one that got away. With\nan unforgettable heroine, a chillingly disturbed psychopath, and a story\nthat moves at breakneck speed,The One That Got Away is thriller writer\nSimon Wood at his finest.\"\r\n4627,4830,8709528,Richelle Mead,The Ruby Circle,https://images.gr-assets.com/books/1409815340l/8709528.jpg,4.22,29260,\"fantasy, paranormal\",\"The epic conclusion to Richelle Mead's bestselling Bloodlines series is now\nin paperback.... Sydney Sage is an Alchemist, one of a group of humans who\ndabble in magic and serve to bridge the worlds of humans and vampires. They\nprotect vampire secrets--and human lives. Their forbidden romance exposed,\nSydney and Adrian find themselves facing the wrath of both the Alchemists\nand the Moroi in this electrifying conclusion to Richelle Mead's\nbestselling Bloodlines series. When the life of someone they both love is\nput on the line, Sydney risks everything to hunt down a deadly former\nnemesis. Meanwhile, she and Adrian become enmeshed in a puzzle that could\nhold the key to a shocking secret about spirit magic, a secret that could\nshake the entire Moroi world and alter their lives forever. Don't miss\ntheir unforgettable final chapter... They will be tested, but LOVE WILL\nCONQUER ALL.\"\r\n4628,4831,5983694,Grace Lin,Where the Mountain Meets the Moon,https://images.gr-assets.com/books/1344265026l/5983694.jpg,4.24,24371,\"fantasy, fiction\",\"A Newbery Honor WinnerA New York Times Bestseller This stunning fantasy\ninspired by Chinese folklore is a companion novel to Starry River of the\nSky and the New York Times bestselling and National Book Award finalist\nWhen the Sea Turned to Silver In the valley of Fruitless mountain, a young\ngirl named Minli lives in a ramshackle hut with her parents. In the\nevenings, her father regales her with old folktales of the Jade Dragon and\nthe Old Man on the Moon, who knows the answers to all of life's questions.\nInspired by these stories, Minli sets off on an extraordinary journey to\nfind the Old Man on the Moon to ask him how she can change her family's\nfortune. She encounters an assorted cast of characters and magical\ncreatures along the way, including a dragon who accompanies her on her\nquest for the ultimate answer. Grace Lin, author of the beloved Year of the\nDog and Year of the Rat returns with a wondrous story of adventure, faith,\nand friendship. A fantasy crossed with Chinese folklore, Where the Mountain\nMeets the Moon is a timeless story reminiscent of The Wizard of Oz and\nKelly Barnhill's The Girl Who Drank the Moon. Her beautiful illustrations,\nprinted in full-color, accompany the text throughout. Once again, she has\ncreated a charming, engaging book for young readers.\"\r\n4629,4832,125190,Arthur Ransome,Swallows and Amazons,https://images.gr-assets.com/books/1277148503l/125190.jpg,3.98,21716,\"fiction, classics\",\"Originally published: London; New York: Jonathan Cape, 1930.\"\r\n4630,4833,9442157,Olivia Cunning,Rock Hard,https://images.gr-assets.com/books/1295759548l/9442157.jpg,4.11,35676,\"romance, contemporary\",Rock HardOlivia Cunning\r\n4631,4834,20525628,Caitlin Moran,How to Build a Girl,https://images.gr-assets.com/books/1410131752l/20525628.jpg,3.69,16981,\"fiction, contemporary\",\"Soon to be a motion picture! The New York Times bestselling author hailed\nas “the UK’s answer to Tina Fey, Chelsea Handler, and Lena Dunham all\nrolled into one” (Marie Claire) makes her fiction debut with a hilarious\nyet deeply moving coming of age novel. What do you do in your teenage years\nwhen you realize what your parents taught you wasn’t enough? You must go\nout and find books and poetry and pop songs and bad heroes—and build\nyourself. It’s 1990. Johanna Morrigan, fourteen, has shamed herself so\nbadly on local TV that she decides that there’s no point in being Johanna\nanymore and reinvents herself as Dolly Wilde—fast-talking, hard-drinking\nGothic hero and full-time Lady Sex Adventurer. She will save her poverty-\nstricken Bohemian family by becoming a writer—like Jo in Little Women, or\nthe Bröntes—but without the dying young bit. By sixteen, she’s smoking\ncigarettes, getting drunk and working for a music paper. She’s writing\npornographic letters to rock-stars, having all the kinds of sex with all\nkinds of men, and eviscerating bands in reviews of 600 words or less. But\nwhat happens when Johanna realizes she’s built Dolly with a fatal flaw? Is\na box full of records, a wall full of posters, and a head full of\npaperbacks, enough to build a girl after all? Imagine The Bell Jar written\nby Rizzo from Grease. How to Build a Girl is a funny, poignant, and\nheartbreakingly evocative story of self-discovery and invention, as only\nCaitlin Moran could tell it.\"\r\n4632,4835,1407874,Andrea Hirata,Sang Pemimpi,https://images.gr-assets.com/books/1489733383l/1407874.jpg,4.09,12998,\"fiction, romance\",\"Sang Pemimpi adalah sebuah lantunan kisah kehidupan yang memesona dan akan\nmembuat Anda percaya akan tenaga cinta, percaya pada kekuatan mimpi dan\npengorbanan, lebih dari itu, akan membuat Anda percaya kepada Tuhan. Andrea\nakan membawa Anda berkelana menerobos sudut-sudut pemikiran di mana Anda\nakan menemukan pandangan yang berbeda tentang nasib, tantangan\nintelektualitas, dan kegembiraan yang meluap-luap, sekaligus kesedihan yang\nmengharu biru. Tampak komikal pada awalnya, selayaknya kenakalan remaja\nbiasa, tapi kemudian tanpa Anda sadari, kisah dan karakter-karakter dalam\nbuku ini lambat laun menguasai Anda. Karena potret-potret kecil yang\nmenawan akan menghentakkan Anda pada rasa humor yang halus namun memiliki\nefek filosofis yang meresonansi. Karena arti perjuangan hidup dalam\nkemiskinan yang membelit dan cita-cita yang gagah berani dalam kisah dua\norang tokoh utama buku ini: Arai dan Ikal akan menuntun Anda dengan semacam\nkeanggunan dan daya tarik agar Anda dapat melihat ke dalam diri sendiri\ndengan penuh pengharapan, agar Anda menolak semua keputusasaan dan\nketakberdayaan Anda sendiri. “Kita tak kan pernah mendahului nasib!” teriak\nArai. “Kita akan sekolah ke Prancis, menjelajahi Eropa sampai ke Afrika!\nApa pun yang terjadi!” [Bentang, Novel, Inspirasi, Motivasi, Indonesia]\"\r\n4633,4836,28116,A.J. Jacobs,The Know-It-All: One Man's Humble Quest to Become the Smartest Person in the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442931614l/28116._SY475_.jpg,3.77,22226,\"memoir, biography\",\"Chronicles the efforts of an NPR contributor to read the \"\"Encyclopedia\nBritannica\"\" from A to Z, sharing the humorous mishaps that occurred as a\nresult of the endeavor, from changed family relationships to his efforts to\njoin Mensa.\"\r\n4634,4838,126807,Chris Bohjalian,The Double Bind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348690366l/126807.jpg,3.62,22067,\"fiction, mystery\",\"Working at a homeless shelter, Laurel Estabrook encounters Bobbie Crocker,\na man with a history of mental illness and a box of secret photos, but when\nBobbie dies suddenly, Laurel embarks on an obsessive search for the truth\nbehind the photos.\"\r\n4635,4840,23553419,S.K. Tremayne,The Ice Twins,https://images.gr-assets.com/books/1415872674l/23553419.jpg,3.68,16718,\"thriller, mystery\",The Ice TwinsS.K. Tremayne\r\n4636,4841,17899696,J.A. Redmerski,The Edge of Always,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922856l/17899696.jpg,4.02,17532,\"romance, contemporary\",\"New York Times bestselling author J. A. Redmerski brings us the\nbreathtaking sequel to her novel The Edge of Never. When everything falls\napart, love remains . . . THE EDGE OF ALWAYS Camryn Bennett has never been\nhappier. Five months after meeting on a Greyhound bus, she and her soul\nmate Andrew Parrish are engaged-and a wedding isn't the only special event\nin their future. Nervous but excited, Camryn can't wait to begin the rest\nof her life with Andrew, a man she knows in her heart will love her always.\nThey have so much to look forward to-until tragedy blindsides them. Andrew\ndoesn't understand how this could happen to them. He's trying to move on,\nand thought Camryn was doing the same. But when Andrew discovers Camryn is\nsecretly harboring a mountain of pain and attempting to numb it in damaging\nways, there is nothing he won't do to bring her back to life. Determined to\nprove that their love can survive anything, Andrew decides to take Camryn\non a new journey filled with hope and passion. If only he can convince her\nto come along for the ride... (95,000 words) New Adult Romance\"\r\n4637,4842,2873,Tracy Chevalier,The Virgin Blue,https://images.gr-assets.com/books/1395581883l/2873.jpg,3.65,23484,\"fiction, art\",The Virgin BlueTracy Chevalier\r\n4638,4843,15797397,Michael Moss,Salt Sugar Fat: How the Food Giants Hooked Us ,https://images.gr-assets.com/books/1361919312l/15797397.jpg,3.98,18542,\"nonfiction, science\",\"Traces the rise of the processed food industry and how addictive salt,\nsugar, and fat have enabled its dominance in the past half century,\nrevealing deliberate corporate practices behind current trends in obesity,\ndiabetes, and other health challenges.\"\r\n4639,4844,225038,\"Edward Eager, N.M. Bodecker\",Half Magic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503640983l/225038._SX318_.jpg,3.94,28580,\"fantasy, fiction\",\"Faced with a dull summer in the city, Jane, Mark, Katharine, and Martha\nsuddenly find themselves involved in a series of extraordinary adventures\nafter Jane discovers an ordinary-looking coin that seems to grant wishes.\"\r\n4640,4845,7090785,\"Steve Hockensmith, Jane Austen, Patrick Arrasmith\",\"Dawn of the Dreadfuls (Pride and Prejudice and Zombies, #0.5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441329374l/7090785._SY475_.jpg,3.47,20207,\"horror, fiction\",\"In a prequel to the best-selling Pride and Prejudice and Zombies, Elizabeth\nBennet evolves from a simple young teenager into a savage slayer of the\nundead, as she trains with nunchucks and katana swords and experiences a\ntragic first romance. Original. 200,000 first printing. $100,000 ad/promo.\"\r\n4641,4846,7180727,Lisa Gardner,Live To Tell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440316621l/7180727._SY475_.jpg,4.18,21984,\"mystery, thriller\",\"Investigating the murder of an entire family that initially appears to be a\nsenseless act of violence, Sergeant Detective D. D. Warren uncovers\ndisturbingly personal ties to the case that push her to the edges of her\nsanity. By the best-selling author of The Neighbor. Reprint.\"\r\n4642,4847,825081,Kevin Henkes,Lilly's Purple Plastic Purse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438200059l/825081._SX318_.jpg,4.2,24247,\"fiction, fantasy\",\"Lilly loves everything about school, especially her cool teacher, Mr.\nSlinger. But when Lilly brings her purple plastic purse and its treasures\nto school and can't wait until sharing time, Mr. Slinger confiscates her\nprized possessions. Lilly's fury leads to revenge and then to remorse and\nshe sets out to make amends. Lilly, the star of Chester's Way and Julius,\nthe Baby of the World, is back. And this time she has her name in the title\n- something she's wanted all along. If you thought Lilly was funny before,\nyou are in for a treat. So hurry up and start reading. Lilly can't wait for\nyou to find out more about her.\"\r\n4643,4848,368916,Helene Hanff,\"84, Charing Cross Road\",https://images.gr-assets.com/books/1287338794l/368916.jpg,4.19,26899,\"nonfiction, memoir\",\"A journal depicting the relationship between a sassy New York writer,\nHelene Hanff and the people of a prim, stodgily English bookshop.\"\r\n4644,4850,14572,\"Thich Nhat Hanh, Arnold Kotler, Dalai Lama XIV\",Peace Is Every Step: The Path of Mindfulness in Everyday Life,https://images.gr-assets.com/books/1320544155l/14572.jpg,4.34,19152,\"spirituality, philosophy\",\"Teaches the Zen practice of mindfulness, the act of keeping one's\nconsciousness alive to one's experiences, and offers methods for continuing\nthe quest for spiritual fulfillment amid daily modern life\"\r\n4645,4851,6686671,Kyousuke Motomi,電撃デイジー 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547428676l/6686671.jpg,4.3,20880,\"manga, comics\",電撃デイジー 1Kyousuke Motomi\r\n4646,4852,29868610,Anna Kendrick,Scrappy Little Nobody,https://images.gr-assets.com/books/1469410391l/29868610.jpg,3.91,28719,\"memoir, nonfiction\",Scrappy Little NobodyAnna Kendrick\r\n4647,4854,7307795,Kate Atkinson,\"Started Early, Took My Dog\",https://images.gr-assets.com/books/1273446011l/7307795.jpg,3.89,21662,\"mystery, fiction\",\"Started Early, Took My DogKate Atkinson\"\r\n4648,4855,107032,\"Jim Starlin, Jim Aparo, Mike DeCarlo\",Batman: A Death in the Family,https://images.gr-assets.com/books/1327940363l/107032.jpg,4.05,19765,\"fiction, crime\",\"The fate of the second Robin, a.k.a. Jason Todd, is determined in Ethopia\nwhere Jason travels to find his biological mother, Sheila Haywood.\"\r\n4649,4856,16085517,Colum McCann,TransAtlantic,https://images.gr-assets.com/books/1367929787l/16085517.jpg,3.81,18065,\"fiction, history\",TransAtlanticColum McCann\r\n4650,4857,6871616,Jeaniene Frost,Eternal Kiss of Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187170l/6871616.jpg,4.21,31967,\"paranormal, romance\",\"An immortal war has been brewing in the darkness . . . And now one woman\nhas stumbled into the shadows. Chicago private investigator Kira Graceling\nshould have just kept on walking. But her sense of duty refused to let her\nignore the moans of pain coming from inside a warehouse just before dawn.\nSuddenly she finds herself in a world she's only imagined in her worst\nnightmares. At the center is Mencheres, a breathtaking Master vampire who\nthought he'd seen it all. Then Kira appears—this fearless, beautiful . . .\nhuman who braved death to rescue him. Though he burns for her, keeping Kira\nin his world means risking her life. Yet sending her away is unthinkable.\nBut with danger closing in, Mencheres must choose either the woman he\ncraves, or embracing the darkest magic to defeat an enemy bent on his\neternal destruction.\"\r\n4651,4858,129117,Lisa Lutz,The Spellman Files,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347521714l/129117.jpg,3.88,23788,\"mystery, fiction\",\"Izzy Spellman launches her career as a private investigator while working\nfor the firm of her outlandishly dysfunctional family.\"\r\n4652,4859,32626,Clive Barker,Books of Blood: Volumes 1-3,https://images.gr-assets.com/books/1306747123l/32626.jpg,4.16,20228,\"horror, fiction\",\"A landmark collector's edition of short stories by an immensely popular\nhorror writer brings back the terrifying tales with which he first gained\nacclaim. Reprint.\"\r\n4653,4860,294046,James Rollins,The Judas Strain,https://images.gr-assets.com/books/1367267369l/294046.jpg,4.15,20976,\"thriller, fiction\",\"From the depths of the Indian Ocean, a horrific plague has arisen to\ndevastate humankind. But it is merely a harbinger of the doom that is to\nfollow. Aboard a cruise liner transformed into a makeshift hospital, Dr.\nLisa Cummings and Monk Kokkalis, operati\"\r\n4654,4861,33333,Donald Miller,Searching for God Knows What,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429836720l/33333.jpg,3.92,19383,\"christian, religion\",\"New York Times best-selling author Donald Miller explores the origin and\nmeaning of redemption in this fully revised and redesigned bestseller.\nHysterically funny, wryly provocative, and disquietingly insightful,\nSearching for God Knows What invites readers to examine their deep need for\nredemption, to feel it, know it, and live like it is true in their lives.\nMiller weaves phenomenal characters and true-to-life spectacles into his\nacclaimed memoir style to enrich, inspire, entertain, and ultimately\nchallenge readers to see life in a new way. He shows that one of the\ngreatest desires of every person is the desire for redemption, to have\nbrokenness repaired. Instead of the chaotic relationships, self-hatred,\nwreckless consumerism, and anxiety that overrun a life without redemption,\nMiller uncovers the beauty and power of the Gospel to fulfill one of our\ndeepest needs.\"\r\n4655,4862,30122,Shel Silverstein,The Missing Piece,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184341l/30122.jpg,4.27,21207,\"poetry, fiction\",\"It was missing a piece. And it was not happy. So it set off in search of\nits missing piece. And as it rolled it sang this song -Oh I'm lookin' for\nmy missin' piece I'm lookin' for my missin' piece Hi-dee-ho, here I go,\nLookin' for my missin' piece. What it finds on its search for the missing\npiece is simply and touchingly told in this fable that gently probes the\nnature of quest and fulfillment.\"\r\n4656,4863,56842,Robert   Harris,Fatherland,https://images.gr-assets.com/books/1261912137l/56842.jpg,3.96,18917,\"fiction, thriller\",FatherlandRobert   Harris\r\n4657,4864,7132363,Daniel Suarez,Freedom™,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442895538l/7132363._SY475_.jpg,4.27,12456,\"fiction, thriller\",Freedom™Daniel Suarez\r\n4658,4865,92508,Thornton Wilder,The Bridge of San Luis Rey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348937011l/92508.jpg,3.8,22003,\"fiction, classics\",\"This beautiful new edition features unpublished notes for the novel and\nother illuminating documentary material, all of which is included in a new\nAfterword by Tappan Wilder. \"\"On Friday noon, July the twentieth, 1714, the\nfinest bridge in all Peru broke and precipitated five travelers into the\ngulf below.\"\" With this celebrated sentence Thornton Wilder begins The\nBridge of San Luis Rey, one of the towering achievements in American\nfiction and a novel read throughout the world. By chance, a monk witnesses\nthe tragedy. Brother Juniper then embarks on a quest to prove that it was\ndivine intervention rather than chance that led to the deaths of those who\nperished in the tragedy. His search leads to his own death -- and to the\nauthor's timeless investigation into the nature of love and the meaning of\nthe human condition. This new edition of Wilder’s 1928 Pulitzer Prize\nwinning novel contains a new foreword by Russell Banks.\"\r\n4659,4866,1772910,Fyodor Dostoyevsky,Белые ночи,https://images.gr-assets.com/books/1450699039l/1772910.jpg,4.05,13405,\"classics, fiction\",Белые ночиFyodor Dostoyevsky\r\n4660,4867,5215879,Laurell K. Hamilton,Skin Trade,https://images.gr-assets.com/books/1310494564l/5215879.jpg,3.9,29261,\"paranormal, fantasy\",Skin TradeLaurell K. Hamilton\r\n4661,4868,481749,James E. Talmage,Jesus the Christ: A Study of the Messiah and His Mission according to Holy Scriptures both Ancient and Modern,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1202623375l/481749.jpg,4.63,17179,\"nonfiction, biography\",Jesus the Christ: A Study of the Messiah and His Mission according to Holy Scriptures both Ancient and ModernJames E. Talmage\r\n4662,4869,1693617,Don Ferguson,Disney's the Lion King (Disney Classic Series),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387751618l/1693617.jpg,4.49,19553,\"fiction, classics\",\"The story of Simba, the lion cub, who becomes the lion king.\"\r\n4663,4870,31168,\"Charlotte Brontë, Lucasta Miller, collaborative, Jessica Cox\",Shirley ,https://images.gr-assets.com/books/1422609409l/31168.jpg,3.71,22562,\"classics, fiction\",\"Shirley Charlotte Brontë, Lucasta Miller, collaborative, Jessica Cox\"\r\n4664,4871,114129,Nora Roberts,Born in Ice,https://images.gr-assets.com/books/1388252955l/114129.jpg,4.13,26219,\"romance, contemporary\",\"A sparkling entry in the New York Times bestselling Born In trilogy. The\nstory of modern-day Ireland's Concannon sisters continues with the tale of\nBrianna--whose cool beauty hides a heart of fiery passion.\"\r\n4665,4872,9569,Tom Robbins,Villa Incognito,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166031051l/9569.jpg,3.65,14206,\"fiction, contemporary\",\"American MIAs choose to remain missing after the end of the Vietnam War,\nwhile four generations of women share a unique link to a mysterious figure\nfrom Japanese folklore, in a provocative new tour de force from the author\nof Even Cowgirls Get the Blues and Fierce Invalids Home from Hot Climates.\nReprint.\"\r\n4666,4873,22237161,Paul Beatty,The Sellout,https://images.gr-assets.com/books/1403430899l/22237161.jpg,3.8,21733,\"fiction, contemporary\",The SelloutPaul Beatty\r\n4667,4874,21325,\"Bill Willingham, Mark Buckingham, Craig Hamilton, Steve Leialoha, P. Craig Russell\",\"Fables, Volume 4: March of the Wooden Soldiers\",https://images.gr-assets.com/books/1327870401l/21325.jpg,4.29,23624,\"comics, fantasy\",\"Follows the adventures of storybook and nursery rhyme characters who live\nside-by-side with humans.\"\r\n4668,4875,28077464,\"Lee Child, Dick Hill\",Night School,https://images.gr-assets.com/books/1478699350l/28077464.jpg,3.96,11181,\"thriller, mystery\",\"\"\"In the morning, they gave Reacher a medal. That night, they sent him back\nto school. With eleven straight #1 New York Times bestsellers and over 100\nmillion books sold, Jack Reacher is \"\"the strongest brand in publishing\"\"\n(Forbes Magazine). And Night School, with Reacher back in uniform, will be\nthe biggest Reacher adventure of them all\"\"--\"\r\n4669,4876,9578677,Tess Gerritsen,The Silent Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460440l/9578677.jpg,4.13,21444,\"mystery, crime\",\"Discovering primate hair at the scene of a grisly murder in Chinatown,\nBoston homicide detective Jane Rizzoli and medical examiner Maura Isles\ndiscover clues linked to the fable of the Monkey King. By the best-selling\nauthor of Ice Cold. Reprint. 475,000 first printing.\"\r\n4670,4877,11301,Dr. Seuss,Horton Hatches the Egg,https://images.gr-assets.com/books/1408927129l/11301.jpg,4.14,29676,\"fiction, classics\",Horton Hatches the EggDr. Seuss\r\n4671,4879,15827066,\"Jenna Miscavige Hill, Lisa Pulitzer\",Beyond Belief: My Secret Life Inside Scientology and My Harrowing Escape,https://images.gr-assets.com/books/1354001608l/15827066.jpg,3.72,12643,\"memoir, nonfiction\",\"Jenna Miscavige Hill was raised to obey. As the niece of the Church of\nScientology's leader David Miscavige, she grew up at the center of this\nhighly controversial and powerful organization. But at twenty-one Jenna\nmade a daring break from Scientology. Now she speaks out about her life,\nthe Church, and her dramatic escape, piercing the veil of secrecy that has\nlong shrouded this world. Jenna reveals unprecedented insider knowledge of\nthe religion, its obscure rituals, and its mysterious leader. From her\nprolonged separation from her parents as a child to her lack of personal\nfreedoms to the organization's emphasis on celebrity recruitment, Jenna\ngoes behind the scenes of Scientology's oppressive and alienating culture.\nYet it is only when her family approaches dissolution that she is finally\nable to see the psychological control that has ruled her life. Faced with a\nheartbreaking choice, she details how she made a courageous escape, but not\nbefore being put through the ultimate test of family, faith, and love. At\nonce captivating and disturbing, Beyond Belief is an eye-opening\nexploration of the limits of religion and the lengths to which one woman\nwent to break free.\"\r\n4672,4880,73945,\"Plato, James J. Helm\",Απολογία,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1212606317l/73945.jpg,4.15,18261,\"philosophy, classics\",\"ΑπολογίαPlato, James J. Helm\"\r\n4673,4881,102953,\"Garth Ennis, Steve Dillon, Penn Jillette\",Preacher: Proud Americans,https://images.gr-assets.com/books/1309915653l/102953.jpg,4.27,19451,\"fiction, horror\",\"Follows preacher Jesse Custer's journey across America in search of God,\nwho abandoned Heaven when Genesis, the product of an angel and a demon, was\nborn.\"\r\n4674,4882,12880428,Anne Rice,The Wolf Gift,https://images.gr-assets.com/books/1328214020l/12880428.jpg,3.52,19008,\"fantasy, horror\",\"A young reporter on assignment is attacked and bitten by an unknown beast\nin rural Northern California and begins a terrifying but seductive\ntransformation into a being with a dual nature, both man and wolf.\"\r\n4675,4883,867650,\"Diane Muldrow, J.P. Miller\",The Little Red Hen (Little Golden Book),https://images.gr-assets.com/books/1320489925l/867650.jpg,4.2,22932,\"fiction, fantasy\",\"The Little Red Hen (Little Golden Book)Diane Muldrow, J.P. Miller\"\r\n4676,4884,10875239,Sandra Brown,Lethal,https://images.gr-assets.com/books/1301590794l/10875239.jpg,4.04,20353,\"mystery, romance\",LethalSandra Brown\r\n4677,4885,3974,Dan Simmons,The Terror,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442713631l/3974._SY475_.jpg,4,21225,\"horror, fiction\",The TerrorDan Simmons\r\n4678,4886,773606,Ludwig Bemelmans,Madeline's Rescue,https://images.gr-assets.com/books/1355323337l/773606.jpg,4.24,24495,\"fiction, classics\",\"A hound rescues a schoolgirl from the Seine, becomes a beloved school pet,\nis chased away by the trustees, and returns with a surprise.\"\r\n4679,4887,6694937,\"John Heilemann, Mark Halperin\",\"Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442873339l/6694937._SY475_.jpg,4.1,16800,\"nonfiction, history\",\"Game Change: Obama and the Clintons, McCain and Palin, and the Race of a LifetimeJohn Heilemann, Mark Halperin\"\r\n4680,4888,659622,V.C. Andrews,Garden of Shadows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440173304l/659622._SY475_.jpg,3.88,23139,\"fiction, horror\",Garden of ShadowsV.C. Andrews\r\n4681,4889,10599805,Kim Harrison,A Perfect Blood,https://images.gr-assets.com/books/1312426322l/10599805.jpg,4.38,26455,\"fantasy, paranormal\",A Perfect BloodKim Harrison\r\n4682,4890,124524,\"Joni Eareckson Tada, Joe Musser\",Joni,https://images.gr-assets.com/books/1360187347l/124524.jpg,4.23,20191,\"biography, christian\",\"JoniJoni Eareckson Tada, Joe Musser\"\r\n4683,4891,93768,\"Margaret Weis, Tracy Hickman\",War of the Twins,https://images.gr-assets.com/books/1390667903l/93768.jpg,4.11,21559,\"fantasy, fiction\",\"Raistlin, the enigmatic but evil magic-user, gathers his powers to destroy\nthe Queen of Darkness, but his twin brother, Caramon, together with\nTasslehoff the Kender, braves overwhelming odds in a distant time dimension\nto stop him. Reprint.\"\r\n4684,4892,7856305,James Patterson,Cross Fire,https://images.gr-assets.com/books/1287719974l/7856305.jpg,4.04,20407,\"mystery, fiction\",\"As Detective Alex Cross contends with a D.C. sniper, FBI agent Siegel, and\nhis upcoming wedding to Bree, he receives a call from his deadliest\nadversary, Kyle Craig. The Mastermind is in D.C. and will not relent until\nhe has eliminated Cross and his family for good.\"\r\n4685,4893,148821,Ross King,Brunelleschi's Dome: How a Renaissance Genius Reinvented Architecture,https://images.gr-assets.com/books/1309288056l/148821.jpg,3.84,17931,\"history, art\",\"Describes how a fifteenth-century goldsmith and clockmaker, Filippo\nBrunelleschi, came up with a unique design for the dome to crown Florence's\nmagnificent new cathedral, Santa Maria del Fiore, in a dramatic study set\nagainst the turbulent backdrop of Renaissance Italy.\"\r\n4686,4894,582533,Shakti Gawain,Creative Visualization: Use the Power of Your Imagination to Create What You Want in Your Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385056910l/582533.jpg,4.13,17811,\"spirituality, psychology\",\"Explains how to use mental imagery and affirmations to produce positive\nchange, offering meditation suggestions and exercises designed to\nstrengthen self-esteem, improve health, and promote relaxation. 50,000\nfirst printing. Reprint.\"\r\n4687,4895,40329,Janet Evanovich,Metro Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269204l/40329.jpg,3.6,27115,\"mystery, romance\",\"Alexandra (Barney) Barnaby roars onto the Miami Beach scene in hot pursuit\nof her missing baby brother, \"\"Wild\"\" Bill. Leave it to the maverick of the\nfamily to get Barney involved with high-speed car chases, a search for\nsunken treasure, and Sam Hooker, a NASCAR driver who’s good at revving a\nwoman's engine. Engaged in a deadly race, Bill has \"\"borrowed\"\" Hooker's\nsixty-five-foot Hatteras and sailed off into the sunset...just when Hooker\nhas plans for the boat. Hooker figures he'll attach himself to Barney and\nmaybe run into scumbag Bill. And better yet, maybe he'll get lucky in love\nwith Bill's sweetie pie sister. The pedal will have to go to metal if\nBarney and Hooker want to be the first to cross the finish line, save Bill,\nHooker's boat...and maybe the world.\"\r\n4688,4897,9565045,Darynda Jones,Second Grave on the Left,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442767958l/9565045._SX318_.jpg,4.29,30926,\"paranormal, fantasy\",\"Awakened in the middle of the night by a friend who has been texted by a\nmissing woman, Charley discovers clues linking the disappearance to the\nmurder of a woman two weeks earlier, a situation that is complicated by the\nhandsome son of Satan's efforts to protect Charley from demons. Reprint.\"\r\n4689,4898,33609,\"Anya Seton, Philippa Gregory\",Katherine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436406825l/33609._SY475_.jpg,4.18,22577,\"fiction, romance\",\"KatherineAnya Seton, Philippa Gregory\"\r\n4690,4899,828387,Marina Lewycka,A Short History of Tractors in Ukrainian,https://images.gr-assets.com/books/1327935785l/828387.jpg,3.37,18204,\"fiction, contemporary\",\"Putting aside a lifetime of rivalry when they learn that their recently\nwidowed father is planning to remarry a gold-digging woman, sisters Vera\nand Nadezhda find themselves outmaneuvered by their father's scheming\nfiancée, a situation that is compromised by a hurricane, family secrets,\nand their father's obsession with tractor history. Reprint.\"\r\n4691,4901,125925,Kelley Armstrong,Industrial Magic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425933325l/125925.jpg,4.12,27521,\"paranormal, fantasy\",\"Paige Winterbourne matches wits with an otherworldly killer preying on the\nteenage offspring of the underworld's most influential Cabals, including\nthe Cortez Cabal, whose own rebellious scion, Lucas, is Paige's boyfriend.\"\r\n4692,4902,74256,\"René Goscinny, Jean-Jacques Sempé\",Le Petit Nicolas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348132484l/74256.jpg,4.13,24796,\"fiction, classics\",\"Le Petit NicolasRené Goscinny, Jean-Jacques Sempé\"\r\n4693,4903,18867685,A.G. Riddle,The Atlantis Plague,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394822312l/18867685.jpg,3.88,7905,\"fiction, thriller\",\"\"\"A pandemic 70,000 years in the making...will change humanity...forever\"\"--\nPage [4] of cover.\"\r\n4694,4904,42512,\"Harold G. Moore, Joseph L. Galloway\",We Were Soldiers Once... and Young: Ia Drang - the Battle That Changed the War in Vietnam,https://images.gr-assets.com/books/1328912889l/42512.jpg,4.29,18688,\"history, nonfiction\",\"Chronicles one of the most brutal and crucial confrontations between\nAmericans and the Viet Cong, when 450 U.S. soldiers were dropped by\nhelicopter into the Ia Drang Valley and were immediately surrounded by 2000\nNorth Vetnamese soldiers. Reprint.\"\r\n4695,4905,92367,Ken Follett,Whiteout,https://images.gr-assets.com/books/1309209422l/92367.jpg,3.54,18791,\"fiction, thriller\",\"A missing canister containing a deadly virus forms the center of a storm\nthat traps Stanley Owenford, director of a medical research firm, and a\nviolent trio of thugs in a remote house during a Christmas Eve blizzard.\nReprint.\"\r\n4696,4906,568236,Barbara W. Tuchman,A Distant Mirror: The Calamitous 14th Century,https://images.gr-assets.com/books/1403200553l/568236.jpg,4.11,21776,\"history, nonfiction\",\"The prize-winning historian traces the major currents of the fourteenth\ncentury, revealing the century's great historical rhythms and events and\nthe texture of daily life at all levels of European society\"\r\n4697,4908,900,Neil Strauss,The Game,https://images.gr-assets.com/books/1410129471l/900.jpg,3.73,16698,\"psychology, nonfiction\",\"Recounts the adventures of an everyday man who transforms himself from a\nshy, awkward writer into the quick-witted, smooth-talking Style, a\ncharacter irresistible to women. But, just when life is better than he\ncould have ever dreamed, he falls head over heels for a woman who can beat\nhim at his own game.\"\r\n4698,4909,64864,Sue Grafton,\"\"\"N\"\" is for Noose\",https://images.gr-assets.com/books/1356443226l/64864.jpg,3.97,24658,\"mystery, fiction\",\"\"\"N\"\" is for NooseSue Grafton\"\r\n4699,4910,8476248,Julia Quinn,Just Like Heaven,https://images.gr-assets.com/books/1327270567l/8476248.jpg,3.93,14300,\"romance, fiction\",Just Like HeavenJulia Quinn\r\n4700,4911,6443349,\"Rick Riordan, Tk\",Percy Jackson and the Olympians,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328927l/6443349.jpg,4.57,19555,\"fantasy, fiction\",\"Percy Jackson and the OlympiansRick Riordan, Tk\"\r\n4701,4912,11720382,Lisa Gardner,Catch Me,https://images.gr-assets.com/books/1325628802l/11720382.jpg,4.17,21486,\"mystery, thriller\",Catch MeLisa Gardner\r\n4702,4913,233044,Debbie Macomber,The Shop on Blossom Street,https://images.gr-assets.com/books/1459531418l/233044.jpg,4.04,22861,\"romance, fiction\",\"When Lydia Hoffman, a cancer survivor and owner of A Good Yarn, starts a\nknitting class for her patrons, she forms a special friendship and bond\nwith three extraordinary women--Jacqueline, Carol, and Alix.\"\r\n4703,4914,239102,R.A. Salvatore,Starless Night (Legacy of the Drow #2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388604857l/239102.jpg,4.12,18305,\"fantasy, fiction\",\"In the sequel to The Legacy, Drizzt Do'Urden, the hero of the \"\"Dark Elf\"\"\ntrilogy returns to his birthplace, the subterranean city of Menzoberranzan,\nto free himself of those who seek his death. 150,000 first printing.\n$100,000 ad/promo.\"\r\n4704,4915,93788,Nelson DeMille,Night Fall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288352l/93788.jpg,4.07,18761,\"fiction, thriller\",\"A fictionalized account of the investigation and theories surrounding the\ncrash of TWA Flight 800 over Long Island in 1996.\"\r\n4705,4916,8967,Darren Shan,\"Trials of Death (Cirque du Freak, #5) \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201687l/8967.jpg,4.25,22157,\"fantasy, horror\",\"The trials: seventeen ways to die unless the luck of the vampire is with\nyou. Darren Shan must pass five fearsome Trials to prove himself to the\nvampires clan - or face the stakes of the Hall of Death. But Vampire\nMountain holds hidden threats. Sinister, potent forces are gathering in the\ndarkness. In this nightmarish world of bloodshed and betrayal, death may be\na blessing...\"\r\n4706,4917,7144426,\"Eric Van Lustbader, Robert Ludlum\",Robert Ludlum's The Bourne Objective,https://images.gr-assets.com/books/1344269869l/7144426.jpg,4.07,16294,\"fiction, thriller\",\"Robert Ludlum's The Bourne ObjectiveEric Van Lustbader, Robert Ludlum\"\r\n4707,4918,27252717,Elle Kennedy,The Score,https://images.gr-assets.com/books/1493326480l/27252717.jpg,4.27,32709,\"romance, sports\",The ScoreElle Kennedy\r\n4708,4919,289644,Karen Kingsbury,Even Now,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348700325l/289644.jpg,4.26,18120,\"christian, fiction\",\"Sometimes hope for the future is found in the ashes of yesterday.Lauren\nGibbs is a successful international war correspondent who gave up on\nhappily-ever-after years ago when it was ripped away from her. Since then,\nshe's never looked back. So why can't she put to rest the one question that\nhaunts her: Why is life so empty?Shane Galanter is a man ready to put down\nroots after years of searching. But is he making the right choice? Or is\nthere a woman somewhere who even now remembers-as does he-those long ago\ndays . . . and a love that has not faded with time?Emily Anderson is a\ncollege freshman who was raised by her grandparents and is about to take\nher first internship as a journalist. But before she can move ahead, she\ndiscovers a love story whose tragic ending came with her birth. As a\nresult, she is compelled to look back and search out the mother she's never\nmet.A man and woman separated by lies and long years who have never\nforgotten each other. A young woman seeking answers to her heart's deep\nquestions.\"\r\n4709,4920,3121162,Anita Shreve,Testimony,https://images.gr-assets.com/books/1328975356l/3121162.jpg,3.54,21977,\"fiction, contemporary\",TestimonyAnita Shreve\r\n4710,4921,11544421,Ilona Andrews,Magic Rises,https://images.gr-assets.com/books/1359571572l/11544421.jpg,4.49,29556,\"fantasy, paranormal\",Magic RisesIlona Andrews\r\n4711,4922,9970042,Ben Aaronovitch,Whispers Under Ground,https://images.gr-assets.com/books/1341006340l/9970042.jpg,4.16,15946,\"fantasy, mystery\",\"When the son of a wealthy, politically powerful family is found dead,\nLondon constable and sorcerer's apprentice Peter Grant investigates this\ncase, which is linked to a rogue magician known as the Faceless Man--and\nwhich takes him deep within the deadliest subway system in the world.\nOriginal. 50,000 first printing.\"\r\n4712,4923,18453095,\"James Patterson, Maxine Paetro\",Unlucky 13,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920738l/18453095.jpg,3.94,16005,\"mystery, fiction\",\"Unlucky 13James Patterson, Maxine Paetro\"\r\n4713,4924,99610,Sidney Sheldon,The Best Laid Plans,https://images.gr-assets.com/books/1353374848l/99610.jpg,3.66,17173,\"fiction, thriller\",\"He wanted power. Oliver Russell is fated to rise to the pinnacle of power,\nthe office of President of the United States. She wanted revenge. Leslie\nStewart is his betrayed fiancee, a woman dedicated to a single purpose-the\ndownfall of Oliver Russell. Amassing her own media empire, marshaling all\nher forces against him, she stands poised to destroy Russell on the eve of\nhis most dazzling triumph. From Sidney Sheldon, the unchallenged master of\nbestselling fiction, comes a story of blazing ambitions and thwarted love\nthat enthralls and surprises with every page...\"\r\n4714,4925,2855034,Terry Pratchett,Nation,https://images.gr-assets.com/books/1426659151l/2855034.jpg,4.05,22466,\"fantasy, fiction\",NationTerry Pratchett\r\n4715,4926,114162,Lisa Kleypas,Secrets of a Summer Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298443922l/114162.jpg,4.05,33026,\"romance, fiction\",\"Four young ladies enter London society with one common goal: they must use\ntheir feminine wit and wiles to find a husband.So a daring husband-hunting\nscheme is born. Annabelle Peyton, determined to save her family from\ndisaster, decides to use her beauty and wit to tempt a suitable nobleman\ninto making an offer of marriage. But Annabelle's most intriguing—and\npersistent—admirer, wealthy, powerful Simon Hunt, has made it clear that\nwhile he will introduce her to irresistible pleasure he will not offer\nmarriage. Annabelle is determined to resist his unthinkable proposition . .\n. but it is impossible in the face of such skillful seduction. Her friends,\nlooking to help, conspire to entice a more suitable gentleman to offer for\nAnnabelle, for only then will she be safe from Simon—and her own longings.\nBut on one summer night, Annabelle succumbs to Simon's passionate embrace\nand tempting kisses . . . and she discovers that love is the most dangerous\ngame of all.\"\r\n4716,4927,456028,Ted Dekker,Red,https://images.gr-assets.com/books/1380858319l/456028.jpg,4.3,19896,\"fantasy, fiction\",\"Attempting to rescue two worlds from collapse, Thomas Hunter races to stop\na virus unleashed by terrorists, as he also commands an army of primitive\nwarriors fighting for their survival.\"\r\n4717,4928,10680329,Louise Penny,A Trick of the Light,https://images.gr-assets.com/books/1327900478l/10680329.jpg,4.29,20932,\"mystery, fiction\",A Trick of the LightLouise Penny\r\n4718,4929,17455585,Jennifer L. Armentrout,White Hot Kiss,https://images.gr-assets.com/books/1377784515l/17455585.jpg,4.28,27848,\"paranormal, fantasy\",\"Possessing half-demon, half-gargoyle powers that render her deadly to\nanyone with a soul, Layla works as a protector of humanity and struggles to\nfit in before meeting an alluring demon who tempts her to engage in a\ntraitorous act.\"\r\n4719,4930,1717890,\"Jun Mochizuki, 望月淳\",Pandora Hearts 1,https://images.gr-assets.com/books/1187333570l/1717890.jpg,4.2,19222,\"fantasy, comics\",\"Pandora Hearts 1Jun Mochizuki, 望月淳\"\r\n4720,4931,32769,H.P. Lovecraft,At the Mountains of Madness,https://images.gr-assets.com/books/1226634493l/32769.jpg,4.25,19586,\"horror, fiction\",\"Authoritative editions of great classics of world literature feature\nintroductions by acclaimed writers, meticulous translations of foreign\nliterature, commentary by distinguished writers and critics, biographical\nnotes, and a comprehensive Reading Group Guide bound into each volume.\"\r\n4721,4932,6340016,Mary Karr,Lit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439526383l/6340016._SY475_.jpg,3.88,17964,\"memoir, nonfiction\",\"Lit is about getting drunk and getting sober; becoming a mother by letting\ngo of a mother; learning to write by learning to live. Written with Karr's\nrelentless honesty, unflinching self-scrutiny, and irreverent, lacerating\nhumor, it is a truly electrifying story of how to grow up—as only Mary Karr\ncan tell it.\"\r\n4722,4933,465904,Anne McCaffrey,\"Dragonsdawn (Pern: Dragonriders of Pern, #6)\",https://images.gr-assets.com/books/1304015693l/465904.jpg,4.17,25824,\"fiction, science\",\"Deadly spores threaten the human colony of Pern unless the colonists, with\nhelp from geneticist Kitti Ping, can develop fire-breathing dragons to\ncombat the menace\"\r\n4723,4934,6596547,Kathryn Erskine,Mockingbird,https://images.gr-assets.com/books/1301271068l/6596547.jpg,4.18,21138,\"fiction, contemporary\",\"Ten-year-old Caitlin, who has Asperger's Syndrome, struggles to understand\nemotions, show empathy, and make friends at school, while at home she seeks\nclosure by working on a project with her father.\"\r\n4724,4935,13489517,أحمد حلمي,28 حرف,https://images.gr-assets.com/books/1333608288l/13489517.jpg,3.1,15708,\"ebooks, philosophy\",28 حرفأحمد حلمي\r\n4725,4936,107195,Joshua Harris,I Kissed Dating Goodbye: New Attitude Toward Romance and Relationship,https://images.gr-assets.com/books/1320506446l/107195.jpg,3.61,17121,\"christian, religion\",I Kissed Dating Goodbye: New Attitude Toward Romance and RelationshipJoshua Harris\r\n4726,4937,903,Zilpha Keatley Snyder,The Egypt Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347840597l/903.jpg,3.81,26657,\"fiction, mystery\",\"This classic 1968 Newbery Honor Book, The Egypt Game, is available in a\nbrand new paperback edition!\"\r\n4727,4938,277397,Kaye Gibbons,Ellen Foster,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924673l/277397.jpg,3.75,23327,\"fiction, contemporary\",Ellen FosterKaye Gibbons\r\n4728,4939,22904,\"Franz Kafka, Nahum N. Glatzer, John Updike, Willa Muir, Edwin Muir, Tania Stern, James Stern, Ernst Kaiser, Eithne Wilkins\",Sämtliche Erzählungen,https://images.gr-assets.com/books/1223588017l/22904.jpg,4.34,18314,\"fiction, classics\",\"Portrays a dreamlike world in which parables are even more obscure than the\nnovels.\"\r\n4729,4940,1059680,\"Isa Chandra Moskowitz, Terry Hope Romero\",Veganomicon: The Ultimate Vegan Cookbook,https://images.gr-assets.com/books/1328751476l/1059680.jpg,3.98,19359,\"cookbooks, nonfiction\",\"A user-friendly volume by the author of Vegan with a Vengeance and Vegan\nCupcakes Take Over the World contains 250 recipes that include a variety of\ngluten-free and tofu-free options for numerous occasions.\"\r\n4730,4941,260025,\"Margaret Weis, Tracy Hickman\",\"Test of the Twins (Dragonlance Legends, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240769l/260025.jpg,4.16,21047,\"fantasy, fiction\",\"\"\"Caramon must travel back and forth in time in order to save the world from\nhis twin brother, Raistlin who has become the Master of the Tower of High\nSorcery.\"\" --\"\r\n4731,4942,48467,Flannery O'Connor,Wise Blood,https://images.gr-assets.com/books/1389629799l/48467.jpg,3.88,18053,\"fiction, classics\",\"The passengers on the train to Taulkinham show mixed reactions when Haze\nquestions their belief in Jesus.\"\r\n4732,4943,220826,Sabahattin Ali,Kürk Mantolu Madonna,https://images.gr-assets.com/books/1362477552l/220826.jpg,4.49,19806,\"fiction, classics\",Kürk Mantolu MadonnaSabahattin Ali\r\n4733,4944,187124,Terry Brooks,Running with the Demon,https://images.gr-assets.com/books/1451687782l/187124.jpg,3.95,21209,\"fantasy, fiction\",\"The sequel to \"\"Running with the Demon.\"\" John Ross inherited the daunting\nlegacy of the first Knight of the Word eight centuries ago: to combat the\ndemonic evil of the Void. His faith shattered by unspeakable violence, Ross\ntries to build a normal life. When the demons of the Void trail him to\nSeattle, his only hope is a college student who wields an extraordinary\nmagic all her own.\"\r\n4734,4945,223838,Charles M. Sheldon,In His Steps,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172854677l/223838.jpg,4.15,18254,\"christian, classics\",\"This affordable edition of the classic Christian novel that has inspired\ngenerations of Christians to walk as Jesus would is now available in\nattractive new packaging.\"\r\n4735,4946,10790516,Kresley Cole,Lothaire,https://images.gr-assets.com/books/1366322959l/10790516.jpg,4.43,30304,\"paranormal, romance\",LothaireKresley Cole\r\n4736,4947,515905,Mo Willems,Knuffle Bunny Too: A Case of Mistaken Identity,https://images.gr-assets.com/books/1327894604l/515905.jpg,4.28,23396,fiction,\"When she arrives at school, excited to show off her one-of-a-kind Knuffle\nBunny, Trixie is quite upset when someone else has the exact same bunny,\nresulting in hilarious chaos. 175,000 first printing.\"\r\n4737,4948,2260637,David Baldacci,The Whole Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410210693l/2260637.jpg,4,19171,\"fiction, thriller\",\"While the head of the world's largest defense contractor conspires to gain\neven more riches by instigating a war, an intelligence agent reluctantly\ntravels to keep the world safe, and a journalist receives a mysterious\noffer to interview the sole survivor\"\r\n4738,4949,2659997,\"Elissa Wall, Lisa Pulitzer\",\"Stolen Innocence: My Story of Growing Up in a Polygamous Sect, Becoming a Teenage Bride, and Breaking Free of Warren Jeffs\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255629380l/2659997.jpg,3.89,19468,\"memoir, nonfiction\",\"Stolen Innocence: My Story of Growing Up in a Polygamous Sect, Becoming a Teenage Bride, and Breaking Free of Warren JeffsElissa Wall, Lisa Pulitzer\"\r\n4739,4950,11178225,Ruta Sepetys,Out of the Easy,https://images.gr-assets.com/books/1339784547l/11178225.jpg,4.05,25913,\"mystery, fiction\",Out of the EasyRuta Sepetys\r\n4740,4951,2182780,\"Ed Brubaker, Doug Mahnke, Patrick Zircher, Aaron Sowd, Steve Bird\",Batman: The Man Who Laughs,https://images.gr-assets.com/books/1486038991l/2182780.jpg,4.09,16933,\"comics, fiction\",\"When a mysterious homicidal maniac is murdering prominent citizens of\nGotham City, leaving a ghastly grin on the victims' faces, Batman soon\ntracks down the killer, in a volume written by the winner of the 2007\nEisner Award for Best Writer. Original.\"\r\n4741,4952,273511,Erin Hunter,Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430055546l/273511.jpg,4.26,24650,\"fantasy, fiction\",MidnightErin Hunter\r\n4742,4953,18176747,Ben Horowitz,The Hard Thing about Hard Things: Building A Business When There Are No Easy Answers,https://images.gr-assets.com/books/1386609333l/18176747.jpg,4.2,19492,\"business, nonfiction\",\"A lot of people talk about how great it is to start a business, but only\nBen Horowitz is brutally honest about how hard it is to run one. In The\nHard Thing About Hard Things, Ben Horowitz, cofounder of Andreessen\nHorowitz and one of Silicon Valley's most respected and experienced\nentrepreneurs, draws on his own story of founding, running, selling,\nbuying, managing, and investing in technology companies to offer essential\nadvice and practical wisdom for navigating the toughest problems business\nschools don't cover. His blog has garnered a devoted following of millions\nof readers who have come to rely on him to help them run their businesses.\nA lifelong rap fan, Horowitz amplifies business lessons with lyrics from\nhis favorite songs and tells it straight about everything from firing\nfriends to poaching competitors, from cultivating and sustaining a CEO\nmentality to knowing the right time to cash in. His advice is grounded in\nanecdotes from his own hard-earned rise—from cofounding the early cloud\nservice provider Loudcloud to building the phenomenally successful\nAndreessen Horowitz venture capital firm, both with fellow tech superstar\nMarc Andreessen (inventor of Mosaic, the Internet's first popular Web\nbrowser). This is no polished victory lap; he analyzes issues with no easy\nanswers through his trials, including demoting (or firing) a loyal friend;\nwhether you should incorporate titles and promotions, and how to handle\nthem; if it's OK to hire people from your friend's company; how to manage\nyour own psychology, while the whole company is relying on you; what to do\nwhen smart people are bad employees; why Andreessen Horowitz prefers\nfounder CEOs, and how to become one; whether you should sell your company,\nand how to do it. Filled with Horowitz's trademark humor and straight talk,\nand drawing from his personal and often humbling experiences, The Hard\nThing About Hard Things is invaluable for veteran entrepreneurs as well as\nthose aspiring to their own new ventures.\"\r\n4743,4955,228990,Stephen R. Donaldson,The Illearth War,https://images.gr-assets.com/books/1387037078l/228990.jpg,3.99,20039,\"fantasy, fiction\",\"Returning to the Land, after forty years of its time, Thomas Covenant finds\nthe powers of evil, under Lord Foul the Despiser, fully unleashed and\nassumes the responsibility of finding a way to defeat Lord Foul.\"\r\n4744,4956,2063563,Russell Brand,My Booky Wook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266507951l/2063563.jpg,3.42,16553,\"biography, memoir\",\"Russell Brand learned early on to make a joke of fear and failure. From a\ntroubled childhood in industrial Essex, England, to his descent into\naddictions to alcohol, drugs, and sex in the seamy underbelly of London,\nBrand has seen his share of both and miraculously lived to tell the tale.\nIn My Booky Wook he leads readers on a rollicking journey through his\ndisastrous school career, his infamous antics on MTV, and his multifarious\nsexual adventures. But this irreverent memoir is a story not simply of\nstruggle but also of redemption, a testament to the difficulty of\ndiscovering what you want from life and the remarkable power of a bloody-\nminded determination to get it. My Booky Wook is a giddy trip through the\nbrilliant mind of one of Britain's most valuable exports.\"\r\n4745,4957,18527947,Nora Roberts,Shadow Spell,https://images.gr-assets.com/books/1458263039l/18527947.jpg,4,17155,\"romance, fantasy\",\"\"\"With the legends and lore of Ireland running through his blood, falconer\nConnor O'Dwyer is proud to call County Mayo home. It's where his sister,\nBranna, lives and works, where his cousin, Iona, has found true love, and\nwhere his childhood friends form a circle that can't be broken... A circle\nthat is about to be stretched out of shape--by a long-awaited kiss. Meara\nQuinn is Branna's best friend, a sister in all but blood. Her and Connor's\npaths cross almost daily, as Connor takes tourists on hawk walksand Meara\nguides them on horseback across the lush countryside. She has the eyes of a\ngypsy and the body of a goddess...things Connor has always taken for\ngranted--until his brush with death propels them into a quick, hot tangle.\nPlenty of women have found their way to Connor's bed, but none to his heart\nuntil now. Frustratingly, Meara is okay with just the heat, afraid to lose\nherself--and their friendship--to something more. But soon, Connor will see\nthe full force and fury of what runs in his blood. And he will need his\nfamily and friends around him, when his past rolls in like the fog,\nthreatening an end to all he loves..\"\"--\"\r\n4746,4958,10909804,Simon Garfield,Just My Type: A Book About Fonts,https://images.gr-assets.com/books/1327886002l/10909804.jpg,3.79,22046,\"nonfiction, art\",\"A North American edition of an internationally best-selling work by the\naward-winning author of The Cheese Monkeys documents the history of\ntypefaces from the early days of Gutenberg to the modern applications of\ndigital fonts, tracing the impact of font usage in business and pop culture\nwhile explaining what favorite fonts reveal about personality. Reprint.\"\r\n4747,4959,3492020,J.D. Robb,Promises in Death,https://images.gr-assets.com/books/1417318467l/3492020.jpg,4.4,24115,\"mystery, crime\",\"Determined to capture whomever is responsible for murdering an experienced\ncolleague who recently transferred to New York, Lieutenant Eve Dallas\ninvestigates the victim's life in her former precinct and uncovers\nunsettling links to her own painful past. 650,000 first printing.\"\r\n4748,4960,23534,Charles Bukowski,\"Love Is a Dog from Hell: Poems, 1974-1977\",https://images.gr-assets.com/books/1377260823l/23534.jpg,4.16,19471,\"poetry, fiction\",\"Love Is a Dog from Hell: Poems, 1974-1977Charles Bukowski\"\r\n4749,4961,19161852,N.K. Jemisin,The Fifth Season,https://images.gr-assets.com/books/1386803701l/19161852.jpg,4.31,20185,\"fantasy, fiction\",\"\"\"Intricate and extraordinary.\"\" - New York Times on The Fifth Season (A New\nYork Times Notable Book of 2015) WINNER OF THE HUGO AWARD FOR BEST NOVEL\n2016 This is the way the world ends...for the last time. A season of\nendings has begun. It starts with the great red rift across the heart of\nthe world's sole continent, spewing ash that blots out the sun. It starts\nwith death, with a murdered son and a missing daughter. It starts with\nbetrayal, and long dormant wounds rising up to fester. This is the\nStillness, a land long familiar with catastrophe, where the power of the\nearth is wielded as a weapon. And where there is no mercy. For more from N.\nK. Jemisin, check out: The Inheritance Trilogy The Hundred Thousand\nKingdoms The Broken Kingdoms The Kingdom of Gods The Inheritance Trilogy\n(omnibus edition) Shades in Shadow: An Inheritance Triptych (e-only short\nfiction) The Awakened Kingdom (e-only novella) Dreamblood Duology The\nKilling Moon The Shadowed Sun The Broken EarthThe Fifth SeasonThe Obelisk\nGate\"\r\n4750,4963,67931,John Katzenbach,The Analyst,https://images.gr-assets.com/books/1280112638l/67931.jpg,4.12,11685,\"thriller, mystery\",\"Dr. Frederick Starks, a New York psychoanalyst on the brink of a much-\nneeded vacation, is plunged into a deadly game of revenge where a\nmysterious tormentor waits in the darkness to destroy him.\"\r\n4751,4964,2113260,Jasper Fforde,Shades of Grey,https://images.gr-assets.com/books/1327563734l/2113260.jpg,4.14,22788,\"fantasy, fiction\",Shades of GreyJasper Fforde\r\n4752,4965,33569,S.E. Hinton,\"That Was Then, This Is Now\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439661031l/33569._SY475_.jpg,3.89,22946,\"fiction, classics\",HINTON/THAT WAS THEN THIS IS NOW\r\n4753,4966,6164358,\"Trenton Lee Stewart, Del Roy\",The Mysterious Benedict Society and the Prisoner's Dilemma,https://images.gr-assets.com/books/1320473034l/6164358.jpg,4.28,23448,\"mystery, fiction\",\"The Mysterious Benedict Society and the Prisoner's DilemmaTrenton Lee Stewart, Del Roy\"\r\n4754,4967,10149142,Kevin    Wilson,The Family Fang,https://images.gr-assets.com/books/1444101399l/10149142.jpg,3.6,18214,\"fiction, contemporary\",\"Mr. and Mrs. Fang called it art. Their children called it mischief.\nPerformance artists Caleb and Camille Fang dedicated themselves to making\ngreat art. But when an artist’s work lies in subverting normality, it can\nbe difficult to raise well-adjusted children. Just ask Buster and Annie\nFang. For as long as they can remember, they starred (unwillingly) in their\nparents’ madcap pieces. But now that they are grown up, the chaos of their\nchildhood has made it difficult to cope with life outside the fishbowl of\ntheir parents’ strange world. When the lives they’ve built come crashing\ndown, brother and sister have nowhere to go but home, where they discover\nthat Caleb and Camille are planning one last performance–their magnum\nopus–whether the kids agree to participate or not. Soon, ambition breeds\nconflict, bringing the Fangs to face the difficult decision about what’s\nultimately more important: their family or their art. Filled with Kevin\nWilson’s endless creativity, vibrant prose, sharp humor, and keen sense of\nthe complex performances that unfold in the relationships of people who\nlove one another, The Family Fang is a masterfully executed tale that is as\nbizarre as it is touching.\"\r\n4755,4968,10907,Chris Gardner,The Pursuit of Happyness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428219118l/10907.jpg,4.17,18492,\"biography, nonfiction\",\"The astounding yet true rags-to-riches saga of a homeless father who raised\nand cared for his son on the mean streets of San Francisco and went on to\nbecome a crown prince of Wall Street At the age of twenty, Milwaukee native\nChris Gardner, just out of the Navy, arrived in San Francisco to pursue a\npromising career in medicine. Considered a prodigy in scientific research,\nhe surprised everyone and himself by setting his sights on the competitive\nworld of high finance. Yet no sooner had he landed an entry-level position\nat a prestigious firm than Gardner found himself caught in a web of\nincredibly challenging circumstances that left him as part of the city's\nworking homeless and with a toddler son. Motivated by the promise he made\nto himself as a fatherless child to never abandon his own children, the two\nspent almost a year moving among shelters, \"\"HO-tels,\"\" soup lines, and even\nsleeping in the public restroom of a subway station. Never giving in to\ndespair, Gardner made an astonishing transformation from being part of the\ncity's invisible poor to being a powerful player in its financial district.\nMore than a memoir of Gardner's financial success, this is the story of a\nman who breaks his own family's cycle of men abandoning their children.\nMythic, triumphant, and unstintingly honest, The Pursuit of Happyness\nconjures heroes like Horatio Alger and Antwone Fisher, and appeals to the\nvery essence of the American Dream.\"\r\n4756,4969,7147831,Karl Ove Knausgård,Min kamp 1,https://images.gr-assets.com/books/1262695721l/7147831.jpg,4.08,7886,\"biography, contemporary\",Min kamp 1Karl Ove Knausgård\r\n4757,4970,8517008,Alan Bradley,A Red Herring Without Mustard,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266441l/8517008.jpg,4.07,26160,\"mystery, fiction\",\"When a Gypsy woman is wrongly accused of kidnapping a local child,\nprecocious young Flavia de Luce draws on her encyclopedic knowledge of\npoisons and Gypsy lore to discern what really happened while investigating\nthe mystery of her own mother's fate.\"\r\n4758,4971,18728,Doris Kearns Goodwin,No Ordinary Time: Franklin and Eleanor Roosevelt: The Home Front in World War II,https://images.gr-assets.com/books/1423756471l/18728.jpg,4.2,26004,\"history, biography\",\"Winner of the Pulitzer Prize for History, No Ordinary Time is a monumental\nwork, a brilliantly conceived chronicle of one of the most vibrant and\nrevolutionary periods in the history of the United States. With an\nextraordinary collection of details, Goodwin masterfully weaves together a\nstriking number of story lines—Eleanor and Franklin’s marriage and\nremarkable partnership, Eleanor’s life as First Lady, and FDR’s White House\nand its impact on America as well as on a world at war. Goodwin effectively\nmelds these details and stories into an unforgettable and intimate portrait\nof Eleanor and Franklin Roosevelt and of the time during which a new,\nmodern America was born.\"\r\n4759,4972,414298,Richard Russo,Straight Man,https://images.gr-assets.com/books/1430659357l/414298.jpg,4.02,19358,\"fiction, contemporary\",\"The author of Nobody's Fool chronicles a singularly eventful week in the\nlife of William Henry Devereaux, Jr., a once-promising novelist and now the\nmiddle-aged chairman of a university English department in hilarious\ndisarray. Reprint. 60,000 first printing. Tour.\"\r\n4760,4973,10739,Walker Percy,The Moviegoer,https://images.gr-assets.com/books/1437668043l/10739.jpg,3.7,18655,\"fiction, classics\",\"Kate's desperate struggle to maintain her sanity forces her cousin Binx to\nrelinquish his dreamworld\"\r\n4761,4974,87346,\"Anton Chekhov, Tom    Murphy\",Вишнëвый сад,https://images.gr-assets.com/books/1464433142l/87346.jpg,3.68,18914,\"classics, fiction\",\"Вишнëвый садAnton Chekhov, Tom    Murphy\"\r\n4762,4975,4835838,Wendy Mass,11 Birthdays,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389496084l/4835838.jpg,4.18,22339,\"fantasy, fiction\",\"Amanda and Leo, best friends with the same birthday, had a falling out on\ntheir tenth birthday and have not spoken since, but peculiar things begin\nto happen as the day of their eleventh birthday repeats itself again and\nagain.\"\r\n4763,4976,7329,\"J.R.R. Tolkien, Christopher Tolkien\",Unfinished Tales of Númenor and Middle-Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165611104l/7329._SY475_.jpg,3.93,18402,\"fantasy, fiction\",\"Unfinished Tales of Númenor and Middle-EarthJ.R.R. Tolkien, Christopher Tolkien\"\r\n4764,4977,9461872,Ann Brashares,Sisterhood Everlasting,https://images.gr-assets.com/books/1327878529l/9461872.jpg,3.9,25849,\"fiction, contemporary\",\"Having lost touch with each other over the years, Carmen, Lena, and Bridget\nare surprised when they receive plane tickets to travel to Australia for a\nreunion with Tibby, but after tragedy strikes their lives are changed\nforever. Reprint.\"\r\n4765,4978,349090,Grant Naylor,Infinity Welcomes Careful Drivers,https://images.gr-assets.com/books/1403947775l/349090.jpg,4.03,19773,\"fiction, fantasy\",\"Awakening from a drunken spree in a London pub to find himself on one of\nSaturn's moons, Lister joins the Space Corps and boards the Red Dwarf,\ndetermined to return to Earth. Reprint.\"\r\n4766,4979,33459,Christopher Moore,Coyote Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428328692l/33459.jpg,3.75,19901,\"fiction, fantasy\",Coyote BlueChristopher Moore\r\n4767,4980,2501455,\"أحلام مستغانمي, Ahlam Mosteghanemi\",فوضى الحواس,https://images.gr-assets.com/books/1291848735l/2501455.jpg,3.83,16337,\"fiction, romance\",\"Arabic novel about life among a group of thieves by the Nobel Prize winning\nEgyptian author.\"\r\n4768,4981,87665,G.K. Chesterton,Orthodoxy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348323220l/87665.jpg,4.23,18303,\"religion, christian\",OrthodoxyG.K. Chesterton\r\n4769,4982,426625,\"Jane O'Connor, Robin Preiss Glasser\",Fancy Nancy,https://images.gr-assets.com/books/1376473636l/426625.jpg,4.15,21619,fiction,\"Meet Nancy, who believes that more is ALWAYS better when it comes to being\nfancy. From the top of her tiara down to her sparkly studded shoes, Nancy\nis determined to teach her family a thing or two about being fancy. How\nNancy transforms her parents and little sister for one enchanted evening\nmakes for a story that is funny and warm -- with or without the frills.\"\r\n4770,4983,3692,Graham Greene,The Heart of the Matter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385263150l/3692.jpg,3.98,19149,\"classics, fiction\",\"An assistant police commissioner in a West African coastal town lets\npassion overrule his honor.\"\r\n4771,4984,21535019,Jeff Kinney,The Long Haul ,https://images.gr-assets.com/books/1408500992l/21535019.jpg,4.33,21822,\"fiction, comics\",\"Greg Heffley and his family hit the road in author-illustrator Jeff\nKinney's latest installment in the phenomenal bestselling Diary of a Wimpy\nKid series.\"\r\n4772,4986,2029176,\"James Patterson, Howard Roughan\",Sail,https://images.gr-assets.com/books/1344264435l/2029176.jpg,3.8,20932,\"mystery, fiction\",\"A mother and her three children struggle to survive on the most shocking\nvacation of their lives. James Patterson, America's #1 bestselling thriller\nwriter, presents his most suspenseful, explosive tale ever. Only an hour\nout of port, the Dunne family's summer getaway to paradise is already\nturning into the trip from hell. The three children are miserable, and not\nshy about showing it. Katherine Dunne had hoped this vacation would bring\nback the togetherness they'd lost when her husband died four years earlier.\nMaybe if her new husband had joined them it would all have been okay.\nSuddenly, a disaster hits-and it's perfect. Faced with this real threat,\nthe Dunnes rediscover the meaning of family. But this catastrophe is just a\ntiny taste of the true danger that lurks ahead: somewhere out there,\nsomeone wants to make sure that the Dunne family never leaves paradise\nalive.\"\r\n4773,4987,23301545,\"Neil Gaiman, Chris Riddell\",The Sleeper and the Spindle,https://images.gr-assets.com/books/1412343723l/23301545.jpg,3.9,20889,\"fantasy, fiction\",\"The Sleeper and the SpindleNeil Gaiman, Chris Riddell\"\r\n4774,4989,18750,\"A.N. Roquelaure, Anne Rice\",Beauty's Punishment,https://images.gr-assets.com/books/1426861477l/18750.jpg,3.62,20867,\"fiction, romance\",\"Beauty is sold into erotic slavery and forced to obey the orders of the\nCaptain and Mistress Lockley\"\r\n4775,4990,285011,Dee Henderson,The Negotiator,https://images.gr-assets.com/books/1406508359l/285011.jpg,4.32,20278,\"christian, fiction\",\"FBI agent Dave Richman falls in love with Kate O'Malley, a hostage\nnegotiator, during a crisis and must deal with the fact that she is not a\nChristian and that, because of her job, she is often endangered.\"\r\n4776,4991,13041934,Ravinder Singh,Can Love Happen Twice?,https://images.gr-assets.com/books/1321016822l/13041934.jpg,3.31,15668,\"romance, fiction\",\"Failing to show up after being invited with his friends to talk about his\nfamous love story on a romance-themed radio chat show, Ravin becomes the\ntopic of an emotionally turbulent discussion drawn on his incomplete second\nbook, which reveals astonishing new developments. By the author of I Too\nHad a Love Story. Reprint.\"\r\n4777,4992,3124249,\"Gregory Maguire, Douglas Smith\",A Lion Among Men,https://images.gr-assets.com/books/1370992593l/3124249.jpg,3.29,21794,\"fantasy, fiction\",\"\"\"Hardly more than a kitten . . . I had thought to call it Prrr, but it\nshivers more often than it purrs, so I call it Brrr instead.\"\" —From Wicked\nSince Wicked was first published in 1995, millions of readers have\ndiscovered Gregory Maguire's fantastically encyclopedic Oz, a world filled\nwith characters both familiar and new, darkly conceived and daringly\nreimagined. In the much-anticipated third volume of the Wicked Years, we\nreturn to Oz, seen now through the eyes of the Cowardly Lion—the once tiny\ncub defended by Elphaba in Wicked. While civil war looms in Oz, a tetchy\noracle named Yackle prepares for death. Before her final hour, an enigmatic\nfigure known as Brrr—the Cowardly Lion—arrives searching for information\nabout Elphaba Thropp, the Wicked Witch of the West. As payment, Yackle, who\nhovered on the sidelines of Elphaba's life, demands some answers of her\nown. Brrr surrenders his story to the ailing maunt: Abandoned as a cub, his\nearliest memories are gluey hazes, and his path from infancy in the Great\nGillikin Forest is no Yellow Brick Road. Seeking to redress an early\nmistake, he trudges through a swamp of ghosts, becomes implicated in a\nmassacre of trolls, and falls in love with a forbidding Cat princess. In\nthe wake of laws that oppress talking Animals, he avoids a jail sentence by\nagreeing to serve as a lackey to the war-mongering Emperor of Oz. A Lion\nAmong Men chronicles a battle of wits hastened by the Emerald City's\napproaching armies. What does the Lion know of the whereabouts of the\nWitch's boy, Liir? What can Yackle reveal about the auguries of the Clock\nof the Time Dragon? And what of the Grimmerie, the magic book that vanished\nas quickly as Elphaba? Is destiny ever arbitrary? Can those tarnished by\ninfamy escape their sobriquets—cowardly, wicked, brainless, criminally\nearnest—to claim their own histories, to live honorably within their own\nskins before they're skinned alive? At once a portrait of a would-be\nsurvivor and a panoramic glimpse of a world gone shrill with war fever,\nGregory Maguire's new novel is written with the sympathy and power that\nhave made his books contemporary classics.\"\r\n4778,4993,43908,Raymond E. Feist,\"Shadow of a Dark Queen (The Serpentwar Saga, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212748l/43908.jpg,4.02,20847,\"fantasy, fiction\",\"A dread darkness is descending upon a great land called Midkemia—a powerful\nand malevolent race of monsters that has slipped through a hole in the\ndimensions. And two unlikely young heroes—a bastard heir denied his\nbirthright and an irrepressible scoundrel with a penchant for thievery—must\ntake up arms in the struggle to protect their besieged world...two friends\nchosen by Destiny to stand at the fore of the battle that is to come\nagainst the gargantuan reptile army of the terrible Emerald Queen.\"\r\n4779,4994,11466,Tobias Wolff,This Boy's Life: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181708l/11466.jpg,3.98,19981,\"memoir, nonfiction\",\"The author chronicles the tumultuous events of his early life, discussing\nhis parents' divorce, the nomadic wanderings with his mother that followed,\nand the strange and eventful process of growing up.\"\r\n4780,4995,3993839,Jonathan Maberry,Patient Zero,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439953244l/3993839._SY475_.jpg,3.98,19852,\"horror, thriller\",Patient ZeroJonathan Maberry\r\n4781,4996,545951,Willa Cather,Death Comes for the Archbishop,https://images.gr-assets.com/books/1436632846l/545951.jpg,3.88,21343,\"fiction, classics\",\"One afternoon in the autumn of 1851 a solitary horseman, followed by a\npack-mule, was pushing through an arid stretch of country somewhere in\ncentral New Mexico. He had lost his way, and was trying to get back to the\ntrail, with only his compass and his sense of direction for guides. The\ndifficulty was that the country in which he found himself was so\nfeatureless-or rather, that it was crowded with features, all exactly\nalike. As far as he could see, on every side, the landscape was heaped up\ninto monotonous red sand-hills, not much larger than haycocks, and very\nmuch the shape of haycocks. One could not have believed that in the number\nof square miles a man is able to sweep with the eye there could be so many\nuniform red hills. He had been riding among them since early morning, and\nthe look of the country had no more changed than if he had stood still. He\nmust have travelled through thirty miles of these conical red hills,\nwinding his way in the narrow cracks between them, and he had begun to\nthink that he would never see anything else. They were so exactly like one\nanother that he seemed to be wandering in some geometrical nightmare;\nflattened cones, they were, more the shape of Mexican ovens than haycocks-\nyes, exactly the shape of Mexican ovens, red as brick-dust, and naked of\nvegetation except for small juniper trees. And the junipers, too, were the\nshape of Mexican ovens. Every conical hill was spotted with smaller cones\nof juniper, a uniform yellowish green, as the hills were a uniform red. The\nhills thrust out of the ground so thickly that they seemed to be pushing\neach other, elbowing each other aside, tipping each other over.\"\r\n4782,4998,17312201,Rick Riordan,The Son of Sobek,https://images.gr-assets.com/books/1367948073l/17312201.jpg,4.26,21691,\"fantasy, fiction\",\"In this e-book short story by Rick Riordan, Carter Kane is investigating\nrumored sightings of a monster on Long Island when he runs into something\nelse: a mysterious boy named Percy Jackson. And their meeting isn't exactly\nfriendly. . . . Includes a sneak peek chapter from HOUSE OF HADES, Book\nFour in the Heroes of Olympus series.\"\r\n4783,4999,52823,\"Molière, Martin Sorrell\",\"Le Tartuffe, ou L’Imposteur\",https://images.gr-assets.com/books/1319501006l/52823.jpg,3.66,21061,\"classics, fiction\",\"Condemned and banned for five years in Molière's day, Tartuffe is a satire\non religious hypocrisy. Tartuffe worms his way into Orgon's household,\nblinding the master of the house with his religious \"\"devotion,\"\" and almost\nsucceeds in his attempts to seduce his wife and disinherit his children\nbefore the final unmasking.\"\r\n4784,5000,4701550,Larissa Ione,Passion Unleashed,https://images.gr-assets.com/books/1344267582l/4701550.jpg,4.32,28493,\"paranormal, romance\",Passion UnleashedLarissa Ione\r\n4785,5001,1896346,Kazune Kawahara,高校デビュー 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348252906l/1896346.jpg,4.11,21210,\"manga, romance\",高校デビュー 1Kazune Kawahara\r\n4786,5002,10400407,أثير عبدالله النشمي,في ديسمبر تنتهي كل الأحلام,https://images.gr-assets.com/books/1304699101l/10400407.jpg,3.33,16479,\"romance, fiction\",\"أنا مكتئب!.. مكتئب جداً... وعادة لا تصيبني الكآبة أثناء كتابتي لأي عمل..\nأنا رجل لطالما أحب مرحلة الكتابة، رجل يستمتع بكل ما يصاحب تلك المرحلة\nالمرهقة من أرق وألم وتضارب في المشاعر، لكنني، وما أن يرى كتابي النور.. حتى\nأصاب باكتئاب ما بعد الكتابة، فأكره كتابي (الوليد) لدرجة أشعر معها بالرغبة\nفي أن أوئده وأتلف كل نسخه.. لكن حالة الكآبة بدأت مبكرة هذه المرة.. استبقت\nكآبتي نوفمبر، واستبقت أيضاً روايتي الجديدة.. ولا أدري إن كنت قادراً على أن\nأصمد حتى يناير القادم أو حتى إصدار الرواية\"\r\n4787,5003,386234,Mercer Mayer,Just for You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559953221l/386234._SX318_.jpg,4.25,22965,\"fiction, classics\",\"A little creature tries and tries to do something special for his mother\nbut something always seems to go wrong.\"\r\n4788,5004,294047,James Rollins,Amazonia,https://images.gr-assets.com/books/1440044334l/294047.jpg,4.11,20410,\"thriller, fiction\",\"The Rand scientific expedition entered the lush wilderness of the Amazon\nand never returned. Years later, one of its members has stumbled out of the\nworld’s most inhospitable rainforest—a former Special Forces soldier,\nscarred, mutilated, terrified, and mere hours from death, who went in with\none arm missing . . . and came out with both intact. Unable to comprehend\nthis inexplicable event, the government sends Nathan Rand into this\nimpenetrable secret world of undreamed-of perils to follow the trail of his\nvanished father . . . toward mysteries that must be solved at any cost. But\nthe nightmare that is awaiting Nate and his team of scientists and seasoned\nU.S. Rangers dwarfs any danger they anticipated . . . an ancient, unspoken\nterror—a power beyond human imagining—that can forever alter the world\nbeyond the dark, lethal confines of Amazonia.\"\r\n4789,5005,46674,David D. Burns, Feeling Good: The New Mood Therapy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440657672l/46674._SY475_.jpg,3.95,17065,\"nonfiction, psychology\",\"The good news is that anxiety, guilt, pessimism, procrastination, low self-\nesteem, and other \"\"black holes\"\" of depression can be cured without drugs.\nIn Feeling Good, eminent psychiatrist, David D. Burns, M.D., outlines the\nremarkable, scientifically proven techniques that will immediately lift\nyour spirits and help you develop a positive outlook on life. Now, in this\nupdated edition, Dr. Burns adds an All-New Consumer′s Guide To Anti-\ndepressant Drugs as well as a new introduction to help answer your\nquestions about the many options available for treating depression. -\nRecognise what causes your mood swings - Nip negative feelings in the bud -\nDeal with guilt - Handle hostility and criticism - Overcome addiction to\nlove and approval - Build self-esteem - Feel good everyday\"\r\n4790,5006,114184,Nora Roberts,Blue Smoke,https://images.gr-assets.com/books/1309286007l/114184.jpg,3.97,24366,\"mystery, fiction\",\"Reena Hale is an arson investigator who steps into an inferno of madness\nwhen a man begins to haunt her life with astring of horrifying crimes.\"\r\n4791,5007,6528,Patricia Cornwell,Predator,https://images.gr-assets.com/books/1310552145l/6528.jpg,3.67,21668,\"mystery, fiction\",PredatorPatricia Cornwell\r\n4792,5008,720298,Melody Beattie,Codependent No More: How to Stop Controlling Others and Start Caring for Yourself,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390621839l/720298.jpg,4.13,18340,\"nonfiction, psychology\",\"Discusses codependency and contains real-life examples, personal\nreflections, exercises, and self-tests designed to help people overcome\ntheir codependency.\"\r\n4793,5009,254308,\"Ivan Goncharov, Stephen Pearl, Galya Diment\",Обломов,https://images.gr-assets.com/books/1456384296l/254308.jpg,4,18458,\"classics, fiction\",\"First published 150 years ago, Ivan Goncharov's Oblomov is and undisputed\nclassic of Russian literature, the artistic stature and cultural\nsignificance of which have been compared to such master pieces as Leo\nTolstoy's Anna Karenina and Fyodor Dostoevsky's Brothers Karamazov. Until\nnow, no English-language edition has done justice to this astonishing,\nsidesplitting, and deeply poignant novel. Years in preparation, Stephan\nPearl's landmark translation, with its innovative lexicon, pitch-perfect\near for dialect and colloquial speech, and superb prose styling, allows\ntoday's reader to appreciate Oblomov at new heights of emotional, ironic,\nand comic satisfaction. Set in Petersburg, Russia, this is the story of\nIlya Ilyich Oblomov, an amiable, thirty-something underachiever, who lives\nin an apartment with his life-long with his life-long servant, Zakhar.\nOblomov rarely changes out of his dressing gown, spending his days drifting\nin and out of sleep, dreaming of his idyllic childhood on his ancestral\nestate, Oblomovka. His boyhood friend, Stoltz, motivated accomplished, and\nalways alert, often visits Oblomov. When Stoltz introduces him to the\nbeautiful and cultured Olga, Oblomov moves to the country to be near her.\nOlga is soon smitten with the lovable Oblomov but is determined to change\nhim into a man in action.\"\r\n4794,5010,198332,Clive Cussler,Inca Gold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172611303l/198332.jpg,3.96,20297,\"fiction, thriller\",\"Saving the lives of two American archaeologists who nearly drown in a\nsacrificial pool in the Andes Mountains, Dirk Pitt becomes unwittingly\ninvolved in a sinister crime organization that has discovered an ancient\ntreasure.\"\r\n4795,5011,18167006,Ruth Reichl,Delicious!,https://images.gr-assets.com/books/1404478598l/18167006.jpg,3.75,17657,\"fiction, romance\",Delicious!Ruth Reichl\r\n4796,5012,6496815,\"Po Bronson, Ashley Merryman\",NurtureShock: New Thinking About Children,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442285268l/6496815._SY475_.jpg,4.04,17310,\"nonfiction, psychology\",\"One of the most influential books about children ever published,\nNurtureShock offers a revolutionary new perspective on children that upends\na library's worth of conventional wisdom. With impeccable storytelling and\nrazor-sharp analysis, the authors demonstrate that many of modern society's\nstrategies for nurturing children are in fact backfiring--because key\ntwists in the science have been overlooked. Nothing like a parenting\nmanual, NurtureShock gets to the core of how we grow, learn and live.\nReleased in hardcover in September 2009, NurtureShock remained on the New\nYork Times best seller list for three months, and was one of Amazon's best\nselling books for 2009. The book has become a worldwide phenomenon with\neditions published around the world - in fifteen languages, to date. In\naddition to Bronson and Merryman's writings on praise -- first made famous\nin New York magazine -- there are nine more equally groundbreaking\nchapters. Among the topics covered: Why the most brutal person in a child's\nlife is often a sibling, and how a single aspect of their preschool-aged\nplay can determine their relationship as adults. When is it too soon - or\ntoo late - to teach a child about race? Children in diverse schools are\nless likely to have a cross-racial friendship, not more - so is school\ndiversity backfiring? Millions of families are fighting to get their kids\ninto private schools and advanced programs as early as possible. But\nschools are missing the best kids, 73% of the time - the new neuroscience\nexplains why. Why are kids - even those from the best of homes - still\naggressive and cruel? The answer is found in a rethinking of parental\nconflict, discipline, television's unexpected influence, and social\ndominance. Parents are desperate to jump-start infants' language skills.\nRecently, scientists have discovered a series of natural techniques that\nare astonishing in their efficacy - it's not baby videos, sign language, or\neven the richness of language exposure. It's nothing you've heard before.\"\r\n4797,5013,1849,Nelson DeMille,Wild Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442668457l/1849._SY475_.jpg,3.99,18529,\"fiction, mystery\",\"NEW YORK TIMES BESTSELLER \"\"Nelson DeMille is a true master.\"\" - Dan Brown,\n#1 bestselling author of The Da Vinci Code Welcome to the Custer Hill Club\n--an informal men's club set in a luxurious Adirondack hunting lodge whose\nmembers include some of America's most powerful business leaders, military\nmen, and government officials. Ostensibly, the club is a place to gather\nwith old friends, hunt, eat, drink, and talk off-the-record about war,\nlife, death, sex and politics. But one Fall weekend, the Executive Board of\nthe Custer Hill Club gathers to talk about the tragedy of 9/11 and what\nAmerica must do to retaliate. Their plan is finalized and set into motion.\nThat same weekend, a member of the Federal Anti-Terrorist Task Force is\nreported missing. His body is soon discovered in the woods near the Custer\nHill Club's game reserve. The death appears to be a hunting accident, and\nthat's how the local police first report it, but Detective John Corey has\nhis doubts. As he digs deeper, he begins to unravel a plot involving the\nCuster Hill Club, a top-secret plan known only by its code name: Wild Fire.\nRacing against the clock, Detective Corey and his wife, FBI agent Kate\nMayfield, find they are the only people in a position to stop the button\nfrom being pushed and chaos from being unleashed.\"\r\n4798,5014,154423,Mary Higgins Clark,Two Little Girls in Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348663827l/154423.jpg,3.85,20727,\"mystery, fiction\",\"Traumatized by the kidnappings of her twin three-year-old girls, only one\nof whom was recovered, a mother begins a desperate search when her returned\ndaughter claims that the other twin, believed dead, is still alive and in\nmortal danger. Reprint.\"\r\n4799,5015,589979,\"Raymond E. Feist, Janny Wurts\",Daughter of the Empire,https://images.gr-assets.com/books/1404668411l/589979.jpg,4.24,24055,\"fantasy, fiction\",\"Mara, a young, untested Ruling Lady of Kelewan, is called upon to lead her\npeople in a heroic stuggle for survival. But first she must rally an army\nof rebel warriors, form a pact with the alien cho-ja and marry the son of a\nhated enemy. Queen Mara of Acoma vows to avenge the deaths of her brother\nand father, even if it means killing her own husband.\"\r\n4800,5016,688191,Neal Shusterman,Everlost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1534705392l/688191._SX318_.jpg,3.94,24506,\"fantasy, paranormal\",\"When Nick and Allie are killed in a car crash, they end up in Everlost, or\nlimbo for lost souls, where although Nick is satisfied, Allie will stop at\nnothing--even skinjacking--to break free.\"\r\n4801,5017,8534799,Kresley Cole,Dreams of a Dark Warrior,https://images.gr-assets.com/books/1285724086l/8534799.jpg,4.39,28315,\"paranormal, romance\",Dreams of a Dark WarriorKresley Cole\r\n4802,5018,7824997,\"John Grisham, Richard Thomas\",\"Theodore Boone, Kid Lawyer\",https://images.gr-assets.com/books/1275094812l/7824997.jpg,3.72,19284,\"mystery, fiction\",\"Theodore Boone, Kid LawyerJohn Grisham, Richard Thomas\"\r\n4803,5019,34072,Chris Ware,Jimmy Corrigan: The Smartest Kid on Earth,https://images.gr-assets.com/books/1327962921l/34072.jpg,4.1,17128,\"comics, fiction\",\"A graphic novel chronicles four generations of the Corrigan men, from 1893\nto 1983.\"\r\n4804,5020,39980,Richard Peck,A Year Down Yonder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388238223l/39980.jpg,4.1,23310,\"fiction, classics\",\"During the recession of 1937, fifteen-year-old Mary Alice is sent to live\nwith her feisty, larger-than-life grandmother in rural Illinois and comes\nto a better understanding of this fearsome woman. A Newbery Medal Winner &\nALA Notable Book. Reprint.\"\r\n4805,5021,16163690,Kristen Ashley,Own the Wind,https://images.gr-assets.com/books/1358119230l/16163690.jpg,4.22,38673,\"romance, contemporary\",\"Too hot to handle . . . Tabitha Allen grew up in the thick of Chaos-the\nChaos Motorcycle Club, that is. Her father is Chaos' leader, and the club\nhas always had her back. But one rider was different from the start. When\nTabby was running wild, Shy Cage was there. When tragedy tore her life\napart, he helped her piece it back together. And now, Tabby's thinking\nabout much more than friendship . . . Tabby is everything Shy's ever\nwanted, but everything he thinks he can't have. She's beautiful, smart, and\nas his friend's daughter, untouchable. Shy never expected more than\nfriendship, so when Tabby indicates she wants more-much more-he feels like\nthe luckiest man alive. But even lucky men can crash and burn . . .\"\r\n4806,5022,4516,Carlos Ruiz Zafón,Marina,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165444662l/4516.jpg,3.99,18260,\"horror, fiction\",MarinaCarlos Ruiz Zafón\r\n4807,5024,15054,Jeanette Winterson,Written on the Body,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924844l/15054.jpg,4.08,18203,\"fiction, romance\",\"A combined love story and philosophical meditation on the body as a\nphysical phenomenon thrusts the reader into the life of a married woman and\nher erotic relationship with an unidentified lover who narrates the story\"\r\n4808,5025,7849341,Colleen Houck,Tiger's Voyage,https://images.gr-assets.com/books/1320459742l/7849341.jpg,4.35,24495,\"fantasy, romance\",\"After battling the villanous Lokesh, Kelsey and the Indian princes Ren and\nKishan return to India, where Kelsey learns that Ren has amnesia, and five\ncunning dragons try to keep the trio from breaking the curse that binds\nthem.\"\r\n4809,5026,605015,Dean Koontz,Dean Koontz's Frankenstein: Dead and Alive,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347873655l/605015.jpg,4.01,18310,\"horror, fiction\",\"Frankenstein's creation, now calling itself Deucalion, faces the final\nconfrontation with its creator, but first they must face an indestructible\nnightmare entity, as all of the mad scientist's creations return to destroy\nhim.\"\r\n4810,5027,4591,Matt Ridley,Genome: The Autobiography of a Species in 23 Chapters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439697027l/4591._SY475_.jpg,4.02,17684,\"science, nonfiction\",\"The genome's been mapped. But what does it mean? Arguably the most\nsignificant scientific discovery of the new century, the mapping of the\ntwenty-three pairs of chromosomes that make up the human genome raises\nalmost as many questions as it answers. Questions that will profoundly\nimpact the way we think about disease, about longevity, and about free\nwill. Questions that will affect the rest of your life. Genome offers\nextraordinary insight into the ramifications of this incredible\nbreakthrough. By picking one newly discovered gene from each pair of\nchromosomes and telling its story, Matt Ridley recounts the history of our\nspecies and its ancestors from the dawn of life to the brink of future\nmedicine. From Huntington's disease to cancer, from the applications of\ngene therapy to the horrors of eugenics, Matt Ridley probes the scientific,\nphilosophical, and moral issues arising as a result of the mapping of the\ngenome. It will help you understand what this scientific milestone means\nfor you, for your children, and for humankind.\"\r\n4811,5028,53580,Sandra Boynton,The Going-To-Bed Book,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,4.22,21078,\"fiction, poetry\",\"Getting ready for sleep is tons of fun in this special anniversary edition\nof a Sandra Boynton classic. The sun has set not long ago. Now everybody\ngoes below to take a bath in one big tub with soap all over—SCRUB SCRUB\nSCRUB! This classic bedtime story is just right for winding down the day as\na joyful, silly group of animals scrub scrub scrub in the tub, brush and\nbrush and brush their teeth, and finally rock and rock and rock to sleep.\nThis anniversary edition has an enlarged trim size and metallic ink on the\ncover, making this Boynton classic even more special.\"\r\n4812,5029,112675,Louise Rennison,Knocked out by my nunga-nungas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429196547l/112675.jpg,3.97,24077,\"fiction, romance\",\"Georgia Nicolson is now the girlfriend of the Sex God (aka Robbie), and\nthings are wonderful. Except her loony parents are dragging her off to Och\nAye land (aka Scotland), and the Sex God's band's chance at a record\ncontract has left her something of a \"\"pop widow.\"\" Then up rears temptation\nin the form of old flame Dave the Laugh. Is Georgia about to become a\nshameless vixen?\"\r\n4813,5030,27526,\"Tim LaHaye, Jerry B. Jenkins\",The Sacrilege: The Antichrist Takes the Throne,https://images.gr-assets.com/books/1406505722l/27526.jpg,4,19562,\"christian, fiction\",\"The Sacrilege: The Antichrist Takes the ThroneTim LaHaye, Jerry B. Jenkins\"\r\n4814,5031,18114068,Phil Klay,Redeployment,https://images.gr-assets.com/books/1417987993l/18114068.jpg,3.98,15597,\"fiction, contemporary\",RedeploymentPhil Klay\r\n4815,5032,6512140,Libba Bray,Going Bovine,https://images.gr-assets.com/books/1320391025l/6512140.jpg,3.65,26259,\"fantasy, fiction\",\"In an attempt to find a cure after being diagnosed with Creutzfeldt-Jakob\n(aka mad cow) disease, Cameron Smith, a disaffected sixteen-year-old boy,\nsets off on a road trip with a death-obsessed video gaming dwarf he meets\nin the hospital.\"\r\n4816,5033,25807,James M. Cain,The Postman Always Rings Twice ,https://images.gr-assets.com/books/1344265267l/25807.jpg,3.81,19416,\"fiction, classics\",\"The sultry young wife of a diner owner conspires with an aimless drifter to\nmurder her husband\"\r\n4817,5034,6555517,Carrie Ryan,The Dead-Tossed Waves ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442965460l/6555517._SY475_.jpg,3.91,26347,\"horror, fantasy\",\"Struggling for normalcy in a haunted town between the forest and ocean,\nGabry is unsettled by supernatural forces that threaten her mother, a\nsituation that is thrown into chaos by a religious cult and a shattering\nact of recklessness. By the author of The Forest of Hands and Teeth.\"\r\n4818,5035,9530,Robert Kurson,Shadow Divers: The True Adventure of Two Americans Who Risked Everything to Solve One of the Last Mysteries of World War II,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166028017l/9530.jpg,4.26,16917,\"nonfiction, history\",Shadow Divers: The True Adventure of Two Americans Who Risked Everything to Solve One of the Last Mysteries of World War IIRobert Kurson\r\n4819,5036,8293938,Clare Vanderpool,Moon Over Manifest,https://images.gr-assets.com/books/1320541883l/8293938.jpg,4.02,23298,\"fiction, mystery\",\"Twelve-year-old Abilene Tucker is the daughter of a drifter who, in the\nsummer of 1936, sends her to stay with an old friend in Manifest, Kansas,\nwhere he grew up, and where she hopes to find out some things about his\npast.\"\r\n4820,5037,77103,Amitav Ghosh,The Glass Palace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520866736l/77103._SY475_.jpg,3.94,16535,\"fiction, history\",\"Unable to forget the girl he befriended during the British invasion of 1885\nwhen soldiers forced the royal family of Burma into exile, Rajkumar is\nlifted on the tides of political and social chaos to create an empire in\nthe Burmese teak forests. By the author of In an Antique Land. Reader's\nGuide included. Reprint. 40,000 first printing.\"\r\n4821,5040,16279856,James Dashner,The Eye of Minds,https://images.gr-assets.com/books/1358659346l/16279856.jpg,3.85,22637,\"fantasy, fiction\",The Eye of MindsJames Dashner\r\n4822,5041,140278,Agatha Christie,4.50 From Paddington,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388324483l/140278.jpg,3.92,23416,\"mystery, crime\",4.50 From PaddingtonAgatha Christie\r\n4823,5042,74036,J.D. Robb,Ceremony in Death,https://images.gr-assets.com/books/1376018955l/74036.jpg,4.26,25093,\"mystery, romance\",\"Investigating the death of a fellow officer, Eve Dallas receives a personal\nwarning when a dead body is placed outside her home, and her subsequent\nexperiences make her question her beliefs about right and wrong. Reissue.\"\r\n4824,5043,18373214,\"Jo Nesbø, Don Bartlett\",Kakerlakkene,https://images.gr-assets.com/books/1418343189l/18373214.jpg,3.71,14717,\"crime, mystery\",\"KakerlakkeneJo Nesbø, Don Bartlett\"\r\n4825,5044,140078,Charlaine Harris,Grave Surprise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426911066l/140078.jpg,3.88,27905,\"mystery, fantasy\",\"While giving a college class a demonstration of her unique talent to find\nthe dead and see their final moments of life, Harper Connelly is stunned to\ndiscover two bodies in a single grave--one the original occupant, one a\nrecently deceased girl--and joins forces with her stepbrother Tolliver to\nfind a killer. By the author of Grave Sight. Reprint.\"\r\n4826,5045,3304,\"Isabel Allende, Margaret Sayers Peden\",La ciudad de las bestias,https://images.gr-assets.com/books/1331488122l/3304.jpg,3.69,15497,\"fantasy, fiction\",\"Fifteen-year-old Alexander Cold is about to join his fearless grandmother\non the trip of a lifetime. An International Geographic expedition is headed\nto the dangerous, remote wilds of South America, on a mission to document\nthe legendary Yeti of the Amazon known as the Beast. But there are many\nsecrets hidden in the unexplored wilderness, as Alex and his new friend\nNadia soon discover. Drawing on the strength of their spirit guides, both\nyoung people are led on a thrilling and unforgettable journey to the\nultimate discovery. . . .\"\r\n4827,5046,2364284,\"Naguib Mahfouz, نجيب محفوظ\",أولاد حارتنا,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1213947027l/2364284.jpg,4.1,14860,\"ebooks, history\",\"أولاد حارتناNaguib Mahfouz, نجيب محفوظ\"\r\n4828,5047,68497,China Miéville,The Scar,https://images.gr-assets.com/books/1320435192l/68497.jpg,4.15,20745,\"fantasy, fiction\",\"En route to the fledgling colony of New Crobuzon, a ship carrying\nprisoners, slaves, and a few travelers, each with their own reason for\nleaving the city, is attacked by pirates, who bring the surviving\npassengers to a strange floating city constructed upon the hulls of pirated\nships, whose leaders are hiding a sinister agenda. By the author of Perdido\nStreet Station. Reprint.\"\r\n4829,5048,23225,Meg Cabot,Haunted,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187648l/23225.jpg,4.15,29460,\"paranormal, romance\",\"Suze is used to trouble, but this time she's in deep: Ghostly Jesse has her\nheart, but Paul Slater, a real flesh—and—blood guy, is warm for her form.\nAnd mediator Paul knows how to send Jesse to the Great Beyond. For good.\nPaul claims he won't do anything to Jesse as long as Suze will go out with\nhim. Fearing she'll lose Jesse forever, Suze agrees. But even if Suze can\nget Jesse to admit his true feelings for her, what kind of future can she\nhave with a guy who's already dead?\"\r\n4830,5049,28553,Anne McCaffrey,\"Dragondrums (Pern: Harper Hall, #3)\",https://images.gr-assets.com/books/1410942131l/28553.jpg,4.04,25473,\"fantasy, fiction\",\"Science fiction legend Anne McCaffrey’s beloved Harper Hall trilogy, set\nwithin the bestselling Dragonriders of Pern series, is now available in a\ncollectable boxed set. Every two hundred years or so, on the planet colony\nof Pern, shimmering Threads fall from space, raining death. Yet the great\ndragons of Pern, mounted by the stalwart dragonriders, scour the skies with\nfire to destroy the deadly Thread and save the planet. Here we meet Menolly\nas she navigates her way as the first journeywoman Harper in the history of\nPern; and fellow student Piemur whom is secretly asked to leave Harper\nHall, drafted by Masterharper Robinton to embark on a dangerous mission to\nthe Southern Hold. The Harper Hall trilogy, set within science fiction\nlegend Anne McCaffrey’s beloved and bestselling Dragonriders of Pern\nseries, is a seminal work and a must-have for any fantasy or science\nfiction fan.\"\r\n4831,5050,9545064,Rachel Simon,The Story of Beautiful Girl,https://images.gr-assets.com/books/1336851169l/9545064.jpg,3.92,19655,\"fiction, romance\",\"It is 1968. Lynnie, a young white woman with a developmental disability,\nand Homan, an African American deaf man, are locked away in an institution,\nthe School for the Incurable and Feebleminded, and have been left to\nlanguish, forgotten. Deeply in love, they escape, and find refuge in the\nfarmhouse of Martha, a retired schoolteacher and widow. But the couple is\nnot alone-Lynnie has just given birth to a baby girl. When the authorities\ncatch up to them that same night, Homan escapes into the darkness, and\nLynnie is caught. But before she is forced back into the institution, she\nwhispers two words to Martha: \"\"Hide her.\"\" And so begins the 40-year epic\njourney of Lynnie, Homan, Martha, and baby Julia-lives divided by seemingly\ninsurmountable obstacles, yet drawn together by a secret pact and\nextraordinary love.\"\r\n4832,5051,18646,Dava Sobel,Galileo's Daughter,https://images.gr-assets.com/books/1414607526l/18646.jpg,3.74,21260,\"history, science\",\"Presents a biography of the scientist through the surviving letters of his\nillegitimate daughter Maria Celeste, who wrote him from the Florence\nconvent where she lived from the age of thirteen.\"\r\n4833,5052,42692,Leon Uris,Mila 18,https://images.gr-assets.com/books/1359742799l/42692.jpg,4.27,19323,\"fiction, history\",Recounts the resistance of the Jews in the Warsaw ghetto against the Nazis\r\n4834,5054,1330324,Amitav Ghosh,Sea of Poppies,https://images.gr-assets.com/books/1327376395l/1330324.jpg,3.93,15499,\"fiction, history\",\"Preparing to fight China's nineteenth-century Opium Wars, a motley\nassortment of sailors and passengers establish family-like ties that\neventually span continents, races, and generations.\"\r\n4835,5055,99245,\"Isaac Asimov, Robert Silverberg\",Nightfall,https://images.gr-assets.com/books/1368557860l/99245.jpg,4.01,21683,\"fiction, fantasy\",\"An expanded version of Asimov's short story, \"\"Nightfall,\"\" reveals a world\non the brink of chaos, torn between religious fanaticism and scientific\ndenial and faced with the end of civilization\"\r\n4836,5056,18005,\"Melinda Long, David Shannon\",How I Became a Pirate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284455l/18005.jpg,4.07,21554,\"fiction, fantasy\",\"Jeremy Jacob joins Braid Beard and his pirate crew and finds out about\npirate language, pirate manners, and other aspects of their life.\"\r\n4837,5057,99208,Edward Abbey,\"The Monkey Wrench Gang (Monkey Wrench Gang, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349067863l/99208.jpg,4.08,15513,\"fiction, classics\",\"Ex-Green Beret George Hayduke has returned from war to find his beloved\nsouthwestern desert threatened by industrial development. Joining with\nBronx exile and feminist saboteur Bonnie Abzug, wilderness guide and\noutcast Mormon Seldom Seen Smith, and libertarian billboard torcher Doc\nSarvis, M.D., Hayduke is ready to fight the power—taking on the strip\nminers, clear-cutters, and the highway, dam, and bridge builders who are\nthreatening the natural habitat. The Monkey Wrench Gang is on the move—and\npeaceful coexistence be damned!\"\r\n4838,5058,6323821,John Irving,Last Night in Twisted River,https://images.gr-assets.com/books/1399850194l/6323821.jpg,3.74,18441,\"fiction, contemporary\",\"In a story spanning five decades, a 12-year-old boy in New Hampshire\nmistakes the constable's girlfriend for a bear, leading to an unfortunate\naccident that forces the boy and his father to become fugitives pursued by\nthe constable, with their only help coming from a fiercely libertarian\nlogger. Reprint. A best-selling book.\"\r\n4839,5059,10115852,Rob Bell,Love wins,https://images.gr-assets.com/books/1327878550l/10115852.jpg,3.54,17668,\"religion, christian\",\"Rob Bell provides a provocative book which gets to the heart of questions\nabout life and death. His perspective, encapsulated by his famous slogan\n'love wins', will surprise and challenge both Christians and atheists, and\nwill inspire people of all faiths and none.\"\r\n4840,5060,9376345,Rachel Caine,Bite Club,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177342l/9376345.jpg,4.23,25064,\"romance, fiction\",\"College student Claire Danvers discovers that an extreme sport pitting\nvampire against vampire--and sometimes vampire against human--is being\nbroadcast on the internet from Morganville,Texas.\"\r\n4841,5061,78970,Jeffrey Archer,A Matter of Honor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390767980l/78970.jpg,3.9,16502,\"fiction, thriller\",\"A letter bequeathed by a disgraced British colonel to his only son, Adam,\nsets in motion a deadly chain of events involving the KGB, the CIA, and the\nterrible secret that Adam is carrying. Reprint.\"\r\n4842,5062,469901,Linda Howard,Mr. Perfect,https://images.gr-assets.com/books/1327960914l/469901.jpg,4.07,24753,\"romance, suspense\",\"Written in her “trademark darkly sensual style” (Booklist), New York Times\nbestselling author Linda Howard brings us an electrifying page-turner of\npassion and suspense with a captivating premise… What would make the\nperfect man? That's the delicious topic that heats up the proceedings at a\ncertain table of professional women at their favorite restaurant. What\nqualities would he have? Would he be tall, dark, and handsome? Caring and\nwarmhearted—or would just muscular do? Jaine Bright and her three\ngirlfriends start off with the basics: he'd be faithful and reliable, the\nresponsible type, and have a great sense of humor. But as the conversation\npicks up momentum, so do the quartet's requirements for Mr. Perfect as and\nthey write down a tongue-in-cheek checklist that's both funny and racy. The\nnext thing they know, the List, as it has come to be called, becomes an\novernight sensation, spreading through their company like wildfire and\ngrabbing the interest of local newspapers and television coverage. No one\nexpected this avalanche of attention for something that began as a joke\namong friends. But the joke turns deadly serious when one of the four women\nis murdered... The prime suspect in the case is the victim's boyfriend, who\nwas one of a number of men who found the List sexist and offensive. An\nimpenetrable alibi gets him off the hook, but a deadly stalker targets the\nthree remaining friends. Now, with the help of Jaine's neighbor, an\nunpredictable police detective, the puzzle must be solved as the dream of\nMr. Perfect becomes a chilling nightmare.\"\r\n4843,5063,16093188,M. Leighton,Up to Me,https://images.gr-assets.com/books/1355328750l/16093188.jpg,4.12,30597,\"romance, contemporary\",Up to MeM. Leighton\r\n4844,5064,16124019,Mira Lyn Kelly,Waking Up Married,https://images.gr-assets.com/books/1352411782l/16124019.jpg,3.53,23812,\"romance, contemporary\",Waking Up MarriedMira Lyn Kelly\r\n4845,5065,1225261,Linwood Barclay,No Time for Goodbye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182031065l/1225261._SY475_.jpg,4,17413,\"mystery, thriller\",\"Twenty-five years after her entire family vanishes without a trace, Cynthia\nArcher is still struggling to make sense of the disappearance and to live a\nnormal life with her husband and daughter, until sinister clues, all\npointing to her missing family, make her fear for her own sanity and begin\nto reveal the dark secrets of the past, a shocking truth that may have been\nbetter left undisturbed. Reprint.\"\r\n4846,5066,207802,Katherine Hannigan,\"Ida B. . . and Her Plans to Maximize Fun, Avoid Disaster, and (Possibly) Save the World\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924484l/207802.jpg,3.86,20551,\"fiction, contemporary\",\"Ida B. . . and Her Plans to Maximize Fun, Avoid Disaster, and (Possibly) Save the WorldKatherine Hannigan\"\r\n4847,5067,4703450,Robin Hobb,The Dragon Keeper,https://images.gr-assets.com/books/1330079386l/4703450.jpg,3.93,19620,\"fantasy, fiction\",The Dragon KeeperRobin Hobb\r\n4848,5068,210404,Aldo Leopold,A Sand County Almanac,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1283195046l/210404.jpg,4.24,16792,\"nonfiction, science\",\"Approaches the prevalent issues in ecology from an aesthetic viewpoint,\nstressing the beauty and balance of nature.\"\r\n4849,5069,895886,\"Eric Knight, Marguerite Kirmse\",Lassie Come-Home,https://images.gr-assets.com/books/1316130656l/895886.jpg,4.16,19100,\"classics, fiction\",\"Presents the classic tale about a prize collie's homeward journey after she\nis sold to a wealthy family because hard times befall her original owners.\nReissue.\"\r\n4850,5070,178788,\"T. Colin Campbell, Thomas M. Campbell II\",\"The China Study: The Most Comprehensive Study of Nutrition Ever Conducted and the Startling Implications for Diet, Weight Loss and Long-term Health\",https://images.gr-assets.com/books/1376474019l/178788.jpg,4.21,16485,\"cookbooks, science\",\"A guide that cuts through the haze of misinformation and delivers an\ninsightful message to anyone living with or at risk from the following:\ncancer, diabetes, heart disease, obesity, Alzheimer's disease and /or\nosteoporosis. Dr Campbell illuminates the connection between nutrition and\nthese often fatal diseases and reveals the natural human diet. He also\nexamines the source of nutritional confusion produced by powerful lobbies,\ngovernment entities and opportunist scientists. Part medical thriller, part\ngovernmental exposé.\"\r\n4851,5071,1013383,\"Julia Donaldson, Axel Scheffler\",The Gruffalo,https://images.gr-assets.com/books/1329674496l/1013383.jpg,4.47,19609,\"fiction, fantasy\",\"The GruffaloJulia Donaldson, Axel Scheffler\"\r\n4852,5072,359,Douglas Adams,The Salmon of Doubt: Hitchhiking the Galaxy One Last Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273676l/359.jpg,3.92,20177,\"fantasy, fiction\",The Salmon of Doubt: Hitchhiking the Galaxy One Last TimeDouglas Adams\r\n4853,5073,250024,Arthur C. Clarke,The City and the Stars,https://images.gr-assets.com/books/1340242824l/250024.jpg,4.08,19032,\"fiction, classics\",\"The 10-billion-year-old metropolis of Diaspar is humanity's last home.\nAlone among immortals, the only man born in 10 million years desperately\nwants to find what lies beyond the City. His quest will uncover the destiny\nof a people...and a galaxy.\"\r\n4854,5074,18667307,\"Sui Ishida, 石田 スイ\",東京喰種トーキョーグール 1,https://images.gr-assets.com/books/1498748457l/18667307.jpg,4.43,43490,\"manga, horror\",\"東京喰種トーキョーグール 1Sui Ishida, 石田 スイ\"\r\n4855,5075,352262,Cressida Cowell,How to train your dragon,https://images.gr-assets.com/books/1431930187l/352262.jpg,3.85,23042,\"fantasy, fiction\",First published in the UK in 2003 by Hodder Children's Books.\r\n4856,5076,6753,David Foster Wallace,Brief Interviews with Hideous Men,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347635121l/6753.jpg,3.88,15555,\"fiction, contemporary\",\"David Foster Wallace made an art of taking readers into places no other\nwriter even gets near. The series of stories from which this exuberantly\nacclaimed book takes its title is a sequence of imagined interviews with\nmen on the subject of their relations with women. These portraits of men at\ntheir most self-justifying, loquacious, and benighted explore poignantly\nand hilariously the agonies of sexual connections.\"\r\n4857,5077,170619,Mary Higgins Clark,All Around the Town,https://images.gr-assets.com/books/1355139896l/170619.jpg,3.94,20029,\"mystery, fiction\",\"A student obsessed with her English professor is accused of his murder, but\ncannot remember how her fingerprints could possibly have been found at the\nscene of the crime\"\r\n4858,5078,4758093,Lauren Conrad,L.A. Candy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442846045l/4758093._SY475_.jpg,3.36,21910,\"fiction, contemporary\",\"L.A. Candy is a deliciously entertaining novel about what it's like to come\nof age in Hollywood while starring in a reality TV show, written by a young\nwoman who has experienced it all firsthand: Lauren Conrad. Fashion designer\nand TV personality Lauren Conrad brings her insider knowledge of the highs\nand lows of life in the spotlight to this juicy New York Times bestselling\nseries. Los Angeles is all about the sweet life: hot clubs, cute guys,\ndesigner...everything. Nineteen-year-old Jane Roberts can't wait to start\nliving it up. She may be in L.A. for an internship, but Jane plans to play\nas hard as she works, and has enlisted her BFF Scarlett to join in the fun.\nWhen Jane and Scarlett are approached by a producer who wants them to be on\nhis new series, a \"\"reality version of Sex and the City,\"\" they can hardly\nbelieve their luck. Their own show? Yes, please! Soon Jane is TV's hottest\nstar. Fame brings more than she ever imagined possible for a girl from\nSanta Barbara—free designer clothes, the choicest tables at the most\nexclusive clubs, invites to Hollywood premieres—and she's lapping up the\nVIP treatment with her eclectic entourage of new pals. But those same\nfriends who are always up for a wild night are also out for a piece of\nJane's spotlight. In a city filled with people chasing after their dreams,\nit's not long before Jane wakes up to the reality that everyone wants\nsomething from her, and nothing is what it seems to be.\"\r\n4859,5079,6618272,Kiera Cass,The Siren,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348131642l/6618272.jpg,3.78,21740,\"fantasy, romance\",\"#1 New York Times bestseller From Kiera Cass, author of the Selection\nseries, comes a captivating stand-alone fantasy romance. Kahlen is a Siren,\nbound to serve the Ocean by luring humans to watery graves with her voice,\nwhich is deadly to any human who hears it. Akinli is human—a kind, handsome\nboy who's everything Kahlen ever dreamed of. Falling in love puts them both\nin danger . . . but Kahlen can't bear to stay away. Will she risk\neverything to follow her heart? The Siren was previously self-published;\nthis edition has been completely rewritten and redesigned.\"\r\n4860,5080,43993,Greg Iles,The Quiet Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920855l/43993.jpg,4.17,16853,\"mystery, fiction\",\"Widower Penn Cage returns to his hometown of Natchez, Mississippi, where,\nfinding that his father is being blackmailed, he reopens a notorious murder\ncase that involves powerfully dangerous town forces, the FBI, and his own\npast. 75,000 first printing.\"\r\n4861,5081,22680,Joseph J. Ellis,American Sphinx: The Character of Thomas Jefferson,https://images.gr-assets.com/books/1403187214l/22680.jpg,3.9,17375,\"history, biography\",\"Offers a reassessment of the life, image, and career of Thomas Jefferson,\nexamining his complex personality, controversies about the man and his\nbeliefs, and his accomplishments\"\r\n4862,5082,11777020,\"Jo Nesbø, Don Bartlett\",Hodejegerne,https://images.gr-assets.com/books/1320551831l/11777020.jpg,3.78,16509,\"crime, thriller\",\"Roger Brown is a headhunter and art thief living beyond his means and when\nhe meets Clas Greve, a corporate candidate who reveals that he owns a\npriceless Rubens painting, Roger breaks into his apartment, initiating a\nseries of events which puts Roger's life in danger.\"\r\n4863,5084,243598,Paul Bowles,The Sheltering Sky,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347986956l/243598.jpg,3.92,16494,\"fiction, classics\",The Sheltering SkyPaul Bowles\r\n4864,5085,22910900,Patrick Ness,The Rest of Us Just Live Here,https://images.gr-assets.com/books/1429800081l/22910900.jpg,3.76,23412,\"fantasy, contemporary\",\"ALA Best Fiction for Young Adults * Cooperative Children’s Book Center CCBC\nChoice * Michael Printz Award shortlist * Six starred reviews * Kirkus Best\nBook of the Year * VOYA Perfect Ten * NYPL Top Ten Best Books of the Year\nfor Teens * Chicago Public Library Best Teen Books of the Year * Publishers\nMarketplace Buzz Books * ABC Best Books for Children * Bank Street Best\nBooks List A new YA novel from novelist Patrick Ness, author of the\nCarnegie Medal- and Kate Greenaway Medal-winning A Monster Calls and the\ncritically acclaimed Chaos Walking trilogy, The Rest of Us Just Live Here\nis a bold and irreverent novel that powerfully reminds us that there are\nmany different types of remarkable. What if you aren't the Chosen One? The\none who's supposed to fight the zombies, or the soul-eating ghosts, or\nwhatever the heck this new thing is, with the blue lights and the death?\nWhat if you're like Mikey? Who just wants to graduate and go to prom and\nmaybe finally work up the courage to ask Henna out before someone goes and\nblows up the high school. Again. Because sometimes there are problems\nbigger than this week's end of the world, and sometimes you just have to\nfind the extraordinary in your ordinary life. Even if your best friend is\nworshipped by mountain lions.\"\r\n4865,5086,1933181,Alison Weir,The Lady Elizabeth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431623866l/1933181._SY475_.jpg,3.97,20345,\"fiction, history\",The Lady ElizabethAlison Weir\r\n4866,5087,16131193,Lily Koppel,The Astronaut Wives Club,https://images.gr-assets.com/books/1352436564l/16131193.jpg,3.26,17837,\"history, nonfiction\",The Astronaut Wives ClubLily Koppel\r\n4867,5088,184419,\"G.K. Chesterton, Jonathan Lethem\",The Man Who Was Thursday - A Nightmare,https://images.gr-assets.com/books/1403181403l/184419.jpg,3.85,17481,\"classics, mystery\",\"A clever detective infiltrates the Council of Days, a secret organization\nof anarchists with seven members, each disguised and named for a day of the\nweek.\"\r\n4868,5089,764903,\"Frank B. Gilbreth Jr., Ernestine Gilbreth Carey\",Cheaper by the Dozen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348220916l/764903.jpg,3.99,26266,\"classics, biography\",\"What do you get when you put twelve lively kids together with a father -- a\nfamous efficiency expert -- who believes families can run like factories,\nand a mother who is his partner in everything except discipline? You get a\nhilarious tale of growing up that has made generations of kids and adults\nalike laugh along with the Gilbreths in Cheaper by the Dozen. Translated\ninto more than fifty-three languages and made into a classic film starring\nClifton Webb and Myrna Loy, Cheaper by the Dozen is a delightfully enduring\nstory of family life at the turn of the 20th century.\"\r\n4869,5090,2198274,\"Douglas Preston, Mario Spezi\",The Monster of Florence: A True Story,https://images.gr-assets.com/books/1306075698l/2198274.jpg,3.72,21548,\"nonfiction, mystery\",\"The Monster of Florence: A True StoryDouglas Preston, Mario Spezi\"\r\n4870,5091,112525,Daniel Woodrell,Winter's Bone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387668411l/112525.jpg,3.92,18306,\"fiction, mystery\",\"Ree Dolly's father has skipped bail on charges that he ran a crystal meth\nlab, and the Dollys will lose their house if he doesn't show up for his\nnext court date. With two young brothers depending on her, 16-year-old Ree\nknows she has to bring her father back, dead or alive. Living in the harsh\npoverty of the Ozarks, Ree learns quickly that asking questions of the\nrough Dolly clan can be a fatal mistake. But, as an unsettling revelation\nlurks, Ree discovers unforeseen depths in herself and in a family network\nthat protects its own at any cost.\"\r\n4871,5092,30243,Laurell K. Hamilton,\"Seduced by Moonlighty (Merry Gentry, #3)\",https://images.gr-assets.com/books/1500145890l/30243.jpg,4.05,26388,\"fantasy, paranormal\",\"When her aunt, the Queen of Air and Darkness, becomes obsessed with\nsecuring an heir to the throne of Fairie, Meredith spends unfruitful\nevenings with the Queen's immortal guards and finds her magical powers\nevolving in unexpected ways.\"\r\n4872,5093,1297150,Bernard Cornwell,Sword Song,https://images.gr-assets.com/books/1407111536l/1297150.jpg,4.28,17106,\"fiction, history\",Sword SongBernard Cornwell\r\n4873,5094,1734639,Jessica Seinfeld,Deceptively Delicious: Simple Secrets to Get Your Kids Eating Good Food,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442936631l/1734639._SX318_.jpg,3.39,17837,\"cookbooks, nonfiction\",Deceptively Delicious: Simple Secrets to Get Your Kids Eating Good FoodJessica Seinfeld\r\n4874,5095,228534,Anita Shreve,The Weight of Water,https://images.gr-assets.com/books/1327936566l/228534.jpg,3.62,21394,\"fiction, contemporary\",\"\"\"I wonder this: If you take a woman and push her to the edge, how will she\nbehave?\"\" The question is posed by Jean, a photographer, who arrives on\nSmuttynose Island, off the coast of New Hampshire, to research a century-\nold crime. As she immerses herself in the details of the case--an outburst\nof passion that resulted in the deaths of two women--Jean herself enters\nprecarious emotional territory. The suspicion that her husband is having an\naffair burgeons into jealousy and distrust, and ultimately propels Jean to\nthe verge of actions she had not known herself capable of--actions with\nhorrific consequences. Everywhere hailed for its beauty and power, The\nWeight of Water takes us on an unforgettable journey through the furthest\nextremes of emotion.\"\r\n4875,5096,16062210,Katie Ashley,Music of the Heart,https://images.gr-assets.com/books/1458915186l/16062210.jpg,4,32013,\"romance, music\",Music of the HeartKatie Ashley\r\n4876,5097,41951,Maeve Binchy,The Scarlet Feather,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926366l/41951.jpg,3.93,20948,\"fiction, romance\",\"Fresh from cooking school, Tom Feather and Cathy Scarlet are hot new\nadditions to the Dublin scene with their new catering company, but some\npeople in the city, including their families, are not so keen on the idea\nof their success. Reprint.\"\r\n4877,5099,34503,\"Terry Pratchett, Paul Kidby\",The Last Hero,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388382236l/34503.jpg,4.15,22537,\"fantasy, fiction\",\"Cohen the Barbarian. He's been a legend in his own lifetime. He can\nremember the good old days of high adventure, when being a Hero meant one\ndidn't have to worry about aching backs and lawyers and civilization. But\nthese days, he can't always remember just where he put his teeth... So now,\nwith his ancient (yet still trusty) sword and new walking stick in hand,\nCohen gathers a group of his old -- very old -- friends to embark on one\nfinal quest. He's going to climb the highest mountain of Discworld and meet\nthe gods. It's time the Last Hero in the world returns what the first hero\nstole. Trouble is, that'll mean the end of the world, if no one stops him\nin time.\"\r\n4878,5100,83539,Isaac Asimov,Fantastic Voyage,https://images.gr-assets.com/books/1320425345l/83539.jpg,3.89,20415,\"fiction, classics\",\"Through the process of miniaturization, five people enter a tiny submarine\nand are injected into a man's circulatory system where they try to destroy\na blood clot located in his brain\"\r\n4879,5101,11472,Philip Gourevitch,We Wish to Inform You That Tomorrow We Will Be Killed with Our Families,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442723264l/11472._SY475_.jpg,4.3,18716,\"nonfiction, history\",\"An unforgettable firsthand account of a people's response to genocide and\nwhat it tells us about humanity. This remarkable debut book chronicles what\nhas happened in Rwanda and neighboring states since 1994, when the Rwandan\ngovernment called on everyone in the Hutu majority to murder everyone in\nthe Tutsi minority. Though the killing was low-tech--largely by machete--it\nwas carried out at shocking speed: some 800,000 people were exterminated in\na hundred days. A Tutsi pastor, in a letter to his church president, a\nHutu, used the chilling phrase that gives Philip Gourevitch his title. With\nkeen dramatic intensity, Gourevitch frames the genesis and horror of\nRwanda's \"\"genocidal logic\"\" in the anguish of its aftermath: the mass\ndisplacements, the temptations of revenge and the quest for justice, the\nimpossibly crowded prisons and refugee camps. Through intimate portraits of\nRwandans in all walks of life, he focuses on the psychological and\npolitical challenges of survival and on how the new leaders of postcolonial\nAfrica went to war in the Congo when resurgent genocidal forces threatened\nto overrun central Africa. Can a country composed largely of perpetrators\nand victims create a cohesive national society? This moving contribution to\nthe literature of witness tells us much about the struggle everywhere to\nforge sane, habitable political orders, and about the stubbornness of the\nhuman spirit in a world of extremity. We Wish to Inform You That Tomorrow\nWe Will Be Killed with Our Families is the winner of the National Book\nCritics Circle Award for Nonfiction.\"\r\n4880,5103,16248078,Daniel Silva,The English Girl,https://images.gr-assets.com/books/1371747020l/16248078.jpg,4.08,15292,\"fiction, thriller\",\"One girl Seven days No second chances Madeline Hart is a rising star in\nBritish government: beautiful, intelligent, driven to succeed by an\nimpoverished childhood. But she also has a dark secret: she is the lover of\nPrime Minister Jonathan Lancaster. When she disappears on the island of\nCorsica, it's clear her kidnappers know about the affair and intend to make\nthe PM pay dearly for his sins. Fearful of a scandal that could destroy his\ncareer, Lancaster decides to handle the matter privately, and not involve\nthe police. Enter Gabriel Allon—assassin, art restorer, and spy—who must\nfind Madeline within seven days before she is executed. With the clock\nticking, Allon is thrust into a deadly game of shadows in which nothing is\nwhat it seems—and where the only thing more dangerous than his enemies is\nthe truth. . . .\"\r\n4881,5104,8296140,Susan Vreeland,Clara and Mr. Tiffany,https://images.gr-assets.com/books/1320562282l/8296140.jpg,3.71,23459,\"fiction, art\",\"The \"\"New York Times\"\"-bestselling author of \"\"The Girl in Hyacinth Blue\"\"\ncreates a dynamic portrait of Clara Driscoll: lead designer for Louis\nComfort Tiffany (famous for Tiffany lamps) and a woman conflicted between\nher desires for artistic recognition and romantic love.\"\r\n4882,5105,18295852,Jennifer E. Smith,The Geography of You and Me,https://images.gr-assets.com/books/1376408056l/18295852.jpg,3.68,22368,\"romance, contemporary\",\"Lucy lives on the twenty-fourth floor. Owen lives in the basement. It's\nfitting, then, that they meet in the middle -- stuck between two floors of\na New York City apartment building, on an elevator rendered useless by a\ncitywide blackout. After they're rescued, Lucy and Owen spend the night\nwandering the darkened streets and marveling at the rare appearance of\nstars above Manhattan. But once the power is back, so is reality. Lucy soon\nmoves abroad with her parents, while Owen heads out west with his father.\nThe brief time they spend together leaves a mark. And as their lives take\nthem to Edinburgh and to San Francisco, to Prague and to Portland, Lucy and\nOwen stay in touch through postcards, occasional e-mails, and phone calls.\nBut can they -- despite the odds -- find a way to reunite? Smartly observed\nand wonderfully romantic, Jennifer E. Smith's new novel shows that the\ncenter of the world isn't necessarily a place. Sometimes, it can be a\nperson.\"\r\n4883,5106,7991200,L.A. Weatherly,Angel ,https://images.gr-assets.com/books/1326626626l/7991200.jpg,3.89,22262,\"fantasy, paranormal\",\"Willow knows she's different from other girls. And not just because she\nloves tinkering around with cars. Willow has a gift. She can look into\npeople's futures, know their dreams, their hopes and their regrets, just by\ntouching them. She has no idea where she gets this power from But Alex\ndoes. Gorgeous, mysterious Alex knows Willow's secret and is on a mission\nto stop her. The dark forces within Willow make her dangerous and\nirresistible. In spite of himself, Alex finds he is falling in love with\nhis sworn enemy.\"\r\n4884,5107,11254850,Brandon Mull,\"Seeds of Rebellion (Beyonders, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247992l/11254850.jpg,4.25,20291,\"fantasy, fiction\",\"Seeds of Rebellion (Beyonders, #2)Brandon Mull\"\r\n4885,5108,82751,Adeline Yen Mah,Chinese Cinderella: The True Story of an Unwanted Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400868639l/82751.jpg,4.04,21410,\"memoir, nonfiction\",\"The daughter of a wealthy Hong Kong businessman describes her very\ndifficult childhood and the psychological abuse she suffered at the hands\nof her stepmother.\"\r\n4886,5109,14785,John Sandford,Chosen Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434789948l/14785._SY475_.jpg,4.23,20176,\"mystery, fiction\",Chosen PreyJohn Sandford\r\n4887,5112,2880715,J.R. Ward,The Black Dagger Brotherhood: An Insider's Guide,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281625l/2880715.jpg,4.32,26144,\"paranormal, romance\",\"A guide to the \"\"Black Dagger Brotherhood\"\" series offers profiles of its\nmembers, includes a teaser of the upcoming novel in the \"\"Lover Avenged\"\"\nseries, and features a short story about Zsadist and Bella.\"\r\n4888,5113,6120349,\"Joe Hill, Gabriel Rodríguez\",Head Games ,https://images.gr-assets.com/books/1351338040l/6120349.jpg,4.36,22505,\"comics, horror\",\"\"\"Originally published as Locke & Key: Head games, Issues #1-6\"\"--T.p. verso.\"\r\n4889,5114,91247,\"Beverly Cleary, Alan Tiegreen\",Ramona and Her Father,https://images.gr-assets.com/books/1408925643l/91247.jpg,4.02,22181,\"fiction, classics\",\"Ramona just wants everyone to be happy. If only her father would smile and\njoke again, her mother would look less worried, her sister would be\ncheerful, and Picky-picky would eat his cat-food. But Ramona's father has\nlost his job, and nobody in the Quimby household is in a very good mood.\nRamona tries to cheer up the family as only Ramona can -- by rehearsing for\nlife as a rich and famous star of television commercials, for instance --\nbut her best efforts only make things worse. Her sister, Beezus, calls her\na, pest, her parents lose patience with her, and her teacher claims she's\nforgotten her- manners. But when her father admits he wouldn't trade her\nfor a million dollars, Ramona knows everything is going to work out fine in\nthe end.\"\r\n4890,5115,49596,Agatha Christie,The Secret Adversary,https://images.gr-assets.com/books/1331721280l/49596.jpg,3.82,20457,\"mystery, fiction\",The Secret AdversaryAgatha Christie\r\n4891,5116,53413,\"Julio Cortázar, Gregory Rabassa\",Rayuela,https://images.gr-assets.com/books/1367728486l/53413.jpg,4.25,10309,\"fiction, classics\",\"When La Maga, his mistress, disappears, Horacio Oliveira, an Argentinian\nwriter living in Paris, decides to return home to Buenos Aires\"\r\n4892,5118,25689074,Marissa Meyer,Stars Above,https://images.gr-assets.com/books/1472473049l/25689074.jpg,4.27,29333,\"romance, ebooks\",Stars AboveMarissa Meyer\r\n4893,5119,1207904,Eric Clapton,Clapton: The Autobiography,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407042555l/1207904.jpg,3.81,16369,\"biography, music\",\"The legendary guitarist recounts the story of his life and his career,\nrecalling his work with the Yardbirds, Cream, and as a solo artist; years\nof drug and alcohol abuse; failed marriage to Patti Boyd; and the\naccidental death of his young son.\"\r\n4894,5120,647,Naomi Klein,No Logo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441567914l/647._SY475_.jpg,3.86,18792,\"nonfiction, business\",\"NO LOGO was an international bestseller and \"\"a movement bible\"\" (The New\nYork Times). Naomi Klein's second book, The Shock Doctrine, was hailed as a\n\"\"master narrative of our time,\"\" and has over a million copies in print\nworldwide. In the last decade, No Logo has become an international\nphenomenon and a cultural manifesto for the critics of unfettered\ncapitalism worldwide. As America faces a second economic depression,\nKlein's analysis of our corporate and branded world is as timely and\npowerful as ever. Equal parts cultural analysis, political manifesto, mall-\nrat memoir, and journalistic exposé, No Logo is the first book to put the\nnew resistance into pop-historical and clear economic perspective. Naomi\nKlein tells a story of rebellion and self-determination in the face of our\nnew branded world.\"\r\n4895,5121,43927,Harlan Coben,No Second Chance,https://images.gr-assets.com/books/1309281936l/43927.jpg,4.05,18799,\"mystery, fiction\",\"Shot twice by an unseen assailant, Dr. Marc Seidman lies in a hospital bed.\nHis wife has been killed. His baby daughter has vanished. Then the ransom\nnote arrives.\"\r\n4896,5122,7748,Hunter S. Thompson,Fear and Loathing on the Campaign Trail '72,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191829l/7748.jpg,4.1,15306,\"history, nonfiction\",Fear and Loathing on the Campaign Trail '72Hunter S. Thompson\r\n4897,5123,764434,P.D. James,Shroud for a Nightingale,https://images.gr-assets.com/books/1321172495l/764434.jpg,4.04,18044,\"mystery, fiction\",\"The mysterious and tragic deaths of two student nurses send Adam Dalgliesh,\nChief Superintendent of Scotland Yard, to hunt the vicious killer seeking\nrefuge in the Nightingale House.\"\r\n4898,5124,21853633,Sarah Addison Allen,First Frost,https://images.gr-assets.com/books/1410962794l/21853633.jpg,3.95,20936,\"fiction, fantasy\",First FrostSarah Addison Allen\r\n4899,5125,223380,Ted Chiang,Stories of Your Life and Others ,https://images.gr-assets.com/books/1356138316l/223380.jpg,4.27,16252,\"fiction, fantasy\",\"Presents a first collection of seven science fiction short stories, and\nincludes an original tale, \"\"Liking What You See: a Documentary\"\" for this\nanthology.\"\r\n4900,5126,53926,Mario Vargas Llosa,Travesuras de la niña mala,https://images.gr-assets.com/books/1405421130l/53926.jpg,4.04,11707,\"fiction, romance\",\"Creando una admirable tensi�n entre lo c�mico y lo tr�gico, el Premio Nobel\nde Literatura y Pr�ncipe de Asturias de las Letras, Mario Vargas Llosa,\nlibera en esta novela una historia en la que el amor se nos muestra\nindefinible, due�o de mil caras, como la ni�a mala. �Cu�l es el verdadero\nrostro del amor? Ricardo ve cumplido, a una edad muy temprana, el sue�o que\nen su Lima natal aliment� desde que ten�a uso de raz�n: vivir en Par�s.\nPero el rencuentro con un amor de adolescencia lo cambiar� todo. La joven,\ninconformista, aventurera, pragm�tica e inquieta, lo arrastrar� fuera del\npeque�o mundo de sus ambiciones. Testigos de �pocas convulsas y\nflorecientes en ciudades como Londres, Par�s, Tokio o Madrid, que aqu� son\nmucho m�s que escenarios, ambos personajes ver�n sus vidas entrelazarse sin\nllegar a coincidir del todo. Sin embargo, esta danza de encuentros y\ndesencuentros har� crecer la intensidad del relato p�gina a p�gina hasta\npropiciar una verdadera fusi�n del lector con el universo emocional de los\nprotagonistas. Mario Vargas Llosa juega en Travesuras de la ni�a mala\n(2006) con la realidad y la ficci�n para ilustrar la complejidad del amor:\npasi�n y distancia, azar y destino, dolor y disfrute... �Cu�l es el\nverdadero rostro del amor? La cr�tica ha dicho... �Una novela de amor de\nhoy, de erotismo, con encuentros, separaciones, sufrimientos, enga�os,\nentrega, y tambi�n mucha verdad, y en la que Vargas Llosa, a modo de\nentom�logo, analiza minuciosamente la condici�n humana, como su gran\nadmirado Flaubert en La educaci�n sentimental, obra que se cita en la\nnovela, entre otras muchas referencias literarias a las que alude el autor.\nY es que la idea de novela para Vargas Llosa es \"\"la experiencia\ntotalizadora de la condici�n humana\"\".� El Pa�s �La ni�a mala recuerda a los\namorosos de Sabines: buscan la felicidadsin nunca encontrarla, pues\nencontrarla equivaldr�a a perderla sin remedio. Muy recomendable esta\nnovela, en apariencia modesta, pero que en realidad rasca con sa�a\nexquisita en nuestros m�s �ntimos deseos y frustraciones dom�sticas.�\nJavier Mungu�a, Revista de Letras ENGLISH DESCRIPTION A New York Times\nNotable Book of 2007\"\"Splendid, suspenseful, and irresistible . . . A\ncontemporary love story that explores the mores of the urban 1960s--and 70s\nand 80s.\"\"--The New York Times Book ReviewRicardo Somocurcio is in love with\na bad girl. He loves her as a teenager known as \"\"Lily\"\" in Lima in 1950,\nwhen she flits into his life one summer and disappears again without\nexplanation. He loves her still when she reappears as a revolutionary in\n1960s Paris, then later as Mrs. Richardson, the wife of a wealthy\nEnglishman, and again as the mistress of a sinister Japanese businessman in\nTokyo. However poorly she treats him, he is doomed to worship her. Charting\nRicardo's expatriate life through his romances with this shape-shifting\nwoman, Vargas Llosa has created a beguiling, epic romance about the life-\naltering power of obsession.\"\r\n4901,5127,6449290,Heidi W. Durrow,The Girl Who Fell From the Sky,https://images.gr-assets.com/books/1285276805l/6449290.jpg,3.6,19139,\"fiction, contemporary\",\"After a family tragedy orphans her, Rachel, the daughter of a Danish mother\nand a black G.I., moves into her grandmother's mostly black community in\nthe 1980s, where she must swallow her grief and confront her identity as a\nbiracial woman in a world that wants to see her as either black or white. A\nfirst novel. Reprint.\"\r\n4902,5128,4031,Bret Easton Ellis,Lunar Park,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385309748l/4031.jpg,3.6,16431,\"fiction, horror\",\"Becoming a best-selling novelist and wealthy celebrity while still in\ncollege, only to have his fame disintegrate in a sea of booze and drugs,\nthe narrator gets a new chance at life, but that life unravels after a\nseries of grotesque murders.\"\r\n4903,5129,32523,Lisa Gardner,\"Hide (Detective D.D. Warren, #2) \",https://images.gr-assets.com/books/1327979037l/32523.jpg,4.14,21892,\"mystery, thriller\",\"Opening up a newspaper to discover that she is supposed to be dead,\nAnnabelle Mary Granger finds herself trapped in the middle of a two-\ndecades-old crime that leads her to homicide detective Bobby Dodge and a\nconfrontation with two separate killers.\"\r\n4904,5130,969177,Habiburrahman El-Shirazy,Ayat-ayat Cinta,https://images.gr-assets.com/books/1439347437l/969177.jpg,3.81,12345,\"fiction, romance\",\"Tentang seorang pemuda Indonesia yang mencari ilmu jauh di tanah Arab.\nBerbekal iman yang kuat dan ketabahan, Fahri mengalami banyak hal yang\nmenggetarkan hidupnya, yang sesaat membuat Fahri mempertanyakan jalan\nhidupnya. Kesabaran dan keimanan adalah kunci kehidupan. Fahri, Aisyah dan\nMaria membuktikannya dalam cerita yang halus dan mengalir.\"\r\n4905,5131,29519514,Erin Watt,Broken prince,https://images.gr-assets.com/books/1464248584l/29519514.jpg,4.11,21901,\"romance, contemporary\",Broken princeErin Watt\r\n4906,5132,16054811,\"Paulo Coelho, Margaret Jull Costa\",Manuscrito encontrado em Accra,https://images.gr-assets.com/books/1362586181l/16054811.jpg,3.8,14318,\"fiction, philosophy\",\"Set in Jerusalem during the time of the Crusades, a community of\nChristians, Arabs, and Jews, who have long lived together peacefully,\nassemble to seek the wise counsel of a Greek Copt after they are warned of\nan imminent attack and certain destruction.\"\r\n4907,5133,9296438,Lisa Scottoline,Save Me,https://images.gr-assets.com/books/1311983193l/9296438.jpg,3.63,20168,\"fiction, mystery\",Save MeLisa Scottoline\r\n4908,5134,52640,Clive Barker,Weaveworld,https://images.gr-assets.com/books/1329374451l/52640.jpg,4.13,19251,\"fantasy, horror\",\"Susanna, granddaughter of the last caretaker, Calhoun Mooney, and\nImmacolata, an exiled witch intent on destroying her race, vie for a rug\ninto which the world of Seerkind has been woven. Reissue.\"\r\n4909,5135,170650,Mary Higgins Clark,\"Loves Music, Loves to Dance\",https://images.gr-assets.com/books/1416640001l/170650.jpg,3.89,21880,\"mystery, fiction\",\"When Robin probes the disappearance of her close friend, Marcy, a young\nwoman who answers an ad in a magazine \"\"personals\"\" section, she finds\nherself the prey of a serial killer with a special fetish\"\r\n4910,5136,215542,D.J. MacHale,The Rivers of Zadaa,https://images.gr-assets.com/books/1432151614l/215542.jpg,4.19,20264,\"fantasy, fiction\",\"Taking advantage of a severe drought and the long-standing distrust between\ntwo tribes, the demonic Saint Dane attempts to take over Loor's home planet\nof Zadaa, opposed once again by the teenaged Pendragon and other Travelers.\nReprint.\"\r\n4911,5137,11227040,Kristen Ashley,Sweet Dreams,https://images.gr-assets.com/books/1327912890l/11227040.jpg,4.42,34766,\"romance, contemporary\",Sweet DreamsKristen Ashley\r\n4912,5138,133486,Robert K. Massie,Nicholas and Alexandra,https://images.gr-assets.com/books/1333577599l/133486.jpg,4.25,17709,\"history, biography\",\"An incisive account of the last of the Romanov dynasty details the love\naffair of Tsar Nicholas II and his wife, Alexandra, their family, their\ninvolvement with Rasputin, and the revolution that transformed imperial\nRussia. Reprint.\"\r\n4913,5139,12275680,Janet Evanovich,Wicked Business,https://images.gr-assets.com/books/1328334213l/12275680.jpg,3.76,24162,\"mystery, paranormal\",\"Elizabeth Tucker continues to fall for the irresistible Diesel, who\nprotects her from his villianous cousin as they investigate the murder of a\nHarvard professor who was seeking the Luxuria Stone.\"\r\n4914,5140,16054808,Chris Grabenstein,Escape from Mr. Lemoncello's Library,https://images.gr-assets.com/books/1379335670l/16054808.jpg,4.13,21376,\"mystery, fiction\",\"Twelve-year-old Kyle gets to stay overnight in the new town library,\ndesigned by his hero (the famous gamemaker Luigi Lemoncello), with other\nstudents but finds that come morning he must work with friends to solve\npuzzles in order to escape.\"\r\n4915,5141,17208,Robert A. Heinlein,Friday,https://images.gr-assets.com/books/1315410828l/17208.jpg,3.82,21388,\"fiction, science\",\"In a Balkanized North America of the near future, threatened by imminent\nextinction, a strikingly beautiful and resourceful interplanetary secret\nagent--an Artificial Person named Friday--tries to survive a gigantic human\ncomedy\"\r\n4916,5142,6926176,Francine Rivers,\"Her Mother's Hope (Marta's Legacy, #1)\",https://images.gr-assets.com/books/1406510447l/6926176.jpg,4.28,18257,\"fiction, christian\",\"Marta, who left Switzerland to find her own way in the world, must come to\nterms with her faulty yet well-meaning desire to help her daughter, Hildie,\nfind her place, as Hildie becomes a nurse and has a family of her own.\"\r\n4917,5143,97860,David Wiesner,Tuesday,https://images.gr-assets.com/books/1328870556l/97860.jpg,4.17,21366,\"fantasy, fiction\",\"Frogs rise on their lily pads, float through the air, and explore nearby\nhouses while their inhabitants sleep.\"\r\n4918,5144,19707,Tom Clancy,Red Rabbit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546283429l/19707.jpg,3.64,19287,\"fiction, thriller\",\"Early in his career, Jack Ryan accepts his first assignment as a freelance\nanalyst under James Greer of the CIA and faces a mission involving a high-\nlevel Soviet defector who has reported a plot to assassinate Pope John Paul\nII. Reprint.\"\r\n4919,5145,13986,Mercedes Lackey,Arrows of the Queen (Heralds of Valdemar #1),https://images.gr-assets.com/books/1296358547l/13986.jpg,4.16,26844,\"fantasy, fiction\",Eventyrroman.\r\n4920,5146,424,Joan Didion,Slouching Towards Bethlehem: Essays,https://images.gr-assets.com/books/1327952074l/424.jpg,4.24,17787,\"nonfiction, memoir\",Slouching Towards Bethlehem: EssaysJoan Didion\r\n4921,5147,43917,Raymond E. Feist,Rise of a Merchant Prince,https://images.gr-assets.com/books/1360282060l/43917.jpg,4.02,20661,\"fantasy, fiction\",\"Surviving the wrath of the fearsome Sauur—a hideous race of invading\nserpents—noble Erik and cunning Roo have delivered a timely warning to the\nrulers of the Midkemian Empire, and are now free to pursue their separate\ndestinies. Erik chooses the army—and the continuing war against Midkemia's\ndread enemies. Roo lusts for wealth and power—rising high and fast in\ntheworld of trade. But with luxury comes carelessness and a vulnerability\nto the desires of the flesh. And a beautiful seductress with her ruthless\nmachinations threatens to destroy everything Roo has built and\nbecome—summoning catastrophe into his future . . . and terror into his\nworld.\"\r\n4922,5148,7285498,Courtney Allison Moulton,Angelfire,https://images.gr-assets.com/books/1294531919l/7285498.jpg,3.93,27704,\"romance, fantasy\",\"First there are nightmares. Then come the memories. Now she must hunt.\nEllie can’t shake the terrifying dreams about monstrous creatures that are\nhunting her, killing her. Then she meets Will and feels on the verge of\nremembering something just beyond her grasp. His attention is intense and\nromantic, and Ellie feels like her soul has known him for centuries. When\nthey meet on a dark street at midnight, Will awakens Ellie’s power, and she\nknows that she can fight the creatures that stalk her in the grim darkness.\nWill holds the key to Ellie’s memories, whole lifetimes of them, and she\ncan no longer pretend anything was just a dream. Her role is to hunt and\nkill the reapers that prey on human souls. In order to survive, she must\nalso hunt for the secrets of her past lives, the dangerous and ancient\nbattle of the angels and the Fallen, and truths that may be too frightening\nto remember. Angelfire is achingly romantic, terrifying, and filled with\nblistering action.\"\r\n4923,5149,12070846,Stephen King,Mile 81,https://images.gr-assets.com/books/1407138212l/12070846.jpg,3.62,14213,\"horror, fiction\",Mile 81Stephen King\r\n4924,5150,446,Paul Auster,The Brooklyn Follies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285831l/446.jpg,3.81,15635,\"fiction, contemporary\",The Brooklyn FolliesPaul Auster\r\n4925,5151,277191,\"Holly Black, Tony DiTerlizzi\",The Ironwood Tree,https://images.gr-assets.com/books/1417954144l/277191.jpg,3.92,27293,\"fantasy, fiction\",\"The Ironwood TreeHolly Black, Tony DiTerlizzi\"\r\n4926,5152,159582,Marjorie Kinnan Rawlings,The Yearling,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348480795l/159582.jpg,3.99,21797,\"classics, fiction\",\"A young boy living in the Florida backwoods is forced to decide the fate of\na fawn he has lovingly raised as a pet.\"\r\n4927,5153,13561164,Katie McGarry,Dare You To,https://images.gr-assets.com/books/1354200468l/13561164.jpg,4.18,32490,\"romance, contemporary\",\"When an intervention forces her to move in with an aunt, Beth becomes a\nmisfit in a new school and unexpectedly falls for star athlete Ryan, whose\nsecrets and compulsion to engage in daring behaviors prompts an intense\nrelationship.\"\r\n4928,5154,6952423,\"Ozzy Osbourne, Chris Ayres\",I Am Ozzy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437442875l/6952423._SY475_.jpg,4.05,16922,\"music, biography\",\"\"\"They've said some crazy things about me over the years. I mean, okay: 'He\nbit the head off a bat.' Yes. 'He bit the head off a dove.' Yes. But then\nyou hear things like, 'Ozzy went to the show last night, but he wouldn't\nperform until he'd killed fifteen puppies . . .' Now me, kill fifteen\npuppies? I love puppies. I've got eighteen of the f**king things at home.\nI've killed a few cows in my time, mind you. And the chickens. I shot the\nchickens in my house that night. It haunts me, all this crazy stuff. Every\nday of my life has been an event. I took lethal combinations of booze and\ndrugs for thirty f**king years. I survived a direct hit by a plane,\nsuicidal overdoses, STDs. I've been accused of attempted murder. Then I\nalmost died while riding over a bump on a quad bike at f**king two miles\nper hour. People ask me how come I'm still alive, and I don't know what to\nsay. When I was growing up, if you'd have put me up against a wall with the\nother kids from my street and asked me which one of us was gonna make it to\nthe age of sixty, which one of us would end up with five kids and four\ngrandkids and houses in Buckinghamshire and Beverly Hills, I wouldn't have\nput money on me, no f**king way. But here I am: ready to tell my story, in\nmy own words, for the first time. A lot of it ain't gonna be pretty. I've\ndone some bad things in my time. I've always been drawn to the dark side,\nme. But I ain't the devil. I'm just John Osbourne: a working-class kid from\nAston, who quit his job in the factory and went looking for a good time.\"\"\"\r\n4929,5155,11077,J. Maarten Troost,The Sex Lives of Cannibals: Adrift in the Equatorial Pacific,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924418l/11077.jpg,3.87,16954,\"travel, memoir\",\"The author discusses his two-year stay on a remote South Pacific island, a\nplace where he anticipated a romantic paradise but instead experienced\nhumorous misadventures and a host of environmental challenges.\"\r\n4930,5156,10445208,Maria V. Snyder,Touch of Power,https://images.gr-assets.com/books/1317629193l/10445208.jpg,4.17,29747,\"fantasy, romance\",\"Avry of Kazan has the gift of healing and is abducted by a band of rogues\nwhose leader demands that she cure a plague-stricken prince, a man leading\na campaign against her people.\"\r\n4931,5157,5158,Kaye Gibbons,A Virtuous Woman ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388593490l/5158.jpg,3.67,21311,\"fiction, contemporary\",\"In alternating chapters, two ill-matched people--Jack Ernest Stokes and his\nwife, Ruby Pitt Woodrow Stokes--describe their lives together and apart\"\r\n4932,5158,59819,Nora Roberts,Tears of the Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436911955l/59819._SY475_.jpg,4.19,24613,\"romance, fiction\",\"Only when Shawn Gallagher mixes his music with magic is he able to see how\nmuch tomboy Brenna O'Toole cares about him.\"\r\n4933,5159,8968,Darren Shan,\"The Vampire Prince (Cirque Du Freak, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255594505l/8968.jpg,4.23,20877,\"fantasy, horror\",\"Branded a traitor, betrayed by a friend, hunted by the vampire clan-Darren\nShan, the Vampire's Assistant, faces certain death. Can Darren reverse the\nodds and outwit a Vampire Prince? Darren's initiation on Vampire Mountain\ndraws to a stunning, bloody conclusion-but the Saga continues ...\"\r\n4934,5160,291356,David Eddings,The Sapphire Rose ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212605l/291356.jpg,3.98,23232,\"fantasy, fiction\",\"Sparhawk, who is in possession of the magical sapphire that can help him\nsave Queen Ehlana, must first dodge the powers of the evil god Azash\"\r\n4935,5161,24452249,Bill Clegg,Did You Ever Have a Family,https://images.gr-assets.com/books/1440378380l/24452249.jpg,3.81,17129,\"fiction, contemporary\",\"\"\"On the eve of her daughter's wedding, June Reid's life is completely\ndevastated when a shocking disaster takes the lives of her daughter, her\ndaughter's fiance, her ex-husband, and her boyfriend, Luke--her entire\nfamily ... Alone and directionless, June drives across the country ... In\nher wake, a community emerges, weaving a beautiful and surprising web of\nconnections through shared heartbreak. From the couple running a motel on\nthe Pacific Ocean where June eventually settles into a quiet half-life, to\nthe wedding's caterer whose bill has been forgotten, to Luke's mother, the\nshattered outcast of the town--everyone touched by the tragedy is changed\nas truths about their near and far histories finally come to light.\"\"--\nProvided by publisher.\"\r\n4936,5162,33813,Nelson DeMille,The Gold Coast,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347496158l/33813.jpg,4.06,18616,\"fiction, thriller\",\"Welcome to the fabled Gold Coast, that stretch on the North Shore of Long\nIsland that once held the greatest concentration of wealth and power in\nAmerica. Here two men are destined for an explosive collision: John Sutter,\nWall Street lawyer, holding fast to a fading aristocratic legacy; and Frank\nBellarosa, the Mafia don who seizes his piece of the staid and unprepared\nGold Coast like a latter-day barbarian chief and draws Sutter and his\nregally beautiful wife, Susan, into his violent world. Told from Sutter's\nsardonic and often hilarious point of view, and laced with sexual passion\nand suspense, The Gold Coast is Nelson DeMille's captivating story of\nfriendship and seduction, love and betrayal.\"\r\n4937,5163,781844,Elisabeth Kübler-Ross,On Death and Dying,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349013156l/781844.jpg,4.15,17937,\"nonfiction, psychology\",\"Explains the attitudes of the dying toward themselves and others and\npresents a humane approach to relieving the psychological suffering of the\nterminally ill and their families.\"\r\n4938,5164,23346918,\"James Patterson, Maxine Paetro\",14th Deadly Sin,https://images.gr-assets.com/books/1425682789l/23346918.jpg,3.99,12823,\"mystery, fiction\",\"With San Francisco under siege and everyone a suspect, the Women's Murder\nClub must risk their lives to save the city-and each other. With a\nbeautiful baby daughter and a devoted husband, Detective Lindsay Boxer can\nsafely say that her life has never been better. In fact (for a change),\nthings seem to be going well for all the members of the Women's Murder Club\nas they gather to celebrate San Francisco Medical Examiner Claire\nWashburn's birthday. But the party is cut short when Lindsay is called to a\ngruesome crime scene, where a woman has been murdered in broad daylight. As\nLindsay investigates, shocking video footage of another crime surfaces. A\nvideo so horrific that it shakes the city to its core. Their faces obscured\nby masks, the cold-blooded criminals on the tape could be anyone-and now\nall of Lindsay's co-workers are suspects. As a rash of violence sweeps\nthrough San Francisco, and public fear and anger grow, Lindsay and her\nfriends must risk their lives in the name of justice-before it's too late.\nWith shocking twists and riveting suspense, 14th DEADLY SIN proves yet\nagain that when it comes to suspense fiction, in the words or Jeffery\nDeaver: \"\"nobody does it better\"\" than James Patterson.\"\r\n4939,5165,827412,Lisa Kleypas,It Happened One Autumn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206425l/827412.jpg,4.15,30993,\"romance, fiction\",\"Four young ladies enter London society with one necessary goal: they must\nuse their feminine wit and wiles to find a husband. So they band together,\nand a daring husband-hunting scheme is born. It Happened at the Ball...\nWhere beautiful but bold Lillian Bowman quickly learned that her\nindependent American ways weren't entirely \"\"the thing.\"\" And the most\ndisapproving of all was insufferable, snobbish, and impossible Marcus, Lord\nWestcliff, London's most eligible aristocrat. It Happened in the Garden…\nWhen Marcus shockingly -- and dangerously–swept her into his arms. Lillian\nwas overcome with a consuming passion for a man she didn't even like. Time\nstood still; it was as if no one else existed…thank goodness they weren't\ncaught very nearly in the act! It Happened One Autumn... Marcus was a man\nin charge of his own emotions, a bedrock of stability. But with Lillian,\nevery touch was exquisite torture, every kiss an enticement for more. Yet\nhow could he consider taking a woman so blatantly unsuitable…as his bride?\"\r\n4940,5166,2833172,Patricia Cornwell,Scarpetta,https://images.gr-assets.com/books/1358277265l/2833172.jpg,3.72,21975,\"mystery, fiction\",ScarpettaPatricia Cornwell\r\n4941,5167,21681,Dennis Lehane,\"Darkness, Take My Hand\",https://images.gr-assets.com/books/1392049150l/21681.jpg,4.17,19019,\"mystery, fiction\",\"Darkness, Take My HandDennis Lehane\"\r\n4942,5168,239103,R.A. Salvatore,Siege of Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389536148l/239103.jpg,4.15,17410,\"fantasy, fiction\",\"In the subterranean city of Menzoberranzan, Drizzt Do'Urden faces his\nultimate challenge, as the matron of a powerful ruling house prepares an\nassault on Mithril Hall and Lloth, the Spider Queen, is unleashed on the\nmetropolis.\"\r\n4943,5170,17201095,Kristen Proby,Play With Me,https://images.gr-assets.com/books/1360471559l/17201095.jpg,4.33,32132,\"romance, sports\",\"Will Montgomery is a successful professional football player and seemingly\nhas it all. He's not used to being told no, and certainly doesn't take no\nfor an answer. So when he turns his charms on his sister's sexy rocker-\nchick friend Meg, he's not only turned down, but met with open hostility,\npiquing his curiosity and libido. He's determined to show her that he's not\nthe arrogant jock she thinks he is, and to get her into his bed. Megan\nMcBride is not impressed with Will Montgomery, his fat contract, fancy car,\nor his arrogant public persona. She doesn't have time for a relationship,\nand if she's learned anything in life, it's that loving means losing, so\nshe guards her heart ferociously. But she can't deny the overwhelming\nattraction to the sexy, tattooed athlete, and when Will starts breaking\ndown her defenses and grabs hold of her heart, will she be able to admit\nher feelings for him, or will her troubled past cause her to lose the first\nman she's ever truly loved? Play With Me is the third book in the With Me\nIn Seattle Series.\"\r\n4944,5171,268604,J.D. Robb,Portrait in Death,https://images.gr-assets.com/books/1483391474l/268604.jpg,4.37,24958,\"mystery, romance\",\"Lieutenant Eve Dallas investigates a brutal crime that plunges her into the\nart world, where nothing is what it seems.\"\r\n4945,5172,17316075,Monica  Murphy,Second Chance Boyfriend,https://images.gr-assets.com/books/1370492442l/17316075.jpg,4.06,30299,\"romance, contemporary\",Second Chance BoyfriendMonica  Murphy\r\n4946,5173,184040,\"Brian K. Vaughan, Pia Guerra, Goran Parlov, José Marzán Jr.\",Y: The Last Man Vol. 4: Safeword,https://images.gr-assets.com/books/1335238541l/184040.jpg,4.25,22207,\"comics, fiction\",\"When a plague of unknown origin kills every mammal with a Y chromosome,\nYorick Brown discovers that he is the only male left and embarks on a\ntranscontinental journey to discover why.\"\r\n4947,5175,8088,Robin McKinley,Sunshine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1571338028l/8088._SY475_.jpg,3.85,27918,\"paranormal, fantasy\",\"All hope for stopping the vampiric elite from controlling earth depends on\nhuman SOFs (Special Other Forces) and the success of their attempt to\nrecruit Sunshine, the daughter of legendary sorcerer Onyx Blaise.\"\r\n4948,5176,64857,Sue Grafton,\"\"\"D\"\" is for Deadbeat \",https://images.gr-assets.com/books/1389287799l/64857.jpg,3.85,26075,\"mystery, crime\",\"\"\"D\"\" is for Deadbeat Sue Grafton\"\r\n4949,5177,10846336,Jesmyn Ward,Salvage the Bones,https://images.gr-assets.com/books/1317067649l/10846336.jpg,3.81,18505,\"fiction, contemporary\",WINNER OF THE NATIONAL BOOK AWARD 2011\r\n4950,5178,22611920,Kristen Callihan,The Hook Up,https://images.gr-assets.com/books/1407891923l/22611920.jpg,4.04,27915,\"romance, sports\",\"USA TODAY BEST-SELLING BOOKThe rules: no kissing on the mouth, no staying\nthe night, no telling anyone, and above all... No falling in loveAnna Jones\njust wants to finish college and figure out her life. Falling for star\nquarterback Drew Baylor is certainly not on her to do list. Confident and\ncharming, he lives in the limelight and is way too gorgeous for his own\ngood. If only she could ignore his heated stares and stop thinking about\ndoing hot and dirty things with him. Easy right?Too bad he's committed to\nmaking her break every rule...Football has been good to Drew. It's given\nhim recognition, two National Championships, and the Heisman. But what he\nreally craves is sexy yet prickly Anna Jones. Her cutting humor and blatant\ndisregard for his fame turns him on like nothing else. But there's one\nproblem: she's shut him down. Completely.That is until a chance encounter\nleads to the hottest sex of their lives, along with the possibility of\nsomething great. Unfortunately, Anna wants it to remain a hook up. Now it's\nup to Drew to tempt her with more: more sex, more satisfaction, more time\nwith him. Until she's truly hooked. It's a good thing Drew knows all about\nwinning.All's fair in love and football...Game on\"\r\n4951,5179,14069,Naomi Novik,Throne of Jade,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1578529876l/14069._SY475_.jpg,3.89,23015,\"fantasy, fiction\",\"British naval officer Will Laurence's partnership with Temeraire, a rare\nChinese imperial dragon, is threatened when Temeraire is summoned to the\nimperial court by the powerful Chinese emperor, who had intended the dragon\nto be a gift for Napoleon Bonaparte, not the companion of a lowly English\npilot. Original.\"\r\n4952,5180,2368,David McCullough,Mornings on Horseback,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441770174l/2368.jpg,4.1,18321,\"biography, history\",\"Examines the life of Theodore Roosevelt from age ten to twenty-seven,\nfocusing on the influence of his family relationships and experiences on\nhis growth to manhood\"\r\n4953,5181,79426,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",Y: The Last Man Vol. 7: Paper Dolls,https://images.gr-assets.com/books/1311830366l/79426.jpg,4.25,22220,\"comics, fiction\",\"When a plague of unknown origin kills every mammal with a Y chromosome,\nYorick Brown discovers that he is the only male left and embarks on a\ntranscontinental journey to discover why.\"\r\n4954,5182,92160,Edward Rutherfurd,London: The Novel,https://images.gr-assets.com/books/1320450619l/92160.jpg,4.06,18902,\"fiction, history\",\"The triumphs and failures of seven individual family clans span the history\nof a city from the third-century Roman occupation of Londinium through such\neras as the Norman conquest and the Elizabethan period\"\r\n4955,5183,16116760,Natasha Preston,Silence,https://images.gr-assets.com/books/1351519075l/16116760.jpg,3.93,13042,\"romance, contemporary\",\"For eleven years, Oakley Farrell has been silent. At the age of five, she\nstopped talking, and no one seems to know why. Refusing to communicate\nbeyond a few physical actions, Oakley remains in her own little world.\nBullied at school, she has just one friend, Cole Benson. Cole stands by\nher, refusing to believe that she is not perfect the way she is. Over the\nyears, they have developed their own version of a normal friendship.\nHowever, will it still work as they start to grow even closer? When Oakley\nis forced to face someone from her past, can she hold her secret in any\nlonger?\"\r\n4956,5184,20309175,\"Stephanie Perkins, Holly Black, Ally Carter, Matt de la Pena, Gayle Forman, Jenny Han, David Levithan, Kelly Link, Myra McEntire, Rainbow Rowell, Laini Taylor, Kiersten White\",My True Love Gave to Me: Twelve Holiday Stories,https://images.gr-assets.com/books/1459353572l/20309175.jpg,3.73,22480,\"fiction, fantasy\",\"If you love holiday stories, holiday movies, made-for-TV-holiday specials,\nholiday episodes of your favorite sitcoms and, especially, if you love\nholiday anthologies, you're going to fall in love with My True Love Gave to\nMe: Twelve Holiday Stories by twelve bestselling young adult writers (Holly\nBlack, Ally Carter, Matt de La Peña, Gayle Forman, Jenny Han, David\nLevithan, Kelly Link, Myra McEntire, Rainbow Rowell, Stephanie Perkins,\nLaini Tayler and Kiersten White), edited by the international bestselling\nStephanie Perkins. Whether you celebrate Christmas or Hanukkah, Winter\nSolstice or Kwanzaa, there's something here for everyone. So curl up by the\nfireplace and get cozy. You have twelve reasons this season to stay indoors\nand fall in love.\"\r\n4957,5185,20509356,Hugh Howey,Sand Omnibus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389416278l/20509356.jpg,3.96,14612,\"fiction, fantasy\",\"The old world is buried. A new one has been forged atop the shifting dunes.\nHere in this land of howling wind and infernal sand, four siblings find\nthemselves scattered and lost. Their father was a sand diver, one of the\nelite few who could travel deep beneath the desert floor and bring up the\nrelics and scraps that keep their people alive. But their father is gone.\nAnd the world he left behind might be next. Welcome to the world of Sand, a\nnovel by New York Times best-selling author Hugh Howey. Sand is an\nexploration of lawlessness, the tale of a land ignored. Here is a people\nleft to fend for themselves. Adjust your ker and take a last, deep breath\nbefore you enter.\"\r\n4958,5186,18616975,Scott  Meyer,Off to Be the Wizard,https://images.gr-assets.com/books/1390179189l/18616975.jpg,3.98,12885,\"fantasy, fiction\",\"An io9 Can't Miss Science Fiction and Fantasy title in March 2014. Martin\nBanks is just a normal guy who has made an abnormal discovery: he can\nmanipulate reality, thanks to reality being nothing more than a computer\nprogram. With every use of this ability, though, Martin finds his little\n\"\"tweaks\"\" have not escaped notice. Rather than face prosecution, he decides\ninstead to travel back in time to the Middle Ages and pose as a wizard.\nWhat could possibly go wrong? An American hacker in King Arthur's court,\nMartin must now train to become a full-fledged master of his powers,\ndiscover the truth behind the ancient wizard Merlin...and not, y'know, die\nor anything.\"\r\n4959,5187,659388,Richard Russo,Nobody's Fool,https://images.gr-assets.com/books/1463435569l/659388.jpg,4.12,18392,\"fiction, contemporary\",\"An unlucky man in a deadbeat town in upstate New York, Sully must overcome\nnumerous obstacles--a bum knee, terminal underemployment, and a not-too-\nhelpful group of friends--as he copes with a new problem, his long-\nestranged son. Reprint. Movie tie-in.\"\r\n4960,5188,66370,\"Richard Bachman, Stephen King\",Rage,https://images.gr-assets.com/books/1299003176l/66370.jpg,3.8,21746,\"horror, fiction\",\"RageRichard Bachman, Stephen King\"\r\n4961,5189,28407,\"Émile Zola, Roger Pearson\",Germinal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208755l/28407.jpg,4.09,19325,\"classics, fiction\",\"During the Second Empire, Etienne Lantier, an unemployed railway worker,\nexperiences the miserable life of the coal miners in northern France and\nenters the struggle between capital and labor. Reprint.\"\r\n4962,5190,13573795,Abbi Glines,Ceaseless,https://images.gr-assets.com/books/1351606331l/13573795.jpg,4.2,27823,\"paranormal, romance\",\"Can he make her fall in love with him... again? When Pagan Moore proved\nworthy of Death's devotion, he was given the gift of getting to keep her.\nBut Dank was never promised that Pagan would keep him. When a soul is\ncreated, so is its mate. In every lifetime those souls find each other.\nThey complete the other's destiny. It's time for Pagan's soul to choose if\nshe truly wants an eternity at Death's side or if she wants the mate\ncreated just for her. Dank didn't think he had to worry about her choice.\nHe knew where her heart belonged. Until he realized that every kiss, every\ntouch, every moment of their time together would be washed from her\nmemories. He would have to win her heart all over again and prove to her\nsoul that he was where she belonged. If only her soul's mate wasn't right\nthere standing in his way.\"\r\n4963,5192,76740,Alfred Bester,The Demolished Man,https://images.gr-assets.com/books/1360171879l/76740.jpg,3.99,20685,\"fiction, classics\",\"﻿#4 in the Millennium SF Masterworks series, a library of the finest\nscience fiction ever written. The first Hugo Award winner for best novel in\n1953. “One of the all-time classics of science fiction.”—Isaac Asimov\n“Bester's two superb books have stood the test of time. For nearly sixty\nyears they’ve held their place on everybody’s list of the ten greatest sf\nnovels” —Robert Silverberg In a world policed by telepaths, Ben Reich plans\nto commit a crime that hasn’t been heard of in 70 years: murder. That’s the\nonly option left for Reich, whose company is losing a 10-year death\nstruggle with rival D’Courtney Enterprises. Terrorized in his dreams by The\nMan With No Face and driven to the edge after D’Courtney refuses a merger\noffer, Reich murders his rival and bribes a high-ranking telepath to help\nhim cover his tracks. But while police prefect Lincoln Powell knows Reich\nis guilty, his telepath's knowledge is a far cry from admissible evidence.\nAlfred Bester was among the first important authors of contemporary science\nfiction. His passionate novels of worldly adventure, high intellect, and\ntremendous verve, The Stars My Destination and the Hugo Award winning The\nDemolished Man, established Bester as a s.f. grandmaster, a reputation that\nwas ratified by the Science Fiction Writers of America shortly before his\ndeath. Bester also was an acclaimed journalist for Holiday magazine, a\nreviewer for the Magazine of Fantasy and Science Fiction and even a writer\nfor Superman.\"\r\n4964,5193,9578590,Melissa de la Cruz,Lost In Time,https://images.gr-assets.com/books/1298681924l/9578590.jpg,4.05,23154,\"fantasy, paranormal\",Lost In TimeMelissa de la Cruz\r\n4965,5194,199786,Meg Cabot,Ninth Key,https://images.gr-assets.com/books/1327954597l/199786.jpg,4.07,29922,\"paranormal, fantasy\",\"The Ninth Key is the second book in the thrilling, romantic Mediator\nseries, from the New York Times bestselling author of the Princess Diaries,\nMeg Cabot. Everything is going great for Suze. Her new life in California\nis a whirlwind of parties and excellent hair days. Tad Beaumont, the\nhottest boy in town, has even asked Suze out on her very first date. Suze\nis so excited that she's willing to ignore her misgivings about\nTad...particularly the fact that he's not Jesse, whose ghostly status—not\nto mention apparent disinterest in her—make him unattainable. What Suze\ncan't ignore, however, is the ghost of a murdered woman whose death seems\ndirectly connected to dark secrets hidden in none other than Tad Beaumont's\npast. Don't miss the delightfully funny supernatural Mediator series, from\nNew York Times bestselling author Meg Cabot.\"\r\n4966,5195,693172,Dean Koontz,Twilight Eyes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223638154l/693172.jpg,3.86,20694,\"horror, fiction\",\"Slim Mackenzie, a young man both blessed and cursed by \"\"twilight eyes,\"\" is\nsought by the police for murder as he stalks the diabolical \"\"Others,\"\" who\nfeed their twisted needs with human suffering.\"\r\n4967,5196,25644437,Lisa Gardner,Find Her,https://images.gr-assets.com/books/1444071262l/25644437.jpg,4.12,15957,\"mystery, thriller\",Find HerLisa Gardner\r\n4968,5197,16122034,\"J. Lynn, Jennifer L. Armentrout\",Frigid,https://images.gr-assets.com/books/1364364323l/16122034.jpg,3.79,32611,\"romance, contemporary\",\"Originally published November 2013 For twenty-one-year-old Sydney, being in\nlove with Kyler isn't anything new. They'd been best friends ever since he\npushed her down on the playground and she made him eat a mud pie. Somewhere\nover the years, she fell for him and fell hard. The big problem with that?\nKyler puts the 'man' in man-whore. He's never stayed with a girl longer\nthan a few nights, and with it being their last year in college, Syd\ndoesn't want to risk their friendship by declaring her love. Kyler has\nalways put Syd on a pedestal that was too high for him to reach. To him,\nshe's perfect and she's everything. But the feelings he has for her, he's\nalways hidden away or focused on any other female. After all, Kyler will\nalways be the poor boy from the wrong side of tracks, and Syd will always\nbe the one girl he can never have. But when they're stranded together at a\nposh ski resort due to a massive Nor'easter, there's nothing stopping their\nred-hot feelings for each other from coming to the surface. Can their\nfriendship survive the attraction? Better yet, can they survive at all?\nBecause as the snow falls, someone is stalking them, and this ski trip may\nbe a life-changer in more ways than one.\"\r\n4969,5198,16532,\"Isabel Allende, Margaret Sayers Peden\",De amor y de sombra,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919975l/16532.jpg,3.96,15919,\"fiction, romance\",\"De amor y de sombraIsabel Allende, Margaret Sayers Peden\"\r\n4970,5199,6202556,Jacqueline Kelly,The Evolution of Calpurnia Tate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437655533l/6202556._SY475_.jpg,3.97,22291,\"fiction, science\",\"Calpurnia Virginia Tate is eleven years old in 1899 when she wonders why\nthe yellow grasshoppers in her Texas backyard are so much bigger than the\ngreen ones.With a little help from her notoriously cantankerous\ngrandfather, an avid naturalist, she figures out that the green\ngrasshoppers are easier to see against the yellow grass, so they are eaten\nbefore they can get any larger. As Callie explores the natural world around\nher, she develops a close relationship with her grandfather, navigates the\ndangers of living with six brothers, and comes up against just what it\nmeans to be a girl at the turn of the century. Debut author Jacqueline\nKelly deftly brings Callie and her family to life, capturing a year of\ngrowing up with unique sensitivity and a wry wit. The Evolution of\nCalpurnia Tate is a 2010 Newbery Honor Book and the winner of the 2010 Bank\nStreet - Josette Frank Award.\"\r\n4971,5200,3678651,Katie Alender,Bad Girls Don't Die,https://images.gr-assets.com/books/1344514129l/3678651.jpg,4.07,18862,\"paranormal, horror\",Bad Girls Don't DieKatie Alender\r\n4972,5201,41707,Clive Cussler,Atlantis Found,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389418438l/41707.jpg,3.96,19102,\"fiction, thriller\",\"When a research ship manned by Dirk Pitt and members of the U.S. National\nUnderwater and Marine Agency is nearly sunk by a vessel from the past, Pitt\nfinds himself caught up in an ancient mystery with lethal ties to the\npresent, matching wits with a malevolent and powerful adversary. Reprint.\"\r\n4973,5202,4070095,David Mazzucchelli,Asterios Polyp,https://images.gr-assets.com/books/1327877671l/4070095.jpg,4.19,19635,\"comics, fiction\",\"Asterios Polyp, its arrogant, prickly protagonist, is an award-winning\narchitect who's never built an actual building, and a pedant in the midst\nof a spiritual crisis. After the structure of his own life falls apart, he\nruns away to try to rebuild it into something new.\"\r\n4974,5203,651260,David Eddings,Domes of Fire,https://images.gr-assets.com/books/1388212602l/651260.jpg,3.98,22206,\"fantasy, fiction\",\"Years after Sparhawk triumphed over the evil god Azash, Sparhawk and his\nqueen must journey east with a handful of trusted companions, escorted by\nthe giant Atan warriors.\"\r\n4975,5204,138397,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",\"The Walking Dead, Vol. 4: The Heart's Desire\",https://images.gr-assets.com/books/1460242153l/138397.jpg,4.23,21488,\"horror, comics\",\"The Walking Dead, Vol. 4: The Heart's DesireRobert Kirkman, Charlie Adlard, Cliff Rathburn\"\r\n4976,5205,6277410,Kazu Kibuishi,The Stonekeeper's Curse,https://images.gr-assets.com/books/1420153715l/6277410.jpg,4.33,21461,\"fantasy, comics\",The Stonekeeper's CurseKazu Kibuishi\r\n4977,5206,13066,Carl Hiaasen,Sick Puppy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441339786l/13066._SY475_.jpg,3.88,18248,\"fiction, mystery\",\"Independently wealthy eco-terrorist Twilly Spree teaches a flagrant\nlitterbug a lesson--and leaves the offender's precious Range Rover swarming\nwith hungry dung beetles. When he discovers the litterer is one of the most\npowerful political fixers in Florida, the real Hiaasen-style fun begins.\"\r\n4978,5207,24818,Bill Watterson,The Days Are Just Packed: A Calvin and Hobbes Collection,https://images.gr-assets.com/books/1418211162l/24818.jpg,4.68,19143,\"comics, fiction\",\"The irrepressible Calvin, aided by his mischievous tiger sidekick, Hobbes,\nsets out to save the world with his alter egos, Spaceman Spiff and\nStupendous Man, while coping with Miss Wormwood, Santa, Susie, and the\nmonsters under his bed. Simultaneous.\"\r\n4979,5208,3253215,Danny Gregory,\"An Illustrated Life: Drawing Inspiration From The Private Sketchbooks Of Artists, Illustrators And Designers\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275504l/3253215.jpg,3.72,15601,\"art, nonfiction\",\"Find Insight and Inspiration for Your Creative Life An artist's journal is\npacked with sketches and captions; some rough, some polished. The margins\nsometimes spill over with hurriedly scrawled shopping lists and phone\nnumbers. The cover may be travel-worn and the pages warped from\nwatercolors. Open the book, and raw creativity seeps from each color and\nline. The intimacy and freedom on its pages are almost like being inside\nthe artist's mind: You get a direct window into risks, lessons, mistakes,\nand dreams. The private worlds of these visual journals are exactly what\nyou'll find inside An Illustrated Life. This book offers a sneak peak into\nthe wildly creative imaginations of 50 top illustrators, designers and\nartists. Included are sketchbook pages from R. Crumb, Chris Ware, James\nJean, James Kochalka, and many others. In addition, author Danny Gregory\nhas interviewed each artist and shares their thoughts on living the\nartistic life through journaling. Watch artists—through words and\nimages—record the world they see and craft the world as they want it to be.\nThe pages of An Illustrated Life are sometimes startling, sometimes\nendearing, but always inspiring. Whether you're an illustrator, designer,\nor simply someone searching for inspiration, these pages will open a whole\nnew world to you.\"\r\n4980,5209,13154933,Dean Koontz,Odd Apocalypse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388662957l/13154933.jpg,3.93,16063,\"horror, fiction\",\"Odd Thomas and his companion Annamaria, temporarily taking refuge at\nRoseland, the opulent estate of a reclusive billionaire, discover that the\nestate and its masters are hiding deep and dreadful secrets.\"\r\n4981,5210,80369,\"Michel Foucault, Alan Sheridan, Thomas Mathiesen, Walter Seitter, Drago Braco Rotar\",Surveiller et punir. Naissance de la prison,https://images.gr-assets.com/books/1400737037l/80369.jpg,4.21,16892,\"philosophy, history\",\"Study of the intersection of history and philosophy as it relates to recent\nFrench political change, evidenced in essays concerning popular justice,\npower struggles, and the history of sexuality\"\r\n4982,5211,215631,Catherine Ryan Hyde,Pay It Forward,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388936719l/215631.jpg,4.15,18220,\"fiction, contemporary\",\"THE MIRACLE OF INNOCENCE The story of how a boy who believed in the\ngoodness of human nature set out to change the world. Pay It Forward is a\nwondrous and moving novel about Trevor McKinney, a twelve-year-old boy in a\nsmall California town who accepts the challenge that his teacher gives his\nclass, a chance to earn extra credit by coming up with a plan to change the\nworld for the better -- and to put that plan into action. The idea that\nTrevor comes up with is so simple and so naïve that when others learn of it\nthey are dismissive. Even Trevor himself begins to doubt when his \"\"pay it\nforward\"\" plan seems to founder on a combination of bad luck and the worst\nof human nature. What is his idea? Trevor chooses three people for whom he\nwill do a favor, and then when those people thank him and ask how they\nmight pay him back, he will tell them that instead of paying him back, they\nshould each \"\"pay it forward\"\" by choosing three people for whom they can do\nfavors, and in turn telling those people to pay it forward. It's nothing\nless than a human chain letter of kindness and good will. Does his plan\nwork? No. And yes -- it works wonderfully, but only after it has seemed to\nTrevor that maybe all his efforts have been for naught. The first person he\nchooses to help -- a homeless man to whom he gives his paper-route money so\nhe can make himself presentable enough to find a job -- disappoints him by\nreturning to a life of dissolution and eventually ending up in jail. The\nsecond is a lady on his paper route, old and alone and infirm, and with a\ngarden that needs tending. No sooner has Trevor begun to help her, however,\nthan she goes and dies on him. The third person Trevor hopes to help is his\nteacher, Reuben St. Clair, a scarred, bitter, untrusting man who seems to\ncome truly alive only when in front of his class. Trevor's goal is to match\nhim with his mother, Arlene, a pretty, hardworking woman who has raised\nTrevor more or less alone, but who Trevor feels has a lot to offer the\nright man. It proves not to be a match made in heaven, though, and Trevor's\ndismay only deepens as he watches these two people come so close to\nachieving the connection he wants for them, only to turn away at the last\nmoment. Failure seems inevitable, and Trevor is resigned. What he doesn't\nrealize, however, is that there really is a good side to human nature, and\nthat the tiny seed of kindness and caring he planted has taken root. In\nneighborhoods in other California towns, and as far away as Los Angeles,\nthere are others following the rules of \"\"paying it forward.\"\" Soon fame\ncomes knocking, bringing with it excitement and an unforeseen tragedy. In\nthe end, Pay It Forward is the story of seemingly ordinary people made\nextraordinary by the simple faith of a child. In the tradition of the\nsuccessful and inspirational television show Touched by an Angel, and the\nphenomenally successful novel and film Forrest Gump, Pay It Forward is a\nwork of charm, wit, and remarkable inspiration, a story of hope for today\nand for many tomorrows to come.\"\r\n4983,5212,40168,Danny Gregory,The Creative License: Giving Yourself Permission to Be The Artist You Truly Are,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438844434l/40168._SX318_.jpg,3.93,18139,\"art, nonfiction\",\"When Danny Gregory's life was turned upside down by tragedy, he learned to\ncope by teaching himself to draw. The result was a complete transformation\nof his life, his priorities, his career, and the way he saw the world. In\nhandwritten chapters full of his lush watercolor illustrations, Danny now\noffers readers a program for reconnecting to their own creative energies,\nusing drawing as an example. He gently instructs us in the art of allowing\nourselves to fail, giving up the expectation of perfection and opening our\neyes to the beauty around us. The result is the permission to express\nourselves fully and take part in the creative process without fear. Artist\nor not, readers of all stripes will find inspiration in this unique and\nbeautiful book.\"\r\n4984,5213,569346,\"Arina Tanemura, Tomo Kimura\",満月をさがして 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348996617l/569346.jpg,4.06,19443,\"manga, fantasy\",\"Young Mitsuki loves singing and dreams of becoming a pop star.\nUnfortunately, a malignant tumor in her throat prevents her from pursuing\nher passion. However, her life turns around when two surprisingly fun-\nloving harbingers of death appear to grant Mitsuki a temporary reprieve\nfrom her illness and give her singing career a magical push start.\"\r\n4985,5214,68531,Bernard Cornwell,Harlequin,https://images.gr-assets.com/books/1407709312l/68531.jpg,4.12,16032,\"fiction, fantasy\",HarlequinBernard Cornwell\r\n4986,5215,12535,Anne Lamott,Plan B: Further Thoughts on Faith,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506548190l/12535._SY475_.jpg,4.05,18056,\"memoir, spirituality\",\"A spiritual guide by the author of the best-selling Traveling Mercies\nshares humorous and inspirational advice on how to manage with grace in\ntoday's world of terrorism, while caring for aging parents and children\nsimultaneously, and in the face of environmental threats. Reprint.\"\r\n4987,5216,62212,Sarah Dunant,In the Company of the Courtesan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924737l/62212.jpg,3.76,19614,\"fiction, history\",\"In 1527, when the city of Rome is sacked and burned by an invading army,\nthe famed courtesan Fiammetta Bianchini and her dwarf companion, Bucino\nTeodoldi, escape to the wealthy and powerful city of Venice in order to\nrebuild their business, but they soon discover unexpected temptations and\nchallenges that will have profound repercussions for them all. Reader's\nGuide included. Reprint. 250,000 first printing.\"\r\n4988,5217,13630171,Peter V. Brett,The Skull Throne,https://images.gr-assets.com/books/1408637760l/13630171.jpg,4.14,15946,\"fantasy, fiction\",\"\"\"Built from the skulls of fallen generals and demon princes, the Skull\nThrone of Krasia is a seat of honor and powerful magic that keeps the demon\ncorelings at bay. Now it stands empty. From atop it, Ahmann Jardir was\nmeant to conquer the known world, forging a unified army to end the demon\nwar once and for all. Arlen Bales, the Warded Man, stood against this\ncourse, challenging Jardir to a duel to the death. Rather than risk defeat,\nArlen cast Jardir and himself from a precipice, opening a struggle for\nsuccession that threatens to tear the Free Cities of Thesa apart\"\"--Back\ncover.\"\r\n4989,5218,84133,Sherrilyn Kenyon,Devil May Cry,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442795932l/84133._SY475_.jpg,4.32,30249,\"paranormal, romance\",\"Sin seeks revenge on Artemis by kidnapping a woman he believes to be the\ngoddess, only to discover that he has abducted her servant, Katra, who\npersuades him to save Artemis from an enemy who threatens all human life.\"\r\n4990,5219,30002998,Nicholas Sparks,Two By Two,https://images.gr-assets.com/books/1461620101l/30002998.jpg,3.9,27691,\"romance, fiction\",Two By TwoNicholas Sparks\r\n4991,5220,96081,Anita Shreve,Sea Glass,https://images.gr-assets.com/books/1422821164l/96081.jpg,3.65,19585,\"fiction, romance\",\"When Honora and Sexton Beecher are rendered penniless by the crash of the\nstock market, Sexton is forced to work in a nearby mill that is plagued by\nviolence, and as they try to reconstruct their lives, they are confronted\nby passions of every kind.\"\r\n4992,5221,248470,Shannon Hale,River Secrets,https://images.gr-assets.com/books/1362875702l/248470.jpg,4.03,27399,\"fantasy, romance\",River SecretsShannon Hale\r\n4993,5222,18404285,Jeffrey Archer,Be Careful What You Wish For,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392576182l/18404285.jpg,4.04,13714,\"fiction, mystery\",Be Careful What You Wish ForJeffrey Archer\r\n4994,5223,12925063,Amy A. Bartol,Inescapable,https://images.gr-assets.com/books/1327896605l/12925063.jpg,4.05,25001,\"paranormal, fantasy\",\"My name is Evie Claremont and this was to be the making of me–my freshman\nyear of college. I'd been hoping that once I'd arrived on Crestwood's\ncampus, the nightmare that I've been having would go away. It hasn't. I may\nbe an inexperienced seventeen-year-old, but I'm grounded…sane. I look for\nrational explanations to even the strangest circumstances. Since meeting\nsophomore Reed Wellington, however, nothing makes any sense. Whenever he's\nnear, I feel an attraction to him–a magnetic kind of force pulling me\ntowards him. I know what you're thinking…that sounds fairly awesome. Yeah,\nit would be…if he liked me, but Reed acts as if I'm the worst thing that\nhas ever happened to Crestwood…or him. But get this, for some reason every\ntime I turn around he's there, barging into my life. What is the secret\nthat he's keeping from me? I'm hoping that it's anything but what I\nsuspect: that he's not exactly normal…and neither am I. So, maybe Crestwood\nwon't be the making of me, but it could be the breaking of me. I've been\nleft to wonder if the dark future my dream is foretelling is…inescapable.\"\r\n4995,5224,6918909,Aprilynne Pike,Illusions,https://images.gr-assets.com/books/1324797814l/6918909.jpg,4.12,26291,\"fantasy, romance\",\"\"\"I don't do patrols, I don't go hunting, I just stick close to you. You\nlive your life, I'll keep you safe,\"\" Tamani said, sweeping a lock of hair\nfrom her face. \"\"Or die trying.\"\" Laurel hasn't seen Tamani since she begged\nhim to let her go last year. Though her heart still aches, Laurel is\nconfident that David was the right choice. But just as life returns to\nnormal, Laurel realizes that a hidden enemy lies in wait. Once again,\nLaurel must turn to Tamani to protect and guide her, for the danger that\nnow threatens Avalon is one that no faerie thought would ever be possible.\"\r\n4996,5225,333907,Joe McGinniss,Fatal Vision,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348382354l/333907.jpg,4.1,18395,\"nonfiction, crime\",\"A study of a brutal multiple murder and its bizarre aftermath focuses on\nJeffrey MacDonald, who was convicted, in 1979, of the murders of his\npregnant wife and two young daughters nine years earlier.\"\r\n4997,5226,1491906,Sudhir Venkatesh,Gang Leader for a Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347568042l/1491906.jpg,4.01,15387,\"nonfiction, memoir\",\"Recounts the story of a young sociologist whose infiltration of a Chicago\ndrug gang was originally introduced in the work \"\"Freakonomics,\"\" describing\nthe author's idealism, his friendship with gang leader JT, and his witness\nto the organization's crack-selling trade.\"\r\n4998,5227,43915,\"Raymond E. Feist, Michael Avon Oeming, Bryan J.L. Glass, Ryan Stegman\",\"Magician: Apprentice (The Riftwar Saga, #1) \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390285539l/43915.jpg,4.44,17782,\"fantasy, fiction\",\"Magician: Apprentice (The Riftwar Saga, #1) Raymond E. Feist, Michael Avon Oeming, Bryan J.L. Glass, Ryan Stegman\"\r\n4999,5228,183554,John C. Maxwell,Developing the Leader Within You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189323l/183554.jpg,4.18,15817,\"business, christian\",\"Identifies five characteristics of \"\"leader managers,\"\" explores different\nleadership styles, and outlines principles for fostering integrity and\nself-discipline while inspiring, motivating, and influencing others.\"\r\n5000,5229,100933,C.S. Lewis,That Hideous Strength,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348645618l/100933.jpg,3.87,19866,\"fantasy, fiction\",\"Written during the dark hours immediately before and during World War II,\nC. S. Lewis's Space Trilogy, of which That Hideous Strength is the third\nand final volume, stands alongside such works as Albert Camus's The Plague\nand George Orwell's 1984 as a timely parable that has become timeless,\nbeloved by succeeding generations as much for the sheer wonder of its\nstorytelling as for the significance of its moral concerns. The final book\nin C. S. Lewis's acclaimed Space Trilogy, which includes Out of the Silent\nPlanet and Perelandra, That Hideous Strength concludes the adventures of\nthe matchless Dr. Ransom. The dark forces that were repulsed in Out of the\nSilent Planet and Perelandra are massed for an assault on the planet Earth\nitself. Word is on the wind that the mighty wizard Merlin has come back to\nthe land of the living after many centuries, holding the key to ultimate\npower for that force which can find him and bend him to its will. A\nsinister technocratic organization is gaining power throughout Europe with\na plan to \"\"recondition\"\" society, and it is up to Ransom and his friends to\nsquelch this threat by applying age-old wisdom to a new universe dominated\nby science. The two groups struggle to a climactic resolution that brings\nthe Space Trilogy to a magnificent, crashing close.\"\r\n5001,5230,18652002,Laline Paull,The Bees,https://images.gr-assets.com/books/1384018069l/18652002.jpg,3.67,15848,\"fiction, fantasy\",\"This brilliantly imagined debut tells the story of Flora 717, a devout\nyoung worker bee who finds herself in possession of a deadly secret Flora\n717 is a sanitation worker, a member of the lowest caste in her orchard\nhive, where work and sacrifice are the highest virtues and worship of the\nbeloved Queen the only religion. But Flora is not like other bees. With\ncircumstances threatening the hive's survival, her curiosity is regarded as\na dangerous flaw, but her courage and strength are assets. She is allowed\nto feed the newborns in the royal nursery and then to become a forager,\nflying alone and free to collect nectar and pollen. A feat of bravery\ngrants her access to the Queen's inner sanctum, where she discovers\nmysteries about the hive that are both profound and ominous. But when Flora\nbreaks the most sacred law of all—daring to challenge the Queen's\npreeminence—enemies abound, from the fearsome fertility police who enforce\nthe hive's strict social hierarchy to the high priestesses jealously wedded\nto power. Her deepest instincts to serve and sacrifice are now overshadowed\nby a greater power: a fierce maternal love that will bring her into\nconflict with her conscience, her heart, and her society—and lead her to\nperform unthinkable deeds. Thrilling, suspenseful, and spectacularly\nimaginative, The Bees and its dazzling young heroine will forever change\nthe way you look at the world outside your window.\"\r\n5002,5231,2458340,Sara Gruen,Ape House,https://images.gr-assets.com/books/1328023833l/2458340.jpg,3.46,21093,\"fiction, contemporary\",Ape HouseSara Gruen\r\n5003,5232,18884,\"David Eddings, Leigh Eddings\",Polgara the Sorceress,https://images.gr-assets.com/books/1403179783l/18884.jpg,4.07,22802,\"fantasy, fiction\",\"Polgara, the sorceress daughter of Belgarath and Poledra, looks back over\nher three thousand years of working magic, detailing her various roles as\nprotector, adversary, ruler, and guardian\"\r\n5004,5233,22674105,Kevin Kwan,China Rich Girlfriend,https://images.gr-assets.com/books/1419179404l/22674105.jpg,3.74,17708,\"fiction, contemporary\",\"\"\"Kevin Kwan, ... author of Crazy Rich Asians, is back with a ... new novel\nof social climbing, secret e-mails, art-world scandal, lovesick\nbillionaires, and the outrageous story of what happens when Rachel Chu,\nengaged to marry Asia's most eligible bachelor, discovers her\nbirthfather\"\"--\"\r\n5005,5234,216304,Elizabeth George,A Woman After God's Own Heart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183660l/216304.jpg,4.29,16200,\"christian, nonfiction\",\"Change Your Priorities to Change Your Life and Your Home You will\nexperience peace, order, and joy when you follow God's guidelines for every\narea of your life, and best of all, you will become a woman after His\nheart! Elizabeth George shares God's Word and woman-to-woman practical\nwisdom on how you can pursue God's priorities by... putting God first in\nyour day, your heart, and your life improving your relationships with\nfamily and friends building a strong bond with your husband raising your\nchildren to follow Jesus and make right choices growing in your service to\nothers As you embrace God's plans for you, you will find real purpose in a\nlife of prayer and practicing God's priorities as you become A Woman After\nGod's Own Heart®.\"\r\n5006,5235,206195,Brad Thor,State Of The Union,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522074l/206195.jpg,4.2,16466,\"thriller, fiction\",\"“The perfect all-American hero” (Nelson DeMille, #1 New York Times\nbestselling author) Scot Harvath is on the hunt for a dangerous killer bent\non world domination in this white-knuckled thrill ride from #1 New York\nTimes bestselling author Brad Thor. America’s worst nightmare has just\nbecome a brutal reality. The most unlikely terrorist enemy of all now holds\na knife against the country’s throat. With both diplomatic and conventional\nmilitary options swept from the table, the president calls upon Navy SEAL\nturned Secret Service agent, Scot Harvath, to disable a brilliantly\norchestrated conspiracy intended to bring the United States to its knees.\nTeamed with beautiful Russian Intelligence agent Alexandra Ivanova and a\nhighly trained CIA paramilitary detachment, Harvath embarks on an\nadrenaline-fueled search that spans the world—and leads to a final, deadly\nshowdown on American soil, with a lethal and sinister enemy from the past.\"\r\n5007,5236,15793186,Ann Leary,The Good House,https://images.gr-assets.com/books/1392668194l/15793186.jpg,3.66,16490,\"fiction, contemporary\",The Good HouseAnn Leary\r\n5008,5237,14362,Rudolfo Anaya,\"Bless Me, Ultima\",https://images.gr-assets.com/books/1474056548l/14362.jpg,3.74,18380,\"fiction, classics\",\"This coming-of-age classic and the bestselling Chicano novel of all time\nfollows a young boy as he questions his faith and beliefs -- now one of\nPBS's \"\"100 Great American Reads.\"\" Antonio Marez is six years old when\nUltima comes to stay with his family in New Mexico. She is a curandera, one\nwho cures with herbs and magic. Under her wise wing, Tony will probe the\nfamily ties that bind and rend him, and he will discover himself in the\nmagical secrets of the pagan past--a mythic legacy as palpable as the\nCatholicism of Latin America. And at each life turn there is Ultima, who\ndelivered Tony into the world...and will nurture the birth of his soul. The\nwinner of the 2015 National Humanities Medal, Rudolfo Anaya is acclaimed as\nthe father of Chicano literature in English and for his rich and\ncompassionate writing about the Mexican-American experience.\"\r\n5009,5238,9913,Bret Easton Ellis,Glamorama,https://images.gr-assets.com/books/1403179508l/9913.jpg,3.47,14947,\"fiction, contemporary\",\"A young man from the fashionable, celebrityobsessed society of New York\nfinds himself gradually drawn into a shadowy, dark side of that society,\nuntil he becomes trapped in terrifying world in which politics and family,\nterrorism and fame become inextricably intertwined. Reprint. 50,000 first\nprinting.\"\r\n5010,5239,169211,Sue Grafton,F is for Fugitive,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789157l/169211.jpg,3.9,24842,\"mystery, fiction\",F is for FugitiveSue Grafton\r\n5011,5240,2033352,Jo Nesbø,\"Frelseren (Harry Hole, #6)\",https://images.gr-assets.com/books/1418343566l/2033352.jpg,4.07,9337,\"crime, fiction\",\"Frelseren (Harry Hole, #6)Jo Nesbø\"\r\n5012,5241,61264,Alessandro Baricco,Seta,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924695l/61264.jpg,3.82,14555,\"fiction, romance\",SetaAlessandro Baricco\r\n5013,5242,7963208,Tatiana de Rosnay,Boomerang,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442696422l/7963208._SY475_.jpg,3.33,19079,\"fiction, mystery\",\"Sa soeur était sur le point de lui révéler un secret... et c’est\nl’accident. Elle est grièvement blessée. Seul, l’angoisse au ventre, alors\nqu’il attend qu’elle sorte du bloc opératoire, Antoine fait le bilan de son\nexistence : sa femme l’a quitté, ses ados lui échappent, son métier\nl’ennuie et son vieux père le tyrannise. Comment en est-il arrivé là ? Et\nsurtout, quelle terrible confidence sa cadette s’apprêtait-elle à lui faire\n? Entre suspense, comédie et émotion, Boomerang brosse le portrait d’un\nhomme bouleversant, qui nous fait rire et nous serre le coeur. Déjà traduit\nen plusieurs langues, ce roman connaît le même succès international que\nElle s’appelait Sarah.L’auteur s’inscrit dans la lignée des romancières à\nsuccès, les Anna Gavalda, Katherine Pancol et Muriel Barbery dont les\nhistoires vous tiennent en haleine. Françoise Dargent, Le Figaro\nlittéraire.Un roman qui se lit d’une traite tant Tatiana de Rosnay a le\nsens de la narration et du suspense, même si le thriller s’accompagne\ntoujours chez l’auteur de profondeur psychologique. Émilie Grangeray, Le\nMonde des livres.\"\r\n5014,5243,27530,\"Tim LaHaye, Jerry B. Jenkins\",The Remnant: On the Brink of Armageddon,https://images.gr-assets.com/books/1406506156l/27530.jpg,4.01,18785,\"christian, fiction\",\"The Remnant: On the Brink of ArmageddonTim LaHaye, Jerry B. Jenkins\"\r\n5015,5244,9804,\"Italo Calvino, Archibald Colquhoun\",Il barone rampante,https://images.gr-assets.com/books/1344432724l/9804.jpg,4.06,13221,\"fiction, classics\",\"Italy's most brilliant modern writer shows that the novel is capable of\nendless mutations If on a winter's night a traveler turns out to be not one\nnovel but ten, each with a different plot, style, ambience, and author, and\neach interrupted at a moment of suspense. Together they form a labyrinth of\nliteratures, known and unknown, alive and extinct, through which two\nreaders, a male and a female, pursue both the story lines that intrigue\nthem and one another. They are the true heroes of the novel, for what would\nwriting be without readers?\"\r\n5016,5245,11450360,\"Stephenie Meyer, Young Kim\",\"Twilight: The Graphic Novel,\",https://images.gr-assets.com/books/1327891963l/11450360.jpg,4.26,19795,\"fantasy, romance\",\"When Isabella Swan moves to the gloomy town of Forks and meets the\nmysterious, alluring Edward Cullen, her life takes a thrilling and\nterrifying turn. With his porcelain skin, golden eyes, mesmerizing voice,\nand supernatural gifts, Edward is both irresistible and impenetrable. Up\nuntil now, he has managed to keep his true identity hidden, but Bella is\ndetermined to uncover his dark secret... Beautifully rendered, this first\ninstallment of Twilight: The Graphic Novel is a must-have for any\ncollector's library.\"\r\n5017,5246,18468559,Belle Aurora,Raw,https://images.gr-assets.com/books/1380531971l/18468559.jpg,4.23,19180,\"romance, contemporary\",A young woman falls for her stalker and a complicated relationship begins.\r\n5018,5247,5367,Roger Zelazny,The Great Book of Amber,https://images.gr-assets.com/books/1165519096l/5367.jpg,4.31,20748,\"fantasy, fiction\",\"Roger Zelazny's Chronicles of Amber have earned their place as all-time\nclassics of imaginative literature. Now here are all ten novels, together\nin one magnificent omnibus volume. Witness the titanic battle for supremacy\nwaged on Earth, in the Courts of Chaos, and on a magical world of mystery,\nadventure, and romance.\"\r\n5019,5248,7519472,Gena Showalter,The Darkest Lie (Lords of the Underworld #6),https://images.gr-assets.com/books/1333828376l/7519472.jpg,4.32,27343,\"paranormal, romance\",The Darkest Lie (Lords of the Underworld #6)Gena Showalter\r\n5020,5249,68453,Andrzej Sapkowski,Czas pogardy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208555368l/68453.jpg,4.32,11551,\"fiction, ebooks\",\"Podsumowanie z innego polskiego wydania: \"\"Swiat Ciri i wiedzmina ogarniaja\nplomienie. Nastal zapowiadany przez Ithlinne czas miecza i topora. Czas\npogardy. A w czasach pogardy na powierzchnie wypelzaja Szczury. Szczury\natakujace po szczurzemu, cicho, zdradziecko i okrutnie. Szczury\nuwielbiajace dobra zabawe i zabijanie. To maruderzy z rozbitych armii,\nzablakane dzieciaki, zgwalcone dziewczyny, wiesniacy, ktorych obejscia\nspalono, a rodziny wymordowano. Wyrzutki, dziwna zbieranina stworzona przez\nwojne i na wojennym nieszczesciu zerujaca. Ludzie, ktorzy wszystko\nprzezyli, wszystko utracili, ktorym smierc juz niestraszna. Przyodziani w\nzrabowane blyskotki, solidarni w biedzie i nieszczesciu, dla obcych zas\nmajacy tylko to, czego sami zaznali od pograzajacego sie w chaosie swiata.\nPogarde.\"\"--Amazon.com.\"\r\n5021,5250,11382346,Jillian Dodd,That Boy,https://images.gr-assets.com/books/1305572809l/11382346.jpg,3.96,20981,\"romance, contemporary\",\"It's amazing how a few little words can change your life. It starts with a\nsimple I love you. It's made official with I do.And becomes incredible with\nI'm pregnant.Jadyn is the girl I love. The girl I've always loved. Our\nlives are like single threads meticulously woven together--the result an\nexquisite tapestry of past, present, and future. Then there are the words\nthat will unravel me.A few little words that will change my life.\"\r\n5022,5251,12384157,Kate Alcott,The Dressmaker,https://images.gr-assets.com/books/1314819502l/12384157.jpg,3.44,20464,\"fiction, romance\",\"A spirited young maid on board the Titanic captures the attentions of two\nmen including a kindhearted sailor and an enigmatic Chicago millionaire and\nbarely escapes with her life before witnessing media scorn targeting her\nfamous designer mistress. Reprint.\"\r\n5023,5252,16006,Judith McNaught,Paradise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921972l/16006.jpg,4.32,24363,\"romance, contemporary\",\"When the Bancroft family empire is threatened by a hostile takeover,\nMeredith Bancroft flees into the arms of Matthew Farrell, a man with whom\nshe once had a passionate affair. Reissue.\"\r\n5024,5253,525995,Chris Van Allsburg,Jumanji,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348202802l/525995.jpg,4.03,21961,\"fantasy, fiction\",\"Left on their own for an afternoon, two bored and restless children find\nmore excitement than they bargained for in a mysterious and mystical jungle\nadventure board game.\"\r\n5025,5254,341735,Ken Grimwood,Replay,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441156728l/341735._SY475_.jpg,4.16,18019,\"fiction, fantasy\",\"Jeff Winston, forty-three, didn't know he was a replayer until he died and\nwoke up twenty-five years younger in his college dorm room; he lived\nanother life. And died again. And lived again and died again -- in a\ncontinuous twenty-five-year cycle -- each time starting from scratch at the\nage of eighteen to reclaim lost loves, remedy past mistakes, or make a\nfortune in the stock market. A novel of gripping adventure, romance, and\nfascinating speculation on the nature of time, Replay asks the question:\n\"\"What if you could live your life over again?\"\"\"\r\n5026,5255,9827912,David Eagleman,Incognito: The Secret Lives of the Brain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348669116l/9827912.jpg,3.98,11957,\"science, psychology\",\"A leading neuroscientist reveals the functions of the unconscious regions\nof the brain, drawing on up-to-the-minute research to identify the\nsignificance of brain areas outside of our awareness and their roles in\nsuch areas as mate selection, the perception of beauty and the future of\ncriminal law. By the author of Sum. Reprint.\"\r\n5027,5256,22543,Neil deGrasse Tyson,Death by Black Hole: And Other Cosmic Quandaries,https://images.gr-assets.com/books/1395019749l/22543.jpg,4.11,9815,\"science, nonfiction\",\"A collection of favorite essays on the cosmos, written by a well-known\nAmerican Museum of Natural History astrophysicist and author of Origins,\nincludes the title essay, \"\"Holy Wars,\"\" \"\"The Search for Life in the\nUniverse,\"\" and \"\"Hollywood Nights.\"\"\"\r\n5028,5257,133445,Margaret Atwood,The Edible Woman,https://images.gr-assets.com/books/1320439047l/133445.jpg,3.67,21440,\"fiction, classics\",\"A humorous, ironic, disturbing, and parabolic novel features a woman who,\nafter her engagement to be wed, first loses her appetite and then becomes\nobsessed with the idea that she herself is being eaten. Reissue.\"\r\n5029,5258,17977,Richard Dawkins,The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423600058l/17977.jpg,4.13,16775,\"science, nonfiction\",\"A newly revised and expanded edition of the classic account of evolution.\"\"\"\r\n5030,5260,128092,Paul Zindel,The Pigman,https://images.gr-assets.com/books/1393796714l/128092.jpg,3.58,21278,\"fiction, classics\",\"A Most Unusual Friendship When sophomores John and Lorraine played a\npractical joke a few months ago on a stranger named Angelo Pignati, they\nhad no idea what they were starting. Virtually overnight, almost against\ntheir will, the two befriended the lonely old man; it wasn't long before\nthey were more comfortable in his house than their own. But now Mr. Pignati\nis dead. And for John and Lorraine, the only way to find peace is to write\ndown their friend's story -- the story of the Pigman.\"\r\n5031,5261,39026,Lincoln Child,Deep Storm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438525696l/39026._SY475_.jpg,3.87,18413,\"thriller, fiction\",Deep StormLincoln Child\r\n5032,5262,9397967,Meg Cabot,Abandon,https://images.gr-assets.com/books/1324767084l/9397967.jpg,3.71,30934,\"fantasy, paranormal\",\"A near-death experience, a horrible incident at school, and a move from\nConnecticut to Florida have turned seventeen-year-old Pierce's life upside-\ndown, but when she needs him most John Hayden is always there, helping but\nreminding her of her visit to the Underworld.\"\r\n5033,5263,97898,Alexander McCall Smith,The Full Cupboard of Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347622687l/97898.jpg,4.02,23089,\"mystery, fiction\",\"Worrying about her upcoming marriage, Precious Ramotswe is confronted by\nthe challenges of running her No. 1 Ladies' Detective Agency and an\ninvestigation into the would-be suitors of a wealthy woman to determine if\nany are fortune hunters.\"\r\n5034,5264,263179,Kerrelyn Sparks,How to Marry a Millionaire Vampire,https://images.gr-assets.com/books/1343779854l/263179.jpg,3.85,27854,\"paranormal, romance\",How to Marry a Millionaire VampireKerrelyn Sparks\r\n5035,5265,105548,Dr. Seuss,The Foot Book: Dr. Seuss's Wacky Book of Opposites (Bright & Early Board Books),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437795856l/105548._SX318_.jpg,3.99,22268,\"classics, poetry\",Beginner's text describes all sorts of feet doing all sorts of things.\r\n5036,5266,17831616,Christina Lauren,Beautiful Bitch,https://images.gr-assets.com/books/1368101793l/17831616.jpg,3.94,31616,\"romance, contemporary\",Beautiful BitchChristina Lauren\r\n5037,5267,1166131,Robert Muchamore,\"The Recruit (Cherub, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328000064l/1166131.jpg,4.22,19679,\"fiction, mystery\",\"When James is recently orphaned, he is recruited by a secret agency for his\nmath skills and must undergo one hundred days of grueling training.\"\r\n5038,5268,327242,Sarah Simblet,Anatomy for the Artist,https://images.gr-assets.com/books/1309295064l/327242.jpg,3.97,17000,\"art, nonfiction\",Anatomy for the ArtistSarah Simblet\r\n5039,5269,38412,Simon Singh,Fermat's Enigma: The Epic Quest to Solve the World's Greatest Mathematical Problem,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182122l/38412.jpg,4.22,15738,\"science, history\",\"The story of Fermat's Last Theorem, devised by the seventeenth-century\nFrench mathematician Pierre de Fermat, recounts the struggles of three and\na half centuries of scientists to devise a proof for it.\"\r\n5040,5270,161361,Richard Paul Evans,The Christmas Box,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266485725l/161361.jpg,3.95,18869,\"fiction, christian\",\"A special edition of the best-selling holiday classic follows the story of\na widow and the young family who moves in with her before they jointly\ndiscover the magic of the Christmas holiday. 50,000 first printing.\"\r\n5041,5271,8046350,Amanda Hocking,My Blood Approves,https://images.gr-assets.com/books/1282351187l/8046350.jpg,3.83,21707,\"paranormal, fantasy\",\"Seventeen-year-old Alice Bonham's life feels out of control after she meets\nJack. Then she meets his brother Peter. But falling for two very different\nguys isn't even the worst of her problems. Jack and Peter are vampires, and\nAlice finds herself caught between love and her own blood.\"\r\n5042,5272,18341046,Aurora Rose Reynolds,Until November,https://images.gr-assets.com/books/1376867667l/18341046.jpg,4.16,33606,\"contemporary, romance\",\"November is looking forward to getting to know her father and the safety of\na small town. After leaving the big apple and her bad memories for\nTennessee, November starts working for her dad at his strip club doing the\nbooks. The one time she's allowed there during club hours she runs into\nAsher Mayson. He's perfect until he opens his mouth and makes assumptions.\nNovember wants nothing to do with Asher but too bad for November fate has\nother plans. Asher Mayson has never had a problem getting a woman that is\nuntil November. Now all he can think about is making November his and\nkeeping her safe.\"\r\n5043,5273,49011,Angela Carter,The Bloody Chamber & Other Stories,https://images.gr-assets.com/books/1388633104l/49011.jpg,4.02,20438,\"fantasy, fiction\",A reissue of a collection of short stories first published ten years ago.\r\n5044,5274,86856,Anthony Bourdain,A Cook's Tour: Global Adventures in Extreme Cuisines,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347785592l/86856.jpg,3.97,16719,\"travel, memoir\",\"The only thing \"\"gonzo gastronome\"\" and internationally bestselling author\nAnthony Bourdain loves as much as cooking is traveling. Inspired by the\nquestion, \"\"What would be the perfect meal?,\"\" Tony sets out on a quest for\nhis culinary holy grail, and in the process turns the notion of\n\"\"perfection\"\" inside out. From California to Cambodia, A Cooks' Tour\nchronicles the unpredictable adventures of America's boldest and bravest\nchef.\"\r\n5045,5275,19797,Simon Schama,Power of Art,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316815l/19797.jpg,3.87,13423,\"art, history\",\"\"\"Great art has dreadful manners,\"\" Simon Schama observes wryly at the start\nof his epic and explosive exploration of the power, and whole point, of\nart. \"\"The hushed reverence of the gallery can fool you into believing\nmasterpieces are polite things; visions that soothe, charm and beguile, but\nactually they are thugs. Merciless and wily, the greatest paintings grab\nyou in a headlock, rough up your composure, and then proceed in short order\nto re-arrange your sense of reality. . . .\"\" With the same disarming force,\nThe Power of Art propels us on an eye-opening, breathtaking odyssey,\nzooming in on eight extraordinary masterpieces, from Caravaggio's David and\nGoliath to Picasso's Guernica. Jolting us far from the comfort zone of the\nhushed art gallery, Schama closes in on intense make-or-break turning\npoints in the lives of eight great artists who, under extreme stress,\ncreated something unprecedented, altering the course of art forever. The\nembattled heroes—Caravaggio, Bernini, Rembrandt, David, Turner, Van Gogh,\nPicasso and Rothko—each in his own resolute way, faced crisis with\nsteadfast defiance, pitting passion and conviction against scorn and short-\nsightedness. The masterpieces they created challenged convention, shattered\ncomplacency, shifted awareness and changed the way we look at the world.\nWith vivid storytelling and powerfully evocative descriptive passages,\nSchama explores the dynamic personalities of the artists and the spirit of\nthe times they lived through, capturing the flamboyant theatre of bourgeois\nlife in Amsterdam, the passion and paranoia of Revolutionary Paris, and the\ncarnage and pathos of Civil War Spain. Most compelling of all, The Power of\nArt traces the extraordinary evolution of eight \"\"eye-popping\"\" world-class\nworks of art. Created in a bolt of illumination, such works \"\"tell us\nsomething about how the world is, how it is to be inside our skins, that no\nmore prosaic source of wisdom can deliver. And when they do that, they\nanswer, irrefutably and majestically, the nagging question of every\nreluctant art-conscript . . . 'OK, OK, but what's art really for?'\"\"\"\r\n5046,5276,20257122,\"Michelle Knight, Michelle Burford\",\"Finding me : A Decade of Darkness, a Life Reclaimed\",https://images.gr-assets.com/books/1387770620l/20257122.jpg,4.12,12653,\"memoir, nonfiction\",\"Finding me : A Decade of Darkness, a Life ReclaimedMichelle Knight, Michelle Burford\"\r\n5047,5277,98405,Nora Roberts,Born in Shame,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388237862l/98405.jpg,4.07,24398,\"romance, fiction\",\"Her life turned upside-down after learning the identity of her real father,\nsuccessful graphic artist Shannon Bodine reluctantly sets out to meet her\nfamily in County Clare and discovers the meaning of true love\"\r\n5048,5278,7797874,Simone Elkeles,Return to Paradise,https://images.gr-assets.com/books/1271357819l/7797874.jpg,4.05,29043,\"romance, contemporary\",Return to ParadiseSimone Elkeles\r\n5049,5279,18336965,Jasmine Warga,My Heart and Other Black Holes,https://images.gr-assets.com/books/1415056175l/18336965.jpg,4.02,22311,\"contemporary, romance\",My Heart and Other Black HolesJasmine Warga\r\n5050,5280,22693211,Kim Gordon,Girl in a Band,https://images.gr-assets.com/books/1412840109l/22693211.jpg,3.58,14491,\"music, memoir\",Girl in a BandKim Gordon\r\n5051,5281,2272813,Heather Brewer,\"Ninth Grade Slays (The Chronicles of Vladimir Tod, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442270017l/2272813._SY475_.jpg,4.14,20198,\"fantasy, paranormal\",\"Ninth Grade Slays (The Chronicles of Vladimir Tod, #2)Heather Brewer\"\r\n5052,5282,6526,Patricia Cornwell,Book of the Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442534083l/6526._SY475_.jpg,3.63,20962,\"mystery, fiction\",Book of the DeadPatricia Cornwell\r\n5053,5283,588138,Joseph Campbell,The Hero with a Thousand Faces,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442885694l/588138._SY475_.jpg,4.24,17920,\"philosophy, nonfiction\",\"Discusses the universal legend of the hero in world mythology, focusing on\nthe motif of the hero's journey through adventure and transformation.\"\r\n5054,5284,7713965,John Sandford,Bad Blood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204669l/7713965.jpg,4.21,18504,\"mystery, fiction\",\"When a murder suspect commits suicide after his arrest for killing a\nsoybean farmer, Virgil Flowers uncovers a multi-generation, multi-family\nconspiracy involving a series of monstrous crimes. By the best-selling\nauthor of Rough Country. Reprint.\"\r\n5055,5285,8964,\"D.C. Talk, The Voice of the Martyrs\",\"Jesus Freaks: DC Talk and The Voice of the Martyrs - Stories of Those Who Stood for Jesus, the Ultimate Jesus Freaks\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298413727l/8964.jpg,4.2,17602,\"christian, biography\",\"Remember the Lord's people who are in jail and be concerned for them. Don't\nforget those who are suffering but imagine that you are there with them.\"\r\n5056,5286,15811496,Michael Pollan,Cooked: A Natural History of Transformation ,https://images.gr-assets.com/books/1350939053l/15811496.jpg,3.98,16078,\"history, cookbooks\",\"The author recounts the story of his culinary education and the roles of\nthe four classical elements of fire, water, air and earth in transforming\nnatural ingredients into delicious meals and drinks, in an account that\ntraces his efforts to master classic recipes using one of the four\nelements. Reprint.\"\r\n5057,5287,47956,Anne Bishop,Daughter of the Blood,https://images.gr-assets.com/books/1400569100l/47956.jpg,4.12,25432,\"fantasy, romance\",\"Three men, sworn enemies, vie for sway over the girl witch--a blue-eyed\ninnocent--who is to rule over the Dark Kingdom, commencing a ruthless game\nof politics, magic and betrayal, in which the weapons are love and hate.\nOriginal.\"\r\n5058,5288,9265891,Orson Scott Card,The Lost Gate,https://images.gr-assets.com/books/1312042223l/9265891.jpg,3.82,18235,\"fantasy, fiction\",The Lost GateOrson Scott Card\r\n5059,5289,18142329,\"Jo Nesbø, Don Bartlett\",\"Politi (Harry Hole, #10)\",https://images.gr-assets.com/books/1373049226l/18142329.jpg,4.22,14495,\"crime, mystery\",\"Politi (Harry Hole, #10)Jo Nesbø, Don Bartlett\"\r\n5060,5290,31342,Anne Rice,Vittorio the Vampire,https://images.gr-assets.com/books/1289014320l/31342.jpg,3.5,21402,\"horror, fantasy\",\"In Renaissance Florence, Vittorio witnesses demons destroy his entire\nfamily and embarks on a desperate quest for revenge, tormented by his love\nfor the mysterious vampire Ursula and confronted by demonic enemies.\"\r\n5061,5291,568592,\"Yuu Watase, Yuji Oniki\",ふしぎ遊戯 1,https://images.gr-assets.com/books/1459065488l/568592.jpg,4.08,18060,\"manga, fantasy\",\"After finding a mysterious book, Miaka and her friend Yui are transported\nto a strange world that is reminiscent of ancient China, where they\nbefriend seven Celestial Warriors and try to return home through the help\nof the god Suzaku.\"\r\n5062,5292,1951125,Brunonia Barry,The Lace Reader,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562776620l/1951125._SY475_.jpg,3.46,20534,\"fiction, mystery\",The Lace ReaderBrunonia Barry\r\n5063,5293,43818,\"Faye Perozich, Travis Moore, Michael Halbleib, Daerick Gröss, Anne Rice\",Anne Rice's The Tale of the Body Thief (Graphic Novel),https://images.gr-assets.com/books/1316019640l/43818.jpg,4.07,20511,\"horror, paranormal\",\"Lestat recounts the story of how he became a vampire in eighteenth-century\nFrance\"\r\n5064,5294,52873,Sherman Alexie,The Lone Ranger and Tonto Fistfight in Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557917045l/52873.jpg,4.09,18793,\"fiction, contemporary\",\"Offers a fictional portrait of the characters, language, traditions, and\ndaily life of those living on the Spokane Indian Reservation\"\r\n5065,5295,30226,Laurell K. Hamilton,\"A Stroke of Midnight (Merry Gentry, #4)\",https://images.gr-assets.com/books/1400966510l/30226.jpg,4.06,26783,\"fantasy, paranormal\",\"A Stroke of Midnight (Merry Gentry, #4)Laurell K. Hamilton\"\r\n5066,5296,31176886,Stephenie Meyer,The Chemist,https://images.gr-assets.com/books/1468944057l/31176886.jpg,3.69,25188,\"thriller, fiction\",The ChemistStephenie Meyer\r\n5067,5297,139254,Anchee Min,Empress Orchid,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442864153l/139254._SY475_.jpg,3.87,17318,\"fiction, history\",\"A fictional portrait of the infamous last empress of China follows the life\nof Orchid, a beautiful teenager from an aristocratic but impoverished\nfamily, who is chosen to become a low-ranking concubine of the emperor and\nwho uses her seductive talents and intelligence to rise to a position of\npower in the Chinese court. 35,000 first printing.\"\r\n5068,5298,6359434,Eoin Colfer,\"And Another Thing... (Hitchhiker's Guide to the Galaxy, #6)\",https://images.gr-assets.com/books/1327908458l/6359434.jpg,3.53,19685,\"fiction, fantasy\",\"And Another Thing... (Hitchhiker's Guide to the Galaxy, #6)Eoin Colfer\"\r\n5069,5300,17231976,H.M. Ward,Damaged,https://images.gr-assets.com/books/1363632179l/17231976.jpg,3.93,26073,\"romance, contemporary\",DamagedH.M. Ward\r\n5070,5301,444381,\"George MacDonald, Arthur Hughes\",The Princess and the Goblin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348689290l/444381.jpg,4,21200,\"fantasy, fiction\",\"A little princess is protected by her friend Curdie and her newly-\ndiscovered great-great-grandmother from the goblin miners who live in caves\nbeneath the royal castle.\"\r\n5071,5302,9606002,\"Camilla Läckberg, Steven T. Murray\",Predikanten,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441297596l/9606002._SY475_.jpg,3.76,15851,\"mystery, crime\",\"PredikantenCamilla Läckberg, Steven T. Murray\"\r\n5072,5303,310272,Dr. Seuss,There's a Wocket in My Pocket,https://images.gr-assets.com/books/1327448521l/310272.jpg,4.02,23852,\"fiction, poetry\",There's a Wocket in My PocketDr. Seuss\r\n5073,5305,1402668,Madeleine Wickham,The Gatecrasher,https://images.gr-assets.com/books/1312001285l/1402668.jpg,3.24,18306,\"fiction, romance\",\"Endeavoring to win the heart of a wealthy widower at his wife's funeral,\nattractive Fleur Daxeny finds herself unexpectedly falling in love with the\nmillionaire golfer she has targeted and struggling to outmaneuver a rival\nfor his affections. By the author of Cocktails for Three. Reprint. 250,000\nfirst printing.\"\r\n5074,5306,822,Neal Stephenson,The Confusion,https://images.gr-assets.com/books/1407706997l/822.jpg,4.24,17381,\"fiction, fantasy\",\"In the year 1689, a cabal of Barbary galley slaves -- including one Jack\nShaftoe, aka King of the Vagabonds, aka Half-Cocked Jack -- devises a\ndaring plan to win freedom and fortune. A great adventure ensues -- a\nperilous race for an enormous prize of silver ... nay, gold ... nay,\nlegendary gold. In Europe, the exquisite and resourceful Eliza, Countess de\nla Zeur, is stripped of her immense personal fortune by France's most\ndashing privateer. Penniless and at risk from those who desire either her\nor her head (or both), she is caught up in a web of international intrigue,\neven as she desperately seeks the return of her most precious possession.\nMeanwhile, Newton and Leibniz continue to propound their grand theories as\ntheir infamous rivalry intensifies, stubborn alchemy does battle with the\nnatural sciences, dastardly plots are set in motion ... and Daniel\nWaterhouse seeks passage to the Massachusetts colony in hopes of escaping\nthe madness into which his world has descended. This P.S. edition features\nan extra 16 pages of insights into the book, including author interviews,\nrecommended reading, and more.\"\r\n5075,5307,11275323,Terry Pratchett,Raising Steam,https://images.gr-assets.com/books/1375882313l/11275323.jpg,3.93,17613,\"fantasy, fiction\",\"\"\"Change is afoot in Ankh-Morpork--Discworld's first steam engine has\narrived, and once again Moist von Lipwig finds himself with a new and\nchallenging job\"\"--\"\r\n5076,5308,17165932,Joelle Charbonneau,Independent Study,https://images.gr-assets.com/books/1380034496l/17165932.jpg,3.97,20593,\"fiction, fantasy\",\"Now a freshman at the University in Tosu City with her hometown sweetheart,\nTomas, Cia Vale attempts to expose the ugly truth behind the government's\ngrueling and deadly Testing put her and her loved ones in great danger.\"\r\n5077,5309,24940998,Sue Grafton,X,https://images.gr-assets.com/books/1429811123l/24940998.jpg,3.88,13353,\"mystery, fiction\",XSue Grafton\r\n5078,5310,13821,\"Roger Zelazny, Sönmez Güven\",Lord of Light,https://images.gr-assets.com/books/1330127327l/13821.jpg,4.1,20227,\"fantasy, fiction\",\"Earth is long since dead. On a colony planet, a band of men has gained\ncontrol of technology, made themselves immortal, and now rules their world\nas the gods of the Hindu pantheon. Only one dares oppose them: he who was\nonce Siddhartha and is now Mahasamatman. Binder of Demons. Lord of Light.\"\r\n5079,5311,194755,\"Roald Dahl, Quentin Blake\",Esio Trot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348269116l/194755.jpg,3.74,22062,\"fiction, fantasy\",\"Esio TrotRoald Dahl, Quentin Blake\"\r\n5080,5312,102461,Mike Mignola,Hellboy: The Chained Coffin and Others,https://images.gr-assets.com/books/1486039255l/102461.jpg,4.21,16485,\"comics, horror\",\"Dark Horse presents new editions of the entire Hellboy line with new\ncovers, beginning with Seed of Destruction, the basis of director Guillermo\ndel Toro's upcoming film. Hellboy is one of the most celebrated comics\nseries in recent years. The ultimate artists' artist and a great\nstoryteller whose work is in turns haunting, hilarious, and spellbinding.\nMike Mignola has won numerous awards in the comics industry and beyond.\nWhen strangeness threatens to engulf the world, a strange man will come to\nsave it. Sent to investigate a mystery with supernatural overtones, Hellboy\ndiscovers the secrets of his own origins, and his link to the Nazi\noccultists who promised Hitler a final solution in the form of a demonic\navatar. \"\"Hellboy restores my faith in the joy of comic books.\"\" --Clive\nBarker\"\r\n5081,5313,21727,Scott B. Smith,A Simple Plan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264590l/21727.jpg,3.91,18628,\"fiction, thriller\",\"Two brothers and a friend find $4 million in the cockpit of a downed plane.\nThe pilot is dead. No one is looking for the money. To keep it, all they\nhave to do is wait. It all sounded so simple.\"\r\n5082,5314,3188186,\"James Patterson, Michael Ledwidge\",Run for Your Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432319460l/3188186._SY475_.jpg,4,19848,\"mystery, fiction\",\"A calculating killer who calls himself The Teacher is taking on New York\nCity, killing the powerful and the arrogant. His message is clear: remember\nyour manners or suffer the consequences! For some, it seems that the rich\nare finally getting what they deserve. For New York's elite, it is a call\nto terror. Only one man can tackle such a high-profile case: Detective Mike\nBennett. The pressure is enough for anyone, but Mike also has to care for\nhis 10 children-all of whom have come down with virulent flu at once!\nDiscovering a secret pattern in The Teacher's lessons, Detective Bennett\nrealizes he has just hours to save New York from the greatest disaster in\nits history. From the #1 bestselling author comes RUN FOR YOUR LIFE, the\ncontinuation of his newest, electrifying series. Review \"\"Thrilling . . .\nwhite-knuckle suspense . . . a standout crime thriller that no Patterson or\nadrenaline junkie should miss.\"\" (NightsandWeekends.com ) \"\"Brilliant . . .\nPatterson knows how to keep you turning pages . . . perfect for an\nafternoon at the beach or that subway ride to work.\"\" (Examiner.com )\n\"\"Brilliant. It feels just like you're reading a Bruce Willis film-switch\noff [your] brain, and turn on the entertainment.\"\" (News of the World (UK) )\n\"\"Its breakneck pace leaves you gasping for breath. Packed with typical\nPatterson panache . . . It won't disappoint his millions of fans for a\nsingle moment.\"\" (Daily Mail (UK) ) About the Author James Patterson has had\nmore New York Times bestsellers than any other writer, ever, according to\nGuinness World Records. Since his first novel won the Edgar Award in 1977\nJames Patterson's books have sold more than 240 million copies. He is the\nauthor of the Alex Cross novels, the most popular detective series of the\npast twenty-five years, including Kiss the Girls and Along Came a Spider.\nMr. Patterson also writes the bestselling Women's Murder Club novels, set\nin San Francisco, and the top-selling New York detective series of all\ntime, featuring Detective Michael Bennett. He writes full-time and lives in\nFlorida with his family.\"\r\n5083,5315,428,\"Joan Didion, David Thomson\",Play It as It Lays,https://images.gr-assets.com/books/1327935636l/428.jpg,3.86,17411,\"classics, contemporary\",\"A ruthless dissection of American life in the late 1960s, \"\"Play It As It\nLays\"\" captures the mood of an entire generation. Joan Didion chose\nHollywood to serve as her microcosm of contemporary society and exposed a\nculture characterized by emptiness and ennui.\"\r\n5084,5316,125926,Kelley Armstrong,Dime Store Magic,https://images.gr-assets.com/books/1355183293l/125926.jpg,4.07,26456,\"paranormal, fantasy\",Dime Store MagicKelley Armstrong\r\n5085,5317,77504,Kim Stanley Robinson,Blue Mars ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429497319l/77504.jpg,3.92,19500,\"fiction, science\",\"On the brink of completing the terraforming effort on Mars, colonists find\ntheir work complicated by a crisis on Earth, new colonization projects on\nJupiter and Saturn, and the onset of a Martian ice age\"\r\n5086,5318,4006,\"Paulo Coelho, Alan R. Clarke\",As Valkírias,https://images.gr-assets.com/books/1414013931l/4006.jpg,3.3,14364,\"fiction, spirituality\",\"\"\"My heart is afraid that it will have to suffer,\"\" the boy told the\nalchemist one night as they looked up at the moonless sky.\"\" Tell your heart\nthat the fear of suffering is worse than the suffering itself. And that no\nheart has ever suffered when it goes in search of its dreams.\"\" Every few\ndecades a book is published that changes the lives of its readers forever.\nThe Alchemist is such a book. With over a million and a half copies sold\naround the world, The Alchemist has already established itself as a modern\nclassic, universally admired. Paulo Coelho's charming fable, now available\nin English for the first time, will enchant and inspire an even wider\naudience of readers for generations to come. The Alchemist is the magical\nstory of Santiago, an Andalusian shepherd boy who yearns to travel in\nsearch of a worldly treasure as extravagant as any ever found. From his\nhome in Spain he journeys to the markets of Tangiers and across the\nEgyptian desert to a fateful encounter with the alchemist. The story of the\ntreasures Santiago finds along the way teaches us, as only a few stories\nhave done, about the essential wisdom of listening to our hearts, learning\nto read the omens strewn along life's path, and, above all, following our\ndreams.\"\r\n5087,5320,6665671,A.S. King,Please Ignore Vera Dietz,https://images.gr-assets.com/books/1394240671l/6665671.jpg,3.91,21728,\"contemporary, fiction\",\"When her best friend, whom she secretly loves, betrays her and then dies\nunder mysterious circumstances, high school senior Vera Dietz struggles\nwith secrets that could help clear his name.\"\r\n5088,5321,256598,\"Joseph Delaney, Patrick  Arrasmith\",The Spook's Curse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426630248l/256598.jpg,4.1,18513,\"fantasy, horror\",\"\"\"You can't make alliances with witches and suchlike and hope to avoid being\ndrawn toward the dark.\"\" As the Spook's apprentice, Thomas Ward's first duty\nis to protect the County from ghosts, boggarts, and other dangerous\ncreatures. But now his mother has come back from her homeland to seek his\nhelp. One of the most dangerous of the old witches, Ordeen, is about to\nreturn to earth, bringing with her suffering and devastation. Tom's mother\nhas mustered a powerful army—including Tom's friend Alice, the Pendle\nwitches, and the assassin Grimalkin—to confront Ordeen. If Tom joins them,\nthe Spook will refuse to take Tom back as his apprentice. What sacrifices\nwill be made in the battle against the dark?\"\r\n5089,5322,395851,L.J. Smith,The Struggle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392080170l/395851.jpg,3.5,23840,\"fantasy, paranormal\",\"Profiles two vampire brothers--Damon, who is so determined to make Elena\nhis queen of darkness that he would kill his brother to possess her, and\nStefan, who desperately seeks the power to destroy Damon.\"\r\n5090,5323,112755,Karen Marie Moning,The Dark Highlander,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1521970950l/112755.jpg,4.31,27639,\"romance, paranormal\",\"Buried alive in a volcano in the Carpathian mountains for hundreds of\nyears, Dax discovers that Mitro, the evil vampire he has been hunting for\ncenturies, is still alive.\"\r\n5091,5324,112752,Karen Marie Moning,The Immortal Highlander ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436985405l/112752._SY475_.jpg,4.34,27065,\"romance, paranormal\",\"Stripped of his immortality and rendered invisible by a curse, Adam Black\nseeks help from Gabrielle O'Callaghan, the only woman who can see him, but\ntheir subsequent romance is challenged by a dangerous conspiracy and\nhaphazard circumstances in Gabrielle's own life. By the author of The Dark\nHighlander. Reprint.\"\r\n5092,5325,25307,Reza Aslan,\"No god but God: The Origins, Evolution, and Future of Islam\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388221846l/25307.jpg,4.13,15410,\"religion, history\",\"Examines the rituals and traditions of Islam, and discusses the revelation\nof Muhammad as Prophet and the subsequent uprising against him and the\nemergence of his successors.\"\r\n5093,5326,216377,Philip K. Dick,Valis,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200579l/216377.jpg,3.94,17305,\"fiction, philosophy\",\"The first book in Philip K. Dick's final trilogy (followed by The Divine\nInvasion andThe Transmigration of Timothy Archer), VALIS encapsulates many\nof the themes that Dick was obsessed with over the course of his career. A\ndisorienting and bleakly funny novel,VALIS (which stands for Vast Active\nLiving Intelligence System) is about a schizophrenic man named Horselover\nFat (who just might also be known as Philip Dick); the hidden mysteries of\nGnostic Christianity; and reality as revealed through a pink laser.VALIS is\na theological detective story, in which God is both a missing person and\nthe perpetrator of the ultimate crime. Taking place in the same universe as\nDick's soon-to-be-published Exegesis,VALIS is a dense novel, but one that\nis absolutely essential to understanding the author's off-kilter worldview.\nMuch like Dick himself, the reader is left wondering what is real, what is\nfiction, and what the price is for divine inspiration.\"\r\n5094,5327,457264,\"Simone de Beauvoir, H.M. Parshley, Deirdre Bair\",\"Le deuxième sexe: I. Les faits et les mythes, II. L'expérience vécue\",https://images.gr-assets.com/books/1327978178l/457264.jpg,4.09,18648,\"philosophy, nonfiction\",\"Tome 2 : \"\"Comment la femme fait-elle l'apprentissage de sa condition,\ncomment l'éprouve-t-elle, dans quel univers se trouve-t-elle enfermée,\nqu'elles évasions lui sont permises, voilà ce que je chercherait à décrire.\nAlors seulement nous pourrons comprendre quels problèmes se posent aux\nfemmes qui, héritant d'un lourd passé, s'éfforcent de forger un avenir\nnouveau.\"\"\"\r\n5095,5328,15703770,Jennifer A. Nielsen,The Runaway King,https://images.gr-assets.com/books/1351133357l/15703770.jpg,4.23,24032,\"fantasy, fiction\",\"King Jaron has taken the throne of Carthya, but after an attempt to\nassassinate him and with a invasion threat, he finds that he has no friends\nin the palace, not even his bride-to-be, princess Amarinda.\"\r\n5096,5329,28481,\"Margaret Weis, Tracy Hickman\",\"Dragon Wing (The Death Gate Cycle, #1)\",https://images.gr-assets.com/books/1403168128l/28481.jpg,3.93,20720,\"fantasy, fiction\",\"Wolf Haas' Detective Brenner series has become wildly popular around the\nworld for a reason: They're timely, edgy stories told in a wry, quirky\nvoice that's often hilarious, and with a protagonist it's hard not to love.\nIn this episode, Brenner-forced out of the police force-tries to get away\nfrom detective work by taking a job as the personal chauffeur for two-year-\nold Helena, the daughter of a Munich construction giant and a Viennese\nabortion doctor. One day, while Brenner's attention is turned to picking\nout a chocolate bar for Helena at a gas station, Helena gets snatched from\nthe car. Abruptly out of a job, Brenner decides to investigate her\ndisappearance on his own. With both parents in the public eye, there's no\nscarcity of leads-the father's latest development project has spurred\npublic protest, and the mother's clinic has been targeted by the zealous\nleader of an anti-abortion group. Brenner and God is told with a dark humor\nthat leaves no character, including Brenner, unscathed. Haas tells the\nstory of a fallible hero who can be indecisive and world-weary, baffled and\ndisillusioned by what he finds, but who presses forward nonetheless out of\na stubborn sense of decency-a two-year-old is kidnapped, so you find her,\nbecause that's just what you do.\"\r\n5097,5330,4987,Kurt Vonnegut Jr.,Jailbird,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1514676373l/4987.jpg,3.81,15643,\"fiction, classics\",\"A master of contemporary American literature, Vonnegut has authored 18\nhighly acclaimed books and dozens of short stories and essays. This wry\ntale follows bumbling bureaucrat Walter F. Starbuck from Harvard to the\nNixon White House to the penitentiary as Watergate's least known co-\nconspirator.\"\r\n5098,5331,156532,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",Y: The Last Man Vol. 9: Motherland,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389738956l/156532.jpg,4.27,20511,\"comics, fiction\",\"\"\"In the summer of 2002, a plague of unknown origin destroyed every last\nsperm, fetus, and fully developed mammal with a Y chromosome, with the\napparent exception of one young man . . . Now, aided by the mysterious\nAgent 355, the human male Yorick Brown must contend with dangerous\nextremists, a hoped-for reunion with a girlfriend on the other side of the\nglobe, and the search for exactly why he's the only man to survive.\"\"--Book\n1, Back cover.\"\r\n5099,5332,3973,Dan Simmons,Ilium,https://images.gr-assets.com/books/1390894862l/3973.jpg,4.01,19242,\"fantasy, fiction\",IliumDan Simmons\r\n5100,5334,923950,Elaine N. Aron,The Highly Sensitive Person - How to Thrive when the World Overwhelms You,https://images.gr-assets.com/books/1320525063l/923950.jpg,3.87,19447,\"psychology, nonfiction\",\"Stating that hypersensitivity is an asset rather than a flaw, a guide for\nthe one out of every five people who is highly subject to his or her\nsurroundings offers coping methods while explaining how to benefit from\nsensitivityrelated personality traits. Reissue.\"\r\n5101,5335,1774836,Chitra Banerjee Divakaruni,The Palace of Illusions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1396229073l/1774836.jpg,4.11,16304,\"fiction, fantasy\",\"Panchaali, wife of the five legendary Pandavas brothers, offers her own\nversion of the ancient Indian epic, The Mahabharat, as she chronicles the\nstory of her magical birth, the problems of dealing with five husbands who\nhave been cheated out of their birthright, the trials she endures, her\nfriendship with Krishna, and her attraction to her husband's enemy.\nReprint. 30,000 first printing.\"\r\n5102,5336,147602,H.W. Brands,The First American: The Life and Times of Benjamin Franklin,https://images.gr-assets.com/books/1320438405l/147602.jpg,4.09,15323,\"biography, history\",\"A biography of America's first Renaissance man discusses Benjamin\nFranklin's diverse roles as a scientist, businessman, philosopher, writer,\ninventor, diplomat, politician, wit, and Founding Father.\"\r\n5103,5337,136638,\"Douglas Preston, Lincoln Child\",Dance of Death,https://images.gr-assets.com/books/1172082458l/136638.jpg,4.16,19812,\"mystery, thriller\",\"Dance of DeathDouglas Preston, Lincoln Child\"\r\n5104,5338,6393972,Susan Beth Pfeffer,This World We Live In,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442881735l/6393972._SY475_.jpg,3.81,23711,\"fiction, romance\",\"When the moon's gravitational pull increases, causing massive natural\ndisasters on Earth, Miranda and her family struggle to survive in a world\nwithout cities or sunlight, and wonder if anyone else is still alive.\"\r\n5105,5339,1493253,\"Yoshihiro Togashi, 冨樫 義博\",Hunter × Hunter #1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1584822437l/1493253._SY475_.jpg,4.43,18244,\"manga, fantasy\",\"Hunter × Hunter #1Yoshihiro Togashi, 冨樫 義博\"\r\n5106,5340,132778,J.D. Robb,Vengeance in Death,https://images.gr-assets.com/books/1314315865l/132778.jpg,4.34,24839,\"mystery, romance\",\"A madman brutally murders two men--both with ties to an ugly secret shared\nby Eve's new husband, Roarke.\"\r\n5107,5341,77773,Connie Willis,To Say Nothing of the Dog,https://images.gr-assets.com/books/1469410460l/77773.jpg,4.13,23197,\"fiction, fantasy\",\"Ned Henry shuttles between the 1940s and the twenty-first century while\nresearching Coventry Cathedral for a patron interested in rebuilding it\nuntil the time continuum is disrupted\"\r\n5108,5342,7646805,\"James Patterson, Ned Rust\",The Gift,https://images.gr-assets.com/books/1273009084l/7646805.jpg,3.78,17070,\"fantasy, fiction\",\"The GiftJames Patterson, Ned Rust\"\r\n5109,5343,7679,Michael Crichton,The Terminal Man,https://images.gr-assets.com/books/1461056182l/7679.jpg,3.34,19072,\"fiction, thriller\",\"A team of surgeons perform an operation on a violent paranoid man in an\nattempt to electronically control his behavior, only to have an unforeseen\ndevelopment from the procedure endanger the city.\"\r\n5110,5344,18337259,\"Daniel Abraham, George R.R. Martin, Tommy Patterson\",A Song of Ice and Fire Graphic Novels,https://images.gr-assets.com/books/1376738412l/18337259.jpg,4.65,18667,\"fantasy, comics\",\"Depicts the events that take place in Westeros as a number of different\nfamilies fight to rule the kingdom in a graphic novel adaptation of the \"\"A\nSong of Ice and Fire\"\" novels.\"\r\n5111,5345,6087756,Holly Black,White Cat,https://images.gr-assets.com/books/1358274572l/6087756.jpg,3.81,29444,\"fantasy, paranormal\",\"The first in a trilogy, this gritty, fast-paced fantasy is rife with the\nunexpected. Cassel comes from a shady, magical family of con artists and\ngrifters. He doesn’t fit in at home or at school, so he’s used to feeling\nlike an outsider. He’s also used to feeling guilty—he killed his best\nfriend, Lila, years ago. But when Cassel begins to have strange dreams\nabout a white cat, and people around him are losing their memories, he\nstarts to wonder what really happened to Lila. In his search for answers,\nhe discovers a wicked plot for power that seems certain to succeed. But\nCassel has other ideas— and a plan to con the conmen.\"\r\n5112,5346,11437,Raymond Carver,Where I’m Calling From: The Selected Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388237827l/11437.jpg,4.42,16617,\"fiction, classics\",\"Spans twenty-five years of the author's writing career with both earlier\nworks and original stories that explore betrayal, madness, and other\nreaches of human experience, in tales including \"\"Intimacy\"\" and \"\"Boxes\"\"\"\r\n5113,5347,26999,Jasper Fforde,Something Rotten,https://images.gr-assets.com/books/1479773726l/26999.jpg,4.15,24526,\"fantasy, fiction\",\"Tired of her responsibilities as the Bellman in Jurisfiction, literary\nsleuth Thursday Next packs up her son, Friday, to return to Swindon,\naccompanied by the Danish prince Hamlet, only to find herself coping with\noutlaw fictioneer Yorrick Kaine, anti-Danish sentiment, the return of\nSwindon's patron saint, and a seminal croquet tournament. Reprint.\"\r\n5114,5348,8318666,Jean M. Auel,The Land of the Painted Caves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194834l/8318666.jpg,3.24,19300,\"romance, fiction\",\"As Ayla studies to become a spiritual leader to Jondalar's people, the\nZelandonii, she faces many challenges, including being separated from\nJondalar and their young daughter, Jonayla, and experiences a revelation.\"\r\n5115,5349,534255,Lucy Grealy,Autobiography of a Face,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921470l/534255.jpg,3.96,18982,\"memoir, nonfiction\",\"ANew York TimesNotable Book \"\"This is a young woman's first book, the story\nof her own life, and both book and life are unforgettable.\"\" --New York\nTimes \"\"Engaging and engrossing, a story of grace as well as cruelty, and a\ndemonstration of [Grealy's] own wit and style and class.\"\"--Washington Post\nBook World This powerful memoir is about the premium we put on beauty and\non a woman's face in particular. It took Lucy Grealy twenty years of living\nwith a distorted self-image and more than thirty reconstructive procedures\nbefore she could come to terms with her appearance after childhood cancer\nand surgery that left her jaw disfigured. As a young girl, she absorbed the\nsearing pain of peer rejection and the paralyzing fear of never being\nloved.\"\r\n5116,5350,22465597,Lauren Oliver,Vanishing Girls,https://images.gr-assets.com/books/1414618400l/22465597.jpg,3.59,19508,\"mystery, contemporary\",Vanishing GirlsLauren Oliver\r\n5117,5351,141019,Walt Disney Company,Snow White and the Seven Dwarfs,https://images.gr-assets.com/books/1320524015l/141019.jpg,4.18,20021,\"classics, fantasy\",Snow White and the Seven DwarfsWalt Disney Company\r\n5118,5352,7355137,\"Angie Sage, Mark Zug\",Darke,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347727660l/7355137.jpg,4.23,21322,\"fantasy, fiction\",\"DarkeAngie Sage, Mark Zug\"\r\n5119,5353,7528717,Jeff Kinney,The Wimpy Kid Movie Diary: How Greg Heffley Went Hollywood,https://images.gr-assets.com/books/1328811516l/7528717.jpg,4.16,15956,\"nonfiction, comics\",The Wimpy Kid Movie Diary: How Greg Heffley Went HollywoodJeff Kinney\r\n5120,5354,80616,Dashiell Hammett,The Thin Man,https://images.gr-assets.com/books/1321111302l/80616.jpg,3.97,20535,\"mystery, fiction\",\"Nick Charles searches for a wealthy inventor who is the prime suspect in a\nNew York City murder case\"\r\n5121,5355,178813,Candace Bushnell,Trading Up,https://images.gr-assets.com/books/1351341588l/178813.jpg,3.2,15604,\"fiction, romance\",Trading UpCandace Bushnell\r\n5122,5356,234489,David Brin,The Uplift War,https://images.gr-assets.com/books/1375272637l/234489.jpg,4.06,20217,\"fiction, fantasy\",\"The inhabitants of Garth, a dying planet, battle brutal alien invaders,\nwith the survival of Earth and the fate of the entire five galaxies at\nstake\"\r\n5123,5357,13881,Raymond E. Feist,Rage of a Demon King (The Serpentwar Saga #3),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389586786l/13881.jpg,4.02,19206,\"fantasy, fiction\",Rage of a Demon King (The Serpentwar Saga #3)Raymond E. Feist\r\n5124,5358,395182,\"Kingsley Amis, David Lodge\",Lucky Jim,https://images.gr-assets.com/books/1373459729l/395182.jpg,3.79,17448,\"fiction, classics\",\"First published in 1954, this book is a hilarious satire of British\nuniversity life. Jim has accidentally fallen into a job at one of the new\nred brick universities. A moderately successful future in the History\nDepartment beckons as long as Jim can keep in with eccentric Professor\nWelch, survive a madrigal-singing weekend, deliver a lecture on 'Merrie\nEngland' and resist Christine, the hopelessly desirable girlfriend of\nWelch's awful son, Bertrand.\"\r\n5125,5359,21721,Karin Slaughter,A Faint Cold Fear,https://images.gr-assets.com/books/1394126332l/21721.jpg,4.12,18827,\"mystery, thriller\",\"Sara Linton, medical examiner in the small town of Heartsdale, GA, is\ncalled out to an apparent suicide on the local college campus. The\nmutilated body provides little in the way of clues -- and the college\nauthorities are eager to avoid a scandal -- but for Sara and police chief\nJeffrey Tolliver, things don't add up. Two more suspicious suicides follow,\nand a young woman is brutally attacked. For Sara, the violence strikes far\ntoo close to home. And as Jeffrey pursues the sadistic killer, he discovers\nthat ex-police detective Lena Adams, now a security guard on campus, may be\nin possession of crucial information. But, bruised and angered by her\nexpulsion from the force, Lena seems to be barely capable of protecting\nherself, let alone saving the next victim.\"\r\n5126,5360,23846013,Marie Lu,The Rose Society,https://images.gr-assets.com/books/1443368070l/23846013.jpg,4.11,27655,\"fantasy, romance\",\"Vengeful in the aftermath of cruel betrayals by both family and friends,\nAdelina flees with her sister to build an army of fellow Young Elites in an\neffort to strike down the white-cloaked Inquisition Axis soldiers who\nnearly killed her.\"\r\n5127,5361,276342,Kristin Hannah,Angel Falls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206922l/276342.jpg,3.9,17886,\"fiction, romance\",\"Liam will do anything to break his wife out of her coma, even locating the\nfirst love of her life--the man she married before him--and bringing him to\nher bedside. By the author of Mystic Lake. Reprint.\"\r\n5128,5362,5168517,Susane Colasanti,Waiting For You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442714934l/5168517._SY475_.jpg,3.84,20236,\"romance, contemporary\",\"Fifteen-year-old high school sophomore Marisa, who has an anxiety disorder,\ndecides that this is the year she will get what she wants--a boyfriend and\na social life--but things do not turn out exactly the way she expects them\nto.\"\r\n5129,5363,18775365,Jeff Hobbs,The Short and Tragic Life of Robert Peace: A Brilliant Young Man Who Left Newark for the Ivy League,https://images.gr-assets.com/books/1420938377l/18775365.jpg,4.13,14451,\"biography, nonfiction\",\"Traces a young man's effort to escape the dangers of the streets and his\nown nature after graduating from Yale, describing his youth in violent\n1980s Newark, efforts to navigate two fiercely insular worlds and life-\nending drug deals. 75,000 first printing.\"\r\n5130,5365,5422154,Lisa Gardner,The Neighbor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429126631l/5422154.jpg,4.08,19985,\"mystery, thriller\",\"In the wake of a wife and mother's disappearance from her suburban home, an\nensuing police investigation focuses on the missing woman's husband, whose\nsuspicious behavior reveals cracks in their seemingly idyllic family life.\nBy the author of Say Goodbye. Reprint. A best-selling novel.\"\r\n5131,5366,2202230,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",Y: The Last Man Vol. 10: Whys And Wherefores,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210445l/2202230.jpg,4.34,19916,\"comics, fiction\",\"\"\"In the summer of 2002, a plague of unknown origin destroyed every last\nsperm, fetus, and fully developed mammal with a Y chromosome, with the\napparent exception of one young man . . . Now, aided by the mysterious\nAgent 355, the human male Yorick Brown must contend with dangerous\nextremists, a hoped-for reunion with a girlfriend on the other side of the\nglobe, and the search for exactly why he's the only man to survive.\"\"--Book\n1, Back cover.\"\r\n5132,5367,840278,Greg Bear,Eon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288738l/840278.jpg,3.86,18373,\"fiction, science\",\"New York Times bestselling author Greg Bear's Eon is now available for the\nfirst time in trade paperback. The 21st century was on the brink of nuclear\nconfrontation when the 300 kilometer-long stone flashed out of nothingness\nand into Earth's orbit. NASA, NATO, and the UN sent explorers to the\nasteroid's surface...and discovered marvels and mysteries to drive\nresearchers mad. For the Stone was from space--but perhaps not our space;\nit came from the future-but perhaps not our future; and within the hollowed\nasteroid was Thistledown. The remains of a vanished civilization. A human-\nEnglish, Russian, and Chinese-speaking-civilization. Seven vast chambers\ncontaining forests, lakes, rivers, hanging cities... And museums describing\nthe Death; the catastrophic war that was about to occur; the horror and the\nlong winter that would follow. But while scientists and politicians\nbickered about how to use the information to stop the Death, the Stone\nyielded a secret that made even Earth's survival pale into insignificance.\"\r\n5133,5368,25776122,Helen Simonson,The Summer Before the War,https://images.gr-assets.com/books/1443294379l/25776122.jpg,3.79,17350,\"fiction, romance\",\"NEW YORK TIMES BESTSELLER * \"\"A novel to cure your Downton Abbey withdrawal\n. . . a delightful story about nontraditional romantic relationships, class\nsnobbery and the everybody-knows-everybody complications of living in a\nsmall community.\"\"--The Washington Post The bestselling author of Major\nPettigrew's Last Stand returns with a breathtaking novel of love on the eve\nof World War I that reaches far beyond the small English town in which it\nis set. East Sussex, 1914. It is the end of England's brief Edwardian\nsummer, and everyone agrees that the weather has never been so beautiful.\nHugh Grange, down from his medical studies, is visiting his Aunt Agatha,\nwho lives with her husband in the small, idyllic coastal town of Rye.\nAgatha's husband works in the Foreign Office, and she is certain he will\nensure that the recent saber rattling over the Balkans won't come to\nanything. And Agatha has more immediate concerns; she has just risked her\ncarefully built reputation by pushing for the appointment of a woman to\nreplace the Latin master. When Beatrice Nash arrives with one trunk and\nseveral large crates of books, it is clear she is significantly more\nfreethinking--and attractive--than anyone believes a Latin teacher should\nbe. For her part, mourning the death of her beloved father, who has left\nher penniless, Beatrice simply wants to be left alone to pursue her\nteaching and writing. But just as Beatrice comes alive to the beauty of the\nSussex landscape and the colorful characters who populate Rye, the perfect\nsummer is about to end. For despite Agatha's reassurances, the unimaginable\nis coming. Soon the limits of progress, and the old ways, will be tested as\nthis small Sussex town and its inhabitants go to war. Praise for The Summer\nBefore the War \"\"What begins as a study of a small-town society becomes a\ncompelling account of war and its aftermath.\"\"--Woman's Day \"\"This witty\ncharacter study of how a small English town reacts to the 1914 arrival of\nits first female teacher offers gentle humor wrapped in a hauntingly\ndetailed story.\"\"--Good Housekeeping \"\"Perfect for readers in a post-Downton\nAbbey slump . . . The gently teasing banter between two kindred spirits\nedging slowly into love is as delicately crafted as a bone-china teacup. .\n. . More than a high-toned romantic reverie for Anglophiles--though it\nserves the latter purpose, too.\"\"--The Seattle Times \"\"[Helen Simonson's]\ncharacters are so vivid, it's as if a PBS series has come to life. There's\nscandal, star-crossed love and fear, but at its heart, The Summer Before\nthe War is about loyalty, love and family.\"\"--AARP: The Magazine \"\"This\nluminous story of a family, a town, and a world in their final moments of\ninnocence is as lingering and lovely as a long summer sunset.\"\"--Annie\nBarrows, author of The Truth According to Us and co-author of The Guernsey\nLiterary and Potato Peel Pie Society \"\"Simonson is like a Jane Austen for\nour day and age--she is that good--and The Summer Before the War is nothing\nshort of a treasure.\"\"--Paula McLain, author of The Paris Wife and Circling\nthe Sun From the Hardcover edition.\"\r\n5134,5369,612188,\"C.G. Jung, Aniela Jaffé, Richard Winston, Clara Winston\",\"Erinnerungen, Träume, Gedanken von C.G. Jung\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348081175l/612188.jpg,4.19,16810,\"psychology, biography\",\"The Swiss psychologists shares the visions, inner experiences, and dreams\nthat have shaped his work and thought\"\r\n5135,5370,7121598,Laurell K. Hamilton,Bullet,https://images.gr-assets.com/books/1292915430l/7121598.jpg,3.82,25388,\"paranormal, fantasy\",BulletLaurell K. Hamilton\r\n5136,5371,8533018,Diana Gabaldon,The Scottish Prisoner,https://images.gr-assets.com/books/1372562277l/8533018.jpg,4.19,17459,\"fiction, mystery\",\"In the eighteenth century, paroled prisoner-of-war Jamie Fraser and his old\nfriend Tobias Quinn must travel from London to Ireland on a mission of\nintrigue surrounding a packet of documents and an ancient relic.\"\r\n5137,5372,199785,Meg Cabot,Reunion,https://images.gr-assets.com/books/1327954705l/199785.jpg,4.09,28944,\"paranormal, fantasy\",\"The RLS Angels are out for blood, and only Suze can stop them—since she's\nthe only one who can see them. The four ghostly teenagers died in a\nterrible car accident, for which they blame Suze's classmate Michael... and\nthey'll stop at nothing until he's joined them in the realm of the dead. As\nSuze desperately fends off each attempt on Michael's life, she finds she\ncan relate to the Angels' fury. Because their deaths turn out not to have\nbeen accidental at all. And their killer is only too willing to strike\nagain.\"\r\n5138,5373,10706934,ياسر حارب,بيكاسو وستاربكس,https://images.gr-assets.com/books/1319030238l/10706934.jpg,3.55,16117,\"ebooks, philosophy\",\"في بعض المجتمعات العربية، يَندُر أن تجد من يقول لك «أنت ناجح»، ولكن من\nالسهل أن تجد من يقول «أنت مخطئ»، وهذا أحد أسباب التراجع العربي. ولذلك لا\nيشعر غالبية المبدعين في تلك المجتمعات بالأمان المعرفي، ويسعون إلى استرضاء\nطائفة فكرية معيّنة، حتى يجــدوا لديها تشجيعاً أياً كانت صيغته. فيتحــول\nالمبدعون في هذه الحال إلى نسخ مكررة، تُردد نفس الشعارات، وتستشهد بنفس\nالمقولات التي يتداولها مَن حولهم. لا أؤمن بالأمثال كثيراً، وقلّما أستخدمها\nفي حياتي، فالأمثال تجارب إنسانية لبشر مروا قبلنا، قد يخطئون وقد يصيبون،\nوكلامهم ليس من التنزيل حتى يُنزَّه عن الخطأ. في هذا الكتاب قد لا تجد من\nيقول لك \"\" أنت ناجح \"\" ولكنك بالتأكيد لن تجد من يقول لك \"\" أنت مخطئ\"\".\"\r\n5139,5374,26101,\"Milan Kundera, Suzanne Rappaport\",Směšné lásky ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547124116l/26101._SY475_.jpg,3.86,12984,\"fiction, classics\",\"Milan Kundera is a master of graceful illusion and illuminating surprise.\nIn one of these stories a young man and his girlfriend pretend that she is\na stranger he picked up on the road--only to become strangers to each other\nin reality as their game proceeds. In another a teacher fakes piety in\norder to seduce a devout girl, then jilts her and yearns for God. In yet\nanother girls wait in bars, on beaches, and on station platforms for the\nsame lover, a middle-aged Don Juan who has gone home to his wife. Games,\nfantasies, and schemes abound in all the stories while different characters\nreact in varying ways to the sudden release of erotic impulses.\"\r\n5140,5375,110387,Julia Quinn,The Secret Diaries of Miss Miranda Cheever,https://images.gr-assets.com/books/1274212433l/110387.jpg,3.93,25533,\"romance, fiction\",\"2 March 1810 . . . Today, I fell in love. At the age of ten, Miranda\nCheever showed no signs of Great Beauty. And even at ten, Miranda learned\nto accept the expectations society held for her—until the afternoon when\nNigel Bevelstoke, the handsome and dashing Viscount Turner, solemnly kissed\nher hand and promised her that one day she would grow into herself, that\none day she would be as beautiful as she already was smart. And even at\nten, Miranda knew she would love him forever. But the years that followed\nwere as cruel to Turner as they were kind to Miranda. She is as intriguing\nas the viscount boldly predicted on that memorable day—while he is a\nlonely, bitter man, crushed by a devastating loss. But Miranda has never\nforgotten the truth she set down on paper all those years earlier—and she\nwill not allow the love that is her destiny to slip lightly through her\nfingers . . .\"\r\n5141,5376,89959,Founding Fathers,The Constitution of the United States of America,https://images.gr-assets.com/books/1328756752l/89959.jpg,4.54,16863,\"history, classics\",The Constitution of the United States of AmericaFounding Fathers\r\n5142,5377,103902,Gilles Néret,Gustav Klimt: le monde comme une forme féminine,https://images.gr-assets.com/books/1393794080l/103902.jpg,4.12,15611,\"biography, art\",\"Gustav Klimt's art thoroughly expresses the apocalyptic atmosphere of\nVienna's upper middle-class society - a society devoted to the cultivation\nof aesthetic awareness and the cult of pleasure. The ecstatic joy which\nKlimt and his contemporaries found - or hoped to find - in beauty was\nconstantly overshadowed by death. And death therefore plays an important\nrole in Klimt's art. Klimt's fame, however, rests on his reputation as one\nof the greatest erotic painters and graphic artists of his times. In\nparticular, his drawings, which have been widely admired for their artistic\nexcellence, are dominated by the erotic portrayal of women. Klimt saw the\nworld \"\"in female form\"\". [site accessed 23/07/2012 -\nhttp://www.amazon.com/Gustav-Klimt-1862-1918-Basic-Art/dp/382285980X].\"\r\n5143,5378,31072,Malcolm Lowry,Under the Volcano,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390014193l/31072.jpg,3.8,15832,\"fiction, classics\",\"Geoffrey Firmin, a former British consul, has come to Quauhnahuac, Mexico.\nHis debilitating malaise is drinking, an activity that has overshadowed his\nlife. On the most fateful day of the consul's life—the Day of the Dead,\n1938—his wife, Yvonne, arrives in Quauhnahuac, inspired by a vision of life\ntogether away from Mexico and the circumstances that have driven their\nrelationship to the brink of collapse. She is determined to rescue Firmin\nand their failing marriage, but her mission is further complicated by the\npresence of Hugh, the consul's half brother, and Jacques, a childhood\nfriend. The events of this one significant day unfold against an\nunforgettable backdrop of a Mexico at once magical and diabolical. Under\nthe Volcano remains one of literature's most powerful and lyrical\nstatements on the human condition, and a brilliant portrayal of one man's\nconstant struggle against the elemental forces that threaten to destroy\nhim.\"\r\n5144,5379,20894857,Rachel Abbott,Sleep tight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393219053l/20894857.jpg,3.98,10894,\"mystery, thriller\",\"\"\"When Olivia Brookes calls the police to report that her husband and\nchildren are missing, she believes she will never see them again. She has\nreason to fear the worst; this isn't the first tragedy that Olivia has\nexperienced. Now, two years later, Detective Chief Inspector Tom Douglas is\ncalled in to investigate this family again, but this time it's Olivia who\nhas disappeared. All the evidence suggests that she was here, in the family\nhome, that morning. But her car is in the garage, and her purse is in her\nhandbag - on the kitchen table. The police want to issue an appeal, but for\nsome reason every single picture of this family has been removed from\nalbums, from phones, from computers. And then they find the blood... Has\nthe past caught up with Olivia?\"\"--Amazon.com.\"\r\n5145,5380,824734,\"Mary Pope Osborne, Salvatore Murdocca\",Dinosaurs Before Dark,https://images.gr-assets.com/books/1320508235l/824734.jpg,3.87,22533,\"fantasy, fiction\",\"\"\"With an entertaining blend of fact, farce, and fantasy, Osborne tells the\nstory of Jack and his sister, Annie, who take a trip in a magic tree house\nand land in a time 65 million years ago. They find dinosaurs and volcanoes\nand adventure. Veteran storyteller Osborne builds the power of reading into\nthe story: it's the books in the tree house that give the kids the magic to\ntravel and see far, far away.\"\"--Booklist.\"\r\n5146,5381,20417,Robert A. Heinlein,Have Space Suit - Will Travel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425593094l/20417.jpg,3.89,20260,\"fiction, classics\",\"Teenager Clifford \"\"Kip\"\" Russell wins second prize in a soap jingle contest,\na used worn spacesuit, and, while trying on his prize in his backyard,\nsuddenly finds himself on a space odyssey as a prisoner aboard the ship of\na space pirate, headed toward the Moon and a series of encounters with many\nbizarre creatures and situations. Reprint. 10,000 first printing.\"\r\n5147,5382,43049,Jack London,The Sea Wolf,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389481608l/43049.jpg,4.01,16488,\"classics, fiction\",\"Humphrey Van Weyden becomes an unwilling participant in a tense shipboard\ndrama. A deranged and abusive sea captain perpetrates a shipboard\natmosphere of increasing violence that ultimately boils into mutiny,\nshipwreck, and a desperate confrontation. This 1904 maritime classic\ndepicts the clash of materialistic and idealistic cultures with a mixture\nof gritty realism and sublime lyricism.\"\r\n5148,5383,23224,Meg Cabot,Darkest Hour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187645l/23224.jpg,4.16,28104,\"paranormal, fantasy\",\"When the nineteenth--century ghost of Maria de Silva wakes her up in the\nmiddle of the night, Suze knows this is no ordinary visitation -- and not\njust from the knife at her throat, either. In life, Maria was the fiancée\nof Jesse -- the same Jesse who was murdered a hundred and fifty years\nbefore. The same Jesse Suze is in love with. Maria threatens Suze: The\nbackyard construction must cease. Suze has a pretty good idea what -- or\nrather, who -- Maria doesn't want found. But in solving Jesse's murder,\nwill Suze end up losing him forever?\"\r\n5149,5384,10767466,Kate Beaton,Hark! A Vagrant,https://images.gr-assets.com/books/1327877328l/10767466.jpg,4.27,20587,\"comics, history\",\"FEATURED ON MORE THAN TWENTY BEST-OF LISTS, INCLUDING TIME, AMAZON, E! AND\nPUBLISHERS WEEKLY! Hark! A Vagrant is an uproarious romp through history\nand literature seen through the sharp, contemporary lens of New Yorker\ncartoonist and comics sensation Kate Beaton. No era or tome emerges\nunscathed as Beaton rightly skewers the Western world's revolutionaries,\nleaders, sycophants, and suffragists while equally honing her wit on the\nhapless heroes, heroines, and villains of the best-loved fiction. She\ndeftly points out what really happened when Brahms fell asleep listening to\nLiszt, that the world's first hipsters were obviously the Incroyables and\nthe Merveilleuses from eighteenth-century France, that Susan B. Anthony is,\nof course, a \"\"Samantha,\"\" and that the polite banality of Canadian culture\nnever gets old. Hark! A Vagrant features sexy Batman, the true stories\nbehind classic Nancy Drew covers, and Queen Elizabeth doing the albatross.\nAs the 500,000 unique monthly visitors to harkavagrant.com already know, no\none turns the ironic absurdities of history and literature into comedic\nfodder as hilariously as Beaton.\"\r\n5150,5385,16059,Ann Packer,The Dive From Clausen's Pier,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390408629l/16059.jpg,3.41,18445,\"fiction, contemporary\",\"When her fiancâe Mike is left paralyzed following a tragic accident, Carrie\nBell begins to question her familiar world, from her everyday life in\nWisconsin to her relationships, as she sets out to rediscover her own\nidentity.\"\r\n5151,5386,53061,\"Thomas Mann, Michael Henry Heim, Michael Cunningham\",Der Tod in Venedig,https://images.gr-assets.com/books/1410132000l/53061.jpg,3.73,17168,\"classics, fiction\",\"The world-famous masterpiece by Nobel laureate Thomas Mann -- here in a new\ntranslation by Michael Henry Heim Published on the eve of World War I, a\ndecade after Buddenbrooks had established Thomas Mann as a literary\ncelebrity, Death in Venice tells the story of Gustav von Aschenbach, a\nsuccessful but aging writer who follows his wanderlust to Venice in search\nof spiritual fulfillment that instead leads to his erotic doom. In the\ndecaying city, besieged by an unnamed epidemic, he becomes obsessed with an\nexquisite Polish boy, Tadzio. \"\"It is a story of the voluptuousness of\ndoom,\"\" Mann wrote. \"\"But the problem I had especially in mind was that of\nthe artist's dignity.\"\"\"\r\n5152,5387,206731,\"Sogyal Rinpoche, Andrew Harvey\",The Tibetan Book of Living and Dying,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440341532l/206731._SY475_.jpg,4.22,17170,\"philosophy, spirituality\",\"This acclaimed spiritual masterpiece is widely regarded as one of the most\ncomplete and authoritative presentations of the Tibetan Buddhist teachings\never written. A manual for life and death and a magnificent source of\nsacred inspiration from the heart of the Tibetan tradition, The Tibetan\nBook Of Living and Dying provides a lucid and inspiring introduction to the\npractice of meditation, to the nature of mind, to karma and rebirth, to\ncompassionate love and care for the dying, and to the trials and rewards of\nthe spiritual path.\"\r\n5153,5388,7973,Orson Scott Card,Enchantment,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388707953l/7973.jpg,3.89,21889,\"fantasy, fiction\",\"One of the most popular contemporary authors of science fiction follows one\nman from ninthcentury Russia to presentday America as he struggles to\nrescue a princess and her kingdom, find true love, and overcome the\nblackest of evil. Repirnt.\"\r\n5154,5389,175516,Edgar Allan Poe,The Fall of the House of Usher ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708966l/175516.jpg,3.92,26468,\"classics, horror\",The Fall of the House of Usher Edgar Allan Poe\r\n5155,5390,4415692,D.J. MacHale,The Soldiers of Halla,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348127337l/4415692.jpg,4.27,19502,\"fantasy, fiction\",\"Nine bestselling books. Nine treacherous territories. They have all been\nleading to this. Every victory. Every loss. The thrills and\ndisappointments; the hope and despair. Every moment of Bobby Pendragon’s\nheart-pounding journey through time and space has brought him to this epic\nshowdown. He and his fellow Travelers must join forces for one last\ndesperate battle against Saint Dane. Every question is answered. Every\ntruth is revealed. And at stake is not only the tenth and final territory,\nbut all that ever was or will be. Everywhere. This is the war for Halla,\nand the final battle has begun.\"\r\n5156,5391,301022,E. Lockhart,\"The Boyfriend List: 15 Guys, 11 Shrink Appointments, 4 Ceramic Frogs and Me, Ruby Oliver (Ruby Oliver, #1)\",https://images.gr-assets.com/books/1342343845l/301022.jpg,3.49,22687,\"contemporary, fiction\",\"A Seattle fifteen-year-old named Ruby Oliver explains some of the reasons\nfor her recent panic attacks, including breaking up with her boyfriend,\nlosing all her girlfriends, tensions between her performance-artist mother\nand her father, and more. Reprint.\"\r\n5157,5392,5872,Pat Barker,Regeneration,https://images.gr-assets.com/books/1365925619l/5872.jpg,4.03,17126,\"fiction, history\",RegenerationPat Barker\r\n5158,5393,18668485,Veronica Roth,Four: The Initiate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406901205l/18668485.jpg,4.2,15505,\"fiction, fantasy\",\"Complete your Divergent library with the Four stories! Fans of the\nDivergent series by #1 New York Times bestselling author Veronica Roth will\nbe delighted by \"\"Four: The Initiate,\"\" the second of four stories, each\nbetween fifty and seventy-five pages long, set in the world of Divergent\nand told from Tobias's point of view. \"\"The Initiate\"\" provides readers with\na glimpse into Tobias's Dauntless initiation experience, including an epic\ngame of late-night Dare; his first tattoo; the beginning of his passion for\ntraining new initiates; and his nascent understanding of the danger of\nbeing Divergent.\"\r\n5159,5394,133729,Michael J. Fox,Lucky Man,https://images.gr-assets.com/books/1398617130l/133729.jpg,4.06,16862,\"memoir, nonfiction\",\"The popular actor recounts his childhood in western Canada, his rise in\nfilm and television, his diagnosis of Parkinson's disease, and how he has\nworked to raise awareness of the disease and find a cure.\"\r\n5160,5395,17645,Margaret Atwood,The Penelopiad,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442806554l/17645._SY475_.jpg,3.66,21731,\"fiction, fantasy\",The PenelopiadMargaret Atwood\r\n5161,5396,6390031,\"John Joseph Adams, Robert J. Sawyer, Stephen King, Michael Moorcock, Sharyn McCrumb, Stephen Baxter, Anne Perry, Barbara Hambly, Tanith Lee, Neil Gaiman, Rob Rogers, Naomi Novik, Anthony Burgess, Dominic Green, Laurie R. King, Barbara Roden, Peter Tremayne, Tim Lebbon, Bradley H. Sinor, Edward D. Hoch, Vonda N. McIntyre, Darrell Schweitzer, Mary Robinette Kowal, H.Paul Jeffers, Geoffrey A. Landis, Amy Myers, Tony Pi, Chris Roberson, Mark Valentine\",The Improbable Adventures of Sherlock Holmes,https://images.gr-assets.com/books/1391343317l/6390031.jpg,4.37,16405,\"mystery, fantasy\",\"The Improbable Adventures of Sherlock HolmesJohn Joseph Adams, Robert J. Sawyer, Stephen King, Michael Moorcock, Sharyn McCrumb, Stephen Baxter, Anne Perry, Barbara Hambly, Tanith Lee, Neil Gaiman, Rob Rogers, Naomi Novik, Anthony Burgess, Dominic Green, Laurie R. King, Barbara Roden, Peter Tremayne, Tim Lebbon, Bradley H. Sinor, Edward D. Hoch, Vonda N. McIntyre, Darrell Schweitzer, Mary Robinette Kowal, H.Paul Jeffers, Geoffrey A. Landis, Amy Myers, Tony Pi, Chris Roberson, Mark Valentine\"\r\n5162,5397,192341,Gigi Levangie Grazer,The Starter Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442885286l/192341._SY475_.jpg,3.51,17173,\"fiction, romance\",The Starter WifeGigi Levangie Grazer\r\n5163,5398,167010,\"Bill Willingham, Mark Buckingham, Steve Leialoha, James Jean\",\"Fables, Volume 2: Animal Farm\",https://images.gr-assets.com/books/1364233122l/167010.jpg,4.12,23951,\"comics, fantasy\",\"Follows the adventures of storybook and nursery rhyme characters who live\nside-by-side with humans.\"\r\n5164,5399,464260,\"James     Baldwin, Kıvanç Güney\",The Fire Next Time,https://images.gr-assets.com/books/1488825618l/464260.jpg,4.45,19816,\"nonfiction, classics\",\"The powerful evocation of a childhood in Harlem that helped to galvanize\nthe early days of the civil rights movement examines the deep consequences\nof racial injustice to both the individual and the body politic. Reissue.\n20,000 first printing.\"\r\n5165,5400,191117,Mo Willems,Don't Let the Pigeon Stay Up Late!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439773391l/191117._SX318_.jpg,4.35,25532,\"fiction, fantasy\",Don't Let the Pigeon Stay Up Late!Mo Willems\r\n5166,5401,22358,\"Grant Morrison, Frank Quitely\",We3,https://images.gr-assets.com/books/1336056522l/22358.jpg,3.95,18822,\"comics, fiction\",\"When the trio of enhanced pets are threatened with being dismantled, they\nrun into the world relentlessly pursued, armed with the firepower of a\nbattalion, and a memory of somewhere called \"\"Home.\"\"\"\r\n5167,5402,93731,Meg Cabot,Princess in Pink,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470711l/93731.jpg,3.69,27057,\"romance, contemporary\",\"In a series of humorous diary entries, high school freshman (and Genovian\nPrincess) Mia records her efforts to get her reluctant boyfriend to take\nher to the prom.\"\r\n5168,5403,2051840,Ellen Schreiber,\"The Coffin Club (Vampire Kisses, #5)\",https://images.gr-assets.com/books/1306605099l/2051840.jpg,4.06,22257,\"paranormal, romance\",\"It's tough for love-struck Raven to imagine what's keeping her nocturnal\nboyfriend from returning to Dullsville. So there's only one thing to\ndo—find Alexander. Along the way, Raven can't resist the spot where she\nfeels most at home, the Coffin Club. But when she stumbles upon a secret\ndoor in the club, she descends into a dim catacomb—to a hidden hangout\nwhere the house drink happens to be type A or B. Drawn to one of its\nshadowy members, Raven suspects she's in over her head. But exploring the\ncovert club is too tempting, even after coming face-to-face with\nAlexander's trouble-stirring enemy. Can Raven delve further into the\nUnderworld unbeknownst to Alexander—and also solve the mystery of her true\nlove's own secrecy? Ellen Schreiber's sizzling Vampire Kisses series\ncontinues with its darkest installment yet.\"\r\n5169,5404,11376,Sinclair Lewis,Main Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953459l/11376.jpg,3.75,19040,\"classics, fiction\",Main StreetSinclair Lewis\r\n5170,5405,20829994,\"Rick Riordan, John Rocco\",Percy Jackson's Greek Gods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437455100l/20829994._SX318_.jpg,4.51,24718,\"fantasy, fiction\",\"A publisher in New York asked me to write down what I know about the Greek\ngods, and I was like, Can we do this anonymously? Because I don't need the\nOlympians mad at me again. But if it helps you to know your Greek gods, and\nsurvive an encounter with them if they ever show up in your face, then I\nguess writing all this down will be my good deed for the week. So begins\nPercy Jackson's Greek Gods, in which the son of Poseidon adds his own magic\n--and sarcastic asides--to the classics. He explains how the world was\ncreated, then gives readers his personal take on a who's who of ancients,\nfrom Apollo to Zeus. Percy does not hold back. \"\"If you like horror shows,\nblood baths, lying, stealing, backstabbing, and cannibalism, then read on,\nbecause it definitely was a Golden Age for all that.\"\" This novel-sized\npaperback, complete with an insert of full-color illustrations by Caldecott\nHonoree John Rocco, is portable and friendly, and the ideal way to\nintroduce young readers to the classic stories. Praise for Percy Jackson's\nGreek Gods \"\"Percy's gift, which is no great secret, is to breathe new life\ninto the gods. Closest attention is paid to the Olympians, but Riordan has\na sure touch when it comes to fitting much into a small space-as does\nRocco's artwork, which smokes and writhes on the page as if hit by\nlightning. . .The inevitable go-to for Percy's legions of fans who want the\nstories behind his stories.\"\" -Kirkus Reviews \"\"The age-old stories are\nendlessly strong, resonant, and surprising, while the telling here is\nfresh, irreverent, and amusing. Percy's voice. . . John Rocco illustrates\nthe myths with drama, verve, and clarity. A must-have addition to the Percy\nJackson canon.\"\" -Booklist Online \"\"Combining the sarcasm and wit of Percy\nJackson with the original Greek myths is a great way to hook tweens and\nteens on the stories without boring them. The beautiful illustrations by\nJohn Rocco enhance each story. . .\"\" -VOYA\"\r\n5171,5406,16178,Catherine Gilbert Murdock,Dairy Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1570323194l/16178._SY475_.jpg,3.73,23306,\"sports, contemporary\",\"After spending her summer running the family farm and training the\nquarterback for her school's rival football team, sixteen-year-old D.J.\ndecides to go out for the sport herself, not anticipating the reactions of\nthose around her. Reprint. 100,000 first printing.\"\r\n5172,5407,10756240,Michael Chabon,Telegraph Avenue,https://images.gr-assets.com/books/1335716595l/10756240.jpg,3.36,15614,\"fiction, music\",\"From Michael Chabon, the bestselling author of 'The Amazing Adventures of\nKavalier & Clay', his first novel in five years is a lovingly painted pop-\nculture epic. One street, two families. As the summer of 2004 draws to a\nclose, Archy Stallings and Nat Jaffe are still hanging in there, longtime\nfriends, band mates and co-regents of Brokeland Records. Their wives, Gwen\nShanks and Aviva Roth-Jaffe, are the Berkeley Birth Partners, a pair of\nsemi-legendary nurse midwives. When former star quarterback Gibson Goode\nannounces plans to go forward with the construction of his latest Dogpile\nmegastore on Telegraph Avenue, Nat and Archy fear the worst for their\nvulnerable little enterprise. But behind Goode's announcement a nefarious\nstory lurks. As their husbands struggle to mount a defence, Aviva and Gwen\nalso find themselves caught up in a professional struggle that tests the\nlimits of their friendship. And, simultaneously, into their already tangled\nlives comes Titus Joyner, the teenaged son Archy has never acknowledged. An\nintimate epic set to the funky beat of classic vinyl soul-jazz and pulsing\nwith a virtuosic, pyrotechnical style all of its own, 'Telegraph Avenue' is\nMichael Chabon's most dazzling book yet.\"\r\n5173,5408,5764902,Karin Slaughter,Genesis,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388843741l/5764902.jpg,4.24,17871,\"mystery, thriller\",\"When a severely wounded young woman is brought in to the emergency room,\nSara Linton finds herself drawn back into a world of violence and terror.\nThe woman has been hit by a car but, naked and brutalised, it's clear that\nshe has been the prey of a twisted mind. When Special Agent Will Trent of\nthe Criminal Investigation Team returns to the scene of the accident, he\nstumbles on a torture chamber buried deep beneath the earth. And this\nhidden house of horror reveals a ghastly truth-- Sara's patient is just the\nfirst victim of a sick, sadistic killer.\"\r\n5174,5409,23014670,Erika Swyler,The Book of Speculation,https://images.gr-assets.com/books/1422476749l/23014670.jpg,3.59,17345,\"fiction, fantasy\",The Book of SpeculationErika Swyler\r\n5175,5410,6726595,Laurell K. Hamilton,Flirt,https://images.gr-assets.com/books/1310494369l/6726595.jpg,3.7,26325,\"paranormal, fantasy\",FlirtLaurell K. Hamilton\r\n5176,5411,59825,Nora Roberts,Inner Harbor (Chesapeake Bay Saga #3),https://images.gr-assets.com/books/1399120297l/59825.jpg,4.16,23833,\"romance, contemporary\",\"In the conclusion to the trilogy beginning with \"\"Sea Swept\"\", Philip Quinn's\nbond to his adopted brother, Seth, is threatened by a young woman with a\ntroubling secret\"\r\n5177,5412,6559316,Christopher Moore,Bite Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440562965l/6559316._SY475_.jpg,3.85,20914,\"fiction, fantasy\",Bite MeChristopher Moore\r\n5178,5413,228765,Frederick Franck,Zen of Seeing: Seeing/Drawing as Meditation,https://images.gr-assets.com/books/1403191163l/228765.jpg,3.92,14748,\"art, philosophy\",\"A Dutch artist offers his concept of seeing and drawing as a discipline by\nwhich the world may be rediscovered, a way of experiencing Zen.\"\r\n5179,5414,147843,Kristen Britain,Green Rider,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749176l/147843.jpg,4.09,24006,\"fantasy, fiction\",\"A young woman fleeing for her life learns that she has in fact been\n\"\"chosen\"\" to deliver a very important magical message. Reprint.\"\r\n5180,5415,61942,Anne McCaffrey,The Dragonriders of Pern,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348984331l/61942.jpg,4.22,18896,\"fantasy, fiction\",\"This volume includes the first three books in the popular science-fiction\nDragonriders of Pern series: Dragonflight, Dragonquest, and The White\nDragon.\"\r\n5181,5416,18079683,Helen Oyeyemi,\"Boy, Snow, Bird\",https://images.gr-assets.com/books/1391384454l/18079683.jpg,3.34,17667,\"fiction, contemporary\",\"A modern reimagining of the Snow White fairy tale follows the experiences\nof a woman who marries a mid-20th-century Massachusetts single father and\nsuccumbs to vanity when the birth of her baby reveals her husband to be a\nlight-skinned African American. By the award-winning author of White Is for\nWitching.\"\r\n5182,5417,64860,Sue Grafton,E Is for Evidence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789160l/64860.jpg,3.88,24206,\"mystery, fiction\",E Is for EvidenceSue Grafton\r\n5183,5418,9628743,David  Brooks,\"The Social Animal: The Hidden Sources of Love, Character, and Achievement\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348711254l/9628743.jpg,3.83,15378,\"psychology, nonfiction\",\"From the influential New York Times columnist and best-selling author of\nBobos in Paradise comes a landmark exploration of how human beings and\ncommunities succeed. Reprint. A #1 best-seller.\"\r\n5184,5419,7140754,Ian McEwan,Solar,https://images.gr-assets.com/books/1320510358l/7140754.jpg,3.23,17333,\"fiction, contemporary\",SolarIan McEwan\r\n5185,5420,61539,Thomas S. Kuhn,The Structure of Scientific Revolutions,https://images.gr-assets.com/books/1396422530l/61539.jpg,3.98,15950,\"history, nonfiction\",\"A good book may have the power to change the way we see the world, but a\ngreat book actually becomes part of our daily consciousness, pervading our\nthinking to the point that we take it for granted, and we forget how\nprovocative and challenging its ideas once were—and still are. The\nStructure of Scientific Revolutions is that kind of book. When it was first\npublished in 1962, it was a landmark event in the history and philosophy of\nscience. Fifty years later, it still has many lessons to teach. With The\nStructure of Scientific Revolutions, Kuhn challenged long-standing linear\nnotions of scientific progress, arguing that transformative ideas don’t\narise from the day-to-day, gradual process of experimentation and data\naccumulation but that the revolutions in science, those breakthrough\nmoments that disrupt accepted thinking and offer unanticipated ideas, occur\noutside of “normal science,” as he called it. Though Kuhn was writing when\nphysics ruled the sciences, his ideas on how scientific revolutions bring\norder to the anomalies that amass over time in research experiments are\nstill instructive in our biotech age. This new edition of Kuhn’s essential\nwork in the history of science includes an insightful introduction by Ian\nHacking, which clarifies terms popularized by Kuhn, including paradigm and\nincommensurability, and applies Kuhn’s ideas to the science of today.\nUsefully keyed to the separate sections of the book, Hacking’s introduction\nprovides important background information as well as a contemporary\ncontext. Newly designed, with an expanded index, this edition will be\neagerly welcomed by the next generation of readers seeking to understand\nthe history of our perspectives on science.\"\r\n5186,5421,44001,Andrea Levy,Small Island,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437256773l/44001._SY475_.jpg,3.89,17205,\"fiction, contemporary\",\"Small Island is an international bestseller. It won the Orange Prize for\nFiction, The Orange Prize for Fiction: Best of the Best, The Whitbread\nNovel Award, The Whitbread Book of the Year Award, and the Commonwealth\nWriters' Prize. It has now been adapted for the screen as a coproduction of\nthe BBC and Masterpiece/WGBH Boston. Hortense Joseph arrives in London from\nJamaica in 1948 with her life in her suitcase, her heart broken, her\nresolve intact. Her husband, Gilbert Joseph, returns from the war expecting\nto be received as a hero, but finds his status as a black man in Britain to\nbe second class. His white landlady, Queenie, raised as a farmer's\ndaughter, befriends Gilbert, and later Hortense, with innocence and\ncourage, until the unexpected arrival of her husband, Bernard, who returns\nfrom combat with issues of his own to resolve. Told in these four voices,\nSmall Island is a courageous novel of tender emotion and sparkling wit, of\ncrossings taken and passages lost, of shattering compassion and of reckless\noptimism in the face of insurmountable barriers---in short, an\nencapsulation of that most American of experiences: the immigrant's life.\"\r\n5187,5422,28220985,Louise Penny,A Great Reckoning,https://images.gr-assets.com/books/1457914582l/28220985.jpg,4.46,13563,\"mystery, fiction\",A Great ReckoningLouise Penny\r\n5188,5423,43327,Sidney Sheldon,The Sky is Falling,https://images.gr-assets.com/books/1353302273l/43327.jpg,3.54,15345,\"fiction, thriller\",\"The Winthrops are America's royal family, and its Prince Charming is the\nsexy, charismatic Gary Winthrop. Now the man on his way to becoming the\nSenate's brightest new star is found murdered in his home-the latest in a\nseries of incidents that have killed five members of the family in a single\nyear. One of the last people to see Gary Winthrop alive is Washington\nanchorwoman Dana Evans. She makes it her mission to investigate these\nseemingly random tragedies, little realizing that her search will sweep her\nacross several continents, place her and her young son in grave danger, and\nlead her to a truth that will astound the world.\"\r\n5189,5425,30672,\"Arthur Koestler, Daphne Hardy\",Sonnenfinsternis,https://images.gr-assets.com/books/1290053535l/30672.jpg,4.06,16818,\"history, philosophy\",\"An aging revolutionary is imprisoned and psychologically tortured by the\nParty to which he has dedicated his life. He recalls a career that embodies\nthe ironies and betrayals of a totalitarian government.\"\r\n5190,5426,8341567,Jaci Burton,The Perfect Play,https://images.gr-assets.com/books/1301853642l/8341567.jpg,3.93,31260,\"romance, sports\",\"From the national bestselling author of Riding the Night comes an erotic\nstory about love and the games people play. The last thing event planner\nTara Lincoln needs is the jet-set lifestyle of a football pro like Mick\nRiley; even though their steamy and passionate one-night stand proved that\nMick is an all-star-both on the field and in the bedroom. Tara played the\ngame of love once and lost big, and she doesn't intend to put herself out\nthere again, especially with a certified heartbreaker. But when Mick sets\nhis mind to win, nothing will stop him. And he has the perfect play in mind\nto catch this sultry vixen.\"\r\n5191,5427,763047,Jane Green,Straight Talking,https://images.gr-assets.com/books/1320399611l/763047.jpg,3.63,17917,\"fiction, romance\",\"Navigating the modern London dating scene, television producer Tasha and\nher three best friends contend with empty relationships, one-night stands,\nand men who will not commit.\"\r\n5192,5428,112292,Jack Campbell,\"Dauntless (The Lost Fleet, #1)\",https://images.gr-assets.com/books/1309198180l/112292.jpg,3.93,19074,\"fiction, fantasy\",\"Returning from survival hibernation and assuming the command of the\nAlliance fleet, legendary hero Captain John \"\"Black Jack\"\" Geary must\nretrieve the stolen Syndic hypernet key to save the Alliance from\ndestruction at the hands of the Syndics. Original.\"\r\n5193,5429,61886,Lois McMaster Bujold,The Curse of Chalion,https://images.gr-assets.com/books/1322571773l/61886.jpg,4.16,21007,\"fantasy, fiction\",\"A man broken in body and spirit, Cazaril returns to the noble household he\nonce served as page and is named secretary-tutor to the beautiful, strong-\nwilled sister of the impetuous boy who is next in line to rule. It is an\nassignment Cazaril dreads, for it must ultimately lead him to the place he\nmost fears: the royal court of Cardegoss, where the powerful enemies who\nonce placed him in chains now occupy lofty positions. But it is more than\nthe traitorous intrigues of villains that threaten Cazaril and the Royesse\nIselle here, for a sinister curse hangs like a sword over the entire\nblighted House of Chalion. And only by employing the darkest, most\nforbidden of magics can Cazaril hope to protect his royal charge -- an act\nthat will mark him as a tool of the miraculous . . . and trap him in a\nlethal maze of demonic paradox.\"\r\n5194,5430,80534,Elizabeth Flock,Me & Emma,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360733l/80534.jpg,3.9,16975,\"fiction, contemporary\",Me & EmmaElizabeth Flock\r\n5195,5431,114187,Nora Roberts,\"Chesapeake Blue (Chesapeake Bay Saga, #4)\",https://images.gr-assets.com/books/1304979355l/114187.jpg,4.17,23925,\"romance, contemporary\",\"Nora Roberts returns to Chesapeake Bay and her beloved Quinn family for the\nlong-awaited conclusion to the breathtaking drama that began with \"\"Sea\nSwept, Rising Tides\"\" and \"\"Inner Harbor.\"\"\"\r\n5196,5432,6472451,Malinda Lo,Ash,https://images.gr-assets.com/books/1286563960l/6472451.jpg,3.62,14513,\"fantasy, romance\",\"Cinderella retold In the wake of her father's death, Ash is left at the\nmercy of her cruel stepmother. Consumed with grief, her only joy comes by\nthe light of the dying hearth fire, rereading the fairy tales her mother\nonce told her. In her dreams, someday the fairies will steal her away, as\nthey are said to do. When she meets the dark and dangerous fairy Sidhean,\nshe believes that her wish may be granted. The day that Ash meets Kaisa,\nthe King's Huntress, her heart begins to change. Instead of chasing\nfairies, Ash learns to hunt with Kaisa. Though their friendship is as\ndelicate as a new bloom, it reawakens Ash's capacity for love-and her\ndesire to live. But Sidhean has already claimed Ash for his own, and she\nmust make a choice between fairy tale dreams and true love. Entrancing,\nempowering, and romantic, Ash is about the connection between life and\nlove, and solitude and death, where transformation can come from even the\ndeepest grief.\"\r\n5197,5433,6489529,Bernard Cornwell,The Burning Land,https://images.gr-assets.com/books/1328489431l/6489529.jpg,4.29,15373,\"fiction, history\",\"In a clash of heroes, the kingdom is born. At the end of the ninth century,\nwith King Alfred of Wessex in ill health and his heir still an untested\nyouth, it falls to Alfred's reluctant warlord Uhtred to outwit and\noutbattle the invading enemy Danes, led by the sword of savage warrior\nHarald Bloodhair. But the sweetness of Uhtred's victory is soured by\ntragedy, forcing him to break with the Saxon king. Joining the Vikings,\nallied with his old friend Ragnar—and his old foe Haesten—Uhtred devises a\nstrategy to invade and conquer Wessex itself. But fate has very different\nplans. Bernard Cornwell's The Burning Land is an irresistible new chapter\nin his epic story of the birth of England and the legendary king who made\nit possible.\"\r\n5198,5434,199687,Megan McCafferty,\"Second Helpings (Jessica Darling, #2)\",https://images.gr-assets.com/books/1388707744l/199687.jpg,4.08,23180,\"fiction, romance\",\"In the sequel to Sloppy Firsts, Jessica Darkling is now a senior at\nPineville High and struggles to cope with the enigmatic Marcus Flutie, her\nflighty best friend Hope, and her offensive fellow classmates as she tries\nto get her life back in order before it is time to go to college. Original.\"\r\n5199,5435,134360,\"Diane Arbus, Stan Grossfeld, Doon Arbus, Marvin Israel\",Diane Arbus: An Aperture Monograph,https://images.gr-assets.com/books/1312051661l/134360.jpg,4,14769,\"art, nonfiction\",\"This 25th anniversary edition celebrates one of the most important\nphotographic books in history on the work of a single artist. Every image\nhas been printed from a new 300-line screen duotone film, bringing to the\nreproductions clarity and brilliance unattainable before.\"\r\n5200,5436,253106,Carolyn Mackler,\"The Earth, My Butt, and Other Big Round Things\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405148355l/253106.jpg,3.77,21129,\"fiction, contemporary\",\"The Earth, My Butt, and Other Big Round ThingsCarolyn Mackler\"\r\n5201,5437,12194,Joseph Conrad,Lord Jim,https://images.gr-assets.com/books/1372366969l/12194.jpg,3.61,19113,\"classics, fiction\",Lord JimJoseph Conrad\r\n5202,5438,225545,Leo Lionni,A Color of His Own,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924526l/225545.jpg,4.25,17617,\"fiction, art\",A Color of His OwnLeo Lionni\r\n5203,5439,79257,Neil Gaiman,Don't Panic: The Official Hitchhikers Guide to the Galaxy Companion,https://images.gr-assets.com/books/1328797053l/79257.jpg,4.31,18015,\"biography, fiction\",\"Adds much extra information to the Hitchhiker trilogy, including previously\nunpublished radio show excerpts and a profile of Douglas Adams\"\r\n5204,5440,542752,Andrew Clements,Things Not Seen,https://images.gr-assets.com/books/1327910708l/542752.jpg,3.88,21478,\"fiction, fantasy\",\"When fifteen-year-old Bobby wakes up and finds himself invisible, he and\nhis parents and his new blind friend Alicia try to find out what caused his\ncondition and how to reverse it.\"\r\n5205,5441,19747756,\"Frank E. Peretti, Ted Dekker\",House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387734068l/19747756.jpg,3.6,17813,\"fiction, christian\",\"Two stranded couples find shelter in an inn but find themselves trapped in\na game with rules setting up a life-or-death situation.\"\r\n5206,5442,13638125,\"V.E. Schwab, Victoria Schwab\",Vicious,https://images.gr-assets.com/books/1362495700l/13638125.jpg,4.25,23613,\"fantasy, paranormal\",\"ViciousV.E. Schwab, Victoria Schwab\"\r\n5207,5443,41706,Clive Cussler,Raise the Titanic!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439783780l/41706._SY475_.jpg,3.96,18945,\"fiction, thriller\",\"Two Russian spies and a violent hurricane hinder Dirk Pitt's herculean\nefforts to raise the R.M.S. Titanic and thereby salvage the world's only\nsupply of a rare metal, needed for a secret American defense system.\nReissue.\"\r\n5208,5444,45432,Eoin Colfer,The Supernaturalist,https://images.gr-assets.com/books/1233460677l/45432.jpg,3.85,23010,\"fantasy, fiction\",\"In the future, in a place called Satelite City, fourteen-year-old Cosmo\nHill enters the world, unwanted by his parents. He's sent to the Clarissa\nFrayne Institute for Parentally Challenged Boys, Freight class. At Clarissa\nFrayne, the boys are put to work by the state, testing highly dangerous\nproducts. At the end of most days, they are covered with burns, bruises,\nand sores. Cosmo realizes that if he doesn't escape, he will die at this\nso-called orphanage. When the moment finally comes, Cosmo seizes his chance\nand breaks out with the help of the Supernaturalists, a motley crew of kids\nwho all have the same special ability as Cosmo-they can see supernatural\nParasites, creatures that feed on the life force of humans. The\nSupernaturalists patrol the city at night, hunting the Parasites in hopes\nof saving what's left of humanity in Satellite City. Or so they think. The\nSupernaturalist soon find themselves caught in a web far more complicated\nthan they'd imagined, when they discover a horrifying secret that will\nforce them to question everything they believe in. Eoin Colfer has created\nan eerie and captivating world-part Blade Runner, part futuristic Dickens-\nreplete with non-stop action\"\r\n5209,5445,199782,Meg Cabot,Queen of Babble in the Big City,https://images.gr-assets.com/books/1407106698l/199782.jpg,3.77,24000,\"romance, fiction\",Queen of Babble in the Big CityMeg Cabot\r\n5210,5446,420404,Dr. Seuss,Yertle the Turtle (Classic Seuss),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347434226l/420404.jpg,4.13,24972,\"fiction, classics\",\"Includes three humorous stories in verse: Yertle the Turtle, Gertrude\nMcFuzz, and The Big Brag.\"\r\n5211,5448,19661,Rohinton Mistry,Family Matters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279746l/19661.jpg,3.99,16790,\"fiction, contemporary\",Family MattersRohinton Mistry\r\n5212,5449,132900,Harvey Karp,The Happiest Baby on the Block,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387740973l/132900.jpg,3.92,13035,\"nonfiction, psychology\",\"A pediatrician and child development specialist combines medical research\nwith personal experience to create a four-step plan for soothing a cranky\ninfant.\"\r\n5213,5450,20803962,\"Penelope Douglas, Nelson Hobbs\",Until You,https://images.gr-assets.com/books/1392309696l/20803962.jpg,4.36,16757,\"romance, contemporary\",\"Until YouPenelope Douglas, Nelson Hobbs\"\r\n5214,5451,6765740,Dee Lestari,Perahu Kertas,https://images.gr-assets.com/books/1356225544l/6765740.jpg,3.94,13927,\"romance, fiction\",\"Namanya Kugy. Mungil, pengkhayal, dan berantakan. Dari benaknya, mengalir\nuntaian dongeng indah. Keenan belum pernah bertemu manusia seaneh itu. ...\nNamanya Keenan. Cerdas, artistik, dan penuh kejutan. Dari tangannya,\nmewujud lukisan-lukisan magis. Kugy belum pernah bertemu manusia seajaib\nitu. ... Dan kini mereka berhadapan di antara hamparan misteri dan\nrintangan. Akankah dongeng dan lukisan itu bersatu? Akankah hati dan impian\nmereka bertemu? [Mizan, Bentang, Novel, Indonesia]\"\r\n5215,5452,1025250,Gordon Korman,Schooled,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439571775l/1025250._SY475_.jpg,3.82,20411,\"fiction, contemporary\",\"After his hippie grandmother ends up in the hospital, Cap Anderson is\nforced to leave the commune where he is homeschooled and attend Claverage\nMiddle School, where his odd looks and behavior make him the target of\nbullies. Reprint.\"\r\n5216,5453,13193855,\"Dallas Hartwig, Melissa Hartwig\",It Starts with Food: Discover the Whole30 and Change Your Life in Unexpected Ways,https://images.gr-assets.com/books/1364140054l/13193855.jpg,4.09,13643,\"nonfiction, cookbooks\",\"IMAGINE YOURSELF HEALTHIER THAN YOU EVER THOUGHT POSSIBLE. IT STARTS WITH\nFOOD. It Starts With Food outlines a clear, balanced, sustainable plan to\nchange the way you eat forever—and transform your life in profound and\nunexpected ways. Your success story begins with the Whole30®, Dallas and\nMelissa Hartwig’s powerful 30-day nutritional reset. Since 2009, their\nunderground Whole30 program has quietly led tens of thousands of people to\nweight loss, enhanced quality of life, and a healthier relationship with\nfood—accompanied by stunning improvements in sleep, energy levels, mood,\nand self-esteem. More significant, many people have reported the “magical”\nelimination of a variety of symptoms, diseases, and conditions in just 30\ndays. diabetes high cholesterol high blood pressure obesity acne eczema\npsoriasis chronic fatigue asthma sinus infections allergies migraines acid\nreflux Crohns celiac disease IBS bipolar disorder depression Lyme disease\nendometriosis PCOS autism fibromyalgia ADHD hypothyroidism arthritis\nmultiple sclerosis Now, Dallas and Melissa detail not just the “how” of the\nWhole30, but also the “why,” summarizing the science in a simple,\naccessible manner. It Starts With Food reveals how specific foods may be\nhaving negative effects on how you look, feel, and live—in ways that you’d\nnever associate with your diet. More important, they outline their lifelong\nstrategy for eating Good Food in one clear and detailed action plan\ndesigned to help you create a healthy metabolism, heal your digestive\ntract, calm systemic inflammation, and put an end to unhealthy cravings,\nhabits, and relationships with food. Infused with the Hartwigs’ signature\nwit, tough love, and common sense, It Starts With Food is based on the\nlatest scientific research and real-life experience, and includes\ntestimonials, a detailed shopping guide, a meal-planning template, a Meal\nMap with creative, delicious recipes, and much more.\"\r\n5217,5454,430968,Ted Kerasote,Merle's Door: Lessons from a Freethinking Dog,https://images.gr-assets.com/books/1310704047l/430968.jpg,4.18,14953,\"nonfiction, memoir\",Merle's Door: Lessons from a Freethinking DogTed Kerasote\r\n5218,5455,141372,Gary Paulsen,Brian's Winter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438636861l/141372._SY475_.jpg,3.98,16861,\"fiction, classics\",\"Instead of being rescued from a plane crash, as in the author's book\n\"\"Hatchet,\"\" this story portrays what would have happened to Brian had he\nbeen forced to survive a winter in the wilderness with only his survival\npack and hatchet.\"\r\n5219,5456,11208,Julia Alvarez,How the Garcia Girls Lost Their Accents ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922914l/11208.jpg,3.62,15231,\"fiction, classics\",\"Forced to flee their native Caribbean island after an attempted coup, the\nGarcias--Carlos, Laura, and their four daughters--must learn a new way of\nlife in the Bronx, while trying to cling to the old ways that they loved.\"\r\n5220,5457,17558817,\"J. Lynn, Jennifer L. Armentrout\",Be with Me,https://images.gr-assets.com/books/1380210727l/17558817.jpg,4.15,32046,\"romance, contemporary\",\"Be with MeJ. Lynn, Jennifer L. Armentrout\"\r\n5221,5458,372319,Louisa May Alcott,\"Jo's Boys, and How They Turned Out: A Sequel to \"\"Little Men\"\"\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347470247l/372319.jpg,3.8,23877,\"classics, fiction\",\"Taking place ten years after Little Men, Jo's Boys and How They Turned Out,\nby Louisa May Alcott, is the third and final book in the Little Women\ntrilogy. Originally published in 1886, two years before Ms. Alcott's death,\nJo's Boys follows the lives of the young men readers came to love and\ncherish in its prequel. In it, we learn the fates of Jo's sons Rob and\nTeddy, along with the other boys at Plumfield Estate School. Written in\nclassic Alcott style, we see how the boys struggle to overcome their many\nflaws, in the end learning life's lessons the hard way. Just as the March\ngirls did, each boy must learn to deal with death, love, heartbreak, and\nthe consequences of their actions. Readers will feel pain and joy along\nside each young man as he completes his life journey and fulfills his\ndreams in this classic conclusion to one of America's most beloved series.\nLOUISA MAY ALCOTT (1832-1888), one of the most well-known American\nnovelists of the 19th century, was born on November 29, 1832 to\ntranscendentalist educator Amos Bronson Alcott and his wife, Abigail May\nAlcott. She was the second of four sisters (like Jo, her literary\ncorollary), and grew up in a family that encouraged and sympathized with\nher abolitionist and feminist leanings. As a child she received instruction\nfrom noted literary figures such as Henry David Thoreau, Ralph Waldo\nEmerson, Margaret Fuller, and Nathaniel Hawthorne, all family friends. In\naddition to the Little Women series, which included four novels, she wrote\n28 other works, three under the pen name A.M Barnard. Though Alcott had\nchronic health problems in her later years, most likely attributed to an\nautoimmune disease, she continued to write until her death at 55 in 1888.\"\r\n5222,5459,29430007,Harlan Coben,Home ,https://images.gr-assets.com/books/1458586751l/29430007.jpg,4.2,12183,\"suspense, mystery\",Home Harlan Coben\r\n5223,5460,38502,Charles Bukowski,Notes of a Dirty Old Man,https://images.gr-assets.com/books/1329635507l/38502.jpg,3.99,15443,\"fiction, poetry\",Notes of a Dirty Old ManCharles Bukowski\r\n5224,5461,13505130,\"Jussi Adler-Olsen, K.E. Semmel\",Fasandræberne,https://images.gr-assets.com/books/1336832005l/13505130.jpg,3.85,13479,\"mystery, crime\",\"Detective Carl M²rck investigates the twenty-year-old murders of a brother\nand sister whose confessed killer may actually be innocent, a case with\nties to a homeless woman and powerful adversaries.\"\r\n5225,5462,16171272,James McBride,The Good Lord Bird,https://images.gr-assets.com/books/1385349791l/16171272.jpg,3.75,14538,\"fiction, history\",The Good Lord BirdJames McBride\r\n5226,5463,24963,Susan Cooper,Greenwitch,https://images.gr-assets.com/books/1347322295l/24963.jpg,4,21364,\"fantasy, fiction\",GreenwitchSusan Cooper\r\n5227,5464,30065,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",\"The Walking Dead, Vol. 5: The Best Defense\",https://images.gr-assets.com/books/1345769360l/30065.jpg,4.3,19431,\"horror, fiction\",\"Rick mounts a mission to rescue a crashed helicopter but discovers that\nanother group has beat him, while back at the prison, the group tries to\nrestore electrical power by siphoning gas for the generator from abandoned\ncars in the parking lot.\"\r\n5228,5466,18053782,Abbi Glines,\"Take a Chance (Chance, #1)\",https://images.gr-assets.com/books/1396889528l/18053782.jpg,4.15,30690,\"romance, contemporary\",\"When Harlow Manning's rocker father goes on tour, he sends her to Rosemary\nBeach, Florida, to live with her half-sister, Nan. The problem: Nan\ndespises her. Harlow has to keep her head down if she wants to get through\nthe next nine months, which seems easy enough… until gorgeous Grant Carter\nwalks out of Nan's room. Grant made a huge mistake getting involved with a\ngirl with venom in her veins. He'd known about Nan's reputation, but still\ncouldn't resist her. Nothing makes him regret the fling more than meeting\nHarlow, who sends his pulse racing. Yet Harlow wants nothing to do with a\nguy who could fall for her wicked half-sister - even if there are no\nstrings between Grant and Nan. Grant is desperate to redeem himself in\nHarlow's eyes, but did he ruin his chances with her before he even met her?\"\r\n5229,5467,9975779,Daniel Silva,Portrait of a Spy,https://images.gr-assets.com/books/1468408664l/9975779.jpg,4.24,16744,\"fiction, mystery\",Portrait of a SpyDaniel Silva\r\n5230,5468,501124,Kate Atkinson,One Good Turn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442945693l/501124._SY475_.jpg,3.79,19384,\"mystery, fiction\",\"\"\"Atkinson's bright voice rings on every page, and her sly and wry\nobservations move the plot as swiftly as suspense turns the pages of a\nthriller.\"\"-San Francisco Chronicle Two years after the events of Case\nHistories left him a retired millionaire, Jackson Brodie has followed\nJulia, his occasional girlfriend and former client, to Edinburgh for its\nfamous summer arts festival. But when he witnesses a man being brutally\nattacked in a traffic jam - the apparent victim of an extreme case of road\nrage - a chain of events is set in motion that will pull the wife of an\nunscrupulous real estate tycoon, a timid but successful crime novelist, and\na hardheaded female police detective into Jackson's orbit. Suddenly out of\nretirement, Jackson is once again in the midst of several mysteries that\nintersect in one giant and sinister scheme. \"\"Compelling and always\nentertaining.\"\" -USA Today \"\"One Good Turn crackles with energy and\nimagination.\"\" -Chicago Tribune \"\"Atkinson's tart prose sparkles.\"\"\n-Entertainment Weekly \"\"Entertaining both as a murder mystery and as a\nsprawling multi-character study in the best post-Nashville tradition.\"\" -The\nOnion \"\"A remarkable feat of storytelling bravado.\"\" -Washington Post\"\r\n5231,5469,768878,Clive Barker,Abarat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440644004l/768878._SY475_.jpg,4.08,20460,\"fantasy, fiction\",\"Candy Quackenbush of Chickentown, Minnesota, one day finds herself on the\nedge of a foreign world that is populated by strange creatures, and her\nlife is forever changed.\"\r\n5232,5470,35816,Arthur C. Clarke,2061: Odyssey Three,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347907073l/35816.jpg,3.52,17843,\"fiction, science\",\"Centenarian Heywood Floyd, survivor of two encounters with mysterious\nmonoliths, once again confronts Dave Bowman, an independent HAL, and an\nunseen alien race\"\r\n5233,5471,84525,\"Marshall Goldsmith, Mark Reiter\",What Got You Here Won't Get You There: How Successful People Become Even More Successful,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347513827l/84525.jpg,3.94,14545,\"business, nonfiction\",\"What Got You Here Won't Get You There: How Successful People Become Even More SuccessfulMarshall Goldsmith, Mark Reiter\"\r\n5234,5472,7187395,Richard Paul Evans,The Walk,https://images.gr-assets.com/books/1263465492l/7187395.jpg,4.12,16224,\"fiction, christian\",\"What would you do if you lost everything--your job, your home, and the love\nof your life--all at the same time? When it happens to Seattle ad executive\nAlan Christoffersen, he's tempted by his darkest thoughts but then decides\nto take a walk, heading for the farthest point on his map: Key West,\nFlorida. The people he encounters along the way, and the lessons they share\nwith him, will save his life.\"\r\n5235,5473,6619499,Claudia Gray,Afterlife,https://images.gr-assets.com/books/1277385646l/6619499.jpg,3.8,23780,\"paranormal, fantasy\",\"Destiny awaits Bianca and Lucas . . . Bianca and Lucas have always believed\nthey could endure anything to be together. When a twist of fate not only\ntransforms Bianca into a wraith but also turns Lucas into a vampire—the\nvery creature he spent his life hunting—they are left reeling. Haunted by\nhis powerful need to kill, Lucas can turn to only one place for help . . .\nEvernight Academy. Bianca is determined to remain with him. But with the\nvampire leader of Evernight waging a war against wraiths, her former home\nhas become the most dangerous place she could be, despite the new powers\nher ghostly transformation has given her. A battle between wraiths and\nvampires looms, and Bianca and Lucas face a terrifying new reality. They've\novercome every obstacle life has thrown at them, but is their love strong\nenough to survive the challenges after life?\"\r\n5236,5474,411527,Nick Hornby,Slam,https://images.gr-assets.com/books/1327963062l/411527.jpg,3.27,17393,\"fiction, contemporary\",SlamNick Hornby\r\n5237,5475,9943270,Robin LaFevers,\"Dark Triumph (His Fair Assassin, #2)\",https://images.gr-assets.com/books/1346852168l/9943270.jpg,4.15,28133,\"fantasy, romance\",\"Dark Triumph (His Fair Assassin, #2)Robin LaFevers\"\r\n5238,5476,18263725,Kwame Alexander,The Crossover,https://images.gr-assets.com/books/1390427593l/18263725.jpg,4.22,21249,\"poetry, sports\",\"A middle-grade novel in verse follows the experiences of twin basketball\nstars Josh and Jordan, who struggle with challenges on and off the court\nwhile their father ignores his declining health. 20,000 first printing.\"\r\n5239,5477,1464757,Andrea Hirata,Edensor,https://images.gr-assets.com/books/1489733485l/1464757.jpg,4.06,11719,\"fiction, romance\",\"Novel ketiga dari tetralogi Laskar Pelangi ini bercerita tentang\npetualangan Ikal dan Arai di Eropa. Setelah berhasil memperoleh beasiswa ke\nPrancis, Ikal dan Arai, mengalami banyak kejadian yang orang biasa sebut\nsebagai kejutan budaya. Banyak kebiasaan dan peradaban Eropa yang berlainan\nsama sekali dengan peradaban yang selama ini mereka pahami sebagai orang\nIndonesia,khususnya Melayu. Di dalam buku ini juga Ikal dan Arai kembali\nmenuai karma akibat kenakalan-kenalan yang pernah mereka lakukan semasa\nkecil dan remaja dulu. Pembaca akan dibawa ke dalam petualangan mereka\nmenyusuri Eropa dengan berbagai pengalaman yang mencengangkan, mencekam,\nmembuat terbahak, sekaligus berurai air mata. Aku ingin mendaki puncak\ntantangan, menerjang batu granit kesulitan, menggoda mara bahaya, dan\nmemecahkan misteri dengan sains. Aku ingin menghirup berupa-rupa pengalaman\nlalu terjun bebas menyelami labirin lika-liku hidup yang ujungnya tak dapat\ndisangka. Aku mendamba kehidupan dengan kemungkinan-kemungkinan yang\nbereaksi satu sama lain seperti benturan molekul uranium: meletup tak\nterduga-duga, menyerap, mengikat, mengganda, berkembang, terurai, dan\nberpencar ke arah yang mengejutkan. Aku ingin ke tempat-tempat yang jauh,\nmenjumpai beragam bahasa dan orang-orang asing. Aku ingin berkelana,\nmenemukan arahku dengan membaca bintang gemintang. Aku ingin mengarungi\npadang dan gurun-gurun, ingin melepuh terbakar matahari, limbung dihantam\nangin, dan menciut dicengkeram dingin. Aku ingin kehidupan yang\nmenggetarkan, penuh dengan penaklukan. Aku ingin hidup! Ingin merasakan\nsari pati hidup! Novel ini kian meneguhkan kehadiran tetralogi Laskar\nPelangi sebagai karya unggul yang pasti disukai pembaca. —Ahmad Tohari,\nsastrawan Andrea Hirata membuatku mabuk kepayang!—Linda Christanty,\ncerpenis Berpotensi memberikan letupan inspirasi bagi pembacanya.—Tabloid\nWanita Indonesia [Bentang, Motivasi, Inspirasi, Novel, Indonesia]\"\r\n5240,5478,139087,Alan Hollinghurst,The Line of Beauty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172099924l/139087._SX318_.jpg,3.7,15844,\"fiction, contemporary\",\"Moving into the attic room in the Notting Hill home of the wealthy,\npolitically connected Fedden family in 1983, twenty-year-old Nick Guest\nbecomes caught up in the rising fortunes of this glamorous family and finds\nhis own life forever altered by his association during the boom years of\nthe 1980s. By the author of The Swimming-Pool Library. Reprint.\"\r\n5241,5479,9792287,Susanna Kearsley,The Rose Garden,https://images.gr-assets.com/books/1327951839l/9792287.jpg,4.01,18553,\"romance, fiction\",The Rose GardenSusanna Kearsley\r\n5242,5481,93795,Daniel Silva,The English Assassin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559334947l/93795.jpg,4.12,16810,\"thriller, fiction\",\"Sent to Zurich, Switzerland, to restore a painting owned by a reclusive\nmillionaire banker, art expert and sometime Israeli agent Gabriel Allon\ndiscovers his would-be employer murdered and finds himself back in the\nespionage game, tangling with a rogue assassin he had trained. Reprint..\"\r\n5243,5482,24475,Chuck Klosterman,Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388448967l/24475.jpg,3.85,13892,\"nonfiction, music\",\"Coming off the breakthrough success of Sex, Drugs, and Cocoa Puffs and\nKilling Yourself to Live, bestselling pop culture guru Chuck Klosterman\nassembles his best work previously unavailable in book form—including the\nground-breaking 1996 piece about his chicken McNuggets experiment, his\nuncensored profile of Britney Spears, and a previously unpublished short\nstory—all recontextualized in Chuck’s unique voice with new intros, outros,\nsegues, and masterful footnotes. Chuck Klosterman IV consists of three\nparts: Things That Are True—Profiles and trend stories: Britney Spears,\nRadiohead, Billy Joel, Metallica, Val Kilmer, Bono, Wilco, the White\nStripes, Steve Nash, Morrissey, Robert Plant—all with new introductions and\nfootnotes. Things That Might Be True—Opinions and theories on everything\nfrom monogamy to pirates to robots to super people to guilt, and (of\ncourse) Advancement—all with new hypothetical questions and footnotes.\nSomething That Isn’t True At All—This is old fiction. There’s a new\nintroduction, but no footnotes. Well, there’s a footnote in the\nintroduction, but none in the story.\"\r\n5244,5483,48019,Peter F. Drucker,The Effective Executive: The Definitive Guide to Getting the Right Things Done (Harperbusiness Essentials),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431792111l/48019._SY475_.jpg,4.11,16326,\"business, nonfiction\",\"What makes an effective executive? The measure of the executive, Peter F.\nDrucker reminds us, is the ability to \"\"get the right things done.\"\" This\nusually involves doing what other people have overlooked as well as\navoiding what is unproductive. Intelligence, imagination, and knowledge may\nall be wasted in an executive job without the acquired habits of mind that\nmold them into results. Drucker identifies five practices essential to\nbusiness effectiveness that can, and must, be learned: Managing time\nChoosing what to contribute to the organization Knowing where and how to\nmobilize strength for best effect Setting the right priorities Knitting all\nof them together with effective decision-making Ranging widely through the\nannals of business and government, Peter F. Drucker demonstrates the\ndistinctive skill of the executive and offers fresh insights into old and\nseemingly obvious business situations.\"\r\n5245,5484,23093359,\"Kieron Gillen, Jamie McKelvie, Matt Wilson, Clayton Cowles\",\"The Wicked + The Divine, Vol. 1: The Faust Act\",https://images.gr-assets.com/books/1415565992l/23093359.jpg,3.9,25138,\"comics, fantasy\",\"Every ninety years, twelve gods are incarnated into humans to enjoy a\nlimited two-year lifespan, this time appearing as pop stars, and college\nstudent Laura finds herself in her midst as one of the gods is set up for\nmurder.\"\r\n5246,5485,17797381,Dean Koontz,Innocence,https://images.gr-assets.com/books/1368569643l/17797381.jpg,3.69,13482,\"fiction, horror\",InnocenceDean Koontz\r\n5247,5486,988950,John Sandford,Dark of the Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442687239l/988950._SY475_.jpg,4,18708,\"mystery, fiction\",\"Virgil Flowers is sent to the small town of Bluestem to investigate the\nmurders of a doctor and his wife and a man burned to death in his home,\nunaware that he is tracking a murderer who may be targeting Virgil as his\nnext victim.\"\r\n5248,5487,343614,\"Esther Hicks, Jerry Hicks\",The Law of Attraction: The Basics of the Teachings of Abraham,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182626l/343614.jpg,4.15,13358,\"spirituality, nonfiction\",\"From the New York Times best-selling authors of Ask and It Is Given and The\nAmazing Power of Deliberate Intent. This book presents the powerful basics\nof the original Teachings of Abraham. Within these pages, you'll see how\nall things, wanted and unwanted, are brought to you by this most powerful\nLaw of the Universe: the Law of Attraction (that which is like unto itself,\nis drawn). You've most likely heard the sayings \"\"Like attracts like,\"\"\n\"\"Birds of a feather flock together,\"\" or \"\"It is done unto you as you\nbelieve\"\" (a belief is only a thought you keep thinking); and although the\nLaw of Attraction has been alluded to by some of the greatest teachers in\nhistory, it has never before been explained in as clear and practical terms\nas in this latest book by best-selling authors Esther and Jerry Hicks.\nHere, you'll learn about the omnipresent Laws that govern this Universe and\nhow to make them work to your advantage. The knowledge that you'll absorb\nfrom reading this book will take all the guesswork out of daily living.\nYou'll finally understand just about everything that's happening in your\nown life, as well as the lives of those you're interacting with. This book\nwill help you joyously be, do, or have anything that you desire!\"\r\n5249,5488,16150831,Alexandra Bracken,In The Afterlight,https://images.gr-assets.com/books/1400697474l/16150831.jpg,4.36,25788,\"fantasy, romance\",\"Ruby can't look back. Fractured by an unbearable loss, she and the kids who\nsurvived the government's attack on Los Angeles travel north to regroup.\nOnly Ruby can keep their highly dangerous prisoner in check. But with\nClancy Gray, there's no guarantee you're fully in control, and everything\ncomes with a price. When the Children's League disbands, Ruby rises up as a\nleader and forms an unlikely allegiance with Liam's brother, Cole, who has\na volatile secret of his own. There are still thousands of other Psi kids\nsuffering in government \"\"rehabilitation camps\"\" all over the country.\nFreeing them--revealing the governments unspeakable abuses in the process--\nis the mission Ruby has claimed since her own escape from Thurmond, the\nworst camp in the country. But not everyone is supportive of the plan Ruby\nand Cole craft to free the camps. As tensions rise, competing ideals\nthreaten the mission to uncover the cause of IANN, the disease that killed\nmost of America's children and left Ruby and others with powers the\ngovernment will kill to keep contained. With the fate of a generation in\ntheir hands, there is no room for error. One wrong move could be the spark\nthat sets the world on fire.\"\r\n5250,5489,12637490,Aimee Carter,Goddess Interrupted,https://images.gr-assets.com/books/1397956745l/12637490.jpg,4.02,26286,\"fantasy, romance\",\"As Kate Winters is about to be crowned Queen of the Underworld, Henry,\nruler of the Underworld, is abducted by the only being powerful enough to\nkill him: the King of the Titans. Original.\"\r\n5251,5490,280277,\"Holly Black, Tony DiTerlizzi\",Lucinda’s Secret,https://images.gr-assets.com/books/1358701877l/280277.jpg,3.87,25217,\"mystery, contemporary\",\"With goblins, trolls, and the house boggart all trying to get them, the\nGrace children turn to Great Aunt Lucinda for help.\"\r\n5252,5491,568476,\"Beverly Cleary, Tracy Dockray\",Henry Huggins,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390429386l/568476.jpg,3.97,21823,\"fiction, classics\",\"Henry HugginsBeverly Cleary, Tracy Dockray\"\r\n5253,5492,906541,\"Russell Hoban, Garth Williams\",Bedtime for Frances,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348206956l/906541.jpg,4.14,22865,\"fiction, classics\",\"Famed for her many adventures, Frances made her debut with this title over\nthirty years ago. In this first Frances book, the little badger adroitly\ndelays her bedtime with requests for kisses and milk, and concerns over\ntigers and giants and things going bump in the night. Long a favorite for\nthe gentle humor of its familiar going to bed ritual, Bedtime for Frances\nis at last available with the warmth of full color enriching Garth\nWilliams’s original nuanced and touching art. ‘Here is the coziest, most\nbeguiling bedtime story in many a day.’—Kirkus Reviews (pointer).\"\r\n5254,5493,328802,\"Tetsuko Kuroyanagi, Chihiro Iwasaki, Dorothy Britton\",窓ぎわのトットちゃん,https://images.gr-assets.com/books/1354795941l/328802.jpg,4.3,13859,\"fiction, biography\",\"This engaging series of childhood recollections tells about an ideal school\nin Tokyo during World War II that combined learning with fun, freedom, and\nlove. This unusual school had old railroad cars for classrooms, and it was\nrun by an extraordinary man-its founder and headmaster, Sosaku Kobayashi-\nwho was a firm believer in freedom of expression and activity. In real\nlife, the Totto-chan of the book has become one of Japan's most popular\ntelevision personalities-Tetsuko Kuroyanagi. She attributes her success in\nlife to this wonderful school and its headmaster. The charm of this account\nhas won the hearts of millions of people of all ages and made this book a\nrunaway bestseller in Japan, with sales hitting the 4.5 million mark in its\nfirst year.\"\r\n5255,5494,22055283,Joe Abercrombie,Half the World,https://images.gr-assets.com/books/1402314017l/22055283.jpg,4.2,12396,\"fantasy, fiction\",Half the WorldJoe Abercrombie\r\n5256,5495,10669,Roger Lowenstein,When Genius Failed: The Rise and Fall of Long-Term Capital Management,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435292091l/10669._SY475_.jpg,4.16,15619,\"business, history\",\"A distinguished financial journalist chronicles the dramatic rise and fall\nof Long Term Capital Management, a hundred-billion-dollar hedge fund that\nhad to be rescued from collapse by the controversial Federal Reserve\nbuyout, and the implications of the high-stakes financial manipulatons.\nReprint. 100,000 first printing.\"\r\n5257,5496,44905,Natalie Goldberg,Writing Down the Bones: Freeing the Writer Within,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924733l/44905.jpg,4.17,18477,\"nonfiction, memoir\",\"Offers advice on writing creatively, discusses the importance of\ndiscipline, and suggests writing exercises.\"\r\n5258,5497,8963,Darren Shan,\"Hunters of the Dusk (Cirque Du Freak, #7)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255722755l/8963.jpg,4.17,19326,\"horror, paranormal\",\"The pursuit begins....Darren Shan, the Vampire Prince, leaves Vampire\nMountain on a life or death mission. As part of an elite force, Darren\nsearches the world for the Vampaneze Lord. But the road ahead is long and\ndangerous-and lined with the bodies of the damned.\"\r\n5259,5498,28695,Tad Williams,City of Golden Shadow,https://images.gr-assets.com/books/1329075235l/28695.jpg,3.9,19334,\"fantasy, fiction\",\"In the near future, a global conspiracy threatens to sacrifice the future\nof humanity for the promise of a utopia based on virtual reality, in a\ncritically praised novel by the best-selling author of Tailchaser's Song.\nReprint. PW.\"\r\n5260,5499,140097,Charlaine Harris,An Ice Cold Grave,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389660134l/140097.jpg,3.95,26178,\"mystery, paranormal\",\"Heading for Doraville, North Carolina, to investigate the disappearance of\na young boy, Harper Connelly and her brother Tolliver are stunned to\ndiscover that he is one of several teens who had vanished over the previous\nfive years, but when she uses her talent to communicate with the dead to\nfind the missing boy, she discovers that her knowledge has placed her in\nthe sights of a killer. Reprint.\"\r\n5261,5500,337058,Katherine Paterson,Jacob Have I Loved,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254908l/337058.jpg,3.64,24920,\"fiction, classics\",\"Esau have I hated . . . Sara Louise Bradshaw is sick and tired of her\nbeautiful twin Caroline. Ever since they were born, Caroline has been the\npretty one, the talented one, the better sister. Even now, Caroline seems\nto take everything: Louise's friends, their parents' love, her dreams for\nthe future. For once in her life, Louise wants to be the special one. But\nin order to do that, she must first figure out who she is . . . and find a\nway to make a place for herself outside her sister's shadow.\"\r\n5262,5501,7134201,\"James Patterson, Liza Marklund\",The Postcard Killers,https://images.gr-assets.com/books/1344271030l/7134201.jpg,3.78,18542,\"mystery, fiction\",\"The Postcard KillersJames Patterson, Liza Marklund\"\r\n5263,5502,8230409,\"Julietta Suzuki, Tomo Kimura\",神様はじめました 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389231473l/8230409.jpg,4.38,20569,\"manga, fantasy\",\"神様はじめました 1Julietta Suzuki, Tomo Kimura\"\r\n5264,5503,23587984,Colleen Hoover,Maybe Not,https://images.gr-assets.com/books/1416381591l/23587984.jpg,4.14,26102,\"romance, contemporary\",\"When Warren becomes roommates with cold and calculating Bridgette, tempers\nflare, but Warren is intent on turning her passionate antagonism into\npassionate love.\"\r\n5265,5504,147801,D.J. MacHale,Black Water,https://images.gr-assets.com/books/1431981444l/147801.jpg,4.16,19634,\"fantasy, fiction\",Black WaterD.J. MacHale\r\n5266,5505,121648,Agatha Christie,Five Little Pigs,https://images.gr-assets.com/books/1429422068l/121648.jpg,3.95,19618,\"mystery, crime\",\"Beautiful Caroline Crale was convicted of poisoning her husband, but just\nlike the nursery rhyme, there were five other “little pigs” who could have\ndone it: Philip Blake (the stockbroker), who went to market; Meredith Blake\n(the amateur herbalist), who stayed at home; Elsa Greer (the three-time\ndivorcÉe), who had her roast beef; Cecilia Williams (the devoted\ngoverness), who had none; and Angela Warren (the disfigured sister), who\ncried all the way home. Sixteen years later, Caroline’s daughter is\ndetermined to prove her mother’s innocence, and Poirot just can’t get that\nnursery rhyme out of his mind.\"\r\n5267,5506,9265453,China Miéville,Embassytown,https://images.gr-assets.com/books/1320470326l/9265453.jpg,3.86,17388,\"fiction, fantasy\",\"Retaining a tenuous peace on a distant planet in the far future, humans and\naliens work together through a mutually beneficial economic arrangement\nthat is threatened by the arrival of a new group of humans that\ndestabilizes the world's balance.\"\r\n5268,5507,15752,Dean Koontz,By the Light of the Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347782338l/15752.jpg,3.84,19276,\"horror, fiction\",\"A scientific thriller finds three traveling companions--itinerant artist\nDylan O'Conner, his autistic younger brother Shepherd, and Jillian Jackson,\na young stand-up comic--on the run, just one step ahead of deadly pursuers,\nas they race against time to uncover the meaning of an attack by a\nmysterious doctor and the injection that now appears to have vicious\nconsequences.\"\r\n5269,5508,3581,Arthur Conan Doyle,\"Sherlock Holmes: The Complete Novels and Stories, Volume I\",https://images.gr-assets.com/books/1320490450l/3581.jpg,4.45,17950,\"classics, mystery\",\"Sherlock Holmes: The Complete Novels and Stories, Volume IArthur Conan Doyle\"\r\n5270,5509,246225,Dorothy L. Sayers,Strong Poison,https://images.gr-assets.com/books/1486963427l/246225.jpg,4.14,18578,\"mystery, crime\",Strong PoisonDorothy L. Sayers\r\n5271,5510,77281,Gary Larson,The Far Side Gallery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923919l/77281.jpg,4.42,20022,\"comics, fiction\",\"1984 FarWorks, Inc. All Rights Reserved. The Far Side and the Larson\nsignature are registered trademarks of FarWorks, Inc.\"\r\n5272,5511,13581990,Julie Kagawa,The Eternity Cure,https://images.gr-assets.com/books/1362772965l/13581990.jpg,4.26,27278,\"paranormal, fantasy\",\"Kate Winters has won immortality. But if she wants a life with Henry in the\nUnderworld, she'll have to fight for it.\"\r\n5273,5512,238125,J.D. Robb,Holiday in Death,https://images.gr-assets.com/books/1389932347l/238125.jpg,4.31,24511,\"mystery, romance\",\"Narrates the case of a serial killer preying on the employees of an elite\nNew York escort service, where police lieutenant Eve Dallas goes undercover\"\r\n5274,5513,16090981,Tarryn Fisher,Thief,https://images.gr-assets.com/books/1361401256l/16090981.jpg,4.4,28533,\"romance, contemporary\",\"\"\"Caleb Drake never got over his first love. Not when he got married. Not\nwhen she got married. When life suddenly comes full circle Caleb must\ndecide how how far he is willing to go to get the aloof and alluring Olivia\nKaspen back. But for every action in life there is a consequence, and soon\nCaleb finds out that sometimes love comes at an unbearably high price\"\"--\nBack cover.\"\r\n5275,5514,166562,Aron Ralston,Between a Rock and a Hard Place,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442193831l/166562._SY475_.jpg,3.82,14350,\"biography, nonfiction\",Between a Rock and a Hard PlaceAron Ralston\r\n5276,5515,618177,David Gemmell,Legend ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201276l/618177.jpg,4.25,18260,\"fantasy, fiction\",\"Chris Baker brings David Gemmell's 'Legend' to life in full colour\ngraphics.\"\r\n5277,5517,23223,Meg Cabot,\"Every Boy's Got One (Boy, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348938408l/23223.jpg,3.77,19771,\"romance, fiction\",\"Cartoonist Jane Harris is delighted by the prospect of her first-ever trip\nto Europe. But it's hate at first sight for Jane and Cal Langdon, and\nneither is too happy at the prospect of sharing a villa with one another\nfor a week—not even in the beautiful and picturesque Marches countryside.\nBut when Holly and Mark's wedding plans hit a major snag that only Jane and\nCal can repair, the two find themselves having to put aside their mutual\ndislike for one another in order to get their best friends on the road to\nwedded bliss—and end up on a road themselves ... one neither of them ever\nexpected.\"\r\n5278,5518,231585,Ann Rule,Small Sacrifices: A True Story of Passion and Murder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519778533l/231585._SX318_.jpg,4.2,17384,\"crime, nonfiction\",\"A terrifying true tale of deranged motherhood begins with the shooting of\nthree children and follows a detailed uncovering of facts that seems to\nlead to the mother as a prime suspect. Reissue.\"\r\n5279,5520,8044557,\"Avery Monsen, Jory John\",All My Friends Are Dead,https://images.gr-assets.com/books/1330386466l/8044557.jpg,4.24,19423,\"fiction, comics\",\"All My Friends Are DeadAvery Monsen, Jory John\"\r\n5280,5521,617526,Matthew Reilly,The Six Sacred Stones,https://images.gr-assets.com/books/1303511210l/617526.jpg,4.16,17064,\"fiction, thriller\",\"Soldier Jack West, Jr., and his elite team work to counter the efforts of a\ndark cabal that has been steadily undermining their past efforts with the\nintent of staging a catastrophic attack.\"\r\n5281,5522,534733,Nora Roberts,Rising Tides (Chesapeake Bay Saga #2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252959l/534733.jpg,4.16,23604,\"romance, contemporary\",\"Ethan Quinn must rise above his dark and painful past to find his one\nchance at happiness.\"\r\n5282,5523,2879,Tite Kubo,Bleach―ブリーチ― 15,https://images.gr-assets.com/books/1417981626l/2879.jpg,4.41,17078,\"manga, fantasy\",\"Cleaning up the afterlife – one spirit at a time! R to L (Japanese Style).\nCleaning up the afterlife – one spirit at a time! Ever since he was little,\nIchigo Kurosaki has been able to see the spirits of the dead, so when a\nteenage girl materializes through his bedroom wall, this should be no call\nfor alarm. Rukia Kuchiki is a shinigami, a member of the mysterious Soul\nSociety that is charged with capturing rogue ghosts, and is hot on the\ntrail of an evil spirit. But in the ensuing confrontation, Ichigo absorbs\nRukia's powers, giving him the ability to not only see the undead, but to\nfight them as well. Now this 15-year-old high school student begins a brand\nnew vocation: hyperkinetic, all-purpose ghost-busting. With enough attitude\nto make a grown ghost blush, Ichigo and crew are taking on the after-life\none ghoulie at time.\"\r\n5283,5524,35488,\"Johnny Cash, Patrick   Carr\",Cash: The Autobiography of Johnny Cash,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422322302l/35488.jpg,4.08,15113,\"biography, nonfiction\",\"He was the \"\"Man in Black,\"\" a country music legend, and the quintessential\nAmerican troubadour. He was an icon of rugged individualism who had been to\nhell and back, telling the tale as never before. In his unforgettable\nautobiography, Johnny Cash tells the truth about the highs and lows, the\nstruggles and hard-won triumphs, and the people who shaped him. In his own\nwords, Cash set the record straight -- and dispelled a few myths -- as he\nlooked unsparingly at his remarkable life: from the joys of his boyhood in\nDyess, Arkansas to superstardom in Nashville, Tennessee, the road of Cash's\nlife has been anything but smooth. Cash writes of the thrill of playing\nwith Elvis, the comfort of praying with Billy Graham; of his battles with\naddiction and of the devotion of his wife, June; of his gratitude for life,\nand of his thoughts on what the afterlife may bring. Here, too, are the\nfriends of a lifetime, including Willie Nelson, Roy Orbison, Bob Dylan, and\nKris Kristofferson. As powerful and memorable as one of his classic songs,\nCash is filled with the candor, wit, and wisdom of a man who truly \"\"walked\nthe line.\"\"\"\r\n5284,5525,115130,Sidney Sheldon,A Stranger in the Mirror,https://images.gr-assets.com/books/1418330902l/115130.jpg,3.61,15606,\"fiction, thriller\",A Stranger in the MirrorSidney Sheldon\r\n5285,5526,13067,Carl Hiaasen,Flush,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357827l/13067._SY475_.jpg,3.86,20076,\"fiction, mystery\",\"With their father jailed for sinking a river boat, Noah Underwood and his\nyounger sister, Abbey, must gather evidence that the owner of this casino\nis emptying his bilge tanks into the waters around their Florida Keys home.\"\r\n5286,5527,781787,\"Isak Dinesen, Karen Blixen\",Out of Africa,https://images.gr-assets.com/books/1178296503l/781787.jpg,3.96,21687,\"classics, memoir\",\"Examines Dinesen's life in Africa, her relationships with lovers and\nfamily, and her health problems\"\r\n5287,5528,57951,Robert Crais,The Watchman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442928221l/57951._SY475_.jpg,4.1,17637,\"mystery, thriller\",The WatchmanRobert Crais\r\n5288,5529,13530973,Nassim Nicholas Taleb,Antifragile: Things That Gain from Disorder,https://images.gr-assets.com/books/1352422827l/13530973.jpg,4.04,16184,\"philosophy, business\",\"Shares insights into how adversity can bring out the best in individuals\nand communities, drawing on multiple disciplines to consider such topics as\nthe superiority of city states over nation states and the drawbacks of\ndebt.\"\r\n5289,5531,13259270,Sam Harris,Free Will,https://images.gr-assets.com/books/1332196118l/13259270.jpg,3.83,15647,\"psychology, religion\",\"The physiologist Benjamin Libet famously demonstrated that activity in the\nbrain's motor regions can be detected some 300 milliseconds before a person\nfeels that he has decided to move. Another lab recently used fMRI data to\nshow that some \"\"conscious\"\" decisions can be predicted up to 10 seconds\nbefore they enter awareness (long before the preparatory motor activity\ndetected by Libet). Clearly, findings of this kind are difficult to\nreconcile with the sense that one is the conscious source of one's actions.\nThe question of free will is no mere curio of philosophy seminars. A belief\nin free will underwrites both the religious notion of \"\"sin\"\" and our\nenduring commitment to retributive justice. The Supreme Court has called\nfree will a \"\"universal and persistent\"\" foundation for our system of law.\nAny scientific developments that threatened our notion of free will would\nseem to put the ethics of punishing people for their bad behaviour in\nquestion.In Free Will Harris debates these ideas and asks whether or not,\ngiven what brain science is telling us, we actually have free will?\"\r\n5290,5532,24529123,Marieke Nijkamp,This Is Where It Ends,https://images.gr-assets.com/books/1431358364l/24529123.jpg,3.63,23764,\"contemporary, fiction\",This Is Where It EndsMarieke Nijkamp\r\n5291,5533,793399,Rachel Vincent,Stray,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388374399l/793399.jpg,3.79,29063,\"paranormal, fantasy\",StrayRachel Vincent\r\n5292,5534,2285777,Elin Hilderbrand,A Summer Affair,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435518393l/2285777._SY475_.jpg,3.66,19033,\"fiction, romance\",A Summer AffairElin Hilderbrand\r\n5293,5535,13262061,Rebecca Stead,Liar & Spy,https://images.gr-assets.com/books/1336000458l/13262061.jpg,3.81,18990,\"mystery, fiction\",Liar & SpyRebecca Stead\r\n5294,5536,7993,\"Brian Jacques, Gary Chalk\",Mariel of Redwall,https://images.gr-assets.com/books/1299761476l/7993.jpg,3.96,21214,\"fantasy, fiction\",\"Mariel of RedwallBrian Jacques, Gary Chalk\"\r\n5295,5537,5752,Steven Pinker,The Blank Slate: The Modern Denial of Human Nature,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925462l/5752.jpg,4.07,15647,\"science, psychology\",\"In a study of the nature versus nurture debate, one of the world's foremost\nexperts on language and the mind explores the modern self-denial of our\nbasic human natures.\"\r\n5296,5538,866136,Peter F. Hamilton,The Dreaming Void,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440047585l/866136._SY475_.jpg,4.18,16181,\"fiction, fantasy\",\"In a high-tech, far future world, the Void, a massive black hole lying at\nthe center of the Intersolar Commonwealth universe, projects dreams that\nare transforming the lives of those who experience them.\"\r\n5297,5539,5135798,Meg Cabot,Being Nikki,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388622070l/5135798.jpg,3.87,25531,\"romance, contemporary\",\"Studious, socially conscious Emerson Watts learns startling news about the\nfamily of Nikki Howard, the teen supermodel into whose body Emerson's brain\nwas transplanted by the nefarious Stark corporation.\"\r\n5298,5540,104837,\"William Shakespeare, Cynthia Marshall, Barbara A. Mowat, Paul Werstine\",The Tragedie of Antony and Cleopatra,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347795799l/104837.jpg,3.67,20594,\"classics, fiction\",\"The Tragedie of Antony and CleopatraWilliam Shakespeare, Cynthia Marshall, Barbara A. Mowat, Paul Werstine\"\r\n5299,5541,303472,Margaret Peterson Haddix,\"Among the Impostors (Shadow Children, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388431983l/303472.jpg,4.05,21629,\"fiction, fantasy\",\"Danger continues to loom over Luke now that he's out of hiding in the\nsecond book in bestselling author Margaret Peterson Haddix's Shadow\nChildren series. Luke Garner is an illegal third child. All his life has\nbeen spent in hiding. Now, for the first time, Luke is living among others.\nHe has assumed a deceased boy's identity and is attending Hendricks School\nfor Boys, a windowless building with cruel classmates and oblivious\nteachers. Luke knows he has to blend in, but he lives in constant fear that\nhis behavior will betray him. Then one day Luke discovers a door to the\noutside. He knows that beyond the walls of Hendricks lie the secrets he is\ndesperate to uncover. What he doesn't know is whom he can trust -- and\nwhere the answers to his questions may lead him...\"\r\n5300,5542,7775611,Christopher Pike,The Eternal Dawn,https://images.gr-assets.com/books/1327900455l/7775611.jpg,4.14,17343,\"paranormal, fantasy\",\"Alisa has spent the past five thousand years as a vampire, living alone and\nfighting for survival. In her loneliness, Alisa cannot resist bringing\nTeri—a descendant of her human family—into her life. But Alisa is\nsurrounded by death and destruction, and just by knowing Alisa, Teri’s life\nis at risk. Alisa’s guilt grows when she becomes involved in a dangerous\nconspiracy. A top-secret group knows Alisa’s secret and will stop at\nnothing to use her powers for their cause. As Alisa desperately tries to\nprotect herself and Teri from the unknown enemy, she discovers a force more\npowerful and more lethal than anything she has ever seen. Alisa doesn’t\nknow who to trust, who to challenge, or who she will become….\"\r\n5301,5543,169331,Zane,Addicted,https://images.gr-assets.com/books/1266487564l/169331.jpg,4.26,13677,\"romance, fiction\",\"Married to her childhood sweetheart and enjoying her career as an arts\ndealer, Zoe Reynard hides the difficult truth about her overpowering sex\naddiction and finds her life crumbling as she begins working with a\ncompassionate woman therapist.\"\r\n5302,5544,10677277,Kristen Simmons,Article 5,https://images.gr-assets.com/books/1306520962l/10677277.jpg,3.78,23732,\"romance, fiction\",\"In Kristen Simmons's Article 5, New York, Los Angeles, and Washington,\nD.C., have been abandoned. The Bill of Rights has been revoked and replaced\nwith the Moral Statutes. There are no more police-instead, there are\nsoldiers. There are no more fines for bad behavior-instead, there are\narrests, trials, and maybe worse. People who get arrested usually don't\ncome back. Seventeen-year-old Ember Miller is old enough to remember that\nthings weren't always this way. Living with her rebellious single mother,\nit's hard for her to forget that people weren't always arrested for reading\nthe wrong books or staying out after dark. That life in the United States\nused to be different. Ember has perfected the art of keeping a low profile.\nShe knows how to get the things she needs, like food stamps and hand-me-\ndown clothes, and how to pass the random home inspections by the military.\nHer life is as close to peaceful as circumstances allow. That is, until her\nmother is arrested for noncompliance with Article 5 of the Moral Statutes.\nAnd one of the arresting officers is none other than Chase Jennings...the\nonly boy Ember has ever loved.\"\r\n5303,5545,28212,\"Randy Shilts, William Greider\",\"And the Band Played On: Politics, People, and the AIDS Epidemic\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924077l/28212.jpg,4.37,16769,\"history, nonfiction\",\"An examination of the AIDS crisis exposes the federal government for its\ninaction, health authorities for their greed, and scientists for their\ndesire for prestige in the face of the AIDS pandemic.\"\r\n5304,5546,17930773,Laurelin Paige,Found in You,https://images.gr-assets.com/books/1377584166l/17930773.jpg,4.27,27097,\"romance, contemporary\",\"\"\"Every page of Hudson and Laynie's story is bite-your-lip sexy!\"\" - Kristen\nProby, New York Times Bestselling Author Book Two in the Bestselling Fixed\nSeries. Alayna Withers has only had one kind of relationship: the kind that\nmakes her obsessive and stalker-crazy. Now that Hudson Pierce has let her\ninto his heart, she's determined to break down the remaining walls between\nthem so they can build a foundation that's based on more than just amazing\nsex. Except Hudson's not the only one with secrets. With their pasts\npulling them into a web of unfounded mistrust, Alayna turns to the one\nperson who knows Hudson the best--Celia, the woman he almost married.\nHoping for insight from someone who understands all sides of the story,\nAlayna forms a bond with Celia that goes too far--revealing things about\nHudson that could end their love for good. This is the first relationship\nwhere Alayna hasn't spiraled out of control. And she might lose Hudson\nanyway...\"\r\n5305,5547,1928873,Lara Adrian,Midnight Rising,https://images.gr-assets.com/books/1320404514l/1928873.jpg,4.23,26597,\"paranormal, romance\",\"Rio will let nothing stand in his way in his war against the Rogues,\nincluding Dylan Alexander, a mortal journalist capable of revealing the\nexistence of the vampire race, who is at the center of an age-old storm of\ndesire and evil.\"\r\n5306,5548,21719,Karin Slaughter,Kisscut,https://images.gr-assets.com/books/1348096108l/21719.jpg,4.12,18833,\"mystery, thriller\",KisscutKarin Slaughter\r\n5307,5550,50275,\"Hubert Selby Jr., Gilbert Sorrentino\",Last Exit to Brooklyn,https://images.gr-assets.com/books/1362815242l/50275.jpg,3.94,15491,\"classics, fiction\",\"A raw depiction of life amongst New York's junkies, hustlers, drag queens\nand prostitutes. Meet Georgette, a hopelessly romantic and tormented\ntransvestite; Vinnie, a disaffected and volatile youth who has never been\non the right side of the law; and Harry, a power-hungry strike leader.\"\r\n5308,5551,53969,\"Mario Vargas Llosa, Edith Grossman\",La fiesta del chivo,https://images.gr-assets.com/books/1439920504l/53969.jpg,4.22,10961,\"history, contemporary\",\"Returning to her native Domincan Republic, forty-nine-year-old Urania\nCabral, discovers that Rafael Trujillo, the depraved dictator called the\nGoat by the Domincans, still reigns over his inner circle, which includes\nUrania's father, with brutality and blackmail, but soon an uprising against\nhim will result in a revolution that will have profound consequences.\nReprint. 30,000 first printing.\"\r\n5309,5552,318404,Jordan Sonnenblick,\"Drums, Girls & Dangerous Pie\",https://images.gr-assets.com/books/1377989934l/318404.jpg,4.25,18551,\"fiction, contemporary\",\"The life of eighth-grader Steven Alper, already complicated by his\nfriendship with two girls and a prodigious talent for drumming, is turned\nupside down when his five-year-old brother Jeffrey is diagnosed with\nleukemia.\"\r\n5310,5553,21412400,Miranda July,The First Bad Man,https://images.gr-assets.com/books/1421037741l/21412400.jpg,3.58,15560,\"fiction, contemporary\",The First Bad ManMiranda July\r\n5311,5554,28698,Tad Williams,To Green Angel Tower (Storm),https://images.gr-assets.com/books/1309992900l/28698.jpg,4.19,18356,\"fantasy, fiction\",\"As King Elias is drawn ever deeper into the nightmarish web of Sithi dark\nmagic, the allies of Prince Josua rally their forces at the Stone of\nFarewell, in preparation for a final confrontation with the undead Sithi\nStorm King and his evil minions. Reprint.\"\r\n5312,5555,17204860,Jay Crownover,Jet,https://images.gr-assets.com/books/1367338347l/17204860.jpg,4.09,32332,\"romance, contemporary\",\"With his tight leather pants and a sharp edge that makes him dangerous, Jet\nKeller is every girl's rock and roll fantasy. But Ayden Cross is done\nwalking on the wild side with bad boys. She doesn't want to give in to the\nheat she sees in Jet's dark, haunted eyes. She's afraid of getting burned\nfrom the sparks of their spontaneous combustion, even as his touch sets her\non fire. Jet can't resist the Southern Belle with mile-long legs in cowboy\nboots who defies his every expectation. Yet the closer he feels to Ayden,\nthe less he seems to know her. While he's tempted to get under her skin and\nundo her in every way, he knows firsthand what happens to two people with\nvery different ideas about relationships. Will the blaze burn into an\nenduring love. . . or will it consume their dreams and turn them to ashes?\nDon't miss the latest bad boy in Jay Crownover's unforgettable New Adult\nseries.\"\r\n5313,5556,3656,John Banville,The Sea,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924824l/3656.jpg,3.49,16558,\"fiction, contemporary\",\"Following the death of his wife, Max Morden retreats to the seaside town of\nhis childhood summers, where his own life becomes inextricably entwined\nwith the members of the vacationing Grace family.\"\r\n5314,5557,18656055,\"James Patterson, David Ellis\",Invisible,https://images.gr-assets.com/books/1403166141l/18656055.jpg,4.05,14518,\"mystery, fiction\",\"InvisibleJames Patterson, David Ellis\"\r\n5315,5558,32434,Dean Koontz,Mr. Murder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257016l/32434.jpg,3.72,19904,\"fiction, thriller\",\"Mystery writer Marty Stillwater finds his life and family threatened by a\npsychotic killer professing to be the real Marty Stillwater, who embarks on\na campaign to eliminate Marty and claim his family. Reissue.\"\r\n5316,5559,6933876,Gail Carriger,Changeless,https://images.gr-assets.com/books/1292566141l/6933876.jpg,4,30703,\"fantasy, paranormal\",ChangelessGail Carriger\r\n5317,5560,185253,L.E. Modesitt Jr.,The Magic of Recluce,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922249l/185253.jpg,3.84,18879,\"fantasy, fiction\",\"With The Magic of Recluce, L.E. Modesitt made his impressive hardcover\ndebut, breaking out in wide scope and grand scale with a novel in the great\ntradition of the war between good and evil in a wonderful fantasy world.\nModesitt had been producing fast-paced, slickly-written novels of SF\nadventure, often compared to the work of Keith Laumer and Gordon R.\nDickson. Then, in his biggest and best book yet, he broadened his canvas\nand turned to fantasy and magic, stepping immediately into the front rank\nof contemporary fantasy writers. The Magic of Recluce is a carefully-\nplotted fantasy novel of character about the growth and education of a\nyoung magician. In it, Modesitt confronts real moral issues with gripping\nforce, builds atmosphere slowly and convincingly and gives his central\ncharacter, Lerris, real intellectual challenges. This is the kind of\nhighly-rationalized fantasy that Poul Anderson and Gordon R. Dickson write\nwhen they write fantasy, colorful and detailed. He is given the standard\ntwo options: permanent exile from Recluce or the dangergeld, a complex,\nrule-laden wanderjahr in the lands beyond Recluce with the aim of learning\nhow the world works and what his place in it might be. Many do not survive.\nHe chooses dangergeld. Though magic is rarely discussed openly in Recluce,\nit becomes clear, when Lerris is sent into intensive training for his\nquest, that he has a natural talent for it during his weapons lessons. And\nhe will need magic in the lands beyond, where the power of the Chaos\nWizards reigns unchecked. He must learn to use his powers in an orderly way\nor fall prey to Chaos. Lerris may resent order, but he has no difficulty\nchoosing good over evil. As he begins his lonely journey, he falls into the\ncompany of a gray magician, once of Recluce, who tutors him in the use of\nmagic and shows him some of the devastation caused by the Chaos Wizards in\nthe great wars between Chaos and Order of past times. Lerris pursues a\nquest for knowledge and power that leads him across strange lands, through\nthe ghostly ruins of the old capitol of Chaos, down the white roads of the\nChaos Wizards to a final battle with the archenemy of Order, discovering in\nthe end true control of magic, true love, and the beginning of true wisdom.\nAn epic adventure, The Magic of Recluce0, is a triumph of fantasy. The\nMagic of Recluce is the first book of the saga of Recluce.\"\r\n5318,5561,71771,John Jakes,\"The Bastard (Kent Family Chronicles, Vol. 1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441296542l/71771.jpg,4.09,18287,\"fiction, history\",\"The Bastard (Kent Family Chronicles, Vol. 1)John Jakes\"\r\n5319,5562,13330370,Ben H. Winters,The Last Policeman,https://images.gr-assets.com/books/1344370646l/13330370.jpg,3.76,14725,\"mystery, fiction\",\"When the Earth is doomed by an imminent asteroid collision, homicide\ndetective Hank Palace considers the worth of his job in a world destined to\nend in six months and investigates a suspicious suicide that nobody else\ncares about.\"\r\n5320,5563,93269,George R. Stewart,Earth Abides,https://images.gr-assets.com/books/1320505234l/93269.jpg,3.96,17200,\"fiction, classics\",\"Returning from a field trip, Isherwood Williams discovers that a mysterious\nplague has destroyed human civilization during his absence and makes his\nway to San Francisco, where he finds a few survivors who build a small\ncommunity, living like their pioneer ancestors. Reprint. 20,000 first\nprinting.\"\r\n5321,5564,136636,\"Douglas Preston, Lincoln Child\",Thunderhead,https://images.gr-assets.com/books/1344263984l/136636.jpg,4.09,19704,\"thriller, fiction\",\"Nora Kelly, a young archaeologist in Santa Fe, receives a letter written\nsixteen years ago, yet mysteriously mailed only recently. In it her father,\nlong believed dead, hints at a fantastic discovery that will make him\nfamous and rich---the lost city of an ancient civilization that suddenly\nvanished a thousand years ago. Now Nora is leading an expedition into a\nharsh, remote corner of Utah's canyon country. Searching for her father and\nhis glory, Nora begins t unravel the greatest riddle of American\narcheology. but what she unearths will be the newest of horrors...\"\r\n5322,5565,8966,Darren Shan,\"Allies of the Night (Cirque Du Freak, Book 8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1560059486l/8966.jpg,4.19,18649,\"fantasy, horror\",\"Darren Shan, Vampire Prince and \"\"vampaneze\"\" killer, faces his worst\nnightmare yet--school. But homework is the least of Darren's problems.\nBodies are piling up. Time is running out. And the past is catching up with\nthe hunters fast.\"\r\n5323,5566,9637479,Thea Harrison,Dragon bound,https://images.gr-assets.com/books/1312822853l/9637479.jpg,4.13,29920,\"paranormal, romance\",\"When she is blackmailed into stealing a coin from the hoard of a dragon,\nPia Giovanni, half human and half wyr, goes up against Dragos Cuelebre,\nwho, after catching her in the act, spares her life, but claims her as his\nown. Original. 50,000 first printing.\"\r\n5324,5568,10574,Stephen King,The Colorado Kid,https://images.gr-assets.com/books/1422099676l/10574.jpg,3.28,19406,\"mystery, fiction\",\"Stephen King's bestselling unsolved mystery, THE COLORADO KID --\ninspiration for the TV series HAVEN -- returns to bookstores for the first\ntime in 10 years in an all-new illustrated edition. On an island off the\ncoast of Maine, a man is found dead. There's no identification on the body.\nOnly the dogged work of a pair of local newspapermen and a graduate student\nin forensics turns up any clues, and it's more than a year before the man\nis identified. And that's just the beginning of the mystery. Because the\nmore they learn about the man and the baffling circumstances of his death,\nthe less they understand. Was it an impossible crime? Or something stranger\nstill...? No one but Stephen King could tell this story about the darkness\nat the heart of the unknown and our compulsion to investigate the\nunexplained. With echoes of Dashiell Hammett's THE MALTESE FALCON and the\nwork of Graham Greene, one of the world's great storytellers presents a\nmoving and surprising tale whose subject is nothing less than the nature of\nmystery itself...\"\r\n5325,5569,351064,\"Diane Mowat, W.W. Jacobs\",The Monkey's Paw,https://images.gr-assets.com/books/1297721168l/351064.jpg,3.85,18113,\"horror, classics\",\"Word count 4,830 Bestseller\"\r\n5326,5570,6554,John Saul,Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392092511l/6554.jpg,3.92,17338,\"horror, fiction\",\"Years after they left the town of Villejeune, Florida, the Anderson family\nreturns, only to find that something unspeakably evil that feeds on the\nyoung and innocent is waiting for their teenaged daughter. Reprint.\"\r\n5327,5571,260791,\"Jerry Bridges, Foster W. Cline, Jim Fay\",The Pursuit of Holiness,https://images.gr-assets.com/books/1372784705l/260791.jpg,4.28,14574,\"christian, religion\",\"Cline and Fay offer advice to help parents raise kids who are self-\nconfident, motivated, and ready for the world by teaching them\nresponsibility and the logic of life, thereby giving them the opportunity\nto solve their own problems from the earliest possible age.\"\r\n5328,5572,674220,Lisa Kleypas,Again the Magic ,https://images.gr-assets.com/books/1418771403l/674220.jpg,4.05,24978,\"romance, fiction\",\"She gave him her innocence . . .Lady Aline Marsden was brought up for one\nreason: to make an advantageous marriage to a member of her own class.\nInstead, she willingly gave her innocence to John McKenna, a servant on her\nfather's estate. Their passionate transgression was unforgivable -- John\nwas sent away, and Aline was left to live in the countryside . . . an exile\nfrom London society . . .and he took her love. Now McKenna has made his\nfortune, and he has returned -- more boldly handsome and more mesmerizing\nthan before. His ruthless plan is to take revenge on the woman who\nshattered his dreams of love. But the magic between them burns as bright as\never. And now he must decide whether to let vengeance take its toll . . .\nor risk everything for his first, and only, love.\"\r\n5329,5573,104219,Anne Rivers Siddons,Low Country,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954817l/104219.jpg,3.96,16364,\"fiction, contemporary\",Low CountryAnne Rivers Siddons\r\n5330,5574,7558747,Jennifer Donnelly,Revolution,https://images.gr-assets.com/books/1320530843l/7558747.jpg,4.02,20607,\"fiction, fantasy\",\"When an angry, grieving musician faces expulsion from her private school,\nshe travels to Paris to complete a school assignment and uncovers a diary\nwritten during the French revolution.\"\r\n5331,5575,60229,Eric S. Nylund,The Fall of Reach,https://images.gr-assets.com/books/1436746591l/60229.jpg,4.25,14525,\"fiction, fantasy\",\"Before the Human-Covenant War engulfed Halo, the planet-colony Reach came\nunder attack by the Covenant, and Earth's specially trained and augmented\nwarriors, code-named SPARTANs, stood alone to fight for humanity's\nsurvival.\"\r\n5332,5577,455764,Frank De Felitta,Audrey Rose,https://images.gr-assets.com/books/1344267955l/455764.jpg,3.86,17688,\"horror, fiction\",Audrey RoseFrank De Felitta\r\n5333,5578,28251002,Nathan  Hill,The Nix,https://images.gr-assets.com/books/1474083394l/28251002.jpg,4.12,20807,\"fiction, contemporary\",\"\"\"An epic novel about a son, the mother who left him as a child, and how his\nsearch to uncover the secrets of her life leads him to reclaim his own\"\"--\"\r\n5334,5580,24494,Bill Watterson,The Calvin and Hobbes Lazy Sunday Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924427l/24494.jpg,4.66,18641,\"comics, fiction\",\"A collection of cartoons presents the antics of Calvin, a mischevious six-\nyear-old boy, and his stuffed tiger Hobbes\"\r\n5335,5581,48037,J. Sheridan Le Fanu,Carmilla,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923594l/48037.jpg,3.83,21582,\"horror, classics\",CarmillaJ. Sheridan Le Fanu\r\n5336,5582,47619,Garth Nix,Drowned Wednesday,https://images.gr-assets.com/books/1304528425l/47619.jpg,3.85,21267,\"fantasy, fiction\",\"The third spellbinding book in bestselling author Garth Nix's magical Keys\nto the Kingdom series.\"\r\n5337,5583,82434,Melina Marchetta,Saving Francesca,https://images.gr-assets.com/books/1327865374l/82434.jpg,3.97,24398,\"contemporary, romance\",\"When her parochial school turns coed, sixteen-year-old Francesca could use\nher outspoken mother's help, but her mother suddenly becomes severely\ndepressed.\"\r\n5338,5584,13345975,K.A. Linde,Avoiding Commitment,https://images.gr-assets.com/books/1343768792l/13345975.jpg,3.85,28253,\"romance, contemporary\",Avoiding CommitmentK.A. Linde\r\n5339,5585,13521399,\"James Patterson, Maxine Paetro\",Confessions of a murder suspect,https://images.gr-assets.com/books/1377041438l/13521399.jpg,3.89,19223,\"mystery, fiction\",\"Confessions of a murder suspectJames Patterson, Maxine Paetro\"\r\n5340,5586,156529,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",Y: The Last Man Vol. 6: Girl on Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390145147l/156529.jpg,4.21,20974,\"comics, fiction\",\"When a plague of unknown origin kills every mammal with a Y chromosome,\nYorick Brown discovers that he is the only male left and embarks on a\ntranscontinental journey to discover why.\"\r\n5341,5587,2017056,Chris Bohjalian,Skeletons at the Feast,https://images.gr-assets.com/books/1320413130l/2017056.jpg,3.99,18706,\"fiction, history\",\"During the final months of World War II, a small group of people make their\nway westward across a ravaged Europe in a desperate attempt to reach\nBritish and American lines.\"\r\n5342,5588,643962,Sue Grafton,L is for Lawless,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388422614l/643962.jpg,3.91,22383,\"mystery, fiction\",L is for LawlessSue Grafton\r\n5343,5589,69392,Jerry Spinelli,Milkweed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389071717l/69392.jpg,4,19461,\"fiction, history\",MilkweedJerry Spinelli\r\n5344,5590,181601,\"Laura Joffe Numeroff, Felicia Bond\",If You Give a Pig a Party (If You Give...),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201562l/181601.jpg,4.22,18297,\"fiction, fantasy\",\"If you give a pig a party,she's going to ask for someballoons. When you\ngive her the balloons, she'll want to decorate the house. When she's\nfinished, she'll put on her favorite dress. Then she'll call all her\nfriends -- Mouse, Moose, and more. The little pig from If You Give a Pig a\nPancake is back, and this time she wants to throw a great big party! Laura\nNumeroff and Felicia Bond have created another winning story for this\nbeloved character in the tradition of the best-selling If You Give a Mouse\na Cookie.\"\r\n5345,5591,22326,William Gibson,Virtual Light,https://images.gr-assets.com/books/1409238094l/22326.jpg,3.84,16273,\"fiction, science\",\"In 2005, in two Californias divided along seismic fault lines of power and\nwealth, ex-cop Berry Rydell is assigned to track people down through a maze\nof Virtual Reality\"\r\n5346,5592,6404621,Craig Ferguson,American on Purpose,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401820514l/6404621.jpg,3.96,17033,\"biography, memoir\",American on PurposeCraig Ferguson\r\n5347,5593,3240483,Michael J. Fox,Always Looking Up: The Adventures of an Incurable Optimist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442943948l/3240483._SY475_.jpg,3.82,17181,\"biography, memoir\",\"At the turn from our bedroom into the hallway, there is an old full-length\nmirror in a wooden frame. I can't help but catch a glimpse of myself as I\npass. Turning fully toward the glass, I consider what I see. This reflected\nversion of myself, wet, shaking, rumpled, pinched, and slightly stooped,\nwould be alarming were it not for the self-satisfied expression pasted\nacross my face. I would ask the obvious question, \"\"What are you smiling\nabout?\"\" but I already know the answer: \"\"It just gets better from here.\"\" --\nfrom Always Looking Up\"\r\n5348,5594,6584134,Sarah MacLean,Nine Rules to Break When Romancing a Rake,https://images.gr-assets.com/books/1286649993l/6584134.jpg,4.08,27201,\"romance, fiction\",Nine Rules to Break When Romancing a RakeSarah MacLean\r\n5349,5595,12888599,Charlotte Rogan,The Lifeboat,https://images.gr-assets.com/books/1344266875l/12888599.jpg,3.2,18260,\"fiction, mystery\",The LifeboatCharlotte Rogan\r\n5350,5596,538845,\"Henryk Sienkiewicz, W.S. Kuniczak\",Quo vadis?,https://images.gr-assets.com/books/1340709653l/538845.jpg,4.13,18466,\"classics, history\",\"During the tumultuous reign of Nero, Vinicius, a pagan, and Ligia, a\nChristian, fall in love\"\r\n5351,5597,16068780,Amy Ewing,The Jewel,https://images.gr-assets.com/books/1392220609l/16068780.jpg,3.86,21247,\"fantasy, romance\",\"The Handmaid’s Tale meets The Selection in this darkly riveting tale that\nBCCB said “Will have fans of Oliver’s Delirium, Cass’s The Selection, and\nDeStefano’s Wither breathless.” The Jewel means wealth, the Jewel means\nbeauty—but for Violet, the Jewel means servitude. Born and raised in the\nMarsh, Violet is destined for the Jewel. She is trained as a surrogate for\nthe royalty and is bought by the Duchess of the Lake at auction. And she\nquickly learns the brutal truths that lie beneath the Jewel’s glittering\nfacade: the cruelty, backstabbing, and hidden violence that have become the\nroyal way of life. Violet must accept the ugly realities of her life . . .\nall while trying to stay alive. But before she can accept her fate, Violet\nmeets a handsome boy who is also under the Duchess’s control, and a\nforbidden love erupts. But their illicit affair has consequences, which\nwill cost them both more than they bargained for. And toeing the line\nbetween being calculating and rebellious, Violet must decide what, and who,\nshe is willing to risk for her own freedom.\"\r\n5352,5598,312043,Chris d'Lacey,The Fire Within,https://images.gr-assets.com/books/1362325249l/312043.jpg,3.76,22634,\"fantasy, fiction\",\"When David moves in with Elizabeth Pennykettle and her eleven-year-old\ndaughter, Lucy, he discovers a collection of clay dragons that comes to\nlife. Reprint.\"\r\n5353,5599,13815,\"Raymond E. Feist, Janny Wurts\",\"Servant of the Empire (The Empire Trilogy, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348059422l/13815.jpg,4.27,20016,\"fantasy, fiction\",\"\"\"A sweeping drama unveiling a tale of love, hate and sacrifice against the\npanorama of an alien yet familiar society.\"\"--Publishers Weekly. \"\"Uncommonly\nsatisfying.\"\"--Locus\"\r\n5354,5600,2195309,Nora Roberts,The Hollow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193051l/2195309.jpg,4.11,23983,\"romance, paranormal\",\"As the madness, which happens for seven days every seven years, prepares to\ndescend upon the town of Hawkins Hollow, three men bound by blood and three\nwoman bound by ancestry to a demon join forces to stop the terror from\nbeginning again. Original.\"\r\n5355,5601,770038,\"Deborah Guarino, Steven Kellogg\",Is Your Mama A Llama?,https://images.gr-assets.com/books/1328835648l/770038.jpg,4.16,19267,\"fiction, fantasy\",\"Is Your Mama A Llama?Deborah Guarino, Steven Kellogg\"\r\n5356,5602,22540125,Anna Todd,After We Collided,https://images.gr-assets.com/books/1416788471l/22540125.jpg,3.73,16338,\"romance, contemporary\",\"\"\"Book two of the After series--the Internet sensation with millions of\nreaders. Tessa didn't plan on meeting H. during her freshman year of\ncollege. But now that she has, her life will never be the same same\"\"--\"\r\n5357,5603,13331184,Jacob Tomsky,\"Heads in Beds: A Reckless Memoir of Hotels, Hustles, and So-Called Hospitality\",https://images.gr-assets.com/books/1348186171l/13331184.jpg,3.54,16181,\"memoir, nonfiction\",\"\"\"A humorous memoir by a veteran hospitality employee that reveals what goes\non behind the scenes of the hotel business. Includes tips on how to get the\nmost out of your hotel stay\"\"--\"\r\n5358,5604,38855,Tony Horwitz,Confederates in the Attic: Dispatches from the Unfinished Civil War,https://images.gr-assets.com/books/1428284996l/38855.jpg,4.08,16792,\"history, nonfiction\",\"A journalist leads readers on a revealing journey through the Old South,\ntangling with the forces of white rage, rebel grit, and regional pride in\nplaces where the Civil War is more than a memory\"\r\n5359,5606,342637,\"Robert Descharnes, Gilles Néret\",Dali: The Paintings,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391633679l/342637.jpg,4.17,14600,\"art, history\",\"Dali: The PaintingsRobert Descharnes, Gilles Néret\"\r\n5360,5607,144791,Matthew Reilly,Seven Ancient Wonders,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388589227l/144791.jpg,4.08,15374,\"fiction, thriller\",\"A prediction that promises ultimate power to whomever restores the Golden\nCapstone, an ancient Egyptian structure that protected people from global\nflooding before it was broken and scattered by Alexander the Great, prompts\na brutal competition among top nations, terrorists, and a coalition. By the\nauthor of Contest and Ice Station. Reprint.\"\r\n5361,5609,30224,Laurell K. Hamilton,Mistral's Kiss,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1598464029l/30224.jpg,4.03,25340,\"fantasy, paranormal\",\"Meredith Gentry struggles to fulfill her obligation to the world of Faerie\nby conceiving an heir to the throne of the Unseelie Court in order to\nrestore magic and life to the fey kingdom, but her quest is threatened by\nthe intrigues of her scheming uncle, the King of Light and Illusion, as\nwell as by her own wild and unpredictable powers. Reprint.\"\r\n5362,5611,4497978,Larissa Ione,Desire Unchained (Shadow Lover),https://images.gr-assets.com/books/1344268874l/4497978.jpg,4.25,26939,\"paranormal, romance\",\"Pleasure is their ultimate weapon . . . Runa Wagner never meant to fall in\nlove with the sexy stranger who seemed to know her every deepest desire.\nBut she couldn't resist the unbelievable passion that burned between them,\na passion that died when she discovered his betrayal and found herself\nforever changed. Now, determined to make Shade pay for the transformation\nthat haunts her, Runa searches for him, only to be taken prisoner by his\ndarkest enemy. A Seminus Demon with a love-curse that threatens him with\neternal torment, Shade hoped he'd seen the last of Runa and her\nirresistible charm. But when he wakes up in a dank dungeon chained next to\nan enraged and mysteriously powerful Runa, he realizes that her effect on\nhim is more dangerous than ever. As their captor casts a spell that bonds\nthem as lifemates, Shade and Runa must fight for their lives and their\nhearts-or succumb to a madman's evil plans.\"\r\n5363,5612,21323,\"Dean Koontz, Leigh Nichols\",Cold Fire ; Hideaway; The Key to Midnight,https://images.gr-assets.com/books/1309287773l/21323.jpg,4.16,17581,\"horror, fiction\",\"Includes three novels by the horror writer that explore themes of death,\nmemory, and psychic phenomena.\"\r\n5364,5613,7617119,Dan Wells,\"I Am Not A Serial Killer (John Cleaver, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442065592l/7617119._SY475_.jpg,3.77,18878,\"horror, thriller\",\"I Am Not A Serial Killer (John Cleaver, #1)Dan Wells\"\r\n5365,5614,23492613,Laura Dave,Eight Hundred Grapes,https://images.gr-assets.com/books/1429742890l/23492613.jpg,3.58,14135,\"fiction, romance\",Eight Hundred GrapesLaura Dave\r\n5366,5615,84022,Fannie Flagg,\"Welcome to the World, Baby Girl!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388751778l/84022.jpg,3.84,18307,\"fiction, contemporary\",\"The author of Fried Green Tomatoes at the Whistle Stop Cafe returns with a\nheartwarming comic novel about Dena Nordstrom, America's most popular\nfemale newscaster, and the hometown that tells her story. Reader's Guide\nincluded. Reprint. 40,000 first printing.\"\r\n5367,5616,23966,Irvine Welsh,Filth,https://images.gr-assets.com/books/1452500604l/23966.jpg,3.76,16162,\"fiction, crime\",\"Tells the story of a detective who sees in a racially motivated murder case\nthe chance to win a promotion\"\r\n5368,5618,28686830,Janet Evanovich,Turbo Twenty-Three,https://images.gr-assets.com/books/1453745203l/28686830.jpg,3.75,15021,\"mystery, fiction\",\"Bounty hunter Stephanie Plum receives support from prostitute-turned-bounty\nhunter Lula, gun-toting Grandma Mazur, on-again-off-again paramour Joe\nMorelli, and mentor Ranger.\"\r\n5369,5619,30347,Sandra Brown,The Alibi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168064235l/30347._SY475_.jpg,4.03,17729,\"romance, mystery\",The AlibiSandra Brown\r\n5370,5620,12408149,Wiley Cash,A Land More Kind Than Home,https://images.gr-assets.com/books/1332536334l/12408149.jpg,3.84,15318,\"fiction, mystery\",A Land More Kind Than HomeWiley Cash\r\n5371,5621,233722,Ann M. Martin,Kristy's Great Idea,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389241314l/233722.jpg,3.94,21952,\"fiction, classics\",\"The hit series returns to charm and inspire another generation of baby-\nsitters! The first three classic BSC books are back, along with a brand-new\nprequel, The Summer Before. It all began with a great idea ... and the\ninspiring original story of the Baby-sitters Club is back! Kristy Thomas's\nbrilliant business plan gets off to a great start with the help of Claudia\nKishi (vice-president), Mary Anne Spier (secretary), and Stacey McGill\n(treasurer).\"\r\n5372,5624,52415,\"Henning Mankell, Steven T. Murray\",Den femte kvinnan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245635l/52415.jpg,4.02,16094,\"mystery, crime\",\"Inspector Kurt Wallander searches for a ruthless killer as he uncovers the\nlink between the murders of four nuns and another unidentified woman in an\nAlgerian convent and the death of a birdwatcher found skewered in a pit of\ncarefully sharpened bamboo poles. Reprint. 17,500 first printing.\"\r\n5373,5625,2845287,Sarah Vowell,The Wordy Shipmates,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442802485l/2845287._SY475_.jpg,3.66,17541,\"nonfiction, history\",\"A cultural profile of Puritan life covers a wide range of topics, from\ntheir covenant communities and deep-rooted ideologies to their beliefs\nabout church and state and their perspectives on other faiths, in an\naccount that also evaluates their legacy in today's world. 125,000 first\nprinting.\"\r\n5374,5626,780581,\"Guy de Maupassant, Douglas Parmée\",Bel-Ami,https://images.gr-assets.com/books/1366389912l/780581.jpg,3.81,17016,\"classics, fiction\",\"Ambitious journalist Georges Duroy alters his ways when he learn that\nseduction and blackmail will help his social ascent in 1890s Paris.\"\r\n5375,5627,30043,Norman Maclean,A River Runs Through It and Other Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924914l/30043.jpg,4.17,16501,\"fiction, classics\",\"Just as Norman Maclean writes at the end of \"\"A River Runs through It\"\" that\nhe is \"\"haunted by waters,\"\" so have readers been haunted by his novella. A\nretired English professor who began writing fiction at the age of 70,\nMaclean produced what is now recognized as one of the classic American\nstories of the twentieth century. Originally published in 1976, A River\nRuns through It and Other Stories now celebrates its twenty-fifth\nanniversary, marked by this new edition that includes a foreword by Annie\nProulx. Maclean grew up in the western Rocky Mountains in the first decades\nof the twentieth century. As a young man he worked many summers in logging\ncamps and for the United States Forest Service. The two novellas and short\nstory in this collection are based on his own experiences—the experiences\nof a young man who found that life was only a step from art in its\nstructures and beauty. The beauty he found was in reality, and so he leaves\na careful record of what it was like to work in the woods when it was still\na world of horse and hand and foot, without power saws, \"\"cats,\"\" or four-\nwheel drives. Populated with drunks, loggers, card sharks, and whores, and\nset in the small towns and surrounding trout streams and mountains of\nwestern Montana, the stories concern themselves with the complexities of\nfly fishing, logging, fighting forest fires, playing cribbage, and being a\nhusband, a son, and a father. By turns raunchy, poignant, caustic, and\nelegiac, these are superb tales which express, in Maclean's own words, \"\"a\nlittle of the love I have for the earth as it goes by.\"\" A first offering\nfrom a 70-year-old writer, the basis of a top-grossing movie, and the first\noriginal fiction published by the University of Chicago Press, A River Runs\nthrough It and Other Stories has sold more than a million copies. As Proulx\nwrites in her foreword to this new edition, \"\"In 1990 Norman Maclean died in\nbody, but for hundreds of thousands of readers he will live as long as fish\nswim and books are made.\"\"\"\r\n5376,5628,10836813,\"María Dueñas, Daniel Hahn\",El tiempo entre costuras,https://images.gr-assets.com/books/1319148738l/10836813.jpg,4.04,10166,\"fiction, romance\",\"Poor seamstress Sira Quiroga forges a new identity during the Spanish Civil\nWar and becomes the most sought-after couture designer in North Africa,\nwhere she is enlisted to pass coded information to the British Secret\nService.\"\r\n5377,5630,22325,William Gibson,Idoru,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388413296l/22325.jpg,3.78,16099,\"fiction, science\",\"In a story set in twenty-first century Tokyo, a singer pursues a beautiful\nmedia superstar--called an idoru--who does not really exist\"\r\n5378,5631,15803757,Kristan Higgins,The Best Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388220961l/15803757.jpg,3.93,18998,\"romance, contemporary\",\"After being left at the altar years ago, Faith is ready to return to her\nfamily's winery, but when she finds herself drawn to local police chief\nLevi, she cannot forget the role he played in breaking up her wedding.\"\r\n5379,5632,47520,Diana Wynne Jones,Castle in the Air,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441595370l/47520._SY475_.jpg,3.93,22964,\"fantasy, fiction\",\"Abdullah was a young and not very prosperous carpet dealer. His father, who\nhad been disappointed in him, had left him only enough money to open a\nmodest booth in the Bazaar. When he was not selling carpets, Abdullah spent\nhis time daydreaming. In his dreams he was not the son of his father, but\nthe long-lost son of a prince. There was also a princess who had been\nbetrothed to him at birth. He was content with his life and his daydreams\nuntil, one day, a stranger sold him a magic carpet. In this stunning sequel\nto Howl's Moving Castle, Diana Wynne Jones has again created a large-scale,\nfast-paced fantasy in which people and things are never quite what they\nseem. There are good and bad djinns, a genie in a bottle, wizards, witches,\ncats and dogs (but are they cats and dogs?), and a mysterious floating\ncastle filled with kidnapped princesses, as well as two puzzling\nprophecies. The story speeds along with tantalizing twists and turns until\nthe prophecies are fulfilled, true identities are revealed, and all is\nresolved in a totally satisfying, breathtaking, surprise-filled ending.\"\r\n5380,5633,10706120,Jude Watson,A King's Ransom,https://images.gr-assets.com/books/1329085934l/10706120.jpg,4.14,18168,\"mystery, fiction\",The hunt continues in this NEW YORK TIMES best-selling series.\r\n5381,5634,7054123,Deborah Blum,The Poisoner's Handbook: Murder and the Birth of Forensic Medicine in Jazz Age New York,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442933592l/7054123._SY475_.jpg,4,18997,\"history, science\",\"The Pulitzer Prize-winning author of The Ghost Hunters chronicles the\ndramatic story of New York City's first forensic scientists to describe\nJazz Age poisoning cases, including a family's inexplicable balding, Barnum\nand Bailey's Blue Man and the crumbling bones of factory workers. Reprint.\"\r\n5382,5635,27083865,Penelope Ward,RoomHate,https://images.gr-assets.com/books/1453991440l/27083865.jpg,4.07,21136,\"romance, contemporary\",\"\"\"Sharing a summer house with a hot-as-hell roommate should be a dream come\ntrue, right? Not when it's Justin--the only person I'd ever loved--who now\nhates me. When my grandmother died and left me half of the house on\nAquidneck Island, there was a catch: the other half would go to the boy she\nhelped raise. The same boy who turned into the teenager whose heart I broke\nyears ago. The same teenager who's now a man with a hard body and a hardass\npersonality to match\"\"--Page 4 of cover.\"\r\n5383,5636,2954411,Elizabeth Scott,Living Dead Girl,https://images.gr-assets.com/books/1314272108l/2954411.jpg,3.83,22014,\"contemporary, fiction\",\"After being abducted when she was ten and abused for five years by her\nkidnapper, Ray, Alice's only hope of freedom is in death, but her only way\nto achieve such an escape is to help Ray find the next girl for his\ncollection.\"\r\n5384,5637,159964,\"Anonymous, Ananda Maitreya, Thich Nhat Hanh, Balangoda Ananda Maitreya Maitreya\",धर्मपद [Dhammapada],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442577801l/159964._SY475_.jpg,4.29,12639,\"philosophy, classics\",\"The Dhammapada is often considered the most representative example of the\nBuddha's teachings. A key to the fundamentals of early Buddhist philosophy,\nit has been translated into more languages than any other Buddhist text.\"\r\n5385,5638,13412515,Kristen Ashley,Law Man,https://images.gr-assets.com/books/1327911077l/13412515.jpg,4.33,33220,\"romance, contemporary\",Law ManKristen Ashley\r\n5386,5639,128754,Kathy Reichs,Deadly Décisions,https://images.gr-assets.com/books/1452313887l/128754.jpg,3.93,21646,\"mystery, crime\",Deadly DécisionsKathy Reichs\r\n5387,5640,23317538,Brené Brown,Rising Strong,https://images.gr-assets.com/books/1428641002l/23317538.jpg,4.19,22022,\"nonfiction, psychology\",Rising StrongBrené Brown\r\n5388,5641,13642963,Alan Bradley,Speaking from Among the Bones,https://images.gr-assets.com/books/1344371922l/13642963.jpg,4.17,21892,\"mystery, fiction\",Speaking from Among the BonesAlan Bradley\r\n5389,5642,5551522,\"James Patterson, Maxine Paetro\",Swimsuit,https://images.gr-assets.com/books/1344268075l/5551522.jpg,3.63,18462,\"mystery, fiction\",\"In this #1 New York Times bestseller, tropical paradise becomes a dark\ninferno of kidnapping, temptation, and ruthless killing when a beautiful\nsupermodel goes missing in Hawaii. Syd, a breathtakingly beautiful\nsupermodel on a photo shoot in Hawaii, disappears. Fearing the worst, her\nparents travel to Hawaii to investigate for themselves, never expecting the\nhorror that awaits them. LA Times reporter Ben Hawkins is conducting his\nown research into the case, hoping to help the victim and get an idea for\nhis next bestseller. With no leads and no closer to uncovering the\nkidnapper's identity than when he stepped off the plane, Ben gets a\nshocking visit that pushes him into an impossible-to-resist deal with the\ndevil. A heart-pounding story of fear and desire, Swimsuit transports\nreaders to a chilling new territory where the collision of beauty and\nmurder transforms paradise into a hell of unspeakable horrors.\"\r\n5390,5643,56634,Elisabeth Elliot,Through Gates of Splendor,https://images.gr-assets.com/books/1406510855l/56634.jpg,4.38,16487,\"christian, biography\",\"Documents the lives of missionaries who sought to convert the Huao Indians\nof Ecuador.\"\r\n5391,5644,15832316,Tarryn Fisher,Dirty Red,https://images.gr-assets.com/books/1364298887l/15832316.jpg,4.22,26888,\"romance, contemporary\",\"\"\"Leah Smith finally has everything she has ever wanted--except she doesn't.\nHer marriage feels more like a loan than a lifelong commitment, and the\nimage she has worked so hard to build is fraying before her eyes. With a\nnew role and a past full of secrets, Leah must decide how far she is\nwilling to go to keep what she has stolen\"\"--Back cover.\"\r\n5392,5645,20958632,Holly Black,The Darkest Part of the Forest,https://images.gr-assets.com/books/1397755014l/20958632.jpg,3.91,22992,\"mystery, horror\",\"In the woods is a glass coffin. It rests on the ground, and in it sleeps a\nboy with horns on his head and ears as pointed as knives.... Hazel and her\nbrother, Ben, live in Fairfold, where humans and the Folk exist side by\nside. Tourists drive in to see the lush wonders of Faerie and, most\nwonderful of all, the horned boy. But visitors fail to see the danger.\nSince they were children, Hazel and Ben have been telling each other\nstories about the boy in the glass coffin, that he is a prince and they are\nvaliant knights, pretending their prince would be different from the other\nfaeries, the ones who made cruel bargains, lurked in the shadows of trees,\nand doomed tourists. But as Hazel grows up, she puts aside those stories.\nHazel knows the horned boy will never wake. Until one day, he does.... As\nthe world turns upside down, Hazel has to become the knight she once\npretended to be. But as she's swept up in new love, with shifting loyalties\nand the fresh sting of betrayal, will it be enough? The Darkest Part of the\nForest, is the bestselling author Holly Black's triumphant return to the\nopulent, enchanting faerie tales that launched her YA career.\"\r\n5393,5646,73095,Susan Elizabeth Phillips,Dream a Little Dream,https://images.gr-assets.com/books/1308818689l/73095.jpg,4.18,24117,\"romance, contemporary\",\"A Desperate Young Mother Rachel Stone's bad luck has taken a turn for the\nworse. With an empty wallet, a car's that's spilling smoke, and a five-\nyear-old son to support, she's come home to a town that hates her. But this\ndetermined young widow with a scandalous past has learned how to be a\nfighter. And she'll do anything to keep her child safe—even take on. . . A\nman With No Heart Gabe Bonner wants to be left alone, especially by the\nbeautiful outcast who's invaded his property. She has a ton of attitude, a\ntalent for trouble, and a child who brings back bad memories. Yet Rachel's\nfeisty spirit might just be heaven-sent to save a tough, stubborn man. Dare\nTo Dream Welcome to Salvation, North Carolina—where a man who's forgotten\nwhat tenderness means meets a woman with nothing to lose. here two\nendearing lovers will set off on a funny, touching journey of the heart. .\n.to a place where dreams just might come true.\"\r\n5394,5647,2508854,\"خالد الخميسي, Khaled Al Khamissi\",تاكسي: حواديت المشاوير,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519111005l/2508854.jpg,3.68,11981,\"fiction, nonfiction\",\"Underscoring the most diverse species on the planet?the taxi driver?this\nstriking portrait unveils the polluted, unforgiving streets of Cairo, a\ncity that simply refuses to stand still. Bringing together 58 fictional\nmonologues from Cairo cabbies, recreated from actual experiences while\ntraversing the city, this novel takes readers on a roller coaster of\nemotions as bumpy and noisy as the city's potholed and chaotic streets.\nDescribed as an urban sociology, an ethnography, a classic of oral history,\nand even a work of poetry in motion, these narratives tell tales of the\nstruggle for survival and dignity among greater Cairo's 80,000 cab drivers.\nWritten in a rich colloquial, this unique anthology combines poignant self-\nreflections with the authentic insights of the man on the street.\"\r\n5395,5648,51113,Gail Tsukiyama,The Samurai's Garden,https://images.gr-assets.com/books/1327876036l/51113.jpg,4.12,17024,\"fiction, history\",\"Shortly before World War II, a Chinese man, sent to Japan to recover from\ntuberculosis, meets a lovely Japanese girl and four older residents, in a\nstory of passion and sacrifice\"\r\n5396,5649,25883848,Sally   Thorne,The Hating Game,https://images.gr-assets.com/books/1467138679l/25883848.jpg,4.24,21426,\"romance, contemporary\",\"USA Today Bestseller Debut author Sally Thorne bursts on the scene with a\nhilarious and sexy workplace comedy all about that thin, fine line between\nhate and love. Nemesis (n.) 1) An opponent or rival whom a person cannot\nbest or overcome. 2) A person’s undoing 3) Joshua Templeman Lucy Hutton and\nJoshua Templeman hate each other. Not dislike. Not begrudgingly tolerate.\nHate. And they have no problem displaying their feelings through a series\nof ritualistic passive aggressive maneuvers as they sit across from each\nother, executive assistants to co-CEOs of a publishing company. Lucy can’t\nunderstand Joshua’s joyless, uptight, meticulous approach to his job.\nJoshua is clearly baffled by Lucy’s overly bright clothes, quirkiness, and\nPollyanna attitude. Now up for the same promotion, their battle of wills\nhas come to a head and Lucy refuses to back down when their latest game\ncould cost her her dream job…But the tension between Lucy and Joshua has\nalso reached its boiling point, and Lucy is discovering that maybe she\ndoesn’t hate Joshua. And maybe, he doesn’t hate her either. Or maybe this\nis just another game.\"\r\n5397,5650,23746004,Julia Heaberlin,Black-Eyed Susans,https://images.gr-assets.com/books/1431975016l/23746004.jpg,3.78,14886,\"mystery, thriller\",\"Rendered famous as the only survivor of a serial killer twenty years\nearlier, Tessa discovers clues that the wrong person was convicted and that\nthe true killer is preparing to finish what he started.\"\r\n5398,5651,17673307,Penny Reid,Neanderthal Seeks Human,https://images.gr-assets.com/books/1364347894l/17673307.jpg,3.96,29612,\"romance, contemporary\",Neanderthal Seeks HumanPenny Reid\r\n5399,5652,9918083,\"Scott Westerfeld, Keith Thompson\",Goliath,https://images.gr-assets.com/books/1299808712l/9918083.jpg,4.25,23911,\"fantasy, fiction\",\"A conclusion to the series that includes Behemoth and Leviathan finds Alek\nand Deryn's efforts to end World War I and reclaim Alek's throne\ncomplicated by new detours and the maneuverings of a homicidal lunatic on\nboard the Leviathan.\"\r\n5400,5653,824763,\"Akira Amano, JN Productions, Frances E. Wall\",家庭教師ヒットマンREBORN! 1,https://images.gr-assets.com/books/1383918162l/824763.jpg,4.22,15102,\"fantasy, comics\",\"家庭教師ヒットマンREBORN! 1Akira Amano, JN Productions, Frances E. Wall\"\r\n5401,5654,12922320,Karin Slaughter,Criminal,https://images.gr-assets.com/books/1334414049l/12922320.jpg,4.21,18592,\"mystery, crime\",\"\"\"Will Trent is a brilliant agent with the Georgia Bureau of Investigation.\nNewly in love, he is beginning to put a difficult past behind him. Then a\nlocal college student goes missing, and Will is inexplicably kept off the\ncase by his supervisor and mentor, deputy director Amanda Wagner. Will\ncannot fathom Amanda's motivation until the two of them literally collide\nin an abandoned orphanage they have both been drawn to for different\nreasons. Decades before, when his father was imprisoned for murder, this\nwas Will's home. It appears that the case that launched Amanda's career\nforty years ago has suddenly come back to life--and it involves the long-\nheld mystery of Will's birth and parentage. Now these two dauntless\ninvestigators will each need to face down demons from the past if they are\nto prevent an even greater terror from being unleashed.\"\"--Back cover.\"\r\n5402,5655,19687,Tom Clancy,The Bear and the Dragon,https://images.gr-assets.com/books/1361933747l/19687.jpg,3.79,18399,\"fiction, thriller\",\"For use in schools and libraries only. In the wake of an assassination\nattempt on the SVR (former KGB) chairman, newly elected U.S. president Jack\nRyan puts black ops specialist John Clark on the alert, only to have things\ncomplicated by dangerous forces in China.\"\r\n5403,5656,17707605,Sue Grafton,W is for Wasted,https://images.gr-assets.com/books/1367622462l/17707605.jpg,3.86,17357,\"mystery, fiction\",\"Kinsey investigates two seemingly unrelated deaths, the first of a local,\nshady PI, the second a John Doe on the beach in this 23rd mystery in the\nbest-selling alphabetic series from the author of V is for Vengeance.\"\r\n5404,5657,101249,Alton Brown,I'm Just Here for the Food: Food + Heat = Cooking,https://images.gr-assets.com/books/1473385712l/101249.jpg,4.21,15870,\"cookbooks, nonfiction\",\"Blending humor, wisdom, history, pop culture, science, and basic cooking\nknowledge, the host of Food Network's Good Eats presents an indispensable,\ninnovative, and instructional cooking guide that features various cooking\ntechniques accompanied by a \"\"master\"\" recipe for each technique, and\nprovides a vast array of food-related tips and advice. 75,000 first\nprinting.\"\r\n5405,5658,42909,James Herriot,Vets Might Fly and Vet in a Spin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434476309l/42909._SY475_.jpg,4.39,20524,\"biography, memoir\",\"A few months of married bliss, a lovers nest in Darrowby and the wonders of\nhome cooking are rudely interrupted for James Herriot by the Second World\nWar. James Herriot's fifth volume of memoirs relocates him to a training\ncamp somewhere in England. And in between square pounding and digging for\nvictory, he dreams of the people and livestock he left behind him.\"\r\n5406,5659,84135,Sherrilyn Kenyon,Sins of the Night,https://images.gr-assets.com/books/1317065358l/84135.jpg,4.18,28341,\"paranormal, romance\",\"A Dark-Hunter on a dangerous mission finds his life and love on the line\nwhen he meets Dangereuse St. Richard, a beautiful and distracting Dark-\nHunter who is out to prevent him from carrying out his duty to destroy her\nfriends. Original.\"\r\n5407,5660,10345937,Beth Revis,Shades of Earth,https://images.gr-assets.com/books/1346494567l/10345937.jpg,4.11,24612,\"romance, fantasy\",\"When young lovers Amy and Elder and the other passengers of the spaceship\nGodspeed finally land on Centauri-Earth and start to colonize the new\nworld, they encounter pterodactyl-like monsters and the threat of unseen\naliens.\"\r\n5408,5661,13661,Ursula K. Le Guin,Tehanu,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924581l/13661.jpg,3.89,19503,\"fantasy, fiction\",\"The Nebula Award and Locus Award-winning fourth novel in the beloved\nEarthsea series by Ursula K. LeGuin Years before, they had escaped together\nfrom the sinister Tombs of Atuan—she, an isolated young priestess, he, a\npowerful wizard. Now she is a farmer's widow, having chosen for herself the\nsimple pleasures of an ordinary life. And he is a broken old man, mourning\nthe powers lost to him not by choice. A lifetime ago, they helped each\nother at a time of darkness and danger. Now they must join forces again, to\nhelp another -- the physically and emotionally scarred child whose own\ndestiny remains to be revealed. With millions of copies sold, Ursula K. Le\nGuin's Earthsea Cycle has earned a treasured place on the shelves of\nfantasy lovers everywhere. Complex, innovative, and deeply moral, this\nquintessential fantasy sequence has been compared with the work of J.R.R.\nTolkien and C.S. Lewis, and has helped make Le Guin one of the most\ndistinguished fantasy and science fiction writers of all time.\"\r\n5409,5662,13517455,Amy Tintera,Reboot,https://images.gr-assets.com/books/1350931774l/13517455.jpg,3.92,23300,\"romance, fantasy\",\"In this fast-paced dystopian thrill ride, perfect for fans of The Hunger\nGames, Legend, and Divergent, a seventeen-year-old girl returns from death\nas a Reboot and is trained as an elite crime-fighting soldier . . . until\nshe is given an order she refuses to obey. Wren Connolly died five years\nago, only to Reboot after 178 minutes. Now she is one of the deadliest\nReboots around . . . unlike her newest trainee, Callum 22, who is\npractically still human. As Wren tries to teach Callum how to be a soldier,\nhis hopeful smile works its way past her defenses. Unfortunately, Callum’s\nbig heart also makes him a liability, and Wren is ordered to eliminate him.\nTo save Callum, Wren will have to risk it all. Wren’s captivating voice and\nunlikely romance with Callum will keep readers glued to the page in Amy\nTintera’s high-stakes alternate reality.\"\r\n5410,5663,25065629,Carrie Brownstein,Hunger Makes Me a Modern Girl,https://images.gr-assets.com/books/1435507354l/25065629.jpg,3.88,17102,\"memoir, music\",\"A \"\"narrative of [rock guitarist and actor Brownstein's] escape from a\nturbulent family life into a world where music was the means toward self-\ninvention, community, and rescue. Along the way, Brownstein chronicles the\nexcitement and contradictions within the era's flourishing and fiercely\nindependent music subculture, including experiences that sowed the seeds\nfor the observational satire of the popular television series Portlandia\nyears later\"\"--Dust jacket flap.\"\r\n5411,5664,13533740,Jon Meacham,Thomas Jefferson: The Art of Power,https://images.gr-assets.com/books/1342043615l/13533740.jpg,3.99,18546,\"history, biography\",\"Presents a portrait of the third president that considers his early life,\nrole as a Founding Father, and considerable achievements as a master\npolitician.\"\r\n5412,5665,16360,Agatha Christie,Murder in Mesopotamia,https://images.gr-assets.com/books/1308808558l/16360.jpg,3.86,21207,\"mystery, crime\",\"It is clear to Amy Leatheran that something sinister is going on at the\nHassanieh dig in Iraq; something associated with the presence of “Lovely\nLouise,” wife of celebrated archaeologist Dr. Leidner. In a few days’ time\nHercule Poirot is due to drop in at the excavation site. But with Louise\nsuffering from terrifying hallucinations, and tension within the group\nbecoming almost unbearable, Poirot might just be too late. . . .\"\r\n5413,5666,12013,Iain M. Banks,Excession,https://images.gr-assets.com/books/1288930712l/12013.jpg,4.19,16330,\"fiction, science\",\"Iain M. Banks is a true original, an author whose brilliant speculative\nfiction has transported us into worlds of unbounded imagination and\ninimitable revelatory power. Now he takes us on the ultimate trip: to the\nedge of possibility and to the heart of a cosmic puzzle.... Diplomat Byr\nGenar-Hofoen has been selected by the Culture to undertake a delicate and\ndangerous mission. The Department of Special Circumstances--the Culture's\nespionage and dirty tricks section--has sent him off to investigate a\n2,500-year-old mystery: the sudden disappearance of a star fifty times\nolder than the universe itself. But in seeking the secret of the lost sun,\nByr risks losing himself. There is only one way to break the silence of\nmillennia: steal the soul of the long-dead starship captain who first\nencountered the star, and convince her to be reborn. And in accepting this\nmission, Byr will be swept into a vast conspiracy that could lead the\nuniverse into an age of peace...or to the brink of annihilation.\"\r\n5414,5667,5175,Pearl Cleage,What Looks Like Crazy on an Ordinary Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194306l/5175.jpg,3.7,17853,\"fiction, romance\",What Looks Like Crazy on an Ordinary DayPearl Cleage\r\n5415,5668,257990,Sue Grafton,G is for Gumshoe,https://images.gr-assets.com/books/1315138148l/257990.jpg,3.9,22311,\"mystery, fiction\",G is for GumshoeSue Grafton\r\n5416,5669,17333431,David Baldacci,King & Maxwell,https://images.gr-assets.com/books/1379456669l/17333431.jpg,4.03,14491,\"mystery, fiction\",\"David Baldacci brings back Sean King and Michelle Maxwell--former Secret\nService agents turned private investigators--in their most surprising,\npersonal, and dangerous case ever . . . KING AND MAXWELL It seems at first\nlike a simple, tragic story. Tyler Wingo, a teenage boy, learns the awful\nnews that his father, a soldier, was killed in action in Afghanistan. Then\nthe extraordinary happens: Tyler receives a communication from his father .\n. . after his supposed death. Tyler hires Sean and Michelle to solve the\nmystery surrounding his father. But their investigation quickly leads to\ndeeper, more troubling questions. Could Tyler's father really still be\nalive? What was his true mission? Could Tyler be the next target? Sean and\nMichelle soon realize that they've stumbled on to something bigger and more\ntreacherous than anyone could have imagined. And as their hunt for the\ntruth leads them relentlessly to the highest levels of power and to\nuncovering the most clandestine of secrets, Sean and Michelle are\ndetermined to help and protect Tyler--though they may pay for it with their\nlives.\"\r\n5417,5670,21027,Irvin D. Yalom,Love's Executioner & Other Tales of Psychotherapy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440082255l/21027._SY475_.jpg,4.18,14013,\"nonfiction, fiction\",Love's Executioner & Other Tales of PsychotherapyIrvin D. Yalom\r\n5418,5671,3342764,Trudi Canavan,The Magician's Apprentice,https://images.gr-assets.com/books/1344264805l/3342764.jpg,3.94,17128,\"fantasy, fiction\",\"Taking place hundreds of years before the events of The Magicians' Guild,\nThe Magician's Apprentice is the new novel set in the world of Trudi\nCanavan's Black Magician trilogy. In the remote village of Mandryn, Tessia\nserves as assistant to her father, the village Healer. Her mother would\nrather she found a husband. But her life is about to take a very unexpected\nturn. When the advances of a visiting Sachakan mage get violent, Tessia\nunconsciously taps unknown reserves of magic to defend herself. Lord Dakon,\nthe local magician, takes Tessia under his wing as an apprentice. The hours\nare long and the work arduous, but soon an exciting new world opens up to\nher. There are fine clothes and servants and - to Tessia's delight -\nregular trips to the great city of Imardin. However, Tessia is about to\ndiscover that her magical gifts bring with them a great deal of\nresponsibility. For a storm is approaching that threatens to tear her world\napart.\"\r\n5419,5672,459064,Steven Erikson,Reaper's Gale,https://images.gr-assets.com/books/1403011403l/459064.jpg,4.34,16539,\"fantasy, fiction\",Reaper's GaleSteven Erikson\r\n5420,5673,17324,Frank E. Peretti,The Visitation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425864456l/17324.jpg,3.91,16142,\"fiction, christian\",\"Former pastor Travis Jordan is forced to confront his religious beliefs\nwhen a series of miraculous events occurs in Antioch, Washington\"\r\n5421,5674,7202841,\"Joe Hill, Gabriel Rodríguez\", Crown of Shadows,https://images.gr-assets.com/books/1377306494l/7202841.jpg,4.41,19683,\"comics, horror\",\"\"\"Sam Lesser may be dead and gone, but Dodge still has uses for him, and in\nthe first chilly days of October, will make contact with him again. The\ndead know things the living may not, and Sam's restless spirit has had time\nto discover the thing Dodge wants to know most of all-- where to find the\nkey to the black door.\"\"--Publisher's description.\"\r\n5422,5675,180463,The Arbinger Institute,Leadership and Self Deception: Getting Out of the Box,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172487064l/180463._SY475_.jpg,4.11,13531,\"business, nonfiction\",\"This phenomenal bestseller -- over 700,000 copies sold -- changes readers'\nlives and helps them transform their organizations. In this new edition,\nthe text has been updated and revised throughout to make it even more\nreadable and powerful, and a new section has been added that details the\nmany different ways that people are using this book.\"\r\n5423,5676,112518,\"Arthur C. Clarke, Gentry Lee\",\"The Garden of Rama (Rama, #3)\",https://images.gr-assets.com/books/1375814957l/112518.jpg,3.76,16389,\"fiction, science\",\"After twelve years trapped aboard a labyrinthine Raman vessel, three human\ncosmonauts learn their true destination and face a rendezvous with a Raman\nbase. Reprint.\"\r\n5424,5678,133394,Graham Greene,Our Man in Havana,https://images.gr-assets.com/books/1327926887l/133394.jpg,3.94,15460,\"fiction, classics\",Our Man in HavanaGraham Greene\r\n5425,5679,10889279,\"Scott Snyder, Jock, Francesco Francavilla, Jared K. Fletcher, Sal Cipriano, David   Baron\",Batman: The Black Mirror,https://images.gr-assets.com/books/1503127212l/10889279.jpg,4.29,15625,\"comics, fiction\",\"Batman: The Black MirrorScott Snyder, Jock, Francesco Francavilla, Jared K. Fletcher, Sal Cipriano, David   Baron\"\r\n5426,5680,9682816,\"James Patterson, Marshall Karp\",Kill Me If You Can,https://images.gr-assets.com/books/1344263782l/9682816.jpg,4,16879,\"mystery, fiction\",\"Kill Me If You CanJames Patterson, Marshall Karp\"\r\n5427,5681,8952,Darren Shan,\"Killers of the Dawn (Cirque Du Freak, #9)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449853l/8952.jpg,4.22,18194,\"fantasy, horror\",Follows Allies of the night.\r\n5428,5682,906560,Corrie ten Boom,Tramp for the Lord,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349106628l/906560.jpg,4.47,16680,\"biography, christian\",Tramp for the LordCorrie ten Boom\r\n5429,5683,826583,\"Laura Joffe Numeroff, Felicia Bond\",If You Take a Mouse to the Movies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348905712l/826583.jpg,4.16,17938,\"fiction, fantasy\",\"Mouse is back for the holidays! A first sequel to If You Give a Mouse a\nCookie, starring Mouse! The famous little mouse from the children's classic\nIf You Give a Mouse a Cookie is back in another irresistible tale full of\nholiday antics. This time, if you take him to the movies, he'll ask you for\nsome popcorn. If you give him the popcorn, he'll want to string it all\ntogether. Then he'll want to hang it on a Christmas tree. In the fourth in\nthis mega–selling series, Felicia Bond and Laura Numeroff have created\nanother high–energy story featuring the adorable and demanding mouse that\nhas delighted millions of readers. Ages 10+\"\r\n5430,5684,1406197,\"Laurell K. Hamilton, Laural Merlington\",A Lick of Frost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347337530l/1406197.jpg,4.12,24148,\"fantasy, paranormal\",\"A Lick of FrostLaurell K. Hamilton, Laural Merlington\"\r\n5431,5685,40289,\"Orson Scott Card, James Cameron\",The Abyss,https://images.gr-assets.com/books/1225165505l/40289.jpg,4.06,16318,\"fiction, thriller\",\"The sea holds many mysteries . . . but one is truly out of this world! When\ndivers attempt to retrieve a sunken U.S. submarine, they discover a\npowerful force lurking deep beneath the sea, ready to unleash war, chaos\nand destruction! Ties in to the sensational summer movie.\"\r\n5432,5686,8694522,Paula Brackston,The Book of Shadows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441786996l/8694522._SY475_.jpg,3.54,17694,\"fantasy, fiction\",\"\"\"My name is Elizabeth Anne Hawksmith, and my age is three hundred and\neighty-four years. Each new settlement asks for a new journal, and so this\nBook of Shadows begins.\"\" In the spring of 1628, the Witchfinder of Wessex\nfinds himself a true Witch. As Bess Hawksmith watches her mother swing from\nthe Hanging Tree she knows that only one man can save her from suffering\nthe same fate. It is the Warlock, Gideon Masters, who will instruct her in\nthe Craft and bring her to her immortal state. She could never have\nforeseen that even now, centuries later, he will be hunting her across\ntime, determined to claim payment for saving her life. Bess continues her\nmother's healing work, but is forced to move frequently to protect the\nsecret of her immortality, and to evade Gideon. As Dr Eliza Hawksmith of\nthe Fitzroy Hospital he pursues her through Victorian London. When she is\nnurse Elise Hawksmith he dogs her footsteps in the dark chaos of\nPasschendaele in 1917. In the present day she finds a peace of sorts and\nbegins to beliebve that the danger might at last have passed. She allows\nherself to befriend Tegan, a lonely teenager in whom Bess sees a scintilla\nof magic. It is to protect this child that she must finally stand and\nconfront her foe.\"\r\n5433,5687,25573977,\"Katarina Bivald, Alice Menzies\",Läsarna i Broken Wheel rekommenderar,https://images.gr-assets.com/books/1452107441l/25573977.jpg,3.56,14571,\"fiction, contemporary\",\"\"\"Originally published as Leasarna i Broken Wheel rekommenderar in 2013 in\nSweden by Bokfeorlaget Forum. This edition issued based on the hardcover\nedition published in 2015 in the United Kingdom by Chatto & Windus, an\nimprint of Random House\"\" -- Verso title page.\"\r\n5434,5688,13083008,Dennis Lehane,Live by Night,https://images.gr-assets.com/books/1334590418l/13083008.jpg,3.89,14275,\"fiction, crime\",Live by NightDennis Lehane\r\n5435,5689,12908877,Amy Plum,Until I Die,https://images.gr-assets.com/books/1335240840l/12908877.jpg,4.17,24203,\"paranormal, fantasy\",Until I DieAmy Plum\r\n5436,5690,11256979,\"Richard Dawkins, Dave McKean\",The Magic of Reality: How We Know What's Really True,https://images.gr-assets.com/books/1327883246l/11256979.jpg,4.04,14511,\"science, nonfiction\",\"The best-selling author of The God Delusion and the artist of such award-\nwinning graphic novels as Wizard and Glass address key scientific questions\npreviously explained by rich mythologies, from the evolution of the first\nhumans and the life cycle of stars to the principles of a rainbow and the\norigins of the universe. 150,000 first printing.\"\r\n5437,5691,35332,\"Karen Kingsbury, Gary Smalley\",Remember,https://images.gr-assets.com/books/1406506306l/35332.jpg,4.41,16303,\"christian, fiction\",\"Ashley Baxter keeps her family and God at a distance trying to prove she\ncan survive on her own, until the tragedy of September 11 changes her life\nforever.\"\r\n5438,5692,13521299,James Patterson,\"Alex Cross, Run\",https://images.gr-assets.com/books/1343360404l/13521299.jpg,4.03,14434,\"mystery, fiction\",\"Alex Cross, RunJames Patterson\"\r\n5439,5693,3106441,Christian Lander,Stuff White People Like: the Definitive Guide to the Unique Taste of Millions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391558472l/3106441.jpg,3.76,15888,\"nonfiction, fiction\",Stuff White People Like: the Definitive Guide to the Unique Taste of MillionsChristian Lander\r\n5440,5694,18754961,Nora Roberts,Blood Magick,https://images.gr-assets.com/books/1458263077l/18754961.jpg,4.06,14167,\"romance, fantasy\",\"\"\"County Mayo is rich in the traditions of Ireland, legends that Branna\nO'Dwyer fully embraces in her life and in her work as the proprietor of The\nDark Witch shop, which carries soaps, lotions, and candles for tourists,\nmade with Branna's special touch. Branna's strength and selflessness hold\ntogether a close circle of friends and family--along with their horses and\nhawks and her beloved hound. But there's a single missing link in the chain\nof her life: love ... She had it once--for a moment--with Finbar Burke, but\na shared future is forbidden by history and blood. Which is why Fin has\nspent his life traveling the world to fill the abyss left in him by Branna,\nfocusing on work rather than passion. Branna and Fin's relationship offers\nthem both comfort and torment. And though they succumb to the heat between\nthem, there can be no promises for tomorrow. A storm of shadows threatens\neverything that their circle holds dear. It will be Fin's power, loyalty,\nand heart that will make all the difference in an age-old battle between\nthe bonds that hold their friends together and the evil that has haunted\ntheir families for centuries\"\"-- Amazon.com.\"\r\n5441,5695,687215,Stephen R. Donaldson,The Power That Preserves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441422875l/687215._SY475_.jpg,3.99,18594,\"fantasy, fiction\",\"Determined to never again be manipulated by the evil Lord Foul the\nDespiser, Thomas Covenant prepares to aid the Land's besieged Council of\nLords by meeting Lord Foul in final combat. Reissue.\"\r\n5442,5696,6539596,Marian Keyes,The Brightest Star in the Sky,https://images.gr-assets.com/books/1268685823l/6539596.jpg,3.65,17413,\"fiction, romance\",The Brightest Star in the SkyMarian Keyes\r\n5443,5697,8428195,Heather Dixon,Entwined,https://images.gr-assets.com/books/1279037245l/8428195.jpg,3.87,28950,\"fantasy, romance\",EntwinedHeather Dixon\r\n5444,5699,23875,Gabriel García Márquez,El coronel no tiene quien le escriba,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167484006l/23875._SY475_.jpg,3.71,13206,\"fiction, classics\",El coronel no tiene quien le escribaGabriel García Márquez\r\n5445,5700,6194,J.M. Coetzee,Waiting for the Barbarians,https://images.gr-assets.com/books/1330879044l/6194.jpg,3.94,14830,\"fiction, contemporary\",\"A magistrate in a country village protests the army's treatment of members\nof the barbarian tribes taken prisoner during a civil war and finds himself\narrested as a traitor\"\r\n5446,5701,769212,Willy Lindwer,The Last Seven Months of Anne Frank,https://images.gr-assets.com/books/1320487142l/769212.jpg,4.34,15096,\"history, biography\",\"Based on the testimony of six Jewish women who survived the concentration\ncamps, this chronicle of the last seven months of Anne Frank's life picks\nup from the end of her diary to follow her from her family's arrest to her\ndeath\"\r\n5447,5702,21856367,Walter Isaacson,\"The Innovators: How a Group of Inventors, Hackers, Geniuses and Geeks Created the Digital Revolution\",https://images.gr-assets.com/books/1410191571l/21856367.jpg,4.03,14890,\"history, business\",\"\"\"Following his blockbuster biography of Steve Jobs, The Innovators is\nWalter Isaacson's revealing story of the people who created the computer\nand the Internet. It is destined to be the standard history of the digital\nrevolution and an indispensable guide to how innovation really happens.\nWhat were the talents that allowed certain inventors and entrepreneurs to\nturn their visionary ideas into disruptive realities? What led to their\ncreative leaps? Why did some succeed and others fail? In his masterly saga,\nIsaacson begins with Ada Lovelace, Lord Byron's daughter, who pioneered\ncomputer programming in the 1840s. He explores the fascinating\npersonalities that cr eated our current digital revolution, such as\nVannevar Bush, Alan Turing, John von Neumann, J.C.R. Licklider, Doug\nEngelbart, Robert Noyce, Bill Gates, Steve Wozniak, Steve Jobs, Tim\nBerners-Lee, and Larry Page. This is the story of how their minds worked\nand what made them so inventive. It's also a narrative of how their ability\nto collaborate and master the art of teamwork made them even more creative.\nFor an era that seeks to foster innovation, creativity, and teamwork, The\nInnovators shows how they happen\"\"--\"\r\n5448,5703,316558,Deborah Rodriguez,Kabul Beauty School: An American Woman Goes Behind the Veil,https://images.gr-assets.com/books/1320448527l/316558.jpg,3.63,17002,\"memoir, nonfiction\",\"The founder of the Kabul Beauty School describes the lives of women in the\npatriarchal society of Afghanistan from the perspective of the school and\nits students, offering profiles of such women as a newlywed who must fake\nher own virginity, a child bride sold into marriage to pay her family's\ndebts, and the wife of a Taliban member who pursues her training despite\nher husband's abuse. Reprint. 150,000 first printing.\"\r\n5449,5704,4630,Ernest Hemingway,To Have and Have Not ,https://images.gr-assets.com/books/1400886825l/4630.jpg,3.57,16074,\"fiction, classics\",\"Hemingway's Classic Novel About Smuggling, Intrigue, and Love To Have and\nHave Not is the dramatic story of Harry Morgan, an honest man who is forced\ninto running contraband between Cuba and Key West as a means of keeping his\ncrumbling family financially afloat. His adventures lead him into the world\nof the wealthy and dissipated yachtsmen who throng the region, and involve\nhim in a strange and unlikely love affair. Harshly realistic, yet with one\nof the most subtle and moving relationships in the Hemingway oeuvre, To\nHave and Have Not is literary high adventure at its finest.\"\r\n5450,5705,5062,Ken Follett,Jackdaws,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388296072l/5062.jpg,3.91,17489,\"fiction, thriller\",\"With the Allies preparing for the invasion of Nazi-occupied Europe,\nFelicity \"\"Flick\"\" Clariet, a British special operations agent, must take on\nthe job of destroying German lines of communication with the aid of an all-\nwoman team.\"\r\n5451,5707,116257,Neal Stephenson,The System of the World,https://images.gr-assets.com/books/1407712273l/116257.jpg,4.3,16106,\"fiction, fantasy\",\"England, 1714. London has long been home to a secret war between the\nbrilliant, enigmatic Master of the Mint and closet alchemist, Isaac Newton,\nand his archnemesis, the insidious counterfeiter Jack the Coiner.\nHostilities are suddenly moving to a new and more volatile level as Half-\nCocked Jack hatches a daring plan, aiming for the total corruption of\nBritain's newborn monetary system. Enter Daniel Waterhouse: Aging Puritan\nand Natural Philosopher, Daniel has been on a long and harrowing quest to\nhelp mend the rift between adversarial geniuses. As Daniel combs city and\ncountry for clues to the identity of the blackguard who is attempting to\nblow up Natural Philosophers, political factions jockey for position while\nawaiting the impending death of the ailing queen, and the \"\"holy grail\"\" of\nalchemy, the key to life eternal, tantalizes and continues to elude Isaac\nNewton. As Newton, Waterhouse, and Shaftoe each circle closer to the object\nof Daniel's quest, everything that was will be changed forever ... This\nP.S. edition features an extra 16 pages of insights into the book,\nincluding author interviews, recommended reading, and more.\"\r\n5452,5708,147243,Ben Mikaelsen,Touching Spirit Bear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193857l/147243.jpg,3.85,17706,\"fiction, fantasy\",\"Within Cole Matthews lie anger, rage and hate. Cole has been stealing and\nfighting for years. This time he caught Alex Driscal in the, parking lot\nand smashed his head against the sidewalk. Now, Alex may have permanent\nbrain damage'and Cole is in the Biggest trouble of his life. Cole is\noffered Circle Justice: a system based on Native American traditions that\nattempts to provide healing for the criminal offender, the victim and the,\ncommunity. With prison as his only alternative, Cole plays along. He says\nhe wants to repent, but in his heart Cole blames his alcoholic mom his,\nabusive dad, wimpy Alex -- everyone but himself -- for his situation. Cole\nreceives a one-year banishment to a remote Alaskan island. There, he is\nmauled by Mysterious white bear of Native American legend. Hideously\ninjured, Cole waits for his death His thoughts shift from from Anger to\nhumility. To survive, he must stop blaming others and take responsibility\nfor his life. Rescuers arrive to save Cole's but it is the attack of the\nSpirit Bear that may save his soul. Ben Mikaelsen paints a vivid picture of\na juvenile offender, examining the roots without absolving solving him of\nresponsibility for his actions, and questioning a society in which angry\npeople make victims of their peers and communities. Touching Spirit Bear is\na poignant testimonial to the power of a pain that can destroy, or lead to\nhealing\"\r\n5453,5709,15803141,Rachel Kushner,The Flamethrowers,https://images.gr-assets.com/books/1387146199l/15803141.jpg,3.46,13225,\"fiction, art\",The FlamethrowersRachel Kushner\r\n5454,5710,13125234,Jeaniene Frost,Twice Tempted ,https://images.gr-assets.com/books/1352947741l/13125234.jpg,4.3,26598,\"paranormal, romance\",\"When she returns to the carnival circuit, Leila faces danger from a killer\nin the shadows as she struggles to choose between her emotionally distant\nvampire lover and a tortured knight who longs to be more than a friend.\"\r\n5455,5712,18172471,Kiera Cass,The Selection Stories: The Prince & The Guard,https://images.gr-assets.com/books/1380214609l/18172471.jpg,4.03,23695,\"romance, fantasy\",\"Two novellas set in the world of Kiera Cass's #1 New York Times bestselling\nSelection series are now available in print for the first time. The Prince\nand The Guard both offer captivating views into the hearts and minds of the\ntwo men fighting to win America Singer's love. This collection also\nfeatures exclusive bonus content, including a sneak peek at The One, the\neagerly anticipated third novel in the Selection series. Before America\narrived at the palace to compete in the Selection, there was another girl\nin Prince Maxon's life. The Prince opens the week before the Selection\nbegins and follows Maxon through the first day of the competition. Raised\nas a Six, Aspen Leger never dreamed that he would find himself living in\nthe palace as a member of the royal guard. In The Guard, readers get an\ninside look at Aspen's life within the palace walls—and the truth about a\nguard's world that America will never know.\"\r\n5456,5713,6474550,Gary Vaynerchuk,Crush It!: Why Now Is the Time to Cash in on Your Passion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348122101l/6474550.jpg,3.85,17271,\"business, nonfiction\",Crush It!: Why Now Is the Time to Cash in on Your PassionGary Vaynerchuk\r\n5457,5714,89190,Alastair Reynolds,Redemption Ark,https://images.gr-assets.com/books/1309206851l/89190.jpg,4.13,16484,\"fiction, science\",\"Accidentally triggering the Inhibitors, alien killing machines designed to\nseek out and destroy all intelligent life, all humankind in the twenty-\nsixth century faces certain annihilation, unless a secret cache of doomsday\nweapons can be found and recovered. Reprint.\"\r\n5458,5715,1178039,Steve Berry,The Venetian Betrayal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441796864l/1178039._SY475_.jpg,3.94,18403,\"thriller, fiction\",The Venetian BetrayalSteve Berry\r\n5459,5716,142080,T.S. Eliot,Collected Poems 1909-1962,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349070555l/142080.jpg,4.29,17192,\"poetry, classics\",Collected Poems 1909-1962T.S. Eliot\r\n5460,5717,219919,Lloyd C. Douglas,The Robe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436811107l/219919._SY475_.jpg,4.2,18903,\"fiction, classics\",\"Christ's robe has a strange effect on the pagan soldier who wins it in a\ndice game after the Crucifixion\"\r\n5461,5718,1603923,\"Walt Disney Company, Ellen Titlebaum\",Beauty and the Beast,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1185752881l/1603923.jpg,4.39,14811,\"fiction, fantasy\",\"Beauty and the BeastWalt Disney Company, Ellen Titlebaum\"\r\n5462,5719,16158508,Anton DiSclafani,The Yonahlossee Riding Camp for Girls,https://images.gr-assets.com/books/1364772121l/16158508.jpg,3.34,15769,\"fiction, contemporary\",\"Exiled to an equestrienne boarding school in the South at the height of the\nGreat Depression for her mysterious role in a family tragedy, strong-willed\nteen Thea Atwell grapples with painful memories while acclimating to the\nschool's strict environment. A first novel. Reprint.\"\r\n5463,5720,19286623,Kylie Scott,Lead,https://images.gr-assets.com/books/1396467599l/19286623.jpg,4.32,29239,\"romance, contemporary\",LeadKylie Scott\r\n5464,5721,862350,Kelley Armstrong,No Humans Involved,https://images.gr-assets.com/books/1362703261l/862350.jpg,4.2,23191,\"paranormal, fantasy\",\"Planning to retire from the celebrity spotlight, Jaime Vegas signs up to\nappear in a final reality TV special called \"\"Raising Marilyn Monroe,\"\" but\nher arrival on the set is marked by the ghostly haunting of children\ntrapped between two worlds, and she joins forces with a powerful werewolf\nto track down the evil cadre of would-be magicians responsible. Reprint.\"\r\n5465,5722,298568,\"Joseph Delaney, Patrick  Arrasmith\",Night of the Soul Stealer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348485290l/298568.jpg,4.12,18279,\"horror, fantasy\",\"Night of the Soul StealerJoseph Delaney, Patrick  Arrasmith\"\r\n5466,5723,56465,Gavin de Becker,The Gift of Fear: and Other Survival Signals That Protect Us from Violence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348829921l/56465.jpg,4.19,14609,\"nonfiction, psychology\",\"Explains how to use the power of intuition to identify and avoid danger,\nand shares advice on restraining orders and self-defense tactics\"\r\n5467,5724,7124475,Jennifer Echols,Endless Summer,https://images.gr-assets.com/books/1276962830l/7124475.jpg,4.02,18438,\"romance, contemporary\",Endless SummerJennifer Echols\r\n5468,5726,27821486,Mary Kubica,Don't You Cry,https://images.gr-assets.com/books/1459917062l/27821486.jpg,3.57,17399,\"mystery, thriller\",\"An electrifying tale of deceit and obsession In downtown Chicago, Esther\nVaughan disappears from her apartment without a trace. A haunting letter\naddressed to My Dearest is found among her possessions, leaving her\nroommate Quinn Collins to question how well she really knew her friend.\nMeanwhile, in a small town an hour outside Chicago, a mysterious woman\nappears in the quiet coffee shop where eighteen-year-old Alex Gallo works\nas a dishwasher. He is immediately drawn to her, but what starts as an\ninnocent crush quickly spirals into something far more sinister. As Quinn\nsearches for answers about Esther, and Alex is drawn further under the\nstranger's spell, master of suspense Mary Kubica takes readers on a taut\nand twisted thrill ride that builds to a stunning conclusion and shows that\nno matter how fast and far we run, the past always catches up with us.\"\r\n5469,5727,49245,Willard F. Harley Jr.,\"Que Necesita El, Que Necesita Ella \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170358138l/49245.jpg,4.11,15008,\"christian, nonfiction\",\"For more than twenty years, couples have been turning to the bestselling\nbook His Needs, Her Needs for insights on how to make their marriages work\n--and keep them working. Now, with a new Spanish edition, His Needs, Her\nNeeds is poised to expand its considerable influence to Spanish-speaking\ncouples around the world. Marriage works only when each spouse takes the\ntime to consider the other's needs and strives to meet them. In Lo que él\nnecesita, lo que ella necesita, Willard Harley identifies the ten most\nvital needs of men and women and shows husbands and wives how to satisfy\nthose needs in their spouses. He provides guidance for becoming\nirresistible to your spouse and for loving more creatively and sensitively,\nthereby eliminating the problems that often lead to extramarital affairs.\"\r\n5470,5728,31313,Nora Roberts,Dance of the Gods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182954l/31313.jpg,4.13,23060,\"romance, fantasy\",\"In the second volume in Roberts' paranormal Circle Trilogy, the Circle of\nSix prepare to battle for their lives--and their hearts--against the one\nvampire determined to rule the earth. Original.\"\r\n5471,5730,45967,\"Sadegh Hedayat, D.P. Costello\",بوف کور,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919591l/45967.jpg,3.99,5168,\"fiction, horror\",\"بوف کورSadegh Hedayat, D.P. Costello\"\r\n5472,5732,7640705,\"Jonathan Stroud, Simon  Jones\",The Ring of Solomon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348894736l/7640705.jpg,4.19,18809,\"fantasy, fiction\",\"Bartimaeus, everyone’s favorite (wise-cracking) djinni, is back in book\nfour of this best-selling series, now available in paperback. As alluded to\nin the footnotes throughout the series, Bartimaeus has served hundreds of\nmagicians during his 5,010 year career. Now fans can go back in time with\nthe djinni, to Jerusalem and the court of King Solomon in 950 BCE. Only in\nthis adventure, it seems the great Bartimaeus has finally met his match.\nHe’ll have to contend with an unpleasant master and his sinister servant,\nand he runs into just a “spot” of trouble with King Solomon’s magic ring….\"\r\n5473,5733,125553,R.L. Stine,Welcome to Dead House,https://images.gr-assets.com/books/1328867798l/125553.jpg,3.82,19171,\"fiction, horror\",\"When their father inherits an old house in the town of Dark Falls, Amanda\nand Josh are excited--until they begin to suspect that the house is\nhaunted. Original.\"\r\n5474,5734,142900,Louise Erdrich,The Master Butchers Singing Club,https://images.gr-assets.com/books/1410133209l/142900.jpg,4.02,16821,\"fiction, history\",\"Having survived World War I, Fidelis Waldvogel returns to his quiet German\nvillage and marries the pregnant widow of his best friend, killed in\naction. With a suitcase full of sausages and a master butcher's precious\nknife set, Fidelis sets out for America. In Argus, North Dakota, he builds\na business, a home for his family—which includes Eva and four sons—and a\nsinging club consisting of the best voices in town. When the Old World\nmeets the New—in the person of Delphine Watzka—the great adventure of\nFidelis's life begins. Delphine meets Eva and is enchanted. She meets\nFidelis, and the ground trembles. These momentous encounters will determine\nthe course of Delphine's life, and the trajectory of this brilliant novel.\"\r\n5475,5735,400924,Glen Cook,Chronicles of The Black Company (The Black Company / Shadows Linger / The White Rose),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557478911l/400924.jpg,4.2,16663,\"fantasy, fiction\",Chronicles of The Black Company (The Black Company / Shadows Linger / The White Rose)Glen Cook\r\n5476,5736,22522202,Abbi Glines,Until Friday Night,https://images.gr-assets.com/books/1429191171l/22522202.jpg,4.01,20813,\"romance, contemporary\",Until Friday NightAbbi Glines\r\n5477,5737,5179,Melinda Haynes,Mother of Pearl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426690263l/5179.jpg,3.67,17378,\"fiction, contemporary\",\"Capturing all the rueful irony and racial ambivalence of small-town\nMississippi in the late 1950s, Melinda Haynes' celebrated novel is a wholly\nunforgettable exploration of family, identity, and redemption. Mother of\nPearl revolves around twenty-eight-year-old Even Grade, a black man who\ngrew up an orphan, and Valuable Korner, the fifteen-year-old white daughter\nof the town whore and an unknown father. Both are passionately determined\nto discover the precious things neither experienced as children: human\nconnection, enduring commitment, and, above all, unconditional love. A\nstartlingly accomplished mixture of beauty, mystery, and tragedy, Mother of\nPearl marks the debut of an extraordinary literary talent.\"\r\n5478,5738,25814512,Chris Cleave,Everyone Brave Is Forgiven,https://images.gr-assets.com/books/1462176457l/25814512.jpg,3.8,16183,\"fiction, history\",Everyone Brave Is ForgivenChris Cleave\r\n5479,5739,7682,Michael Crichton,The Great Train Robbery,https://images.gr-assets.com/books/1328309104l/7682.jpg,3.84,17309,\"fiction, thriller\",\"In 1855, master criminal Edward Pierce plans and carries out, with three\naccomplices, the impossible robbery of the monthly London-to-Paris train\ncarrying gold bullion for the British army in the Crimea.\"\r\n5480,5740,59889,Danielle Steel,Safe Harbour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170537180l/59889.jpg,4.04,16205,\"romance, fiction\",\"Struggling with a terrible accident that devastated her family, young Pip\nmeets artist Matt Bowles, whose friendship helps Pip and her mother heal,\nuntil an unresolved issue from Matt's past compromises their progress.\"\r\n5481,5741,297134,Kristin Hannah,The Things We Do for Love,https://images.gr-assets.com/books/1320542055l/297134.jpg,4.05,16190,\"fiction, romance\",The Things We Do for LoveKristin Hannah\r\n5482,5742,13927,Juliet Marillier,Son of the Shadows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1602021932l/13927._SY475_.jpg,4.32,21544,\"fantasy, romance\",Son of the ShadowsJuliet Marillier\r\n5483,5743,41689,Ken Follett,The Key to Rebecca,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257670l/41689.jpg,3.86,16616,\"fiction, thriller\",\"While Rommel's army bears down on Cairo, a ruthless Nazi agent called \"\"The\nSphinx\"\" prowls the city's ancient streets to pave the way for an invasion,\nwith no one to stand in his way but a luckless British officer and a Jewish\ngirl, in the classic suspense novel of World War II. Reissue.\"\r\n5484,5744,9581001,Chloe Neill,Hard Bitten,https://images.gr-assets.com/books/1372850762l/9581001.jpg,4.17,28656,\"paranormal, fantasy\",\"Merit, the vampire protector of a Chicago safe haven called Cadogan House,\nmust restore order after a vampire rave is broken up by the mayor and a new\ndrug that lowers inhibitions begins circulating through the community.\nOriginal.\"\r\n5485,5745,120231,\"Ina Garten, Maura McEvoy\",Barefoot Contessa Family Style: Easy Ideas and Recipes That Make Everyone Feel Like Family,https://images.gr-assets.com/books/1320438055l/120231.jpg,4.26,16134,\"cookbooks, nonfiction\",\"Barefoot Contessa Family Style: Easy Ideas and Recipes That Make Everyone Feel Like FamilyIna Garten, Maura McEvoy\"\r\n5486,5748,17781,Nora Roberts,Heart of the Sea,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440345665l/17781._SY475_.jpg,4.14,22274,\"fiction, fantasy\",\"In the final book about the Gallagher siblings, Darcy Gallagher searches\nfor a rich man who can give her the glamour and adventure she cannot find\non her own.\"\r\n5487,5749,3373198,Lara Adrian,Veil of Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274772l/3373198.jpg,4.26,25116,\"paranormal, romance\",\"Renata, a powerful psychic warrior, initially opposes vampire Nikolai as he\ntries to protect the Breed from a ruthless assassin, but when a child's\nlife is threatened, the unlikely duo is forced into an uneasy alliance.\"\r\n5488,5750,98807,James Rollins,Subterranean,https://images.gr-assets.com/books/1336889308l/98807.jpg,4.01,17425,\"thriller, fiction\",\"Beneath the ice at the bottom of the Earth is a magnificent subterranean\nlabyrinth, a place of breathtaking wonders—and terrors beyond imagining. A\nteam of specialists led by archaeologist Ashley Carter has been hand-picked\nto explore this secret place and to uncover the riches it holds. But they\nare not the first to venture here—and those they follow did not return.\nThere are mysteries here older than time, and revelations that could change\nthe world. But there are also things that should not be disturbed—and a\ndevastating truth that could doom Ashley and the expedition: they are not\nalone.\"\r\n5489,5751,39045,Allison Pearson,I Don't Know How She Does It,https://images.gr-assets.com/books/1320396351l/39045.jpg,3.3,15456,\"fiction, contemporary\",\"Kate Reddy, a hedge fund manager and mother of two, struggles to juggle her\nprofessional and personal lives and to balance--often unsuccessfully--on\nthe tightrope of work and home.\"\r\n5490,5753,22733729,Becky  Chambers,\"The Long Way to a Small, Angry Planet\",https://images.gr-assets.com/books/1405532474l/22733729.jpg,4.18,12969,\"fiction, fantasy\",\"The acclaimed modern science fiction masterpiece, included on Library\nJournal's Best SFF of 2016, the Barnes & Nobles Sci-Fi Fantasy Blog Best\nBooks of 2015, the Tor.com Best Books of 2015, Reader’s Choice, as well as\nnominated for the Arthur C. Clarke Award, the Kitschie, and the Bailey's\nWomen's Prize. Follow a motley crew on an exciting journey through\nspace—and one adventurous young explorer who discovers the meaning of\nfamily in the far reaches of the universe—in this light-hearted debut space\nopera from a rising sci-fi star. Rosemary Harper doesn’t expect much when\nshe joins the crew of the aging Wayfarer. While the patched-up ship has\nseen better days, it offers her a bed, a chance to explore the far-off\ncorners of the galaxy, and most importantly, some distance from her past.\nAn introspective young woman who learned early to keep to herself, she’s\nnever met anyone remotely like the ship’s diverse crew, including Sissix,\nthe exotic reptilian pilot, chatty engineers Kizzy and Jenks who keep the\nship running, and Ashby, their noble captain. Life aboard the Wayfarer is\nchaotic and crazy—exactly what Rosemary wants. It’s also about to get\nextremely dangerous when the crew is offered the job of a lifetime.\nTunneling wormholes through space to a distant planet is definitely\nlucrative and will keep them comfortable for years. But risking her life\nwasn’t part of the plan. In the far reaches of deep space, the tiny\nWayfarer crew will confront a host of unexpected mishaps and thrilling\nadventures that force them to depend on each other. To survive, Rosemary’s\ngot to learn how to rely on this assortment of oddballs—an experience that\nteaches her about love and trust, and that having a family isn’t\nnecessarily the worst thing in the universe.\"\r\n5491,5754,17961,\"Jorge Luis Borges, Andrew Hurley\",Cuentos completos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1544275624l/17961._SX318_.jpg,4.58,16474,\"fiction, classics\",\"In honor of the centenary of the birth of Borges, this collection of his\nfiction has been gathered into a single volume. \"\"An unparalleled treasury\nof marvels.\"\"--\"\"Chicago Tribune.\"\"\"\r\n5492,5755,266607,Holly Black,Tithe: A Modern Faerie Tale ,https://images.gr-assets.com/books/1332713354l/266607.jpg,3.92,26108,\"fantasy, paranormal\",\"Sixteen-year-old Kaye, who has been visited by faeries since childhood,\ndiscovers that she herself is a magical faerie creature with a special\ndestiny, in a briskly paced modern-day fantasy filled with angst-ridden\nteens, romance, and dashing dark heroes. An ALA Best Book for Young Adults.\nReprint.\"\r\n5493,5756,270521,John le Carré,The Russia House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348229603l/270521.jpg,3.9,17293,\"fiction, thriller\",\"World powers clash for dominance as a beautiful Russian woman carries out a\nstaggering mission and a derelict English publisher becomes the unlikely\nrecipient of the Soviet Union's top defense secret. Reprint. 12,500 first\nprinting.\"\r\n5494,5757,6905534,Jennifer Lynn Barnes,Raised by Wolves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511801754l/6905534.jpg,3.94,24936,\"paranormal, fantasy\",Raised by WolvesJennifer Lynn Barnes\r\n5495,5758,43924,Harlan Coben,\"Promise Me (Myron Bolitar, #8)\",https://images.gr-assets.com/books/1361152177l/43924.jpg,3.96,18168,\"mystery, fiction\",\"Promise Me (Myron Bolitar, #8)Harlan Coben\"\r\n5496,5759,6934395,L.J. Smith,The Vampire Diaries: The Return: Midnight,https://images.gr-assets.com/books/1277829186l/6934395.jpg,3.78,20566,\"fantasy, paranormal\",\"Elena Gilbert's latest battle against the demons that have taken over her\nhometown of Fell's Church is complicated by the fact that Damon is a mortal\nsince he, his brother Stefan, and Elena returned from the Dark Dimension.\"\r\n5497,5760,84146,Sherrilyn Kenyon,Dark Side of the Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406993654l/84146.jpg,4.15,27311,\"paranormal, fantasy\",Dark Side of the MoonSherrilyn Kenyon\r\n5498,5761,522525,\"Carol Tavris, Elliot Aronson\",\"Mistakes Were Made (But Not by Me): Why We Justify Foolish Beliefs, Bad Decisions, and Hurtful Acts\",https://images.gr-assets.com/books/1328876733l/522525.jpg,3.99,15249,\"science, nonfiction\",\"Renowned social psychologists Carol Tavris and Elliot Aronson take a\ncompelling look into how the brain is wired for self-justification. When we\nmake mistakes, we must calm the cognitive dissonance that jars our feelings\nof self-worth. And so we create fictions that absolve us of responsibility,\nrestoring our belief that we are smart, moral, and right--a belief that\noften keeps us on a course that is dumb, immoral, and wrong.\"\r\n5499,5762,13765729,T.R. Ragan,Abducted,https://images.gr-assets.com/books/1446520793l/13765729.jpg,3.94,8828,\"thriller, mystery\",\"Lizzy Gardner was just seventeen when she was kidnapped by the psychopath\nknown as Spiderman, a serial killer terrorizing her California hometown.\nFourteen years later, Lizzy is a successful private investigator and self-\ndefense instructor. Wracked with guilt over being the only victim to\nsurvive, she's devoted her life to helping others protect themselves from\nthe horrors she endured, but a single phone call brings the terror of the\npast crashing back. Spiderman has returned.\"\r\n5500,5763,10577,\"Richard Bachman, Stephen King\",Roadwork,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166254222l/10577._SY475_.jpg,3.59,18479,\"horror, fiction\",\"RoadworkRichard Bachman, Stephen King\"\r\n5501,5764,198331,Clive Cussler,\"Valhalla Rising (Dirk Pitt, #16)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405182792l/198331.jpg,3.92,17260,\"ebooks, fiction\",\"Valhalla Rising (Dirk Pitt, #16)Clive Cussler\"\r\n5502,5765,49234,Jared Diamond,The Third Chimpanzee: The Evolution and Future of the Human Animal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442713688l/49234._SY475_.jpg,4.04,15362,\"science, history\",The Third Chimpanzee: The Evolution and Future of the Human AnimalJared Diamond\r\n5503,5766,2830067,Dennis Lehane,The Given Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442866887l/2830067._SY475_.jpg,4.03,16528,\"fiction, history\",The Given DayDennis Lehane\r\n5504,5767,760168,\"Gina Mayer, Mercer Mayer\",Just Me in the Tub (Mercer Mayer's Little Critter),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178124755l/760168._SX318_.jpg,4.24,17335,fiction,Little Critter has great fun taking a bath with all his toys\r\n5505,5768,16096514,Nicole  Williams,Crush,https://images.gr-assets.com/books/1350690968l/16096514.jpg,4.24,26188,\"romance, contemporary\",\"A Teacher's Passion...She's spent years teaching students English, changing\ntheir lives and igniting a love of learning. Her passion for her job is not\nonly fueled by a love of teaching, but a desire to escape a lifetime of\npersonal loneliness. A survivor of sexual assault, she's also mastered the\nart of \"\"self-medicating\"\" and looking for love in all the wrong places. All\nthat changed the day Marley walked into her class. He was just as wounded\nas she. . . but there were just some lines a teacher didn't cross,\nespecially when she knows the damage that can be caused by lines that are\nblurred too early.That was then. This is now.Time changes\neverything?There's nothing young and innocent about Marley now. When she\nbumps into him many years later, Marley admits the crush he had on her has\nnever gone away. And now that he's a man, he wants to help heal her broken\nheart. Can the student she knew become the man she loves? Is it even\npossible to accept love from such an unseemly source?In her signature\nvignettes, Nicole Bailey-Williams returns with a riveting story of\nredemption after ruin and the indomitable nature of love.\"\r\n5506,5769,8429687,Mira Grant,Deadline,https://images.gr-assets.com/books/1408500444l/8429687.jpg,4.1,18636,\"horror, fiction\",\"Shaun Mason is a man without a mission. Not even running the news\norganization he built with his sister has the same urgency as it used to.\nPlaying with dead things just doesn't seem as fun when you've lost as much\nas he has. But when a CDC researcher fakes her own death and appears on his\ndoorstep with a ravenous pack of zombies in tow, Shaun has a newfound\ninterest in life. Because she brings news-he may have put down the monster\nwho attacked them, but the conspiracy is far from dead. Now, Shaun hits the\nroad to find what truth can be found at the end of a shotgun. Newsflesh\nFeedDeadlineBlackout For more from Mira Grant, check out:\nParasitologyParasiteSymbiont Chimera Newsflesh Short FictionApocalypse\nScenario #683: The BoxCountdownSan Diego 2014: The Last Stand of the\nCalifornia BrowncoatsHow Green This Land, How Blue This SeaThe Day the Dead\nCame to Show and TellPlease Do Not Taunt the Octopus\"\r\n5507,5770,3675828,Harlan Coben,Long Lost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590420l/3675828._SY475_.jpg,3.94,17996,\"mystery, fiction\",Long LostHarlan Coben\r\n5508,5771,21722,Karin Slaughter,Faithless,https://images.gr-assets.com/books/1167323214l/21722.jpg,4.11,16833,\"mystery, crime\",FaithlessKarin Slaughter\r\n5509,5772,142292,Jill Bolte Taylor,My Stroke of Insight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387714555l/142292.jpg,3.86,14734,\"science, nonfiction\",\"A brain scientists recounts her experiences after suffering a stroke at the\nage of thirty-seven, describing her discovery of differences in the left\nand right side of the brain and the steps she took over a period of eight\nyears to recover her health.\"\r\n5510,5773,138395,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",The Walking Dead 6,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412196024l/138395.jpg,4.32,18655,\"horror, fiction\",Further accounts of the survival horror and zombies.\r\n5511,5774,3300,\"Isabel Allende, Margaret Sayers Peden\",Inés del alma mía,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440985143l/3300._SX318_.jpg,3.9,13539,\"fiction, history\",\"A work of historical fiction chronicles the brave deeds and passionate\nloves of a spirited woman who journeyed to the New World and helped found a\nnation.\"\r\n5512,5775,32442,Dean Koontz,Cold Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388979944l/32442.jpg,3.75,18343,\"horror, fiction\",\"Intrigued by reports of a man who has saved twelve lives in just three\nmonths, reporter Holly Thorne investigates and finds herself attracted to\nthe tortured saving angel\"\r\n5513,5776,18295858,Emma Donoghue,Frog Music,https://images.gr-assets.com/books/1393227215l/18295858.jpg,3.13,16412,\"fiction, mystery\",\"Burlesque dancer Blanche Beunon tries to discover who murdered her friend\nJenny, who was shot through a window in a railroad saloon in 1876 San\nFrancisco, amidst a record-breaking heat wave and smallpox epidemic.\n200,000 first printing.\"\r\n5514,5777,15888,Iain Pears,An Instance of the Fingerpost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1548147833l/15888.jpg,3.93,17604,\"mystery, fiction\",\"In a literary epic, when a fellow of New College in seventeenth-century\nOxford is found dead and a young woman is accused of his murder, four\nwitnesses, each with their own agenda, tell what they saw, but only one\nspeaks the truth. 80,000 first printing. BOMC.\"\r\n5515,5778,1499340,Donny Dhirgantoro,5 cm,https://images.gr-assets.com/books/1472231689l/1499340.jpg,3.84,12527,\"fiction, romance\",\"Novel best seller ‘5 cm’ karya Donny Dhirgantoro akan diangkat ke layar\nlebar mulai tanggal 12.12.12. Sebagai sebuah karya, novel ini sungguh\nfenomenal karena selama 6 tahun berturut-turut selalu berada pada rak “best\nseller” di toko buku-toko buku. Lima sahabat telah menjalin persahabatan\nselama tujuh tahun. Kegemaran mereka adalah mengeksekusi hal-hal yang tidak\nmungkin dan mencoba segala hal, mulai dari kafe paling terkenal di Jakarta,\nsampai nonton layar tancap. Semuanya penggemar film, dari film Hollywood\nsampai film yang nggak kelas—kecuali film India karena mereka punya prinsip\nbahwa semua persoalan di dunia atau masalah pasti ada jalan keluarnya, tapi\nbukan dengan dalam bentuk joget. Suatu saat, karena terdorong oleh rasa\nbosan di antara satu dan yang lain, mereka memutuskan untuk tidak saling\nberkomunikasi dan bertemu satu sama lain selama tiga bulan. Selama tiga\nbulan berpisah itulah telah terjadi banyak hal yang membuat hati mereka\nlebih kaya dari sebelumnya. Pertemuan setelah tiga bulan yang penuh dengan\nrasa kangen akhirnya terjadi dan dirayakan dengan sebuah perjalanan. Sebuah\nperjalanan yang penuh dengan keyakinan, mimpi, cita-cita, dan cinta. Sebuah\nperjalanan yang telah mengubah mereka menjadi seorang manusia sesungguhnya,\nbukan cuma seonggok daging yang bisa berbicara, berjalan, dan punya nama.\"\r\n5516,5779,61329,\"Geoffrey A. Moore, Regis McKenna\",Crossing the Chasm: Marketing and Selling High-Tech Products to Mainstream Customers,https://images.gr-assets.com/books/1421709292l/61329.jpg,4,14329,\"business, nonfiction\",\"Here is the bestselling guide that created a new game plan for marketing in\nhigh-tech industries. Crossing the Chasm has become the bible for bringing\ncutting-edge products to progressively larger markets. This edition\nprovides new insights into the realities of high-tech marketing, with\nspecial emphasis on the Internet. It's essential reading for anyone with a\nstake in the world's most exciting marketplace.\"\r\n5517,5780,1881621,Peach-Pit,Shugo Chara! 1 (Shugo Chara!),https://images.gr-assets.com/books/1320532059l/1881621.jpg,4.11,17351,\"manga, romance\",\"Amu, a shy girl at Seiyo Elementary, wishes she had the courage to be\nherself, and her dream comes true when she finds three strange eggs in her\nbed that contain a guardian character who can grant her the power to be\nsomeone new.\"\r\n5518,5782,76688,Isaac Asimov,Robots and Empire,https://images.gr-assets.com/books/1335782304l/76688.jpg,4.17,18462,\"fiction, mystery\",Science fiction-roman.\r\n5519,5783,5130,Aldous Huxley,Island,https://images.gr-assets.com/books/1375947541l/5130.jpg,3.87,14440,\"fiction, classics\",\"In his final novel, which he considered his most important, Aldous Huxley\ntransports us to the remote Pacific island of Pala, where an ideal society\nhas flourished for 120 years. Inevitably, this island of bliss attracts the\nenvy and enmity of the surrounding world. A conspiracy is underway to take\nover Pala, and events are set in motion when an agent of the conspirators,\na newspaperman named Faranby, is shipwrecked there. What Faranby doesn't\nexpect is how his time with the people of Pala will revolutionize all his\nvalues and—to his amazement—give him hope.\"\r\n5520,5784,1662160,Neil Shubin,Your Inner Fish: A Journey into the 3.5-Billion-Year History of the Human Body,https://images.gr-assets.com/books/1320439515l/1662160.jpg,3.97,14784,\"science, nonfiction\",\"Details on a Major New Discovery included in a New Afterword Why do we look\nthe way we do? Neil Shubin, the paleontologist and professor of anatomy who\nco-discovered Tiktaalik, the “fish with hands,” tells the story of our\nbodies as you've never heard it before. By examining fossils and DNA, he\nshows us that our hands actually resemble fish fins, our heads are\norganized like long-extinct jawless fish, and major parts of our genomes\nlook and function like those of worms and bacteria. Your Inner Fish makes\nus look at ourselves and our world in an illuminating new light. This is\nscience writing at its finest—enlightening, accessible and told with\nirresistible enthusiasm.\"\r\n5521,5785,123933,Jean-Paul Sartre,Huis clos,https://images.gr-assets.com/books/1362639118l/123933.jpg,4.13,16533,\"philosophy, classics\",Huis closJean-Paul Sartre\r\n5522,5786,324748,Seth Godin,The Dip: A Little Book That Teaches You When to Quit (and When to Stick),https://images.gr-assets.com/books/1311282216l/324748.jpg,3.83,15009,\"business, nonfiction\",\"The author of Permission Marketing and Purple Cow shares insights into\nknowing when to support or fight corporate systems, explaining how to\nrecognize and drop defunct practices to protect profits, job security, and\nprofessional satisfaction.\"\r\n5523,5787,11566956,Alison Bechdel,Are You My Mother?: A Comic Drama,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511409644l/11566956._SX318_.jpg,3.66,18618,\"memoir, comics\",Are You My Mother?: A Comic DramaAlison Bechdel\r\n5524,5788,1433337,Bob Ong,ABNKKBSNPLAKo?! (Mga Kwentong Chalk ni Bob Ong),https://images.gr-assets.com/books/1297789858l/1433337.jpg,4.2,14481,\"fiction, contemporary\",\"Humorous anecdotes reflecting the nature of Philippines life and\neducational institutions.\"\r\n5525,5790,152695,Elin Hilderbrand,The Blue Bistro,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1552977207l/152695.jpg,4,16398,\"fiction, romance\",\"Having worked for six years in the hotels of exotic resort towns, Adrienne\nDealey relocates to Nantucket in the hopes of recouping her finances and\ngets a crash course in restaurant management at a popular locale that is\npreparing to close, an endeavor that is compromised by her budding\nrelationship with her boss. Reprint.\"\r\n5526,5791,12043770,Darynda Jones,Third Grave Dead Ahead,https://images.gr-assets.com/books/1310823404l/12043770.jpg,4.39,15137,\"paranormal, fantasy\",Third Grave Dead AheadDarynda Jones\r\n5527,5792,28635,\"Milan Kundera, Linda Asher\",L'identité,https://images.gr-assets.com/books/1410130249l/28635.jpg,3.68,11735,\"fiction, contemporary\",\"There are situations in which we fail for a moment to recognize the person\nwe are with, in which the identity of the other is erased while we\nsimultaneously doubt our own. That also happens with couples - indeed,\nabove all with couples, because lovers fear more than anything else \"\"losing\nsight\"\" of the loved one. With artfulness in expanding and playing\nvariations on the meaningful moment, Milan Kundera has made this situation\n- and the vague sense of panic it inspires - the very fabric of his new\nnovel. Here brevity goes hand in hand with intensity, and a moment of\nbewilderment marks the start of a labyrinthine journey during which the\nreader repeatedly crosses the border between the real and the unreal,\nbetween what occurs in the world outside and what the mind creates in its\nsolitude.\"\r\n5528,5793,21569527,Mary E. Pearson,The Heart of Betrayal,https://images.gr-assets.com/books/1414932049l/21569527.jpg,4.32,24104,\"fantasy, romance\",\"The thrilling, New York Times–bestselling sequel to The Kiss of Deception\nHeld captive in the barbarian kingdom of Venda, Lia and Rafe have little\nchance of escape. Desperate to save her life, Lia's erstwhile assassin,\nKaden, has told the Vendan Komizar that she has the gift, and the Komizar's\ninterest in Lia is greater than anyone could have foreseen. Meanwhile,\nnothing is straightforward: There’s Rafe, who lied to Lia but has\nsacrificed his freedom to protect her; Kaden, who meant to assassinate her\nbut has now saved her life; and the Vendans, whom Lia always believed to be\nbarbarians. Now that she lives among them, however, she realizes that may\nbe far from the truth. Wrestling with her upbringing, her gift, and her\nsense of self, Lia must make powerful choices that will affect her country\n. . . and her own destiny. The Heart of Betrayal by Mary E. Pearson drives\nup the stakes and the romance, and will leave readers desperate to read\nbook three in the Remnant Chronicles, The Beauty of Darkness. “It’s rare\nthat the second book in a series is as good—or perhaps better—than the\nfirst, but that’s the case here.” —Booklist, starred review, for The Heart\nof Betrayal “A heart-pounding sequel that fantasy fans will appreciate.”\n—School Library Journal for The Heart of Betrayal “Fantastical.” —USA Today\nfor The Kiss of Deception “A sumptuous fantasy.” —Chicago Tribune for The\nKiss of Deception “In The Kiss of Deception, a new realm is masterfully\ncreated, featuring court intrigue, feuding nations, breathtaking\nlandscapes, and the gift of sight. Fans of the Game of Thrones series will\nenjoy the magic and fantasy in this timeless dystopian world.” —VOYA for\nThe Kiss of Deception \"\"Pearson (the Jenna Fox Chronicles) is off to an\nextraordinary start with her fantasy series, the Remnant Chronicles,\ncreating an alluring world and romance that's ideal for fans of Kristin\nCashore and Megan Whalen Turner.\"\" —Publishers Weekly for The Kiss of\nDeception\"\r\n5529,5794,4373,Loung Ung,First They Killed My Father: A Daughter of Cambodia Remembers ,https://images.gr-assets.com/books/1407105580l/4373.jpg,4.29,17459,\"memoir, history\",First They Killed My Father: A Daughter of Cambodia Remembers Loung Ung\r\n5530,5795,11166889,\"Owen  West, Dean Koontz\",The Funhouse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433170539l/11166889._SY475_.jpg,3.6,18424,\"horror, fiction\",\"The FunhouseOwen  West, Dean Koontz\"\r\n5531,5796,36076,Stephen M.R. Covey,The SPEED of Trust: The One Thing that Changes Everything,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190190l/36076.jpg,3.97,13708,\"business, nonfiction\",\"Explains how trust is a key catalyst for personal and organizational\nsuccess in the twenty-first century, in a guide for businesspeople that\ndemonstrates how to inspire trust while overcoming bureaucratic obstacles.\"\r\n5532,5797,43342,Mary Higgins Clark,You Belong to Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920024l/43342.jpg,3.85,19131,\"mystery, fiction\",\"“The mistress of high tension” (The New Yorker) and undisputed Queen of\nSuspense Mary Higgins Clark brings us another New York Times bestselling\nnovel that USA TODAY calls “her page-turning best” about a killer who\ntargets lonely women on cruise ships, a masterful combination of page-\nturning suspense and classic mystery. When Dr. Susan Chandler decides to\nuse her daily radio talk show to explore the phenomenon of women who\ndisappear and are later found to have become victims of killers who prey on\nthe lonely and insecure, she has no idea that she is exposing herself—and\nthose closest to her—to the very terror that she hopes to warn others\nagainst. Susan sets out to determine who is responsible for an attempt on\nthe life of a woman who called in to the show offering information on the\nmysterious disappearance from a cruise ship, years before, of Regina\nClausen, a wealthy investment advisor. Soon Susan finds herself in a race\nagainst time, for not only does the killer stalk these lonely women, but he\nseems intent on eliminating anyone who can possibly further Susan’s\ninvestigation. As her search intensifies, Susan finds herself confronted\nwith the realization that one of the men who have become important figures\nin her life might actually be the killer. And as she gets closer to\nuncovering his identity, she realizes almost too late that the hunter has\nbecome the hunted. Is she the next one marked for murder?\"\r\n5533,5798,43255,Betty Mahmoody,Not Without My Daughter,https://images.gr-assets.com/books/1416296090l/43255.jpg,4.04,16650,\"biography, memoir\",\"The American wife of an Iranian describes her ordeal in Tehran as a virtual\nprisoner of her fanatical husband and his family and her perilous escape\nwith her daughter to freedom.\"\r\n5534,5799,759900,Lisa Gardner,The Killing Hour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192199l/759900.jpg,4.16,17948,\"mystery, crime\",\"Rookie FBI agent Kimberly Quincy faces a race against time when she tackles\na disturbing serial killer who routinely abducts two intended victims and\nleaves on the body of one clues to prevent the death of the other.\"\r\n5535,5800,96977,Piers Anthony,Castle Roogna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388701282l/96977.jpg,3.87,19867,\"fantasy, fiction\",\"Traveling eight centuries into the past for a magic elixir to help his\nfriend Millie find love, the young sorcerer Dor takes up the body of a\nbarbarian warrior and befriends a giant spider\"\r\n5536,5801,571555,Mary Higgins Clark,While My Pretty One Sleeps,https://images.gr-assets.com/books/1421102605l/571555.jpg,3.88,18846,\"mystery, fiction\",\"Neeve Kearny may be the only person in New York worried about the\ndisappearance of Ethel Lambston. Ethel, a bestselling author famous for her\njuicy exposés, is one of the best customers at Neeve's exclusive Madison\nAvenue boutique. But Ethel's ex-husband, her parasitical nephew, and the\nfashion moguls skewered in her latest article all have reason to be glad\nshe's no longer around. When Ethel Lambston is found with her throat cut,\nNeeve's memories of her mother's long-unsolved murder loom up once again.\nNow as an innocent witness in the Lambston investigation, Neeve is drawn\ninto a new nightmare...a sinister labyrinth of greed and ambition that will\nlead her into mortal danger... A stunning tale of murder, glamour and\nromance, While My Pretty One Sleeps is the most exciting novel yet from\nMary Higgins Clark, America's undisputed master of suspense.\"\r\n5537,5802,178599,Joseph Kesselring,Arsenic and Old Lace,https://images.gr-assets.com/books/1319500896l/178599.jpg,4.14,20473,\"classics, fiction\",Arsenic and Old LaceJoseph Kesselring\r\n5538,5803,263171,Ellen Schreiber,\"Dance with a Vampire (Vampire Kisses, #4)\",https://images.gr-assets.com/books/1443971681l/263171.jpg,4.01,22119,\"paranormal, romance\",\"Dance with a Vampire (Vampire Kisses, #4)Ellen Schreiber\"\r\n5539,5804,529626,Ken Kesey,Sometimes a Great Notion,https://images.gr-assets.com/books/1364846481l/529626.jpg,4.24,15502,\"fiction, classics\",Sometimes a Great NotionKen Kesey\r\n5540,5805,58890,Tamora Pierce,Tris's Book,https://images.gr-assets.com/books/1328860149l/58890.jpg,4.07,24511,\"fantasy, fiction\",Tris's BookTamora Pierce\r\n5541,5806,7785194,Sam Harris,The Moral Landscape: How Science Can Determine Human Values,https://images.gr-assets.com/books/1331317058l/7785194.jpg,3.9,14300,\"philosophy, science\",\"Calls for an end to religion's role in dictating morality, demonstrating\nhow the scientific community's understandings about the human brain may\nenable the establishment of secular codes of behavior.\"\r\n5542,5807,11450591,Darcie Chan,The Mill River Recluse,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328339576l/11450591.jpg,3.55,15821,\"fiction, mystery\",\"For the past 60 years, the widow Mary McAllister has secluded herself in\nher marble mansion overlooking the town of Mill River, and only the priest,\nFather O'Brien, knows the deep secrets that keep Mary isolated—and that,\nonce revealed, will forever change the community. Original.\"\r\n5543,5808,3381,Douglas Coupland,Hey Nostradamus!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436978883l/3381._SY475_.jpg,3.72,14645,\"fiction, contemporary\",Hey Nostradamus!Douglas Coupland\r\n5544,5809,10836,Jon Lee Anderson,Che Guevara: A Revolutionary Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406995661l/10836.jpg,4.1,13516,\"biography, history\",\"Making use of unprecedented access to Che's personal archives, his\nguerrilla cohorts, and Cuban government archives, an exhaustive biography\ntraces the life of the Latin American communist revolutionary. 40,000 first\nprinting. $75,000 ad/promo.\"\r\n5545,5810,24766,Scott Westerfeld,The Secret Hour,https://images.gr-assets.com/books/1501166713l/24766.jpg,3.8,23933,\"fantasy, paranormal\",\"A few nights after Jessica Day arrives in Bixby, Oklahoma, she wakes up at\nmidnight to find the entire world frozen, except for her and a few others\nwho call themselves 'midnighters'. Dark things haunt this midnight hour –\ndark things with a mysterious interest in Jessica. The question is ?hy; The\nSecret Hour is a compelling tale of dark secrets, midnight romance, eerie\ncreatures, courage, destiny, and unexpected peril.\"\r\n5546,5812,587666,Paulo Coelho,Ser Como o Rio que Flui,https://images.gr-assets.com/books/1399717203l/587666.jpg,3.93,12708,\"fiction, philosophy\",\"'Ser como o rio que flui' reúne pensamentos e histórias que Paulo Coelho\nescreveu ao longo de dez anos. Relatos sobre vida e morte, destino e\nescolha, amores perdidos e reencontrados. Em uma das histórias, a avó usa\num lápis para explicar ao neto as qualidades do homem e a responsabilidade\nde viver deixando suas marcas por onde passa.\"\r\n5547,5813,1113545,Brandon Mull,The Candy Shop War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388603513l/1113545.jpg,4.03,19619,\"fantasy, fiction\",\"When fifth-graders Nate, Summer, Trevor, and Pigeon meet the new candy\nstore owner Mrs. White, she gives them magical candy that endows them with\nsuper powers, but soon they find that along with these benefits are\ndangerous consequences.\"\r\n5548,5815,3112850,Maggie Stiefvater,\"Lament: The Faerie Queen's Deception (Books of Faerie, #1) \",https://images.gr-assets.com/books/1265410418l/3112850.jpg,3.69,26116,\"fantasy, romance\",\"On the day of an important music competition, talented but painfully\nintroverted and nervous Deirdre Monaghan is helped to perform by the\ncompelling and enigmatic Luke Dillon and finds herself inexorably drawn\ninto the mysteries and dangers of the faerieworld. Original.\"\r\n5549,5816,417780,\"Verna Aardema, Leo Dillon, Diane Dillon\",Why Mosquitoes Buzz in People's Ears: A West African Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963811l/417780.jpg,4.01,20639,\"fiction, fantasy\",\"A mosquito's lie sets off a series of reactions in the jungle that results\nin the owl's refusal to wake the sun and the lion's decision to call a\nmeeting of the animals.\"\r\n5550,5817,21064599,Sophie Kinsella,\"Shopaholic to the Stars (Shopaholic, #7)\",https://images.gr-assets.com/books/1398905552l/21064599.jpg,3.24,15414,\"fiction, contemporary\",\"Shopaholic to the Stars (Shopaholic, #7)Sophie Kinsella\"\r\n5551,5818,114133,Nora Roberts,High Noon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442646404l/114133._SY475_.jpg,3.94,20698,\"romance, mystery\",\"The New York Times Bestseller The phenomenal number-one New York Times\nbestselling author is back with a spine-tingling novel about a woman who\nwalks fearlessly into danger—but must draw on her courage to let love into\nher life.\"\r\n5552,5819,17557913,Tom Rob Smith,The Farm,https://images.gr-assets.com/books/1391017911l/17557913.jpg,3.53,13407,\"fiction, mystery\",The FarmTom Rob Smith\r\n5553,5820,18528190,Rebecca Solnit,Men Explain Things to Me,https://images.gr-assets.com/books/1393447237l/18528190.jpg,3.93,17918,\"nonfiction, history\",\"A landmark essay that went viral, inspired the word ?mansplaining,” and\nprompted fierce arguments.\"\r\n5554,5821,17201104,Kristen Proby,Rock With Me,https://images.gr-assets.com/books/1364925537l/17201104.jpg,4.3,28709,\"romance, contemporary\",\"From New York Times Bestselling Author Kristen Proby comes Rock With\nMe?Front Man Leo Nash from the world-famous rock band, Nash, is the last\nperson on earth Samantha Williams would trust. She's already learned about\nloving a celebrity the hard way and isn't signing up for another\nlesson.Every time Sam gives Leo attitude, he wants to knock that chip off\nher fragile little shoulder. He's not used to women treating him like he's\npoisonous, and he isn't about to let her run away every time he gets close.\nHe's had enough of people running away to last him a lifetime...when this\none runs, he gives chase. But, catching Sam isn't as hard as he thought.The\nsexual attraction between them is so thick, Sam can practically hold it in\nher hand. There's no way she can deny herself the promise of pleasure being\nwith Leo would provide. But, pleasure always comes with pain and when\nsecrets are revealed and trust is challenged, who will run and who will\nchase?\"\r\n5555,5822,7128341,\"Carlos Ruiz Zafón, Lucia Graves\",El príncipe de la niebla,https://images.gr-assets.com/books/1261604683l/7128341.jpg,3.66,14381,\"fantasy, mystery\",\"El príncipe de la nieblaCarlos Ruiz Zafón, Lucia Graves\"\r\n5556,5823,1409344,Alfred Uhry,Driving Miss Daisy,https://images.gr-assets.com/books/1328767041l/1409344.jpg,4.24,16829,\"classics, fiction\",\"THE STORY: The place is the Deep South, the time 1948, just prior to the\ncivil rights movement. Having recently demolished another car, Daisy\nWerthan, a rich, sharp-tongued Jewish widow of seventy-two, is informed by\nher son, Boolie, that hencefort\"\r\n5557,5825,172691,J.D. Robb,Conspiracy in Death,https://images.gr-assets.com/books/1305124508l/172691.jpg,4.35,22149,\"mystery, romance\",\"The #1 New York Times bestselling series featuring police lieutenant Eve\nDallas. New York City's most vulnerable citizens fall victim to a ruthless\nserial killer.\"\r\n5558,5826,7053,Alexander McCall Smith,In the Company of Cheerful Ladies,https://images.gr-assets.com/books/1422951731l/7053.jpg,4.07,19839,\"mystery, fiction\",\"Precious Ramotswe is challenged by a strange intruder at her home, the\nappearance in her yard of a mysterious pumpkin, troubles at her husband's\nmotorworks, and a vistor who forces her to confront a painful secret from\nher past.\"\r\n5559,5827,8296,\"Laura Ingalls Wilder, Garth Williams\",The First Four Years,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449687l/8296.jpg,3.88,24180,\"classics, fiction\",\"Laura Ingalls Wilder is beginning life with her new husband, Almanzo, in\ntheir own little house. Laura is a young pioneer wife now, and must work\nhard with Almanzo, farming the land around their home on the South Dakota\nprairie. Soon their baby daughter, Rose, is born, and the young family must\nface the hardships and triumphs encountered by so many American pioneers.\nAnd so Laura Ingalls Wilder's adventure as a little pioneer girl ends, and\nher new life as a pioneer wife and mother begins. The nine Little House\nbooks have been cherished by generations of readers as both a unique\nglimpse into America's frontier past and a heartwarming, unforgettable\nstory.\"\r\n5560,5829,128757,Kathy Reichs,Bones to Ashes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439223650l/128757._SX318_.jpg,3.92,19942,\"mystery, fiction\",\"Discovering the skeleton of a young girl in the neighborhood of a childhood\nbest friend who had gone missing thirty years earlier, Tempe Brennan\ninvestigates suspicions that the victim and her friend are one and the same\nand that the case is related to two other unsolved deaths. Reprint.\"\r\n5561,5830,19351490,\"Jacob Grimm, Wilhelm Grimm, منى الخميسي\",Grimms Märchen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386705031l/19351490.jpg,4.14,5873,\"classics, fantasy\",\"Grimms MärchenJacob Grimm, Wilhelm Grimm, منى الخميسي\"\r\n5562,5831,262731,\"Allan Pease, Barbara Pease\",The Definitive Book of Body Language,https://images.gr-assets.com/books/1320537802l/262731.jpg,3.97,13328,\"psychology, nonfiction\",\"The ultimate guide to human body language explains how to decipher\nnonverbal communication, how to read other people's thoughts and emotions\nthrough their gestures, and how to insure that one's own gestures are\nsending the right message. Previously published as Signals. 50,000 first\nprinting.\"\r\n5563,5833,72659,Farley Mowat,Never Cry Wolf : The Amazing True Story of Life Among Arctic Wolves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553107493l/72659._SY475_.jpg,4.19,17045,\"nonfiction, science\",\"By enquiring into the puzzle of sibling relations, Frank J. Sulloway\npioneers a new view of how family affects individual development. He shows\nthat birth-order is so fundamental to the family that it transcends gender,\nclass and nationality.\"\r\n5564,5834,8437913,\"James Patterson, Michael Ledwidge\",Tick Tock,https://images.gr-assets.com/books/1293807879l/8437913.jpg,4.03,17189,\"mystery, fiction\",\"NYC's #1 detective, Michael Bennett, has a huge problem--the Son of Sam,\nthe Werewolf of Wisteria and the Mad Bomber are all back. The city has\nnever been more terrified! Tick--a killer's countdown begins A rash of\nhorrifying crimes tears through the city, throwing it into complete chaos\nand terrorizing everyone living there. Immediately, it becomes clear that\nthey are not the work of an amateur, but of a calculating, efficient, and\ndeadly mastermind. Tick--Michael Bennett is on the chase The city calls on\nDetective Michael Bennett, pulling him away from a seaside retreat with his\nten adopted children, his grandfather, and their beloved nanny, Mary\nCatherine. Not only does it tear apart their vacation, it leaves the entire\nfamily open to attack. Tock--your time is up Bennett enlists the help of a\nformer colleague, FBI Agent Emily Parker. As his affection for Emily grows\ninto something stronger, his relationship with Mary Catherine takes an\nunexpected turn. All too soon, another appalling crime leads Bennett to a\nshocking discovery that exposes the killer's pattern and the earth-\nshattering enormity of his plan. From the creator of the #1 New York\ndetective series comes the most volatile and most explosive Michael Bennett\nnovel ever.\"\r\n5565,5835,6340471,Michelle Moran,Cleopatra's Daughter,https://images.gr-assets.com/books/1449745007l/6340471.jpg,4.11,16532,\"fiction, history\",\"A tale inspired by the lives of the children of Cleopatra and Marc Antony\nfinds Selene, her twin Alexander and their younger brother Ptolemy sent to\nthe palace of a formidable family rival after the deaths of their parents,\nwhere they adapt to Roman culture while making perilous journeys toward\nadulthood. By the best-selling author of Nefertiti. Reprint.\"\r\n5566,5836,281350,Kathy Reichs,Grave Secrets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439639414l/281350._SY475_.jpg,3.98,21460,\"mystery, crime\",Grave SecretsKathy Reichs\r\n5567,5837,16280678,Kevin Hearne,Shattered,https://images.gr-assets.com/books/1387891720l/16280678.jpg,4.28,15133,\"fantasy, contemporary\",\"Snarky magician Atticus O'Sullivan and his apprentice, Granuaile, travel to\nIndia to battle an ancient plague-summoning demon, only to encounter a\nperson from Atticus's past.\"\r\n5568,5838,2102600,John Scalzi,Zoe's Tale,https://images.gr-assets.com/books/1301108028l/2102600.jpg,3.73,15971,\"fiction, fantasy\",Zoe's TaleJohn Scalzi\r\n5569,5839,206197,Brad Thor,The First Commandment,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522066l/206197.jpg,4.22,14833,\"fiction, thriller\",\"In the wake of his girlfriend's brutal murder by an assassin who is in\npossession of a strange radioactive isotope, covert counter-terrorism agent\nScot Harvath discovers clues to a conspiracy with presidential ties that\nputs him at odds with his own agency. By the author of Takedown. Reissue. A\nbest-selling novel. 250,000 first printing.\"\r\n5570,5840,5289,\"Oscar Wilde, Merlin Holland\",Collected Works,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388610522l/5289.jpg,4.45,10835,\"classics, fiction\",\"A comprehensive collection of Wilde's works including poems, plays,\nletters, essays, and stories.\"\r\n5571,5841,24019,\"Cook's Illustrated Magazine, John Burgoyne, Carl Tremblay\",\"The New Best Recipe: All-New Edition with 1,000 Recipes\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348241812l/24019.jpg,4.2,15971,\"cookbooks, nonfiction\",\"Presents a collection of more than one thousand recipes along with cooking\ntutorials and opinons on equipment and ingredients.\"\r\n5572,5842,23308084,Renee Ahdieh,The Rose & the Dagger,https://images.gr-assets.com/books/1443797156l/23308084.jpg,4.2,26503,\"fantasy, romance\",\"\"\"Unsure who to trust, Shahrzad takes matters into her own hands to try and\nbreak the curse and reunite with her one true love\"\"--\"\r\n5573,5843,23164927,Peter Clines,The Fold,https://images.gr-assets.com/books/1416182070l/23164927.jpg,3.82,13519,\"fiction, horror\",\"An old friend presents Mike Erikson with an irresistible mystery to solve:\na team of DARPA scientists has invented a device that \"\"folds\"\" dimensions,\npromising to make mankind's dreams of teleportation a reality. Yet evidence\nis mounting that this miraculous machine isn't quite what it seems--and\nthat its creators are harboring a dangerous secret.--\"\r\n5574,5844,24586590,Louise Penny,The Nature of the Beast,https://images.gr-assets.com/books/1429532809l/24586590.jpg,4.21,14695,\"mystery, fiction\",The Nature of the BeastLouise Penny\r\n5575,5845,56157,Laura C. Schlessinger,The Proper Care and Feeding of Husbands,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441772763l/56157._SY475_.jpg,3.71,13465,\"nonfiction, psychology\",\"In her most provocative book yet, Dr. Laura urgently reminds women that to\ntake proper care of their husbands is to ensure themselves the happiness\nand satisfaction they yearn for in marriage. Women want to be in love, get\nmarried, and live happily ever after. Yet disrespect for men and disregard\nfor the value, feelings, and needs of husbands has fast become the standard\nfor male-female relations in America. Those two attitudes clash in\nunfortunate ways to create struggle and strife in what could be a beautiful\nrelationship. Countless women call Dr. Laura, unhappy in their marriages\nand seemingly at a loss to understand the incredible power they have over\ntheir men to create the kind of home life they yearn for. Now, in The\nProper Care and Feeding of Husbands, Dr. Laura shows you—with real-life\nexamples and real-life solutions—how to wield that power to attain all the\nsexual pleasure, intimacy, love, joy, and peace you want in your life. Dr.\nLaura's simple principles have changed the lives of millions. Now they can\nchange yours.\"\r\n5576,5846,4789801,Ted Dekker,Green,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442948093l/4789801._SX318_.jpg,4.03,17315,\"fantasy, fiction\",GreenTed Dekker\r\n5577,5847,7352220,Yana Toboso,黒執事 III [Kuroshitsuji III],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1261151722l/7352220.jpg,4.53,16682,\"manga, fantasy\",黒執事 III [Kuroshitsuji III]Yana Toboso\r\n5578,5848,16043804,Michael J. Sullivan,The Crown Tower,https://images.gr-assets.com/books/1375570227l/16043804.jpg,4.31,17352,\"fantasy, fiction\",The Crown TowerMichael J. Sullivan\r\n5579,5849,8477057,\"Fábio Moon, Gabriel Bá, Craig Thompson, Dave Stewart, Sean Konot\",Daytripper,https://images.gr-assets.com/books/1327876816l/8477057.jpg,4.31,17679,\"comics, fiction\",\"DaytripperFábio Moon, Gabriel Bá, Craig Thompson, Dave Stewart, Sean Konot\"\r\n5580,5850,6357022,Cherise Sinclair,\"Club Shadowlands (Masters of the Shadowlands, #1)\",https://images.gr-assets.com/books/1328014540l/6357022.jpg,3.99,22733,\"romance, contemporary\",\"Contemporary BDSM erotic romance \"\"(contains Club Shadowlands & Dark\nCitadel)\"\" CLUB SHADOWLANDS Her car disabled during a tropical storm,\nJessica Randall discovers the isolated house where she's sheltering is a\nprivate bondage club. At first shocked, she soon becomes aroused watching\nthe interactions between the Doms and their subs. But she's a professional\nwoman--an accountant--and surely isn't a submissive . . . is she? Master Z\nhasn't been so attracted to a woman in years. But the little sub who has\nwandered into his club intrigues him. She's intelligent. Reserved.\nConservative. After he discovers her interest in BDSM, he can't resist\ntying her up and unleashing the passion she hides within. DARK CITADEL\nAfter Kari breaks up with her date during Beginner's Night at Club\nShadowlands, she's given the option to continue with an experienced\ndominant. Despite her steamy fantasies about BDSM, the inexperienced\nschoolteacher plans to simply observe. Yet under the unyielding hands of\nMaster Dan, she not only participates, but gives him everything he asks\nfor. There is nothing she can hide from him. Not her passion...or her love.\nStill mourning the death of his wife, Master Dan avoids getting involved\nwith women and he never takes a sub twice. But this modest little beginner\nis such a sweetie, one night is far from enough. As he plumbs her\nresponses, taking her ever deeper into the world of BDSM, the gentle\nsubmissive begins to show him how barren his life has become and what a\ndark citadel he's made of his heart. During their three nights together,\nthe teacher will learn to submit...can she teach the master to love?\"\r\n5581,5851,6282753,\"Orhan Pamuk, Maureen Freely\",Masumiyet Müzesi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348583229l/6282753.jpg,3.69,12685,\"fiction, romance\",Novel.\r\n5582,5852,28815371,Brit Bennett,The Mothers,https://images.gr-assets.com/books/1460652458l/28815371.jpg,3.87,19784,\"fiction, contemporary\",Place of publication from publisher's website.\r\n5583,5853,406373,\"Johann Wolfgang von Goethe, Walter Kaufmann\", Faust. Der Tragödie erster und zweiter Teil ,https://images.gr-assets.com/books/1320404568l/406373.jpg,3.97,15864,\"classics, fiction\",\" Faust. Der Tragödie erster und zweiter Teil Johann Wolfgang von Goethe, Walter Kaufmann\"\r\n5584,5854,16172634,Cora Carmack,Faking It,https://images.gr-assets.com/books/1360560023l/16172634.jpg,3.96,27707,\"romance, contemporary\",\"Mackenzie \"\"Max\"\" Miller has a problem. Her parents have arrived in town for\na surprise visit, and if they see her dyed hair, tattoos, and piercings,\nthey just might disown her. Even worse, they’re expecting to meet a nice\nwholesome boyfriend, not a guy named Mace who has a neck tattoo and plays\nin a band. All her lies are about to come crashing down around her, but\nthen she meets Cade. Cade moved to Philadelphia to act and to leave his\nproblems behind in Texas. So far though, he’s kept the problems and had\nvery little opportunity to take the stage. When Max approaches him in a\ncoffee shop with a crazy request to pretend to be her boyfriend, he agrees\nto play the part. But when Cade plays the role a little too well, they’re\nforced to keep the ruse going. And the more they fake the relationship, the\nmore real it begins to feel. The hot new, New Adult title from New York\nTimes bestselling author of Losing It, Cora Carmack.\"\r\n5585,5855,106131,Jenny Nimmo,\"Charlie Bone and the Castle of Mirrors (The Children of the Red King, # 4)\",https://images.gr-assets.com/books/1290344623l/106131.jpg,3.89,20101,\"fantasy, fiction\",\"Charlie Bone is back at Bloor's Academy, where a new semester- and new\npowers-await him. Bur nothing is quite the same as Charlie left it.\"\r\n5586,5856,12667194,Shelly Crane,Accordance,https://images.gr-assets.com/books/1368363345l/12667194.jpg,4.28,25037,\"paranormal, romance\",\"In the sequel to Significance, Maggie learns much more about all the\nstrange things that have happened to her and has to face many new ones. She\nlearns something about herself, that she is something that the clans have\nbeen waiting for. She rebels against it but, ultimately must face it for\nher new family's sake and maybe even her life. Bish went from being her\nbiggest supporter to her biggest pain in the butt and Kyle's intentions to\nattract her interest may not be so innocent. Caleb and Maggie face many new\nobstacles together as a couple and on their own. They fight to work through\nthem but will one that should be a good thing be too much for Maggie to\nhandle? Will she become who she has to be to save the ones she loves or\nwill she crumble under the pressure as this epic love story continues.\"\r\n5587,5857,8130839,Andrea Cremer,Bloodrose,https://images.gr-assets.com/books/1351196369l/8130839.jpg,4.06,23874,\"paranormal, fantasy\",\"Calla Tor, the alpha member of her shapeshifting wolf pack, must decide if\nher illicit love for the human Shay is worth the ultimate sacrifice.\"\r\n5588,5858,16297,Agatha Christie,Cards on the Table,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208739l/16297.jpg,3.9,19577,\"mystery, fiction\",\"Mr. Shaitana is famous as a flamboyant party host. Nevertheless, he is a\nman of whom everybody is a little afraid. So when he boasts to Hercule\nPoirot that he considers murder an art form, the detective has some\nreservations about accepting a party invitation to view Shaitana’s “private\ncollection.” Indeed, what begins as an absorbing evening of bridge is to\nturn into a more dangerous game altogether.…\"\r\n5589,5859,13547289,Rachel Renée Russell,Tales From a Not-So-Smart Miss Know-it-all,https://images.gr-assets.com/books/1370064645l/13547289.jpg,4.42,13648,\"fiction, romance\",\"When Miss Know-It-All's inbox overflows with pleas for guidance, Nikki\nMaxwell, the school newspaper advice columnist, turns to her best friends\nfor help.\"\r\n5590,5860,89551,Beverly Cleary,Ramona and Her Mother,https://images.gr-assets.com/books/1445632007l/89551.jpg,4.08,20053,\"fiction, classics\",Ramona and Her MotherBeverly Cleary\r\n5591,5861,16363,Agatha Christie,Appointment with Death,https://images.gr-assets.com/books/1308808730l/16363.jpg,3.84,20793,\"mystery, fiction\",\"Among the towering red cliffs of Petra, like some monstrous swollen Buddha,\nsits the corpse of Mrs. Boynton. A tiny puncture mark on her wrist is the\nonly sign of the fatal injection that killed her. With only twenty-four\nhours available to solve the mystery, Hercule Poirot recalled a chance\nremark he’d overheard back in Jerusalem: “You see, don’t you, that she’s\ngot to be killed?” Mrs. Boynton was, indeed, the most detestable woman he’d\never met. . . .\"\r\n5592,5862,73064,Susan Elizabeth Phillips,Natural Born Charmer,https://images.gr-assets.com/books/1308742575l/73064.jpg,4.15,25474,\"romance, contemporary\",Natural Born CharmerSusan Elizabeth Phillips\r\n5593,5863,30852,Maxine Hong Kingston,The Woman Warrior: Memoirs of a Girlhood Among Ghosts,https://images.gr-assets.com/books/1418654290l/30852.jpg,3.72,17781,\"memoir, fiction\",\"A Chinese American woman tells of the Chinese myths, family stories and\nevents of her California childhood that have shaped her identity.\"\r\n5594,5864,327194,\"Masha, Marie Simchow Stern\",The Three Little Kittens (A First Little Golden Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223263509l/327194.jpg,4.28,18327,\"classics, fiction\",\"The Three Little Kittens (A First Little Golden Book)Masha, Marie Simchow Stern\"\r\n5595,5865,38503,Charles Bukowski,\"Erections, Ejaculations, Exhibitions and General Tales of Ordinary Madness\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388246934l/38503.jpg,4,13995,\"fiction, poetry\",\"\"\"With Bukowski, the votes are still coming in. There seems to be no middle\nground - people seem either to love him or hate him. Tales of his own life\nand doings are as wild and weird as the very stories he writes. In a sense,\nBukowski was a legend in his time ... a madman, a recluse, a lover ...\ntender, vicious ... never the same ... these are exceptional stories that\ncome pounding out of his violent and depraved life ... horrible and holy,\nyou cannot read them and ever come away the same again.\"\"--Page 4 de la\ncouverture.\"\r\n5596,5867,478894,Terry Brooks,The Sword of Shannara Trilogy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201262l/478894.jpg,3.94,15172,\"fantasy, fiction\",\"Presents all three novels from the fantasy series set in the magical world\nof Shannara.\"\r\n5597,5868,23492661,Taylor Jenkins Reid,Maybe In Another Life,https://images.gr-assets.com/books/1424970519l/23492661.jpg,3.74,17138,\"fiction, romance\",\"A new novel about a young woman whose fate hinges on the choice she makes\nafter bumping into an old flame\"\r\n5598,5869,15802944,Glennon Doyle Melton,\" Carry On, Warrior: Thoughts on Life Unarmed \",https://images.gr-assets.com/books/1359054516l/15802944.jpg,4.18,12986,\"memoir, nonfiction\",\" Carry On, Warrior: Thoughts on Life Unarmed Glennon Doyle Melton\"\r\n5599,5870,736131,\"Arthur Conan Doyle, David Timson\",The Valley of Fear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390250081l/736131.jpg,3.98,15399,\"mystery, classics\",\"The Valley of FearArthur Conan Doyle, David Timson\"\r\n5600,5871,3094593,Nora Roberts,The Pagan Stone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434511766l/3094593._SY475_.jpg,4.14,22863,\"romance, paranormal\",\"In this thrilling conclusion to the Sign of Seven trilogy, three women and\nthree men merge their powers to battle the ultimate evil, proving that\nfriendship, family, love, and passion is much stronger than the looming\ndarkness. Original.\"\r\n5601,5873,44644,Stephen R. Covey,Principle Centered Leadership,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429971401l/44644.jpg,4.07,13079,\"business, nonfiction\",Principle Centered LeadershipStephen R. Covey\r\n5602,5874,2570856,Larry Correia,Monster Hunter International,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506646711l/2570856._SY475_.jpg,4.04,16552,\"fantasy, horror\",\"THREE novels in the New York Times best-selling series in one volume – the\nfirst three entries in Larry Correia’s Monster Hunter series described as\nDirty Harry meets Twilight. Monster Hunter International, Monster Hunter\nVendetta and Monster Hunter Alpha in one huge volume! Two New York Times\nbestsellers in together for the first time, and the first three entries in\nLarry Correia’s blockbuster Monster Hunter series.\"\r\n5603,5875,11431896,Rae Carson,The Bitter Kingdom,https://images.gr-assets.com/books/1360281470l/11431896.jpg,4.23,24420,\"fantasy, fiction\",\"The third book in Rae Carson's award-winning The Girl of Fire and Thorns\nfantasy trilogy. Elisa, the seventeen-year-old sorcerer-queen, will travel\ninto an unknown enemy's realm to win back her true love, save her kingdom,\nand uncover the final secrets of her destiny. Veronica Roth called The Girl\nof Fire and Thorns \"\"intense, unique . . . definitely recommended.\"\" Perfect\nfor fans of Tamora Pierce and George R. R. Martin's style of sweeping and\ndeeply satisfying epic fantasy, the third and final book in the trilogy\ntakes the young queen on a journey more dangerous than any she has faced\nbefore. Elisa will stand before the gate of the enemy. And she must rise up\nas champion—even to those who have hated her—or her kingdom will fall. Full\nof sorcery, adventure, sizzling romance, and secrets that challenge\neverything she believes, this is a bold and powerful conclusion to an\nextraordinary trilogy. As USAToday.com proclaimed, \"\"Rae Carson has proved\nshe's a master and has shaken up the YA genre.\"\"\"\r\n5604,5876,19674,Tom Clancy,The Teeth of the Tiger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389990838l/19674.jpg,3.61,15746,\"fiction, thriller\",\"An extremely secret anti-terrorist unit set up by President Ryan has its\neyes on three promising possible recruits, including the president's son.\"\r\n5605,5877,61958,Anne McCaffrey,Moreta: Dragonlady Of Pern,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1204647178l/61958.jpg,3.97,21117,\"fantasy, fiction\",Fantasy-roman.\r\n5606,5878,437885,Diane Muldrow,Frosty the Snowman (Little Golden Book),https://images.gr-assets.com/books/1377635241l/437885.jpg,4.34,17540,\"classics, fiction\",Frosty the Snowman (Little Golden Book)Diane Muldrow\r\n5607,5879,102957,\"Garth Ennis, Steve Dillon, Peter Snejbjerg\",Preacher: War in the Sun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348266389l/102957.jpg,4.34,16531,\"comics, fiction\",\"Preacher: War in the SunGarth Ennis, Steve Dillon, Peter Snejbjerg\"\r\n5608,5880,40158,Megan Whalen Turner,The Queen of Attolia,https://images.gr-assets.com/books/1293505506l/40158.jpg,4.23,23813,\"fantasy, fiction\",\"Discover the world of the Queen’s Thief New York Times-bestselling author\nMegan Whalen Turner’s entrancing and award-winning Queen’s Thief novels\nbring to life the world of the epics and feature one of the most\ncharismatic and incorrigible characters of fiction, Eugenides the thief.\nMegan Whalen Turner’s Queen’s Thief novels are rich with political\nmachinations and intrigue, battles lost and won, dangerous journeys, divine\nintervention, power, passion, revenge, and deception. Perfect for fans of\nLeigh Bardugo, Marie Lu, Patrick Rothfuss, and George R. R. Martin. The\nbrilliant thief Eugenides has visited the Queen of Attolia’s palace one too\nmany times, leaving small tokens and then departing unseen. When his final\nexcursion does not go as planned, he is captured by the ruthless queen. The\nQueen’s Thief novels have been praised by writers, critics, reviewers, and\nfans and have been honored with glowing reviews, “best of” citations, and\nnumerous awards, including the Los Angeles Times Book Prize, a Newbery\nHonor, the Andre Norton Award shortlist, and the Mythopoeic Fantasy Award.\nDiscover and rediscover the stand-alone companions, The Queen of Attolia,\nThe King of Attolia, A Conspiracy of Kings, and Thick as Thieves, all epic\nnovels set in the world of the Queen’s Thief. This edition of The Queen of\nAttolia includes \"\"Knife Dance,\"\" an exclusive story about Eugenides by Megan\nWhalen Turner, an introduction to the characters from the world of the\nQueen’s Thief, a map of the world of the Queen’s Thief, and an exclusive\nteaser to Thick as Thieves. A Booklist Top 10 Fantasy Books for Youth ALA\nPopular Paperbacks for Young Adults A New York Public Library Book for the\nTeen Age Parent’s Choice Gold Award A Bulletin of the Center for Children’s\nBooks Blue Ribbon Book “The Queen’s Thief books awe and inspire me. They\nhave the feel of a secret, discovered history of real but forgotten lands.\nThe plot-craft is peerless, the revelations stunning, and the characters\nflawed, cunning, heartbreaking, exceptional. Megan Whalen Turner’s books\nhave a permanent spot on my favorites shelf, with space waiting for more\nbooks to come.”—Laini Taylor, New York Times-bestselling author of the\nDaughter of Smoke and Bone novels and Strange the Dreamer \"\"Unforgettable\ncharacters, plot twists that will make your head spin, a world rendered in\nelegant detail—you will fall in love with every page of these stories.\nMegan Whalen Turner writes vivid, immersive, heartbreaking fantasy that\nwill leave you desperate to return to Attolia again and again.\"\"—Leigh\nBardugo, New York Times-bestselling author of the The Grisha Trilogy and\nSix of Crows “Megan Whalen Turner proves to be one of the brightest\ncreative talents. With each book, she continues to add new levels and new\nluster to her sparkling imagination.”—Lloyd Alexander, Newbery Medalist and\nNational Book Award-winning author of The Chronicles of Prydain “Readers\nwill be spellbound.”—Kirkus Reviews (starred review) “Turner’s storytelling\nis so sure that readers will want to go along with her—and discover\nwhatever it is that Eugenides will do next.”—Publishers Weekly (starred\nreview) “[An] intense read . . . thoroughly involving and wholly satisfying\non all fronts.”—The Horn Book (starred review)\"\r\n5609,5881,16842,Christopher Isherwood,A Single Man,https://images.gr-assets.com/books/1380688373l/16842.jpg,4.11,14554,\"fiction, classics\",\"A professor at a California university in the 1960s must deal with\nloneliness and a sense of disconnection after the death of his longtime\npartner.\"\r\n5610,5882,13529055,Christopher Hitchens,Mortality,https://images.gr-assets.com/books/1337177391l/13529055.jpg,4.12,14248,\"biography, philosophy\",MortalityChristopher Hitchens\r\n5611,5883,312050,Chris d'Lacey,Icefire,https://images.gr-assets.com/books/1362400475l/312050.jpg,3.9,19795,\"fantasy, fiction\",\"While researching the existence of dragons for an essay that could win him\na trip to the Arctic, Chris opens himself to the possibility that a great,\nancient treasure exists there, guarded by bears, and that he has some role\nin its protection.\"\r\n5612,5884,30831912,Neil Gaiman,Norse Mythology,https://images.gr-assets.com/books/1473864212l/30831912.jpg,4.12,22266,\"fantasy, fiction\",\"Introducing an instant classic master storyteller Neil Gaiman presents a\ndazzling version of the great Norse myths.\"\"\"\r\n5613,5885,49251,Stephen E. Ambrose,Citizen Soldiers: The U. S. Army from the Normandy Beaches to the Bulge to the Surrender of Germany,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428459953l/49251.jpg,4.19,16322,\"history, nonfiction\",\"From Stephen E. Ambrose, bestselling author of Band of Brothers and D-Day,\nthe inspiring story of the ordinary men of the U.S. army in northwest\nEurope from the day after D-Day until the end of the bitterest days of\nWorld War II. In this riveting account, historian Stephen E. Ambrose\ncontinues where he left off in his #1 bestseller D-Day. Citizen Soldiers\nopens at 0001 hours, June 7, 1944, on the Normandy beaches, and ends at\n0245 hours, May 7, 1945, with the allied victory. It is biography of the US\nArmy in the European Theater of Operations, and Ambrose again follows the\nindividual characters of this noble, brutal, and tragic war. From the high\ncommand down to the ordinary soldier, Ambrose draws on hundreds of\ninterviews to re-create the war experience with startling clarity and\nimmediacy. From the hedgerows of Normandy to the overrunning of Germany,\nAmbrose tells the real story of World War II from the perspective of the\nmen and women who fought it.\"\r\n5614,5886,107774,Julie Garwood,Honor's Splendour,https://images.gr-assets.com/books/1313525352l/107774.jpg,4.22,21926,\"romance, fiction\",Honor's SplendourJulie Garwood\r\n5615,5887,10757771,Kody Keplinger,Shut Out,https://images.gr-assets.com/books/1327918078l/10757771.jpg,3.76,23723,\"contemporary, romance\",\"The battle of the sexes is on. Most high school sports teams have rivalries\nwith other schools. At Hamilton High, it's a civil war: the football team\nversus the soccer team. And for her part,Lissa is sick of it. Her\nquarterback boyfriend, Randy, is always ditching her to go pick a fight\nwith the soccer team or to prank their locker room. And on three separate\noccasions Randy's car has been egged while he and Lissa were inside, making\nout. She is done competing with a bunch of sweaty boys for her own\nboyfriend's attention. Lissa decides to end the rivalry once and for all:\nShe and the other players' girlfriends go on a hookup strike. The boys\nwon't get any action from them until the football and soccer teams make\npeace. What they don't count on is a new sort of rivalry: an impossible\ngirls-against-boys showdown that hinges on who will cave to their libidos\nfirst. And Lissa never sees her own sexual tension with the leader of the\nboys, Cash Sterling, coming.\"\r\n5616,5889,59813,Nora Roberts,Valley of Silence,https://images.gr-assets.com/books/1377646212l/59813.jpg,4.2,20800,\"romance, fantasy\",\"In this thrilling conclusion to The Circle trilogy, one vampire dares to\nstand against Lilith and her minions, using his love for the newly crowned\nqueen of Geall to finally complete the circle of six and change the course\nof history. Original.\"\r\n5617,5890,207034,Jeanne DuPrau,The Prophet of Yonwood,https://images.gr-assets.com/books/1320636285l/207034.jpg,3.25,22237,\"fantasy, fiction\",\"While visiting the small town of Yonwood, North Carolina, eleven-year-old\nNickie makes some decisions about how to identify both good and evil when\nshe witnesses the townspeople's reactions to the apocalyptic visions of one\nof their neighbors.\"\r\n5618,5891,20800147,James Patterson,Hope to Die,https://images.gr-assets.com/books/1414130505l/20800147.jpg,4.14,10005,\"mystery, fiction\",Hope to DieJames Patterson\r\n5619,5892,6294553,\"Kresley Cole, Gena Showalter\",Deep Kiss Of Winter ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442426841l/6294553._SY475_.jpg,4.23,23875,\"paranormal, romance\",\"Deep Kiss Of Winter Kresley Cole, Gena Showalter\"\r\n5620,5893,15944406,\"Holly Black, Eliza Wheeler\",Doll Bones,https://images.gr-assets.com/books/1424981042l/15944406.jpg,3.7,17414,\"fantasy, horror\",\"Zach, Alice, and Poppy, friends from a Pennsylvania middle school who have\nlong enjoyed acting out imaginary adventures with dolls and action figures,\nembark on a real-life quest to Ohio to bury a doll made from the ashes of a\ndead girl.\"\r\n5621,5894,11057626,Patricia Cornwell,Red Mist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203544l/11057626.jpg,3.75,16396,\"mystery, crime\",Red MistPatricia Cornwell\r\n5622,5895,11277218,Alan Bradley,I Am Half-Sick of Shadows ,https://images.gr-assets.com/books/1409945571l/11277218.jpg,4.09,21288,\"mystery, fiction\",I Am Half-Sick of Shadows Alan Bradley\r\n5623,5896,12881141,Kristen Ashley,Wild Man,https://images.gr-assets.com/books/1327919924l/12881141.jpg,4.21,32541,\"romance, contemporary\",Wild ManKristen Ashley\r\n5624,5897,23129410,\"Joseph Fink, Jeffrey Cranor\",Welcome to Night Vale,https://images.gr-assets.com/books/1447774088l/23129410.jpg,3.87,17781,\"fantasy, fiction\",\"Welcome to Night ValeJoseph Fink, Jeffrey Cranor\"\r\n5625,5899,110385,Julia Quinn,An Offer From a Gentleman,https://images.gr-assets.com/books/1306208628l/110385.jpg,4.08,17402,\"romance, fiction\",\"Sophie Beckett never dreamed she′d be able to sneak into Lady Bridgerton′s\nfamed masquerade ball - or that \"\"Prince Charming\"\" would be waiting there\nfor her! Though the daughter of an earl, Sophie has been relegated to the\nrole of servant by her disdainful stepmother. But now, spinning in the\nstrong arms of the debonair and devastatingly handsome Benedict Bridgerton,\nshe feels like royalty. Alas, she knows all enchantments must end when the\nclock strikes midnight. Who was that extraordinary woman? Ever since that\nmagical night, a radiant vision in silver has blinded Benedict to the\nattractions of any other - except, perhaps, this alluring and oddly\nfamiliar beauty dressed in housemaid′s garb whom he feels compelled to\nrescue from a most disagreeable situation. He has sworn to find and wed his\nmystery miss, but this breathtaking maid makes him weak with wanting her.\nYet, if he offers her his heart, will Benedict sacrifice his only chance\nfor a fairy tale love?\"\r\n5626,5900,18304322,Julie   Murphy,Dumplin',https://images.gr-assets.com/books/1424189465l/18304322.jpg,3.87,22176,\"contemporary, romance\",Dumplin'Julie   Murphy\r\n5627,5901,23533039,Ann Leckie,Ancillary Mercy,https://images.gr-assets.com/books/1493642929l/23533039.jpg,4.2,12776,\"fiction, ebooks\",\"The stunning conclusion to the trilogy that began with the Hugo, Nebula,\nand Arthur C. Clarke award-winning Ancillary Justice. For a moment, things\nseem to be under control for the soldier known as Breq. Then a search of\nAtheok Station's slums turns up someone who shouldn't exist - someone who\nmight be an ancillary from a ship that's been hiding beyond the empire's\nreach for three thousand years. Meanwhile, a messenger from the alien and\nmysterious Presger empire arrives, as does Breq's enemy, the divided and\nquite possibly insane Anaander Mianaai - ruler of an empire at war with\nitself. Anaander is heavily armed and extremely unhappy with Breq. She\ncould take her ship and crew and flee, but that would leave everyone at\nAthoek in terrible danger. Breq has a desperate plan. The odds aren't good,\nbut that's never stopped her before. In the Ancillary world: 1. Ancillary\nJustice2. Ancillary Sword3. Ancillary Mercy\"\r\n5628,5902,8038219,Gena Showalter,The Darkest Surrender,https://images.gr-assets.com/books/1327883317l/8038219.jpg,4.42,24515,\"paranormal, romance\",The Darkest SurrenderGena Showalter\r\n5629,5903,11563,Stephen King,Danse Macabre,https://images.gr-assets.com/books/1309287093l/11563.jpg,3.62,18700,\"horror, nonfiction\",\"The author addresses the topic of what makes horror horrifying and what\nmakes terror terrifying. King delivers one colorful observation after\nanother about the great stories, books and films that comprise of the\nhorror genre--from Frankenstein and Dracula to The exorcist, The twilight\nzone and Earth vs. The flying saucers.\"\r\n5630,5904,15762657,Gina L. Maxwell,Seducing Cinderella,https://images.gr-assets.com/books/1342860599l/15762657.jpg,3.94,21617,\"sports, ebooks\",\"Mixed martial arts fighter Reid Andrews's chance to reclaim his title as\nlight heavyweight champ is shattered when he's injured only months before\nthe rematch. To make sure he's healed in time, his trainer sends him to\nrecuperate under a professional's care--Reid's best friend's little sister,\nall grown up. Disorganized and bookish Lucie Miller needs some professional\nhelp of her own. She'd do anything to catch the eye of a doctor she's\ncrushed on for years, so when Reid offers seduction lessons in exchange for\n24/7 conditioning for the biggest fight of his career, Lucie jumps at the\nchance. Soon Reid finds himself in the fight of his life...winning Lucie's\nheart before she gives it to someone else.\"\r\n5631,5905,28184,Alexander McCall Smith,Blue Shoes and Happiness ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388226464l/28184.jpg,4.06,20246,\"mystery, fiction\",\"Precious Ramotswe and her assistant, Grace Makutsi, investigate local\nadvice columnist Aunty Emang, who may be linked to trouble at a local\nmedical clinic and the cobra that somehow ended up in Precious's office.\"\r\n5632,5906,104734,\"Eve Ensler, Gloria Steinem\",The Vagina Monologues,https://images.gr-assets.com/books/1327243997l/104734.jpg,3.86,17935,\"nonfiction, fiction\",\"The Vagina MonologuesEve Ensler, Gloria Steinem\"\r\n5633,5907,31244,Charles Dickens,Our Mutual Friend,https://images.gr-assets.com/books/1403189244l/31244.jpg,4.07,18599,\"classics, fiction\",\"Our Mutual Friend centres on an inheritance - Old Harmon's profitable dust\nheaps - and its legatees, young John Harmon, presumed drowned when a body\nis pulled out of the River Thames, and kindly dustman Mr Boffin, to whom\nthe fortune defaults. With brilliant satire, Dickens portrays a dark,\nmacabre London, inhabited by such disparate characters as Gaffer Hexam,\nscavenging the river for corpses; enchanting, mercenary Bella Wilfer; the\nsocial climbing Veneerings; and the unscrupulous street-trader Silas Wegg.\nThe novel is richly symbolic in its vision of death and renewal in a city\ndominated by the fetid Thames, and the corrupting power of money.\"\r\n5634,5908,531262,Evelyn Waugh,A Handful of Dust,https://images.gr-assets.com/books/1344266314l/531262.jpg,3.92,17370,\"fiction, classics\",A Handful of DustEvelyn Waugh\r\n5635,5909,95608,Francine Rivers,Leota's Garden,https://images.gr-assets.com/books/1406507728l/95608.jpg,4.07,15039,\"fiction, christian\",\"At eighty-four, Leota Reinhardt is alone, all of her efforts to reconcile\nwith her adult children hadn't worked in the past, until she meets her\nestranged grandaughter, Annie, and confides to her the silent sacrifice she\nhad made as a young mother of two, while her husband was gone during World\nWar II.\"\r\n5636,5910,6532496,Barbara Delinsky,Not My Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348278272l/6532496.jpg,3.77,17109,\"fiction, contemporary\",\"Devastated by her teenage daughter's pregnancy, single mother and high\nschool principal Susan Tate is targeted by unfair criticism when the\npregnancies of additional teens are rumored to be part of a pact.\"\r\n5637,5911,50618,Paul Auster,The Book of Illusions,https://images.gr-assets.com/books/1391954093l/50618.jpg,3.89,13583,\"mystery, contemporary\",The Book of IllusionsPaul Auster\r\n5638,5912,112756,Karen Marie Moning,To Tame a Highland Warrior,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1201362661l/112756.jpg,4.14,24710,\"fantasy, romance\",To Tame a Highland WarriorKaren Marie Moning\r\n5639,5913,171020,Wendy Mass,A Mango-Shaped Space,https://images.gr-assets.com/books/1326056834l/171020.jpg,4.22,20661,\"fiction, contemporary\",A Mango-Shaped SpaceWendy Mass\r\n5640,5914,41950,Maeve Binchy,Quentins,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169806796l/41950._SY475_.jpg,3.88,18150,\"fiction, romance\",\"While filming a documentary about Quentins, a famed Dublin restaurant, Ella\nBrady explores the changing face of the city from the 1970s to the present\nday as she captures the stories of the people who have made Quentins a\ncenter of their lives. Reprint.\"\r\n5641,5915,304,\"George Eliot, Edmund White\",Daniel Deronda,https://images.gr-assets.com/books/1320432000l/304.jpg,3.82,17723,\"classics, fiction\",\"Deronda, a high-minded young man searching for his path in life, finds\nhimself drawn by a series of dramatic encounters into two contrasting\nworlds: the English country-house life of Gwendolen Harleth, a high-\nspirited beauty trapped in an oppressive marriage, and the very different\nlives of a poor Jewish girl, Mirah, and her family. As Deronda uncovers the\nlong-hidden secret of his own parentage, Eliot's moving and suspenseful\nnarrative opens up a world of Jewish experience previously unknown to the\nVictorian novel.\"\r\n5642,5917,7203690,Susan Mallery,Chasing Perfect,https://images.gr-assets.com/books/1278170007l/7203690.jpg,3.89,18437,\"romance, contemporary\",Chasing PerfectSusan Mallery\r\n5643,5918,97632,Plum Sykes,The Debutante Divorcée,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347287569l/97632.jpg,3.46,15030,\"fiction, romance\",The Debutante DivorcéePlum Sykes\r\n5644,5920,39028,\"Douglas Preston, Lincoln Child\",\"The Wheel of Darkness (Pendergast, #8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442764007l/39028._SY475_.jpg,3.92,18413,\"thriller, fiction\",\"The Wheel of Darkness (Pendergast, #8)Douglas Preston, Lincoln Child\"\r\n5645,5921,25733990,Sylvain Neuvel,Sleeping Giants,https://images.gr-assets.com/books/1459785141l/25733990.jpg,3.84,19371,\"fiction, fantasy\",Sleeping GiantsSylvain Neuvel\r\n5646,5922,15795628,Julianne Donaldson,Blackmoore,https://images.gr-assets.com/books/1366846456l/15795628.jpg,4.17,17497,\"romance, fiction\",\"Having decided she will never marry, Kate Worthington plans to escape her\nmeddlesome family by travelling to India. Her mother agrees on the\ncondition that she gets--and rejects--three marriage proposals. To fulfill\nher end of the bargain Kate travels to the manor of Blackmoore in northern\nEngland, where her plans go awry.\"\r\n5647,5923,47720,\"Neil Gaiman, Barron Storey, Bill Sienkiewicz, Glenn Fabry, Dave McKean, P. Craig Russell, Milo Manara, Miguelanxo Prado, Frank Quitely, Todd Klein\",The Sandman: Endless Nights,https://images.gr-assets.com/books/1327948224l/47720.jpg,4.34,20416,\"fantasy, comics\",\"Presents a collection of seven graphic stories that feature the character\nknown as \"\"The Sandman\"\" who rules over humans as they sleep. Reprint.\"\r\n5648,5924,202292,Olivia Goldsmith,The First Wives Club,https://images.gr-assets.com/books/1405833638l/202292.jpg,3.87,17219,\"fiction, contemporary\",\"A re-release of a best-selling tale features three New York society ex-\nwives--Elise, Brenda, and Annie--who band together to seek revenge on the\nhusbands who discarded them for younger women. By the author of Marrying\nMom. Reprint. 17,500 first printing.\"\r\n5649,5925,250729,Maggie O'Farrell,The Vanishing Act of Esme Lennox,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348843114l/250729.jpg,3.82,16675,\"mystery, contemporary\",The Vanishing Act of Esme LennoxMaggie O'Farrell\r\n5650,5926,550720,Sarah Waters,The Night Watch,https://images.gr-assets.com/books/1394331077l/550720.jpg,3.67,13798,\"fiction, history\",\"The story of three women in post-World War II London, their love affairs\nand the mysterious young man who will have a powerful impact on their\nlives. From the author of \"\"Fingersmith\"\".\"\r\n5651,5927,21853645,Jeffrey Archer,Mightier Than the Sword,https://images.gr-assets.com/books/1407772906l/21853645.jpg,4.09,10257,\"fiction, mystery\",Mightier Than the SwordJeffrey Archer\r\n5652,5928,31331,Anne Rice,Blood Canticle,https://images.gr-assets.com/books/1327963715l/31331.jpg,3.71,17359,\"fiction, horror\",\"Continues the crossover events of Blackwood Farm, pitting the Vampire\nLestat against the ghost of Julian Mayfair, who is out to avenge the\ntransformation of Mona Mayfair, and bringing back the character of the\nancient Taltos Ashlar, who fled with Mona's child, Morrigan, and\nchronicling Rowan Mayfair's dangerous attraction to Lestat. Reprint.\"\r\n5653,5929,13060,Carl Hiaasen,Nature Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391183537l/13060.jpg,3.61,17216,\"fiction, mystery\",\"Honey Santana, the bipolar, self-proclaimed \"\"queen of lost causes,\"\" has\nplans to give telemarketer Boyd Shreave and his mistress a lesson in\ncivility, unware that she is being followed by her obsessed ex-employer\nPiejack, her one-time drug runner ex-husband Perry, and their twelve-year-\nold son, Fry, or that they will all intrude on the privacy of would-be\nrecluse Sammy Tigertail. 600,000 first printing.\"\r\n5654,5930,11553,Robert McCammon,Boy's Life,https://images.gr-assets.com/books/1314302694l/11553.jpg,4.32,15752,\"horror, fiction\",\"The witnesses to a horrific murder, Cory Mackenson and his father\ninvestigate and come face to face with the vicious Blaylock clan, a secret\nsociety united by racial hatred, and a reptilian creature inhabiting the\nriver. Reissue.\"\r\n5655,5931,20563,\"George Eliot, Joanna Trollope, Hugh Osborne\",Adam Bede,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167298252l/20563.jpg,3.77,17777,\"classics, fiction\",\"Hailed for its sympathetic and accurate rendering of nineteenth-century\nEnglish pastoral life, Adam Bede was George Eliot’s first full-length novel\nand a bestseller from the moment of publication. Eliot herself called it “a\ncountry story—full of the breath of cows and scent of hay.” Adam Bede is an\nearnest and virtuous carpenter who is betrayed by his love, Hetty Sorrel, a\npretty yet foolish dairymaid who is seduced by a careless young villager.\nThe bitter, tragic consequences of her actions shake the very foundations\nof their serene rural community. While Adam Bede represents a timeless\nstory of seduction and betrayal, it is also a deeper, impassioned\nmeditation on the irrevocable consequences of human actions and on moral\ngrowth and redemption through suffering.\"\r\n5656,5932,16235,Chitra Banerjee Divakaruni,Sister of My Heart,https://images.gr-assets.com/books/1403188554l/16235.jpg,3.97,14434,\"fiction, contemporary\",\"Born in a big old Calcutta house on the same night, the wild, tragic night\ntheir fathers were both mysteriously lost, Sudha and Anju are cousins.\nCloser even than sisters, they share clothes, possessions, worries, dreams\n- and three mothers, who preside over the matriarchal Chatterjee household.\nBut when Sudha discovers a terrible secret about their past, their mutual\nloyalty is sorely tested. A family crisis forces the mothers to start the\nserious business of arranging the girls' marriages, and the inseparable\npair are torn apart. Sudha moves to her new family'as home in rural Bengal,\nwhile Anju joins her immigrant husband in California. But nothing has\nprepared them for the pain, aswell as the joy, that each will have to face\nin her new life. Rooted in Indian folklore and steeped in the mysticism of\nancient tales, this bright, jewel-like novel shines its light on the bonds\nof family, on love and loss, against the realities of traditional arranged\nmarriages, and the adjustments needed for modern life.\"\r\n5657,5933,3181564,\"Yōko Ogawa, Stephen Snyder\",博士の愛した数式 ,https://images.gr-assets.com/books/1344313042l/3181564.jpg,3.94,16865,\"fiction, contemporary\",\"博士の愛した数式 Yōko Ogawa, Stephen Snyder\"\r\n5658,5934,102525,Sue Grafton,H is for Homicide,https://images.gr-assets.com/books/1315138195l/102525.jpg,3.89,21635,\"mystery, fiction\",\"#1 New York Times bestselling author Sue Grafton's PI Kinsey Millhone\ntackles insurance fraud in her latest outing—and finds that she'll have to\ncommit some deceit of her own to catch a cold-blooded killer... H IS FOR\nHUSTLER... When PI Kinsey Millhone's good friend and colleague Parnell\nPerkins is found murdered in the parking lot behind California Fidelity\nInsurance, she can't believe he had any enemies. The only clue that raises\na red flag for Kinsey is one of Parnell's files on a Bibianna Diaz, who\nappears to have made a lucrative career out of scamming insurance companies\nwith phony claims... H IS FOR HAZARDOUS... Taking an alias, Kinsey goes\nundercover to befriend Bibianna, hoping she'll get close enough to catch\nthe con artist at her own game. But Kinsey never dreams that hanging out\nwith Bibianna will get them both thrown in jail. And when they're released,\nBibianna's very jealous, very dangerous ex-fiancé Raymond Maldonado is\nwaiting for them. H IS FOR HOMICIDE Kinsey soon discovers the short-\ntempered thug is the kingpin behind Bibianna's and countless other phony\ninsurance claims. But was Raymond also responsible for Parnell's death? All\nKinsey knows is that she'll have to think quick to nab one of the most\ntreacherous criminals she's come face to face with—and keep herself\nalive... \"\"A\"\" Is for Alibi \"\"B\"\" Is for Burglar \"\"C\"\" Is for Corpse \"\"D\"\" Is for\nDeadbeat \"\"E\"\" Is for Evidence \"\"F\"\" Is for Fugitive \"\"G\"\" Is for Gumshoe \"\"H\"\" Is\nfor Homicide \"\"I\"\" Is for Innocent \"\"J\"\" Is for Judgment \"\"K\"\" Is for Killer \"\"L\"\"\nis for Lawless \"\"M\"\" Is for Malice \"\"N\"\" Is for Noose \"\"O\"\" Is for Outlaw \"\"P\"\" Is\nfor Peril \"\"Q\"\" Is for Quarry \"\"R\"\" Is for Ricochet \"\"S\"\" Is for Silence \"\"T\"\" Is\nfor Trespass \"\"U\"\" Is for Undertow \"\"V\"\" Is for Vengeance \"\"W\"\" Is for Wasted \"\"X\"\"\"\r\n5659,5935,221059,Douglas Coupland,JPod,https://images.gr-assets.com/books/1316729451l/221059.jpg,3.7,13347,\"fiction, contemporary\",\"Trapped in the bureaucratic morass of JPod, on the fringes of a huge\nVancouver video-game-design company, Ethan Jarlewski and five co-workers\nwage a daily war with the demands of the company's idiotic marketing\ndepartment, while Ethan's own life is molded by Hollywood, marijuana\noperations, people smuggling, ballroom dancing, and China. Reprint.\"\r\n5660,5936,32437,Dean Koontz,The Face,https://images.gr-assets.com/books/1370732538l/32437.jpg,3.69,17267,\"horror, fiction\",\"When a Hollywood star becomes the target of a twisted killer, ex-cop Ethan\nTruman confronts the secrets of his tragic past and premonitions of his own\nimpending violent death as he struggles to solve the macabre riddles of a\nkiller.\"\r\n5661,5937,2714607,Niall Ferguson,The Ascent of Money: A Financial History of the World,https://images.gr-assets.com/books/1297236908l/2714607.jpg,3.88,15286,\"history, business\",\"Chronicles the evolution of finance from its origins in Mesopotamia to the\nmodern world's most recent upheavals, covering such topics as the stock\nmarket bubble that prompted the French Revolution and the theories behind\ncommon investment vehicles.\"\r\n5662,5938,20697471,Jim Gaffigan,Food: A Love Story,https://images.gr-assets.com/books/1419183381l/20697471.jpg,3.69,16304,\"nonfiction, memoir\",\"“What are my qualifications to write this book? None really. So why should\nyou read it? Here's why: I'm a little fat. If a thin guy were to write\nabout a love of food and eating I'd highly recommend that you do not read\nhis book.” Bacon. McDonalds. Cinnabon. Hot Pockets. Kale. Stand-up comedian\nand author Jim Gaffigan has made his career rhapsodizing over the most\ntreasured dishes of the American diet (“choking on bacon is like getting\nmurdered by your lover”) and decrying the worst offenders (“kale is the\nearly morning of foods”). Fans flocked to his New York Times bestselling\nbookDad is Fat to hear him riff on fatherhood but now, in his second book,\nhe will give them what they really crave—hundreds of pages of his thoughts\non all things culinary(ish). Insights such as: why he believes coconut\nwater was invented to get people to stop drinking coconut water, why\npretzel bread is #3 on his most important inventions of humankind (behind\nthe wheel and the computer), and the answer to the age-old question “which\nanimal is more delicious: the pig, the cow, or the bacon cheeseburger?”\"\r\n5663,5939,18079527,Laurie Halse Anderson,The Impossible Knife of Memory,https://images.gr-assets.com/books/1405786728l/18079527.jpg,3.93,20992,\"contemporary, fiction\",The Impossible Knife of MemoryLaurie Halse Anderson\r\n5664,5940,19164,\"Dante Alighieri, Robert M. Durling\",Purgatorio,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348687775l/19164.jpg,4.01,13740,\"classics, poetry\",\"The second volume of Oxford's new \"\"Divine Comedy\"\" presents the Italian text\nof the \"\"Purgatorio\"\" and, on facing pages, a new prose translation that is\nunprecedented in its accuracy, eloquence, and closeness to Dante's syntax.\"\r\n5665,5941,7277715,David Baldacci,Deliver Us From Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442260874l/7277715._SY475_.jpg,3.98,15947,\"thriller, fiction\",\"From David Baldacci-the #1 bestselling author of The Whole Truth and First\nFamily-comes his most timely, surprising, and heart-stopping thriller,\nDELIVER US FROM EVIL. Evan Waller is a monster . . . He has built a fortune\nfrom his willingness to buy and sell anything . . . and anyone. In search\nof new opportunities, Waller has just begun a new business venture: one\nthat could lead to millions of deaths all over the globe. On his trail is\nShaw, the mysterious operative from The Whole Truth, who has tracked Waller\nto Provence and must prevent him from closing his latest deal. But someone\nelse is pursuing Waller: Reggie Campion, an agent for a secret vigilante\ngroup headquartered in a musty old English estate-and she has an agenda of\nher own. Hunting the same man and unaware of each other's mission, Shaw and\nReggie will be caught in a deadly duel of nerves and wits. Hitchcockian in\nits intimate buildup of suspense and filled with the remarkable characters,\nbreathtaking plot turns, and blockbuster finale that are David Baldacci's\nhallmarks, DELIVER US FROM EVIL is one of the most gripping thrillers of\nthe year.\"\r\n5666,5942,13586743,Jonathan Tropper,One Last Thing Before I Go,https://images.gr-assets.com/books/1356593893l/13586743.jpg,3.75,13763,\"fiction, contemporary\",\"Struggling with his ex-wife's imminent marriage to a nice guy and his\nPrinceton-bound daughter's unplanned pregnancy, a bewildered Silver tackles\ndifficult family dynamics and refuses to undergo a life-saving operation.\nBy the author of the best-selling This Is Where I Leave You. Reprint.\"\r\n5667,5943,6609549,\"Julie Anne Peters, C.J. Bott\",\"By The Time You Read This, I'll Be Dead\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433120290l/6609549._SY475_.jpg,3.89,18722,\"fiction, contemporary\",\"By The Time You Read This, I'll Be DeadJulie Anne Peters, C.J. Bott\"\r\n5668,5945,21340,\"Dean Koontz, Ed Gorman, John Bedford Lloyd\",Dean Koontz's Frankenstein: City of Night ,https://images.gr-assets.com/books/1320441939l/21340.jpg,3.97,15838,\"horror, fiction\",\"Detectives Carson O'Connor and Michael Maddison must stop the engineered\nkillers of New Orleans.\"\r\n5669,5946,215540,D.J. MacHale,The Quillan Games,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197597l/215540.jpg,4.19,18296,\"fantasy, fiction\",\"Forced to participate in the Quillan Games, where winning is everything and\nlosing is death, Bobby devises a clever scheme to defeat the game masters\nand learns what it really means to be a Traveler.\"\r\n5670,5947,6820,David Mitchell,number9dream,https://images.gr-assets.com/books/1320540682l/6820.jpg,3.92,13726,\"fiction, fantasy\",\"In the wake of his sister's death and his mother's breakdown, Eiji Miyake,\na young dreamer from remote rural Japan, journeys to Tokyo to find his\nlong-lost father and comes face to face with the dark underworld of the\ngreat city and the enigmatic landscapes of his dreams. By the author of\nGhostwritten. Reprint. 25,000 first printing.\"\r\n5671,5948,3384,Douglas Coupland,Girlfriend in a Coma,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921543l/3384.jpg,3.61,14576,\"fiction, contemporary\",\"On a snowy Friday night in 1979, just hours after making love for the first\ntime, Richard's girlfriend, high school senior Karen Ann McNeil, falls into\na coma. Nine months later she gives birth to their daughter, Megan. As\nKaren sleeps through the next seventeen years, Richard and their circle of\nfriends reside in an emotional purgatory, passing through a variety of\ncareers—modeling, film special effects, medicine, demolition—before finally\nreuniting on a conspiracy-driven super-natural television series. But real\nlife grows as surreal as their TV show as Richard and his friends await\nKaren's reawakening . . . and the subsequent apocalypse.\"\r\n5672,5949,92227,Stephen King,\"The Green Mile, Part 1: The Two Dead Girls\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1228499552l/92227.jpg,4.49,21917,\"horror, fiction\",Fiction Book 1 of the Green Mile.\r\n5673,5950,16200,Mark Dunn,Ella Minnow Pea: A Novel in Letters,https://images.gr-assets.com/books/1479697890l/16200.jpg,3.84,19819,\"fiction, fantasy\",Ella Minnow Pea: A Novel in LettersMark Dunn\r\n5674,5951,938544,Steven Erikson,Toll the Hounds,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442456749l/938544._SY475_.jpg,4.33,15942,\"fantasy, fiction\",\"In Darujhistan, the city of blue fire, it is said that love and death shall\narrive dancing. It is summer and the heat is oppressive, but for the small\nround man in the faded red waistcoat, discomfiture is not just because of\nthe sun. All is not well. Dire portents plague his nights and haunt the\ncity streets like fiends of shadow. Assassins skulk in alleyways, but the\nquarry has turned and the hunters become the hunted. Hidden hands pluck the\nstrings of tyranny like a fell chorus. While the bards sing their tragic\ntales, somewhere in the distance can be heard the baying of Hounds...And in\nthe distant city of Black Coral, where rules Anomander Rake, Son of\nDarkness, ancient crimes awaken, intent on revenge. It seems Love and Death\nare indeed about to arrive...hand in hand, dancing. A thrilling, harrowing\nnovel of war, intrigue and dark, uncontrollable magic, Toll the Hounds is\nthe new chapter in Erikson's monumental series - epic fantasy at its most\nimaginative and storytelling at its most exciting.\"\r\n5675,5952,1430213,Tess Gerritsen,The Bone Garden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1183520323l/1430213._SY475_.jpg,4.02,16883,\"mystery, thriller\",Includes excerpt from: Rizzoli & Isles: Die again.\r\n5676,5953,994156,Dee Lestari,\"Supernova: Ksatria, Puteri, dan Bintang Jatuh\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1249473779l/994156.jpg,3.83,10344,\"romance, fantasy\",\"Supernova: Ksatria, Puteri, dan Bintang JatuhDee Lestari\"\r\n5677,5954,23019294,Paul Tremblay,A Head Full of Ghosts,https://images.gr-assets.com/books/1415678368l/23019294.jpg,3.82,14101,\"horror, fiction\",A Head Full of GhostsPaul Tremblay\r\n5678,5955,22889767,Gretchen Rubin,Better Than Before: Mastering the Habits of Our Everyday Lives,https://images.gr-assets.com/books/1415588203l/22889767.jpg,3.81,16550,\"nonfiction, psychology\",Better Than Before: Mastering the Habits of Our Everyday LivesGretchen Rubin\r\n5679,5956,18210706,Ben Aaronovitch,Broken Homes,https://images.gr-assets.com/books/1379380185l/18210706.jpg,4.16,10958,\"fantasy, mystery\",\"Constable Peter Grant, a magician and keeper of the flame, must discover if\na mutilated body found in Crawley is the work of a common serial killer or\nan associate of the evil wizard known as the Faceless Man.\"\r\n5680,5957,169959,Raymond E. Feist,The King's Buccaneer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389988925l/169959.jpg,3.99,17084,\"fantasy, fiction\",\"Nine years after the last riftwar, dark forces once again encroach on the\nKingdom of the Isles, and one prince must embark on a quest to face the\nevil powers\"\r\n5681,5958,16248114,\"Isabel Allende, Anne McLean\",El cuaderno de Maya,https://images.gr-assets.com/books/1356073895l/16248114.jpg,3.8,12529,\"fiction, contemporary\",\"El cuaderno de MayaIsabel Allende, Anne McLean\"\r\n5682,5959,6609764,Rita Williams-Garcia,One Crazy Summer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549051202l/6609764._SY475_.jpg,3.95,18913,\"fiction, history\",\"After travelling from Brooklyn to Oakland, California, to spend a month\nwith the mother they barely know, Delphine and her two sisters discover\nthat their mother, a dedicated poet, wants them to attend a nearby Black\nPanther summer camp.\"\r\n5683,5960,7011403,Robin Hobb,Dragon Haven,https://images.gr-assets.com/books/1263769185l/7011403.jpg,4.06,15807,\"fantasy, fiction\",Dragon HavenRobin Hobb\r\n5684,5961,18035,P.G. Wodehouse,\"Right Ho, Jeeves\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166855734l/18035._SY475_.jpg,4.31,8234,\"fiction, classics\",\"“To dive into a Wodehouse novel is to swim in some of the most elegantly\nturned phrases in the English language.”—Ben Schott Follow the adventures\nof Bertie Wooster and his gentleman’s gentleman, Jeeves, in this stunning\nnew edition of one of the greatest comic novels in the English language.\nBertie must deal with the Market Snodsbury Grammar School prize giving, the\nbroken engagement of his cousin Angela, the wooing of Madeline Bassett by\nGussie Fink-Nottle, and the resignation of Anatole, the genius chef. Will\nhe prevail? Only with the aid of Jeeves!\"\r\n5685,5962,3359940,\"Pseudonymous Bosch, Gilbert Ford\",\"If You're Reading This, It's Too Late\",https://images.gr-assets.com/books/1344268358l/3359940.jpg,4.23,18310,\"mystery, fantasy\",\"If You're Reading This, It's Too LatePseudonymous Bosch, Gilbert Ford\"\r\n5686,5963,296942,Erin Hunter,Moonrise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399845893l/296942.jpg,4.31,21311,\"fantasy, fiction\",MoonriseErin Hunter\r\n5687,5964,1316382,Jason F. Wright,The Wednesday Letters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348795996l/1316382.jpg,3.61,16776,\"fiction, romance\",\"After the deaths of their parents, three siblings return home to make\nfuneral arrangements and find boxes full of love letters that their father\nwrote to their mother each week on Wednesday, uncovering the shocking truth\nabout the past. Reprint.\"\r\n5688,5965,6371117,\"Lili St. Crow, Lilith Saintcrow\",Betrayals,https://images.gr-assets.com/books/1331244872l/6371117.jpg,4.08,24309,\"paranormal, fantasy\",\"Dru, a psychic sixteen-year-old aided by a \"\"werwulf\"\"-bitten friend, and a\nhalf-human vampire hunter, faces danger and death while searching for her\nparents' killers.\"\r\n5689,5966,13134,\"James Patterson, Howard Roughan\",You've Been Warned,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441496500l/13134._SY475_.jpg,3.52,16311,\"mystery, fiction\",\"Kristin Burns is making her way in New York City. Her photos are being\nconsidered at a major Manhattan gallery, she works by day with two\nwonderful children, and the man of her dreams is almost hers for keeps. But\njust as everything she's ever wanted is finally within reach, her life\nchanges forever--with one murderous nightmare. Kristin wakes up every\nmorning from the same chilling, unforgettable dream. And suddenly, it's\nvisiting her during the day too. As her life turns stranger by the minute,\nKristin is haunted and terrified. Is it all in her head? Or is the\nnightmare becoming her life? Kristin searches desperately for what's real\nthrough the lens of her camera, only knowing two things for sure: that no\nplace is safe and the fate of everyone she loves lies in her hands.\"\r\n5690,5967,444347,\"Blue Balliett, Brett Helquist\",Chasing Vermeer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442640375l/444347._SY475_.jpg,3.71,22167,\"mystery, fiction\",\"When seemingly unrelated and strange events start to happen and a precious\nVermeer painting disappears, eleven-year-olds Petra Andalee and Calder\nPillay combine their talents to solve an international art scandal.\"\r\n5691,5968,53834,Philip Yancey,The Jesus I Never Knew,https://images.gr-assets.com/books/1328995519l/53834.jpg,4.18,14955,\"christian, religion\",\"What happens when a respected Christian journalist decides to put his\npreconceptions aside and take a long look at the Jesus described in the\nGospels? How does the Jesus of the New Testament compare to the ''new,\nrediscovered' Jesus -- or even the Jesus we think we know so well? Best-\nselling author Phillip Yancey says, 'The Jesus I got to know in writing\nthis book is very different from the Jesus I learned about in Sunday\nschool. In some ways he is more comforting; in some ways more terrifying.'\nYancey offers a new and different perspective on the life of Christ and his\nwork -- his teaching, his miracles, his death and resurrection -- and\nultimately, who he was and why he came. Relating the gospel events to the\nworld we live in today, The Jesus I Never Knew gives a moving and\nrefreshing portrait of the central figure of history. With a willingness to\ntackle difficult questions, Yancey looks at the radical words of this\nitinerant Jewish carpenter and asks whether we are taking him seriously\nenough in our own day and age. From the manger in Bethlehem to the cross in\nJerusalem, Yancey presents a complex character who generates questions as\nwell as answers; a disturbing and exhilarating Jesus who wants to radically\ntransform your life and stretch your faith. The Jesus I Never Knew uncovers\na Jesus who is brilliant, creative, challenging, fearless, compassionate,\nunpredictable, and ultimately satisfying. This honest book will help you\ndiscover a different Jesus from the flannelgraph Sunday school figure, the\nsweetly smiling Victorian Savior, and all the cultural clichés that have\ntamed Jesus and kept him in comfortable religious boxes. According to\nYancey, 'No one who meets Jesus ever stays the same. In the end I found the\nprocess of writing this book to be a great act of faith-strengthening.\nJesus has rocked my own preconceptions and has made me ask hard questions\nabout why those of us who bear his name don't do a better job of following\nhim.'\"\r\n5692,5969,80630,Greg Iles,Turning Angel,https://images.gr-assets.com/books/1327877096l/80630.jpg,4.11,15669,\"fiction, mystery\",\"When the body of Kate Townsend turns up near the Mississippi River,\nattorney Penn Cage tangles with the dark side of his hometown of Natchez,\nMississippi, to investigate the secret world of a nearby elite high school.\"\r\n5693,5970,7743783,Alice Clayton,The Unidentified Redhead,https://images.gr-assets.com/books/1355688970l/7743783.jpg,4.04,24859,\"romance, contemporary\",\"The first in USA TODAY bestselling author Alice Clayton’s Redhead series is\na playful and erotic romance between an aspiring actress and Hollywood’s\nhottest new leading man. WATCH OUT, HOLLYWOOD! Grace Sheridan is back. Ten\nyears after discovering that looks and talent are a dime a dozen in Los\nAngeles, she’s wriggling into a pair of badass jeans and ready to show the\nfilm industry that there’s way more to her than just a head of gorgeous red\ncurls. And Hollywood’s newest Brit super-hunk Jack Hamilton certainly sees\na lot to like. Grace is trying to restrain herself from jumping a man who\nis nearly a decade her junior, but Jack is making it clear that he\npersonally has zero problems with that idea. While Grace and Jack are still\nswapping innuendo-loaded quips and text sex though, the paparazzi have\ncaught up with them, headlining the “unidentified redhead” who’s been\nphotographed trysting at a restaurant with the heartthrob of the year. Now\nGrace is in stuck in a double bind. She’s head over heels in lust with\nJack, but there’s her own career to think of as well. A sizzling romance\nwith the newest “it” boy may garner her industry attention . . . but is it\nthe kind of attention she’s always dreamed of?\"\r\n5694,5972,20413,\"Robert Louis Stevenson, Tasha Tudor\",A Child's Garden of Verses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401644174l/20413.jpg,4.3,20354,\"poetry, classics\",\"Here is a delightful look at childhood, written by master poet and\nstoryteller Robert Louis Stevenson. In this collection of sixty-six poems,\nStevenson recalls the joys of his childhood, from sailing boats down a\nriver, to waiting for the lamplighter, to sailing off to foreign lands in\nhis imagination. Tasha Tudor's watercolor paintings evoke a simpler time in\nthe past, and celebrate two of the things she loves most -- children and\nnature. Her talents are the perfect match for these inspiring poems, making\nthis a handsome gift edition that will be cherished by families for\ngenerations.\"\r\n5695,5973,9914,Bret Easton Ellis,The Informers,https://images.gr-assets.com/books/1374684746l/9914.jpg,3.39,12898,\"fiction, contemporary\",\"The mores, morals, and institutions of modern life are revealed through the\nstory of one family living in the self-delusional, dream-factory world of\nLos Angeles. By the author of American Psycho. 50,000 first printing. Tour.\"\r\n5696,5974,22054340,Kiera Cass,The Queen,https://images.gr-assets.com/books/1399581012l/22054340.jpg,3.93,22362,\"romance, fantasy\",\"The new enovella from Number One New York Times bestselling author Kiera\nCass – set in the Selection world.\"\r\n5697,5975,7202829,James Rollins,The Devil Colony,https://images.gr-assets.com/books/1264522557l/7202829.jpg,4.17,16101,\"thriller, fiction\",The Devil ColonyJames Rollins\r\n5698,5976,7469664,\"Robert Kirkman, Charlie Adlard\",The Walking Dead Volume 12,https://images.gr-assets.com/books/1279748761l/7469664.jpg,4.34,16558,\"horror, comics\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n5699,5977,20587777,Jane Smiley,Some Luck,https://images.gr-assets.com/books/1413128987l/20587777.jpg,3.61,12644,\"fiction, contemporary\",Some LuckJane Smiley\r\n5700,5978,72657,\"Paulo Freire, Myra Bergman Ramos, Donaldo Macedo, Richard Shaull\",Pedagogia do Oprimido,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180018l/72657.jpg,4.25,16401,\"philosophy, nonfiction\",\"First published in Portuguese in 1968, Pedagogy of the Oppressed was\ntranslated and published in English in 1970. Paulo Freire's work has helped\nto empower countless people throughout the world and has taken on special\nurgency in the United States and Western Europe, where the creation of a\npermanent underclass among the underprivileged and minorities in cities and\nurban centers is ongoing. This 50th anniversary edition includes an updated\nintroduction by Donaldo Macedo, a new afterword by Ira Shor and interviews\nwith Marina Aparicio Barber�n, Noam Chomsky, Ram�n Flecha, Gustavo\nFischman, Ronald David Glass, Valerie Kinloch, Peter Mayo, Peter McLaren\nand Margo Okazawa-Rey to inspire a new generation of educators, students,\nand general readers for years to come.\"\r\n5701,5979,17262540,Ian Doescher,\"William Shakespeare's Star Wars: Verily, a New Hope\",https://images.gr-assets.com/books/1411696453l/17262540.jpg,3.94,14806,\"fiction, fantasy\",\"A retelling of Star wars in the style of Shakespeare, in which a wise Jedi\nknight, an evil Sith lord, a beautiful captive princess, and a young hero\ncoming of age reflect the valor and villainy of the Bard's greatest plays.\"\r\n5702,5980,26085,\"Brad Meltzer, Rags Morales, Michael Bair, Joss Whedon\",Identity Crisis,https://images.gr-assets.com/books/1327948044l/26085.jpg,4.03,16744,\"comics, fiction\",\"Identity CrisisBrad Meltzer, Rags Morales, Michael Bair, Joss Whedon\"\r\n5703,5981,10866624,Sarah Rees Brennan,Unspoken,https://images.gr-assets.com/books/1333397426l/10866624.jpg,3.85,22927,\"fantasy, paranormal\",\"Loving a boy she has never met but with whom she has communicated\ntelepathically all of her life, Kami Glass investigates screams heard in\nthe woods and sees lights in an empty manor house only to discover that a\nmurderer is hiding there.\"\r\n5704,5982,112520,\"Arthur C. Clarke, Gentry Lee\",Rama II,https://images.gr-assets.com/books/1375814981l/112520.jpg,3.66,15350,\"fiction, science\",\"In the sequel to \"\"Rendezvous with Rama,\"\" a second Raman spacecraft is\ndiscovered approaching Earth in 2196, an event of potentially devastating\nconsequences for humankind\"\r\n5705,5983,28859,José Saramago,O Evangelho segundo Jesus Cristo,https://images.gr-assets.com/books/1328196306l/28859.jpg,4.26,11301,\"fiction, religion\",\"\"\"O filho de José e de Maria nasceu como todos os filhos dos homens, sujo de\nsangue de sua mãe, viscoso das suas mucosidades e sofrendo em silêncio.\nChorou porque o fizeram chorar, e chorará por esse mesmo e único motivo.\"\"\nTodos conhecem a história do filho de José e Maria, mas nesta narrativa ela\nganha tanta beleza e tanta pungência que é como se estivesse sendo contada\npela primeira vez. Nas palavras de José Paulo Paes: \"\"Interessado menos na\nonipotência do divino que na frágil mas tenaz resistência do humano, a arte\nmagistral de Saramago excele no dar corpo às preliminares e à culminância\ndo drama da Paixão\"\".\"\r\n5706,5984,13477819,\"Lemony Snicket, Seth\",\"\"\"Who Could That Be at This Hour?\"\"\",https://images.gr-assets.com/books/1333060600l/13477819.jpg,3.83,17497,\"mystery, fiction\",\"\"\"Who Could That Be at This Hour?\"\"Lemony Snicket, Seth\"\r\n5707,5985,11765920,Kelley Armstrong,The Calling,https://images.gr-assets.com/books/1478986621l/11765920.jpg,4.1,25930,\"paranormal, fantasy\",The CallingKelley Armstrong\r\n5708,5986,10450750,\"Bryan Konietzko, Michael Dante DiMartino, Aaron Ehasz, Alison Wilgus, Amy Kim Ganter, Brian Ralph, Corey Lewis, Dave Roman, Elsa Garagarza, Ethan Spaulding, Frank Pittarese, Gurihiru, J. Torres, Joaquim Dos Santos, Johane Matte, John O'Bryan, Joshua Hamilton, Justin Ridge, Kaite Mattila, May Chan, Rawles Marie Lumumba, Reagan Lodge, Tim Hedrick, Tom McWeeney\",Avatar The Last Airbender: The Lost Adventures,https://images.gr-assets.com/books/1297596036l/10450750.jpg,4.41,14288,\"comics, fantasy\",\"This detailed and highly covetable hardback volume takes you behind the\nscenes of the second season of The Legend of Korra animated series\n(Nickelodeon). Featuring explanation, commentary and production notes from\nthe show's creators Bryan Konietzko and Michael Dante Dimartino, who were\nalso the creative engine behind the phenomenally successful Avatar: The\nLast Airbender series, this is a privileged glimpse into another world.\"\r\n5709,5988,7911,Margaret Sidney,Five Little Peppers and How They Grew,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924472l/7911.jpg,4.03,19780,\"classics, fiction\",Five Little Peppers and How They GrewMargaret Sidney\r\n5710,5989,3697927,Jessica Day George,Princess of the Midnight Ball,https://images.gr-assets.com/books/1312063284l/3697927.jpg,3.92,26804,\"fantasy, romance\",\"A retelling of the tale of twelve princesses who wear out their shoes\ndancing every night, and of Galen, a former soldier now working in the\nking's gardens, who follows them in hopes of breaking the curse.\"\r\n5711,5990,8239301,\"Radwa Ashour, رضوى عاشور\",الطنطورية ,https://images.gr-assets.com/books/1314481218l/8239301.jpg,4.32,13931,\"history, fiction\",\"الطنطورية (نسبة الى قرية الطنطورة الواقعة على الساحل الفلسطيني جنوب حيفا) ،\nتعرضت هذه القرية عام 1948 لمذبحة على يد العصابات الصهيونية ، تتناول الرواية\nهذه المذبحة كمنطلق و حدث من الاحداث الرئيسية ، لتتابع حياة عائلة اقتلعت من\nالقرية وحياتها عبر ما يقرب من نصف قرن إلى الآن مرورًا بتجربة اللجوء في\nلبنان. بطلة الرواية هي امرأة من القرية يتابع القارئ حياتها منذ الصبا الى\nالشيخوخة. الرواية تمزج في سطورها بين الوقائع التاريخية من ناحية و الإبداع\nالأدبي من ناحية أخرى.\"\r\n5712,5991,334818,Barbara Cooney,Miss Rumphius,https://images.gr-assets.com/books/1281468926l/334818.jpg,4.45,20403,\"fiction, classics\",Miss RumphiusBarbara Cooney\r\n5713,5992,762563,Jim Bouton,Ball Four,https://images.gr-assets.com/books/1391414699l/762563.jpg,3.99,12805,\"nonfiction, biography\",\"The diary of a major league baseball player during one season reveals the\ngame's venal and foolish aspects\"\r\n5714,5993,21329,\"Bill Willingham, Mark Buckingham, Steve Leialoha, James Jean\",\"Fables, Volume 3: Storybook Love\",https://images.gr-assets.com/books/1363682851l/21329.jpg,4.15,24730,\"fantasy, comics\",\"Romance blooms among the Fables even though they are forced to live in\nmundane reality.\"\r\n5715,5994,56899,Carlos Fuentes,Aura,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389917952l/56899.jpg,3.8,11788,\"fiction, classics\",\"Historian Felipe Montero is employed by an aged widow to edit he husband's\nmemoirs and falls in love with her niece in this novella of horror and\nbeauty.\"\r\n5716,5995,31312,Harriet Lerner,The Dance of Anger: A Woman's Guide to Changing the Patterns of Intimate Relationships,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388261597l/31312.jpg,4.02,14640,\"psychology, nonfiction\",The Dance of Anger: A Woman's Guide to Changing the Patterns of Intimate RelationshipsHarriet Lerner\r\n5717,5997,7129588,Jennifer Echols,Forget You,https://images.gr-assets.com/books/1311064362l/7129588.jpg,3.79,24334,\"romance, contemporary\",\"WHY CAN’T YOU CHOOSE WHAT YOU FORGET . . . AND WHAT YOU REMEMBER? There’s a\nlot Zoey would like to forget. Like how her father has knocked up his\ntwenty-four- year old girlfriend. Like Zoey’s fear that the whole town will\nfind out about her mom’s nervous breakdown. Like darkly handsome bad boy\nDoug taunting her at school. Feeling like her life is about to become a\ncomplete mess, Zoey fights back the only way she knows how, using her\nfamous attention to detail to make sure she’s the perfect daughter, the\nperfect student, and the perfect girlfriend to ultra-popular football\nplayer Brandon. But then Zoey is in a car crash, and the next day there’s\none thing she can’t remember at all—the entire night before. Did she go\nparking with Brandon, like she planned? And if so, why does it seem like\nBrandon is avoiding her? And why is Doug—of all people— suddenly acting as\nif something significant happened between the two of them? Zoey dimly\nremembers Doug pulling her from the wreck, but he keeps referring to what\nhappened that night as if it was more, and it terrifies Zoey to admit how\nmuch is a blank to her. Controlled, meticulous Zoey is quickly losing her\ngrip on the all-important details of her life—a life that seems strangely\nempty of Brandon, and strangely full of Doug.\"\r\n5718,5999,21796,William Goldman,Marathon Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167323623l/21796._SY475_.jpg,4.11,15659,\"fiction, thriller\",\"In a classic thriller that did for dentists what Psycho did for showers,\nrunner Tom \"\"Babe\"\" Levy races toward his goals of athletic and academic\nexcellence, until an unexpected visit from his brother throws him into a\nworld of terror, treachery, and murder. Reprint.\"\r\n5719,6000,3870943,Julie Klassen,The Apothecary's Daughter,https://images.gr-assets.com/books/1325356997l/3870943.jpg,3.79,15782,\"romance, fiction\",The Apothecary's DaughterJulie Klassen\r\n5720,6001,16047244,Michelle A. Valentine,Rock the Heart,https://images.gr-assets.com/books/1403549370l/16047244.jpg,4.01,28776,\"romance, music\",\"For the last four years, good girl Lane has regretted breaking up with Noel\nFalcon. She thought she was sensible when she told him his dreams of being\na rock star would get him nowhere, but now that he's a rock god and her\ncareer is stagnant, she realizes just how wrong she was. When Noel hires\nthe marketing company where Lane is an intern, she's forced to see him\nagain. If she wants to land her dream job as executive within the company,\nshe has to win him over and secure his account. Too bad Noel is still\npissed at her for breaking his heart. When Lane's company flies her to a\nBlack Falcon concert to gain Noel's attention, emotions run high the moment\nshe sees him and realizes she's far from over him. But Noel's countless\ntrysts with groupies and his cocky attitude make Lane believe he isn't the\nsame guy she once loved-now he seems to only want her body. Then after Lane\ndiscloses she needs him to procure a job, Noel proves he's a changed man by\nforcing her to go on the road with him in order to get it. After Lane\nreluctantly takes Noel up on his offer, she becomes willing to do whatever\nit takes to keep him satisfied, even if it means succumbing to his\nseductive ways. Lane soon finds deception is a dangerous game and she's not\nthe only one playing.\"\r\n5721,6002,76659,Piers Anthony,Bearing an Hourglass,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923153l/76659.jpg,3.94,18817,\"fantasy, fiction\",\"Norton, grief-stricken over the death of his child and the suicide of his\nbeloved, volunteers to become the Incarnation of Time and finds himself\nenmeshed in Satan's foul plot to destroy all that is good.\"\r\n5722,6003,65217,\"Claire Huchet Bishop, Kurt Wiese\",The Five Chinese Brothers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432233658l/65217._SX318_.jpg,4.18,20189,\"fiction, classics\",\"Five brothers who look just alike outwit the executioner by using their\nextraordinary individual talents.\"\r\n5723,6004,9712492,Jamie McGuire,Providence,https://images.gr-assets.com/books/1358276101l/9712492.jpg,4,23568,\"paranormal, romance\",ProvidenceJamie McGuire\r\n5724,6005,15447,Piers Anthony,\"The Source of Magic (Xanth, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544290l/15447.jpg,3.86,19149,\"fantasy, fiction\",\"The Source of Magic (Xanth, #2)Piers Anthony\"\r\n5725,6006,94804,Arnold Lobel,Days with Frog and Toad,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389759833l/94804.jpg,4.24,15912,\"fiction, classics\",\"Frog and Toad enjoy spending their days together. They fly kites, celebrate\nToad's birthday, and share the shivers when Frog tells a scary story. Most\nof all, they have fun together—every day of the year.\"\r\n5726,6007,40470,Cormac McCarthy,Cities of the Plain ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581254344l/40470.jpg,4.07,14638,\"fiction, contemporary\",\"The conclusion of the Border trilogy describes the friendship of John Grady\nCole and Billy Parham, two cowboys working on a New Mexico ranch in the\n1950s\"\r\n5727,6008,9305362,C.S. Pacat,Captive Prince,https://images.gr-assets.com/books/1356028113l/9305362.jpg,3.98,23580,\"fantasy, romance\",\"Damen is a warrior hero to his people, and the rightful heir to the throne\nof Akielos. But when his half-brother seizes power, Damien is captured,\nstripped of his identity and sent to serve the prince of an enemy nation as\na pleasure slave. For Damen, there is just one rule: never, ever reveal his\ntrue identity. Because the one man Damen needs is the one man who has more\nreason to hate him than anyone else. Bound to thrill long term online fans\nof the Captive Prince trilogy, this volume contains the original story in\nfull alongside exclusive bonus short stories.\"\r\n5728,6009,40159,Megan Whalen Turner,The King of Attolia,https://images.gr-assets.com/books/1293505327l/40159.jpg,4.37,22724,\"fantasy, fiction\",The King of AttoliaMegan Whalen Turner\r\n5729,6010,953260,\"Ridley Pearson, David Frankland\",The Kingdom Keepers,https://images.gr-assets.com/books/1275199267l/953260.jpg,3.91,18193,\"fantasy, fiction\",\"Finn Whitman, an Orlando teen, is hired to be hologramed as a Disney World\npark \"\"guide\"\" but soon finds himself being transported into the Magic\nKingdom in the dead of night to help fight a group of Disney villains, led\nby Maleficent, who want to take over Disney World--and maybe more.\"\r\n5730,6011,5548,Richard Feynman,What Do You Care What Other People Think? Further Adventures of a Curious Character,https://images.gr-assets.com/books/1297913068l/5548.jpg,4.28,14948,\"science, biography\",\"This two-part profile of the late Nobel Prize-winning scientist reveals the\ninfluence of his father and his first wife on his life and discusses his\nrole in the investigation of the \"\"Challenger\"\" explosion.\"\r\n5731,6012,7146335,Paul Murray,Skippy Dies,https://images.gr-assets.com/books/1301970939l/7146335.jpg,3.72,14619,\"fiction, contemporary\",Skippy DiesPaul Murray\r\n5732,6013,77735,David Weber,The Honor of the Queen,https://images.gr-assets.com/books/1304286399l/77735.jpg,4.21,17274,\"fiction, ebooks\",Science fiction roman.\r\n5733,6014,805023,V.C. Andrews,My Sweet Audrina,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178550284l/805023.jpg,3.92,18549,\"fiction, mystery\",My Sweet AudrinaV.C. Andrews\r\n5734,6015,22027459,A.G. Riddle,The Atlantis World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1398907595l/22027459.jpg,3.93,9240,\"fiction, thriller\",The Atlantis WorldA.G. Riddle\r\n5735,6016,8635145,Jessica Shirvington,Embrace,https://images.gr-assets.com/books/1284130161l/8635145.jpg,4.01,19343,\"paranormal, fantasy\",EmbraceJessica Shirvington\r\n5736,6017,192892,Dorothy L. Sayers,Unnatural Death,https://images.gr-assets.com/books/1316244142l/192892.jpg,4.11,17742,\"mystery, fiction\",\"The wealthy old woman was dead -- a trifle sooner than expected. The\nintricate trail of horror and senseless murder led from a beautiful\nhampshire village to a fashionable London flat and a deliberate test of\namour -- staged by the debonair sleuth Lord Peter Wimsey. \"\"Here the modern\ndetective story begins to come to its own; and all the historical\nimportance aside, it remains an absorbing and charming story today.\"\"\"\r\n5737,6018,92250,Tony Kushner,Angels in America: A Gay Fantasia on National Themes: Millennium Approaches (Part One),https://images.gr-assets.com/books/1354209439l/92250.jpg,4.27,16814,\"fiction, classics\",\"A revised and complete edition of this modern classic, featuring a new\nforeword from author Tony Kushner.\"\r\n5738,6019,1617875,Dorothy Koomson,My Best Friend's Girl,https://images.gr-assets.com/books/1363730538l/1617875.jpg,4.02,14811,\"fiction, romance\",My Best Friend's GirlDorothy Koomson\r\n5739,6020,330721,Lisa Kleypas,Dreaming of You ,https://images.gr-assets.com/books/1443223862l/330721.jpg,4.22,24790,\"romance, fiction\",\"She stood at danger′s threshold-- then love beckoned her in. In the shelter\nof her country cottage, Sara Feilding puts pen to paper to create dreams.\nBut curiosity has enticed the prim, well-bred gentlewoman out of her safe\nhaven--and into Derek Craven′s dangerous world. A handsome, tough and\ntenacious Cockney, he rose from, poverty to become lord of London′s most\nexclusive gambling house--a struggle that has left Derek Craven fabulously\nwealthy, but hardened and suspicious. And now duty demands he allow Sara\nFielding into his world--with her impeccable manners and her infuriating\ninnocence. But here, in a perilous shadow-realm of ever-shifting fortunes,\neven a proper \"\"mouse\"\" can be transformed into a breathtaking enchantress--\nand a world-weary gambler can be shaken to his cynical core by the power of\npassion. . .and the promise of love. \"\"A Real Joy . . . Hard To Put Down\"\" --\nKathleen E. Woodiwiss \"\"Wonderfully Refreshing . . . I Enjoyed It From\nBeggining To End.\"\" -- Johanna Lindsey \"\"Lisa Kleypas is more than just a\nfine writer of rich and passionate historical romances, she′s a genuine\nphenomenon.\"\" -- Heart to Heart\"\r\n5740,6021,8725,Ruth Reichl,Comfort Me with Apples: More Adventures at the Table,https://images.gr-assets.com/books/1339885200l/8725.jpg,4.02,16021,\"memoir, nonfiction\",\"Picking up where \"\"Tender at the Bone\"\" leaves off, \"\"Comfort Me with Apples\"\"\nrecounts Reichl's transformation from chef to food writer, a process that\nled her through restaurants from Bangkok to Paris to Los Angeles and\nbrought lessons in life, love, and food.\"\r\n5741,6022,138134,John Keats,John Keats : The Complete Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347472201l/138134.jpg,4.24,17101,\"poetry, classics\",\"Complete poems of John Keats including a dictionary of classical names and\nextensive notes\"\r\n5742,6023,129621,Judith McNaught,Almost Heaven,https://images.gr-assets.com/books/1351327172l/129621.jpg,4.33,19921,\"romance, fiction\",\"Beautiful but impoverished orphan Elizabeth Cameron is forced to choose\nbetween four unlikely suitors and finds herself drawn against her will to\nIan Thornton, a handsome and daring rogue who views her as a frivolous\nflirt. Reissue.\"\r\n5743,6024,823411,Joseph Boyden,Three Day Road,https://images.gr-assets.com/books/1327905456l/823411.jpg,4.31,14563,\"fiction, history\",\"The nephew of a Canadian Oji-Cree who is the last of a line of healers and\ndiviners, Cree reserve student Xavier enlists in the military during World\nWar I, a conflict throughout which he and his friend, Elijah, are\nmarginalized for their appearances, their culturally enhanced marksmanship,\nand their disparate views of the war. Reprint. 75,000 first printing.\"\r\n5744,6025,30005,Dashiell Hammett,Red Harvest,https://images.gr-assets.com/books/1320423692l/30005.jpg,4,15636,\"mystery, fiction\",\"When a hard-fighting detective arrives in Personville and finds that his\nclient has been murdered, he decides to investigate local gangland\nactivities\"\r\n5745,6026,17860217,\"J. Lynn, Jennifer L. Armentrout\",Trust in Me,https://images.gr-assets.com/books/1493755741l/17860217.jpg,4.27,27675,\"romance, contemporary\",\"It's Wait for You as you've never seen it. Trust in Me lets you in on Cam's\nside of the #1 New York Times bestselling story. Cameron Hamilton is used\nto getting what he wants, especially when it comes to women. But when Avery\nMorgansten comes crashing into his life—literally—he finally meets the one\nperson who can resist his soulful baby blues. But Cam's not ready to give\nup. He can't get the feisty and intriguing girl out of his head. Avery has\nsecrets, secrets that keep her from admitting the feelings Cam knows she\nhas for him. Will persistence (and some delicious homemade cookies) help\nhim break down her barriers and gain her trust? Or will he be shut out of\nAvery's life, losing his first real shot at the kind of love that lasts\nforever?\"\r\n5746,6027,204041,\"Masashi Kishimoto, Frances Wall\",NARUTO -ナルト- 巻ノ十一 ,https://images.gr-assets.com/books/1435525208l/204041.jpg,4.5,15214,\"fantasy, comics\",\"The world’s most popular ninja comic! Naruto is a young shinobi with an\nincorrigible knack for mischief. He’s got a wild sense of humor, but Naruto\nis completely serious about his mission to be the world’s greatest ninja!\nNow preparing for the finals of the Chûnin Selection Exams, Naruto studies\nwith naughty new mentor Jiraiya and struggles to harness the power of the\nNine-Tailed Fox chakra locked within him. Meanwhile, other ninja villages\nare forming secret alliances against Konohagakure…\"\r\n5747,6028,9509289,David Baldacci,One Summer,https://images.gr-assets.com/books/1344267627l/9509289.jpg,3.72,16767,\"fiction, romance\",One SummerDavid Baldacci\r\n5748,6029,350684,Judith McNaught,\"Whitney, My Love\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436734164l/350684._SY475_.jpg,4.19,23290,\"fiction, romance\",\"Outraged when her bankrupt father bargains her away to the arrogant Duke of\nClaymore, Whitney Stone, a hot-blooded hoyden, is determined to remain true\nto her childhood love, Paul.\"\r\n5749,6030,785454,Khushwant Singh,Train to Pakistan,https://images.gr-assets.com/books/1342220976l/785454.jpg,3.85,12439,\"fiction, history\",\"When Pakistan is partitioned from India, the Hindus and Muslims of a\nPunjabi village are plunged into conflict.\"\r\n5750,6031,8407173,Craig Silvey,Jasper Jones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1275886753l/8407173.jpg,4.06,12680,\"mystery, fiction\",\"In small-town Australia, teens Jasper and Charlie form an unlikely\nfriendship when one asks the other to help him cover up a murder until they\ncan prove who is responsible.\"\r\n5751,6032,1963638,Michael A. Singer,The Untethered Soul,https://images.gr-assets.com/books/1354898395l/1963638.jpg,4.27,14688,\"spirituality, nonfiction\",The Untethered SoulMichael A. Singer\r\n5752,6033,20893314,Marlon James,A Brief History of Seven Killings,https://images.gr-assets.com/books/1399045083l/20893314.jpg,3.86,13578,\"fiction, crime\",\"A tale inspired by the 1976 attempted assassination of Bob Marley spans\ndecades and continents to explore the experiences of journalists, drug\ndealers, killers and ghosts against a backdrop of period social and\npolitical turmoil. By the award-winning author of The Book of Night Women.\n25,000 first printing.\"\r\n5753,6034,6373717,Nina LaCour,Hold Still,https://images.gr-assets.com/books/1394240099l/6373717.jpg,3.99,16238,\"contemporary, fiction\",\"A beautiful new edition of the stunning debut novel by Nina LaCour, award-\nwinning author of We Are Okay \"\"Hold Still may be the truest depiction of\nthe aching, gaping hole left in the wake of a suicide that I've ever read.\nA haunting and hopeful book about loss, love, and redemption.\"\" - Gayle\nForman, #1 bestselling author of If I Stay and I Have Lost My Way That\nnight Ingrid told Caitlin, I'll go wherever you go. But by dawn Ingrid, and\nher promise, were gone. Ingrid's suicide immobilizes Caitlin, leaving her\nunsure of her place in a new life she hardly recognizes. A life without the\nart, the laughter, the music, and the joy that she shared with her best\nfriend.... But Ingrid left something behind. In words and drawings, Ingrid\ndocumented a painful farewell in her journal. Journeying through Ingrid's\nfinal days, Caitlin fights back through unspeakable loss to find renewed\nhope. Hold Still is the indelible debut that launched Nina LaCour, the\naward-winning author of We Are Okay. LaCour's breakthrough novel brings the\nchanging seasons of Caitlin's first year without Ingrid to the page with\nindelible emotion and honesty. Includes an all-new essay from the author to\ncommemorate 10 years in print!\"\r\n5754,6035,107772,Julie Garwood,The Prize,https://images.gr-assets.com/books/1304789713l/107772.jpg,4.22,21157,\"romance, fiction\",\"Forced to choose a husband from among a group of Norman nobles, Nicholaa--a\nSaxon held captive in William the Conqueror's court--chooses the fierce\nwarrior Royce, a man with a tender heart\"\r\n5755,6036,13525938,Jami Attenberg,The Middlesteins,https://images.gr-assets.com/books/1339727222l/13525938.jpg,3.42,15075,\"fiction, contemporary\",The MiddlesteinsJami Attenberg\r\n5756,6037,18736925,\"Thomas Piketty, Arthur Goldhammer\",Le capital au XXIe siècle ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390111547l/18736925.jpg,4.01,13045,\"history, nonfiction\",\"The main driver of inequality—returns on capital that exceed the rate of\neconomic growth—is again threatening to generate extreme discontent and\nundermine democratic values. Thomas Piketty’s findings in this ambitious,\noriginal, rigorous work will transform debate and set the agenda for the\nnext generation of thought about wealth and inequality.\"\r\n5757,6038,202146,James D. Bradley,Flyboys: A True Story of Courage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442195112l/202146._SY475_.jpg,4.15,14011,\"history, nonfiction\",\"The classic New York Times bestselling story of heroism and sacrifice--by\nthe author of Flags of Our Fathers, The Imperial Cruise, and The China\nMirage. This acclaimed bestseller brilliantly illuminates a hidden piece of\nWorld War II history as it tells the harrowing true story of nine American\nairmen shot down in the Pacific. One of them, George H. W. Bush, was\nmiraculously rescued. What happened to the other eight remained a secret\nfor almost 60 years. After the war, the American and Japanese governments\nconspired to cover up the shocking truth, and not even the families of the\nairmen were informed of what happened to their sons. Their fate remained a\nmystery--until now. FLYBOYS is a tale of courage and daring, of war and\ndeath, of men and hope. It will make you proud and it will break your\nheart.\"\r\n5758,6039,782854,\"Kay Thompson, Hilary Knight\",Eloise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348009989l/782854.jpg,4.2,19765,\"fiction, classics\",\"Six-year-old Eloise lives with her mother and her English nanny at the\nPlaza Hotel, where she finds many opportunities to indulge in mischief\"\r\n5759,6040,13555073,Jonathan Stroud,The Screaming Staircase,https://images.gr-assets.com/books/1369670906l/13555073.jpg,4.19,15446,\"fantasy, mystery\",\"A sinister Problem has occurred in London: all nature of ghosts, haunts,\nspirits, and specters are appearing throughout the city, and they aren't\nexactly friendly. Only young people have the psychic abilities required to\nsee-and eradicate-these supernatural foes. Many different Psychic Detection\nAgencies have cropped up to handle the dangerous work, and they are in\nfierce competition for business. In The Screaming Staircase, the plucky and\ntalented Lucy Carlyle teams up with Anthony Lockwood, the charismatic\nleader of Lockwood & Co, a small agency that runs independent of any adult\nsupervision. After an assignment leads to both a grisly discovery and a\ndisastrous end, Lucy, Anthony, and their sarcastic colleague, George, are\nforced to take part in the perilous investigation of Combe Carey Hall, one\nof the most haunted houses in England. Will Lockwood & Co. survive the\nHall's legendary Screaming Staircase and Red Room to see another day?\nReaders who enjoyed the action, suspense, and humor in Jonathan Stroud's\ninternationally best-selling Bartimaeus books will be delighted to find the\nsame ingredients, combined with deliciously creepy scares, in his thrilling\nand chilling Lockwood & Co. series. Praise for Screaming Staircase, The\n\"\"This story will keep you reading late into the night, but you'll want to\nleave the lights on. Stroud is a genius at inventing an utterly believable\nworld which is very much like ours, but so creepily different. Put The\nScreaming Staircase on your 'need to read' list!\"\" -Rick Riordan \"\"A pleasure\nfrom tip to tail, this is the book you hand the advanced readers that claim\nthey'd rather read Paradise Lost than Harry Potter. Smart as a whip, funny,\nwitty, and honestly frightening at times, Stroud lets loose and gives\nreaders exactly what they want. Ghosts, kids on their own without adult\nsupervision, and loads of delicious cookies.\"\" -Elizabeth Bird, School\nLibrary Journal \"\"Stroud shows his customary flair for blending deadpan\nhumor with thrilling action, and the fiery interplay among the three agents\nof Lockwood & Co. invigorates the story (along with no shortage of creepy\nmoments).\"\" -Publishers Weekly \"\"Three young ghost trappers take on deadly\nwraiths and solve an old murder case in the bargain to kick off Stroud's\nnew post-Bartimaeus series. The work is fraught with peril, not only\nbecause a ghost's merest touch is generally fatal, but also, as it turns\nout, none of the three is particularly good at careful planning and\npreparation. A heartily satisfying string of entertaining near-\ncatastrophes, replete with narrow squeaks and spectral howls.\"\" -Kirkus\nReviews \"\"...Stroud writes for a younger audience in book one of the\nLockwood & Co. series and delivers some chilling scenes along the way.\"\"\n-Booklist\"\r\n5760,6041,18594633,Herman Koch,Zomerhuis met zwembad,https://images.gr-assets.com/books/1384734826l/18594633.jpg,3.39,10230,\"fiction, mystery\",Zomerhuis met zwembadHerman Koch\r\n5761,6042,110090,Peter Carey,True History of the Kelly Gang,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440509588l/110090._SY475_.jpg,3.8,14347,\"fiction, history\",\"Ned Kelly, the legendary nineteenth-century Australian folk-hero, describes\nhow he, his brother, and two friends led authorities on a twenty-month\nmanhunt, marked by widespread populist support, before his capture and\nexecution.\"\r\n5762,6043,702539,Elmore Leonard,Get Shorty,https://images.gr-assets.com/books/1330673682l/702539.jpg,3.95,15747,\"fiction, crime\",Get ShortyElmore Leonard\r\n5763,6044,17302495,K.A. Tucker,One Tiny Lie,https://images.gr-assets.com/books/1380903726l/17302495.jpg,4.3,27048,\"contemporary, romance\",\"Livie Cleary faces a new set of challenges as she navigates freshman year\nat Princeton, a time involving wild parties and the gorgeous rowing team\ncaptain who is everything she doesn't want in a guy--or so she thinks.\nOriginal.\"\r\n5764,6045,113441,\"Nathanael West, Alfred Kazin\",The Day of the Locust,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387706380l/113441.jpg,3.78,15798,\"fiction, classics\",\"The Day of the Locust is a novel about Hollywood and its corrupting touch,\nabout the American dream turned into a sun-drenched California nightmare.\nNathaniel West's Hollywood is not the glamorous \"\"home of the stars\"\" but a\nseedy world of little people, some hopeful, some desparing, all twisted by\ntheir by their own desires-from the ironically romantic artist narrator to\na macho movie cowboy, a middle-aged innocent from America's heartland, and\nthe hard-as-nails call girl would-be-star whom they all lust after. An\nunforgettable portrayal of a world that mocks the real and rewards the\nsham, turns its back on love to plunge into empty sex, and breeds a savage\nviolence that is its own undoing, this novel stands as a classic indictment\nof all that is most extravagant and uncontrolled in American life.\"\r\n5765,6046,98685,James Gleick,Genius: The Life and Science of Richard Feynman,https://images.gr-assets.com/books/1320409497l/98685.jpg,4.16,14853,\"biography, science\",\"A biography of the flamboyant Nobel Prize-winning scientist describes how\nFeynman cracked safes, played the bongos, studied the behavior of Jell-O,\nand conducted experiments in seduction, all in the name of science.\nReprint. 125,000 first printing. $50,000 ad/promo. Tour.\"\r\n5766,6047,4618728,Alan Brennert,Honolulu,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442806142l/4618728._SY475_.jpg,4.02,15663,\"fiction, history\",\"From the bestselling author of the \"\"dazzling historical saga\"\" (The\nWashington Post), Moloka'i, comes the irresistible story of a young\nimmigrant bride in a ramshackle town that becomes a great modern city \"\"In\nKorea in those days, newborn girls were not deemed important enough to be\ngraced with formal names, but were instead given nicknames, which often\nreflected the parents' feelings on the birth of a daughter: I knew a girl\nnamed Anger, and another called Pity. As for me, my parents named me\nRegret.\"\" Honolulu is the rich, unforgettable story of a young \"\"picture\nbride\"\" who journeys to Hawai'i in 1914 in search of a better life. Instead\nof the affluent young husband and chance at an education that she has been\npromised, she is quickly married off to a poor, embittered laborer who\ntakes his frustrations out on his new wife. Renaming herself Jin, she makes\nher own way in this strange land, finding both opportunity and prejudice.\nWith the help of three of her fellow picture brides, Jin prospers along\nwith her adopted city, now growing from a small territorial capital into\nthe great multicultural city it is today. But paradise has its dark side,\nwhether it's the daily struggle for survival in Honolulu's tenements, or a\ncrime that will become the most infamous in the islands' history... With\nits passionate knowledge of people and places in Hawai'i far off the\ntourist track, Honolulu is most of all the spellbinding tale of four women\nin a new world, united by dreams, disappointment, sacrifices, and\nfriendship.\"\r\n5767,6048,172764,Keri Arthur,Full Moon Rising,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388347803l/172764.jpg,3.89,25813,\"paranormal, fantasy\",\"When her twin brother, Rhoan, an assassin assigned the task of protecting\nthe innocent from evil supernatural beings, vanishes while on one of his\nmissions, dhampire Riley Jensen--a young woman who is half werewolf, half\nvampire--joins forces with the sexy, and very disoriented, vampire who\nshows up on her doorstep. Reprint.\"\r\n5768,6049,107821,Richard Russo,Bridge of Sighs,https://images.gr-assets.com/books/1320397300l/107821.jpg,3.79,17013,\"fiction, contemporary\",\"After sixty years of living in the upstate New York town of Thomaston,\nLouis Charles and his wife of forty years, Sarah, prepare for a trip to\nItaly to visit Louis' childhood friend, an artist who had fled his hometown\nmany years earlier.\"\r\n5769,6050,116054,Rosamunde Pilcher,Winter Solstice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347737313l/116054.jpg,4.15,15426,\"fiction, romance\",\"Five people buffeted by life's difficulties come together at a rundown\nestate house in Northern Scotland during a revelatory Winter Solstice.\"\r\n5770,6051,13580951,Ally Carter,United We Spy,https://images.gr-assets.com/books/1368559827l/13580951.jpg,4.44,22902,\"mystery, romance\",\"Celebrate the 10th anniversary of the New York Times best-selling Gallagher\nGirls series with this new edition, featuring an exclusive new epilogue\nfrom Ally Carter! Cammie Morgan has lost her father and her memory, but in\nthe heart-pounding conclusion to the best-selling Gallagher Girls series,\nshe finds her greatest mission yet. Cammie and her friends finally know why\nthe terrorist organization called the Circle of Cavan has been hunting her.\nNow the spy girls and Zach must track down the Circle's elite members to\nstop them before they implement a master plan that will change Cammie-and\nher country-forever. Get ready for the Gallagher Girls' most astounding\nadventure yet as the series comes to breathtaking conclusion that will have\nreaders racing to the last page.\"\r\n5771,6052,6571723,Rachel Caine,\"The Morganville Vampires, Volume 1\",https://images.gr-assets.com/books/1478780633l/6571723.jpg,4.36,17329,\"paranormal, fantasy\",\"YA. HORROR & GHOST STORIES, CHILLERS. Morganville is a small college town\nfilled with unusual characters. But when the sun goes down, the bad come\nout. Because in Morganville, there is an evil that lurks in the darkest\nshadows - one that will spill out into the bright light of day. For Claire\nDanvers, high school was hell, but college may be murder. It was bad enough\nthat she got on the wrong side of Monica, the meanest of the school's mean\ngirls, but now she's got three new roommates, who all have secrets of their\nown. And the biggest secret of all isn't really a secret, except from\nClaire: Morganville is run by vampires, and they are hungry for fresh\nblood. Includes: Glass houses; Dead girls' dance; and Midnight alley. Ages\n13+.\"\r\n5772,6053,107664,Anthony Horowitz,Raven's Gate,https://images.gr-assets.com/books/1328842690l/107664.jpg,3.9,18247,\"fantasy, horror\",Raven's GateAnthony Horowitz\r\n5773,6054,20575425,John Darnielle,Wolf in White Van,https://images.gr-assets.com/books/1393646533l/20575425.jpg,3.72,14618,\"fiction, contemporary\",Wolf in White VanJohn Darnielle\r\n5774,6055,91203,Erich Maria Remarque,Drei Kameraden,https://images.gr-assets.com/books/1320543184l/91203.jpg,4.48,14321,\"classics, fiction\",Drei KameradenErich Maria Remarque\r\n5775,6056,7817785,Melissa de la Cruz,Bloody Valentine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442801545l/7817785._SX318_.jpg,3.98,19903,\"paranormal, romance\",\"The Blue Bloods have powers beyond human comprehension: strength that\ndefies logic, speed that cannot be captured on film, the ability to\nshapeshift, and more. But in matters of the heart, no one, not even these\nimmortal vampires, has total control. In Bloody Valentine, a companion\nnovella to the best-selling Blue Bloods series, author Melissa de la Cruz\ndelves deep into the love lives of the all-powerful vamps from New York’s\nUpper East Side – Schuyler and Jack's passion for each other, Mimi and\nKingsley's tangled romantic history, and even a possible cure for Oliver’s\nheartbreak in the form of a witchy new girl. /DIVDIV In both prose and\nverse, Bloody Valentine reveals the undying love, the hope and devastation,\nand the lust and longing that have defined the Blue Bloods throughout\nhistory. Prepare to be swept off your feet.\"\r\n5776,6057,5160,Maya Angelou,The Heart of a Woman,https://images.gr-assets.com/books/1417404078l/5160.jpg,4.19,15962,\"biography, memoir\",\"In the fourth volume of her autobiography, the author describes her\nexperiences as a singer-dancer in New York and her impressions of the Civil\nRights movement.\"\r\n5777,6058,1876770,Andrzej Sapkowski,Chrzest ognia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227447656l/1876770.jpg,4.36,10840,\"fantasy, fiction\",\"Streszczenie w języku polskim: Geralt, wyleczony przez driady z ran\nodniesionych w czasie nieudanego puczu na wyspie Thanedd, wyrusza na\nposzukiwanie przeznaczonego mu Dziecka Niespodzianki. Oprócz nieodłącznego\nJaskra, trubadura i domorosłego filozofa, do kompanii wiedźmina przystępują\n: pełna temperamentu łuczniczka Milva, nilfgaardzki rycerz - koszmar ze\nsnów Ciri, którego poszukują najlepsi szpiedzy Cesarstwa, sprytny gnom\nzwiadowca, pięciu rubasznych krasnoludów oraz noszący się staroświecko i\npachnący intensywnie ziołami cyrulik - osobnik jakby nie z tej bajki.\"\r\n5778,6059,6266907,\"James Patterson, Richard DiLallo\",Alex Cross's Trial,https://images.gr-assets.com/books/1336268218l/6266907.jpg,3.92,17655,\"mystery, fiction\",\"Alex Cross's TrialJames Patterson, Richard DiLallo\"\r\n5779,6060,2118114,\"Ori Brafman, Rom Brafman\",Sway: The Irresistible Pull of Irrational Behavior,https://images.gr-assets.com/books/1320419177l/2118114.jpg,3.75,14464,\"psychology, nonfiction\",\"Explores the ongoing psychological forces that sabotage rational behavior\nin our personal and business lives, revealing how such factors as loss\naversion, commitment, and the diagnosis bias distort logical thought.\"\r\n5780,6061,423156,\"Marguerite Henry, Wesley Dennis\",King of the Wind: The Story of the Godolphin Arabian,https://images.gr-assets.com/books/1329982839l/423156.jpg,4.19,20089,\"fiction, classics\",\"King of the Wind: The Story of the Godolphin ArabianMarguerite Henry, Wesley Dennis\"\r\n5781,6062,18774981,Sam Harris,Waking Up: A Guide to Spirituality Without Religion,https://images.gr-assets.com/books/1415677308l/18774981.jpg,3.87,13778,\"spirituality, religion\",\"A guide to meditation as a rational spiritual practice informed by\nneuroscience and psychology considers how to learn from the examples of\nreligious sages and saints from a secular and philosophical perspective\nwithout formally committing to religion. 100,000 first printing.\"\r\n5782,6063,43037,Jack London,\"The Call of the Wild, White Fang and Other Stories \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388295742l/43037.jpg,3.97,16717,\"classics, fiction\",\"In these classic tales of the Yukon, a sled dog and a wolf struggle to\nsuppress their wild instincts to serve their human masters\"\r\n5783,6064,95784,Iris Chang,The Rape of Nanking: The Forgotten Holocaust of World War II,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348687411l/95784.jpg,4.08,16875,\"history, nonfiction\",\"Relates an account of the 1937 massacre of 250,000 Chinese civilians in\nNanking by the invading Japanese military, a carnage for which the Japanese\ngovernment has never admitted responsibility.\"\r\n5784,6065,4005310,Jerry A. Coyne,Why Evolution Is True,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777442l/4005310._SY475_.jpg,4.15,14637,\"science, nonfiction\",Why Evolution Is TrueJerry A. Coyne\r\n5785,6066,1627,Annie Proulx,Brokeback Mountain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442919969l/1627._SY475_.jpg,3.93,19871,\"fiction, romance\",\"The friendship between Ennis del Mar and Jack Twist, two cowboys, evolves\ninto an intimate relationship while they are working together as a herder\nand camp tender, sharing a bond that spans many years and frequent\nseparations.\"\r\n5786,6067,73080,Susan Elizabeth Phillips,Nobody's Baby But Mine,https://images.gr-assets.com/books/1298032580l/73080.jpg,4.06,26468,\"romance, contemporary\",Nobody's Baby But MineSusan Elizabeth Phillips\r\n5787,6068,17934416,Lisa Scottoline,Keep Quiet,https://images.gr-assets.com/books/1391355179l/17934416.jpg,3.76,13556,\"fiction, mystery\",\"Jake Whitmore is enjoying a rare bonding moment with his sixteen-year-old\nson, Ryan, when disaster strikes. They get in a terrible car accident that\nthreatens to derail not only Ryan's chances at college, but his entire\nfuture. Jake makes a split-second decision that saves his son from formal\npunishment, but plunges them both into a world of guilt, lies, and secrecy.\nJust when Jake thinks he has everything under control, a malevolent\noutsider comes forward with the power to expose Jake's secret and taunts\nhim to the breaking point. Keep Quiet is the powerful and gut-wrenching\ntale of the unraveling-and the ultimate redemption-of a family.\"\r\n5788,6069,78985,Jeffrey Archer,Sons of Fortune,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347962096l/78985.jpg,3.83,13731,\"fiction, thriller\",\"In the late 1940s, twin boys are separated at birth, Nat going home with\nhis middle-class parents, and Fletcher to be raised by a wealthy couple,\nbut their lives come together when they both run for governor of\nConnecticut.\"\r\n5789,6070,48318,\"Jostein Gaarder, Sarah Jane Hails\",Kabalmysteriet,https://images.gr-assets.com/books/1327883395l/48318.jpg,4.16,11085,\"philosophy, fantasy\",\"The author of the best-selling Sophie's World follows a twelve-year-old boy\nas he scours Europe with his father for his missing mother, carrying a\nminiature, magic storybook that may help solve her disappearance. Reprint.\"\r\n5790,6072,6104943,Jill Mansell,Rumor Has it,https://images.gr-assets.com/books/1328202735l/6104943.jpg,3.83,15669,\"romance, fiction\",Rumor Has itJill Mansell\r\n5791,6073,32429,Dean Koontz,Dragon Tears,https://images.gr-assets.com/books/1308458435l/32429.jpg,3.72,17573,\"horror, fiction\",\"Harry Lyon, a decent cop struggling to remain rational in a crazy world,\nfinds his sanity threatened after being forced to shoot a man and having a\nhomeless stranger chant haunting words at him that predict his own death by\ndawn. Reissue.\"\r\n5792,6074,7937744,Iain M. Banks,Surface Detail,https://images.gr-assets.com/books/1287893375l/7937744.jpg,4.22,15651,\"fiction, ebooks\",\"The dazzling new Culture novel froma modern master of science fiction - a\ntour de force of brilliant storytelling, world-building and imagination.\"\r\n5793,6075,7785207,Nicky Charles,The Mating,https://images.gr-assets.com/books/1299068605l/7785207.jpg,4.02,20109,\"paranormal, romance\",\"Elise had no idea when she came home that day that she'd end up mated to a\ncomplete stranger. A new Alpha and the need for an alliance between packs\nhave made her a pawn Excerpt: She lay beside him, staring blankly at the\nceiling. The deed was done. They were mated. It didn't matter that she had\nno love for him nor he for her. Political alliances were more important\nthan feelings...\"\r\n5794,6076,330947,Conn Iggulden,The Gates of Rome,https://images.gr-assets.com/books/1313874666l/330947.jpg,4.16,14370,\"fiction, history\",\"Rarely, if ever, does a new writer dazzle us with such a vivid imagination\nand storytelling, flawlessly capturing the essence of a land, a people, a\nlegend. Conn Iggulden is just such a writer, bringing to vivid life one of\nthe most fascinating eras in human history. In a true masterpiece of\nhistorical fiction, Iggulden takes us on a breathtaking journey through\nancient Rome, sweeping us into a realm of tyrants and slaves, of dark\nintrigues and seething passions. What emerges is both a grand romantic tale\nof coming-of-age in the Roman Empire and a vibrant portrait of the early\nyears of a man who would become the most powerful ruler on earth: Julius\nCaesar. On the lush Italian peninsula, a new empire is taking shape. At its\nheart is the city of Rome, a place of glory and decadence, beauty and\nbloodshed. Against this vivid backdrop, two boys are growing to manhood,\ndreaming of battles, fame, and glory in service of the mightiest empire the\nworld has ever known. One is the son of a senator, a boy of privilege and\nambition to whom much has been given and from whom much is expected. The\nother is a bastard child, a boy of strength and cunning, whose love for his\nadoptive family–and his adoptive brother–will be the most powerful force in\nhis life. As young Gaius and Marcus are trained in the art of combat–under\nthe tutelage of one of Rome’s most fearsome gladiators–Rome itself is being\nrocked by the art of treachery and ambition, caught in a tug-of-war as two\nrival generals, Marius and Sulla, push the empire toward civil war. For\nMarcus, a bloody campaign in Greece will become a young soldier’s proving\nground. For Gaius, the equally deadly infighting of the Roman Senate will\nbe the battlefield where he hones his courage and skill. And for both, the\nlove of an extraordinary slave girl will be an honor each will covet but\nonly one will win. The two friends are forced to walk different paths, and\nby the time they meet again everything will have changed. Both will have\nknown love, loss, and violence. And the land where they were once innocent\nwill be thrust into the grip of bitter conflict–a conflict that will set\nRoman against Roman...and put their friendship to the ultimate test.\nBrilliantly interweaving history and adventure, Conn Iggulden conjures a\nstunning array of contrasts–from the bloody stench of a battlefield to the\nopulence of the greatest city in history, from the tenderness of a lover to\nthe treachery of an assassin. Superbly rendered, grippingly told, Emperor,\nThe Gates of Rome is a work of vaulting imagination from a powerful new\nvoice in historical fiction. From the Hardcover edition.\"\r\n5795,6078,81903,Agatha Christie,Curtain: Poirot’s Last Case,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923108l/81903.jpg,4.05,18358,\"mystery, fiction\",Curtain: Poirot’s Last CaseAgatha Christie\r\n5796,6079,77161,Lian Hearn,Grass for His Pillow ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439223731l/77161._SY475_.jpg,4.01,15140,\"fantasy, fiction\",\"Adopted by an Otori Lord, orphan Takeo rises to become a closely held\nmember of the Tribe and finds his love for Maruyama heir Shirakawa Kaede\nchallenged by dissembling clans and fractured allegiances, in the sequel to\nAcross the Nightingale Floor. Reprint.\"\r\n5797,6080,2798094,Laurell K. Hamilton,Swallowing Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440734319l/2798094._SX318_.jpg,4.13,23079,\"fantasy, paranormal\",\"Meredith Gentry, whose rightful place on the throne of Faerie is dependent\non being able to produce an heir, is overjoyed when she finds herself\npregnant after many failed attempts, but her triumph is overshadowed when\nshe discovers that she carries two babies with different fathers and the\nlost of her beloved Frost. Reprint.\"\r\n5798,6082,18774020,Edan Lepucki,California,https://images.gr-assets.com/books/1400863574l/18774020.jpg,3.22,14870,\"fiction, contemporary\",CaliforniaEdan Lepucki\r\n5799,6084,197512,Mo Willems,The Pigeon Finds a Hot Dog!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1585597485l/197512._SX318_.jpg,4.35,20510,\"fiction, fantasy\",\"Pigeon learns about sharing when a curious duckling keeps asking questions\nabout the hot dog Pigeon has found.\"\r\n5800,6085,25131600,Chuck Wendig,Aftermath,https://images.gr-assets.com/books/1426620007l/25131600.jpg,3.15,11207,\"fiction, fantasy\",\"\"\"The second Death Star has been destroyed, the Emperor killed, and Darth\nVader struck down. All major victories for the Rebel Alliance. But the\nbattle for freedom is far from over\"\"--Page 4 of cover.\"\r\n5801,6086,263148,Ellen Schreiber,\"Vampireville (Vampire Kisses, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348488554l/263148.jpg,3.92,21676,\"paranormal, fantasy\",\"For goth-girl Raven, dating her dream boyfriend is complicated, especially\nbecause Alexander's secret means that they can see each other only at\nnight. And now the pair must be extra wary in the dark with Alexander's\narchrival, Jagger, appearing around town. As if Jagger isn't enough cause\nfor worry, Luna, his strikingly pale sister, has also surfaced and seems to\nhave her sights set on Raven's longtime nemesis, Trevor. Together, Raven\nand Alexander must begin a terrifying search for Jagger and Luna's hideout\nto drive them away -- that is, if it's not already too late to save\nDullsville from becoming Vampireville. In the latest installment of her\npopular Vampire Kisses books, Ellen Schreiber continues the startling story\nof two teen outsiders -- she from the mortal world and he from the\nUnderworld -- who share a thrilling, extraordinary romance.\"\r\n5802,6087,16349,Agatha Christie,Hercule Poirot's Christmas,https://images.gr-assets.com/books/1308808460l/16349.jpg,3.9,17971,\"mystery, crime\",\"Christmas Eve, and the Lee family’s reunion is shattered by a deafening\ncrash of furniture and a high-pitched wailing scream. Upstairs, the\ntyrannical Simeon Lee lies dead in a pool of blood, his throat slashed.\nWhen Hercule Poirot offers to assist, he finds an atmosphere not of\nmourning but of mutual suspicion. It seems everyone had their own reason to\nhate the old man. . . .\"\r\n5803,6088,15808287,Jennifer Chiaverini,Mrs. Lincoln's Dressmaker,https://images.gr-assets.com/books/1350586527l/15808287.jpg,3.41,16366,\"fiction, history\",\"Presents a fictionalized account of the friendship between Mary Todd\nLincoln and her dressmaker Elizabeth Keckley, a former slave.\"\r\n5804,6089,545425,Safiy al-Rahman al-Mubarakfuri, الرحيق المختوم: بحث في السيرة النبوية على صاحبها أفضل الصلاة والسلام ,https://images.gr-assets.com/books/1289025514l/545425.jpg,4.57,10558,\"history, biography\",\"كتاب يبحث في السيرة النبوية الشريفة بأسلوب راقي ومختصر، لكن مركز، وقد فاز\nمصنفه بالجائزة الأولى لرابطة العالم الإسلامي على هذا الكتاب الذي جاء وافيا\nلسرد سيرة خير البشر\"\r\n5805,6090,12547098,Sarah McCoy,The Baker's Daughter,https://images.gr-assets.com/books/1404963150l/12547098.jpg,3.94,12752,\"fiction, romance\",\"After an interview with an elderly baker leaves her feeling like she is the\none who revealed too much—especially about her Border Patrol husband,\nRiki—El Paso journalist Reba Adams, as well as her interview subject and\nRiki, must confront the ghosts of their past.\"\r\n5806,6091,21849362,J.R. Ward,The Shadows,https://images.gr-assets.com/books/1404479585l/21849362.jpg,4.29,20668,\"paranormal, romance\",\"Trez \"\"Latimer\"\" doesn't really exist. And not just because the identity was\ncreated so that a Shadow could function in the underbelly of the human\nworld. Sold by his parents to the Queen of the S'Hsibe as a child, Trez\nescaped the Territory and has been a pimp and an enforcer in Caldwell, NY\nfor years -- all the while on the run from a destiny of sexual servitude.\nHe's never had anyone he could totally rely on... except for his brother,\niAm. iAm's sole goal has always been to keep his brother from self-\ndestructing -- and he knows he's failed. It's not until the Chosen Serena\nenters Trez's life that the male begins to turn things around... but by\nthen it's too late. The pledge to mate the Queen's daughter comes due and\nthere is nowhere to run, nowhere to hide, and no negotiating. Trapped\nbetween his heart and a fate he never volunteered for, Trez must decide\nwhether to endanger himself and others -- or forever leave behind the\nfemale he's in love with. But then an unimaginable tragedy strikes and\nchanges everything. Staring out over an emotional abyss, Trez must find a\nreason to go on or risk losing himself and his soul forever. And iAm, in\nthe name of brotherly love, is faced with making the ultimate sacrifice.\"\r\n5807,6092,920143,\"Trina Schart Hyman, Johann Grimm, Wilhelm Grimm\",Rotkäppchen,https://images.gr-assets.com/books/1314485414l/920143.jpg,4.11,19224,\"classics, fiction\",\"On her way to deliver a basket of food to her sick grandmother, Elisabeth\nencounters a sly wolf.\"\r\n5808,6093,153865,Dav Pilkey,Captain Underpants and the Attack of the Talking Toilets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348349083l/153865.jpg,3.99,25873,\"fiction, comics\",Captain Underpants and the Attack of the Talking ToiletsDav Pilkey\r\n5809,6094,12204857,\"Martin Pistorius, Megan Lloyd Davies\",Ghost Boy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328017445l/12204857.jpg,3.96,10303,\"nonfiction, biography\",\"In January 1988, aged twelve, Martin Pistorius fell inexplicably sick.\nFirst he lost his voice and stopped eating; then he slept constantly and\nshunned human contact. Doctors were mystified. Within eighteen months he\nwas mute and wheelchair-bound. Martin's parents were told that an unknown\ndegenerative disease had left him with the mind of a baby and he probably\nhad less than two years to live. Martin went on to be cared for at centres\nfor severely disabled children, a shell of the bright, vivacious boy he had\nonce been. What no-one knew is that while Martin's body remained\nunresponsive his mind slowly woke up, yet he could tell no-one; he was a\nprisoner inside a broken body. Then, in 1998, when Martin was twenty-three\nyears old, an aromatherapy masseuse began treating him and sensed some part\nof him was alert. Experts were dismissive, but his parents persevered and\nsoon realised their son was as intelligent as he'd always been. With no\nmemory of the time before his illness, Martin was a man-child reborn in a\nworld he didn't know. He was still in a wheelchair and unable to speak, but\nhe was brilliantly adept at computer technology. Since then, and against\nall odds, he has fallen in love, married and set up a design business which\nhe runs from his home in Essex. Ghost Boy is an incredible, deeply moving\nstory of recovery and the power of love. Through Martin's story we can know\nwhat it is like to be here and yet not here - unable to communicate yet\nfeeling and understanding everything. Martin's emergence from his darkness\nenables us to celebrate the human spirit and is a wake-up call to cherish\nour own lives.\"\r\n5810,6095,18077875,Greg McKeown,Essentialism: The Disciplined Pursuit of Less,https://images.gr-assets.com/books/1403165375l/18077875.jpg,3.99,16137,\"business, psychology\",\"Have you ever found yourself struggling with information overload? Have you\never felt both overworked and underutilised? Do you ever feel busy but not\nproductive? If you answered yes to any of these, the way out is to become\nan Essentialist. In Essentialism, Greg McKeown, CEO of a Leadership and\nStrategy agency in Silicon Valley who has run courses at Apple, Google and\nFacebook, shows you how to achieve what he calls the disciplined pursuit of\nless. Being an Essentialist is about a disciplined way of thinking. It\nmeans challenging the core assumption of âe~We can have it allâe(tm) and\nâe~I have to do everythingâe(tm) and replacing it with the pursuit of\nâe~the right thing, in the right way, at the right time'. By applying a\nmore selective criteria for what is essential, the pursuit of less allows\nus to regain control of our own choices so we can channel our time, energy\nand effort into making the highest possible contribution toward the goals\nand activities that matter. Using the experience and insight of working\nwith the leaders of the most innovative companies and organisations in the\nworld, McKeown shows you how to put Essentialism into practice in your own\nlife, so you too can achieve something great.\"\r\n5811,6096,16188,Philippa Gregory,Wideacre,https://images.gr-assets.com/books/1289170133l/16188.jpg,3.28,17469,\"fiction, romance\",\"As an eighteenth-century Englishwoman without property rights, Beatrice\nLacey is destined to lose what she loves most--her family's ancestral\nestate of Wideacre--unless her ambitious schemes succeed. Reprint. 60,000\nfirst printing.\"\r\n5812,6098,15717721,Lisa Renee Jones,If I were you,https://images.gr-assets.com/books/1397227898l/15717721.jpg,4.14,21313,\"romance, contemporary\",If I were youLisa Renee Jones\r\n5813,6099,16079228,L.A. Fiore,Beautifully Damaged,https://images.gr-assets.com/books/1350800166l/16079228.jpg,3.99,21543,\"romance, suspense\",\"Ember Walsh is a trusting soul with the quiet beauty of her late mother,\nwho perished in a mysterious car crash when Ember was three. A little\ntomboyish from being raised by her father, Ember packs a punch when a\nstranger gets pushy with her in a bar, catching the steely blue eyes of a\ntall, gorgeous tattooed man--Trace Montgomery. Still damaged from her last\ndisastrous relationship and warned off the bad boy by friends, Ember fights\nthe smoldering heat that Trace sparks in her when he begins shadowing her\nlike a dark angel. Burdened by a lifetime of horror and heartbreak, amateur\nfighter Trace doesn't want to want Ember. His deep self-loathing keeps him\nfrom having any meaningful relationships, but Ember is an itch he can't\nscratch. The two push and pull, slowly crumbling their walls, seemingly\nbrought together by fate, because the turmoil that haunts their pasts is\ninterlinked in undeniable ways. But can these two fighters finally lay down\ntheir arms? In Beautifully Damaged, L.A. Fiore delves into deep scars and\nlets love and forgiveness uncover redemption.\"\r\n5814,6100,16053316,Samantha Towle,Wethering the Storm,https://images.gr-assets.com/books/1368083888l/16053316.jpg,4.33,26962,\"romance, contemporary\",\"\"\"Music journalist Tru Bennett has done the impossible: capture the heart of\nrock-star bad boy Jake Wethers. Now they're busy planning a wedding and\nnavigating their new life together in the U.S. Of course, Tru misses London\nand her best friend, Simone, but living happily ever after with Jake in LA\nis going to be great ... right? Wrong. Even the bright California sun can't\nwhitewash the dark side of celebrity coupledom. Greedy music execs,\nmerciless paparazzi, and Jake's wild past are lurking around every corner.\nMaking matters worse, Jake announces he doesn't want kids, which just may\nbe a deal breaker. Tru loves Jake more than anything. But when a\ndevastating crisis threatens to destroy everything they've fought for, the\ncouple must face the hard truth: What if, this time, love is not enough?\"\"--\nAmazon.com, viewed September 23, 2013.\"\r\n5815,6101,30658,\"René Descartes, Donald A. Cress\",Meditationes de prima philosophia,https://images.gr-assets.com/books/1405624521l/30658.jpg,3.69,14811,\"classics, philosophy\",\"Many other matters respecting the attributes of God and my own nature or\nmind remain for consideration; but I shall possibly on another occasion\nresume the investigation of these. Now my principal task is to endeavour to\nemerge from the state of doubt into which I have these last days fallen.\"\r\n5816,6102,17491,Enid Blyton,The Enchanted Wood,https://images.gr-assets.com/books/1428732266l/17491.jpg,4.24,16470,\"fantasy, fiction\",The Enchanted WoodEnid Blyton\r\n5817,6103,17286162,Sandi Lynn,Forever Black,https://images.gr-assets.com/books/1359579827l/17286162.jpg,3.99,27102,\"romance, contemporary\",\"When Ellery moved to New York with her boyfriend, she thought they'd live\nhappily ever after in their small New York apartment. She never thought\nhe'd pack his bags and leave because he “needed space.” With her newfound\nsingle status and fear of being alone, Ellery buries herself in her artwork\nand paintings until one night she helps a mysterious intoxicated stranger\nget home safely. Little did she know the mysterious stranger is none other\nthan CEO and millionaire Connor Black. After finding Ellery in his kitchen\nthe next morning and assuming she broke his #1 rule about sleepovers, he\nbecomes intrigued, not only by her stubbornness and defiance, but by her\nkindness.Connor Black, emotionally dead and damaged, that stemmed from a\npersonal tragedy, made a vow to never love or fall in love with a woman,\nuntil Ellery Lane walked into his life by accident. After she opens up and\nshows him her world, Connor starts to feel emotions and feelings he never\nknew existed. Despite the rumors and warnings regarding Connor Black and\nhis use and misuse of women, Ellery finds herself being drawn into his\nworld. Ellery knows they can never be together because she is harboring a\ndeep secret that could destroy Connor emotionally forever. Join Connor and\nEllery as they embark on a journey of courage, love and strength. Will it\nbe enough to save them?\"\r\n5818,6104,16204,Henry James,Daisy Miller,https://images.gr-assets.com/books/1327911289l/16204.jpg,3.36,17118,\"classics, fiction\",\"Famous novella chronicles a young American girl's willful yet innocent\nflirtation with a young Italian, and its unfortunate consequences.\nThroughout, James contrasts American customs and values with European\nmanners and morals in a narrative rich in psychological and social insight.\"\r\n5819,6105,11866694,Lauren Groff,Arcadia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440680831l/11866694._SX318_.jpg,3.65,14622,\"fiction, contemporary\",ArcadiaLauren Groff\r\n5820,6106,57605,Dorothy Kunhardt,Pat the Bunny (Touch and Feel Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170474321l/57605.jpg,4.06,19187,\"fiction, classics\",\"The original classic touch and feel book that has been entertaining babies\nfor over 60 years.\"\r\n5821,6107,25279165,Melanie Benjamin,The Swans of Fifth Avenue,https://images.gr-assets.com/books/1431898319l/25279165.jpg,3.58,13735,\"fiction, history\",Includes a reader's guide with discussion questions.\r\n5822,6108,229145,\"CLAMP, Maria Simpson\",カードキャプターさくら,https://images.gr-assets.com/books/1451030958l/229145.jpg,4.3,17547,\"manga, fantasy\",\"カードキャプターさくらCLAMP, Maria Simpson\"\r\n5823,6109,23217,Meg Cabot,Size 14 Is Not Fat Either,https://images.gr-assets.com/books/1479654269l/23217.jpg,3.83,24045,\"mystery, romance\",Size 14 Is Not Fat EitherMeg Cabot\r\n5824,6111,12706435,Shelly Crane,Defiance,https://images.gr-assets.com/books/1498698186l/12706435.jpg,4.31,22767,\"paranormal, romance\",\"In the third installment of the Significance series, we begin with Maggie\nand Caleb in the clutches of a new enemy; the Virtuoso council. Not only do\nthey have to deal with the consequences of taking the lives of the Watsons\nand the council attempting to take Maggie away to keep their precious\nVisionary safe, but they must deal with Marla as well. All are determined\nto undermine, control and use Caleb and Maggie's rare gifts for their own\nuses, some wish to destroy them entirely. Then Maggie's father and Bish are\nthreatened but the council forbids the presense of humans. Peter and the\nfamily fight and stand beside them every step of the way to save Maggie's\nfather, to keep Caleb and Maggie together when the corrupted council is so\nset on keeping them apart and to stop Marla and whatever she has up her\nsleeve. Then Maggie has the shock of her life when she discovers something\nabout her real father. It may change everything for everyone. Stay tuned as\nthe story continues.\"\r\n5825,6112,232577,Dian Fossey,Gorillas in the Mist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564514108l/232577.jpg,4.16,16551,\"science, nonfiction\",\"One of the most important books ever written about our connection to the\nnatural world, GORILLAS IN THE MIST is the riveting account of Dian\nFossey's thirteen years in a remote African rain forest with the greatest\nof the great apes. Fossey's extraordinary efforts to ensure the future of\nthe rain forest and its remaining mountain gorillas are captured in her own\nwords and in candid photographs of this fascinating endangered species. As\nonly she could, Fossey combined her personal adventure story with\ngroundbreaking scientific reporting in an unforgettable portrait of one of\nour closest primate relatives. Although Fossey's work ended tragically in\nher murder, GORILLAS IN THE MIST remains an invaluable testament to one of\nthe longest-running field studies of primates and reveals her undying\npassion for her subject.\"\r\n5826,6113,7663,\"Jeffery Hudson, Michael Crichton\",A Case of Need,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327963749l/7663.jpg,3.6,14109,\"fiction, thriller\",\"When a young woman dies mysteriously on an operating table and her\nphysician is accused of murder, a colleague's investigation takes him from\na deadly sex and drug underworld to the heights of Boston society as he\nsearches for the truth. A first novel. Reissue.\"\r\n5827,6114,16045140,Adelle Waldman,The Love Affairs of Nathaniel P. ,https://images.gr-assets.com/books/1361026301l/16045140.jpg,3.3,12598,\"fiction, contemporary\",\"A rising star in Brooklyn's literary scene who is drawn to women in spite\nof commitment issues considers relationships with three women who compel\nhim to decide what he really wants out of life.\"\r\n5828,6115,16096873,\"P.C. Cast, Kristin Cast\",Revealed,https://images.gr-assets.com/books/1369156173l/16096873.jpg,3.81,17282,\"fantasy, paranormal\",\"Revealed is the spellbinding eleventh and penultimate installment in the #1\nNew York Times bestselling vampyre series by PC and Kristin Cast.\nDrastically altered after her fall at the end of Hidden, Neferet is now\nmore dangerous than ever—and her quest for vengeance will wreak havoc on\nhumans, as well as Zoey and her friends. Chaos is loosed in Tulsa and the\nHouse of Night is blamed. Can Zoey stop Neferet in time to keep her anger\nfrom escalating to full-on war? Or will someone else have to step in to\ntake the fall? The House of Night series is an international phenomenon,\nreaching #1 on U.S., German, and UK bestseller lists, and remaining a\nfixture on The New York Times Children's Series bestseller list for nearly\n150 weeks and counting. With more than 12 million copies in print, rights\nsold in thirty–eight countries to date, and relatable, addictive\ncharacters, this series is unstoppable. Now, in the eleventh and\npenultimate installment of the series, the action is more intense and the\nstakes even higher as Zoey and her friends battle to protect their school\nand home from devastating evil—all while balancing romances, precarious\nfriendships and the daily drama of the House of Night's halls.\"\r\n5829,6117,6115138,Linda Castillo,Sworn to Silence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388818184l/6115138.jpg,4,17862,\"mystery, thriller\",Sworn to SilenceLinda Castillo\r\n5830,6118,12119529,Ilona Andrews,Magic Breaks,https://images.gr-assets.com/books/1383236969l/12119529.jpg,4.52,22583,\"fantasy, paranormal\",\"Kate Daniels discovers she has just 24 hours to find the shapeshifter that\nmurdered a Master of the Dead, or risk the start of a war in the latest\nnovel of the best-selling series following Magic Rises.\"\r\n5831,6119,79649,\"Anton Chekhov, Michael Frayn\",Чайка,https://images.gr-assets.com/books/1443340069l/79649.jpg,3.92,15997,\"classics, romance\",\"Formerly part of the \"\"World Dramatists\"\" series of play collections by\nclassic and modern playwrights, including foreign works in workable and\naccurate translations, this title and seven others are reissued in a new\nformat under the heading, \"\"World Classics\"\".\"\r\n5832,6120,7717482,\"Haruki Murakami, 村上 春樹\",1Q84 Book 3 [Ichi-kyū-hachi-yon],https://images.gr-assets.com/books/1327559269l/7717482.jpg,3.86,10317,\"fiction, fantasy\",\"1Q84 Book 3 [Ichi-kyū-hachi-yon]Haruki Murakami, 村上 春樹\"\r\n5833,6121,93723,Meg Cabot,Boy Meets Girl,https://images.gr-assets.com/books/1328033372l/93723.jpg,3.82,21851,\"romance, fiction\",Boy Meets GirlMeg Cabot\r\n5834,6122,402015,Louise Rennison,Dancing in my nuddy-pants!,https://images.gr-assets.com/books/1327885836l/402015.jpg,4.01,18451,\"fiction, romance\",Dancing in my nuddy-pants!Louise Rennison\r\n5835,6123,348,Robert A. Heinlein,The Door into Summer,https://images.gr-assets.com/books/1342241886l/348.jpg,4,15298,\"fiction, fantasy\",\"Daniel Davis, put into a state of suspended animation for 30 years, awakens\nto a startling discovery\"\r\n5836,6124,316445,Julie Anne Peters,Luna,https://images.gr-assets.com/books/1339269673l/316445.jpg,3.86,17859,\"fiction, contemporary\",\"With the help of his sister, Liam secretly transforms himself into a girl\nwhen evening falls, but although he wants to present his female persona to\nthe world, he fears the reaction of the rest of his family.\"\r\n5837,6125,14280,Alice Munro,Runaway,https://images.gr-assets.com/books/1431005856l/14280.jpg,3.98,13389,\"fiction, contemporary\",\"A collection of short fiction captures the lives of women of all ages and\ncircumstances, as they deal with the limits and lies of passion,\nunfulfilled dreams, motherhood, betrayal, and the bonds of love.\"\r\n5838,6126,886066,Iain M. Banks,Matter,https://images.gr-assets.com/books/1327954631l/886066.jpg,4.03,15438,\"fiction, science\",MatterIain M. Banks\r\n5839,6127,17825503,Mia Sheridan,Leo,https://images.gr-assets.com/books/1366869759l/17825503.jpg,4.06,24793,\"romance, contemporary\",LeoMia Sheridan\r\n5840,6128,3103,E.M. Forster,Maurice,https://images.gr-assets.com/books/1361934128l/3103.jpg,4.02,16301,\"classics, fiction\",\"The story of two young men in pre-World War I England who meet at Cambridge\nand fall in love and then must struggle with the moral standards of the\ntime. Clive bows to societal and family pressure and enters a loveless\nmarriage, while Maurice resists and finds lasting love with a working-class\nman. Forster was reluctant to publish the book in his lifetime because such\nstories were not supposed to end happily.\"\r\n5841,6129,10402992,\"J.D. Robb, Susan Ericksen\",New York to Dallas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348514401l/10402992.jpg,4.42,17108,\"mystery, romance\",\"New York to DallasJ.D. Robb, Susan Ericksen\"\r\n5842,6130,52350,Ira Levin,The Stepford Wives,https://images.gr-assets.com/books/1403404262l/52350.jpg,3.71,17382,\"horror, fiction\",The Stepford WivesIra Levin\r\n5843,6131,161156,Cornelius Ryan,The Longest Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1560902103l/161156.jpg,4.31,14949,\"history, nonfiction\",\"The classic account of the Allied invasion of Normandy. The Longest Day is\nCornelius Ryan's unsurpassed account of D-Day, a book that endures as a\nmasterpiece of military history. In this compelling tale of courage and\nheroism, glory and tragedy, Ryan painstakingly recreates the fateful hours\nthat preceded and followed the massive invasion of Normandy to retell the\nstory of an epic battle that would turn the tide against world fascism and\nfree Europe from the grip of Nazi Germany. This book, first published in\n1959, is a must for anyone who loves history, as well as for anyone who\nwants to better understand how free nations prevailed at a time when\ndarkness enshrouded the earth.\"\r\n5844,6132,6426,Janet Evanovich,Motor Mouth,https://images.gr-assets.com/books/1479699584l/6426.jpg,3.66,20983,\"mystery, romance\",Motor MouthJanet Evanovich\r\n5845,6133,215541,D.J. MacHale,The Reality Bug,https://images.gr-assets.com/books/1431402995l/215541.jpg,4.15,19049,\"fantasy, fiction\",\"VIRTUAL REALITY? The territory of Veelox has achieved perfect harmony.\nFifteen-year-old Bobby Pendragon arrives on this territory in pursuit of\nthe evil Saint Dane, but all is peaceful on Veelox -- because it's\ndeserted. The inhabitants have discovered a way to enter their own personal\ndream worlds, where they can be whoever they want, wherever they want.\nTheir bodies lie in stasis while their minds escape to this dream realm.\nFresh from his battle with Saint Dane in 1937 Earth, Bobby is confident\nthat they can defeat whatever Saint Dane has planned for this world. But\nonce Bobby enters the virtual world will he be able to resist the lure of\nthe ultimate in escapism?\"\r\n5846,6134,6528034,David Baldacci,True Blue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440465049l/6528034._SY475_.jpg,3.84,15757,\"fiction, mystery\",\"Fresh out of prison, disgraced ex-cop Mason \"\"Mace\"\" Perry,\"\" along with the\nhelp of her police chief sister, aids Roy Kingman, a lawyer trying to track\ndown the killer of one of his law partners, all while a U.S. attorney looks\nfor any reason to put Mace back behind bars, in a thriller by the best-\nselling author of First Family.\"\r\n5847,6135,317504,\"Raymond E. Feist, Janny Wurts\",\"Mistress of the Empire (The Empire Trilogy, #3)\",https://images.gr-assets.com/books/1333694789l/317504.jpg,4.29,18392,\"fantasy, fiction\",\"Lady Mara of the Acoma, a powerful member of the Tsurani court, faces a\nbrotherhood of assassins, spies from rival ruling houses, and the Assembly\nof Magicians, who perceive her as a threat to their ancient power\"\r\n5848,6137,20706316,Elin Hilderbrand,Winter Street,https://images.gr-assets.com/books/1394567347l/20706316.jpg,3.67,14411,\"fiction, romance\",\"In bestselling author Elin Hilderbrand's first winter novel, a family\ngathers on Nantucket for a holiday filled with surprises. Kelley Quinn is\nthe owner of Nantucket's Winter Street Inn and the proud father of four\ngrown children: Patrick, a hedge fund manager; Kevin, a bartender; Ava, a\nschoolteacher; and Bart, who has recently shocked everyone by joining the\nMarines. As Christmas approaches, Kelley looks forward to spending time\nwith his family at the inn. But when he walks in on his wife Mitzi kissing\nanother man, chaos descends, and things only get more interesting when\nKelley's ex-wife, news anchor Margaret Quinn, arrives on the scene. Before\nthe mulled cider is gone, the delightfully dysfunctional Quinn family will\nsurvive a love triangle, a small house fire, and endless rounds of\nChristmas caroling in this heart-warming novel about coming home for the\nholidays.\"\r\n5849,6138,233637,\"Carolyn Keene, Mildred Benson\",\"The Hidden Staircase (Nancy Drew Mystery Stories, #2)\",https://images.gr-assets.com/books/1172964121l/233637.jpg,3.94,24872,\"mystery, fiction\",\"More information to be announced soon on this forthcoming title from\nPenguin USA\"\r\n5850,6139,369110,Taylor Caldwell,Captains and the Kings,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1586112484l/369110._SY475_.jpg,4.11,14980,\"fiction, romance\",Captains and the KingsTaylor Caldwell\r\n5851,6140,13390528,Daniel Silva,The Fallen Angel,https://images.gr-assets.com/books/1468408514l/13390528.jpg,4.17,13939,\"fiction, mystery\",The Fallen AngelDaniel Silva\r\n5852,6142,97862,Karen Kingsbury,One Tuesday Morning,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436486968l/97862._SY475_.jpg,4.41,14904,\"christian, fiction\",\"Mistaken for a heroic World Trade Center victim, financial manager Eric\nMichaels, who is suffering from amnesia, struggles to relate to a family he\ndoes not remember, while his real wife, believing herself a widow, is\ncomforted by her adoring brother-in-law. Original.\"\r\n5853,6143,8935153,Laurell K. Hamilton,Hit List,https://images.gr-assets.com/books/1315176487l/8935153.jpg,3.92,21516,\"paranormal, fantasy\",\"The adventures of U.S. Marshal and vampire hunter Anita Blake continue when\nword is leaked to her that hit men are headed to St. Louis and that she,\nJean-Claude, and Richard are targets.\"\r\n5854,6145,29367958,Mariana Zapata,The Wall of Winnipeg and Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1456774327l/29367958._SY475_.jpg,4.34,29197,\"romance, sports\",\"\"\"Vanessa Mazur knows she's doing the right thing. She shouldn't feel bad\nfor quitting. Being an assistant/housekeeper/fairy godmother to the top\ndefensive end in the National Football Organization was always supposed to\nbe temporary. She has plans and none of them include washing extra-large\nunderwear longer than necessary. But when Aiden Graves shows up at her door\nwanting her to come back, she's beyond shocked. For two years, the man\nknown as The Wall of Winnipeg couldn't even find it in him to tell her good\nmorning or congratulate her on her birthday. Now? He's asking for the\nunthinkable. What do you say to the man who is used to getting everything\nhe wants?\"\"--Page [4] of cover.\"\r\n5855,6146,170632,Mary Higgins Clark,Let Me Call You Sweetheart,https://images.gr-assets.com/books/1355138627l/170632.jpg,3.84,17472,\"mystery, fiction\",\"A visit to a prominent New York plastic surgeon with her daughter leads\nKerry McGrath, a New Jersey municipal court judge and former district\nattorney on a quest to find a killer, before a man she had once helped\nconvict of murder dies for a crime he did not commit. Reprint.\"\r\n5856,6147,487445,Joseph Wambaugh,The Onion Field,https://images.gr-assets.com/books/1320511693l/487445.jpg,4.13,15558,\"crime, fiction\",\"Chronicles the events and aftermath of a confrontation between two\ncriminals and two policemen in a California onion field which ended in\ndeath for one of the officers\"\r\n5857,6148,106128,Kathy Reichs,Break No Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433210409l/106128._SY475_.jpg,3.95,19413,\"mystery, fiction\",Break No BonesKathy Reichs\r\n5858,6149,10865206,Kelly McGonigal,\"The Willpower Instinct: How Self-Control Works, Why It Matters, and What You Can Do to Get More of It\",https://images.gr-assets.com/books/1436737104l/10865206.jpg,4.11,15318,\"psychology, nonfiction\",\"The Willpower Instinct: How Self-Control Works, Why It Matters, and What You Can Do to Get More of ItKelly McGonigal\"\r\n5859,6150,279561,Richard K. Morgan,Broken Angels,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389758530l/279561.jpg,4,15544,\"fiction, thriller\",\"Serving as a mercenary in a distasteful war, Takeshi Kovacs joins a covert\nteam that aims to secure a coveted archeological prize, an endeavor that\nensnares him in a web of treachery and betrayal unlike any he has\nexperienced before. By the author of Altered Carbon. Original.\"\r\n5860,6151,21720,Karin Slaughter,Beyond Reach,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342699l/21720.jpg,4.19,15359,\"mystery, thriller\",\"When the charred body of a woman is found, and Detective Lena Adams is\ncharged with homicide, Grant County's medical examiner/pediatrician Sara\nLinton joins forces with her husband, police chief Jeffrey Tolliver, to\nuncover the truth about a case that is poisoning a small town with hatred.\"\r\n5861,6152,9647532,John Scalzi,Fuzzy Nation,https://images.gr-assets.com/books/1316132345l/9647532.jpg,4.1,17114,\"fiction, fantasy\",\"Discovering a gem node on a distant planet, contractor Jack Holloway\nbelieves he has become a wealthy man before encountering an indigenous race\nof small, furry, sentient beings who his corporate partners are determined\nto eliminate in order to secure their stake in the treasure.\"\r\n5862,6153,643974,Sue Grafton,I is for Innocent,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429466272l/643974.jpg,3.9,21756,\"mystery, fiction\",\"Another \"\"IRRESISTIBLE\"\" (Baltimore Sun) novel from #1 New York Times\nbestselling author Sue Grafton I IS FOR IF . . . Five years ago David\nBarney was acquitted of the murder of his rich wife, Isabelle. Now,\nIsabelle's ex-husband, Ken Voigt—who is suing Barney for her estate—is\nclaiming the jury made a fatal mistake... I IS FOR INDICTMENT . . . Enter\nP.I. Kinsey Millhone, who takes the Barney case over from a former\ncolleague...and comes up with more questions than answers. Why are Mr.\nBarney's witnesses denying ever having spoken to him? Why did Isabelle have\nso many enemies—including but not limited to her best friend, Voight's\nsecond wife, and her own twin sister? I IS FOR INNOCENT But the most\ntroubling question of all is: Why is it that everything David Barney has to\nsay about his beloved Isabelle still checks out? Now it's up to Kinsey to\nfigure out who's getting away with murder . . . .before she courts her own.\nThe New York Times #1 bestselling series reissued for a whole new\ngeneration of readers! \"\"A\"\" Is for Alibi \"\"B\"\" Is for Burglar \"\"C\"\" Is for\nCorpse \"\"D\"\" Is for Deadbeat \"\"E\"\" Is for Evidence \"\"F\"\" Is for Fugitive \"\"G\"\" Is\nfor Gumshoe \"\"H\"\" Is for Homicide \"\"I\"\" Is for Innocent \"\"J\"\" Is for Judgment \"\"K\"\"\nIs for Killer \"\"L\"\" is for Lawless \"\"M\"\" Is for Malice \"\"N\"\" Is for Noose \"\"O\"\" Is\nfor Outlaw \"\"P\"\" Is for Peril \"\"Q\"\" Is for Quarry \"\"R\"\" Is for Ricochet \"\"S\"\" Is\nfor Silence \"\"T\"\" Is for Trespass \"\"U\"\" Is for Undertow \"\"V\"\" Is for Vengeance\n\"\"W\"\" Is for Wasted \"\"X\"\"\"\r\n5863,6154,5809,Thomas Pynchon,V.,https://images.gr-assets.com/books/1328110787l/5809.jpg,3.97,13485,\"fiction, classics\",\"The wild, macabre tale of the twentieth century and of two men -- one\nlooking for something he has lost, the other with nothing much to lose --\nand \"\"V.,\"\" the unknown woman of the title.\"\r\n5864,6156,472025,\"Bertrand Russell, Paul  Edwards\",Why I Am Not a Christian and Other Essays on Religion and Related Subjects,https://images.gr-assets.com/books/1347925703l/472025.jpg,4.03,13678,\"philosophy, religion\",\"\"\"I am as firmly convinced that religions do harm as I am that they are\nuntrue\"\" - preface.\"\r\n5865,6157,23422,Alain de Botton,The Art of Travel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262692l/23422.jpg,3.81,13100,\"travel, nonfiction\",\"An inquiry into the human desire to travel and the ways in which the travel\nexperience is affected by anticipation and memory presents a series of\nthought-provoking and humorous essays on airports, museums, landscapes,\nholiday romances, hotel mini-bars, and master artists, offering suggestions\non how to render travel more fulfilling. Reprint. 65,000 first printing.\"\r\n5866,6159,25066591,James Patterson,Cross Justice,https://images.gr-assets.com/books/1427135714l/25066591.jpg,4.22,8634,\"mystery, fiction\",Cross JusticeJames Patterson\r\n5867,6160,326272,\"Heinrich Böll, محمد اسماعیل‌زاده\",Ansichten eines Clowns,https://images.gr-assets.com/books/1394632139l/326272.jpg,4.05,4225,\"fiction, classics\",\"Includes the full German text, accompanied by German-English vocabulary.\nNotes and a detailed introduction in English put the work in its social and\nhistorical context.\"\r\n5868,6161,18209468,Laura McHugh,The Weight of Blood,https://images.gr-assets.com/books/1395611141l/18209468.jpg,3.73,15533,\"mystery, fiction\",The Weight of BloodLaura McHugh\r\n5869,6162,110396,Julia Quinn,When He was Wicked,https://images.gr-assets.com/books/1274212205l/110396.jpg,4.03,24085,\"romance, fiction\",\"In every life there is a turning point . . . A moment so tremendous, so\nsharp and breathtaking, that one knows one's life will never be the same.\nFor Michael Stirling, London's most infamous rake, that moment came the\nfirst time he laid eyes on Francesca Bridgerton. A fter a lifetime of\nchasing women, of smiling slyly as they chased him, of allowing himself to\nbe caught but never permitting his heart to become engaged, he took one\nlook at Francesca Bridgerton and fell so fast and hard into love it was a\nwonder he managed to remain standing. Unfortunately for Michael, however,\nFrancesca's surname was to remain Bridgerton for only a mere thirty-six\nhours longer—the occasion of their meeting was, lamentably, a supper\ncelebrating her imminent wedding to his cousin. But that was then . . . Now\nMichael is the earl and Francesca is free, but still she thinks of him as\nnothing other than her dear friend and confidant. Michael dares not speak\nto her of his love . . . until one dangerous night, when she steps\ninnocently into his arms and passion proves stronger than even the most\nwicked of secrets . . .\"\r\n5870,6163,10852027,Sue Grafton,V is for Vengeance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198242l/10852027.jpg,3.93,18402,\"mystery, fiction\",\"A spiderweb of dangerous relationships lies at the heart of V is for\nVengeance, Sue Grafton's daring new Kinsey Millhone novel. A woman with a\nmurky past who kills herself-or was it murder? A spoiled kid awash in\ngambling debt who thinks he can beat the system. A lovely woman whose life\nis about to splinter into a thousand fragments. A professional shoplifting\nring working for the Mob, racking up millions from stolen goods. A\nwandering husband, rich and ruthless. A dirty cop so entrenched on the\nforce he is immune to exposure. A sinister gangster, conscienceless and\nbrutal. A lonely widower mourning the death of his lover, desperate for\nanswers, which may be worse than the pain of his loss. A private detective,\nKinsey Millhone, whose thirty-eighth-birthday gift is a punch in the face\nthat leaves her with two black eyes and a busted nose. And an elegant and\npowerful businessman whose dealings are definitely outside the law: the\nmagus at the center of the web. V: Victim. Violence. Vengeance.\"\r\n5871,6164,303460,Margaret Peterson Haddix,Among the Betrayed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963304l/303460.jpg,4.06,19964,\"fiction, fantasy\",\"What does it mean to save yourself? Nina Idi -- a third child in a society\nwhere families are allowed only two children -- has been betrayed by the\nboy she loved, and arrested by the Population Police for exposing other\nalleged third children. Angry and confused, Nina knows only one thing for\nsure: She is innocent of the charges. But now she is faced with the most\ndifficult choice of her life: Get three other prisoners to admit they are\nshadow children and be spared herself, or refuse to cooperate and be\nkilled. The options are clear. The choice, Nina discovers, is not....\"\r\n5872,6165,22322,William Gibson,Spook Country,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442535360l/22322._SY475_.jpg,3.66,14855,\"fiction, thriller\",\"Multilingual Tito engages in sensitive information transfers from his\nsingle-room warehouse apartment, while investigative journalist Hollis\nfrets over his start-up magazine's censure of its own promotions, and\nprescription drug addict Milgrim wonders about the military connections of\nan enigmatic benefactor. 250,000 first printing.\"\r\n5873,6166,534289,\"Anonymous, Richard Wilhelm, Cary F. Baynes, C.G. Jung\",易 [Yì],https://images.gr-assets.com/books/1406503668l/534289.jpg,4.18,12781,\"philosophy, classics\",\"易 [Yì]Anonymous, Richard Wilhelm, Cary F. Baynes, C.G. Jung\"\r\n5874,6167,153492,John Buchan,The Thirty-Nine Steps,https://images.gr-assets.com/books/1391320797l/153492.jpg,3.6,12704,\"fiction, classics\",The Thirty-Nine StepsJohn Buchan\r\n5875,6168,10252302,Joan Didion,Blue Nights,https://images.gr-assets.com/books/1319148558l/10252302.jpg,3.75,15852,\"memoir, nonfiction\",\"Shares the author's observations about her daughter as well as her own\nthoughts and fears about having children and growing old, in a personal\naccount that discusses her daughter's wedding and her feelings of failure\nas a parent.\"\r\n5876,6169,48484,Peter Watts,Blindsight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924412l/48484.jpg,3.99,14583,\"fiction, horror\",BlindsightPeter Watts\r\n5877,6171,7619398,\"Scott Snyder, Stephen King, Rafael Albuquerque\",\"American Vampire, Volume 1\",https://images.gr-assets.com/books/1389666348l/7619398.jpg,3.98,17578,\"comics, horror\",\"\"\"A new vampire for a new century. Cunning, ruthless, and rattlesnake mean,\nSkinner Sweet has a reputation for cussedness as long as he is ornery. But\nas the first vampire conceived on American soil, he's not your usual\ncreature of the night. Stronger, fiercer and powered by the sun, Sweet is\nthe first of a new breed of bloodsucker: the American Vampire. Forty-five\nyears after rising from his grave, Sweet finds himself in 1920s Los\nAngeles, where the young and beautiful are drawn like moths to the burning\nlights of Hollywood. Something beyond simple human greed is at work here,\nhowever, as struggling young actress Pearl Jones is about to discover. When\nher movie-star dreams are transformed into a bloody nightmare, Sweet\nprovides her only chance for survival as well as the power to take revenge\"\"\n-- Page [4] cover.\"\r\n5878,6172,3080212,John Sandford,Heat Lightning,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436355708l/3080212._SY475_.jpg,4.16,16507,\"mystery, thriller\",\"Summoned by Lucas Davenport to investigate a pair of murders in which the\nvictims are found with lemons in their mouths, Minnesota Bureau of Criminal\nApprehension investigator Virgil Flowers struggles to find a connection\nthat could prevent additional killings. Reprint.\"\r\n5879,6173,16619,\"Alexis de Tocqueville, Isaac Kramnick, Gerald Bevan\",De la démocratie en Amérique,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206188l/16619.jpg,3.99,15917,\"history, philosophy\",\"A study of America's national government, egalitarian ideals, and character\noffers reflections on the effect of majority rule on the rights of\nindividuals and provides insight into the rewards and responsibilities of a\ndemocratic government, in a new translation that also includes Two Weeks in\nthe Wilderness, the author's description of the Iroquois, and Excursion to\nLake Oneida. Original.\"\r\n5880,6174,43932,Harlan Coben,Drop Shot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442497652l/43932._SY475_.jpg,3.92,17128,\"mystery, fiction\",\"Investigating the killing of a burned-out tennis star, sports agent Myron\nBolitar uncovers a connection between the victim and a rising star from the\nwrong side of the tracks, while a corrupt senator and organized crime watch\nhis every move.\"\r\n5881,6175,8951,Darren Shan,\"The Lake of Souls (Cirque Du Freak, #10)\",https://images.gr-assets.com/books/1255988654l/8951.jpg,4.19,16803,\"fantasy, horror\",\"\"\"If you step through after Harkat, you might never come back. Is your\nfriend worth such an enormous risk?\"\" Darren and Harkat face monstrous\nobstacles on their desperate quest to the Lake of Souls. Will they survive\nthe savage journey? And what awaits them in the murky waters of the dead?\nBe careful what you fish for...\"\r\n5882,6176,16081754,A. Meredith Walters,Find You in the Dark,https://images.gr-assets.com/books/1359627731l/16081754.jpg,3.98,24615,\"romance, contemporary\",\"Pursuing an absolutely ordinary life of normal friends and ambitions before\nfalling in love with Clayton, Maggie finds the strength of their shared\nbond tested by his dark past and inner demons. By the best-selling author\nof Bad Rep. Original.\"\r\n5883,6177,4313522,Erica Bauermeister,The School of Essential Ingredients,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442453239l/4313522._SY475_.jpg,3.78,16853,\"fiction, contemporary\",\"Gathering at Lillian's Restaurant for a weekly cooking class, a young\nmother struggles with the growing demands of her family, an Italian kitchen\ndesigner works to adapt to life in America and a widower mourns the loss of\nhis wife to breast cancer. Reprint. A best-selling novel.\"\r\n5884,6179,3276012,Bernard Cornwell,Azincourt ,https://images.gr-assets.com/books/1327151016l/3276012.jpg,4.11,14098,\"fiction, history\",\"\"\"The greatest writer of historical adventures today\"\" (Washington Post)\ntackles his richest, most thrilling subject yet: the heroic tale of\nAgincourt. One of the most dramatic victories in British history, the\nbattle of Agincourt—immortalized by Shakespeare in Henry V—pitted\nundermanned and overwhelmed English forces against a French army determined\nto keep their crown out of Henry's hands. Here Bernard Cornwell resurrects\nthe legend of the battle and the \"\"band of brothers\"\" who fought on that\nfateful October day in 1415. An epic of redemption, Agincourt follows a\ncommoner, a king, and a nation's entire army on an improbable mission to\ntest the will of God and reclaim what is rightfully theirs—an exhilarating\nstory of survival and slaughter that is, at once, a brilliant work of\nhistory and a triumph of imagination.\"\r\n5885,6180,30512,Roddy Doyle,Paddy Clarke Ha Ha Ha,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168077668l/30512.jpg,3.75,15044,\"fiction, contemporary\",\"Life as seen through the eyes of a ten-year-old Irish boy, Patrick Clarke,\nis a poignant voyage through a bewildering, ever-changing world of family,\nfriends, dreams, and growing up. Winner of the Booker Prize. Reprint. Tour.\"\r\n5886,6181,77699,Anne Tyler,Dinner at the Homesick Restaurant,https://images.gr-assets.com/books/1502218870l/77699.jpg,3.82,17203,\"fiction, contemporary\",\"Eighty-five-year-old Pearl Tull recalls the desertion of her husband and\nher attempts to raise three children, who must come to terms with\nthemselves and their father after their mother's death.\"\r\n5887,6182,787660,V.C. Andrews,Heaven,https://images.gr-assets.com/books/1321683934l/787660.jpg,4.01,17289,\"fiction, horror\",\"From the legendary New York Times bestselling author of Flowers in the\nAttic and My Sweet Audrina (now Lifetime movies) comes the first book in\nthe Castell Family series—for fans of Emma Donoghue (Room) and Kay Hooper\n(Amanda). Of all the folks on the mountain, the Casteel children are the\nlowest. Even the families that buy them think so. Heaven Leigh Casteel may\nbe the prettiest, smartest girl in the backwoods, but her cruel father and\nweary stepmother work her like a mule. For the sake of her brother Tom and\nthe other little ones, Heaven clings to the hope that someday she can show\nthe world that they are worthy of love and respect. But when the children’s\nstepmother can’t take it anymore and abandons the family, Heaven’s father\nhatches a scheme that will alter her young life forever. Being sold to a\nstrange couple is just the beginning; ripping away the thin veneer of\ncivilization and learning the adult secrets of the world around her means\nHeaven must abandon someone, too—the child she was, to become the woman her\nmother never had the chance to be.\"\r\n5888,6183,47881,Jenny Nimmo,\"Charlie Bone and the Hidden King (The Children of the Red King, # 5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183822l/47881.jpg,3.98,18899,\"fantasy, fiction\",\"Classic magic and mystery from one of Britain's best-loved authors of\nfantasy adventure. Perfect for fans of Harry Potter, Eva Ibbotson, Cornelia\nFunke's Inkheart and Shane Hegarty's Darkmouth. An Academy for magic and\nspecial talents. A destiny unfulfilled. A secret legacy. Charlie Bone\nawakes one morning to find the city covered with snow and all the animals\ngone. Could the discovery of an ancient mirror, and the movement of the\nshadow in the Red King's portrait have something to do with it? Then a\nstrange girl appears outside Charlie's house. Can he trust her, and will\nshe perhaps lead him to find someone he lost long before the animals? The\nfifth instalment of the international best-selling series from Jenny Nimmo\nstarring Charlie Bone. Have you collected all of the Charlie Bone series?\nMidnight for Charlie Bone Charlie Bone and the Time Twister Charlie Bone\nand the Blue Boa Charlie Bone and the Castle of Mirrors Charlie Bone and\nthe Hidden King Charlie Bone and the Wilderness Wolf Charlie Bone and the\nShadow of Badlock Charlie Bone and the Red Knight Also look out for The\nSnow Spider trilogy. 'Dark, funny, crackling with magic' - author Artemis\nCooper on Midnight for Charlie Bone 'A fast moving, dialogue driven romp\nwith plenty of cliff-hangers for those first hooked into reading by Harry\nPotter' - Bookseller on Midnight for Charlie Bone Jenny Nimmo is the\nacclaimed author of the Charlie Bone series. She has won several\nsignificant awards for her children's fiction, including the Nestle\nSmarties Book Prize and the Tir na n-Og Welsh Arts Council award for The\nSnow Spider. She lives in Wales with her husband, David.\"\r\n5889,6184,18825,Martin Amis,Money,https://images.gr-assets.com/books/1367084993l/18825.jpg,3.71,14703,\"fiction, classics\",\"While simultaneously shooting his first feature film in New York and living\na decadent lifestyle, John Self, one of London's top commercial directors,\ndiscovers how distasteful the pursuit of pleasure can be.\"\r\n5890,6185,216131,John Sandford,Secret Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348127756l/216131.jpg,4.25,16964,\"mystery, fiction\",\"When a wealthy banker is shot during a hunting trip, Lucas Davenport\nsuspects murder.\"\r\n5891,6186,34871,\"Chris Ryall, Gabriel Rodríguez, Clive Barker\",Clive Barker's The Great and Secret Show: Volume 1 (Clive Barker's the Great and Secret Show),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923469l/34871.jpg,4.21,15599,\"horror, fantasy\",\"The beginning of a battle between good and evil that will span many decades\nand different dimensions is presented in the first volume of an adaptation\nof horror master Clive Barker's epic journey into the fantastic.\"\r\n5892,6187,754713,Arthur Conan Doyle,His Last Bow: Some Reminiscences of Sherlock Holmes,https://images.gr-assets.com/books/1368588782l/754713.jpg,4.27,20057,\"mystery, classics\",\"During the dark days of World War I, a young British soldier asked Arthur\nConan Doyle what Sherlock Holmes was doing to assist in the war effort.\nThat encounter reputedly inspired the story \"\"His Last Bow,\"\" in which the\ncelebrated detective is drawn from his retirement to reunite with the ever-\nfaithful Dr. Watson for their final challenge, unmasking a German spy.\nSeven additional short stories, originally published in The StrandMagazine,\nrecount episodes leading up to the master sleuth's grand finale. \"\"The\nBruce-Partington Plans,\"\" also involves espionage, this time in an earlier\nsetting and concerning the recovery of purloined plans for building a\nsubmarine. Other mysteries find Watson and Holmes pursuing a deposed\ndictator, unraveling a crime of passion, tracking down a foreign crime\nsyndicate, outwitting a poisoner, investigating an heiress's disappearance,\nand interrupting their vacation in Cornwall to solve a devilish case of\nmurder and madness.\"\r\n5893,6188,761575,\"Brian Herbert, Kevin J. Anderson\",Dune: House Atreides,https://images.gr-assets.com/books/1403181106l/761575.jpg,3.69,16739,\"fiction, fantasy\",\"Book One of the Epic Prequel to the Classic Novel Dune--A Major Motion\nPicture Step into the universe of Frank Herbert's Dune, one of the greatest\nscience fiction novels of all time. Before Paul Atreides became Muad'Dib,\nthe dynamic leader who unified the wild Fremen on the desert planet known\nas Dune . . . Before the evil Baron Harkonnen overthrew House Atreides and\nsent Paul and his mother, Jessica, fleeing into the deadly wasteland of\nsand . . . Before the secrets of the spice and the sandworms were\ndiscovered . . . There was another story . . . The tale of young Leto\nAtreides learning to become a ruler in the shadow of his great father. The\ntale of Baron Vladimir Harkonnen, ruthless tyrant who becomes a pawn of\nBene Gesserit breeding schemes. The tale of Pardot Kynes, ambitious\nplanetologist dispatched to the sands of Arrakis to understand the origins\nof the spice melange, the most valuable substance in the known universe.\nAnd the tale of Crown Prince Shaddam Corrino, whose lust for power leads\nhim to plot the assassination of his own father and to create a plan that\nwill replace the spice and disrupt the Imperium forever . . . Dune: House\nAtreides begins the epic worldwide bestselling trilogy that tells of the\ngeneration before Dune and sows the seeds of great heroes, vile enemies,\nand terrible tyrants. Look for the entire prequel series DUNE: HOUSE\nATREIDES * DUNE: HOUSE HARKONNEN * DUNE: HOUSE CORRINO\"\r\n5894,6189,244572,Diana Wynne Jones,Charmed Life ,https://images.gr-assets.com/books/1396706429l/244572.jpg,3.95,21896,\"fantasy, fiction\",\"A bewitching comic fantasy by a master of the supernatural Cat doesn't mind\nliving in the shadow of his sister, Gwendolen, the most promising young\nwitch ever seen on Coven Street. But trouble starts brewing the moment the\ntwo orphans are summoned to live in Chrestomanci Castle. Frustrated that\nthe witches of the castle refuse to acknowledge her talents, Gwendolen\nconjures up a scheme that could throw whole worlds out of whack.\n\"\"Altogether a delightful book.\"\" Times Literary Supplement. \"\"The concept is\ningenious.\"\" The Horn Book.\"\r\n5895,6190,229432,Charles Dickens,The Posthumous Papers of the Pickwick Club,https://images.gr-assets.com/books/1360795072l/229432.jpg,3.82,17080,\"fiction, ebooks\",The Posthumous Papers of the Pickwick ClubCharles Dickens\r\n5896,6191,2615008,Joseph O'Neill,Netherland,https://images.gr-assets.com/books/1344205853l/2615008.jpg,3.4,13314,\"fiction, contemporary\",\"Abandoned amid the offbeat inhabitants of the Chelsea Hotel when his\nEnglish wife and son return to London following September 11th, Hans, a\nbanker originally from the Netherlands, struggles to find himself in his\nadopted country, until he stumbles upon a vibrant New York cricket\nsubculture and the charismatic Chuck Ramkissoon. Longlisted for the Man\nBooker Prize. Reprint.\"\r\n5897,6192,75020,Steve Berry,The Romanov Prophecy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187735l/75020.jpg,3.9,17052,\"thriller, fiction\",\"After the Russian people vote to bring back the Tsar, to be chosen from the\ndistant relatives of Nicholas II, attorney Miles Lord heads for Moscow to\nperform a background check on one of the candidates, but his assignment\nturns unexpectedly dangerous.\"\r\n5898,6193,6660747,Larissa Ione,Ecstasy Unveiled,https://images.gr-assets.com/books/1327876614l/6660747.jpg,4.36,23366,\"paranormal, romance\",\"To earn his freedom and save his sister's life, Lore, a Seminus half-breed\ndemon, must assassinate a human for his dark master, but his mission is\nthwarted by Idess, an wild earthbound angel sworn to protect the human he\nis targeting by any means necessary. (Paranormal romance). Original.\"\r\n5899,6194,1096390,Alan Bennett,The Uncommon Reader ,https://images.gr-assets.com/books/1317064291l/1096390.jpg,3.82,16957,\"fiction, contemporary\",The Uncommon Reader Alan Bennett\r\n5900,6195,22911,\"Franz Kafka, بهرام مقدادی\",Amerika,https://images.gr-assets.com/books/1327894257l/22911.jpg,3.73,14500,\"fiction, classics\",Depicts the tragicomic misadventures of a young immigrant in New York.\r\n5901,6196,831829,\"Steve Niles, Ben Templesmith\",30 Days of Night,https://images.gr-assets.com/books/1178747918l/831829.jpg,3.81,15532,\"comics, horror\",\"30 Days of NightSteve Niles, Ben Templesmith\"\r\n5902,6197,197459,Erin Hunter,Sunset,https://images.gr-assets.com/books/1363488668l/197459.jpg,4.35,20148,\"fantasy, fiction\",SunsetErin Hunter\r\n5903,6198,9666241,\"يوسف زيدان, Youssef Ziedan\",النبطي,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1289296320l/9666241.jpg,3.43,11218,\"history, fiction\",\"النبطييوسف زيدان, Youssef Ziedan\"\r\n5904,6199,11045709,Hillary Jordan,When She Woke,https://images.gr-assets.com/books/1358274814l/11045709.jpg,3.67,19553,\"fiction, religion\",\"In the future, abortion has become a crime as a series of events threatens\nthe existence of the United States. One woman wakes up to discover that her\nskin color has been changed to red as punishment for having the procedure\ndone. Now she must embark on a dangerous journey in order to find refuge\nfrom a hostile and threatening society.\"\r\n5905,6200,300226,Sidney Sheldon,The Naked Face,https://images.gr-assets.com/books/1398003487l/300226.jpg,3.51,13862,\"fiction, thriller\",\"Judd Stevens is a psychoanalyst faced with the most critical case of his\nlife. If he does not penetrate the mind of a murderer he will find himself\narrested for murder or murdered himself... Two people closely involved with\nDr. Stevens have already been killed. Is one of the doctor's patients\nresponsible? Someone overwhelmed by his problems? A neurotic driven by\ncompulsion? A madman? Before the murderer strikes again, Judd must strip\naway the mask of innocence the criminal wears, uncover the inner emotions,\nfears, and desires, to expose...\"\r\n5906,6201,93726,Meg Cabot,Princess in Training,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470703l/93726.jpg,3.7,23199,\"romance, contemporary\",Princess in TrainingMeg Cabot\r\n5907,6202,1566053,\"Christopher Hitchens, Titus Lucretius Carus, Omar Khayyám, Thomas Hobbes, Baruch Spinoza, David Hume, James Boswell, Percy Bysshe Shelley, George Eliot, Charles Darwin, Leslie Stephen, Anatole France, Mark Twain, Joseph Conrad, Thomas Hardy, Emma Goldman, H.P. Lovecraft, Carl Van Doren, H.L. Mencken, Sigmund Freud, Albert Einstein, George Orwell, John Betjeman, Chapman Cohen, Bertrand Russell, Philip Larkin, Martin Gardner, Carl Sagan, John Updike, John Leslie Mackie, Michael Shermer, A.J. Ayer, Daniel C. Dennett, Charles Templeton, Richard Dawkins, Victor J. Stenger, Elizabeth S.  Anderson, Penn Jillette, Ian McEwan, Steven Weinberg, Salman Rushdie, Ibn Warraq, Sam Harris, A.C. Grayling, Ayaan Hirsi Ali, John Stuart Mill, Karl Marx\",The Portable Atheist: Essential Readings for the Non-believer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435405001l/1566053._SY475_.jpg,4.02,14209,\"religion, philosophy\",\"Presents excerpts on the subject of religion from the writings of such\nnotable non-believers as John Stuart Mill, Karl Marx, Charles Darwin, Mark\nTwain, H. L. Mencken, Albert Einstein, Richard Dawkins, and Salman Rushdie.\"\r\n5908,6203,7715664,Larissa Ione,Sin Undone,https://images.gr-assets.com/books/1344263648l/7715664.jpg,4.35,22815,\"paranormal, romance\",Sin UndoneLarissa Ione\r\n5909,6204,10238,Fritjof Capra,The Tao of Physics: An Exploration of the Parallels Between Modern Physics and Eastern Mysticism,https://images.gr-assets.com/books/1327908532l/10238.jpg,3.96,12576,\"science, philosophy\",\"Studies similarities between the concept of a harmonious universe that\nemerges from the theories of modern physics and the vision of a\ncontinuously interactive world conceived by Eastern mystics.\"\r\n5910,6206,26158341,Kathryn Croft,The Girl With No Past,https://images.gr-assets.com/books/1440440726l/26158341.jpg,3.59,15572,\"fiction, thriller\",\"Fourteen years running from your past. Today it catches up. A gripping\npsychological thriller for fans of Gone Girl and The Girl on the Train.\nLeah Mills lives a life of a fugitive - kept on the run by one terrible day\nfrom her past. It is a lonely life, without a social life or friends until\n- longing for a connection - she meets Julian. For the first time she dares\nto believe she can live a normal life. Then, on the fourteenth anniversary\nof that day, she receives a card. Someone knows the truth about what\nhappened. Someone who won't stop until they've destroyed the life Leah has\ncreated. But is Leah all she seems? Or does she deserve everything she\ngets? Everyone has secrets. But some are deadly.\"\r\n5911,6207,18077752,Jeff VanderMeer,Acceptance,https://images.gr-assets.com/books/1403941598l/18077752.jpg,3.58,13765,\"fiction, horror\",\"In the cold winter of Area X, a new team embarks across the border on a\nmission to find a member of a previous expedition; and as they press deeper\ninto the unknown the threat to the outside world becomes even more\ndaunting.\"\r\n5912,6208,12958487,Kristen Ashley,Lady Luck,https://images.gr-assets.com/books/1327912930l/12958487.jpg,4.44,28620,\"romance, contemporary\",Lady LuckKristen Ashley\r\n5913,6209,6609714,Elizabeth Eulberg,The Lonely Hearts Club,https://images.gr-assets.com/books/1479699351l/6609714.jpg,3.83,18208,\"romance, contemporary\",\"Fed up with boys and the way they have treated her and her friends, high\nschool junior Penny Lane--named after the Beatles song--forms a club whose\nmembers vow to stop dating, but the repercussions are surprising.\"\r\n5914,6210,107776,Julie Garwood,Ransom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429128307l/107776.jpg,4.33,22116,\"romance, fiction\",\"For fans of Scottish medieval romances comes this beloved and classic page-\nturner from #1 New York Times bestselling author Julie Garwood. In the dark\ndays after the death of Richard the Lionhearted, lives and lands would fall\ninto upheaval at the hands of a power-hungry British ruler and his violent\nminions. One victim of the scourge is innocent Gillian, who is a mere child\nwhen the cruel and ambitious Baron Alford slaughters her father and tears\nher family apart. Alford, determined to recover a jeweled box for the\ndespotic King John, is furious when the precious treasure slips through his\nfingers—only to be lost for more than a decade. Now a beautiful young\nwoman, Gillian finds the key to resolving her past in handsome Scottish\nchieftains Ramsey Sinclair and Brodick Buchanan. With the cunning and\ncourage of the daring Scotsmen, and with the friendship of a new ally,\nBridgid KirkConnell, Gillian at last fights the unscrupulous Baron Alford,\nlaying claim to her home, her family, and her father's reputation. But in\nthe presence of the mighty warrors, Gillian and Bridgid discover that\ndesire can be a weapon of conquest, betrayal can slay trust in a heartbeat,\nand the greatest risk of all is to surrender to unexpected love.\"\r\n5915,6211,16316,Agatha Christie,The Big Four,https://images.gr-assets.com/books/1372506728l/16316.jpg,3.6,17820,\"mystery, crime\",The Big FourAgatha Christie\r\n5916,6212,16424,Agatha Christie,Peril at End House,https://images.gr-assets.com/books/1327938128l/16424.jpg,3.89,19463,\"mystery, fiction\",Peril at End HouseAgatha Christie\r\n5917,6213,23346719,Renée Knight,Disclaimer,https://images.gr-assets.com/books/1417259186l/23346719.jpg,3.58,11329,\"fiction, thriller\",\"A brilliantly conceived, deeply unsettling psychological thriller— already\nan international sensation—about a woman haunted by secrets, the consuming\ndesire for revenge, and the terrible price we pay when we try to hide the\ntruth. Finding a mysterious novel at her bedside plunges documentary\nfilmmaker Catherine Ravenscroft into a living nightmare. Though ostensibly\nfiction, The Perfect Stranger recreates in vivid, unmistakable detail the\nterrible day she became hostage to a dark secret, a secret that only one\nother person knew—and that person is dead. Now that the past is catching up\nwith her, Catherine’s world is falling apart. Her only hope is to confront\nwhat really happened on that awful day . . . even if the shocking truth\nmight destroy her.\"\r\n5918,6215,10314376,\"Umberto Eco, Richard Dixon\",Il cimitero di Praga,https://images.gr-assets.com/books/1327902035l/10314376.jpg,3.39,11974,\"fiction, mystery\",\"Il cimitero di PragaUmberto Eco, Richard Dixon\"\r\n5919,6216,7176578,Yann Martel,Beatrice and Virgil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442463960l/7176578._SY475_.jpg,3.13,15076,\"fiction, contemporary\",Beatrice and VirgilYann Martel\r\n5920,6217,885744,Hiroyuki Takei,シャーマンキング 1,https://images.gr-assets.com/books/1444234846l/885744.jpg,4.14,14043,\"fantasy, comics\",シャーマンキング 1Hiroyuki Takei\r\n5921,6218,187049,Robert Jordan,\"Eye of the World (The Wheel of Time, #1-1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388376369l/187049.jpg,4.26,13686,\"fantasy, fiction\",\"Eye of the World (The Wheel of Time, #1-1)Robert Jordan\"\r\n5922,6219,33426,Michio Kaku,\"Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, and the Tenth Dimension\",https://images.gr-assets.com/books/1404794967l/33426.jpg,4.11,13941,\"science, nonfiction\",\"An exploration of the theory of hyperspace by a professor of theoretical\nphysics discusses the superstring theory and the concept of a jigsaw-puzzle\nuniverse\"\r\n5923,6220,835623,Steven Pinker,How the Mind Works,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387741747l/835623.jpg,3.97,13516,\"science, psychology\",\"Winner of the Los Angeles Times Book Prize and selected as a New York Times\nNotable Book of the Year, a national best-seller illuminates the evolution\nand operation of the human brain and the meaning of human nature. Reprint.\"\r\n5924,6222,8139321,Karen Kingsbury,Leaving,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438243168l/8139321._SY475_.jpg,4.22,13616,\"christian, fiction\",LeavingKaren Kingsbury\r\n5925,6223,3763,Ian Fleming,Live and Let Die,https://images.gr-assets.com/books/1327953982l/3763.jpg,3.62,14230,\"fiction, thriller\",\"When a crooked trail of smuggled gold leads James Bond to Harlem, New York,\nhe encounters Mr. Big, a gangland kingpin who uses voodoo to control his\nvast criminal empire.\"\r\n5926,6225,584637,\"John Stuart Mill, George Sher\",Utilitarianism,https://images.gr-assets.com/books/1405624617l/584637.jpg,3.65,14699,\"philosophy, classics\",\"This expanded edition of John Stuart Mill's \"\"Utilitarianism\"\" includes the\ntext of his 1868 speech to the British House of Commons defending the use\nof capital punishment in cases of aggravated murder. The speech is\nsignificant both because its topic remains timely and because its arguments\nillustrate the applicability of the principle of utility to questions of\nlarge-scale social policy.\"\r\n5927,6226,11861815,Andrew  Smith,Winger,https://images.gr-assets.com/books/1367927656l/11861815.jpg,4.08,18596,\"contemporary, fiction\",\"Two years younger than his classmates at a prestigious boarding school,\n14-year-old Ryan Dean West grapples with living in Opportunity Hall, the\ndorm for troublemakers; falling for his female best friend who thinks of\nhim as just a kid; and playing wing on the Varsity rugby team with some of\nhis frightening new dormmates, including the biggest bully on the team.\"\r\n5928,6227,25142924,Mitch Albom,The Magic Strings of Frankie Presto,https://images.gr-assets.com/books/1426364478l/25142924.jpg,4.32,15701,\"fiction, music\",The Magic Strings of Frankie PrestoMitch Albom\r\n5929,6228,23157777,Robin Hobb,Fool's Quest,https://images.gr-assets.com/books/1420496252l/23157777.jpg,4.53,12374,\"fantasy, fiction\",\"After nearly killing his oldest friend, the Fool, and finding his daughter\nstolen away by those who were once targeting the Fool, FitzChivalry Farseer\nis out for blood. And who better to wreak havoc than a highly trained and\ndeadly former royal assassin? Fitz might have let his skills go fallow over\nhis years of peace, but such things, once learned, are not so easily\nforgotten. And nothing is more dangerous than a man who has nothing left to\nlose.\"\r\n5930,6229,127515,Jack Finney,The Body Snatchers,https://images.gr-assets.com/books/1344394499l/127515.jpg,3.88,14700,\"horror, classics\",The Body SnatchersJack Finney\r\n5931,6230,824508,Melvin Burgess,Junk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347695254l/824508.jpg,3.87,11971,\"fiction, contemporary\",JunkMelvin Burgess\r\n5932,6231,22381892,\"Bill O'Reilly, Martin Dugard\",Killing Patton: The Strange Death of World War II's Most Audacious General,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401543704l/22381892.jpg,4.08,13706,\"history, biography\",\"Readers around the world have thrilled to Killing Lincoln, Killing Kennedy,\nand Killing Jesus—riveting works of nonfiction that journey into the heart\nof the most famous murders in history. Now from Bill O’Reilly, anchor of\nThe O’Reilly Factor, comes the most epic book of all in this multimillion-\nselling series: Killing Patton. General George S. Patton, Jr. died under\nmysterious circumstances in the months following the end of World War II.\nFor almost seventy years, there has been suspicion that his death was not\nan accident—and may very well have been an act of assassination. Killing\nPatton takes readers inside the final year of the war and recounts the\nevents surrounding Patton’s tragic demise, naming names of the many\npowerful individuals who wanted him silenced.\"\r\n5933,6232,8686068,\"Keigo Higashino, Alexander O. Smith\",容疑者Xの献身 [Yōgisha X no kenshin],https://images.gr-assets.com/books/1312051518l/8686068.jpg,4.05,12336,\"mystery, fiction\",これほど深い愛情に、これまで出会ったことがなかった。いやそもそも、この世に存在することさえ知らなかった。運命の数式。命がけの純愛が生んだ犯罪。\r\n5934,6233,227778,Jenny Nimmo,Charlie Bone and the Time Twister ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1256042249l/227778.jpg,3.88,18374,\"fantasy, fiction\",\"Classic magic and mystery from one of Britain's best-loved authors of\nfantasy adventure. Perfect for fans of Harry Potter, Eva Ibbotson, Cornelia\nFunke's Inkheart and Shane Hegarty's Darkmouth. An Academy for magic and\nspecial talents. A destiny unfulfilled. A secret legacy. The second\ninstalment of the international best-selling series from Jenny Nimmo\nstarring Charlie Bone. January 1916. On the coldest night in memory, Henry\nYewbeam's cousin Zeke tricks him into using the Time Twister, a beautiful\nmarble full of shining colours that draws him into the future. And when he\nemerges, he meets Charlie Bone . . . Have you collected all of the Charlie\nBone series? Midnight for Charlie Bone Charlie Bone and the Time Twister\nCharlie Bone and the Blue Boa Charlie Bone and the Castle of Mirrors\nCharlie Bone and the Hidden King Charlie Bone and the Wilderness Wolf\nCharlie Bone and the Shadow of Badlock Charlie Bone and the Red Knight Also\nlook out for The Snow Spider trilogy. 'Dark, funny, crackling with magic' -\nauthor Artemis Cooper on Midnight for Charlie Bone 'A fast moving, dialogue\ndriven romp with plenty of cliff-hangers for those first hooked into\nreading by Harry Potter' - Bookseller on Midnight for Charlie Bone Jenny\nNimmo is the acclaimed author of the Charlie Bone series. She has won\nseveral significant awards for her children's fiction, including the Nestle\nSmarties Book Prize and the Tir na n-Og Welsh Arts Council award for The\nSnow Spider. She lives in Wales with her husband, David.\"\r\n5935,6234,23965,Irvine Welsh,Porno,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167484379l/23965._SY475_.jpg,3.78,13049,\"fiction, contemporary\",\"The Trainspotting lads are back...and in worse shape than ever. In the last\ngasp of youth, Simon \"\"Sick Boy\"\" Williamson is back in Edinburgh. He taps\ninto one last great scam: directing and producing a porn film. To make it\nwork, he needs bedfellows: the lovely Nikki Fuller-Smith, a student with\nambition, ego, and troubles to rival his own; old pal Mark Renton; and a\nmotley crew that includes the neighborhood's favorite ex-beverage salesman,\n\"\"Juice\"\" Terry. In the world of Porno, however, even the cons are conned.\nSick Boy and Renton jockey for top dog. The out-of-jail and in-for-revenge\nBegbie is on the loose. But it's the hapless, drug-addled Spud who may be\nspreading the most trouble. Porno is a novel about the Trainspotting crew\nten years further down the line: still scheming, still scamming, still\nfighting for the first-class seats as the train careens at high velocity\nwith derailment looming around the next corner.\"\r\n5936,6235,106129,Jenny Nimmo,\"Charlie Bone and the Invisible Boy (The Children of the Red King, # 3)\",https://images.gr-assets.com/books/1328867540l/106129.jpg,3.89,19080,\"fantasy, fiction\",\"Charlie and his friends unite to rescue Ollie, a boy who was turned\ninvisible and made to live in the attics at Bloor's Academy more than a\nyear ago, but they are hindered by a mysterious new student who lives with\nCharlie's aunts.\"\r\n5937,6236,13603717,Hugh Howey,First Shift: Legacy,https://images.gr-assets.com/books/1334528415l/13603717.jpg,4.21,15136,\"fiction, ebooks\",First Shift: LegacyHugh Howey\r\n5938,6237,6455256,\"James Patterson, Michael Ledwidge\",Worst Case,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439067365l/6455256._SY475_.jpg,4,16461,\"mystery, fiction\",\"Worst CaseJames Patterson, Michael Ledwidge\"\r\n5939,6238,93797,Daniel Silva,The Unlikely Spy,https://images.gr-assets.com/books/1309203396l/93797.jpg,4.22,14928,\"fiction, thriller\",The Unlikely SpyDaniel Silva\r\n5940,6239,5111039,Ellen Schreiber,\"Royal Blood (Vampire Kisses, #6)\",https://images.gr-assets.com/books/1318011052l/5111039.jpg,4.09,20049,\"paranormal, romance\",\"Royal Blood (Vampire Kisses, #6)Ellen Schreiber\"\r\n5941,6240,15018,Neale Donald Walsch,\"Conversations with God, an uncommon dialogue, book 3\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440034217l/15018._SX318_.jpg,4.18,12301,\"religion, philosophy\",\"Conversations with God, an uncommon dialogue, book 3Neale Donald Walsch\"\r\n5942,6241,24728470,Patti Smith,M Train,https://images.gr-assets.com/books/1429289871l/24728470.jpg,3.94,15634,\"memoir, music\",M TrainPatti Smith\r\n5943,6242,91440,Louise Erdrich,Love Medicine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442951349l/91440._SY475_.jpg,3.98,15351,\"fiction, contemporary\",\"The stunning first novel in Louise Erdrich's Native American series, Love\nMedicine tells the story of two families, the Kashpaws and the Lamartines.\nWritten in Erdrich's uniquely poetic, powerful style, it is a multi-\ngenerational portrait of strong men and women caught in an unforgettable\ndrama of anger, desire, and the healing power that is love medicine.\"\r\n5944,6243,7932146,Brad Meltzer,The Inner Circle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442612340l/7932146._SY475_.jpg,3.76,14706,\"crime, history\",\"After an archivist goes against security protocol to show an ex-crush the\npresident's private room at the National Archives, the two stumble upon a\ndictionary once owned by George Washington and are soon entangled in a web\nof conspiracy and murder. By the #1 best-selling author of The Book of\nFate.\"\r\n5945,6244,669570,Jessica Day George,\"Dragon Slippers (Dragon Slippers, #1)\",https://images.gr-assets.com/books/1316730294l/669570.jpg,4.22,20916,\"fantasy, fiction\",\"Orphaned after a fever epidemic, Creel befriends a dragon and unknowingly\ninherits an object that can either save or destroy her kingdom.\"\r\n5946,6245,26025989,Carrie Fisher,The Princess Diarist,https://images.gr-assets.com/books/1496315917l/26025989.jpg,3.66,18655,\"memoir, nonfiction\",\"The Hollywood icon best known for her role in \"\"Star Wars\"\" shares\ninterconnected essays exploring her life as the child of Hollywood royalty,\nadventures on the sets of \"\"Star Wars,\"\" and struggles with biploar disorder.\"\r\n5947,6246,8447255,Steven Erikson,The Crippled God,https://images.gr-assets.com/books/1320388198l/8447255.jpg,4.44,14472,\"fantasy, fiction\",\"Tavore Paran struggles to hold her army together in order to combat a\nfearsome alien force, while the gods threaten to once again unleash dragons\nto destroy the world.\"\r\n5948,6247,13545345,Rachel Renée Russell,Tales From a Not-So-Graceful Ice Princess,https://images.gr-assets.com/books/1370064558l/13545345.jpg,4.38,13618,\"comics, romance\",\"\"\"Nikki Maxwell isn't at all surprised to find out that her crush Brandon\nvolunteers at a local animal shelter. He's such a sweet guy--of course he\nwants to help those adorable puppies! Then Brandon tells her that the\nshelter is in danger of closing, and Nikki knows she can't let that happen.\nEspecially when she discovers a shocking secret about Brandon that makes\nkeeping that shelter open more important than ever. So Nikki and her\nfriends Chloe and Zoey enter an ice skating competition to help raise money\nfor the shelter, but (big surprise) MacKenzie has to stick her nose in and\ncause trouble so that she can be the one to swoop in and save the day. No\nway will Nikki let that happen: She'll just have to come up with some extra\ncreative ideas this time!\"\"--\"\r\n5949,6248,7124095,Lisa McMann,Gone ,https://images.gr-assets.com/books/1269866682l/7124095.jpg,3.72,24393,\"paranormal, fantasy\",\"While Janie ponders her future with Cabe, knowing that her abilities as a\ndream-catcher means eventual blindness and crippling, the father she never\nknew is hospitalized with brain trauma and seems to need her help.\"\r\n5950,6249,105703,\"Brian K. Vaughan, Niko Henrichon\",Pride of Baghdad,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.88,17203,\"comics, fiction\",\"Inspired by true events, a graphic novel examines life on the streets of\nwar-torn Iraq, raising questions about the meaning of liberation through\nthe experiences of four lions who escaped from the Baghdad Zoo during a\nraid.\"\r\n5951,6250,23929479,Michel Houellebecq,Soumission ,https://images.gr-assets.com/books/1421431410l/23929479.jpg,3.63,6967,\"fiction, contemporary\",Soumission Michel Houellebecq\r\n5952,6251,1897,Jon Krakauer,Eiger Dreams: Ventures Among Men and Mountains,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388341505l/1897.jpg,3.97,14010,\"nonfiction, travel\",Eiger Dreams: Ventures Among Men and MountainsJon Krakauer\r\n5953,6252,29397,Richard K. Morgan,Woken Furies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198991l/29397.jpg,4.1,14540,\"fiction, thriller\",\"Takeshi Kovacs battles against biomachines gone wild, searches for a\ncenturies-old missing weapons system, and endures the betrayal of people he\nonce trusted.\"\r\n5954,6254,7719355,Gail Carriger,Blameless,https://images.gr-assets.com/books/1293436281l/7719355.jpg,4.01,26921,\"fantasy, paranormal\",\"After she leaves her husband, the pregnant Lady Maccon is dismissed from\nthe Shadow Council, attacked by mechanical ladybugs, and becomes the target\nof vampires, forcing her to escape to Italy in search of the mysterious\nTemplars.\"\r\n5955,6255,12499,Jenny McCarthy,Belly Laughs: The Naked Truth About Pregnancy and Childbirth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442810081l/12499._SY475_.jpg,3.72,12382,\"nonfiction, memoir\",\"Oh, the joys of pregnancy! There's the gassiness, constipation, queasiness,\nand exhaustion, the forgetfulness, crankiness, and the constant worry. Of\ncourse, no woman is spared the discomforts and humiliations of pregnancy,\nbut most are too polite to complain or too embarrassed to talk about them.\nNot Jenny McCarthy! In the New York Times best-selling Belly Laughs,\nactress and new mother Jenny McCarthy reveals the naked truth about the\ntremendous joys, the excruciating pains, and the unseemly disfigurement\nthat go along with pregnancy. Never shy, frequently crude, and always\nlaugh-out-loud funny, McCarthy covers it all in the grittiest of girlfriend\ndetail. From morning sickness and hormonal rage, to hemorrhoids, pregnant\nsex, and the torture and sweet relief that is delivery, Belly Laughs is\nmust-read comic relief for anyone who is pregnant, who has ever been\npregnant, is trying to get pregnant, or, indeed, has ever been born!\"\r\n5956,6256,567704,Clive Barker,Imajica,https://images.gr-assets.com/books/1333844729l/567704.jpg,4.16,15600,\"fantasy, horror\",\"From master storyteller Clive Barker comes an epic tale of myth, magic, and\nforbidden passion—complete with new illustrations and a new Appendix.\nImajica is an epic beyond compare: vast in conception, obsessively detailed\nin execution, and apocalyptic in its resolution. At its heart lies the\nsensualist and master art forger, Gentle, whose life unravels when he\nencounters Judith Odell, whose power to influence the destinies of men is\nvaster than she knows, and Pie 'oh' pah, an alien assassin who comes from a\nhidden dimension. That dimension is one of five in the great system called\nImajica. They are worlds that are utterly unlike our own, but are ruled,\npeopled, and haunted by species whose lives are intricately connected with\nours. As Gentle, Judith, and Pie 'oh' pah travel the Imajica, they uncover\na trail of crimes and intimate betrayals, leading them to a revelation so\nstartling that it changes reality forever.\"\r\n5957,6257,53343,William Zinsser,On Writing Well: The Classic Guide to Writing Nonfiction,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538764251l/53343.jpg,4.23,14564,\"nonfiction, business\",\"On Writing Well has been praised for its sound advice, its clarity and the\nwarmth of its style. It is a book for everybody who wants to learn how to\nwrite or who needs to do some writing to get through the day, as almost\neverybody does in the age of e-mail and the Internet. Whether you want to\nwrite about people or places, science and technology, business, sports, the\narts or about yourself in the increasingly popular memoir genre, On Writing\nWell offers you fundamental priciples as well as the insights of a\ndistinguished writer and teacher. With more than a million copies sole,\nthis volume has stood the test of time and remains a valuable resource for\nwriters and would-be writers.\"\r\n5958,6258,134353,Thomas A. Harris,I'm OK-You're OK,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348146688l/134353.jpg,3.7,12756,\"psychology, nonfiction\",\"Transactional Analysis delineates three observable ego-states (Parent,\nAdult, and Child) as the basis for the content and quality of interpersonal\ncommunication. \"\"Happy childhood\"\" notwithstanding, says Harris, most of us\nare living out the Not ok feelings of a defenseless child, dependent on ok\nothers (parents) for stroking and caring. At some stage early in our lives\nwe adopt a \"\"position\"\" about ourselves and others that determines how we\nfeel about everything we do. And for a huge portion of the population, that\nposition is \"\"I'm Not OK -- You're OK.\"\" This negative \"\"life position,\"\"\nshared by successful and unsuccessful people alike, contaminates our\nrational Adult capabilities, leaving us vulnerable to inappropriate\nemotional reactions of our Child and uncritically learned behavior\nprogrammed into our Parent. By exploring the structure of our personalities\nand understanding old decisions, Harris believes we can find the freedom to\nchange our lives.\"\r\n5959,6259,22026,Mario Puzo,The Sicilian,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427584738l/22026.jpg,3.94,13800,\"fiction, crime\",\"After his three-year exile in Sicily, Michael Corleone is charged to return\nto America with Salvatore Giuliano, a young Sicilian bandit whose\nactivities have angered the head of the Sicilian Mafia. Reprint.\"\r\n5960,6260,25776210,Patricia Briggs,Fire Touched,https://images.gr-assets.com/books/1441912000l/25776210.jpg,4.35,18123,\"fantasy, paranormal\",\"Fighting the most powerful werewolf in their alternate-world's history,\ncoyote shapeshifter Mercy Thompson and her alpha werewolf mate, Adam,\ndiscover a fire-touched human child stolen long ago by the fae whose\nexistence may help prevent a war.\"\r\n5961,6261,34312,Maeve Binchy,The Copper Beech,https://images.gr-assets.com/books/1355114025l/34312.jpg,3.89,16931,\"fiction, romance\",The Copper BeechMaeve Binchy\r\n5962,6262,1422926,\"Jane Werner Watson, Corinne Malvern\",Frosty the Snow Man,https://images.gr-assets.com/books/1309642075l/1422926.jpg,4.25,16375,\"fiction, classics\",\"Frosty the Snow ManJane Werner Watson, Corinne Malvern\"\r\n5963,6263,2696181,S.A. Bodeen,The Compound,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546080394l/2696181.jpg,3.87,17687,\"fiction, mystery\",The CompoundS.A. Bodeen\r\n5964,6264,12663,James A. Michener,The Covenant,https://images.gr-assets.com/books/1310975573l/12663.jpg,4.17,15610,\"history, fiction\",\"Volume 2 of 2; The story begins 1500 years ago. The Bushmen are facing a\ncrisis. the beautiful lake, long the center of their lives, is drying up,\nand they must move across a hostile African desert to seek better\nconditions.\"\r\n5965,6265,141828,Boris Vian,L’écume des jours,https://images.gr-assets.com/books/1332596603l/141828.jpg,4.02,13580,\"fiction, classics\",L’écume des joursBoris Vian\r\n5966,6266,10637748,Kimberly Derting,The Pledge,https://images.gr-assets.com/books/1327878861l/10637748.jpg,3.8,25322,\"fantasy, romance\",\"In a dystopian kingdom where the classes are separated by the languages\nthey speak, Charlaina \"\"Charlie\"\" Hart has a secret gift that is revealed\nwhen she meets a mysterious young man named Max.\"\r\n5967,6267,85491,Nora Roberts,The Villa,https://images.gr-assets.com/books/1351343027l/85491.jpg,3.94,20328,\"romance, fiction\",\"A proud family's deadly secrets are exposed in this passionate tale of two\nrivals who, while toiling in the Napa Valley vineyards, discover they have\nmuch to learn-from each other, and about themselves.\"\r\n5968,6269,180426,Christine Feehan,Dark Desire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425949367l/180426.jpg,4.2,21606,\"romance, paranormal\",\"“The Queen of paranormal romance.” —USA Today #1 New York Times bestselling\nauthor Christine Feehan has enchanted legions of paranormal romance fans\nwith her sensation series featuring sexy immortal Carpathian heroes—a\nremarkable breed of vampire. In this stunning new edition of Dark Desire, a\nbeautiful doctor is perilously drawn to the far Carpathian Mountains by a\nmysterious stranger who needs her medical expertise. Despite the danger,\nshe cannot deny her deep connection to this mystery man—or he, his raging\nneed for her. Discover the breathtaking power of supernatural love in this\ndarkly sensuous classic from Christine Feehan.\"\r\n5969,6270,13170596,Dan Wells,Fragments,https://images.gr-assets.com/books/1352943797l/13170596.jpg,4.12,19108,\"fiction, fantasy\",\"Author Dan Wells is back with the sequel to the sci-fi blockbuster\nPartials, which Pittacus Lore called a \"\"thrilling sci-fi adrenaline rush,\nwith one of the most compelling and frightening visions of Earth's future\nI've seen yet.\"\" After discovering the cure for RM, Kira Walker sets off on\na terrifying journey into the ruins of postapocalyptic America and the\ndarkest desires of her heart in order to uncover the means—and a reason—for\nhumanity's survival. Dan Wells extends his richly imagined, gritty world\nand introduces new memorable characters in this second installment in the\nPartials Sequence.\"\r\n5970,6271,10428803,Sarah MacLean,A Rogue by Any Other Name,https://images.gr-assets.com/books/1327928208l/10428803.jpg,3.95,21565,\"romance, fiction\",\"The Marquess of Bourne, the owner of London's most exclusive gaming hell,\nis determined to keep his new wife, the very proper Lady Penelope Marbury,\naway from London's illicit underworld, but finds that she has goals of her\nown.\"\r\n5971,6272,92307,Martin Heidegger,Sein und Zeit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298438455l/92307.jpg,3.99,14383,\"philosophy, nonfiction\",\"Die Abhandlung \"\"Sein und Zeit\"\" erschien zuerst im Frühjahr 1927 in dem von\nEdmund Husserl herausgegebenen \"\"Jahrbuch für Philosophie und\nphänomenologische Forschung\"\", Band VIII, und gleichzeitig als Sonderdruck.\nAls eines der berühmtesten und wirkungsmächtigsten philosophischen Bücher\ndes 20. Jahrhunderts ist es ein unverzichtbarer Quellentext für die\nPhilosophie, übersetzt in über 25 Sprachen der Welt. Dreißig Jahre nach dem\nTod Martin Heideggers (1889-1976) wird sein epochemachendes Hauptwerk über\nden Sinn des Seins nun neu gesetzt aufgelegt, um das Werk seinen\nzahlreichen Leserinnen und Lesern in aller Welt wieder in einem\nansprechenden Druck zu präsentieren. Diese 19. Auflage ist textidentisch,\nzeilen- und seitengleich mit den zuletzt unveränderten Nachdrucken der 15.\nanhand der Gesamtausgabe durchgesehenen Auflage mit den Randbemerkungen aus\ndem Handexemplar des Autors im Anhang.\"\r\n5972,6273,4652,Ernest Hemingway,In Our Time,https://images.gr-assets.com/books/1369859426l/4652.jpg,3.8,14912,\"fiction, classics\",\"THIS COLLECTION OF SHORT STORIES AND VIGNETTES MARKED ERNEST HEMINGWAY'S\nAMERICAN DEBUT AND MADE HIM FAMOUS When In Our Time was published in 1925,\nit was praised by Ford Madox Ford, John Dos Passos, and F. Scott Fitzgerald\nfor its simple and precise use of language to convey a wide range of\ncomplex emotions, and it earned Hemingway a place beside Sherwood Anderson\nand Gertrude Stein among the most promising American writers of that\nperiod. In Our Time contains several early Hemingway classics, including\nthe famous Nick Adams stories \"\"Indian Camp,\"\" \"\"The Doctor and the Doctor's\nWife,\"\" \"\"The Three Day Blow,\"\" and \"\"The Battler,\"\" and introduces readers to\nthe hallmarks of the Hemingway style: a lean, tough prose -- enlivened by\nan car for the colloquial and an eye for the realistic that suggests,\nthrough the simplest of statements, a sense of moral value and a clarity of\nheart. Now recognized as one of the most original short story collections\nin twentieth-century literature, In Our Time provides a key to Hemingway's\nlater works.\"\r\n5973,6274,25078,Jonathan Kozol,Savage Inequalities: Children in America's Schools,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439920769l/25078._SY475_.jpg,4.23,13743,\"nonfiction, history\",\"For two years, beginning in 1988, Jonathan Kozol visited schools in\nneighborhoods across the country, from Illinois to Washington D.C., and\nfrom New York to San Antonio. He spoke with teachers, principals,\nsuperintendents, and, most important, children. What he found was\ndevastating. Not only were schools for rich and poor blatantly unequal, the\ngulf between the two extremes was widening—and it has widened since. The\nurban schools he visited were overcrowded and understaffed, and lacked the\nbasic elements of learning—including books and, all too often, classrooms\nfor the students. In Savage Inequalities, Kozol delivers a searing\nexamination of the extremes of wealth and poverty and calls into question\nthe reality of equal opportunity in our nation's schools.\"\r\n5974,6276,7201,Jeffrey Archer,As The Crow Flies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202784l/7201.jpg,4.05,14415,\"fiction, thriller\",\"Charlie Trumper inherits his grandfather's vegetable barrow and his\nspirited ambition, which drives him to struggle through two World Wars\nwithout losing sight of his dream--building London's largest department\nstore--but a dangerous enemy could destroy everything he has accomplished.\nReprint.\"\r\n5975,6277,142540,Jeffery Deaver,The Empty Chair ,https://images.gr-assets.com/books/1336331745l/142540.jpg,4.06,16751,\"mystery, thriller\",The Empty Chair Jeffery Deaver\r\n5976,6278,18869967,Daphne du Maurier,Jamaica Inn,https://images.gr-assets.com/books/1386605082l/18869967.jpg,3.85,8392,\"classics, fiction\",\"After her mother dies, Mary Yellan goes to live with her aunt and uncle at\nthe mysterious Jamaica Inn where she is terrified by the ruthless\nlawbreakers that frequent the roadhouse\"\r\n5977,6279,428042,Kenneth Oppel,Airborn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350089l/428042.jpg,4.16,18717,\"fantasy, fiction\",\"Sailing toward dawn, and I was perched atop the crow's nest, being the\nship's eyes. We were two nights out of Sydney, and there'd been no weather\nto speak of so far. I was keeping watch on a dark stack of nimbus clouds\noff to the northwest, but we were leaving it far behind, and it looked to\nbe smooth going all the way back to Lionsgate City. Like riding a cloud. .\n. . Matt Cruse is a cabin boy on the Aurora, a huge airship that sails\nhundreds of feet above the ocean, ferrying wealthy passengers from city to\ncity. It is the life Matt's always wanted; convinced he's lighter than air,\nhe imagines himself as buoyant as the hydrium gas that powers his ship. One\nnight he meets a dying balloonist who speaks of beautiful creatures\ndrifting through the skies. It is only after Matt meets the balloonist's\ngranddaughter that he realizes that the man's ravings may, in fact, have\nbeen true, and that the creatures are completely real and utterly\nmysterious. In a swashbuckling adventure reminiscent of Jules Verne and\nRobert Louis Stevenson, Kenneth Oppel, author of the best-selling\nSilverwing trilogy, creates an imagined world in which the air is populated\nby transcontinental voyagers, pirates, and beings never before dreamed of\nby the humans who sail the skies.\"\r\n5978,6281,24473465,Daniel Silva,The English Spy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436032291l/24473465._SY475_.jpg,4.16,7983,\"suspense, crime\",The English SpyDaniel Silva\r\n5979,6282,10431447,\"Colin Meloy, Carson Ellis\",Wildwood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393683769l/10431447.jpg,3.63,18770,\"fantasy, fiction\",\"WildwoodColin Meloy, Carson Ellis\"\r\n5980,6283,9957,Ian McEwan,The Cement Garden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166111732l/9957.jpg,3.57,14418,\"fiction, contemporary\",\"When their mother dies, four children living in an isolated house in London\nfind themselves without guidance for the entire summer\"\r\n5981,6284,28507,\"Margaret Weis, Tracy Hickman\",Serpent Mage,https://images.gr-assets.com/books/1327837018l/28507.jpg,4.06,17270,\"fantasy, fiction\",\"Arriving in a land where humans, elves, and dwarves have learned to live in\npeace, Alfred and Haplo the Patryn realize that they have a much more\npowerful enemy than each other. Reprint.\"\r\n5982,6285,74812,Daniel Tammet,Born on a Blue Day: Inside the Extraordinary Mind of an Autistic Savant,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440235885l/74812._SY475_.jpg,3.84,14287,\"memoir, nonfiction\",\"Traces the inspiring story of an autistic savant with genius-level\nmathematical talents, describing how he was eschewed by his classmates in\nspite of his near-photographic memory and super-human capacity for math and\nlanguage, in a firsthand account that offers insight into how he\nexperiences the world. Reprint. 100,000 first printing.\"\r\n5983,6286,17560674,Rachel Van Dyken,The Bet,https://images.gr-assets.com/books/1362593639l/17560674.jpg,3.85,26437,\"romance, contemporary\",The BetRachel Van Dyken\r\n5984,6287,8564644,Conor Grennan,Little Princes: One Man's Promise to Bring Home the Lost Children of Nepal,https://images.gr-assets.com/books/1279553857l/8564644.jpg,4.25,14765,\"nonfiction, memoir\",Little Princes: One Man's Promise to Bring Home the Lost Children of NepalConor Grennan\r\n5985,6288,968403,Kaui Hart Hemmings,The Descendants,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327991934l/968403.jpg,3.82,14124,\"fiction, contemporary\",\"A descendant of royalty and one of the largest landowners in Hawaii,\nMatthew King struggles to deal with his out-of-control daughters--ten-year-\nold Scottie and seventeen-year-old Alex--as well as his comatose wife, whom\nthey are about to remove from life support.\"\r\n5986,6290,954303,\"Natsumi Ando, Miyuki Kobayashi\",Kitchen no Ohimesama,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390458957l/954303.jpg,4.16,16281,\"manga, romance\",\"Najika, a great cook who loves to make meals for those she cares about, is\non the trail the boy who stole her heart as a child, and the only piece of\nevidence she has leads her to the prestigious Seika Academy.\"\r\n5987,6291,79834,Irving Stone,Lust for Life: A Novel of Vincent Van Gogh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348532272l/79834.jpg,4.19,13082,\"biography, art\",\"A Novel of the life of the tormented genius who put so much of himself into\nhis art that he found it difficult to maintain himself in ordinary society.\"\r\n5988,6292,5585788,Faith Hunter,Skinwalker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400516601l/5585788.jpg,3.89,23233,\"fantasy, paranormal\",\"Jane Yellowrock, a skinwalker of Cherokee descent who can turn into any\ncreature she desires--and is the last of her kind--is hired by one of the\noldest vampires in New Orleans to hunt a powerful rogue vampire who is\nkilling his fellow undead. Original.\"\r\n5989,6293,648194,Mary Kay Andrews,Hissy Fit,https://images.gr-assets.com/books/1355940330l/648194.jpg,3.96,16406,\"romance, fiction\",\"Keeley Murdock's wedding to A.J. Jernigan should have been the social event\nof the season. But all bets are off when she catches her fiancÉ doing the\ndeed with her maid of honor at the country club rehearsal dinner. The\nwedding's off, too, as Keeley pitches the hissy fit of the century, earning\nherself instant notoriety in the small town of Madison, Georgia. Now A.J.'s\nunscrupulous banking family is bringing financial pressure to bear on\nKeeley's interior design business. But a redheaded stranger in a vintage\nyellow Cadillac is riding to her rescue. Will Mahoney, the new owner of a\nfailing local bra plant, is about to offer the designing woman just what\nshe needs: a plum decorating assignment, a chance to clear her name, and a\ngolden opportunity to give her cheating varmint of an ex-fiancÉ the\ncomeuppance he so richly deserves.\"\r\n5990,6294,11343348,\"James Patterson, Mark T. Sullivan\",Private Games ,https://images.gr-assets.com/books/1498199246l/11343348.jpg,3.83,14358,\"mystery, fiction\",\"Private Games James Patterson, Mark T. Sullivan\"\r\n5991,6295,109901,Craig Johnson,The Cold Dish,https://images.gr-assets.com/books/1398028367l/109901.jpg,4.14,14491,\"mystery, fiction\",\"After decades of peace between the white and Native American communities of\nearly American Wyoming, a young man who was once convicted for raping a\nCheyenne girl is found dead, prompting sheriff Walt Longmire, his deputy\nVictoria Moretti, and friend Henry Standing Bear to investigate. A first\nnovel. 25,000 first printing.\"\r\n5992,6296,21060,Sherwood Smith,Crown Duel ,https://images.gr-assets.com/books/1360507771l/21060.jpg,4.19,19546,\"fantasy, romance\",\"To fulfill their father's dying wish, teenage Countess Meliara and her\nbrother Branaric organize a revolution against a greedy king, but when the\nwar is over, Meliara finds herself in the middle of royal politics.\"\r\n5993,6297,731804,\"Victoria Kann, Elizabeth Kann\",Pinkalicious,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348527891l/731804.jpg,4.05,16585,\"fiction, fantasy\",\"Pink, pink, pink. More than anything, Pinkalicious loves pink, especially\npink cupcakes. Her parents warn her not to eat too many of them, but when\nPinkalicious does . . . she turns pink! What to do? This sparkling picture\nbook, filled with such favorites as pink bubble gum, pink peonies, pink\ncotton candy, and pink fairy princess dresses, celebrates all things pink\nwhile showing that being yourself is best of all.\"\r\n5994,6298,5936,\"Pablo Neruda, Ilan Stavans\",The Poetry of Pablo Neruda,https://images.gr-assets.com/books/1417605511l/5936.jpg,4.44,14596,\"poetry, classics\",\"A collection of poems by the Nobel Prize-winning author features\ntranslations, many of them specially commissioned, of almost six hundred\nworks.\"\r\n5995,6299,2872,Tracy Chevalier,Falling Angels,https://images.gr-assets.com/books/1327995250l/2872.jpg,3.55,18465,\"fiction, history\",Falling AngelsTracy Chevalier\r\n5996,6300,194086,Madeleine Wickham,Sleeping Arrangements,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388327886l/194086.jpg,3.24,15689,\"fiction, romance\",\"Unaware that a mutual friend has offered both of them his luxury villa in\nSpain, the families of two overworked people find themselves maneuvering\naround one anothers' vacation plans, a situation that is further\ncomplicated by a secret shared history. By the author of The Gatecrasher.\n150,000 first printing.\"\r\n5997,6301,9975679,Ilsa J. Bick,Monsters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181386l/9975679.jpg,3.94,19532,\"horror, fiction\",MonstersIlsa J. Bick\r\n5998,6302,91582,\"Jane Austen, Robert William Chapman\",Lady Susan,https://images.gr-assets.com/books/1328864949l/91582.jpg,3.56,17003,\"classics, fiction\",\"Beautiful, flirtatious, and recently widowed, Lady Susan Vernon seeks an\nadvantageous second marriage for herself, while attempting to push her\ndaughter into a dismal match. A magnificently crafted novel of Regency\nmanners and mores that will delight Austen enthusiasts with its wit and\nelegant expression.\"\r\n5999,6304,35354,Mary Higgins Clark,Remember Me ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348180116l/35354.jpg,3.91,16963,\"mystery, fiction\",\"A killer turns a young family's dream holiday into an unfathomable\nnightmare....Menley Nichols and her husband, Adam, a criminal attorney,\nrent a house on Cape Cod, in the hope of restoring their faltering\nmarriage. The birth of their daughter, Hannah, has revitalized their\nrelationship, but Menley has never stopped blaming herself for the\naccidental death of her two-year-old son. The serenity of the Cape promises\na new start. In Remember House, an eighteenth-century landmark with a\nsinister past, strange incidents force Menley to relive the accident that\nkilled her son, and she begins to fear for Hannah's safety. Then Adam takes\non a client suspected of murder when his wealthy young bride of only three\nmonths drowns in a storm -- and the family is drawn into a rising tide of\nterror. A confrontation on a dark, rain-swept beach leads to a harrowing\nclimax that only Mary Higgins Clark could have created.\"\r\n6000,6305,1107001,\"Julee Rosso, Sheila Lukins, Michael McLaughlin\",\"The Silver Palate Cookbook: Delicious Recipes, Menus, Tips, Lore From Manhattan's Celebrated  Gourmet  Food Shop.\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387707639l/1107001.jpg,4.06,15267,\"cookbooks, nonfiction\",\"Provides recipes for appetizers, soups, pasta, main dishes, vegetables,\nsalads, breads, and desserts, and includes tips on planning menus and\nentertaining\"\r\n6001,6306,106648,Sidney Sheldon,Memories of Midnight,https://images.gr-assets.com/books/1501701194l/106648.jpg,3.68,14196,\"fiction, thriller\",\"In THE OTHER SIDE OF MIDNIGHT, they played the ultimate game of love, lust,\nand death. Now, in MEMORIES OF MIDNIGHT, the survivors meet to play one\nlast time... Shadowed by tragedy and burdened by amnesia, a beautiful woman\ndesperately tries to return to reality. She is Catherine Douglas, destined\nto once again challenge the cruel, charismatic power of Constantin Demiris,\nthe Greek shipping tycoon who murdered Catherine's husband. Now, in the\nglittering capitals and carefree playgrounds of post-war Europe, Demiris\nsets his deadly sights on Catherine -- and the single, treacherous secret\nwhose shattering truth is known to her alone...\"\r\n6002,6307,460635,Keri Hulme,The Bone People,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348988500l/460635.jpg,4.06,15110,\"fiction, contemporary\",\"A novel of the charged relationships between European and Polynesian\ndescendents in New Zealand explores the fluctuating bonds connecting three\nSouth Sea natives as they struggle to endure.\"\r\n6003,6308,295305,\"Michelle Paver, Geoff Taylor\",Wolf Brother,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924715l/295305.jpg,4.15,15673,\"fiction, fantasy\",\"6,000 years in the past, twelve-year-old Tarak and his guide, a wolf cub,\nset out on a dangerous journey to fulfill an oath the boy made to his dying\nfather--to travel to the Mountain of the World Spirit seeking a way to\ndestroy a demon-possessed bear that threatens all the clans.\"\r\n6004,6309,17608111,Brian  McClellan,The Crimson Campaign,https://images.gr-assets.com/books/1363102695l/17608111.jpg,4.35,14292,\"fantasy, fiction\",The Crimson CampaignBrian  McClellan\r\n6005,6310,15984268,Gavin Extence,The Universe Versus Alex Woods,https://images.gr-assets.com/books/1352436020l/15984268.jpg,4.08,12573,\"fiction, contemporary\",\"*Perfect for fans of A BOY MADE OF BLOCKS* **RICHARD AND JUDY summer\nbookclub read 2013, Amazon Rising star, and shortlisted for the Desmond\nElliott Prize** *** A funny and touching story of an unlikely friendship\nand an improbable journey*** Alex Woods knows that he hasn't had the most\nconventional start in life. He knows that growing up with a clairvoyant\nsingle mother won't endear him to the local bullies. He also knows that\neven the most improbable events can happen - he's got the scars to prove\nit. What he doesn't know yet is that when he meets ill-tempered, reclusive\nwidower Mr Peterson, he'll make an unlikely friend. Someone who tells him\nthat you only get one shot at life. That you have to make the best possible\nchoices. So when, aged seventeen, Alex is stopped at Dover customs with 113\ngrams of marijuana, an urn full of ashes on the passenger seat, and an\nentire nation in uproar, he's fairly sure he's done the right thing. A tale\nof an unexpected friendship, an unlikely hero and an improbable journey,\nAlex's story treads the fine line between light and dark, laughter and\ntears. And it might just strike you as one of the funniest, most\nheartbreaking novels you've ever read.\"\r\n6006,6311,296125,Marguerite Henry,\"Stormy, Misty's Foal\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388902693l/296125.jpg,4.06,17412,\"fiction, classics\",\"A foal, born in the aftermath of a great storm, and her famous mother help\nraise money to repair the storm damage on Chincoteague Island and restore\nthe herds of wild ponies on Assateague Island.\"\r\n6007,6312,6735082,\"Tsugumi Ohba, Takeshi Obata, Diana Hammermeister\",バクマン。 1,https://images.gr-assets.com/books/1346333264l/6735082.jpg,4.18,14391,\"manga, comics\",\"バクマン。 1Tsugumi Ohba, Takeshi Obata, Diana Hammermeister\"\r\n6008,6313,73084,Susan Elizabeth Phillips,\"Heaven, Texas\",https://images.gr-assets.com/books/1308646849l/73084.jpg,4.08,23857,\"romance, contemporary\",\"Come heck or high water, Gracie Snow is determined to drag the legendary\nex-jock Bobby Tom Denton back home to Heaven, Texas, to begin shooting his\nfirst motion picture. Despite his dazzling good looks and killer charm,\nBobby Tom has reservations about being a movie star -- and no plans to\ncooperate with a prim and bossy Ohio wallflower whom he can't get off his\nmind or out of his life. Instead, the hell-raising playboy decides to make\nher over from plain Jane to Texas wildcat. But nothing's more dangerous\nthan a wildcat with an angel's heart in a town too small for a bad boy to\nhide. And all hell breaks loose when two unforgettable people discover\nlove, laughter, passion -- and a match that can only be made in Heaven.\"\r\n6009,6314,639787,Agatha Christie,The Murder on the Links,https://images.gr-assets.com/books/1384562979l/639787.jpg,3.8,18834,\"mystery, fiction\",\"An urgent cry for help brings Hercule Poirot to France. But he arrives too\nlate to save his client, whose brutally stabbed body now lies facedown in a\nshallow grave on a golf course. But why is the dead man wearing an overcoat\nthat is too big for him? And for whom was the impassioned love letter in\nthe pocket? Before Poirot can answer these questions, the case is turned\nupside down by the discovery of a second, identically murdered corpse.…\"\r\n6010,6315,12331767,J.G. Ballard,High-Rise,https://images.gr-assets.com/books/1358752559l/12331767.jpg,3.68,9054,\"fiction, classics\",\"\"\"Harsh and ingenious! High Rise is an intense and vivid bestiary, which\nlingers unsettlingly in the mind.\"\" —Martin Amis, New Statesman When a class\nwar erupts inside a luxurious apartment block, modern elevators become\nviolent battlegrounds and cocktail parties degenerate into marauding\nattacks on “enemy” floors. In this visionary tale, human society slips into\nviolent reverse as once-peaceful residents, driven by primal urges, re-\ncreate a world ruled by the laws of the jungle.\"\r\n6011,6316,18304,\"Friedrich Nietzsche, H.L. Mencken\",Der Antichrist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166894583l/18304._SY475_.jpg,3.91,10332,\"religion, classics\",\"Nietzsche's famous attack upon established Christianity and religion is\nbrought to the reader in this inexpensive and compact edition of The\nAntichrist, introduced and translated by H.L. Mencken. The incendiary tone\nthroughout separates this book from most other well-regarded philosophical\ntexts; even in comparison to Nietzsche's earlier works, the tone of\nindignation and conviction behind each argument made is plain to see. There\nis little by way of lofty ponderousness; the book presents its arguments\nand points at a blistering pace, placing this book among the most\naccessible and easily understood works of philosophy. The Antichrist\ncomprises a total of sixty-two short chapters, each containing a distinct\nphilosophical argument or angle upon the targets of Christianity, organised\nreligion, and those who masquerade as faithful but are in actuality\nanything but. Pointedly opposed to the notions of Christian morality and\nvirtue, Nietzsche vehemently sets out a case for the faith's redundancy and\nlack of necessity in human life. This edition contains the authoritative\nintroduction and translation of renowned journalist, author and Nietzsche\nacolyte H.L. Mencken. Mencken's own native style shared similarities with\nthat of Nietzsche, and the two were strongly aligned philosophically. Over\na century later, it is this translation which remains the most\nauthoritative and tonally correct.\"\r\n6012,6317,110890,Lawrence Wright,The Looming Tower: Al-Qaeda and the Road to 9/11,https://images.gr-assets.com/books/1320471617l/110890.jpg,4.38,12737,\"history, nonfiction\",\"Explores both the American and Arab sides of the September 11th terrorist\nattacks in an account of the people, ideas, events, and intelligence\nfailures that led to the tragedies.\"\r\n6013,6318,16685,Robert A. Heinlein,The Cat Who Walks through Walls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440037870l/16685._SY475_.jpg,3.7,17892,\"fiction, fantasy\",\"Join forces with a swashbuckling duo of inter-galactic space rogues\nstruggling to save the future and history of civilization.\"\r\n6014,6320,38505,Charles Bukowski,Hollywood,https://images.gr-assets.com/books/1361998529l/38505.jpg,3.78,12923,\"fiction, classics\",HollywoodCharles Bukowski\r\n6015,6321,2999282,Jeff Lindsay,Dexter by Design,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348308831l/2999282.jpg,3.72,16086,\"fiction, mystery\",\"Newlywed blood-spatter analyst Dexter Morgan investigates the work of a\nMiami-area serial killer who has disguised his latest victim as a sunbather\non the beach.\"\r\n6016,6322,7073,John Irving,A Son of the Circus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561342994l/7073.jpg,3.61,14878,\"fiction, contemporary\",\"Twenty years after he had been the examining physician of two victims of a\ntranssexual serial killer, Dr. Farrokh Daruwalla leaves Toronto to return\nto his native Bombay and comes face to face with his own past and the\nmurderer when he encounters a colorful cast of circus characters. Reader's\nGuide included. Reprint.\"\r\n6017,6324,84052,Sidney Sheldon,\"Morning, Noon & Night\",https://images.gr-assets.com/books/1344267638l/84052.jpg,3.62,12679,\"fiction, thriller\",\"A power revered by presidents and kings, a fortune unsurpassed by few\npeople on earth: all that ended for Harry Stanford the day he mysteriously-\nand fatally-plunged from his luxury yacht into the Mediterranean Sea. Then,\nback home in Boston, as the family gathers to grieve for his memory and to\nwar over his legacy, a stunningly beautiful young woman appears. She claims\nto be Stanford's long-lost daughter and entitled to her share of his\nestate. Now, flaming with intrigue and passion through the glamorous\npreserves of the world's super rich, the ultimate game of wits begins, for\nstakes too dazzling and deadly to imagine.\"\r\n6018,6325,238141,J.D. Robb,Memory in Death ,https://images.gr-assets.com/books/1299457743l/238141.jpg,4.31,19613,\"mystery, romance\",Memory in Death J.D. Robb\r\n6019,6326,46114,Virginia Woolf,The Waves,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439492320l/46114._SY475_.jpg,4.14,15965,\"classics, fiction\",\"One of Woolf's most experimental novels, The Waves presents six characters\nin monologue - from morning until night, from childhood into old age -\nagainst a background of the sea. The result is a glorious chorus of voices\nthat exists not to remark on the passing of events but to celebrate the\nconnection between its various individual parts.\"\r\n6020,6327,280410,Jeffrey Toobin,The Nine: Inside the Secret World of the Supreme Court,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441671544l/280410._SY475_.jpg,4.06,12426,\"history, nonfiction\",\"Drawing on exclusive interviews with the Supreme Court justices and other\ninsiders, a behind-the-scenes look at the powerful, often secretive world\nof the Supreme Court offers profiles of each justice and how their\nindividual styles affect the way in which they wield their power and\ndiscusses how the Court operates, the recent appointments of John Roberts\nand Samuel Alito, and the Court's influence on American life. Reprint.\n250,000 first printing.\"\r\n6021,6328,9724798,Sarah Jio,The Violets of March,https://images.gr-assets.com/books/1299776782l/9724798.jpg,3.8,17379,\"fiction, romance\",\"The author offers a riveting novel about the heartbreak of a lost love. A\nfirst novel. Original.\"\r\n6022,6329,8574333,\"Kyung-Sook Shin, 신경숙, Chi-Young Kim\",엄마를 부탁해,https://images.gr-assets.com/books/1320413213l/8574333.jpg,3.76,12130,\"fiction, contemporary\",\"엄마를 부탁해Kyung-Sook Shin, 신경숙, Chi-Young Kim\"\r\n6023,6330,243298,David Eddings,The Shining Ones,https://images.gr-assets.com/books/1403187182l/243298.jpg,3.95,19083,\"fantasy, fiction\",\"As he seeks to recover Bhelliom, the lost jewel of power, Sparhawk meets\nthe Shining Ones, beings whose touch brings death\"\r\n6024,6331,105973,\"Brian Michael Bendis, Olivier Coipel, Tim Townsend, Rick Magyar, John Dell, Scott Hanna, Frank D'Armata, Chris Eliopoulos, James Taveras, Omar Otieku, Tom Valente, Esad Ribic\",House of M,https://images.gr-assets.com/books/1409502209l/105973.jpg,3.97,14960,\"comics, fiction\",\"House of MBrian Michael Bendis, Olivier Coipel, Tim Townsend, Rick Magyar, John Dell, Scott Hanna, Frank D'Armata, Chris Eliopoulos, James Taveras, Omar Otieku, Tom Valente, Esad Ribic\"\r\n6025,6332,6178065,Heather Brewer,Tenth Grade Bleeds,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437688794l/6178065._SY475_.jpg,4.24,17579,\"fantasy, paranormal\",\"It's another awful year at Bathory High for Vladimir Tod. The evil vampire\nD'Ablo is hunting for the ritual that could steal Vlad's powers. His best\nfriend doesn't want to be his drudge anymore. And it's getting harder for\nVlad to resist feeding on the people around him. When months go by with no\nword from Uncle Otis, and D'Ablo shows up demanding Vlad's father's\njournal, Vlad realizes that having a normal high school year is the least\nof his concerns. Vlad needs to act fast, and even his status as the Pravus\nwon't save him this time.\"\r\n6026,6333,42696,Leon Uris,Trinity: A Novel of Ireland,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388450323l/42696.jpg,4.23,16056,\"fiction, history\",\"From the acclaimed author who enthralled the world with Exodus, Battle Cry,\nQB VII, Topaz, and other beloved classics of twentieth-century fiction\ncomes a sweeping and powerful epic adventure that captures the \"\"terrible\nbeauty\"\" of Ireland during its long and bloody struggle for freedom. It is\nthe electrifying story of an idealistic young Catholic rebel and the\nvaliant and beautiful Protestant girl who defied her heritage to join his\ncause. It is a tale of love and danger, of triumph at an unthinkable cost\n-- a magnificent portrait of a people divided by class, faith, and\nprejudice -- an unforgettable saga of the fires that devastated a majestic\nland . . . and the unquenchable flames that burn in the human heart.\"\r\n6027,6334,667234,Dr. Seuss,The Cat in the Hat Comes Back,https://images.gr-assets.com/books/1332799738l/667234.jpg,3.83,22229,\"fiction, classics\",\"A rhyming story for beginner readers about the adventures of the Cat in the\nHat.\"\r\n6028,6335,316496,Peter Carey,Oscar and Lucinda,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173712561l/316496.jpg,3.72,15139,\"fiction, romance\",\"A rebellious Anglican priest and a teenaged heiress who buys a glass\nfactory in Australia pursue an unlikely romance\"\r\n6029,6336,7058,Alexander McCall Smith,The Good Husband of Zebra Drive,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439612347l/7058._SY475_.jpg,4.06,18329,\"mystery, fiction\",\"Detective Precious Ramotswe has her hands full with her assistant's\nresignation, as well as a set of cases involving unexplained deaths at a\nnearby hospital, an allegedly cheating husband, and thievery at a local\nprinting company.\"\r\n6030,6337,827685,\"Booker T. Washington, Ishmael Reed\",Up from Slavery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178732859l/827685._SY475_.jpg,4.09,15038,\"history, biography\",\"The renowned AfricanAmerican educator documents his struggle for freedom\nand selfrespect and his fight to establish industrial training and\neducational programs for black Americans, in a new edition of the acclaimed\nmemoir, featuring an introduction by Ishmael Reed. Reprint.\"\r\n6031,6338,93796,Daniel Silva,The Secret Servant,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441892772l/93796._SY475_.jpg,4.25,14335,\"fiction, thriller\",\"Gabriel Allon investigates clues pertaining to an Amsterdam-based terrorism\nanalyst who was murdered by a Muslim immigrant, in a case with ties to a\nterrorist organization and the abduction of an ambassador's daughter.\"\r\n6032,6339,11201007,Laura Kaye,Hearts In Darkness,https://images.gr-assets.com/books/1306632316l/11201007.jpg,3.86,20939,\"romance, contemporary\",\"Two strangers...When accountant Makenna James finds herself stranded in a\npitch-black elevator, she can't help but wonder about the stranger stuck\nwith her. All she noticed about him before the lights went out was a dragon\ntattoo; all she knows now is his sexy, gruff voice in the darkness. Four\nhours...Caden Grayson is inked, pierced, scarred on the inside and out-and\nterrified of the dark for reasons he'd rather not remember. Trapped in his\nworst nightmare, only the sweet voice of the red-headed beauty distracts\nhim from his fear. And, oh, man, as the hours pass and the darkness heats\nup, that's nothing compared to her touch.One pitch-black elevator...He's\nall rough edges and she's pin-striped skirts, but in the darkness they open\nup and reach out without any preconceptions to hold them back. But as\nattractions grows and sparks fly, will they feel the same when the lights\ncome back on?\"\r\n6033,6340,61903,Lois McMaster Bujold,Shards of Honor,https://images.gr-assets.com/books/1392767899l/61903.jpg,4.13,16756,\"fantasy, fiction\",\"FIRST BOOK FEATURING CORDELIA NAISMITH. Journey back to where it all\nstarted, from multiple New York Times best selling author, Hugo Award\nwinner, Lois McMaster Bujold. When Cordelia Naismith and her survey crew\nare attacked by a renegade group from Barrayar, she is taken prisoner by\nAral Vorkosigan, commander of the Barrayan ship that has been taken over by\nan ambitious and ruthless crew member. Aral and Cordelia survive countless\nmishaps while their mutual admiration and even stronger feelings emerge.\nAbout Shards of Honor: “All in all, Shards is a worthy effort, and worth\nreading for any fan of SF romance.”—Analog About Lois McMaster Bujold’s\nVorkosigan Saga: “Bujold mixes quirky humor with action [and] superb\ncharacter development…[E]normously satisfying.”—Publishers Weekly. “One of\nsf’s outstanding talents . . . an outstanding series.”—Booklist “. . . an\nintelligent, well-crafted and thoroughly satisfying blend of adventure,\nsociopolitical commentary, scientific experiments, and occasional perils .\n. . with that extra spicing of romance. . . .”—Locus The Vorkosigan Series\nin Story-based Chronological Order Falling Free Shards of Honor Barrayar\nThe Warrior's Apprentice The Vor Game Cetaganda Ethan of Athos Borders of\nInfinity Brothers in Arms Mirror Dance Memory Komarr A Civil Campaign\nDiplomatic Immunity Captain Vorpatril's Alliance CryoBurn Omnibus Editions\nMILES, MYSTERY & MAYHEM contains Cetaganda, Ethan of Athos YOUNG MILES\ncontains The Warrior's Apprentice + stories CORDELIA’S HONOR contains\nShards of Honor, Barayarr MILES, MUTANTS & MICROBES contains Falling Free,\nDiplomatic Immunity MILES IN LOVE contains Komarr, A Civil Campaign MILES\nERRANT contains Brothers in Arms, Mirror Dance\"\r\n6034,6341,71292,\"René Goscinny, Albert Uderzo, Anthea Bell, Derek Hockridge\",Astérix le Gaulois,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433174923l/71292._SX318_.jpg,4.18,16011,\"comics, fiction\",\"When Roman Centurion Crismus Bonus finds out about Getafix's magic potion,\nhe kidnaps the druid to force him to reveal the recipe. So Asterix joins\nhis friend in captivity and together the two plan to whip up a surprise\nwith truly hair-raising effects.\"\r\n6035,6342,112872,Jan Karon,\"A Light in the Window (The Mitford Years, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171663777l/112872.jpg,4.23,17083,\"fiction, christian\",\"Father Tim, rector in a small village, seeks divine intervention when his\nattractive neighbor, an aggressive widow, and his niece are more than he\ncan handle alone\"\r\n6036,6343,16055475,Jessica Sorensen,The Forever of Ella and Micha,https://images.gr-assets.com/books/1363575595l/16055475.jpg,4.1,24776,\"romance, contemporary\",The Forever of Ella and MichaJessica Sorensen\r\n6037,6344,2210921,Lisa Gardner,Say Goodbye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388502668l/2210921.jpg,4.12,16057,\"mystery, thriller\",\"Pregnant teenager Delilah Rose enlists the assistance of FBI agent Kimberly\nQuincy to investigate the disappearances of young women whom no one else\nwill notice are gone, including runaways, high-risk teens, and prostitutes.\"\r\n6038,6345,579143,Gertrude Crampton,Scuffy the Tugboat and His Adventures Down the River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175970914l/579143._SX318_.jpg,4.11,17186,\"fiction, classics\",\"Scuffy feels he is meant for more than the bathtub and gets his chance on a\nsmall stream which leads to a large river and eventually the sea.\"\r\n6039,6346,111021,Erin Hunter,Dawn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399845896l/111021.jpg,4.31,19824,\"fantasy, fiction\",DawnErin Hunter\r\n6040,6347,239388,Mercer Mayer,Just Me and My Dad (Look-Look),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559954647l/239388.jpg,4.19,16315,\"fiction, classics\",\"Father and son go camping, but who is really taking care of whom? Full\ncolor.\"\r\n6041,6348,34760,Robert Fulghum,All I Really Need To Know I Learned in Kindergarten,https://images.gr-assets.com/books/1403541609l/34760.jpg,4.03,15816,\"nonfiction, philosophy\",\"The Unitarian minister reflects on America and its diverse peoples,\neveryday wisdoms, kindnesses, and joys, and everyday life's large meanings.\"\r\n6042,6349,144792,Matthew Reilly,Temple,https://images.gr-assets.com/books/1312054860l/144792.jpg,4.04,14961,\"thriller, fiction\",TempleMatthew Reilly\r\n6043,6350,555500,\"Dave Barry, Ridley Pearson, Greg Call\",Peter and the Secret of Rundoon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442639284l/555500._SX318_.jpg,4.16,18570,\"fantasy, fiction\",\"Peter and the Secret of RundoonDave Barry, Ridley Pearson, Greg Call\"\r\n6044,6351,3858,Sarah Macdonald,Holy Cow: An Indian Adventure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290849l/3858.jpg,3.51,13627,\"travel, memoir\",\"\"\"A rollercoaster ride through a land of chaos and contradiction with a\nwoman on a mission to save her soul, her love life - and her sanity.After\nbackpacking her way around India Sarah Macdonald decides she hates the\ncountry with a passion. When a beggar reads her palm and insists she will\none day return - and for love - she screams 'Never!' But twelve years later\nthe prophecy comes true. When the love of her life is posted to India,\nSarah follows him to the most polluted city on earth, New Delhi. It seems\nlike the ultimate sacrifice for love and it almost kills her - literally.\nAfter being cursed by a naked sadhu smeared in human ashes Sarah almost\ndies from double pneumonia, but not before facing some serious questions\nabout her fragile mortality and inner spiritual void - not to mention some\nunsightly hair loss. It's enough to send a rapidly balding atheist on a\nwild rollercoaster ride through India in search of the meaning of life and\ndeath. With the help of the Dalai Lama, a goddess of healing hugs and a\ncouple of Bollywood stars - among many, many others - Sarah discovers a\nhell of a lot more.\"\"\"\r\n6045,6352,13272498,Tess Gerritsen,Last to Die,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194995l/13272498.jpg,4.1,16036,\"mystery, thriller\",Last to DieTess Gerritsen\r\n6046,6353,6931246,China Miéville,Kraken: An Anatomy,https://images.gr-assets.com/books/1320551670l/6931246.jpg,3.6,16078,\"fantasy, fiction\",\"Deep in the research wing of the Natural History Museum is a prize\nspecimen, something that comes along much less often than once in a\nlifetime: a perfect, and perfectly preserved, giant squid. But what does it\nmean when the creature suddenly and impossibly disappears?\"\r\n6047,6354,10031,Jean-Paul Sartre,Le Mur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348089757l/10031.jpg,4.07,12180,\"philosophy, fiction\",Le MurJean-Paul Sartre\r\n6048,6355,18764826,Lisa Jewell,The House We Grew Up In,https://images.gr-assets.com/books/1407719574l/18764826.jpg,3.88,11546,\"fiction, contemporary\",\"When their picture-perfect Cotswold village family life with a perpetually\nyoung father and hippy mother is shattered by a tragic Easter weekend, four\nsiblings pursue separate adult lives before a reunion reveals astonishing\ntruths. By the author of Before I Met You.\"\r\n6049,6356,13337715,George R.R. Martin,A Dance With Dragons: Part 1 Dreams and Dust,https://images.gr-assets.com/books/1331401651l/13337715.jpg,4.32,11636,\"fantasy, fiction\",\"In the aftermath of a colossal battle, new threats are emerging from every\ndirection. Tyrion Lannister, having killed his father, and wrongfully\naccused of killing his nephew, King Joffrey, has escaped from King's\nLanding with a price on his head.\"\r\n6050,6357,10517947,Brad Thor,Full Black,https://images.gr-assets.com/books/1393773645l/10517947.jpg,4.26,13240,\"fiction, thriller\",\"As terrorists conspire to unleash a series of deadly attacks across America\nand a foreign wet work team targets a famous Hollywood filmmaker,\ncounterterrorism operative Scot Harvath races against time to save the\nUnited States from complete collapse.\"\r\n6051,6359,17488,Enid Blyton,Five on a Treasure Island ,https://images.gr-assets.com/books/1408926754l/17488.jpg,4.06,15877,\"fiction, mystery\",\"The very first Famous Five adventure, featuring Julian, Dick, Anne, not\nforgetting tomboy George and her beloved dog, Timmy! There's a shipwreck\noff Kirrin Island! But where is the treasure? The Famous Five are on the\ntrail - looking for clues - but they're not alone! Someone else has got the\nsame idea. Time is running out for the Famous Five, who will follow the\nclues and get to the treasure first?\"\r\n6052,6360,675905,Elin Hilderbrand,Summer People,https://images.gr-assets.com/books/1317063942l/675905.jpg,3.93,14369,\"fiction, romance\",Summer PeopleElin Hilderbrand\r\n6053,6361,70489,Bill Watterson,There's Treasure Everywhere: A Calvin and Hobbes Collection,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409957304l/70489.jpg,4.74,16766,\"comics, fiction\",\"The popular comic-strip duo roam their many worlds in search of treasure\nand fortune, approaching warp speed, fighting off killer bicycles,\nconducting dad polls, and creating a legion of snowmen and other not-so-\nalien beings. Simultaneous. 1,200,000 first printing.\"\r\n6054,6362,282425,\"Yoko Kamio, 神尾葉子\",花より男子 1,https://images.gr-assets.com/books/1357464446l/282425.jpg,4.12,14295,\"manga, romance\",\"花より男子 1Yoko Kamio, 神尾葉子\"\r\n6055,6363,7841446,Steven Levy,\"In the Plex: How Google Thinks, Works, and Shapes Our Lives\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442810207l/7841446._SY475_.jpg,3.83,18464,\"business, nonfiction\",\"Written with full cooperation from top management, including cofounders\nSergey Brin and Larry Page, this is the inside story behind Google, the\nmost successful and most admired technology company of our time, told by\none of our best technology writers. Few companies in history have ever been\nas successful and as admired as Google, the company that has transformed\nthe Internet and become an indispensable part of our lives. How has Google\ndone it? Veteran technology reporter Steven Levy was granted unprecedented\naccess to the company, and in this revelatory book he takes readers inside\nGoogle headquarters—the Googleplex—to show how Google works. While they\nwere still students at Stanford, Google cofounders Larry Page and Sergey\nBrin revolutionized Internet search. They followed this brilliant\ninnovation with another, as two of Google’s earliest employees found a way\nto do what no one else had: make billions of dollars from Internet\nadvertising. With this cash cow, Google was able to expand dramatically and\ntake on other transformative projects: more efficient data centers, open-\nsource cell phones, free Internet video (YouTube), cloud computing,\ndigitizing books, and much more. The key to Google’s success in all these\nbusinesses, Levy reveals, is its engineering mind-set and adoption of such\nInternet values as speed, openness, experimentation, and risk taking. After\nits unapologetically elitist approach to hiring, Google pampers its\nengineers—free food and dry cleaning, on-site doctors and masseuses—and\ngives them all the resources they need to succeed. Even today, with a\nworkforce of more than 23,000, Larry Page signs off on every hire. But has\nGoogle lost its innovative edge? With its newest initiative, social\nnetworking, Google is chasing a successful competitor for the first time.\nSome employees are leaving the company for smaller, nimbler start-ups. Can\nthe company that famously decided not to be evil still compete? No other\nbook has ever turned Google inside out as Levy does with In the Plex.\"\r\n6056,6364,28923,Kazuo Ishiguro,When We Were Orphans,https://images.gr-assets.com/books/1465820100l/28923.jpg,3.45,13886,\"fiction, mystery\",\"Sent to live in England after the disappearance of his parents, Christopher\nBanks returns to Shanghai, the city of his birth, more than twenty years\nlater to uncover the truth about the tragedy that transformed his\nchildhood.\"\r\n6057,6366,6407014,David Small,Stitches: A Memoir,https://images.gr-assets.com/books/1327728261l/6407014.jpg,4.03,17589,\"memoir, comics\",\"The author recounts in graphic novel format his troubled childhood with a\nradiologist father who subjected him to repeated x-rays and a withholding\nand tormented mother, an environment he fled at the age of sixteen in the\nhopes of becoming an artist.\"\r\n6058,6367,10836810,Ellis Avery,The Last Nude,https://images.gr-assets.com/books/1305496356l/10836810.jpg,3.77,13280,\"fiction, art\",\"Agreeing to model nude for Art Deco painter Tamara de Lempicka in 1927\nParis, young American Rafaela Fano inspires the artist's most iconic Jazz\nAge images and becomes her lover while discovering darker truths about\nTamara's private life.\"\r\n6059,6368,58894,Tamora Pierce,Daja's Book,https://images.gr-assets.com/books/1328860149l/58894.jpg,4.06,22695,\"fantasy, fiction\",\"While at Gold Ridge castle to the north of Winding Circle, Daja and the\nthree other mages-in-training who have become her friends develop their\nunique magical talents as they try to prevent a devastating forest fire\nfrom consuming everything in its path.\"\r\n6060,6369,61926,Anne McCaffrey,All the Weyrs of Pern,https://images.gr-assets.com/books/1322034004l/61926.jpg,4.15,18265,\"fiction, fantasy\",\"Led by Masterharper Robinton and F'lar and Lessa, the people of Pern\nexcavate the ancient remains of the planet's original settlement and\nuncover the colonists' voice-activated artificial intelligence system.\nReissue.\"\r\n6061,6370,23714532,Jamie McGuire,Beautiful Sacrifice,https://images.gr-assets.com/books/1429578280l/23714532.jpg,4.08,21020,\"romance, contemporary\",Beautiful SacrificeJamie McGuire\r\n6062,6371,91989,Naomi Novik,Black Powder War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437820659l/91989._SY475_.jpg,3.9,18778,\"fantasy, fiction\",\"In the wake of their adventure in China, Captain Will Laurence of His\nMajesty's Aerial Corps and his dragon, Temeraire, are sent on a mission to\nprotect three valuable dragon eggs on a trip back to England from the\nOttoman Empire, but the vengeful Chinese dragon Lien allies herself with\nNapoleon to stop them. Original.\"\r\n6063,6372,107789,Julie Garwood,Heartbreaker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389443311l/107789.jpg,4.02,19000,\"romance, suspense\",\"#1 New York Times bestselling author Julie Garwood proves she is a master\nstoryteller in this classic romantic suspense novel featuring FBI agent\nNick Buchanan. In the still shadows of the confessional, the penitent\nkneels and makes a bone-chilling disclosure: Bless me father, for I will\nsin.... Slowly, tauntingly, the man describes his murderous past—how he\nstalked his victim, worked his way into her life, and then took that life\nin a violent rage—and his plan to kill again. Only this time, he has raised\nthe stakes in his twisted game, daring authorities to catch him if they\ncan. And this time, he has revealed the name of his next intended victim.\nAgent Nick Buchanan has come face-to-face with society's worst monsters and\ndepraved minds in his work for one of the FBI's most elite units, but The\nHeartbreaker threatens to hit close to home. The intended victim, Laurant\nMadden, is his best friend's sister. Soon he is caught up in an intricate\nchase with one of the most devious psychopaths of his career. But as the\ndanger grows, so does an electrifying attraction between Nick and Laurant.\nOne false move will cost both of them everything that matters.\"\r\n6064,6374,58893,Tamora Pierce,Briar's Book,https://images.gr-assets.com/books/1481568171l/58893.jpg,4.14,23152,\"fantasy, fiction\",\"Briar, a young mage-in-training, and his teacher Rosethorn must use their\nmagic to fight a deadly plague that is ravaging Summersea.\"\r\n6065,6375,480570,Colleen McCullough,The First Man in Rome,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211466l/480570.jpg,4.08,15362,\"fiction, history\",\"With extraordinary narrative power, New York Times bestselling author\nColleen McCullough sweeps the reader into a whirlpool of pageantry and\npassion, bringing to vivid life the most glorious epoch in human history.\nWhen the world cowered before the legions of Rome, two extraordinary men\ndreamed of personal glory: the military genius and wealthy rural \"\"upstart\"\"\nMarius, and Sulla, penniless and debauched but of aristocratic birth. Men\nof exceptional vision, courage, cunning, and ruthless ambition, separately\nthey faced the insurmountable opposition of powerful, vindictive foes. Yet\nallied they could answer the treachery of rivals, lovers, enemy generals,\nand senatorial vipers with intricate and merciless machinations of their\nown—to achieve in the end a bloody and splendid foretold destiny . . . and\nwin the most coveted honor the Republic could bestow.\"\r\n6066,6376,175242,John Connolly,Every Dead Thing,https://images.gr-assets.com/books/1393929687l/175242.jpg,4.01,14390,\"mystery, thriller\",\"PI Charlie Parker, a former New York policeman, searches for the killer of\nhis wife and daughter. Two women help him, a pretty criminal psychologist\nand an old Creole woman with psychic vision.\"\r\n6067,6377,93801,Daniel Silva,The Confessor,https://images.gr-assets.com/books/1341575498l/93801.jpg,4.14,13166,\"thriller, fiction\",\"In the wake of a Munich writer's assassination, Mossad agent Gabriel Allon\nand Vatican priest Pietro embark on dangerous journeys that reveal long-\nburied secrets affecting the fates of millions of people. Reprint.\"\r\n6068,6378,217376,\"Tomoko Hayakawa, David Ury\",ヤマトナデシコ七変化,https://images.gr-assets.com/books/1320462572l/217376.jpg,4.15,16399,\"manga, romance\",\"ヤマトナデシコ七変化Tomoko Hayakawa, David Ury\"\r\n6069,6379,10869746,\"Robert Kirkman, Jay Bonansinga\",The Walking Dead: Rise of the Governor,https://images.gr-assets.com/books/1366212058l/10869746.jpg,3.9,13076,\"horror, fiction\",\"The Walking Dead: Rise of the GovernorRobert Kirkman, Jay Bonansinga\"\r\n6070,6380,66683,R.A. Salvatore,The Thousand Orcs (Hunter's Blades #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187788l/66683.jpg,4.08,14329,\"fantasy, fiction\",\"The first volume in a new trilogy from the Forgotten Realms universe\ncontinues the adventures of the author's popular Dark Elf hero, Drizzt\nDo'Urden, and his companions, as they take on a rampaging band of\nbloodthirsty orcs and their mysterious master. Reprint.\"\r\n6071,6381,26131641,Anna Quindlen,Miller's Valley,https://images.gr-assets.com/books/1447962407l/26131641.jpg,3.89,12391,\"fiction, contemporary\",Miller's ValleyAnna Quindlen\r\n6072,6383,34310,Maeve Binchy,The Glass Lake,https://images.gr-assets.com/books/1342485933l/34310.jpg,3.89,16073,\"fiction, romance\",The Glass LakeMaeve Binchy\r\n6073,6384,96884,Jonathan Haidt,The Happiness Hypothesis: Finding Modern Truth in Ancient Wisdom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348779688l/96884.jpg,4.12,13282,\"psychology, philosophy\",\"The bestselling author of The Righteous Mind draws on philosophical wisdom\nand scientific research to show how the meaningful life is closer than you\nthink The Happiness Hypothesis is a book about ten Great Ideas. Each\nchapter is an attempt to savor one idea that has been discovered by several\nof the world's civilizations--to question it in light of what we now know\nfrom scientific research, and to extract from it the lessons that still\napply to our modern lives and illuminate the causes of human flourishing.\nAward-winning psychologist Jonathan Haidt, the author of The Righteous\nMind, shows how a deeper understanding of the world's philosophical wisdom\nand its enduring maxims--like \"\"do unto others as you would have others do\nunto you,\"\" or \"\"what doesn't kill you makes you stronger\"\"--can enrich and\neven transform our lives.\"\r\n6074,6385,204779,Edgar Allan Poe,The Masque of the Red Death,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172667858l/204779._SY475_.jpg,4.08,17728,\"classics, fiction\",The Masque of the Red DeathEdgar Allan Poe\r\n6075,6386,7438179,Peter F. Hamilton,The Evolutionary Void,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388292812l/7438179.jpg,4.25,13440,\"fiction, fantasy\",\"Araminta becomes the target of a galaxywide search by a government agent\nseeking to prevent the pilgrimage of a cult into the heart of the Void,\nwhile Edeard, the Waterwalker, finds himself faced with powerful new\nenemies.\"\r\n6076,6387,7100490,L.J. Smith,The Forbidden Game,https://images.gr-assets.com/books/1405784030l/7100490.jpg,4.19,18443,\"fantasy, paranormal\",The Forbidden GameL.J. Smith\r\n6077,6388,1754206,Elizabeth Scott,Perfect You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348018783l/1754206.jpg,3.7,20858,\"romance, contemporary\",Perfect YouElizabeth Scott\r\n6078,6389,37398,Toni Morrison,Jazz,https://images.gr-assets.com/books/1317531331l/37398.jpg,3.78,14853,\"fiction, classics\",\"Set in Harlem during the 1920s, this novel chronicles a bittersweet\ntriangle involving Joe Trace, a middle-aged door-to-door salesman, his\nmentally unstable wife Violet, and his eighteen-year-old girlfriend.\nReader's Guide available. Reprint. 20,000 first printing.\"\r\n6079,6391,22193,Cecily von Ziegesar,You're the one that I want,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348306159l/22193.jpg,3.71,16643,\"fiction, romance\",\"Welcome to New York City's Upper East Side, where my friends and I live in\ngorgeous apartments, go to exclusive private schools, and make Manhattan\nour own personal playground. It might look hard to be this fabulous, but\nfor us it's as easy as sleeping with your best friend's boyfriend. 6th\ninstallment of the Gossip Girls series!\"\r\n6080,6392,158516,\"Ilya Ilf, Eugene Petrov, Maurice Friedberg, John H.C. Richardson\",Двенадцать стульев,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348256729l/158516.jpg,4.42,13688,\"fiction, classics\",\"Ostap Bender is an unemployed con artist living by his wits in\npostrevolutionary Soviet Russia. He joins forces with Ippolit Matveyevich\nVorobyaninov, a former nobleman who has returned to his hometown to find a\ncache of missing jewels which were hidden in some chairs that have been\nappropriated by the Soviet authorities. The search for the bejeweled chairs\ntakes these unlikely heroes from the provinces to Moscow to the wilds of\nSoviet Georgia and the Trans-caucasus mountains; on their quest they\nencounter a wide variety of characters: from opportunistic Soviet\nbureaucrats to aging survivors of the prerevolutionary propertied classes,\neach one more selfish, venal, and ineffective than the one before.\"\r\n6081,6393,427920,\"Jack Canfield, Mark Victor Hansen, Kimberly Kirberger\",Chicken Soup for the Teenage Soul (Chicken Soup for the Soul),https://images.gr-assets.com/books/1331052651l/427920.jpg,3.91,14722,\"nonfiction, poetry\",\"Chicken Soup for the Teenage Soul (Chicken Soup for the Soul)Jack Canfield, Mark Victor Hansen, Kimberly Kirberger\"\r\n6082,6394,18656036,Megan Abbott,The Fever,https://images.gr-assets.com/books/1381359885l/18656036.jpg,3.12,14775,\"fiction, mystery\",\"\"\"THE FEVER holds true to its title: It's dark, disturbing, strangely\nbeautiful and utterly unshakeable\"\" -- Gillian Flynn. In this impossible-to-\nput-down \"\"panic attack of a novel,\"\"* a small-town high school becomes the\nbreeding ground for a mysterious illness. Deenie Nash is a diligent student\nwith a close-knit family; her brother Eli is a hockey star and her father\nis a popular teacher. But when Deenie's best friend is struck by a\nterrifying, unexplained seizure in class, the Nashes' seeming stability\ndissolves into chaos. As rumors of a hazardous outbreak spread through\nschool, and hysteria and contagion swell, a series of tightly held secrets\nemerges, threatening to unravel friendships, families, and the town's\nfragile sense of security. A chilling story about guilt, family secrets,\nand the lethal power of desire, THE FEVER is \"\"a potboiler in the truest,\nbest sense\"\" and \"\"a great novel, full stop.\"\"** *Jodi Picoult **Slate\"\r\n6083,6395,125423,Eric Carle,The Very Quiet Cricket,https://images.gr-assets.com/books/1309287060l/125423.jpg,4.07,17016,\"fiction, classics\",\"A very quiet cricket who wants to rub his wings together and make a sound\nas do so many other animals finally achieves his wish. The cricket's sound\nis reproduced at the end of the book.\"\r\n6084,6397,155421,Simon R. Green,Something from the Nightside,https://images.gr-assets.com/books/1354812342l/155421.jpg,3.77,19206,\"fantasy, mystery\",\"Taylor, a detective gifted with the ability to find lost things, must\ndescend into the world of Nightside, a dark realm of alternate reality, to\nfind the missing daughter of a wealthy client.\"\r\n6085,6399,84054,Sidney Sheldon,The Stars Shine Down,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348909433l/84054.jpg,3.65,12874,\"fiction, thriller\",\"In THE STARS SHINE DOWN, Sidney Sheldon returns to the powerful and classic\nthemes that have made him one of the world's most popular bestselling\nauthors. And in Lara Cameron, he has created his most memorable, richly\ndrawn heroine to date. Lara is America's Princess, the power behind the\ntallest building on earth, a self-made billionaire who towers over a\ntraditionally male domain, an icon of glamour and accomplishment to men and\nwomen everywhere. Beautiful but insecure, ruthless yet vulnerable, Lara has\nstruggled brutally to achieve it all -- yet still wants more. And in a\ndazzling global setting from London to New York, from Reno to Rome, she\nwill find everything she has ever desired and won -- her fortune, her fame,\nthe man she loves -- swiftly and shockingly imperiled.\"\r\n6086,6400,676555,\"The Beatles, Paul McCartney, Ringo Starr, John Lennon, George Harrison\",The Beatles Anthology,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387720608l/676555.jpg,4.38,12474,\"music, biography\",\"The international best-seller is now in paperback! From their years growing\nup in Liverpool through their ride to fame to their ultimate breakup, heres\nthe inside story. Interwoven with The Beatles own memories are the\nrecollections of such associates as road manager Neil Aspinall, producer\nGeorge Martin, and spokesman Derek Taylor. The Beatles Anthology is a once-\nin-a-lifetime volume: warm, frank, funny, poignant, and bold-just like the\nmusic thats been a part of so many of our lives. The Beatles Anthology is,\nfor the first time, the story of The Beatles by The Beatles. Created with\nthe full cooperation of Paul, George, Ringo, and Yoko Ono Lennon, it also\nincludes the words of John, painstakingly compiled from sources worldwide.\nThe Beatles Anthology is, in effect, The Beatles autobiography.The Beatles\nAnthology features over 1300 images, most previously unpublished. Paul,\nGeorge, Ringo, and Yoko Ono Lennon all opened their own archives just for\nthis project, as did Apple, EMI, and others long associated with The\nBeatles, allowing the unprecedented release of photographs, documents, and\nother memorabilia from their homes and offices. The result is an\nextraordinary wealth of visual material brimming on each and every page.\"\r\n6087,6401,7640261,\"Christopher  Ryan, Cacilda Jethá\",Sex at Dawn: The Prehistoric Origins of Modern Sexuality,https://images.gr-assets.com/books/1291105594l/7640261.jpg,4.02,12521,\"science, nonfiction\",\"Sex at Dawn: The Prehistoric Origins of Modern SexualityChristopher  Ryan, Cacilda Jethá\"\r\n6088,6402,37451,Cecily von Ziegesar,You Know You Love Me,https://images.gr-assets.com/books/1388599269l/37451.jpg,3.53,18052,\"fiction, romance\",\"Queen bee Blair Waldorf is hitting the books -- but is her boyfriend\nhitting on someone else? The wickedly funny second book in the #1 New York\nTimes bestselling series that inspired the original hit CW show and the HBO\nMax series. It's brunette vixen Blair Waldorf's seventeenth birthday, and\nshe knows exactly what she wants: Nate, her studly, troubled boyfriend of\nthree years. But Blair's been too busy filling out Ivy League college\napplications to notice that Nate has found himself another playmate . . .\"\r\n6089,6403,6609490,\"Annette Pollert, L.J. Smith\",Night World: The Ultimate Fan Guide.,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347794541l/6609490.jpg,4.36,13626,\"fantasy, paranormal\",\"Night World: The Ultimate Fan Guide.Annette Pollert, L.J. Smith\"\r\n6090,6404,835202,Vera B. Williams,A Chair for My Mother ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347403004l/835202.jpg,4.2,19919,\"fiction, classics\",\"After a fire destroys their home and possessions, Rosa, her mother, and\ngrandmother save and save until they can afford to buy one big, comfortable\nchair that all three of them can enjoy.After their home is destroyed by a\nfire, Rosa, her mother and grandmother save their coins to buy a really\ncomfortable chair for all to enjoy. \"\"A superbly conceived picture book\nexpressing the joyful spirit of a loving family.\"\"--Horn Book.\"\r\n6091,6405,12021,Iain Banks,The Crow Road,https://images.gr-assets.com/books/1330063373l/12021.jpg,4.07,14365,\"fiction, contemporary\",\"From its bravura opening onwards, THE CROW ROAD is justly regarded as an\noutstanding contemporary novel. 'It was the day my grandmother exploded. I\nsat in the crematorium, listening to my Uncle Hamish quietly snoring in\nharmony to Bach's Mass in B Minor, and I reflected that it always seemed to\nbe death that drew me back to Gallanach.' Prentice McHoan has returned to\nthe bosom of his complex but enduring Scottish family. Full of questions\nabout the McHoan past, present and future, he is also deeply preoccupied:\nmainly with death, sex, drink, God and illegal substances...\"\r\n6092,6406,46661,Jonathan Tropper,The Book of Joe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923690l/46661.jpg,3.95,13064,\"fiction, contemporary\",The Book of JoeJonathan Tropper\r\n6093,6407,68380,\"Margaret Weis, Tracy Hickman\",Dragonlance Chronicles: Dragons of Autumn Twilight/Dragons of Winter Night/Dragons of Spring Dawning (Collectors Edition),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266464667l/68380.jpg,4.21,13553,\"fantasy, fiction\",GAMES/GAMEBOOKS/CROSSWORDS\r\n6094,6408,1003761,Kiyoko Arai,ビューティーポップ 1 [Byūtī poppu 1],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452368l/1003761.jpg,4.15,16223,\"manga, romance\",ビューティーポップ 1 [Byūtī poppu 1]Kiyoko Arai\r\n6095,6409,79879,Eric Carle,From Head to Toe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388448972l/79879.jpg,4.18,16074,\"fiction, classics\",\"What does an elephant do? It stomps its foot. Can you? From the creator of\nsuch beloved classics as The Grouchy Ladybug and The Mixed-Up Chameleon\ncomes this interactive story that invites kids to imitate animal movements.\nWatching giraffes bend their necks or monkeys wave their arms is fun, but\nnothing could be better than joining in. From their heads down to their\ntoes, kids will be wriggling, jiggling, and giggling as they try to keep up\nwith these animals!Alligators wiggle, elephants stop, gorillas thump, and\ngiraffes bend. Can you do it? ‘ I can do it!’ is the confidence-building\nmessage of this fun-filled interactive picture book. A variety of familiar\nanimals invite young children to copy their antics, and as they play, they\nwill learn such important skills as careful listening, focusing attention,\nand following instructions. Just as alphabet books introduce the very young\nchild to letters and simple words, From Head to Toe introduces the basic\nbody parts and simple body movements. And in the same way that children\nprogress from understanding simple words to reading and writing sentences\nand stories, so they will progress from simple body movements to dancing,\ngymnastics, and other sports and activities, with confidence and pleasure.\nEric Carle's colorful collages have delighted children for more than a\ngeneration. Each book provides hours of fun while encouraging them to\nstretch their imaginations. His matchless words and illustrations now send\nout a new challenge: Are you ready? Here we go! Move yourself From Head to\nToe. A Main Selection of the Children’s Book-of-the-Month Club\"\r\n6096,6410,48758,Joshua Harris,Boy Meets Girl: Say Hello to Courtship,https://images.gr-assets.com/books/1170356477l/48758.jpg,3.78,13868,\"christian, nonfiction\",\"Provides advice to single Christian men and women on how to date with a\npurpose, including how to deal with a sexual past and how to love someone\nwithout engaging in inappropriate sexual behavior.\"\r\n6097,6411,21328,\"Bill Willingham, Mark Buckingham, David Hahn, Steve Leialoha\",\"Fables, Volume 6: Homelands\",https://images.gr-assets.com/books/1327962707l/21328.jpg,4.3,18893,\"fiction, fantasy\",\"Fables, Volume 6: HomelandsBill Willingham, Mark Buckingham, David Hahn, Steve Leialoha\"\r\n6098,6412,20761374,Whitney G.,Reasonable Doubt,https://images.gr-assets.com/books/1395319856l/20761374.jpg,4.13,25788,\"romance, contemporary\",\"My cock has an appetite.A huge and very particular appetite: Blonde, curvy,\nand preferably not a fucking liar...(Although, that's a story for another\nday.)As a high profile lawyer, I don't have time to waste on relationships,\nso I fulfill my needs by anonymously chatting and sleeping with women I\nmeet online.My rules are simple: One dinner. One night. No repeats.This is\nonly casual sex. Nothing more. Nothing less.At least it was, until\n\"\"Alyssa\"\"...She was supposed to be a 27 year old lawyer, a book hoarder, and\ncompletely unattractive. She was supposed to be someone I shared law advice\nwith late at night, someone I could trust with details of my weekly\nescapades.But then she came into my firm for an interview--a college-intern\ninterview, and everything fucking changed...**Book 1 in a three part Erotic\nRomance Serial.**\"\r\n6099,6413,2924318,Marilynne Robinson,Home,https://images.gr-assets.com/books/1426188598l/2924318.jpg,3.97,13851,\"fiction, religion\",\"Returning to Gilead to care for her dying father, Glory Boughton is joined\nby her long-absent brother, with whom she bonds throughout his struggles\nwith alcoholism, unemployment, and their father's traditionalist values.\"\r\n6100,6414,23647129,Jen Hatmaker,For the Love: Fighting for Grace in a World of Impossible Standards,https://images.gr-assets.com/books/1426296433l/23647129.jpg,4.1,16200,\"christian, nonfiction\",For the Love: Fighting for Grace in a World of Impossible StandardsJen Hatmaker\r\n6101,6416,18775297,Christina Lauren,Sweet Filthy Boy ,https://images.gr-assets.com/books/1395723782l/18775297.jpg,4.16,25337,\"romance, contemporary\",\"The New York Times bestselling author of Beautiful Bastard, Beautiful\nStranger, and Beautiful Player starts a brand new story of friends, love,\nand lust with Book One of the Wild Seasons series. One-night stands are\nsupposed to be with someone convenient, or wickedly persuasive, or\nregrettable. They aren’t supposed to be with someone like him. But after a\ncrazy Vegas weekend celebrating her college graduation—and terrified of the\nfuture path she knows is a cop-out—Mia Holland makes the wildest decision\nof her life: follow Ansel Guillaume—her sweet, filthy fling—to France for\nthe summer and just…play. When feelings begin to develop behind the\nprovocative roles they take on, and their temporary masquerade adventures\nbegin to feel real, Mia will have to decide if she belongs in the life she\nleft because it was all wrong, or in the strange new one that seems worlds\naway.\"\r\n6102,6417,44133,William Shakespeare,The Winter's Tale,https://images.gr-assets.com/books/1327893509l/44133.jpg,3.69,15385,\"fiction, classics\",\"Running an emotional gamut from betrayal and broken hearts to romance and\nreconciliation, this 1611 tragicomedy begins with the tyrannical actions of\na jealous king, whose baseless suspicions destroy his own family. The\nplay's second half takes place 16 years later, when the lively plot takes a\nlighthearted turn, abounding in song and dance.\"\r\n6103,6418,3437328,Peter F. Hamilton,The Temporal Void,https://images.gr-assets.com/books/1357349093l/3437328.jpg,4.24,13478,\"fiction, fantasy\",\"The owner of the most powerful imagination in science fiction (Ken Follett,\nauthor of \"\"Eye of the Needle\"\") returns with this sequel to \"\"The Dreaming\nVoid,\"\" and the second work in a stunning far-future trilogy.\"\r\n6104,6419,19536001,\"Matt Fraction, Chip Zdarsky\",\"Sex Criminals, Volume One: One Weird Trick\",https://images.gr-assets.com/books/1396977214l/19536001.jpg,3.99,22017,\"fantasy, fiction\",\"A couple, after discovering that they can stop time while having sex, uses\nthis ability to rob banks.\"\r\n6105,6420,31157,\"Tim LaHaye, Jerry B. Jenkins\",The Rising : Antichrist is Born : Before They Were Left Behind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390330711l/31157.jpg,4.18,13412,\"christian, fiction\",\"The countdown to Rapture begins as Marilena Carpathia unknowingly gives\nbirth to the Antichrist, and half a world away, God's plans begin to take\nform in young Ray Steele.\"\r\n6106,6421,16070143,Lauren Kate,Teardrop,https://images.gr-assets.com/books/1360596375l/16070143.jpg,3.65,18998,\"fantasy, romance\",\"Since Eureka's mother drowned, she wishes she were dead too, but after\ndiscovering that an ancient book is more than a story Eureka begins to\nbelieve that Ander is right about her being involved in strange things--and\nin grave danger.\"\r\n6107,6422,6495359,Patricia Cornwell,The Scarpetta Factor ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442847757l/6495359._SY475_.jpg,3.67,16388,\"mystery, fiction\",The Scarpetta Factor Patricia Cornwell\r\n6108,6423,20443235,Marie Rutkoski,The Winner's Kiss,https://images.gr-assets.com/books/1455809407l/20443235.jpg,4.29,23125,\"fantasy, romance\",\"A New York Times bestseller. War has begun. Arin is in the thick of it,\nwith the East as his ally and the empire as his enemy. He's finally managed\nto dismiss the memory of Kestrel, even if he can't quite forget her.\nKestrel turned into someone he could no longer recognize: someone who cared\nmore for the empire than for the lives of innocent people-and certainly\nmore than she cared for him. At least, that's what he thinks. But far north\nlies a work camp where Kestrel is a prisoner. Can she manage to escape\nbefore she loses herself? As the war intensifies, both Kestrel and Arin\ndiscover unexpected roles in battle, terrible secrets, and a fragile hope.\nThe world is changing. The East is pitted against the West, and Kestrel and\nArin are caught between. In a game like this, can anybody really win? The\nWinner's Kiss brings a stunning conclusion to the irresistible romance\nbetween Kestrel and Arin and the crippling war that has torn about their\nworld in the Winner's trilogy, by Marie Rutkoski.\"\r\n6109,6425,77449,Sharon Kay Penman,Here be Dragons,https://images.gr-assets.com/books/1448657042l/77449.jpg,4.3,16205,\"fiction, fantasy\",Here be DragonsSharon Kay Penman\r\n6110,6426,9762,\"Byron Katie, Stephen Mitchell\",Loving What Is: Four Questions That Can Change Your Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258105l/9762.jpg,4.15,12568,\"psychology, spirituality\",\"Introducing an innovative four-pronged approach to self-liberation, this\nintriguing guide shows how to dissolve the debilitating stories we tell\nourselves, which in turn allows the truth of \"\"what is\"\" to give rise to a\nlife of new fulfillment and happiness. Reprint. 30,000 first printing.\"\r\n6111,6427,11824,\"Sid Fleischman, Peter Sís\",The Whipping Boy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925482l/11824.jpg,3.54,18090,\"fiction, classics\",\"A Prince and a Pauper Jemmy, once a poor boy living on the streets, now\nlives in a castle. As the whipping boy, he bears the punishment when Prince\nBrat misbehaves, for it is forbidden to spank, thrash, or whack the heir to\nthe throne. The two boys have nothing in common and even less reason to\nlike one another. But when they find themselves taken hostage after running\naway, they are left with no choice but to trust each other.\"\r\n6112,6428,31538635,\"J.K. Rowling, MinaLima\",\"Short Stories from Hogwarts of Heroism, Hardship and Dangerous Hobbies\",https://images.gr-assets.com/books/1471436733l/31538635.jpg,4.22,16285,\"fantasy, fiction\",\"Short Stories from Hogwarts of Heroism, Hardship and Dangerous HobbiesJ.K. Rowling, MinaLima\"\r\n6113,6429,48811,Carolyn Keene,\"Nancy Drew Complete Series Set, Books 1-64\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923816l/48811.jpg,4.19,16743,\"mystery, classics\",\"Nancy Drew Complete Series Set, Books 1-64Carolyn Keene\"\r\n6114,6430,275245,\"George Bernard Shaw, John A. Bertolini\",Pygmalion and Three Other Plays,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389844602l/275245.jpg,4.01,16568,\"classics, fiction\",\"Pygmalion and Three Other Plays, by George Bernard Shaw, is part of the\nBarnes & Noble Classics series, which offers quality editions at affordable\nprices to the student and the general reader, including new scholarship,\nthoughtful design, and pages of carefully crafted extras. Here are some of\nthe remarkable features of Barnes & Noble Classics : New introductions\ncommissioned from today's top writers and scholars Biographies of the\nauthors Chronologies of contemporary historical, biographical, and cultural\nevents Footnotes and endnotes Selective discussions of imitations,\nparodies, poems, books, plays, paintings, operas, statuary, and films\ninspired by the work Comments by other famous authors Study questions to\nchallenge the reader's viewpoints and expectations Bibliographies for\nfurther reading Indices & Glossaries, when appropriateAll editions are\nbeautifully designed and are printed to superior specifications; some\ninclude illustrations of historical interest. Barnes & Noble Classics pulls\ntogether a constellation of influences--biographical, historical, and\nliterary--to enrich each reader's understanding of these enduring works.\nHailed as “a Tolstoy with jokes\"\" by one critic, George Bernard Shaw was the\nmost significant British playwright since the seventeenth century.\nPygmalion persists as his best-loved play, one made into both a classic\nfilm--which won Shaw an Academy Award for best screenplay--and the\nperennially popular musical My Fair Lady . Pygmalion follows the adventures\nof phonetics professor Henry Higgins as he attempts to transform cockney\nflower girl Eliza Doolittle into a refined lady. The scene in which Eliza\nappears in high society with the correct accent but no notion of polite\nconversation is considered one of the funniest in English drama. Like most\nof Shaw's work, Pygmalion wins over audiences with wit, a taut morality,\nand an innate understanding of human relationships. This volume also\nincludes Major Barbara, which attacks both capitalism and charitable\norganizations, The Doctor's Dilemma, a keen-eyed examination of medical\nmorals and malpractice, and Heartbreak House, which exposes the spiritual\nbankruptcy of the generation responsible for the bloodshed of World War I.\nJohn A. Bertolini is Ellis Professor of the Liberal Arts at Middlebury\nCollege, where he teaches dramatic literature, Shakespeare, and film. He\nhas written The Playwrighting Self of Bernard Shaw and articles on\nHitchcock, and British and American dramatists. Bertolini also wrote the\nintroduction and notes to the Barnes & Noble Classics edition of Shaw's Man\nand Superman and Three Other Plays.\"\r\n6115,6433,10401084,Brigid Kemmerer,Storm,https://images.gr-assets.com/books/1325995724l/10401084.jpg,3.96,21281,\"fantasy, contemporary\",\"Becca Chandler saves Chris Merrick from a beating in the school parking\nlot. Chris is different - he can control water, just like his brothers can\ncontrol fire, wind and earth. They are powerful, dangerous, marked for\ndeath. And now that she knows the truth, so is Becca.\"\r\n6116,6434,9462775,Maureen Johnson,The Last Little Blue Envelope,https://images.gr-assets.com/books/1288297853l/9462775.jpg,3.86,19275,\"romance, contemporary\",\"Seventeen-year-old Ginny Blackstone precipitously travels from her home in\nNew Jersey to London when she receives a message from an unknown man\ntelling her he has the letters that were stolen just before she completed a\nseries of mysterious tasks assigned by her now dead aunt, an artist.\"\r\n6117,6435,16884,Richard Rhodes,The Making of the Atomic Bomb,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440621221l/16884._SX318_.jpg,4.32,12201,\"history, science\",\"Traces the development of the atomic bomb from Leo Szilard's concept\nthrough the drama of the race to build a workable device to the dropping of\nthe bomb on Hiroshima.\"\r\n6118,6436,7979073,Maeve Binchy,Minding Frankie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348083610l/7979073.jpg,3.78,15606,\"fiction, romance\",Minding FrankieMaeve Binchy\r\n6119,6437,95607,Francine Rivers,Unveiled: Tamar (Lineage of Grace #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268504l/95607.jpg,4.26,14441,\"christian, fiction\",\"The first in a five-volume series that brings to life women in the lineage\nof Jesus chronicles the story of Tamar and her father-in-law, Judah.\"\r\n6120,6439,92373,Ken Follett,The Third Twin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348833324l/92373.jpg,3.64,14499,\"fiction, thriller\",\"Genetic researcher Jeannie Ferrami discovers the existence of identical\ntwins born to different mothers, part of a far-reaching conspiracy\ninvolving genetic experiments. By the author of The Pillars of the Earth.\nReprint.\"\r\n6121,6440,99219,\"Brian Herbert, Kevin J. Anderson\",Dune: The Butlerian Jihad,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1505458671l/99219._SX318_.jpg,3.57,14868,\"fiction, fantasy\",\"The New York Times bestselling trilogy is back! Brian Herbert and Kevin J.\nAnderson’s prequel to the epic Dune Saga is back in fantastic new reissues\nHere is the tale of how Serena Butler's passionate grief ignites the war\nthat will liberate humans from their machine masters. Here is the beginning\nof the Bene Gesserit Sisterhood. Here are the Zensunni Wanderers, who\nescape bondage to flee to the desert world where they will declare\nthemselves the Free Men of Dune. And here is the backward, nearly forgotten\nplanet of Arrakis, where traders have discovered the remarkable properties\nof the spice melange. Against the brute efficiency of the Machines, the\nhuman race has only imagination, compassion, and the capacity for love. It\nwill have to be enough.\"\r\n6122,6441,181206,Richard Koch,The 80/20 Principle: The Secret to Success by Achieving More with Less,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437557431l/181206._SY475_.jpg,3.99,13241,\"business, psychology\",\"A new guide to unlocking the maximum performance energy in business focuses\nidentifying the 20% of time and energy expended to do 80% of the work.\nReprint.\"\r\n6123,6442,782580,\"William Blake, David V. Erdman, Harold Bloom\",The Complete Poetry & Prose of William Blake,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347678657l/782580.jpg,4.23,14157,\"poetry, classics\",\"Critical commentary illuminating Blake's allusions and references\naccompanies the texts of his poetic and prose works\"\r\n6124,6443,30008702,Ian McEwan,Nutshell,https://images.gr-assets.com/books/1498680109l/30008702.jpg,3.71,10904,\"fiction, contemporary\",NutshellIan McEwan\r\n6125,6444,13619,\"Tsugumi Ohba, Takeshi Obata\",デスノート #2 (Desu Nōto) Gōryū (合流),https://images.gr-assets.com/books/1419952210l/13619.jpg,4.42,20177,\"manga, fantasy\",\"When high school student Light Yagami finds the Death Note, a notebook\ndropped by a Shinigami death god, he discovers that any person whose name\nis written in it dies, so Light decides to use the notebook to rid the\nworld of evil.\"\r\n6126,6445,93371,\"Katsuhiro Otomo, Yoko Umezawa, Linda M. York, Jo Duffy\",Akira 1,https://images.gr-assets.com/books/1343804802l/93371.jpg,4.36,16116,\"manga, comics\",\"Akira 1Katsuhiro Otomo, Yoko Umezawa, Linda M. York, Jo Duffy\"\r\n6127,6446,243601,Robert   Harris,Imperium,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442657816l/243601._SY475_.jpg,4.05,13959,\"fiction, history\",\"In his \"\"most accomplished work to date\"\" (Los Angeles Times), master of\nhistorical fiction Robert Harris lures readers back in time to the\ncompelling life of Roman Senator Marcus Cicero. The re-creation of a\nvanished biography written by his household slave and right-hand man, Tiro,\nImperium follows Cicero's extraordinary struggle to attain supreme power in\nRome. On a cold November morning, Tiro opens the door to find a terrified,\nbedraggled stranger begging for help. Once a Sicilian aristocrat, the man\nwas robbed by the corrupt Roman governor, Verres, who is now trying to\nconvict him under false pretenses and sentence him to a violent death. The\nman claims that only the great senator Marcus Cicero, one of Rome's most\nambitious lawyers and spellbinding orators, can bring him justice in a\ncrooked society manipulated by the villainous governor. But for Cicero, it\nis a chance to prove himself worthy of absolute power. What follows is one\nof the most gripping courtroom dramas in history, and the beginning of a\nquest for political glory by a man who fought his way to the top using only\nhis voice -- defeating the most daunting figures in Roman history.\"\r\n6128,6447,40722,Richard Ford,The Sportswriter,https://images.gr-assets.com/books/1327936345l/40722.jpg,3.7,12606,\"fiction, contemporary\",\"At the beginning of his career, Frank Bascombe gives up his chance to\nbecome a successful novelist in order to work as a sportswriter. By the\nauthor of A Piece of My Heart. Reissue.\"\r\n6129,6448,47620,Garth Nix,Grim Tuesday,https://images.gr-assets.com/books/1304528058l/47620.jpg,3.86,19133,\"fantasy, fiction\",Grim TuesdayGarth Nix\r\n6130,6449,7963189,Julie Maroh,Le bleu est une couleur chaude,https://images.gr-assets.com/books/1330712998l/7963189.jpg,3.92,8504,\"comics, romance\",Le bleu est une couleur chaudeJulie Maroh\r\n6131,6450,25489012,Bill Bryson,The Road to Little Dribbling,https://images.gr-assets.com/books/1444259875l/25489012.jpg,3.71,9694,\"travel, nonfiction\",\"Twenty years ago, Bill Bryson went on a trip around Britain to celebrate\nthe green and kindly island that had become his adopted country. The\nhilarious book that resulted, Notes from a Small Island, was taken to the\nnationâe(tm)s heart and became the bestselling travel book ever, and was\nalso voted in a BBC poll the book that best represents Britain.Now, to mark\nthe twentieth anniversary of that modern classic, Bryson makes a brand-new\njourney round Britain to see what has changed. Following (but not too\nclosely) a route he dubs the Bryson Line, from Bognor Regis to Cape Wrath,\nby way of places that many people never get to at all, Bryson sets out to\nrediscover the wondrously beautiful, magnificently eccentric, endearingly\nunique country that he thought he knew but doesnâe(tm)t altogether\nrecognize any more. Yet, despite Britainâe(tm)s occasional failings and\nmore or less eternal bewilderments, Bill Bryson is still pleased to call\nour rainy island home. And not just because of the cream teas, a noble\nhistory, and an extra day off at Christmas. Once again, with his matchless\nhoming instinct for the funniest and quirkiest, his unerring eye for the\nidiotic, the endearing, the ridiculous and the scandalous, Bryson gives us\nan acute and perceptive insight into all that is best and worst about\nBritain today.\"\r\n6132,6451,15942636,Susanna Kearsley,The Firebird,https://images.gr-assets.com/books/1347896972l/15942636.jpg,4.08,12421,\"romance, fiction\",\"When Nicola touches an object she can see glimpses into its past, so when a\nwoman tries to sell her a wooden carving belonging to Russia's Empress\nCatherine, Nicola knows the woman is telling the truth.\"\r\n6133,6452,1753714,\"Tachibana Higuchi, 樋口 橘\",学園アリス１,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347906020l/1753714.jpg,4.23,15373,\"manga, fantasy\",\"学園アリス１Tachibana Higuchi, 樋口 橘\"\r\n6134,6453,63832,William Least Heat-Moon,Blue Highways: A Journey into America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425628317l/63832.jpg,4,15693,\"travel, memoir\",Blue Highways: A Journey into AmericaWilliam Least Heat-Moon\r\n6135,6454,31181,Anne Tyler,Breathing Lessons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389130508l/31181.jpg,3.66,18053,\"fiction, contemporary\",\"During a ninety-mile drive to her best friend's husband's funeral, Maggie\nand her husband, Ira, recall and re-evaluate the details of their twenty-\neight-year marriage. Reader's Guide included. Reissue. 10,000 first\nprinting.\"\r\n6136,6455,112200,Emily Dickinson,Selected Poems of Emily Dickinson,https://images.gr-assets.com/books/1260829838l/112200.jpg,4.16,16218,\"poetry, classics\",Selected Poems of Emily DickinsonEmily Dickinson\r\n6137,6456,219499,\"Robert Louis Stevenson, Jenny Davidson\",The Strange Case of Dr. Jekyll and Mr. Hyde ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389646683l/219499.jpg,3.96,20812,\"fantasy, ebooks\",\"Dr. Jekyll invents a drug that changes him into Mr. Hyde, a foul-tempered,\nuncouth degenerate. His evil nature, however, becomes the stronger part of\nhim and, to his horror, he no longer needs the formula to transform his\nappearance.\"\r\n6138,6457,1055617,Spencer W. Kimball,The Miracle of Forgiveness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1180562350l/1055617._SY475_.jpg,4.37,13795,\"religion, nonfiction\",The Miracle of ForgivenessSpencer W. Kimball\r\n6139,6458,6718608,Anne Fortier,Juliet,https://images.gr-assets.com/books/1366399299l/6718608.jpg,3.9,19328,\"romance, fiction\",\"After she visits Italy per the instructions of her late aunt's will, Juliet\nJacobs is thrust into a centuries-old feud, uncovering the story of her\nancestor, Giulietta, whose love for a man named Romeo proved ill-fated, and\nfinding herself under threat after the past and present begin to resemble\none another. A first novel.\"\r\n6140,6459,9394010,Gena Showalter,\"The Darkest Secret (Lords of the Underworld, #7)\",https://images.gr-assets.com/books/1288316327l/9394010.jpg,4.32,23247,\"paranormal, romance\",\"The Darkest Secret (Lords of the Underworld, #7)Gena Showalter\"\r\n6141,6460,23602473,Toni Morrison,God Help the Child,https://images.gr-assets.com/books/1463008449l/23602473.jpg,3.7,12228,\"fiction, contemporary\",\"At the center: a young woman who calls herself Bride, whose stunning blue-\nblack skin is only one element of her beauty, her boldness and confidence,\nher success in life, but which caused her light-skinned mother to deny her\neven the simplest forms of love. There is Booker, the man Bride loves, and\nloses to anger. Rain, the mysterious white child with whom she crosses\npaths. And finally, Bride's mother herself, Sweetness, who takes a lifetime\nto come to understand that \"\"what you do to children matters. And they might\nnever forget.\"\" A fiery and provocative novel, God Help the Child--the first\nbook by Toni Morrison to be set in our current moment--weaves a tale about\nthe way the sufferings of childhood can shape, and misshape, the life of\nthe adult.\"\r\n6142,6461,2795053,\"Gerard Way, Gabriel Bá, Dave Stewart, Nate Piekos, Tony Ong\",\"The Umbrella Academy, Vol 1: The Apocalypse Suite\",https://images.gr-assets.com/books/1327877097l/2795053.jpg,3.97,17384,\"comics, fantasy\",\"In an inexplicable worldwide event, forty-three extraordinary children were\nspontaneously born by women who'd previously shown no signs of pregnancy.\nMillionaire inventor Reginald Hargreeves adopted seven of the children;\nwhen asked why, his only explanation was, 'To save the world.' These seven\nchildren form The Umbrella Academy, a dysfunctional family of superheroes\nwith bizarre powers. Nearly a decade after their first mission, the team\ndisbands, but when Hargreeves unexpectedly dies, these disgruntled siblings\nreunite just in time to save the world once again.\"\r\n6143,6463,98233,Jessica Livingston,Founders at Work: Stories of Startups' Early Days,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439953323l/98233._SY475_.jpg,3.94,15049,\"business, nonfiction\",\"Now available in paperback—with a new preface and interview with Jessica\nLivingston about Y Combinator! Founders at Work: Stories of Startups’ Early\nDays is a collection of interviews with founders of famous technology\ncompanies about what happened in the very earliest days. These people are\ncelebrities now. What was it like when they were just a couple friends with\nan idea? Founders like Steve Wozniak (Apple), Caterina Fake (Flickr), Mitch\nKapor (Lotus), Max Levchin (PayPal), and Sabeer Bhatia (Hotmail) tell you\nin their own words about their surprising and often very funny discoveries\nas they learned how to build a company. Where did they get the ideas that\nmade them rich? How did they convince investors to back them? What went\nwrong, and how did they recover? Nearly all technical people have thought\nof one day starting or working for a startup. For them, this book is the\nclosest you can come to being a fly on the wall at a successful startup, to\nlearn how it's done. But ultimately these interviews are required reading\nfor anyone who wants to understand business, because startups are business\nreduced to its essence. The reason their founders become rich is that\nstartups do what businesses do—create value—more intensively than almost\nany other part of the economy. How? What are the secrets that make\nsuccessful startups so insanely productive? Read this book, and let the\nfounders themselves tell you.\"\r\n6144,6465,2331954,Scott Sigler,Infected,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439359012l/2331954._SY475_.jpg,3.85,14346,\"horror, fiction\",\"As people across America are transformed into raving, paranoid, murderous\nmonsters by a mysterious bioengineered parasite, Perry Dawsey confronts his\nown battle with the infection as he discovers that the parasites want\nsomething from him that goes beyond murder.\"\r\n6145,6466,15777621,Leila Sales,This Song Will Save Your Life,https://images.gr-assets.com/books/1362753915l/15777621.jpg,3.95,19947,\"contemporary, music\",\"Nearly a year after a failed suicide attempt, sixteen-year-old Elise\ndiscovers that she has the passion, and the talent, to be a disc jockey.\"\r\n6146,6467,765811,Gloria Naylor,The Women of Brewster Place,https://images.gr-assets.com/books/1309209011l/765811.jpg,4.13,14777,\"fiction, classics\",\"The stories of seven Black women living in an urban ghetto evoke the\nenergy, brutality, compassion, and desolation of modern Black America\"\r\n6147,6468,23017947,\"G. Willow Wilson, Adrian Alphona, Jacob Wyatt\",\"Ms. Marvel, Vol. 2: Generation Why\",https://images.gr-assets.com/books/1427559332l/23017947.jpg,4.14,17048,\"fantasy, fiction\",\"Who is the Inventor, and what does he want with the all-new Ms. Marvel and\nall her friends? Maybe Wolverine can help! Kamala may be fan-girling out\nwhen her favorite (okay maybe Top Five) super hero shows up, but that won't\nstop her from protecting her hometown. Then, Kamala crosses paths with\nInhumanity for the first time - by meeting the royal dog, Lockjaw! Every\ngirl wants a puppy, but this one may be too much of a handful, even for a\nsuper hero with embiggening powers. But why is Lockjaw really with Kamala?\nAs Ms. Marvel discovers more about her past, the Inventor continues to\nthreaten her future. The fan-favorite, critically acclaimed, amazing new\nseries continues as Kamala Khan proves why she's the best (and most\nadorable) new super hero there is! COLLECTING: Ms. Marvel 6-11\"\r\n6148,6469,56480,Elisabeth Elliot,Passion and Purity: Learning to Bring Your Love Life Under Christ's Control,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437303179l/56480._SY475_.jpg,4.15,13767,\"christian, nonfiction\",\"Using her own life as an example, Elliot guides singles of both genders and\nof any age on how to put their love lives under the authority of Jesus\nChrist.\"\r\n6149,6470,13406425,\"Jenny Han, Siobhan Vivian\",Burn for Burn,https://images.gr-assets.com/books/1332791803l/13406425.jpg,3.87,18772,\"contemporary, romance\",\"Three teenaged girls living on Jar Island band together to enact revenge on\nthe people that have hurt them.\"\r\n6150,6471,10131648,David McCullough,The Greater Journey: Americans In Paris,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347613581l/10131648.jpg,3.9,14001,\"history, nonfiction\",\"McCullough mixes famous and obscure names and delivers capsule biographies\nof everyone to produce a colorful parade of educated, Victorian-era\nAmerican travelers and their life-changing experiences in Paris.\"\r\n6151,6472,429883,David Eddings,The Hidden City,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212612l/429883.jpg,3.97,18718,\"fantasy, fiction\",\"Sparhawk faces his greatest enemy, rescues his beloved Queen Ehlana from\nher abductors without surrendering his jewel of power, and confronts the\ndreaded monster Klael\"\r\n6152,6473,22915460,\"Petra Durst-Benning, Samuel Willcocks\",Die Glasbläserin,https://images.gr-assets.com/books/1408013754l/22915460.jpg,3.87,13478,\"fiction, romance\",\"In the village of Lauscha in Germany, things have been done the same way\nfor centuries. The men blow the glass, and the women decorate and pack it.\nBut when Joost Steinmann passes away unexpectedly one September night, his\nthree daughters must learn to fend for themselves. While feisty Johanna\ntakes a practical approach to looking for work, Ruth follows her heart,\naiming to catch the eye of a handsome young villager. But it is dreamy,\nquiet Marie who has always been the most captivated by the magic—and\nsparkling possibilities—of the craft of glassblowing. As the spirited\nsisters work together to forge a brighter future for themselves on their\nown terms, they learn not only how to thrive in a man's world, but how to\nremain true to themselves—and their hearts—in the process.\"\r\n6153,6474,12712435,Maggie Shipstead,Seating Arrangements,https://images.gr-assets.com/books/1329425347l/12712435.jpg,3.02,14243,\"fiction, contemporary\",\"Possessing a Harvard education and all of the accoutrements of a privileged\nlife, Winn Van Meter attends the wedding of his eldest daughter, which is\nscandalized by the bride's advancing pregnancy, her sister's broken heart\nand the seductive machinations of wedding party members. A first novel.\nReprint.\"\r\n6154,6475,6750,David Foster Wallace,The Broom of the System,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923908l/6750.jpg,3.84,13011,\"fiction, contemporary\",\"The \"\"dazzling, exhilarating\"\" (San Francisco Chronicle) debut novel from one\nof this century's most groundbreaking writers, The Broom of the System is\nan outlandishly funny and fiercely intelligent exploration of the paradoxes\nof language, storytelling, and reality.\"\r\n6155,6476,5082599,Julie James,Practice Makes Perfect,https://images.gr-assets.com/books/1342552769l/5082599.jpg,3.99,23783,\"romance, contemporary\",\"When it comes to the laws of attraction, there are no rules--and the battle\nbetween the sexes is about to make two lawyers hot under the collar.\nOriginal.\"\r\n6156,6477,81524,Patrick Carman,The Dark Hills Divide,https://images.gr-assets.com/books/1393452185l/81524.jpg,3.71,19358,\"fantasy, fiction\",\"A mysterious evil lurks in the forests beyond the immense walls that\nsurround Alexa's village. Her natural curiosity leads her to solve the\nmystery, but there is danger in exposing the truth behind the townspeople's\nfear - a danger that could destroy everything Alexa holds dear.\"\r\n6157,6478,17331518,Tahereh Mafi,Fracture Me,https://images.gr-assets.com/books/1383413233l/17331518.jpg,3.77,24092,\"fantasy, romance\",\"In this electrifying sixty-page companion novella to the New York Times\nbestselling Shatter Me series, discover the fate of the Omega Point rebels\nas they go up against The Reestablishment. Set during and soon after the\nfinal moments of Unravel Me, Fracture Me is told from Adam's perspective.\nAs the Omega Point rebels prepare to fight the Sector 45 soldiers, Adam's\nmore focused on the safety of Juliette, Kenji, and his brother. The\nReestablishment will do anything to crush the resistance . . . including\nkilling everyone Adam cares about. Fracture Me sets the stage for Ignite\nMe, the explosive third installment in Tahereh Mafi's epic dystopian\nseries. It's a novella not to be missed by fans who crave action-packed\nstories with tantalizing romance like Divergent by Veronica Roth, The\nHunger Games by Suzanne Collins, and Legend by Marie Lu. Don’t miss Defy\nMe, the shocking fifth book in the Shatter Me series!\"\r\n6158,6479,25251757,Megan Abbott,You Will Know Me,https://images.gr-assets.com/books/1467210264l/25251757.jpg,3.45,17002,\"mystery, fiction\",You Will Know MeMegan Abbott\r\n6159,6480,119829,Sharon Kay Penman,The Sunne in Splendour,https://images.gr-assets.com/books/1361649213l/119829.jpg,4.4,15364,\"fiction, history\",The Sunne in SplendourSharon Kay Penman\r\n6160,6482,16130986,Scott Pratt,An Innocent Client,https://images.gr-assets.com/books/1352135419l/16130986.jpg,4.16,8045,\"mystery, fiction\",\"A preacher is found brutally murdered in a Tennessee motel room.A\nbeautiful, mysterious young girl is accused. In this Mystery Readers\nInternational finalist for \"\"Best Debut Mystery,\"\" criminal defense lawyer\nJoe Dillard has become jaded over the years as he's tried to balance his\ncareer against his conscience. Savvy but cynical, Dillard wants to quit\ndoing criminal defense, but he can't resist the chance to represent someone\nwho might actually be innocent. His drug-addicted sister has just been\nreleased from prison and his mother is succumbing to Alzheimer's, but\nDillard's commitment to the case never wavers despite the personal troubles\nand professional demands that threaten to destroy him.\"\"Pratt's richly\ndeveloped characters are vivid and believable, especially the strong\nSouthern women who fight their male-dominated culture from behind a facade\nof vulnerability in this brilliantly executed debut.\"\" -- Publisher's\nWeekly.\"\"It's Scott Turow and Grisham... The opening chapter is maybe the\nmost compelling I've read in a decade.\"\" - Ken Bruen.Smart and\nsophisticated, with a plot twist that will leave you shaking your head in\nwonder, \"\"An Innocent Client\"\" -- the first in the acclaimed Joe Dillard\nseries -- will also leave you wanting more.\"\r\n6161,6483,918789,Irving Shulman,West Side Story,https://images.gr-assets.com/books/1350302485l/918789.jpg,4.12,16593,\"classics, fiction\",\"Tony and Maria find their love threatened by the hatred of two rival New\nYork street gangs\"\r\n6162,6484,24870,Anne McCaffrey,The MasterHarper of Pern,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347779649l/24870.jpg,4.22,18322,\"fiction, fantasy\",The MasterHarper of PernAnne McCaffrey\r\n6163,6485,2272880,Leonard Mlodinow,The Drunkard's Walk: How Randomness Rules Our Lives,https://images.gr-assets.com/books/1320392907l/2272880.jpg,3.88,12818,\"science, nonfiction\",\"An irreverent look at how randomness influences our lives, and how our\nsuccesses and failures are far more dependent on chance events than we\nrecognize.\"\r\n6164,6486,13097901,James Patterson,\"Merry Christmas, Alex Cross\",https://images.gr-assets.com/books/1322032145l/13097901.jpg,3.85,12343,\"mystery, fiction\",\"It's Christmas Eve and Detective Alex Cross has been called out to catch\nsomeone who's robbing his church's poor box. That mission behind him, Alex\nreturns home to celebrate with Bree, Nana, and his children. The tree\ndecorating is barely underway before his phone rings again-a horrific\nhostage situation is quickly spiraling out of control. Away from his own\nfamily on the most precious of days, Alex calls upon every ounce of his\ntraining, creativity, and daring to save another family. Alex risks\neverything-and he may not make it back alive on this most sacred of family\ndays. Alex Cross is a hero for our time, and never more so than in this\nstory of family, action, and the deepest moral choices. MERRY CHRISTMAS,\nALEX CROSS will be a holiday classic for years to come.\"\r\n6165,6487,3368,Steve Krug,Don't Make Me Think! A common sense approach to web usability,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390867006l/3368.jpg,4.24,7296,\"business, nonfiction\",\"Offers observations and solutions to fundamental Web design problems, such\nas how to design pages for scanning, how to eliminate needless words, and\nhow to streamline design for user navigation, while revealing why most Web\ndesign team arguments about usability are a waste of time.\"\r\n6166,6488,45020,Charlaine Harris,\"Shakespeare's Landlord (Lily Bard, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270110l/45020.jpg,3.76,21091,\"mystery, fiction\",\"While trying to prove her innocence in the murder of her landlord, Lily\nBard, karate student and cleaning service proprietor, finds plenty of\nskeletons in the closets of Shakespeare, Arkansas. Reprint.\"\r\n6167,6489,13183957,Jennifer L. Armentrout,Shadows,https://images.gr-assets.com/books/1328414465l/13183957.jpg,4.16,26697,\"paranormal, romance\",\"Don't miss Shadows, Dawson Black’s story in Jennifer L. Armentrout's\nbestselling Lux series, now available as a standalone in print for the\nfirst time! \"\"An unmissable series!\"\" –Samantha Young, New York Times\nbestselling author of On Dublin Street “This is the stuff swoons are made\nof.” —Wendy Higgins, New York Times bestselling author of Sweet Evil The\nlast thing Dawson Black expected was Bethany Williams. As a Luxen, an alien\nlife-form on Earth, human girls are...well, fun. But since the Luxen have\nto keep their true identities a secret, falling for one would be insane.\nDangerous. Tempting. Undeniable. Bethany can't deny the immediate\nconnection between her and Dawson. And even though boys aren't a\ncomplication she wants, she can't stay away from him. Still, whenever they\nlock eyes, she's drawn in. Captivated. Lured. Loved. Dawson is keeping a\nsecret that will change her existence...and put her life in jeopardy. But\neven he can't stop risking everything for one human girl. Or from a fate\nthat is as unavoidable as love itself. Want to read the LUX series on your\nereader? Each book is sold individually in e-format: #1: Obsidian #2: Onyx\n#3: Opal #4: Origin #5: Opposition Dawson’s story: Shadows\"\r\n6168,6490,8100267,Orson Scott Card,Pathfinder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269881l/8100267.jpg,3.98,16979,\"fantasy, fiction\",PathfinderOrson Scott Card\r\n6169,6491,29340182,Lindy West,\"Shrill: Women Are Funny, It's Okay to Be Fat, and Feminists Don't Have to Be Nice\",https://images.gr-assets.com/books/1460015959l/29340182.jpg,4.23,15258,\"memoir, nonfiction\",\"Shrill: Women Are Funny, It's Okay to Be Fat, and Feminists Don't Have to Be NiceLindy West\"\r\n6170,6492,47959,Anne Bishop,Queen of the Darkness,https://images.gr-assets.com/books/1325423531l/47959.jpg,4.37,19743,\"fantasy, romance\",Queen of the DarknessAnne Bishop\r\n6171,6493,21518647,Harper Sloan,Axel,https://images.gr-assets.com/books/1395241107l/21518647.jpg,4.13,9556,\"romance, contemporary\",\"Isabelle West has learned the hard way how hard life can be when fate isn't\nby your side. It can hand you dreams on silver platters, but it can snatch\nthem right back and hand you nightmares. She's getting her life back, but\nwhen problems start causing her to fear her new life, the last thing she\nneeds is a ghost from her past to come knocking on her door. Axel never\nthought he would look into the eyes of Isabelle West again. He's carried\nhis anger for so long... but when he is faced with protecting her and an\nunexpected desire to have her again, life gets a little more complicated.\"\r\n6172,6494,8419428,Julie James,A Lot Like Love,https://images.gr-assets.com/books/1284384506l/8419428.jpg,4.09,23883,\"romance, contemporary\",A Lot Like LoveJulie James\r\n6173,6495,123170,\"Jim Kjelgaard, Carl Pfeuffer\",Big Red,https://images.gr-assets.com/books/1320551723l/123170.jpg,4.11,15923,\"fiction, classics\",\"A boy and an Irish setter wander over wilderness trails, hunt together, and\nfight for their lives against a killer bear.\"\r\n6174,6496,767307,Caleb Carr,The Angel of Darkness,https://images.gr-assets.com/books/1433066571l/767307.jpg,3.94,16343,\"mystery, fiction\",\"In the sequel to the best-selling period thriller, The Alienist, a turn-of-\nthe-century New York doctor confronts a cunning murderer defended by the\ngreat Clarence Darrow in a riveting trial. Reprint.\"\r\n6175,6497,13337716,George R.R. Martin,A Dance With Dragons: Part 2 After The Feast,https://images.gr-assets.com/books/1327932256l/13337716.jpg,4.41,11486,\"fantasy, fiction\",A Dance With Dragons: Part 2 After The FeastGeorge R.R. Martin\r\n6176,6498,386421,Mercer Mayer,I Was So Mad (Look-Look),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245664l/386421.jpg,4.21,15379,\"fiction, fantasy\",A child tries a variety of ways to dissolve anger.\r\n6177,6499,6224895,Arthur Conan Doyle,Sherlock Holmes : Silver Blaze,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1234141650l/6224895.jpg,4.18,14024,\"mystery, classics\",Sherlock Holmes : Silver BlazeArthur Conan Doyle\r\n6178,6500,25657,Augusten Burroughs,Sellevision,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388456404l/25657.jpg,3.54,12934,\"fiction, memoir\",SellevisionAugusten Burroughs\r\n6179,6501,16315,Agatha Christie,Crooked House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923185l/16315.jpg,3.98,15657,\"mystery, fiction\",Crooked HouseAgatha Christie\r\n6180,6502,316845,T.H. White,The Sword in the Stone,https://images.gr-assets.com/books/1355212194l/316845.jpg,3.92,17104,\"classics, fiction\",\"An old wizard named Merlyn takes care of a curious young boy named Wart and\ntransforms him into Arthur, the future king of Britain, in a beautiful new\nedition of the classic tale, enhanced by luminous paintings. Children's\nBOMC Main.\"\r\n6181,6503,82780,Jaclyn Moriarty,Finding Cassie Crazy,https://images.gr-assets.com/books/1388634474l/82780.jpg,3.9,16357,\"contemporary, romance\",\"Cassie is in Year 10 at Ashbury High. Ashbury students claim that the kids\nat Brookfield High are drug-dealers and psychopaths. Their teacher starts a\npen-pal project which leads to an escalation of the war between the two\nschools, to secret romance and to Cassie learning to face her fears.\"\r\n6182,6504,21412673,Anne Rice,Prince Lestat,https://images.gr-assets.com/books/1394635385l/21412673.jpg,3.76,12463,\"fantasy, paranormal\",\"A stunning departure, a surprising and compelling return…From Anne Rice,\nperennial best seller, single-handed reinventor of the vampire cosmology--a\nnew, exhilarating novel, a deepening of her vampire mythology, and a\nchillingly hypnotic mystery-thriller. \"\"What can we do but reach for the\nembrace that must now contain both heaven and hell: our doom again and\nagain and again…\"\" --from The Vampire Lestat Rice once again summons up the\nirresistible spirit-world of the oldest and most powerful forces of the\nnight, invisible beings unleashed on an unsuspecting world able to take\nblood from humans, in a long-awaited return to the extraordinary world of\nthe Vampire Chronicles and the uniquely seductive Queen of the Damned\n(\"\"mesmerizing\"\" --San Francisco Chronicle), a long-awaited novel that picks\nup whereThe Vampire Lestat (\"\"brilliant…its undead characters are utterly\nalive\"\" --New York Times) left off more than a quarter of a century ago to\ncreate an extraordinary new world of spirits and forces--the characters,\nlegend, and lore of all the Vampire Chronicles. The novel opens with the\nvampire world in crisis…vampires have been proliferating out of control;\nburnings have commenced all over the world, huge massacres similar to those\ncarried out by Akasha inThe Queen of the Damned…Old vampires, roused from\nslumber in the earth are doing the bidding of a Voice commanding that they\nindiscriminately burn vampire-mavericks in cities from Paris and Mumbai to\nHong Kong, Kyoto, and San Francisco. As the novel moves from present-day\nNew York and the West Coast to ancient Egypt, fourth century Carthage,\n14th-century Rome, the Venice of the Renaissance, the worlds and beings of\nall the Vampire Chronicles-Louis de Pointe du Lac; the eternally young\nArmand, whose face is that of a Boticelli angel; Mekare and Maharet,\nPandora and Flavius; David Talbot, vampire and ultimate fixer from the\nsecret Talamasca; and Marius, the true Child of the Millennia; along with\nall the other new seductive, supernatural creatures-come together in this\nlarge, luxuriant, fiercely ambitious novel to ultimately rise up and seek\nout who-or what-the Voice is, and to discover the secret of what it desires\nand why… And, at the book's center, the seemingly absent, curiously missing\nhero-wanderer, the dazzling, dangerous rebel-outlaw--the great hope of the\nUndead, the dazzling Prince Lestat…\"\r\n6183,6505,95693,L.M. Montgomery,The Blue Castle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442108651l/95693.jpg,4.23,18190,\"classics, romance\",The Blue CastleL.M. Montgomery\r\n6184,6508,102324,\"Alan Moore, Stephen R. Bissette, John Totleben, Rick Veitch, Ramsey Campbell\",\"The Saga of the Swamp Thing, Vol 20 - 27\",https://images.gr-assets.com/books/1393967527l/102324.jpg,4.2,16374,\"comics, horror\",\"From 1983 through 1987, a young British writer named Alan Moore\nrevolutionized the American comic book. His groundbreaking tenure on DC\nComics' SWAMP THING set new standards for graphic storytelling and touched\noff a revolution in the medium that is still expanding today. Building on\nthe title's framework of gothic horror with a remarkably intuitive\nnarrative style and an unprecedented depth of characterization, Moore's\nvision was realized through the hauntingly beautiful artwork of such\ncollaborators as Stephen Bissette, John Totleben, Dan Day and Rick Veitch.\nThe result is one of comics' most enduring masterpieces. Now, for the first\ntime, Moore's entire run — including his never-before-reprinted debut issue\n— is available in archival hardcover editions. This first volume,\ncollecting issues 20-27 of THE SAGA OF THE SWAMP THING, also features a\nforeword by famed horror author Ramsey Campbell and a new introduction by\nSwamp Thing co-creator and original series editor Len Wein.\"\r\n6185,6509,63432,Arthur C. Clarke,3001: The Final Odyssey,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.49,14392,\"fiction, science\",\"The conclusion of the series that began with 2001: A Space Odyssey explains\nwhat really happened to Dave Bowman, who reentered the Discovery to\nincapacitate the psychotic computer HAL, and speculates about the future\nrelationship between man and machine. Reprint.\"\r\n6186,6510,21683,Dennis Lehane,Prayers for Rain ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390016912l/21683.jpg,4.08,14713,\"mystery, fiction\",\"As Patrick Kenzie and Angela Gennaro--Boston private investigators--attempt\nto identify and save the next victim of a psychological killer, the\nsinister force turns on them and thus begins a life-threatening game of\npsychological warfare. Tour.\"\r\n6187,6512,16372,Agatha Christie,The Mirror Crack'd from Side to Side,https://images.gr-assets.com/books/1466335226l/16372.jpg,3.89,20177,\"mystery, fiction\",\"One minute, silly Heather Babcock had been babbling on at her movie idol,\nthe glamorous Marina Gregg. The next, Heather suffered a massive seizure,\npoisoned by a deadly cocktail. It seems likely that the cocktail was\nintended for the beautiful actress. But while the police fumble to find\nclues, Miss Marple begins to ask her own questions, because as she\nknows—even the most peaceful village can hide dark secrets.\"\r\n6188,6513,6481245,Lara Adrian,Shades of Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388946059l/6481245.jpg,4.28,21786,\"paranormal, romance\",\"Bush pilot Alexandra Maguire comes face-to-face with a horrific event from\nher past when an inhuman creature leaves a trail of bloody carnage in the\nfrigid Alaskan wilds, forcing her to team up with a vampire warrior sent to\nstop the attacks. Original.\"\r\n6189,6514,196951,Jan Brett,The Hat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172603741l/196951._SX318_.jpg,4.25,17033,\"fiction, fantasy\",The HatJan Brett\r\n6190,6515,11988046,Kasie West,Pivot Point,https://images.gr-assets.com/books/1356020486l/11988046.jpg,4.08,20173,\"paranormal, fantasy\",\"A girl with the power to see alternate futures lives out six weeks of two\ndifferent lives in alternating chapters and while both futures hold the\npotential for love and loss, ultimately she is forced to choose which\nreality she's willing to live through... and who she can't live without.\n50,000 first printing.\"\r\n6191,6516,39795,\"Henning Mankell, Laurie Thompson\",Hundarna i Riga,https://images.gr-assets.com/books/1341858828l/39795.jpg,3.72,14794,\"mystery, fiction\",\"February, 1991. A life raft washes ashore in Skåne carrying two dead men in\nexpensive suits, shot gangland-style. Inspector Kurt Wallander and his team\ndetermine that the men were Eastern European criminals. But what appears in\nSweden to be an open-and-shut case soon plunges Wallander into an alien\nworld of police surveillance, thinly veiled threats, and life-endangering\nlies. When another murder is committed, Wallander must travel to Riga,\nLatvia, at the peak of the massive social and political upheaval that\npreceded the nation’s independence from the Soviet Union. Struggling to\ncatch up with the culprits he pursues in this shadowy nation, Wallander\nfinds that he must make a choice, decide who is lying and who is telling\nthe truth, and test his bravery.\"\r\n6192,6517,23209924,Paolo Bacigalupi,The Water Knife,https://images.gr-assets.com/books/1411059576l/23209924.jpg,3.83,11438,\"fiction, thriller\",\"Paolo Bacigalupi, \"\"New York Times\"\" best-selling author of \"\"The Windup Girl\"\"\nand National Book Award finalist, delivers a near-future thriller that\ncasts new light on how we live today and what may be in store for us\ntomorrow.\"\r\n6193,6518,6506085,Karl Weber,\"Food Inc.: A Participant Guide: How Industrial Food is Making Us Sicker, Fatter, and Poorer-And What You Can Do About It\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328318449l/6506085.jpg,4.19,13467,\"nonfiction, science\",\"Presents a series of critical essays on the food industry in the United\nStates, discussing food safety, childhood obesity, the improvement of\nnutrition for children,and the impact of industrialization and global\nwarming on food production.\"\r\n6194,6519,342240,Catherine Coulter,The Cove,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439122987l/342240._SX318_.jpg,3.86,17561,\"mystery, romance\",\"Sally Brainerd, daughter of the murdered Amory St. John, flees Washington,\nD.C., to seek sanctuary in the quaint little town called The Cove, pursued\nby undercover FBI agent James Quinlan, who believes that Sally holds the\nkey to solving her father's murder. Original.\"\r\n6195,6520,14404,Robert Crais,The Monkey's Raincoat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348618089l/14404.jpg,3.98,14940,\"mystery, fiction\",\"Taking the mystery community by storm, this Elvis Cole novel was nominated\nfor the Edgar, Anthony, Shamus, and Macavity awards and won both the\nAnthony and Macavity for Best Novel of the Year. Crais, a VP at Paramount,\nwas previously head script writer for Quincy, Hill Street Blues, and Cagney\nand Lacey.\"\r\n6196,6521,368772,Herman Wouk,The Caine Mutiny,https://images.gr-assets.com/books/1410224968l/368772.jpg,4.23,15820,\"fiction, classics\",\"A series of events aboard a U.S. destroyer during World War II culminate in\nan alleged mutiny, which leads to a court martial.\"\r\n6197,6523,55022,James Lee Burke,The neon rain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386748162l/55022.jpg,3.98,14693,\"mystery, fiction\",\"Dave Robicheaux, a New Orleans detective, discovers that someone wants him\ndead and becomes involved with drug dealers, Mafia chieftains, an ex-\ngeneral with shady dealings in Central America, and a beautiful woman.\"\r\n6198,6524,851393,\"Thomas à Kempis, William Benham\", De Imitatione Christi,https://images.gr-assets.com/books/1320442968l/851393.jpg,4.19,12563,\"religion, classics\",\" De Imitatione ChristiThomas à Kempis, William Benham\"\r\n6199,6526,237665,Kevin Henkes,Kitten's First Full Moon,https://images.gr-assets.com/books/1400866970l/237665.jpg,4.07,18458,\"fiction, fantasy\",\"Somebody loves Kitten, and you will, too! Winner of the Caldecott Medal A\nNew York Times Best Illustrated Book Winner of the Charlotte Zolotow Award\"\r\n6200,6527,28862528,\"Brian K. Vaughan, Fiona Staples\",\"Saga, Volume Six\",https://images.gr-assets.com/books/1486028997l/28862528.jpg,4.49,18433,\"comics, fantasy\",\"Saga, Volume SixBrian K. Vaughan, Fiona Staples\"\r\n6201,6528,143761,Debbie Macomber,A Good Yarn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1408849879l/143761.jpg,4.11,16467,\"fiction, romance\",A Good YarnDebbie Macomber\r\n6202,6529,7776678,Richard Castle,Naked Heat,https://images.gr-assets.com/books/1327874198l/7776678.jpg,3.75,16146,\"mystery, fiction\",\"NYPD detective Nikki Heat must deal with the continual presence of magazine\njournalist Jameson Rook as she works to solve the murder of a real estate\nmagnate.\"\r\n6203,6532,125564,R.L. Stine,Night of the Living Dummy,https://images.gr-assets.com/books/1328867793l/125564.jpg,3.8,16646,\"fiction, horror\",\"Lindy and Kris become interested in ventriloquism, but they hardly suspect\nthat Kris' new dummy has a mind of its own.\"\r\n6204,6533,78989,Jeffrey Archer,Shall We Tell the President?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520655298l/78989._SX318_.jpg,3.69,12792,\"fiction, mystery\",\"As President Florentyna Kane tries to push her tough gun-control bill\nthrough Congress, Special Agent Mark Andrews is charged with finding out\nwhich senator is involved in an assassination plot that has already\nresulted in the deaths of four people.\"\r\n6205,6534,6344832,Charlaine Harris,\"Grave Secret (Harper Connelly, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179757l/6344832.jpg,3.94,22334,\"mystery, paranormal\",\"Grave Secret (Harper Connelly, #4)Charlaine Harris\"\r\n6206,6535,334286,Peter Shaffer,Equus : a play,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388634114l/334286.jpg,3.94,15126,\"fiction, classics\",Equus : a playPeter Shaffer\r\n6207,6536,13817,Raymond E. Feist,\"Shards of a Broken Crown (The Serpentwar Saga, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1508008670l/13817._SY475_.jpg,3.99,16227,\"fantasy, fiction\",\"The demon is no more. The enemy has been routed. But all is not well . . .\nWinter's icy grasp is loosening on the world. The Emerald Queen's\nvanquished army has its broken back to the Bitter Sea. And treachery is its\nonly recourse. A lackey has declared himself Lord of the defeated, amassing\nthe still fearsome remnants of a ruthless fighting force together for one\nfinal assault on a weakened, vulnerable realm. For the warriors who\nremained steadfast against terrible numbers, for the courageous souls who\nbarely survived a devastating onslaught upon their homeland, the time to\nrebuild and renew has not yet come. The war is not over in Midkemia. And\nJimmy and Dash—two young noble brothers who stand at the center of a\ngathering storm—are impelled to action that could secure a tenuous peace .\n. . or turn triumph into catastrophe. The demon is no more. The enemy has\nbeen routed. But all is not well . . .\"\r\n6208,6537,17722973,\"Chris Colfer, Brandon Dorman\",The Enchantress Returns,https://images.gr-assets.com/books/1364843824l/17722973.jpg,4.49,17845,\"fantasy, fiction\",\"After decades of hiding, the evil Enchantress who cursed Sleeping Beauty is\nback with a vengeance. Alex and Conner Bailey have not been back to the\nmagical Land of Stories since their adventures in The Wishing Spell ended.\nBut one night, they learn the famed Enchantress has kidnapped their mother!\nAgainst the will of their grandmother, the twins must find their own way\ninto the Land of Stories to rescue their mother and save the fairy tale\nworld from the greatest threat it's ever faced.\"\r\n6209,6538,23485372,Charlie N. Holmberg,The Master Magician,https://images.gr-assets.com/books/1422130439l/23485372.jpg,3.82,17142,\"fantasy, romance\",\"Throughout her studies, Ceony Twill has harbored a secret, one she's kept\nfrom even her mentor, Emery Thane. She's discovered how to practice forms\nof magic other than her own--an ability long thought impossible. While all\nseems set for Ceony to complete her apprenticeship and pass her upcoming\nfinal magician's exam, life quickly becomes complicated. To avoid\nfavoritism, Emery sends her to another paper magician for testing, a Folder\nwho despises Emery and cares even less for his apprentice. To make matters\nworse, a murderous criminal from Ceony's past escapes imprisonment. Now she\nmust track the power-hungry convict across England before he can take his\nrevenge. With her life and loved ones hanging in the balance, Ceony must\nface a criminal who wields the one magic that she does not, and it may\nprove more powerful than all her skills combined. The whimsical and\ncaptivating follow-up to The Paper Magician and The Glass Magician, The\nMaster Magician will enchant readers of all ages.\"\r\n6210,6539,15746,Dean Koontz,One Door Away from Heaven,https://images.gr-assets.com/books/1308459846l/15746.jpg,3.95,16299,\"horror, mystery\",One Door Away from HeavenDean Koontz\r\n6211,6540,7491418,Lisa Kleypas,Love in the Afternoon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402012474l/7491418.jpg,4.2,24803,\"romance, fiction\",Love in the AfternoonLisa Kleypas\r\n6212,6541,1395209,\"Joseph Delaney, Patrick  Arrasmith\",Attack of the Fiend (The Last Apprentice #4),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347507804l/1395209.jpg,4.19,14814,\"fantasy, horror\",\"\"\"I see your future clearly. Your master will be dead, and you will be\nalone. It would be better if you had never been born.\"\" Thomas Ward is the\napprentice for the local Spook, who banishes boggarts and drives away\nghosts. But now a new danger is threatening Tom's world: the witches are\nrising and the three most powerful clans are uniting in order to conjure an\nunimaginable evil. Tom and the Spook set out to stop the witches before\nthey unleash the demon. But when Tom finds himself on his own, he wonders\nif he has the courage and cunning to defeat the most powerful enemy he has\never encountered.\"\r\n6213,6542,14165516,Jennifer Probst,The Marriage Trap,https://images.gr-assets.com/books/1346736227l/14165516.jpg,3.9,23655,\"romance, contemporary\",The Marriage TrapJennifer Probst\r\n6214,6543,246468,\"Sam Smith, Doug Grud\",The Jordan Rules,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434304310l/246468._SY475_.jpg,4.23,11148,\"sports, biography\",\"A provocative study of the image of Michael Jordan reveals his stormy\nrelationships with his coaches and teammates, his obsession with becoming\nthe leading scorer, and his petty feuds with other NBA stars\"\r\n6215,6544,2897258,Michelle Moran,The Heretic Queen,https://images.gr-assets.com/books/1422755729l/2897258.jpg,4.21,16155,\"fiction, romance\",\"In ancient Egypt, a forgotten princess must overcome her family's past and\nremake history. Nefertari has been left to run wild in the palace, but\ncatches the eye of the Crown Prince. All of Egypt opposes this union, and\npolitical adversity sets the country on edge.\"\r\n6216,6545,313620,John Ortberg,\"If You Want to Walk on Water, You've Got to Get Out of the Boat\",https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,4.13,12608,\"christian, religion\",\"If You Want to Walk on Water, You've Got to Get Out of the BoatJohn Ortberg\"\r\n6217,6546,4332082,Janice Y.K. Lee,The Piano Teacher,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547333546l/4332082._SY475_.jpg,3.32,16172,\"fiction, romance\",\"Hired by the wealthy Chen family as a piano instructor, Claire Pendleton is\nseduced by the social life of Hong Kong's expatriate community and begins\nan affair with Will Truesdale, an enigmatic Englishman with a devastating\npast.\"\r\n6218,6547,48834,Livia E. Bitton-Jackson,I Have Lived A Thousand Years: Growing Up In The Holocaust,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194576l/48834.jpg,4.17,15987,\"history, nonfiction\",\"The author describes her experiences during World War II when she and her\nfamily were sent to the Nazi death camp at Auschwitz.\"\r\n6219,6548,11104933,\"Roy F. Baumeister, John Tierney\",Willpower: Rediscovering the Greatest Human Strength,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347857263l/11104933.jpg,3.95,12667,\"psychology, nonfiction\",\"A forefront psychologist and a New York Times science writer draw on a\nlandmark study linking will power to glucose levels, identifying the\npivotal roles of healthy eating and sleeping in achieving personal goals\nwhile outlining strategic recommendations for establishing self-control\nhabits. Reprint.\"\r\n6220,6549,7907680,Tami Hoag,Secrets to the Grave,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388713383l/7907680.jpg,4.09,15381,\"mystery, suspense\",\"Sheriff's detective Tony Mendez and child advocate Anne Leone investigate\nthe murder of Marissa Fordham--a case that hinges on a key witness,\nMarissa's young daughter, Haley--and soon discover a shocking fact--Marissa\nFordham never existed. By the best-selling author of Deeper Than the Dead.\nReprint.\"\r\n6221,6550,9424367,Caragh M. O'Brien,Prized,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442875603l/9424367._SY475_.jpg,3.99,19328,\"romance, fantasy\",PrizedCaragh M. O'Brien\r\n6222,6551,76660,Piers Anthony,With a Tangled Skein,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923111l/76660.jpg,3.98,17286,\"fantasy, fiction\",With a Tangled SkeinPiers Anthony\r\n6223,6552,14964,Anita Shreve,Body Surfing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257738l/14964.jpg,3.31,15041,\"fiction, romance\",Body SurfingAnita Shreve\r\n6224,6553,7628,\"Ford Madox Ford, Kenneth Womack, William Baker\",The Good Soldier,https://images.gr-assets.com/books/1389213508l/7628.jpg,3.72,14471,\"fiction, classics\",\"One of the most important works of twentieth-century British literature,\nThe Good Soldier addresses the lives and interrelationships between two\ncouples: one American, one British. A tragicomic novel of manners, in which\nJohn Dowell narrates the disintegration of both his own and another\nmarriage, the work’s depiction of passion and intrigue offers an ironic\nreading of Edwardian-era values. The Broadview edition features the text of\nthe first edition of the novel published by John Lane and The Bodley Head\nin 1915. It also includes: other writings by Ford Madox Ford (“On Heaven,”\nexcerpts from Henry James: A Critical Study, “On Impressionism,” and\n“Techniques”); contemporary reviews; and Ezra Pound’s obituary of Ford\nMadox Ford.\"\r\n6225,6554,28484,\"Margaret Weis, Tracy Hickman\",Into the Labyrinth,https://images.gr-assets.com/books/1327837279l/28484.jpg,4.09,16582,\"fantasy, fiction\",\"Alfred and Haplo enter a terrifying prison maze that has long been shrouded\nin mystery and are followed by two assassins sent to take Haplo's life\"\r\n6226,6555,74821,J.L. Bourne,Day by Day Armageddon,https://images.gr-assets.com/books/1474936945l/74821.jpg,4.01,11646,\"horror, fiction\",Day by Day ArmageddonJ.L. Bourne\r\n6227,6558,96472,David Brin,Sundiver,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176548l/96472.jpg,3.65,17327,\"fiction, mystery\",\"No species has ever reached for the stars without the guidance of a patron\n--except perhaps mankind. Did some mysterious race begin the uplift of\nhumanity aeons ago? Circling the sun, under the caverns of Mercury,\nExpedition Sundiver prepares for the most momentous voyage in history--a\njourney into the boiling inferno of the sun.\"\r\n6228,6559,66857,Stephen Fry,Moab Is My Washpot,https://images.gr-assets.com/books/1327963490l/66857.jpg,3.98,14403,\"biography, memoir\",\"The British author and actor shares his own entertaining gay coming-of-age\nstory, from his tumultuous youth, to the teenage love affair with a fellow\nschoolboy that had a profound impact on his life, to the attempted suicide,\ndeliquency, and madness that followed. 20,000 first printing.\"\r\n6229,6560,22454958,Meredith Wild,Hardline,https://images.gr-assets.com/books/1402463128l/22454958.jpg,4.26,7246,\"romance, contemporary\",HardlineMeredith Wild\r\n6230,6561,37297,John Sandford,Eyes of Prey,https://images.gr-assets.com/books/1400408527l/37297.jpg,4.18,16249,\"mystery, fiction\",\"A weary Lieutenant Lucas Davenport, still recovering from two previous\nbrutal cases, is drawn into the search for a serial killer, an evil man of\nremarkable intelligence and savagery with a penchant for mutilating the\neyes of his victims. Reissue.\"\r\n6231,6563,263172,Ellen Schreiber,\"Kissing Coffins (Vampire Kisses, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191270l/263172.jpg,3.87,22124,\"paranormal, romance\",\"The sequel to Ellen Schreiber's popular Vampire Kisses follows goth\nteenager Raven as she searches for her true love Alexander, whom she's\ndiscovered is a vampire.\"\r\n6232,6564,7519640,Sebastian Junger,WAR,https://images.gr-assets.com/books/1344271278l/7519640.jpg,4.22,13946,\"history, nonfiction\",WARSebastian Junger\r\n6233,6565,8563789,John Corey Whaley,Where Things Come Back,https://images.gr-assets.com/books/1330581469l/8563789.jpg,3.81,14852,\"contemporary, fiction\",\"Seventeen-year-old Cullen's summer in Lily, Arkansas, is marked by his\ncousin's death by overdose, an alleged spotting of a woodpecker thought to\nbe extinct, failed romances, and his younger brother's sudden\ndisappearance.\"\r\n6234,6566,14963,Anita Shreve,A Wedding in December,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389217010l/14963.jpg,3.08,15869,\"fiction, romance\",A Wedding in DecemberAnita Shreve\r\n6235,6567,131304,Simon Singh,Big Bang: The Origin of the Universe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440656279l/131304._SY475_.jpg,4.14,12488,\"science, nonfiction\",\"A half century ago, a shocking Washington Post headline claimed that the\nworld began in five cataclysmic minutes rather than having existed for all\ntime; a skeptical scientist dubbed the maverick theory the Big Bang. In\nthis amazingly comprehensible history of the universe, Simon Singh decodes\nthe mystery behind the Big Bang theory, lading us through the development\nof one of the most extraordinary, important, and awe-inspiring theories in\nscience.\"\r\n6236,6568,107007,\"Alan Moore, Kevin O'Neill\",\"The League of Extraordinary Gentlemen, Vol. 2\",https://images.gr-assets.com/books/1327904678l/107007.jpg,3.94,17034,\"comics, fiction\",\"The League of Extraordinary Gentlemen, Vol. 2Alan Moore, Kevin O'Neill\"\r\n6237,6569,83083,Jacqueline Winspear,Birds of a Feather,https://images.gr-assets.com/books/1386728383l/83083.jpg,3.95,18359,\"mystery, fiction\",Birds of a FeatherJacqueline Winspear\r\n6238,6570,714711,Shiv Khera,You Can Win,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347228056l/714711.jpg,3.83,10752,\"business, nonfiction\",\"An easy-to-read, practical, common-sense guide that will take you from\nancient wisdom to modern-day thinking, You Can Win helps you establish new\ngoals, develop a new sense of purpose, and generate new ideas about\nyourself and your future. It guarantees, as the title suggests, a lifetime\nof success. The book enables you to translate positive thinking into\nattitude, ambition and action to give you the winning edge. This book will\nhelp you to: · Build confidence by mastering the seven steps to positive\nthinking · Be successful by turning weaknesses into strengths · Gain\ncredibility by doing the right things for the right reasons · Take charge\nby controlling things instead of letting them control you · Build trust by\ndeveloping mutual respect with people around you · Accomplish more by\nremoving the barriers to effectiveness.\"\r\n6239,6571,10551947,John Flanagan,The Outcasts,https://images.gr-assets.com/books/1327968303l/10551947.jpg,4.37,16613,\"fantasy, fiction\",\"Hal, who does not fit into Skandian society, ends up in a brotherband, a\ngroup of boys learning the skills that they need to become warriors, with\nother outcasts, and they compete with other brotherbands in a series of\nchallenges.\"\r\n6240,6572,520738,Umberto Eco,Storia della bruttezza,https://images.gr-assets.com/books/1320443510l/520738.jpg,3.88,12728,\"art, philosophy\",Storia della bruttezzaUmberto Eco\r\n6241,6573,35210,Leil Lowndes,How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184197l/35210.jpg,3.8,12206,\"psychology, business\",\"\"\"You'll not only break the ice, you'll melt it away with your new skills.\"\"\n-- Larry King \"\"The lost art of verbal communication may be revitalized by\nLeil Lowndes.\"\" -- Harvey McKay, author of “How to Swim with the Sharks\nWithout Being Eaten Alive” What is that magic quality makes some people\ninstantly loved and respected? Everyone wants to be their friend (or, if\nsingle, their lover!) In business, they rise swiftly to the top of the\ncorporate ladder. What is their \"\"Midas touch?\"\" What it boils down to is a\nmore skillful way of dealing with people. The author has spent her career\nteaching people how to communicate for success. In her book How to Talk to\nAnyone (Contemporary Books, October 2003) Lowndes offers 92 easy and\neffective sure-fire success techniques-- she takes the reader from first\nmeeting all the way up to sophisticated techniques used by the big winners\nin life. In this information-packed book you’ll find: 9 ways to make a\ndynamite first impression 14 ways to master small talk, \"\"big talk,\"\" and\nbody language 14 ways to walk and talk like a VIP or celebrity 6 ways to\nsound like an insider in any crowd 7 ways to establish deep subliminal\nrapport with anyone 9 ways to feed someone's ego (and know when NOT to!) 11\nways to make your phone a powerful communications tool 15 ways to work a\nparty like a politician works a room 7 ways to talk with tigers and not get\neaten alive In her trademark entertaining and straight-shooting style, Leil\ngives the techniques catchy names so you'll remember them when you really\nneed them, including: \"\"Rubberneck the Room,\"\" \"\"Be a Copyclass,\"\" \"\"Come Hither\nHands,\"\" “Bare Their Hot Button,” “The Great Scorecard in the Sky,\"\" and\n\"\"Play the Tombstone Game,” for big success in your social life, romance,\nand business. How to Talk to Anyone, which is an update of her popular\nbook, Talking the Winner's Way (see the 5-star reviews of the latter) is\nbased on solid research about techniques that work! By the way, don't\nconfuse How to Talk to Anyone with one of Leil's previous books, How to\nTalk to Anybody About Anything. This one is completely different!\"\r\n6242,6574,985386,Gosho Aoyama,名探偵コナン 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347938489l/985386.jpg,4.36,12867,\"manga, mystery\",名探偵コナン 1Gosho Aoyama\r\n6243,6575,79428,C.S. Lewis,The Abolition of Man,https://images.gr-assets.com/books/1418843138l/79428.jpg,4.07,14677,\"philosophy, christian\",\"C. S. Lewis sets out to persuade his audience of the importance and\nrelevance of universal values such as courage and honor in contemporary\nsociety.\"\r\n6244,6576,432020,Yoshihiro Togashi,Yu Yu Hakusho,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387350767l/432020.jpg,4.29,13807,\"manga, fantasy\",\"A delinquent’s gotta do what he’s gotta do…in the afterlife. Yusuke\nUrameshi was a tough teen delinquent until one selfless act changed his\nlife...by ending it. When he died saving a little kid from a speeding car,\nthe afterlife didn't know what to do with him, so it gave him a second\nchance at life. Now, Yusuke is a ghost with a mission, performing good\ndeeds at the beshest of Botan, the spirit guide of the dead, and Koenma,\nher pacifier-sucking boss from the \"\"other side.\"\" But what strange things\nawait him on the borderline between life and death?\"\r\n6245,6578,45110,Robin Hobb,Shaman's Crossing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924265l/45110.jpg,3.42,15287,\"fantasy, fiction\",Shaman's CrossingRobin Hobb\r\n6246,6579,223462,Joshilyn Jackson,Gods in Alabama,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441072120l/223462._SY475_.jpg,3.86,15290,\"fiction, contemporary\",\"For 10 years Arlene has kept her promises, and God has kept His end of the\nbargain. Until now. When an old schoolmate from Possett turns up at\nArlene's door in Chicago asking questions about Jim Beverly, former\nquarterback and god of Possett High, Arlene's break with her former\nhometown is forced to an end. At the same time, Burr, her long-time\nboyfriend, has raised an ultimatum: introduce him to her family or consider\nhim gone. Arlene loves him dearly but knows her lily white (not to mention\ndeeply racist)Southern Baptist family will not understand her relationship\nwith an African American boyfriend. Reluctantly, Arlene bows to the\npressure, and she and Burr embark on the long-avoided road trip back home.\nAs Arlene digs through guilt and deception, her patched-together alibi\nbegins to unravel, and she discovers how far she will go for love and a\nchance at redemption.\"\r\n6247,6580,6193821,Sue Grafton,U Is for Undertow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194064l/6193821.jpg,3.93,18716,\"mystery, fiction\",\"After a recent reference to a kidnapping triggers a flood of memories,\nunemployed college dropout Michael Sutton hires Kinsey Millhone to locate a\nfour-year-old girl's remains and find the men who killed her.\"\r\n6248,6581,111023,R.A. Salvatore,Passage to Dawn,https://images.gr-assets.com/books/1312023199l/111023.jpg,4.07,13900,\"fantasy, fiction\",\"Drizzt and his companions journey from the Sword Coast to the Shining\nMountains where the renegade dark elf and friends forge new alliances,\nrenew old friendships, and battle an evil that seeks to destroy them and\ntheir loved ones.\"\r\n6249,6582,295649,L.A. Meyer,\"Bloody Jack: Being an Account of the Curious Adventures of Mary \"\"Jacky\"\" Faber, Ship's Boy\",https://images.gr-assets.com/books/1392868382l/295649.jpg,4.11,19147,\"fiction, romance\",\"Reduced to begging and thievery in the streets of London, a thirteen-year-\nold orphan disguises herself as a boy and connives her way onto a British\nwarship set for high sea adventure in search of pirates.\"\r\n6250,6583,27220736,Phil Knight,Shoe Dog: A Memoir by the Creator of Nike,https://images.gr-assets.com/books/1457284880l/27220736.jpg,4.46,22373,\"business, biography\",Shoe Dog: A Memoir by the Creator of NikePhil Knight\r\n6251,6585,109367,J.D. Robb,\"Survivor in Death (In Death, #20)\",https://images.gr-assets.com/books/1298296888l/109367.jpg,4.38,19512,\"mystery, crime\",\"When the Swisher family of 2059 New York City is murdered, lieutenant Eve\nDallas, her partner Peabody, and her husband Roarke investigate while\nprotecting the family's lone survivor and witness, a terrified nine-year-\nold girl.\"\r\n6252,6586,147941,Andrew Loomis,Figure Drawing for All It's Worth (How to draw and paint),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387701635l/147941.jpg,3.99,12735,\"art, nonfiction\",\"A book of fundamentals for an atristic career. Figure drawing presents the\nbroadest opportunity from the standpoint of earning of any artistic\nendeavor.\"\r\n6253,6587,72929,Sarah Waters,Affinity,https://images.gr-assets.com/books/1328087803l/72929.jpg,3.73,13767,\"fiction, mystery\",\"Visiting a grim Victorian London prison as part of rehabilitative charity\nwork, upper-class suicide survivor Margaret Prior is drawn into the world\nof enigmatic spiritualist and inmate Selina Dawes and is persuaded to help\nher escape.\"\r\n6254,6588,129947,Pat Conroy,The Water is Wide,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347578693l/129947.jpg,4.09,13513,\"memoir, fiction\",\"A teacher recounts a year on Yamacraw Island, off the South Carolina coast,\nwhen he helped black children gain an awareness of themselves as well as\nthe world around them. Reprint.\"\r\n6255,6589,41710,Clive Cussler,Iceberg,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439683898l/41710.jpg,3.83,16195,\"fiction, thriller\",\"A mysterious ship sealed fast in a giant North Atlantic iceberg becomes the\ncause and focus of Air Force Major Dirk Pett's investigation into\ninternational conspiracy and terror\"\r\n6256,6590,59715,Bill Watterson,The Authoritative Calvin and Hobbes,https://images.gr-assets.com/books/1391114055l/59715.jpg,4.73,16087,\"comics, fiction\",\"A large-format treasury of cartoons featuring the mischievous six-year-old\nCalvin and his stuffed tiger Hobbes\"\r\n6257,6591,343881,Tim Winton,Cloudstreet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441969972l/343881._SX318_.jpg,3.97,13067,\"fiction, classics\",\"Two families, the Lambs and the Pickles, are thrown together by chance into\na rambling house, where they struggle with what life has to offer them.\"\r\n6258,6592,179735,Jack Ketchum,The Girl Next Door,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298460378l/179735.jpg,3.95,13491,\"horror, fiction\",The Girl Next DoorJack Ketchum\r\n6259,6593,12839,Carlos Castaneda,A Separate Reality,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388379914l/12839.jpg,4.06,12296,\"spirituality, philosophy\",\"Carlos continues his apprenticeship with Don Juan, and learns about such\nthings as \"\"stopping the world,\"\" \"\"seeing,\"\" and \"\"stalking\"\"\"\r\n6260,6594,25365,\"Natsuo Kirino, Stephen Snyder\",Out  アウト,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749063l/25365.jpg,3.93,14795,\"fiction, mystery\",\"After strangling her husband, Masako Katori, a middle-aged wife and mother\nworking the night shift at a Tokyo factory, enlists the aid of four co-\nworkers to conceal the crime.\"\r\n6261,6595,543086,\"Philippa Pearce, Susan Einzig\",Tom's Midnight Garden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198004l/543086.jpg,4.05,16398,\"fantasy, classics\",\"Tom is furious. His brother, Peter, has measles, so now Tom is being\nshipped off to stay with Aunt Gwen and Uncle Alan in their boring old\napartment. There'll be nothing to do there and no one to play with. Tom\njust counts the days till he can return home to Peter.Then one night the\nlandlady's antique grandfather clock strikes thirteen times leading Tom to\na wonderful, magical discovery and marking the beginning of a secret that's\nalmost too amazing to be true. But it is true, and in the new world that\nTom discovers is a special friend named Hatty and more than a summer's\nworth of adventure for both of them. Now Tom wishes he could stay with his\nrelativesand Hatty -- forever...\"\r\n6262,6596,17563080,Anne Bishop,Murder of Crows,https://images.gr-assets.com/books/1371752568l/17563080.jpg,4.31,22994,\"fantasy, paranormal\",\"A string of drug-fueled violence and murders between humans and Others\nsends cassandra sangue, Meg Corbyn, inside the Courtyard to discuss the\nprophetic dreams she's been having in the follow-up to Written in Red.\n40,000 first printing.\"\r\n6263,6599,17333302,\"David  Perlmutter, Kristin Loberg\",\"Grain Brain: The Surprising Truth about Wheat, Carbs, and Sugar--Your Brain's Silent Killers\",https://images.gr-assets.com/books/1395680212l/17333302.jpg,3.88,10305,\"nonfiction, science\",\"The devastating truth about the effects of wheat, sugar, and carbs on the\nbrain, with a 30-day plan to achieve optimum health. Renowned neurologist\nDavid Perlmutter, MD, blows the lid off a topic that's been buried in\nmedical literature for far too long: carbs are destroying your brain. And\nnot just unhealthy carbs, but even healthy ones like whole grains can cause\ndementia, ADHD, anxiety, chronic headaches, depression, and much more. Dr.\nPerlmutter explains what happens when the brain encounters common\ningredients in your daily bread and fruit bowls, why your brain thrives on\nfat and cholesterol, and how you can spur the growth of new brain cells at\nany age. He offers an in-depth look at how we can take control of our\n\"\"smart genes\"\" through specific dietary choices and lifestyle habits,\ndemonstrating how to remedy our most feared maladies without drugs. With a\nrevolutionary 30-day plan, GRAIN BRAIN teaches us how we can reprogram our\ngenetic destiny for the better.\"\r\n6264,6600,12527,Annie Dillard,Pilgrim at Tinker Creek,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388717988l/12527.jpg,4.1,14685,\"fiction, classics\",\"Pilgrim at Tinker Creek is the story of a dramatic year in Virginia's Blue\nRidge valley. Annie Dillard sets out to see what she can see. What she sees\nare astonishing incidents of \"\"mystery, death, beauty, violence.\"\"\"\r\n6265,6601,13878,Raymond E. Feist,Prince of the Blood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194833l/13878.jpg,3.94,16466,\"fantasy, fiction\",Fantasy-roman.\r\n6266,6602,359581,Roger Zelazny,The Courts of Chaos,https://images.gr-assets.com/books/1417786728l/359581.jpg,4.19,16453,\"fantasy, fiction\",The Courts of ChaosRoger Zelazny\r\n6267,6603,12158480,\"Daron Acemoğlu, James A. Robinson\",\"Why Nations Fail: The Origins of Power, Prosperity, and Poverty \",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348987396l/12158480.jpg,3.99,11752,\"history, nonfiction\",\"An award-winning professor of economics at MIT and a Harvard University\npolitical scientist and economist evaluate the reasons that some nations\nare poor while others succeed, outlining provocative perspectives that\nsupport theories about the importance of institutions. Reprint.\"\r\n6268,6604,24796,\"Isabel Allende, Margaret Sayers Peden\",El Zorro,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388630835l/24796.jpg,3.75,14327,\"fiction, romance\",\"A child of two worlds -- the son of an aristocratic Spanish military man\nturned landowner and a Shoshone warrior woman -- young Diego de la Vega\ncannot silently bear the brutal injustices visited upon the helpless in\nlate-eighteenth-century California. And so a great hero is born -- skilled\nin athleticism and dazzling swordplay, his persona formed between the Old\nWorld and the New -- the legend known as Zorro.\"\r\n6269,6605,49322,Marti Olsen Laney,The Introvert Advantage: How to Thrive in an Extrovert World,https://images.gr-assets.com/books/1348042078l/49322.jpg,3.88,12950,\"psychology, business\",\"At least one out of four people prefers to avoid the limelight, tends to\nlisten more than they speak, feels alone in large groups, and requires lots\nof private time to restore their energy. They're introverts, and here is\nthe book to help them boost their confidence while learning strategies for\nsuccessfully living in an extrovert world. After dispelling common myths\nabout introverts-they're not necessarily shy, aloof, or antisocial--The\nIntrovert Advantage explains the real issues. Introverts are hardwired from\nbirth to focus inward, so outside stimulation-chitchat, phone calls,\nparties, office meetings-can easily become \"\"too much.\"\" The Introvert\nAdvantage dispels introverts' belief that something is wrong with them and\ninstead helps them recognize their inner strengths-their analytical skills,\nability to think outside the box, and strong powers of concentration. It\nhelps readers understand introversion and shows them how to determine where\nthey fall on the introvert/extrovert continuum. It provides tools to\nimprove relationships with partners, kids, colleagues, and friends,\noffering dozens of tips, including 10 ways to talk less and communicate\nmore, 8 ways to showcase your abilities at work, how to take a child's\ntemperament temperature, and strategies for socializing. Finally, it shows\nhow to not just survive, but thrive-how to take advantage of the\nintrovert's special qualities to create a life that's just right for the\nintrovert temperament, to discover new ways to expand their energy\nreserves, and even how, when necessary, to confidently become a temporary\nextrovert.\"\r\n6270,6606,102956,\"Garth Ennis, Steve Dillon\",Preacher: Dixie Fried,https://images.gr-assets.com/books/1309916427l/102956.jpg,4.29,15961,\"comics, fiction\",\"Disillusioned with his own beliefs, Jesse Custer, along with his girlfriend\nTulip and their Irish vampire friend Cassidy, begins a violent and riotous\njourney across the country in search of God, who has abandoned heaven.\"\r\n6271,6607,31491,\"D.H. Lawrence, Daphne Merkin\",The Rainbow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193710l/31491.jpg,3.67,14044,\"romance, classics\",\"The RainbowD.H. Lawrence, Daphne Merkin\"\r\n6272,6608,35805,Kathryn Lasky,The Capture,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460181l/35805.jpg,3.88,18830,\"fiction, fantasy\",\"Presents, in question and answer format, a history of the United States\nfrom the exploration of Christopher Columbus to the terrorist attacks of\nSeptember 11, 2001.\"\r\n6273,6609,8727466,Gary Taubes,Why We Get Fat: And What to Do about It,https://images.gr-assets.com/books/1320563681l/8727466.jpg,4.04,11569,\"nonfiction, science\",\"This work is an examination of what makes us fat. In his book Good\nCalories, Bad Calories, the author, an acclaimed science writer argues that\ncertain kinds of carbohydrates, not fats and not simply excess calories,\nhave led to our current obesity epidemic. Now he brings that message to a\nwider, nonscientific audience. With fresh evidence for his claim, this book\nmakes his critical argument newly accessible. He reveals the bad\nnutritional science of the last century, none more damaging than the\n\"\"calories-in, calories-out\"\" model of why we get fat, the good science that\nhas been ignored, especially regarding insulin's regulation of our fat\ntissue. He also answers key questions: Why are some people thin and others\nfat? What roles do exercise and genetics play in our weight? What foods\nshould we eat or avoid? Concluding with an easy-to-follow diet, this book\nis one key to understanding an international epidemic and a guide to\nimproving our own health.\"\r\n6274,6610,410445,Sue Grafton,T is for Trespass ,https://images.gr-assets.com/books/1266546923l/410445.jpg,3.91,18582,\"mystery, fiction\",\"Sociopath Solana Rojas uses a stolen identity as a private caregiver to\ngain access to her intended victims while endeavoring to outmaneuver\nprivate investigator Kinsey Millhone.\"\r\n6275,6611,95395,\"Garth Ennis, Steve Dillon, Steve Pugh, Matt Hollingsworth, Carlos Ezquerra, Richard Case\",\"Preacher: Ancient History (Preacher, #4)\",https://images.gr-assets.com/books/1309916054l/95395.jpg,4.25,14945,\"comics, fiction\",\"This volume collects the popular Preacher specials starring Arseface, the\nSaint of Killers, and Jody and T.C., the evil bastards of Angelville who\nhaunted the Preacher's childhood.\"\r\n6276,6612,29036,John M. Barry,The Great Influenza: The Epic Story of the Deadliest Plague in History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924908l/29036.jpg,3.95,14762,\"history, science\",\"An account of the deadly influenza epidemic of 1918, which took the lives\nof millions of people around the world, examines its causes, its impact on\nearly twentieth-century society, and the lasting implications of the\ncrisis.\"\r\n6277,6613,79421,\"Paul Hattaway, Brother Yun\",The Heavenly Man: The Remarkable True Story of Chinese Christian Brother Yun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388287262l/79421.jpg,4.33,12537,\"christian, biography\",\"Original edition published in English under the title The Heavenly Man by\nLion Hudson IP Ltd, Oxford, England.\"\r\n6278,6614,18693743,Mark  Lawrence,Prince of Fools,https://images.gr-assets.com/books/1385072473l/18693743.jpg,4.07,11579,\"fantasy, fiction\",\"First in a brand new series from the author of The Broken Empire Trilogy.\nThe Red Queen is old but the kings of the Broken Empire dread her like no\nother. For all her reign she has fought the long war, contested in secret,\nagainst the powers that stand behind nations, for higher stakes than land\nor gold. Her greatest weapon is The Silent Sister?unseen by most and\nunspoken of by all. The Red Queen's grandson, Prince Jalan Kendeth?drinker,\ngambler, seducer of women?is one who can see The Silent Sister. Tenth in\nline for the throne and content with his role as a minor royal, he pretends\nthat the hideous crone is not there. But war is coming. Witnesses claim an\nundead army is on the march, and the Red Queen has called on her family to\ndefend the realm. Jal thinks it's all a rumor?nothing that will affect him.\nBut he is wrong?\"\r\n6279,6615,6551,\"Saul Bellow, Philip Roth\",Herzog,https://images.gr-assets.com/books/1386924221l/6551.jpg,3.79,14324,\"fiction, classics\",\"HerzogSaul Bellow, Philip Roth\"\r\n6280,6616,12792658,Neal Shusterman,UnSouled,https://images.gr-assets.com/books/1378899523l/12792658.jpg,4.23,15526,\"fiction, horror\",\"After the destruction of the Graveyard, Connor and Lev are on the run,\nseeking a woman who may be the key to bringing down unwinding forever while\nCam, the rewound boy, tries to prove his love for Risa by bringing\nProactive Citizenry to its knees.\"\r\n6281,6617,95747,Thich Nhat Hanh,The Miracle of Mindfulness: A Manual on Meditation,https://images.gr-assets.com/books/1320448079l/95747.jpg,4.26,13241,\"spirituality, philosophy\",\"Exercises in active and passive Zen meditation accompany a discussion of\ntheir relevance in contemporary living\"\r\n6282,6618,120840,David Shannon,David Gets in Trouble,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426869289l/120840.jpg,4.22,15055,fiction,\"When David gets in trouble, he has excuses right up until bedtime, when he\nrealizes he really is sorry and apologizing makes him feel better. By the\ncreator of No, David!\"\r\n6283,6619,272264,Iris Johansen,The Face Of Deception,https://images.gr-assets.com/books/1314902854l/272264.jpg,4.07,17235,\"mystery, fiction\",\"Number-one \"\"New York Times\"\"-bestselling author Johansen creates a\ncompelling novel of suspense, and introduces her most popular character\never: forensic sculptor Eve Duncan.\"\r\n6284,6620,5755,Steven Pinker,The Language Instinct: How the Mind Creates Language,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342388l/5755.jpg,4.05,12870,\"science, psychology\",The Language Instinct: How the Mind Creates LanguageSteven Pinker\r\n6285,6621,20312459,Tim Johnston,Descent,https://images.gr-assets.com/books/1410170967l/20312459.jpg,3.59,11443,\"fiction, mystery\",\"Don't miss Tim Johnston's new novel, The Current, coming January 22, 2019!\n“Read this astonishing novel . . . The magic of his prose equals the horror\nof Johnston’s story.” —The Washington Post The Rocky Mountains have cast\ntheir spell over the Courtlands, who are taking a family vacation before\ntheir daughter leaves for college. But when Caitlin and her younger\nbrother, Sean, go out for an early morning run and only Sean returns, the\nmountains become as terrifying as they are majestic. Written with a\nprecision that captures every emotion, every moment of fear, as each member\nof the family searches for answers, Descent races like an avalanche toward\nits heart-pounding conclusion. “A compelling thriller that is both creepy\nand literary . . . Descent is not just a mystery. It is an emotional story\nof evil, fear, acceptance and irony.”—The Denver Post “What makes the novel\nunforgettable is its sense of character, its deliberate, unadorned prose\nand Johnston’s unflinching exploration of human endurance, physical and\npsychological.” —Miami Herald “A super-charged, addictive read.” —The\nMissourian “An original and psychologically deep thriller.” —Outside\nmagazine “Outstanding . . . The days when you had to choose between a great\nstory and a great piece of writing? Gone.” —Esquire “[A] dazzling debut . .\n. Exquisitely crafted.” —The Dallas Morning News “Incredibly powerful,\nrichly atmospheric.” —Minneapolis Star Tribune “[An] engulfing thriller-\ncum-western.” —The New York Times Book Review “Brilliant . . . As gripping\nas any Everest expedition.” —Peter Heller, author of The Dog Stars\"\r\n6286,6622,780845,Kentaro Yabuki,\"Black Cat, Volume 1\",https://images.gr-assets.com/books/1399825755l/780845.jpg,4.08,13945,\"manga, fantasy\",\"Black Cat, Volume 1Kentaro Yabuki\"\r\n6287,6623,12982393,Megan Abbott,Dare Me,https://images.gr-assets.com/books/1342214694l/12982393.jpg,3.23,15618,\"fiction, mystery\",\"\"\"I dare you not to love this book. You lucky reader.\"\"---Tom Franklin, New\nYork Times bestselling author ofCrooked Letter, Crooked Letter Addy Hanlon\nhas always been Beth Cassidy's best friend and trusted lieutenant. Beth\ncalls the shots and Addy carries them out, a long-established order of\nthings that has brought them to the pinnacle of their high-school careers.\nNow they're seniors who rule the intensely competitive cheer squad, feared\nand followed by the other girls -- until the young new coach arrives. Cool\nand commanding, an emissary from the adult world just beyond their reach,\nCoach Colette French draws Addy and the other cheerleaders into her life.\nOnly Beth, unsettled by the new regime, remains outside Coach's golden\ncircle, waging a subtle but vicious campaign to regain her position as \"\"top\ngirl\"\" -- both with the team and with Addy herself. Then a suicide focuses a\npolice investigation on Coach and her squad. After the first wave of shock\nand grief, Addy tries to uncover the truth behind the death -- and learns\nthat the boundary between loyalty and love can be dangerous terrain. The\nraw passions of girlhood are brought to life in this taut, unflinching\nexploration of friendship, ambition, and power. Award-winning novelist\nMegan Abbott, writing with what Tom Perrotta has hailed as \"\"total authority\nand an almost desperate intensity,\"\" provides a harrowing glimpse into the\ndark heart of the all-American girl.\"\r\n6288,6624,10549501,Rachel Caine,Last Breath,https://images.gr-assets.com/books/1327900044l/10549501.jpg,4.32,19963,\"paranormal, fantasy\",\"When Claire Danvers learns that three of the vampires in Morganville have\ndisappeared and discovers that the last person seen with one of them is a\nnew resident named Magnus, she begins to suspect Magnus is not a fellow\nhuman.\"\r\n6289,6625,128711,\"Alaa Al Aswany, علاء الأسواني\",عمارة يعقوبيان,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348797639l/128711.jpg,3.65,7308,\"fiction, contemporary\",\"عمارة يعقوبيانAlaa Al Aswany, علاء الأسواني\"\r\n6290,6626,2176873,\"Martha Stewart, Victor Schrager\",Martha Stewart's Cookies,https://images.gr-assets.com/books/1320457250l/2176873.jpg,4.04,13991,\"cookbooks, nonfiction\",\"Provides nearly two hundred recipes for cookies of all shapes, sizes, and\ntextures, as well as tips on tools, techniques, and packaging ideas.\"\r\n6291,6627,7432,Jacqueline Winspear,Pardonable Lies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442622025l/7432._SY475_.jpg,4.09,17947,\"mystery, fiction\",Pardonable LiesJacqueline Winspear\r\n6292,6628,65091,E.D. Baker,\"The Frog Princess (The Tales of the Frog Princess, #1)\",https://images.gr-assets.com/books/1397766099l/65091.jpg,3.81,22176,\"fantasy, romance\",\"The Frog Princess (The Tales of the Frog Princess, #1)E.D. Baker\"\r\n6293,6629,29034,\"Reginald Rose, David Mamet\",Twelve Angry Men (Penguin Classics),https://images.gr-assets.com/books/1327910292l/29034.jpg,4.07,15986,\"classics, mystery\",\"Presents a courtroom drama revolving around the trial of a boy accused of\nkilling his father, where one man, a single hold-out juror, stands between\nthe accused and capital punishment.\"\r\n6294,6630,5599692,\"Neil Gaiman, Andy Kubert, Matt Wagner, Simon Bisley, Bernie Mireault, Mark Buckingham\",Batman: Whatever Happened to the Caped Crusader?,https://images.gr-assets.com/books/1484915793l/5599692.jpg,3.97,14359,\"comics, fiction\",\"Batman: Whatever Happened to the Caped Crusader?Neil Gaiman, Andy Kubert, Matt Wagner, Simon Bisley, Bernie Mireault, Mark Buckingham\"\r\n6295,6631,8483233,Ree Drummond,The Pioneer Woman: Black Heels to Tractor Wheels,https://images.gr-assets.com/books/1327898663l/8483233.jpg,3.81,14976,\"memoir, romance\",The Pioneer Woman: Black Heels to Tractor WheelsRee Drummond\r\n6296,6632,114308,Leo Lionni,Swimmy ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348474037l/114308.jpg,4.13,19168,\"fiction, classics\",\"A little black fish in a school of red fish figures out a way of protecting\nthem all from their natural enemies.\"\r\n6297,6633,169718,Sinclair Lewis,Babbitt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348449518l/169718.jpg,3.64,14204,\"fiction, classics\",\"In the fall of 1920, Sinclair Lewis began a novel set in a fast-growing\ncity with the heart and mind of a small town. For the center of his cutting\nsatire of American business he created the bustling, shallow, and myopic\nGeorge F. Babbitt, the epitome of middle-class mediocrity. The novel\ncemented Lewis’s prominence as a social commentator. Babbitt basks in his\npedestrian success and the popularity it has brought him. He demands high\nmoral standards from those around him while flirting with women, and he\nyearns to have rich friends while shunning those less fortunate than he.\nBut Babbitt’s secure complacency is shattered when his best friend is sent\nto prison, and he struggles to find meaning in his hollow life. He revolts,\nbut finds that his former routine is not so easily thrown over.\"\r\n6298,6634,394469,Cormac McCarthy,Suttree,https://images.gr-assets.com/books/1397600192l/394469.jpg,4.18,12824,\"fiction, classics\",\"Cornelius Suttree renounces the values held by his prominent family to live\nin a dilapidated houseboat among the depraved residents on the banks of the\nTennessee River\"\r\n6299,6635,6937878,Ellen Schreiber,\"Love Bites (Vampire Kisses, #7)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442794976l/6937878._SY475_.jpg,4.13,17707,\"paranormal, romance\",\"Love Bites (Vampire Kisses, #7)Ellen Schreiber\"\r\n6300,6637,2642070,Tori Spelling,sTORI Telling,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347402378l/2642070.jpg,3.62,14699,\"memoir, biography\",\"A memoir by the actress best known for her role on \"\"Beverly Hills, 90210\"\"\nchallenges popular misconceptions about her privileged life while\ndiscussing such topics as her relationship with her late father, her\nmarriages, and her parenting experiences.\"\r\n6301,6638,17333277,James Patterson,Cross My Heart,https://images.gr-assets.com/books/1410755815l/17333277.jpg,4.03,10946,\"mystery, fiction\",Cross My HeartJames Patterson\r\n6302,6639,11324722,Jonathan Haidt,The Righteous Mind: Why Good People Are Divided by Politics and Religion,https://images.gr-assets.com/books/1351393217l/11324722.jpg,4.16,12677,\"psychology, nonfiction\",\"Presents a groundbreaking investigation into the origins of morality at the\ncore of religion and politics, offering scholarly insight into the\nmotivations behind cultural clashes that are polarizing America.\"\r\n6303,6640,17206,Garth Nix,Lady Friday,https://images.gr-assets.com/books/1304528767l/17206.jpg,3.91,17675,\"fantasy, fiction\",\"Young Arthur Penhaligon must weigh an offer from Lady Friday that is either\na cunning trap for the Rightful Heir or a golden opportunity that he must\nseize.\"\r\n6304,6641,7405450,Kristen Ashley,Rock Chick Rescue,https://images.gr-assets.com/books/1416398897l/7405450.jpg,4.31,26661,\"romance, contemporary\",Rock Chick RescueKristen Ashley\r\n6305,6642,13490570,\"Joe Hill, Gabriel Rodríguez\",Clockworks,https://images.gr-assets.com/books/1343848792l/13490570.jpg,4.5,16441,\"comics, horror\",\"Tyler and Kinsey learn the true story of the Locke family and travel\nthrough time, while Zack Wells assumes a new form.\"\r\n6306,6643,3223761,Wendy Mass,Every Soul A Star,https://images.gr-assets.com/books/1330221785l/3223761.jpg,4.1,17282,\"fiction, contemporary\",\"And as streams of light fan out behind the darkened sun like the wings of a\nbutterfly, I realize that I never saw real beauty until now. At Moon\nShadow, an isolated campground, thousands have gathered to catch a glimpse\nof a rare and extraordinary total eclipse of the sun. It's also were three\nlives are about to be changed forever: Ally likes the simple things in life\n--labyrinths, star-gazing, and comet-hunting. Her home, the Moon Shadow\ncampground, is a part of who she is, and she refuses to imagine it any\nother way. Popular and gorgeous (everybody says so), Bree is a future\nhomecoming queen for sure. Bree wears her beauty like a suit of armor. But\nwhat is she trying to hide? Overweight and awkward, jack is used to\nspending a lot of time alone. But when opportunity knocks, he finds himself\nin situations he never would have imagined and making friends in the most\nunexpected situations. Told from three distinct voices and perspectives,\nWendy Mass weaves an intricate and compelling story about strangers coming\ntogether, unlikely friendships, and finding one's place in the universe.\"\r\n6307,6644,146064,Julia Scheeres,Jesus Land : A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439587814l/146064._SY475_.jpg,3.97,13562,\"memoir, nonfiction\",\"Julia and her adopted brother, David, are sixteen-years-old. Julia is\nwhite. David is black. It is the mid-1980s and their family has just moved\nto rural Indiana, a landscape of cottonwood trees, trailer parks, and an\nall-encompassing racism. At home are a distant mother?more involved with\nher church's missionaries than her own children?and a violent father. In\nthis riveting and heartrending memoir Julia Scheeres takes us from the\nMidwest to a place beyond imagining: surrounded by natural beauty, the\nEscuela Caribe?a religious reform school in the Dominican Republic?is\ncharacterized by a disciplinary regime that extracts repentance from its\nstudents by any means necessary. Julia and David strive to make it through\nthese ordeals and their tale is relayed here with startling immediacy,\nextreme candor, and wry humor.\"\r\n6308,6645,138070,David Wiesner,Flotsam,https://images.gr-assets.com/books/1381052967l/138070.jpg,4.28,19541,\"fantasy, fiction\",\"When a young boy discovers a camera on the beach and develops the film, he\nfinds with his microscope many layers of pictures within the photographs.\"\r\n6309,6646,24631990,Angela Marsons,Silent Scream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431858976l/24631990._SY475_.jpg,4.02,9547,\"mystery, crime\",\"Five figures gather round a shallow grave. They had all taken turns to dig.\nAn adult-sized hole would have taken longer. An innocent life had been\ntaken, but the pact had been made. Their secrets would be buried, bound in\nblood . . . Years later, a headmistress is found brutally strangled, the\nfirst in a spate of gruesome murders which shock the Black Country. But\nwhen human remains are discovered at a former children's home, disturbing\nsecrets are also unearthed. D.I. Kim Stone fast realizes she's on the hunt\nfor a twisted individual whose killing spree spans decades. As the body\ncount rises, Kim needs to stop the murderer before they strike again. But\nto catch the killer, can Kim confront the demons of her own past before\nit's too late? Fans of Rachel Abbott, Val McDermid, and Mark Billingham\nwill be gripped by this exceptional new voice in British crime fiction.\"\r\n6310,6647,6534132,Jerry Pinkney,The Lion & the Mouse,https://images.gr-assets.com/books/1259865825l/6534132.jpg,4.23,17941,\"fiction, fantasy\",\"In this wordless retelling of an Aesop fable set in the African Serengeti,\nan adventuresome mouse proves that even small creatures are capable of\ngreat deeds when she rescues the King of the Jungle.\"\r\n6311,6648,133906,Langston Hughes,The Collected Poems of Langston Hughes,https://images.gr-assets.com/books/1367492866l/133906.jpg,4.32,13835,\"poetry, classics\",\"Arranged chronologically, a comprehensive collection of the verse of\nLangston Hughes contains 860 poems, including three hundred that have never\nappeared in book form and commentary by Hughes's biographer.\"\r\n6312,6649,12507214,Kendare Blake,Girl of Nightmares,https://images.gr-assets.com/books/1344463840l/12507214.jpg,3.9,20708,\"horror, paranormal\",Girl of NightmaresKendare Blake\r\n6313,6651,6612005,\"QuinRose, Soumei Hoshino\",Heart no Kuni no Alice  ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388619383l/6612005.jpg,4.21,14692,\"manga, fantasy\",\"\"\"Alice's comfort level in Wonderland continues to grow, but something very\nstrange is happening. Confusion, memory loss and sudden pain become\nassociated with thoughts of home. Meanwhile, Peter cunningly finds a way\ninto Alice's bedroom, and Vivaldi reveals a peculiar secret! And what will\nAlice do when she is suddenly attacked by Blood Dupre?!\"\"--P. [4] of cover.\"\r\n6314,6652,8949,Darren Shan,\"Lord of the Shadows (Cirque Du Freak, #11)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251260l/8949.jpg,4.22,15794,\"fantasy, horror\",\"Darren Shan is going home--and his world is going to hell. Old enemies\nawait. Scores must be settled. Destiny looks certain to destroy him, and\nthe world is doomed to fall to the Ruler of the Night....\"\r\n6315,6653,30036,Michael Moorcock,Elric of Melniboné,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345555l/30036.jpg,3.89,17728,\"fantasy, fiction\",\"Elric of Melnibone, an albino prince, travels in the Ship Which Sails Over\nLand and Sea to the city of Dhoz-Kam, through the Shade Gate to the Pulsing\nCavern where the magic swords Stormbringer and Mournblade await him\"\r\n6316,6654,537375,Caroline Alexander,The Endurance: Shackleton's legendary Antarctic expedition,https://images.gr-assets.com/books/1320487170l/537375.jpg,4.31,14529,\"history, nonfiction\",\"Chronicles Shackleton in Antarctica, where he and his crew were stranded\nfor twenty months\"\r\n6317,6656,2617684,Walt Disney Company,Winnie the Pooh and Tigger Too,https://images.gr-assets.com/books/1329390079l/2617684.jpg,4.39,14121,\"fiction, classics\",\"Pooh, Piglet and Rabbit try to unbounce Tigger.\"\r\n6318,6658,1169808,L.J. Smith,The Fury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1583708264l/1169808._SY475_.jpg,3.55,19911,\"fantasy, paranormal\",\"Elena: transformed, the golden girl has become what she once feared and\ndesired. Stefan: tormented by losing Elena, he's determined to end his feud\nwith Damon once and for all—whatever the cost. But slowly he begins to\nrealize that his brother is not his only enemy. Damon: at last, he\npossesses Elena. But will his thirst for revenge against Stefan poison his\ntriumph? Or can they come together to face one final battle? Collected here\nin one edition are the third and fourth volumes of The Vampire Diaries, a\nriveting conclusion to the tale of two vampire brothers and the beautiful\ngirl torn between them.\"\r\n6319,6659,26200563,\"Lin-Manuel Miranda, Jeremy McCarter\",Hamilton: The Revolution,https://images.gr-assets.com/books/1451400644l/26200563.jpg,4.47,24800,\"nonfiction, history\",\"Hamilton: The RevolutionLin-Manuel Miranda, Jeremy McCarter\"\r\n6320,6660,9838800,Harlan Coben,Shelter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388283277l/9838800.jpg,3.92,9081,\"mystery, thriller\",\"Mickey Bolitar is forced to live with his Uncle Myron and switch high\nschools, where he finds both friends and enemies, but when his girlfriend\nvanishes, he follows her trail into an underworld that reveals she is not\nwhat she seems to be.\"\r\n6321,6662,14469,\"O. Henry, Victoria Blake\",Selected Stories of O. Henry ,https://images.gr-assets.com/books/1328753059l/14469.jpg,4.16,15308,\"classics, fiction\",\"O. Henry--master of the one-line quip and surprise ending, and reinventor\nof the short story--today enjoys greater popularity than ever. His\ndescriptions of New York City and the American West have become ingrained\ninto the fabric of modern American psychology. His character sketches--\nalways humorous, always sympathetic, and always a little melancholy--remind\nus that life must be lived evenly, with pluck and perseverance. This\nspecial edition features commentaries, legacies, and discussion questions.\nVictoria Blake has worked at The Paris Review and contributed to The\nBoulder Daily Camera, a number of small literary presses in the United\nStates, and several English-language publications in Bangkok, Thailand. She\nwrote the introduction and notes to the Barnes & Noble Classics edition of\nD.H. Lawrence's \"\"Sons and Lovers. She currently lives and works in San\nDiego, California.\"\r\n6322,6663,3885,\"Janet Briggs, Beth Wittlinger\",The Taste of Home Cookbook,https://images.gr-assets.com/books/1309198140l/3885.jpg,4.25,14469,\"cookbooks, nonfiction\",\"Features more than 1,200 homestyle, tested recipes for American dishes,\norganized into twenty-five different chapters, along with hundreds of time-\nsaving tips, tricks, and how-to instructions and five separate indexes.\"\r\n6323,6665,31335,Anne Rice,Cry to Heaven,https://images.gr-assets.com/books/1385216547l/31335.jpg,3.83,16988,\"fiction, horror\",\"Eighteenth-century Naples provides the setting for the pain, fears,\nresentments, desires, and triumphs of peasant-born Guido Maffeo and\npatrician-born Tonio Treschi, two castrati--mentor and angel-voiced student\n--who strive passionately to live full lives\"\r\n6324,6666,7849034,Josephine Angelini,Goddess,https://images.gr-assets.com/books/1351415040l/7849034.jpg,4.24,20589,\"fantasy, romance\",GoddessJosephine Angelini\r\n6325,6667,7828882,J.R. Ward,Crave,https://images.gr-assets.com/books/1373163501l/7828882.jpg,4.09,22105,\"paranormal, romance\",\"With his life in the hands of public defender Grier Childe, black-ops\nsoldier Isaac Rothe discovers that his soul is in danger and that the key\nto his survival is the woman he has sworn to resist.\"\r\n6326,6668,460717,Frederick Forsyth,The Dogs of War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348845549l/460717.jpg,3.96,14860,\"fiction, thriller\",The Dogs of WarFrederick Forsyth\r\n6327,6669,66655,Brian Lumley,Necroscope ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170652860l/66655.jpg,3.99,14397,\"horror, fantasy\",\"A re-release of a horror classic restores the author's preferred text and\nfeatures a special introduction about the creation of the Necroscope saga,\nin an edition that also features chapter illustrations by a Hugo Award-\nwinning artist. Original. 15,000 first printing.\"\r\n6328,6670,760941,\"Truddi Chase, Robert A. Phillips Jr.\",When Rabbit Howls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347947183l/760941.jpg,4.03,13975,\"psychology, nonfiction\",\"Follows the true story of Truddi Chase, who struggled with a life impacted\nby child abuse and multiple personality disorder, in a memoir that\ndescribes her therapy and the breakthroughs that led to her recovery.\nReprint.\"\r\n6329,6671,10433900,Robison Wells,Variant,https://images.gr-assets.com/books/1298564680l/10433900.jpg,3.92,18473,\"mystery, fiction\",VariantRobison Wells\r\n6330,6672,7520,Brad Thor,Path of the Assassin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389574030l/7520.jpg,4.17,12652,\"thriller, fiction\",\"Seeking to capture the people responsible for a plot to kidnap the\npresident, Secret Service agent Scot Harvath follows a series of clues that\npoint to the world's most ruthless terrorist and enlists the aid of a\nbeautiful hijacking survivor who knows what the terrorist looks like.\nReissue. 250,000 first printing.\"\r\n6331,6673,568099,David Gemmell,Waylander ,https://images.gr-assets.com/books/1403179303l/568099.jpg,4.26,13977,\"fantasy, fiction\",Waylander David Gemmell\r\n6332,6675,46755,Margaret Atwood,Surfacing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924306l/46755.jpg,3.45,15494,\"fiction, contemporary\",\"A woman searching for her missing father travels with her lover and another\ncouple to a remote island in northern Quebec, where they encounter violence\nand death\"\r\n6333,6676,15733851,Mhairi McFarlane,You Had Me At Hello,https://images.gr-assets.com/books/1348787624l/15733851.jpg,3.79,12687,\"romance, contemporary\",\"Rachel and Ben. Ben and Rachel. It was them against the world. Until it all\nfell apart. Ten years after they said goodbye, Rachel bumps into Ben one\nrainy day. As they talk, the years melt away. But life has moved on. Ben is\nmarried. Rachel is not. And slowly but surely, Rachel feels the return of\nthe broken heart she can′t do anything to mend. Couldn′t put down ONE DAY?\nLove WHEN HARRY MET SALLY? Then this is the book for you. Hilarious,\nheartbreaking and everything in between, you′ll be hooked from their first\n′Hello′.\"\r\n6334,6677,10256723,\"Kevin D. Mitnick, William L. Simon, Steve Wozniak\",Ghost in the Wires: My Adventures as the World's Most Wanted Hacker,https://images.gr-assets.com/books/1344265017l/10256723.jpg,3.95,12831,\"biography, nonfiction\",\"Ghost in the Wires: My Adventures as the World's Most Wanted HackerKevin D. Mitnick, William L. Simon, Steve Wozniak\"\r\n6335,6678,35233,Robert Jordan,\"The Wheel of Time: Boxed Set #1 (Wheel of Time, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429436324l/35233.jpg,4.43,13049,\"fantasy, fiction\",\"The #1 Internationally Bestselling Series The Wheel of Time The Wheel of\nTime turns and Ages come and pass. What was, what will be, and what is, may\nyet fall under the Shadow. Let the dragon ride again on the winds of time.\nThis boxed set contains: Book One:The Eye of the World Book Two:The Great\nHunt Book Three:The Dragon Reborn\"\r\n6336,6680,6621143,Susane Colasanti,Something Like Fate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399592376l/6621143.jpg,3.72,17347,\"romance, contemporary\",\"Lani and Jason, who is her best friend's boyfriend, fall in love, causing\nLani tremendous anguish and guilt.\"\r\n6337,6681,68521,Bernard Cornwell,Excalibur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439813914l/68521._SY475_.jpg,4.38,12925,\"fantasy, fiction\",\"Describes King Arthur's final battle with Mordred, who has summoned the\npower of the gods to help his evil cause\"\r\n6338,6682,7352053,Robin Oliveira,My Name Is Mary Sutter,https://images.gr-assets.com/books/1263584183l/7352053.jpg,3.81,16348,\"fiction, history\",\"Traveling to Civil War-era Washington, D.C., to tend wounded soldiers and\npursue her dream of becoming a surgeon, headstrong midwife Mary receives\nguidance from two smitten doctors and resists her mother's pleas for her to\nreturn home.\"\r\n6339,6683,116563,Diane Duane,So You Want to Be a Wizard,https://images.gr-assets.com/books/1328877065l/116563.jpg,3.8,20408,\"fantasy, fiction\",\"During a summer vacation at the beach, thirteen-year-old wizard Nita and\nher friend Kit assist the whale-wizard S'reee in combating an evil power.\"\r\n6340,6684,16326,Agatha Christie,Death in the Clouds,https://images.gr-assets.com/books/1308808359l/16326.jpg,3.78,17308,\"mystery, crime\",Death in the CloudsAgatha Christie\r\n6341,6685,7313444,Brad Thor,Foreign Influence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439858958l/7313444._SY475_.jpg,4.24,13392,\"thriller, fiction\",\"Recruited as a field operative for a new Department of Defense spy agency,\nformer Navy SEAL Scot Harvath investigates the bombing death of a group of\nAmerican students in Rome, an act with possible ties to a past colleague.\"\r\n6342,6686,2197227,\"Douglas Preston, Lincoln Child\",Cemetery Dance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442910567l/2197227._SY475_.jpg,4,16120,\"mystery, thriller\",\"In the wake of a brutal attack on a prominent Manhattan journalist and his\nwife, clues identify the assailant as a man who had been believed dead, in\na case that prompts Captain Hayward, Pendergast, and D'Agosta to infiltrate\na deadly cult.\"\r\n6343,6687,7332753,Christopher Hitchens,Hitch-22: Some Confessions and Contradictions,https://images.gr-assets.com/books/1327906136l/7332753.jpg,4.03,12643,\"biography, memoir\",\"#1 New York Times bestselling author and finalist for the National Book\nAward — one of the most admired and controversial public intellectuals of\nour time — shares his personal life story. Most who have observed\nChristopher Hitchens over the years would agree that he possesses a\nferocious intellect and is unafraid to tackle the most contentious\nsubjects. Now 60, English-born and American by adoption; all atheist and\npartly Jewish; bohemian (even listing \"\"drinking\"\" along with \"\"disputation\"\"\nas \"\"hobbies\"\" in Who's Who), he has held to a consistent thread of principle\nwhether opposing war in Vietnam or supporting intervention in Iraq. As a\nforeign correspondent in some of the world's nastiest places, a lecturer\nand teacher and an esteemed literary critic, Hitchens manifests a style\nthat is at once ironic, witty, and tough-minded. A legendary bon vivant\nwith an unquenchable thirst for literature, he has sometimes ridiculed\nthose who claim that the personal is political, though he has often seemed\nto illustrate that very idea. Readers will find that his own many opposites\nattract, as do his many sketches of friendship and ex-friendship, from\nMartin Amis to Noam Chomsky. Condemned to be able to see both sides of any\nargument, Christopher Hitchens has contradictions that contain their own\nmultitudes.\"\r\n6344,6688,10507,\"Umberto Eco, William Weaver, R.C.S. Libri\",Baudolino,https://images.gr-assets.com/books/1479698120l/10507.jpg,3.71,13941,\"fiction, fantasy\",\"Born a simple peasant in northern Italy, Baudolino narrates the story of\nhis life, from his adoption by Emperor Frederick Barbarossa and his\neducation in Paris to his arrival in Constantinople during the turmoil of\nthe Fourth Crusade.\"\r\n6345,6689,287633,Christine Feehan,Dark Magic,https://images.gr-assets.com/books/1327895205l/287633.jpg,4.24,20156,\"paranormal, romance\",\"Young Savannah Dubrinsky was a mistress of illusion, a world-famous\nmagician capable of mesmerizing millions. But there was one—Gregori, the\nDark One—who held her in terrifying thrall. Whose cold silver eyes and\nheated sensuality sent shivers of danger, of desire, down her spine. With a\ndark magic all his own, Gregori—the implacable hunter, the legendary\nhealer, the most powerful of Carpathian males—whispered in Savannah’s mind\nthat he was her destiny. That she had been born to save his immortal soul.\nAnd now, here in New Orleans, the hour had finally come to claim her. To\nmake her completely his. In a ritual as old as time . . . and as\ninescapable as eternity.\"\r\n6346,6690,5369,Steve Berry,The Amber Room,https://images.gr-assets.com/books/1329497506l/5369.jpg,3.83,16519,\"thriller, fiction\",\"The Amber Room is one of the greatest treasures ever made by man: an entire\nroom forged of exquisite amber, from its four massive walls to its finely\ncrafted furniture. But it is also the subject of one of history's most\nintriguing mysteries. Originally commissioned in 1701 by Frederick I of\nPrussia, the Room was later perfected Tsarskoe Selo, the Russian imperial\ncity. In 1941, German troops invaded the Soviet Union, looting everything\nin their wake and seizing the Amber Room. When the Allies began the bombing\nof Germany in August 1944, the Room was hidden. And despite the best\nefforts of treasure hunters and art collectors from around the world, it\nhas never been seen again. Now, two powerful men have set their best\noperatives loose in pursuit, and the hunt has begun once more. . . . Life\nis good for Atlanta judge Rachel Cutler. She loves her job, loves her kids,\nand remains civil to her ex-husband, Paul. But everything changes when her\nfather, a man who survived the horrors of World War II, dies under strange\ncircumstances—and leaves behind clues to a secret he kept his entire life .\n. . a secret about something called the Amber Room. Desperate to know the\ntruth about her father's suspicious dealings, Rachel takes off for Germany,\nwith Paul close behind. Shortly after arriving, they find themselves\ninvolved with a cast of shadowy characters who all claim to share their\nquest. But as they learn more about the history of the treasure they seek,\nRachel and Paul realize they're in way over their heads. Locked in a\ntreacherous game with ruthless professional killers and embroiled in a\ntreasure hunt of epic proportions, Rachel and Paul suddenly find themselves\non a collision course with the forces of power, evil, and history itself. A\nbrilliant adventure and a scintillating tale of intrigue, deception, art,\nand murder, The Amber Room is a classic tale of suspense—and the debut of a\nstrong new voice in the world of the international thriller. From the\nHardcover edition.\"\r\n6347,6691,8598554,Terry Goodkind,\"The Omen Machine (Richard and Kahlan, #1)\",https://images.gr-assets.com/books/1320450369l/8598554.jpg,3.66,13301,\"fantasy, fiction\",\"A deep underground machine awakens after thousands of years and foretells\nominous events including a catastrophic prediction involving Richard Rahl\nand Kahlan Amnell.\"\r\n6348,6693,105760,Robert Graysmith,Zodiac,https://images.gr-assets.com/books/1297734691l/105760.jpg,3.89,13120,\"crime, nonfiction\",\"A San Francisco Chronicle reporter provides an account of the series of\nunsolved murders committed in California from 1968 to the early seventies\nin which letters were sent to the \"\"Chronicle,\"\" announcing the crimes and\nsigned with a symbol from the Zodiac. Reissue. (Tie-in to the new Paramount\nfilm, directed by David Fincher, starring Jake Gyllenhaal & Robert Downey,\nJr.) (True Crime)\"\r\n6349,6694,25613617,\"James Patterson, Maxine Paetro\",15th Affair,https://images.gr-assets.com/books/1444918177l/25613617.jpg,4.04,11112,\"mystery, fiction\",\"15th AffairJames Patterson, Maxine Paetro\"\r\n6350,6695,19000,John le Carré,The Constant Gardener,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348649766l/19000.jpg,3.78,13347,\"fiction, thriller\",\"THE CONSTANT GARDENER Tessa Quayle--young, beautiful, and dearly beloved to\nhusband Justin--is gruesomely murdered in northern Kenya. When Justin sets\nout on a personal odyssey to uncover the mystery of her death, what he\nfinds could make him not only a suspect, but also a target for Tessa's\nkillers. A master chronicler of the betrayals of ordinary people caught in\npolitical conflict, John le Carre portrays the dark side of unbridled\ncapitalism as only he can. In The Constant Gardener he tells a compelling,\ncomplex story of a man elevated through tragedy, as Justin Quayle--amateur\ngardener, aging widower, and ineffectual bureaucrat--discovers his own\nnatural resources and the extraordinary courage of the woman he barely had\ntime to love.\"\r\n6351,6696,87745,David Baldacci,Wish You Well,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441500949l/87745._SY475_.jpg,3.94,14838,\"fiction, mystery\",Wish You WellDavid Baldacci\r\n6352,6697,31314,Sandra Boynton,Barnyard Dance,https://images.gr-assets.com/books/1404580374l/31314.jpg,4.25,18694,\"fiction, poetry\",\"A bespectacled fiddle-playing cow and a pig twirling a sheep are featured\nin a barnyard dance. On board pages with a die-cut cover.\"\r\n6353,6699,26154406,Lisa Lutz,The Passenger,https://images.gr-assets.com/books/1456682660l/26154406.jpg,3.71,13544,\"mystery, fiction\",The PassengerLisa Lutz\r\n6354,6700,18211536,Abbi Glines,\"Rush Too Far (Too Far, #4)\",https://images.gr-assets.com/books/1393569509l/18211536.jpg,4.25,25432,\"romance, contemporary\",\"\"\"A new adult novel featuring Rush and Blaire in the Rosemary Beach\nseries\"\"--\"\r\n6355,6701,7968,Orson Scott Card,\"Red Prophet (Tales of Alvin Maker, #2)\",https://images.gr-assets.com/books/1379147136l/7968.jpg,3.78,16704,\"fantasy, fiction\",\"Alvin Maker is drawn into the political manueverings of his visionary\nbrother and a French colonel exiled to Fort Detroit named Napoleon\nBonapart, in this tale set in the frontier of a magical alternate America\"\r\n6356,6702,682751,Graeme Base,Animalia,https://images.gr-assets.com/books/1344705263l/682751.jpg,4.28,18886,\"fiction, art\",\"An alphabet book with fantastic and detailed pictures, bearing such labels\nas \"\"Lazy lions lounging in the local library.\"\"\"\r\n6357,6703,12755792,Elizabeth   Hunter,A Hidden Fire,https://images.gr-assets.com/books/1475548523l/12755792.jpg,4.05,13646,\"paranormal, romance\",\"New 2012 paperback edition.“No secret stays hidden forever.”A phone call\nfrom an old friend sets Dr. Giovanni Vecchio back on the path of a mystery\nhe'd abandoned years before. He never expected a young librarian could hold\nthe key to the search, nor could he have expected the danger she would\nattract. Now he and Beatrice De Novo will follow a twisted maze that leads\nfrom the archives of a university library, through the fires of Renaissance\nFlorence, and toward a confrontation they never could have predicted.A\nHidden Fire is a paranormal mystery/romance for adult readers. It is the\nfirst book in the Elemental Mysteries Series.\"\r\n6358,6704,139569,Leslie Feinberg,Stone Butch Blues,https://images.gr-assets.com/books/1328758827l/139569.jpg,4.27,13570,\"fiction, memoir\",\"Published in 1993, this brave, original novel is considered to be the\nfinest account ever written of the complexities of a transgendered\nexistence. Woman or man? Thats the question that rages like a storm around\nJess Goldberg, clouding her life and her identity. Growing up differently\ngendered in a blue--collar town in the 1950s, coming out as a butch in the\nbars and factories of the prefeminist 60s, deciding to pass as a man in\norder to survive when she is left without work or a community in the early\n70s. This powerful, provocative and deeply moving novel sees Jess coming\nfull circle, she learns to accept the complexities of being a transgendered\nperson in a world demanding simple explanations: a he-she emerging whole,\nweathering the turbulence.\"\r\n6359,6705,18296030,Jennifer L. Armentrout,Don't Look Back,https://images.gr-assets.com/books/1380803444l/18296030.jpg,4.11,11499,\"mystery, contemporary\",Don't Look BackJennifer L. Armentrout\r\n6360,6706,23719378,Amy  Stewart,Girl Waits with Gun,https://images.gr-assets.com/books/1500687846l/23719378.jpg,3.78,13775,\"fiction, mystery\",\"From the New York Times best-selling author of The Drunken Botanist comes\nan enthralling novel based on the forgotten true story of one of the\nnation's first female deputy sheriffs. Constance Kopp doesn't quite fit the\nmold. She towers over most men, has no interest in marriage or domestic\naffairs, and has been isolated from the world since a family secret sent\nher and her sisters into hiding fifteen years ago. One day a belligerent\nand powerful silk factory owner runs down their buggy, and a dispute over\ndamages turns into a war of bricks, bullets, and threats as he unleashes\nhis gang on their family farm. When the sheriff enlists her help in\nconvicting the men, Constance is forced to confront her past and defend her\nfamily -- and she does it in a way that few women of 1914 would have dared.\n\"\"A smart, romping adventure, featuring some of the most memorable and\npowerful female characters I've seen in print for a long time. I loved\nevery page as I followed the Kopp sisters through a too-good-to-be-true\n(but mostly true!) tale of violence, courage, stubbornness, and\nresourcefulness.\"\" -- Elizabeth Gilbert\"\r\n6361,6707,18209290,Maggie Shipstead,Astonish Me,https://images.gr-assets.com/books/1384816768l/18209290.jpg,3.57,7504,\"fiction, contemporary\",\"Helping a world-famous dancer to defect from the Soviet Union to the United\nStates, ballerina Joan watches her friend's career soar while her own\ndeclines in the wake of her pregnancy and marriage, a situation that\neventually exposes difficult secrets. 75,000 first printing.\"\r\n6362,6708,899608,\"Helen Marion Palmer, P.D. Eastman\",A Fish Out of Water,https://images.gr-assets.com/books/1320551686l/899608.jpg,4.21,19536,\"fiction, classics\",\"A fun-filled reading experience for the beginning reader about a little boy\nwho overfeeds his fish\"\r\n6363,6709,12016,Iain M. Banks,Look to Windward,https://images.gr-assets.com/books/1288930978l/12016.jpg,4.16,13916,\"fiction, science\",Look to WindwardIain M. Banks\r\n6364,6712,87632,Dean Karnazes,Ultramarathon Man: Confessions of an All-Night Runner,https://images.gr-assets.com/books/1309199653l/87632.jpg,3.94,11706,\"sports, nonfiction\",\"Presents the story of a marathon runner as he describes the conditions that\nmust be endured during competitions whose distances extend hundreds of\nmiles and discusses why he is driven to participate in such an extreme\nsport.\"\r\n6365,6713,18007532,Robert   Harris,An Officer and a Spy,https://images.gr-assets.com/books/1378711003l/18007532.jpg,4.14,9411,\"fiction, thriller\",\"A tale inspired by the infamous Dreyfus Affair finds recently promoted head\nof Paris's late-19th-century counterespionage agency Georges Picquart\nleading the effort to convict Dreyfus only to succumb to gradual doubts\nthat a high-level spy remains at large in the military. By the best-selling\nauthor of The Fear Index.\"\r\n6366,6714,20897517,Hampton Sides,In the Kingdom of Ice: The Grand and Terrible Polar Voyage of the USS Jeannette,https://images.gr-assets.com/books/1395935993l/20897517.jpg,4.18,11444,\"history, nonfiction\",In the Kingdom of Ice: The Grand and Terrible Polar Voyage of the USS JeannetteHampton Sides\r\n6367,6715,170651,Mary Higgins Clark,A Stranger Is Watching,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348183418l/170651.jpg,3.91,15659,\"mystery, fiction\",\"Four people whose lives have been shattered by a murder find themselves in\ncontinuing conflict as the hour of the convicted murderer's execution\napproaches\"\r\n6368,6716,80672,Judy Blume,Double Fudge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925126l/80672.jpg,3.96,17622,\"fiction, contemporary\",\"His younger brother's obsession with money and the discovery of long-lost\ncousins Flora and Fauna provide many embarrassing moments for twelve-year-\nold Peter.\"\r\n6369,6717,8462184,Rachel Caine,\"The Morganville Vampires, Volume 3\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393480447l/8462184.jpg,4.39,13849,\"paranormal, fantasy\",\"Vampires and humans coexist in harmony in Morganville until the arrival of\nthe evil vampire Bishop, an event which forces Claire Danvers and her\nfriends to join an underground resistance movement to stop him from\ndestroying all the inhabitants of the town.\"\r\n6370,6719,2754510,Richelle Mead,Storm Born,https://images.gr-assets.com/books/1327900947l/2754510.jpg,3.9,25018,\"fantasy, paranormal\",\"When Eugenie Markham, a powerful shaman and mercenary, is hired to find a\nteenager taken to the Otherworld, she uncovers dark secrets about her past\nthat could destroy the world.\"\r\n6371,6720,9674335,\"Joe Hill, Gabriel Rodríguez\",\"Locke & Key, Vol. 4: Keys to the Kingdom\",https://images.gr-assets.com/books/1377306592l/9674335.jpg,4.44,17333,\"comics, horror\",\"\"\"Originally published as Locke & key: Keys to the kingdom issues #1-6\"\"--\nT.p. verso.\"\r\n6372,6721,3347892,Anna Godbersen,Envy,https://images.gr-assets.com/books/1327928712l/3347892.jpg,3.91,20432,\"romance, fiction\",\"New York City, 1900 In high society nothing is more dangerous than a\nscandal. Two months have passed since the esteemed Holland family's\nshocking fall from grace and those watching the impetuous Miss Diana\nHolland are beginning to whisper again. Further uptown, notorious cad Henry\nSchoonmaker and his new bride are the city's most celebrated couple. But\nthe glittering diamond she wears hasn't yet brought her all she desires.\nManhattan's most envied residents appear to have everything: wealth,\nbeauty, happiness. But in a city ruled by reputation, sometimes the most\npractised smiles hide the most scandalous secrets . . . Luxurious acclaim:\n'It's Gossip Girl set in the 19th century - a deliciously guilty pleasure'\nGrazia 'All the glitz of The O.C. but with bigger frocks and more dashing\nboys' Elle 'Anna Godbersen's novels feature all the ingredients for a\nripper read - beautiful debutantes, handsome beaus, scandals and betrayals\nof Manhattan high society...... .what's not to love?' - Townsville Eye\n'This thrilling trip back in time to the Age of Innocence is anything but\ninnocent' - South Coast Lifestyle Visit betweenthelines.com.au - the\ndestination for Young Adult books.\"\r\n6373,6722,10596724,Ann Aguirre,Horde,https://images.gr-assets.com/books/1362287692l/10596724.jpg,4.28,17422,\"romance, fantasy\",HordeAnn Aguirre\r\n6374,6723,1476261,Rajaa Alsanea,بنات الرياض,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564603744l/1476261.jpg,3.17,8200,\"fiction, romance\",بنات الرياضRajaa Alsanea\r\n6375,6724,394772,Eric Carle,The Mixed-Up Chameleon,https://images.gr-assets.com/books/1350959503l/394772.jpg,4.21,15530,\"fiction, fantasy\",\"The chameleon's life was not very exciting until the day it discovered it\ncould change not only its color but its shape and size,too. When it saw the\nwonderful animals in the zoo, it immediately wanted to be like them -- and\nended up like all of them at once -- with hilarious results.\"\r\n6376,6725,14461,Carrie Vaughn,Kitty and the Midnight Hour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441143510l/14461._SY475_.jpg,3.66,25102,\"paranormal, fantasy\",\"Kitty Norville is a midnight-shift DJ for a Denver radio station-and a\nwerewolf in the closet. Sick of lame song requests, she accidentally starts\n'The Midnight Hour', a late-night advice show for the supernaturally\ndisadvantaged. After desperate vampires, werewolves, and witches across the\ncountry begin calling in to share their woes, her new show is a raging\nsuccess. But it's Kitty who can use some help. With one sexy werewolf-\nhunter and a few homicidal undead on her tail, Kitty may have bitten off\nmore than she can chew...\"\r\n6377,6726,235773,Ha Jin,Waiting,https://images.gr-assets.com/books/1327881519l/235773.jpg,3.49,15277,\"fiction, romance\",\"An ambitious and dedicated Chinese doctor, Lin Kong finds himself torn\nbetween two very different women--the educated and dynamic nurse with whom\nhe has fallen in love and the traditional, meek, and humble woman to whom\nhis family married him when they were both very young. National Book Award\n& Pen/Faulkner Award Winner. Reprint. 125,000 first printing.\"\r\n6378,6727,9650,George Orwell,Burmese Days,https://images.gr-assets.com/books/1415573403l/9650.jpg,3.84,12119,\"fiction, classics\",\"Orwell draws on his years of experience in India to tell this story of the\nwaning days of British imperialism. A handful of Englishmen living in a\nsettlement in Burma congregate in the European Club, drink whiskey, and\nargue over an impending order to admit a token Asian.\"\r\n6379,6728,13157,\"James Patterson, Andrew Gross\",The Jester,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347270829l/13157.jpg,3.79,15313,\"fiction, mystery\",\"The JesterJames Patterson, Andrew Gross\"\r\n6380,6729,160251,Judith Guest,Ordinary People,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172283738l/160251.jpg,3.9,15207,\"fiction, classics\",GUEST/ORDINARY PEOPLE\r\n6381,6730,20575446,\"Cory Doctorow, Jen Wang\",In Real Life,https://images.gr-assets.com/books/1391127564l/20575446.jpg,3.8,16704,\"comics, fiction\",\"Immersing herself in an online fantasy game, Anda confronts a difficult\nchoice when she befriends a disadvantaged Chinese child who illegally\ncollects rare items in the game and sells them to other players.\"\r\n6382,6731,4352708,Sherrilyn Kenyon,Bad Moon Rising,https://images.gr-assets.com/books/1361175509l/4352708.jpg,4.29,13608,\"paranormal, romance\",\"Were-Hunter Fang Kattalakis is forced to choose sides when war erupts among\nhis lycanthrope brethren, a situation that is further complicated by\naccusations targeting a woman he loves and threats on two races.\"\r\n6383,6732,388223,Alexandre Dumas,\"Robin Hood, le prince des voleurs\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1508050369l/388223.jpg,4,14710,\"classics, fiction\",\"Robin Hood, le prince des voleursAlexandre Dumas\"\r\n6384,6733,186103,Scott Westerfeld,Peeps,https://images.gr-assets.com/books/1443904244l/186103.jpg,3.77,20702,\"fantasy, paranormal\",\"Cal Thompson is a carrier of a parasite that causes vampirism, and must\nhunt down all of the girlfriends he has unknowingly infected before they\ncan create even more of their kind. Reprint.\"\r\n6385,6735,6600807,\"Lili St. Crow, Lilith Saintcrow\",Jealousy,https://images.gr-assets.com/books/1331245539l/6600807.jpg,4.15,21396,\"paranormal, fantasy\",\"Dru has finally made it to the Schola Prima, the wulfen and djamphir\ntraining facility, where she meets another svetocha, Anna, who runs the\nOrder, which rules the supernatural world, and who wants Dru out of the\npicture.\"\r\n6386,6736,367802,Dylan Thomas,Collected Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388789153l/367802.jpg,4.2,13188,\"poetry, classics\",\"Presents poems compiled by the author as representations of his best work,\nincluding the poems \"\"In The Beginning\"\" and \"\"Vision and Prayer.\"\"\"\r\n6387,6737,27070127,Anne Tyler,Vinegar Girl,https://images.gr-assets.com/books/1471553735l/27070127.jpg,3.42,13216,\"fiction, romance\",Vinegar GirlAnne Tyler\r\n6388,6738,13501,\"Ben Avery, Mike S. Miller, George R.R. Martin\",The Hedge Knight,https://images.gr-assets.com/books/1443806558l/13501.jpg,4.11,12192,\"fantasy, comics\",\"A young squire intends to reinvent himself as a hedge knight after his\nmaster's death, but the path to knighthood sends him down a dangerous road.\"\r\n6389,6740,10305247,Peter  May,The Black house,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328052791l/10305247.jpg,4.04,11745,\"mystery, crime\",\"The first book in an enthralling mystery series from award-winning author\nPeter May. \"\"A WRITER I WOULD FOLLOW TO THE ENDS OF THE EARTH.\"\" --Marilyn\nStasio, The New York Times Book Review \"\"SHINES WITH INTRIGUE AND SUPERB\nPLOTTING.\"\" --USA Today Every step toward solving the case brings Scottish\ndetective Fin Macleod closer to a dangerous confrontation with the dark\nevents of the past that shaped--and nearly destroyed--his life. When a\ngrisly murder occurs on the Isle of Lewis that bears similarities to a\nbrutal killing on mainland Scotland, Edinburgh detective and native of the\nIsle of Lewis Fin Macleod is dispatched to the Outer Hebrides to\ninvestigate, embarking at the same time on a voyage into his own troubled\npast. As Fin reconnects with the people and places of his tortured\nchildhood, the desolate but beautiful island and its ancient customs assert\ntheir grip on his psyche.\"\r\n6390,6741,105574,Lisa Kleypas,Scandal in Spring,https://images.gr-assets.com/books/1452549904l/105574.jpg,4.02,25262,\"romance, fiction\",Scandal in SpringLisa Kleypas\r\n6391,6742,41490,Mary Higgins Clark,On the Street Where You Live,https://images.gr-assets.com/books/1341761800l/41490.jpg,3.85,16327,\"mystery, fiction\",\"In the gripping new novel from the Queen of Suspense, a woman is haunted by\ntwo grisly murders separated by more than a century, yet somehow,\ninextricably linked... Following a nasty divorce and the trauma of being\nstalked, criminal defense attorney Emily Graham leaves Albany to work in\nManhattan. Craving roots, she buys her ancestral home, a Victorian house in\nthe seaside resort town of Spring Lake, New Jersey. Her family sold the\nhouse in 1892, after one of Emily's forebears, Madeline Shapley, then a\nyoung girl, disappeared. As the house is renovated and a pool dug, a\nskeleton is found and identiWed as Martha Lawrence, a young Spring Lake\nwoman who vanished several years ago. Within her hand is the Wnger bone of\nanother woman, with a ring -- a Shapley family heirloom -- still on it.\nDetermined to Wnd the connection between the two murders, Emily becomes a\nthreat to a seductive killer...who chooses her as the next victim.\"\r\n6392,6743,1316617,Richelle Mead,Succubus On Top,https://images.gr-assets.com/books/1315977158l/1316617.jpg,4.07,24091,\"paranormal, fantasy\",\"It seems completely unfair that a she-demon whose purpose is seduction\ncan't get hot and heavy with the one mortal who knows and accepts her for\nwhat she is.\"\r\n6393,6744,239105,R.A. Salvatore,The Silent Blade (Paths of Darkness #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436098309l/239105._SY475_.jpg,4.1,13813,\"fantasy, fiction\",\"In the further adventures of Drizzt Do'Urden, the dark elf must confront\nthe power of the evil-spewing crystal artifact called Crenshinibon while\nWulfgar escapes from the demon Errtu, and Drizzt's worst nemesis, master\nassassin Artemis Entreri returns to the streets of Calimport, in a new\nedition of the classic fantasy. Reprint.\"\r\n6394,6745,253264,\"Jerome Lawrence, Robert E.  Lee\",Inherit the Wind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290640l/253264.jpg,3.96,16418,\"classics, fiction\",\"Dramatizes the famous Scopes \"\"Monkey Trial\"\" in which William Jennings Bryan\nand Clarence Darrow clashed over a teacher's right to teach evolution.\nReprint.\"\r\n6395,6746,23316,Tony Hawks,Round Ireland with a Fridge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438308095l/23316._SY475_.jpg,3.78,13143,\"travel, nonfiction\",\"Have you ever made a drunken bet? Worse, still, have you eveer tried to win\none? In attempting to hitchhike round Ireland wich a fridge, Tony Hawks did\nboth, and his foolhardiness led him to one of the best experiences of his\nlife. Joined by his trusty traveling companion-cum-domestic appliance, he\nmade his way from Dublin to Donegal, from Sligo through Mayo, Galway,\nClare, Kerry, Cork, Wexford, Wicklow--and back again to Dublin. In their\nmonth of madness, Tony and his fridge met a real prince, a bogus king, and\nthe fridge got christened. They surfed together, entered a bachelor\nfestival, and one of them had sex without the other knowing. And\nunexpectedly, the fridge itself became a momentary focus for the people of\nIreland. An international bestseller, Round Ireland with a Fridge is a\nclassic travel adventure in the tradition of Bill Bryson with a dash of\nDave Barry.\"\r\n6396,6747,8535273,Carrie Ryan,The Dark And Hollow Places,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179932l/8535273.jpg,4.03,19282,\"horror, fantasy\",\"Alone and listening to the moaning of the Dark City dying around her, Annah\nwants to find her way back home, to her sister and family and their village\nin the Forest of Hands and Teeth.\"\r\n6397,6748,18127101,Chelsea Handler,Uganda Be Kidding Me,https://images.gr-assets.com/books/1403174817l/18127101.jpg,3.63,11627,\"memoir, nonfiction\",Uganda Be Kidding MeChelsea Handler\r\n6398,6749,6464094,\"Pseudonymous Bosch, Gilbert Ford\",This Book Is Not Good for You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438634698l/6464094._SX318_.jpg,4.29,16852,\"mystery, fantasy\",\"This Book Is Not Good for YouPseudonymous Bosch, Gilbert Ford\"\r\n6399,6750,6386555,Chuck Klosterman,Eating the Dinosaur,https://images.gr-assets.com/books/1327949106l/6386555.jpg,3.75,12571,\"nonfiction, music\",Eating the DinosaurChuck Klosterman\r\n6400,6751,285500,Founding Fathers,The Declaration of Independence and The Constitution of the United States ,https://images.gr-assets.com/books/1320508156l/285500.jpg,4.44,14047,\"history, classics\",The Declaration of Independence and The Constitution of the United States Founding Fathers\r\n6401,6752,550454,Gary Jennings,Aztec,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194488l/550454.jpg,4.19,12422,\"fiction, history\",\"The epic tale of an Aztec survivor of the Spanish conquest and his times as\na warrior, scribe, travelling merchant, confidant of Motecuhzoma II, and\nenvoy to the invading Spaniards.\"\r\n6402,6753,25372801,Charlie Jane Anders,All the Birds in the Sky,https://images.gr-assets.com/books/1429225322l/25372801.jpg,3.58,14769,\"fantasy, fiction\",All the Birds in the SkyCharlie Jane Anders\r\n6403,6754,13516846,Terry Pratchett,Dodger,https://images.gr-assets.com/books/1343828971l/13516846.jpg,3.9,14775,\"fiction, mystery\",\"A brand new edition of a Terry Pratchett classic - set in Victorian London,\nand starring cunning but kind Dodger, as he sets off on a whirlwind\nadventure through the city streets THE SEWER IS DODGER'S WORLD . . . He\nhunts treasure there - coins and jewels lost in the dark and dirty drains.\nIt's a good life, if you don't mind getting your hands (and arms and feet\nand face) dirty. But one night, Dodger helps a young woman flee two\nruffians. Now, a street urchin dressed as a gentleman, he must discover the\nsecret behind her escape. Along the way he'll befriend Charles Dickens,\noutwit Sweeny Todd and reach the giddy heights of Victorian society. Dodger\nmay be living in the gutter, but he's heading for the stars . . .\"\r\n6404,6755,2915,Gary Paulsen,The River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924191l/2915.jpg,3.77,14198,\"fiction, classics\",\"Because of his success surviving alone in the wilderness for fifty-four\ndays, fifteen-year-old Brian, profoundly changed by his time in the wild,\nis asked to undergo a similar experience to help scientists learn more\nabout the psychology of survival.\"\r\n6405,6756,13929,Juliet Marillier,Wildwood Dancing,https://images.gr-assets.com/books/1393127105l/13929.jpg,4.09,21810,\"fantasy, romance\",Wildwood DancingJuliet Marillier\r\n6406,6757,217433,Kristin Hannah,Home Again,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240279l/217433.jpg,3.95,13791,\"fiction, contemporary\",\"Struggling with her rebellious daughter and her conflicting feelings for a\nsoul-seeking priest and a cynical man, cardiologist Madelaine learns to\novercome past betrayals when a tragedy brings them all together.\"\r\n6407,6758,761023,Clive Barker,Books of Blood: Volume One,https://images.gr-assets.com/books/1429999423l/761023.jpg,4,14751,\"horror, fiction\",\"Six horror stories deal with a haunted theater, messages from the dead, a\nseries of gruesome subway murders, demons, cannibalism, and a monstrous\ngiant\"\r\n6408,6760,5053,Ken Follett,The Man from St. Petersburg,https://images.gr-assets.com/books/1411331808l/5053.jpg,3.84,13193,\"mystery, fiction\",\"Just before World War I, two men--one a noble Russian emissary, the other a\ndenizen of Europe's underground--set in motion a concatenation of world-\nshaking, ultimately fatal events.\"\r\n6409,6761,230003,Nora Roberts,Daring to Dream,https://images.gr-assets.com/books/1309200789l/230003.jpg,4.01,18952,\"romance, fiction\",\"Margo Sullivan had everything she could ask for. The daughter of the\nTempletons' stern housekeeper, she was treated like a member of the family.\nBut money could not buy the thing she craved most-her mother's\nacceptance...\"\r\n6410,6762,89160,\"J.D. Robb, Nora Roberts\",Judgment in Death,https://images.gr-assets.com/books/1390135645l/89160.jpg,4.33,21446,\"mystery, romance\",\"Kriminalroman. Da en politimorder går amok i en klub ved navn Purgatory,\nbeslutter New York detektiven Eve Dallas sig for at blande sig.\"\r\n6411,6763,74033,J.D. Robb,\"Innocent in Death (In Death, #24)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425837557l/74033.jpg,4.36,19210,\"mystery, crime\",\"Investigating the baffling murder case of an ordinary and much-loved\nprivate school teacher, New York City lieutenant Eve Dallas struggles to\nidentify who may have wanted the death of an innocent man.\"\r\n6412,6764,15833693,Amanda Knox,Waiting to Be Heard: A Memoir,https://images.gr-assets.com/books/1367786694l/15833693.jpg,3.8,11891,\"memoir, nonfiction\",\"In March 2015, Amanda Knox was exonerated, eight years after her wrongful\narrest. Here is her story in her own words. In November 2007, twenty-year-\nold Amanda Knox had been studying in Perugia, Italy, for only a few weeks\nwhen her friend and roommate, British student Meredith Kercher, was\nmurdered. The investigation made headlines around the world, and Amanda's\narrest placed her at the center of a media firestorm. After an extremely\ncontroversial trial, she was convicted of murder in 2009. She spent four\nyears in an Italian prison until a new court, which appointed independent\nexperts to review the prosecution's DNA evidence, affirmatively found her\ninnocent in 2011. She returned home to Seattle, Washington. But just when\nAmanda thought her legal nightmare had ended, it began all over again. In\nMarch 2013, Italy's highest court annulled the acquittal and sent the case\nto the lower courts for further proceedings. Even though no new evidence\nwas introduced against her, Amanda was found guilty and sentenced to\ntwenty-eight and a half years in prison in January 2014. This decision was\noverturned by the Italian Supreme Court, which exonerated her of the murder\ncharge. In Waiting to Be Heard, Amanda speaks about what it was like to\nfind herself imprisoned in a foreign country for a crime she did not\ncommit, and how much she relied on the unwavering support of her family and\nfriends, many of whom made extraordinary sacrifices on her behalf. Waiting\nto Be Heard is an unflinching, heartfelt coming-of-age narrative like no\nother—now with a new afterword, in which Amanda describes the heart-\nstopping final twists in her fight for freedom—and her hopes for the\nfuture.\"\r\n6413,6765,157055,Jean Ferris,Once Upon a Marigold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429468490l/157055.jpg,3.98,20394,\"fantasy, romance\",Once Upon a MarigoldJean Ferris\r\n6414,6767,17834904,Alan Bradley,The Dead in Their Vaulted Arches,https://images.gr-assets.com/books/1432578235l/17834904.jpg,4.16,17789,\"mystery, fiction\",\"A latest entry in a best-selling series of mysteries finds young chemist\nand aspiring detective Flavia de Luce using her knowledge of poisons and\nindefatigable spirit to solve a dastardly crime on the English countryside\nwhile learning new clues about her mother's disappearance. By the author of\nThe Red Herring Without Mustard.\"\r\n6415,6769,17860739,\"J.J. Abrams, Doug Dorst\",S.,https://images.gr-assets.com/books/1378767595l/17860739.jpg,3.84,12533,\"fiction, mystery\",\"One book. Two readers. A world of mystery, menace, and desire. A young\nwoman picks up a book left behind by a stranger. Inside it are his margin\nnotes, which reveal a reader entranced by the story and by its mysterious\nauthor. She responds with notes of her own, leaving the book for the\nstranger, and so begins an unlikely conversation that plunges them both\ninto the unknown. The book: Ship of Theseus, the final novel by a prolific\nbut enigmatic writer named V.M. Straka, in which a man with no past is\nshanghaied onto a strange ship with a monstrous crew and launched onto a\ndisorienting and perilous journey. The writer: Straka, the incendiary and\nsecretive subject of one of the world's greatest mysteries, a revolutionary\nabout whom the world knows nothing apart from the words he wrote and the\nrumors that swirl around him. The readers: Jennifer and Eric, a college\nsenior and a disgraced grad student, both facing crucial decisions about\nwho they are, who they might become, and how much they're willing to trust\nanother person with their passions, hurts, and fears. S., conceived by\nfilmmaker J. J. Abrams and written by award-winning novelist Doug Dorst, is\nthe chronicle of two readers finding each other in the margins of a book\nand enmeshing themselves in a deadly struggle between forces they don't\nunderstand, and it is also Abrams and Dorst's love letter to the written\nword.\"\r\n6416,6770,22207,Heather O'Neill,Lullabies for Little Criminals,https://images.gr-assets.com/books/1327893204l/22207.jpg,3.95,14535,\"fiction, contemporary\",Lullabies for Little CriminalsHeather O'Neill\r\n6417,6772,716696,\"Omar Khayyám, محمدعلی فروغی, قاسم غنی\",رباعیات [Robāʿiāt-e ʿOmar Khayyām],https://images.gr-assets.com/books/1441007730l/716696.jpg,4.18,3200,\"poetry, fiction\",\"رباعیات [Robāʿiāt-e ʿOmar Khayyām]Omar Khayyám, محمدعلی فروغی, قاسم غنی\"\r\n6418,6773,12383869,Lauren DeStefano,Sever,https://images.gr-assets.com/books/1343168408l/12383869.jpg,3.8,21349,\"romance, fantasy\",SeverLauren DeStefano\r\n6419,6774,13538992,Darynda Jones,Fourth Grave Beneath My Feet,https://images.gr-assets.com/books/1338721218l/13538992.jpg,4.4,13274,\"paranormal, romance\",\"Hoping to take time off after a discouraging case, grim reaper Charley\nreluctantly assists a woman who is convinced someone is trying to kill her\nin spite of everyone's claims that she is insane, a situation that is\ncomplicated by Rayes Farrow's absence and arsonist attacks in Albuquerque.\nReprint. 150,000 first printing.\"\r\n6420,6776,25295,Richard A. Knaak,The Legend of Huma (Dragonlance: Heroes #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388340583l/25295.jpg,4.03,14765,\"fantasy, fiction\",\"Traces the origins of Huma, the Hero of the Lance, and recounts the final\nconflict between the Queen of Darkness and the forces of Paladine\"\r\n6421,6777,89691,Carolyn  Parkhurst,The Dogs of Babel,https://images.gr-assets.com/books/1344269639l/89691.jpg,3.56,14966,\"fiction, mystery\",The Dogs of BabelCarolyn  Parkhurst\r\n6422,6778,1027760,Ludwig Bemelmans,Madeline and the Bad Hat,https://images.gr-assets.com/books/1355497395l/1027760.jpg,4.27,16180,\"fiction, classics\",\"When the Spanish ambassador moves in next door, Madeline and the rest of\nthe twelve little girls discover that his son is not the best neighbor.\"\r\n6423,6779,11166890,Dean Koontz,77 Shadow Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391441147l/11166890.jpg,3.29,14092,\"horror, fiction\",\"The affluent occupants of luxury apartments, housed in a 200-year-old\nmansion with a checkered past, enter into a terrifying waking nightmare\nwhen the haunted house reawakens, leaving no one safe from its grip.\"\r\n6424,6780,47618,Garth Nix,Sir Thursday,https://images.gr-assets.com/books/1304528609l/47618.jpg,3.94,17624,\"fantasy, fiction\",Sir ThursdayGarth Nix\r\n6425,6781,33418,Michio Kaku,\"Parallel Worlds: A Journey Through Creation, Higher Dimensions, and the Future of the Cosmos\",https://images.gr-assets.com/books/1435244003l/33418.jpg,4.17,12620,\"science, nonfiction\",\"Sheds new light on discoveries that have revolutionized the field of\ncosmology and transformed understanding of the universe, offering an\nexplanation of the multiverse M-theory and its implications in terms of the\nfate of our own universe.\"\r\n6426,6782,74169,Max Lucado,Facing Your Giants: The God Who Made a Miracle Out of David Stands Ready to Make One Out of You,https://images.gr-assets.com/books/1380857035l/74169.jpg,4.43,11691,\"christian, religion\",Facing Your Giants: The God Who Made a Miracle Out of David Stands Ready to Make One Out of YouMax Lucado\r\n6427,6783,8177526,Amanda Hocking,Fate,https://images.gr-assets.com/books/1282281122l/8177526.jpg,3.99,18021,\"paranormal, fantasy\",\"Alice Bonham thinks she's finally found a balance in her life between the\nsupernatural and real life with her brother Milo. Jack - her sorta vampire\nboyfriend - keeps her at arm's length to keep her safe. As for his brother\nPeter... she's not sure where he's at, or what he wants with her. Worse\nstill, she's not even sure what she wants with Peter. When tragedy happens,\nAlice finds herself struggling with a terrible choice. Her decision has\nconsequences that reach farther than she'd ever imagined...\"\r\n6428,6784,32127,Ina May Gaskin,Ina May's Guide to Childbirth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924890l/32127.jpg,4.42,12044,\"nonfiction, science\",\"One of the leading authorities on modern midwifery offers expectant mothers\nan alternative, explaining how to minimize the risks of epidurals, how to\ncreate a mutually supportive relationship among birth-care providers,\nmedical procedures that can hinder labor, and why many cesarean sections\nare unnecessary. Original.\"\r\n6429,6785,905382,\"Melissa Müller, Rita Kimber, Robert Kimber\",Anne Frank : The Biography,https://images.gr-assets.com/books/1316739030l/905382.jpg,4.31,15656,\"biography, history\",\"For people all over the world, Anne Frank, the vivacious, intelligent\nJewish girl with a crooked smile and huge dark eyes, has become the human\nface of the Holocaust. Now in paperback, here is the highly acclaimed first\nbiography of the girl whose fate touched the lives of millions. Drawing on\nexclusive interviews with family and friends, on previously unavailable\ncorrespondence, and on five diary pages long kept secret, Melissa Muller\nhas created a nuanced portrait of her famous subject. This is the flesh-\nand-blood Anne Frank, unsentimentalized and so all the more affecting. Full\nof revelations, Muller's book casts new light on Anne's relations with her\nmother and solves an enduring mystery: who betrayed the families hiding in\nthe annex just when liberation was at hand? An indispensable volume for all\nthose who seek a deeper understanding of Anne Frank and the brutal times in\nwhich she lived and died.\"\r\n6430,6786,15733523,Ashwin Sanghi,The Krishna Key,https://images.gr-assets.com/books/1341289060l/15733523.jpg,3.48,11563,\"fiction, thriller\",The Krishna KeyAshwin Sanghi\r\n6431,6787,250,Henry Miller,Tropic of Capricorn,https://images.gr-assets.com/books/1417652073l/250.jpg,3.85,12082,\"fiction, classics\",\"A vicious social commentary of the times and culture of the 1920's New York\nCity.\"\r\n6432,6788,920649,Ambrose Bierce,An Occurrence at Owl Creek Bridge,https://images.gr-assets.com/books/1453993106l/920649.jpg,4.02,15332,\"classics, fiction\",\"Twenty-three stories by Ambrose Bierce, consisting of nine Civil War\nstories, ten horror stories, and four tall tales.\"\r\n6433,6789,2761356,Katherine Allred,The Sweet Gum Tree,https://images.gr-assets.com/books/1367119561l/2761356.jpg,4.3,22577,\"romance, contemporary\",\"Sweet tea, corn bread and soup beans; everyday fare for eight-year-old Alix\nFrench, the precocious darling of a respected southern family. But nothing\nwas ordinary about the day she met ten-year-old Nick Anderson, a boy from\nthe wrong side of town. Armed with only a tin of bee balm and steely\ndetermination, Alix treats the raw evidence of a recent beating that mars\nhis back, an act that changes both their lives forever. Through childhood\ndisasters and teenage woes they cling together as friendship turns to love.\nThe future looks rosy until the fateful night when Frank Anderson, Nick's\nabusive father, is shot to death in his filthy trailer.Suddenly, Nick is\ngone, leaving Alix alone, confused and pregnant. For the next fifteen years\nshe wrestles with the pain of Nick's abandonment, a bad marriage, her\nfamily and friends. But finally, she's starting to get her life back\ntogether. Her divorce is almost final, her business is booming, and she's\ncontent if not happy-until the day she looks up and sees Nick standing\nacross the counter. He's back, and he's not alone. Once again Alix is\nplunged into turmoil and pain as Nick tries to win her love, something she\nresists with all her strength. Only one thing might break the protective\nwall she's built around her emotions-the truth about Frank Anderson's\ndeath. But when that truth comes out and those walls crumble, neither Alix\nnor Nick is prepared for the emotional explosion that could destroy as well\nas heal.\"\r\n6434,6790,840163,Dale Brown,Flight Of The Old Dog,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387709468l/840163.jpg,4.08,13607,\"fiction, thriller\",Flight Of The Old DogDale Brown\r\n6435,6791,13374,Miriam Toews,A Complicated Kindness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434887050l/13374._SY475_.jpg,3.64,13981,\"fiction, contemporary\",\"Doomed to work at the Happy Family Farm, a chicken slaughterhouse in a town\nrun by religious fundamentalists, sixteen-year-old Nomi Nickel nevertheless\nmanages to bear witness to the dissolution of her family with a dark, sly\nwit.\"\r\n6436,6792,1729146,D.J. MacHale,Raven Rise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348123665l/1729146.jpg,4.2,17691,\"fantasy, fiction\",\"While Pendragon is trapped on Ibara, Alder returns to Denduron and goes\ninto battle again, and other Travelers face obstacles of various sorts,\nSaint Dane gains the power he seeks and makes his push to destroy and\nrebuild Halla.\"\r\n6437,6793,25813937,Kathleen Grissom,Glory over Everything: Beyond The Kitchen House,https://images.gr-assets.com/books/1444246918l/25813937.jpg,4.24,13451,\"fiction, history\",\"The year is 1830 and Jamie Pyke, a celebrated silversmith and notorious\nladies' man, is keeping a deadly secret. Passing as a wealthy white\naristocrat in Philadelphian society, Jamie is now living a life he could\nnever have imagined years before when he was a runaway slave, son of a\nsouthern black slave and her master. But Jamie's carefully constructed\nworld is threatened when he discovers that his married socialite lover,\nCaroline, is pregnant and his beloved servant Pan, to whose father Jamie\nowes his own freedom, has been captured and sold into slavery in the South.\nFleeing the consequences of his deceptions, Jamie embarks on a trip to a\nNorth Carolina plantation to save Pan from the life he himself barely\nescaped as a boy. With the help of a fearless slave, Sukey, who has taken\nthe terrified young boy under her wing, Jamie navigates their way, racing\nagainst time and their ruthless pursuers through the Virginia backwoods,\nthe Underground Railroad, and the treacherous Great Dismal Swamp. Glory\nOver Everything is \"\"gripping...breathless until the end\"\" (Kirkus Reviews).\"\r\n6438,6794,1291211,Robert Muchamore,Class A (Cherub #2),https://images.gr-assets.com/books/1356698938l/1291211.jpg,4.26,14299,\"fiction, crime\",\"James Adams is on his biggest mission yet, working to nail Europe's most\npowerful cocaine dealer. He'll need all his specialist training if he's\ngoing to bring down the man at the top.\"\r\n6439,6795,71784,Jan Karon,Mitford Years New Song Unabridged,https://images.gr-assets.com/books/1344358382l/71784.jpg,4.28,15387,\"fiction, christian\",\"Recently retired, Episcopal priest Father Tim and his wife, Cynthia,\ndiscover new challenges and adventures when Tim agrees to serve as interim\nminister of a small church on Whitecap Island, in the latest novel in the\nbest-selling Mitford series. 250,000 first printing. Lit Guild & Crossings\nMain. Doubleday Direct. Tour.\"\r\n6440,6796,1747182,Tami Hoag,Deeper than the Dead,https://images.gr-assets.com/books/1408930728l/1747182.jpg,4.04,14611,\"thriller, suspense\",\"When FBI agent Tony Mendez is called to search for a serial killer, he\nenlists the help of teacher Anne Navarre when he suspects it may be the\nfather of one of her students.\"\r\n6441,6797,4703427,Steven Erikson,Dust of Dreams,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268201l/4703427.jpg,4.31,14435,\"fantasy, fiction\",\"There is turmoil in the Wastelands as the exiled Malazan army marches\nagainst an unseen enemy, the White Face clan faces rebellion in the south,\nthe Perish Grey Helms encounter the Bonehunters, and members of the Elder\nRace seek help from humans. Reprint.\"\r\n6442,6798,17863,Charles Stross,Accelerando,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240687l/17863.jpg,3.87,14690,\"fiction, ebooks\",\"The Singularity. It is the era of the posthuman. Artificial intelligences\nhave surpassed the limits of human intellect. Biotechnological beings have\nrendered people all but extinct. Molecular nanotechnology runs rampant,\nreplicating and reprogramming at will. Contact with extraterrestrial life\ngrows more imminent with each new day. Struggling to survive and thrive in\nthis accelerated world are three generations of the Macx clan; Manfred, an\nentrepreneur dealing in intelligence amplification technology whose mind is\ndivided between his physical environment and the Internet; his daughter,\nAmber, on the run from her domineering mother, seeking her fortune in the\nouter system as an indentured astronaut; and Sirhan, Amber’s son, who finds\nhis destiny linked to the fate of all of humanity. For something is\nsystematically dismantling the nine planets of the solar system. Something\nbeyond human comprehension. Something that has no use for biological life\nin any form...\"\r\n6443,6799,23209971,Sara Nović,Girl at War,https://images.gr-assets.com/books/1414348859l/23209971.jpg,3.98,13827,\"fiction, contemporary\",\"A cloth bag containing eight copies of the title, that may also include a\nfolder.\"\r\n6444,6800,164719,Darren Shan,Lord Loss,https://images.gr-assets.com/books/1344267992l/164719.jpg,4.21,15325,\"horror, fantasy\",Lord LossDarren Shan\r\n6445,6801,6460331,Meg Cabot,Runaway ,https://images.gr-assets.com/books/1328840338l/6460331.jpg,3.93,20846,\"contemporary, romance\",\"When sixteen-year-old Emerson Watts learns the truth about Nikki, the teen\nsupermodel into whose body Emerson's brain was transplanted, she finds that\nthere is only one person to turn to for help, especially since her loved\nones seem to be furious with her\"\r\n6446,6802,39796,\"Henning Mankell, Steven T. Murray\",Villospår,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388381747l/39796.jpg,4.05,13401,\"mystery, crime\",\"A teenage girl self-immolates, the former Minister of Justice is murdered\nand scalped, and suddenly Inspector Kurt Wallander finds himself searching\nfor Sweden's first serial killer.\"\r\n6447,6803,15828714,Abbi Glines,Sometimes It Lasts,https://images.gr-assets.com/books/1415292563l/15828714.jpg,4.28,23166,\"romance, contemporary\",Sometimes It LastsAbbi Glines\r\n6448,6804,12143200,Rachel Maddow,Drift: The Unmooring of American Military Power,https://images.gr-assets.com/books/1318753897l/12143200.jpg,4.07,12980,\"history, nonfiction\",\"Explains how the intense focus on national security is actually\ncompromising the stability of the country, tracing the historical events\nand contributing factors that have promoted a deeply militarized American\nculture.\"\r\n6449,6805,18222699,Joelle Charbonneau,Graduation Day,https://images.gr-assets.com/books/1384363227l/18222699.jpg,3.81,14963,\"fiction, romance\",Graduation DayJoelle Charbonneau\r\n6450,6806,48183,Billie Letts,The Honk and Holler Opening Soon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440964560l/48183._SY475_.jpg,3.93,16487,\"fiction, romance\",The Honk and Holler Opening SoonBillie Letts\r\n6451,6807,32445,Dean Koontz,Strange Highways,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388354564l/32445.jpg,3.83,15265,\"horror, fiction\",\"Two novels, plus novellas and short stories. In Chase, a killer stalks\ncouples in a lovers' lane, in Down in the Darkness, a Vietnam War veteran\nrevenges himself on the man who tortured him, while The Night of the Storm\nis on a world ruled by robots.\"\r\n6452,6808,15047,Jeanette Winterson,The Passion,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187737l/15047.jpg,4.12,13391,\"fiction, fantasy\",\"Passion consumes Henri, a chef with Napoleon's army, and Villanelle, who\nhas lost her heart to a married noblewoman, until the two meet at the gates\nof Moscow and form a bond based on bitter loss\"\r\n6453,6809,206236,Don Winslow,The Power of the Dog,https://images.gr-assets.com/books/1467260965l/206236.jpg,4.36,10195,\"fiction, crime\",\"The seemingly disparate lives of a DEA agent, a drug lord, a call girl, a\nhit man, and a priest intertwine around a nexus of the drug trade involving\nthe Latin American drug cartels, the American underworld, and the U.S.\ngovernment, from the rise of the Mexican drug Federacion in the 1970s to\nthe present day. Reprint. 17,500 first printing.\"\r\n6454,6810,25817162,\"Stephanie Dray, Laura Kamoie\",America's First Daughter,https://images.gr-assets.com/books/1459542134l/25817162.jpg,4.22,13279,\"fiction, history\",\"“Not since Gone with the Wind has a single-volume family saga so\nbrilliantly portrayed the triumphs, trials, and sins of a family in the\nAmerican South.”—ERIKA ROBUCK, author of The House of Hawthorne From her\nearliest days, Patsy Jefferson knows that though her father loves his\nfamily dearly, his devotion to his country runs deeper still. As Thomas\nJefferson’s oldest daughter, she becomes his helpmate, protector, and\nconstant companion in the wake of her mother’s death, traveling with him\nwhen he becomes America’s minister to France. It is in Paris, at the\nglittering court and among the first tumultuous days of the French\nRevolution, that fifteen-year-old Patsy learns about her father’s troubling\nliaison with Sally Hemings, a slave girl her own age. Meanwhile, Patsy has\nfallen in love—with her father’s protégé, William Short, a staunch\nabolitionist and ambitious diplomat. Torn between love, principles, and the\nbonds of family, Patsy questions if she can choose a life as William’s wife\nand still be a devoted daughter. Her choice will follow her in the years to\ncome—to Virginia farmland, to Monticello, and even to the White House. And\nas scandal, tragedy, and poverty threaten her family, Patsy must decide how\nmuch she will sacrifice to protect her father’s reputation, in the process\ndefining not just Jefferson’s political legacy but that of the nation he\nfounded. “Delectable and poignant. . . . You’re going to want to savor this\none. Bravo.”—Steve Berry, New York Times bestselling author\"\r\n6455,6811,17285883,Kim Harrison,The Undead Pool,https://images.gr-assets.com/books/1379687538l/17285883.jpg,4.43,17043,\"fantasy, paranormal\",The Undead PoolKim Harrison\r\n6456,6812,6329547,Ilona Andrews,On the Edge,https://images.gr-assets.com/books/1307445575l/6329547.jpg,4.02,25915,\"fantasy, romance\",\"Rose Drayton, an Edger who can travel between the magical world of the\nWeird and the mundane reality of the Broken but belongs in neither,\nreluctantly teams up with a noble who wants to possess her to fight magic-\nhungry creatures.\"\r\n6457,6814,15698479,John Scalzi,The Human Division,https://images.gr-assets.com/books/1341582413l/15698479.jpg,4.07,13685,\"fiction, ebooks\",The Human DivisionJohn Scalzi\r\n6458,6816,148809,Jasper Fforde,The Fourth Bear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442630942l/148809._SY475_.jpg,4.07,16851,\"fantasy, mystery\",\"Jack Spratt, having been demoted for his poor judgment during the Mr. Bun\npoisoning, investigates the disappearance of star reporter \"\"Goldy\"\"\nHatchett, whose case is related to the Gingerbreadman serial killer\ninvestigation.\"\r\n6459,6817,6471550,\"Mike Carey, Bill Willingham, Peter Gross\",\"The Unwritten, Volume 1: Tommy Taylor and the Bogus Identity\",https://images.gr-assets.com/books/1327887253l/6471550.jpg,3.76,16759,\"comics, fantasy\",\"\"\"Tom Taylor's life was screwed from the word go. His father created the\nmega-popular Tommy Taylor boy-wizard fantasy novels. But dad modeled the\nfictional epic so closely to Tom that fans constantly compare him to his\ncounterpart, turning him into a lame, Z-level celebrity. When a scandal\nhints that Tom might really be the boy-wizard made flesh, Tom comes into\ncontact with a mysterious, deadly group that's secretly kept tabs on him\nall his life. Now, to protect his life and discover the truth behind his\norigins, Tom will travel the world, to all the places in world history\nwhere fictions have shaped reality\"\" -- from publisher's web site.\"\r\n6460,6818,1317696,Salman Rushdie,The Enchantress of Florence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1200508801l/1317696.jpg,3.57,12310,\"fiction, fantasy\",\"The best-selling author of Midnight's Children presents the story of one\nwoman attempting to command her own destiny in a man's world, in a novel\nthat brings together two distant cities--the hedonistic Mughal capital\nruled by the brilliant Akbar the Great, and Niccolò Machiavelli's Florence\nduring the High Renaissance. Reprint. 100,000 first printing.\"\r\n6461,6819,11256293,Preeti Shenoy,\"Life is What You Make It: A Story of Love, Hope and How Determination Can Overcome Even Destiny\",https://images.gr-assets.com/books/1308754493l/11256293.jpg,3.54,11292,\"fiction, romance\",\"Life is What You Make It: A Story of Love, Hope and How Determination Can Overcome Even DestinyPreeti Shenoy\"\r\n6462,6820,1875,\"Michel Foucault, Robert Hurley\",Histoire de la sexualité 1. La Volonté de savoir,https://images.gr-assets.com/books/1486236798l/1875.jpg,4.03,12565,\"nonfiction, psychology\",\"Histoire de la sexualité 1. La Volonté de savoirMichel Foucault, Robert Hurley\"\r\n6463,6821,206193,Brad Thor,Takedown,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440645490l/206193._SY475_.jpg,4.26,13372,\"thriller, fiction\",TakedownBrad Thor\r\n6464,6822,32827,Jules Verne,De la Terre à la Lune,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389545038l/32827.jpg,3.78,14721,\"classics, fiction\",De la Terre à la LuneJules Verne\r\n6465,6823,27525,\"Tim LaHaye, Jerry B. Jenkins\",Armageddon: The Cosmic Battle of the Ages,https://images.gr-assets.com/books/1406507661l/27525.jpg,4.02,14251,\"christian, fiction\",\"All armies of the world, including the Tribulation Force, head for the\nMiddle East to engage in one massive battle, as the world becomes even more\ndangerous to live in with death, mistrust, and treachery all around.\"\r\n6466,6824,10677213,\"Steven Naifeh, Gregory White Smith\",Van Gogh: The Life,https://images.gr-assets.com/books/1411005913l/10677213.jpg,4.09,13659,\"biography, nonfiction\",\"Draws on newly available primary sources to present a profile that offers\nrevisionist assessments of the influential artist's turbulent life and\ngenius works.\"\r\n6467,6825,295132,Thomas  Moore,Care of the Soul : A Guide for Cultivating Depth and Sacredness in Everyday Life,https://images.gr-assets.com/books/1360677664l/295132.jpg,3.99,12375,\"spirituality, psychology\",\"#1 New York Times Bestseller With a new introduction by the author and\nadditional material, this 25th anniversary edition of the #1 New York Times\nbestseller by Thomas Moore provides a powerful spiritual message for our\ntroubled times. In this special 25th anniversary edition of Thomas Moore’s\nbestselling book Care of the Soul readers are presented with a\nrevolutionary approach to thinking about daily life—everyday activities,\nevents, problems and creative opportunities—and a therapeutic lifestyle is\nproposed that focuses on looking more deeply into emotional problems and\nlearning how to sense sacredness in even ordinary things. Basing his\nwriting on the ancient model of \"\"care of the soul\"\"—which provided a\nreligious context for viewing the everyday events of life—Moore brings\n\"\"care of the soul\"\" into the 21st century. Promising to deepen and broaden\nthe reader's perspective on his or her own life experiences, Moore draws on\nhis own life as a therapist practicing \"\"care of the soul,\"\" as well as his\nstudies of the world's religions and his work in music and art, to create\nthis inspirational guide that examines the connections between spirituality\nand the problems of individuals and society.\"\r\n6468,6826,7853757,Dennis Lehane,Moonlight Mile ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441143001l/7853757._SY475_.jpg,3.71,15028,\"fiction, crime\",\"Amanda McCready was four years old when she vanished from her blue-collar\nBoston neighborhood. Patrick Kenzie and Angela Gennaro risked everything to\nfind her—only to orchestrate her return to a neglectful mother and broken\nhome. Twelve years later, Amanda, now sixteen, is gone again. The\ndisappearance of little Amanda was the case that troubled Kenzie and\nGennaro more than any other. Still haunted by their consciences, they must\nnow revisit the nightmare that once tore them apart—following the trail of\na lost teenager into a world of identity thieves, methamphetamine dealers,\nand Russian gangsters, right up to the doorstep of a dangerously unstable\ncrime boss and his demented wife. Once again Patrick and Angie will be\nputting everything that matters to them on the line in pursuit of the\nanswer to the burning question: Is it possible to do the right thing and\nstill be dead wrong?\"\r\n6469,6828,27002,Jasper Fforde,First Among Sequels ,https://images.gr-assets.com/books/1338467549l/27002.jpg,4,18722,\"fantasy, fiction\",\"Fourteen years after the 1988 SuperHoop, Thursday finds herself entangled\nin cases involving the murders of Sherlock Holmes and Miss Marple before\nreceiving a death threat of her own.\"\r\n6470,6829,7531,Laurie Notaro,The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184921l/7531.jpg,3.89,15198,\"memoir, nonfiction\",\"In a hilarious compendium of essays and accounts of her autobiographical\nmisadventures and life experiences, the leader of the Idiot Girls' Action\nAdventure Club covers topics ranging from bad boyfriends and jobs to\nembarrassing doctor visits and high-school reunions. Original. 75,000 first\nprinting.\"\r\n6471,6830,11801463,Robin Hobb,City of Dragons,https://images.gr-assets.com/books/1322613975l/11801463.jpg,4.05,13498,\"fantasy, fiction\",City of DragonsRobin Hobb\r\n6472,6832,56912,Ross King,The Judgment of Paris: The Revolutionary Decade that Gave the World Impressionism,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441521513l/56912._SY475_.jpg,3.81,10382,\"art, history\",The Judgment of Paris: The Revolutionary Decade that Gave the World ImpressionismRoss King\r\n6473,6833,32456,Dean Koontz,Darkfall,https://images.gr-assets.com/books/1308458183l/32456.jpg,3.8,15301,\"fiction, thriller\",\"Terror strikes when four hideously disfigured corpses are discovered over\nthe course of four days.\"\r\n6474,6835,394228,Elizabeth  George,Well-Schooled in Murder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389348416l/394228.jpg,4.11,16485,\"mystery, crime\",Well-Schooled in MurderElizabeth  George\r\n6475,6837,17332207,Alice McDermott,Someone,https://images.gr-assets.com/books/1377579911l/17332207.jpg,3.76,12401,\"fiction, contemporary\",SomeoneAlice McDermott\r\n6476,6838,186669,Lian Hearn,Brilliance of the Moon ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441513199l/186669._SY475_.jpg,4.04,13124,\"fantasy, fiction\",\"A tale set in an alternate medieval Japan follows the adventures of Takeo\nand Kaede as they find their destinies shaped by factors outside of their\ncontrol.\"\r\n6477,6839,3097601,Michael Thomas Ford,Suicide Notes,https://images.gr-assets.com/books/1424990334l/3097601.jpg,3.92,14749,\"contemporary, fiction\",\"I'm not crazy. I don't see what the big deal is about what happened. But\napparently someone does think it's a big deal because here I am. I bet it\nwas my mother. She always overreacts. Fifteen-year-old Jeff wakes up on New\nYear's Day to find himself in the hospital. Make that the psychiatric ward.\nWith the nutjobs. Clearly, this is all a huge mistake. Forget about the\nbandages on his wrists and the notes on his chart. Forget about his\nproblems with his best friend, Allie, and her boyfriend, Burke. Jeff's\nperfectly fine, perfectly normal, not like the other kids in the hospital\nwith him. Now they've got problems. But a funny thing happens as his forty-\nfive-day sentence drags on—the crazies start to seem less crazy.\nCompelling, witty, and refreshingly real, Suicide Notes is a darkly\nhumorous novel from award-winning author Michael Thomas Ford that examines\nthat fuzzy line between \"\"normal\"\" and the rest of us.\"\r\n6478,6840,107896,David Nicholls,Starter for Ten,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348794628l/107896.jpg,3.58,11757,\"contemporary, fiction\",\"Entering the university on a scholarship, a young middle-class Englishman\nharbors an ambition to appear on a television quiz show, an endeavor that,\nonce attained, is challenged by his feelings for a posh teammate.\"\r\n6479,6841,1563413,\"Elizabeth Ross, ROFry\",The Three Little Pigs (A Little Golden Book),https://images.gr-assets.com/books/1310278098l/1563413.jpg,4.26,14779,\"classics, fantasy\",\"The Three Little Pigs (A Little Golden Book)Elizabeth Ross, ROFry\"\r\n6480,6842,7184,\"Alexandre Dumas, David Coward, Auguste Maquet\",Vingt ans après,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165607713l/7184.jpg,4.01,14539,\"classics, fiction\",\"Vingt ans aprèsAlexandre Dumas, David Coward, Auguste Maquet\"\r\n6481,6843,25114548,Sandra Brown,Friction,https://images.gr-assets.com/books/1434044640l/25114548.jpg,3.93,9969,\"romance, mystery\",\"From #1 New York Times bestselling author Sandra Brown comes a gripping\nstory of family ties and forbidden attraction. Crawford Hunt wants his\ndaughter back. Following the death of his wife four years ago, Crawford, a\nTexas Ranger, fell into a downward spiral that left him relegated to\ndeskwork and with his five-year-old daughter Georgia in the custody of her\ngrandparents. But Crawford has cleaned up his act, met all the court\nimposed requirements, and now the fate of his family lies with Judge Holly\nSpencer. Holly, ambitious and confident, temporarily occupies the bench of\nher recently deceased mentor. With an election upcoming, she must prove\nherself worthy of making her judgeship permanent. Every decision is high-\nstakes. Despite Crawford's obvious love for his child and his commitment to\nbeing an ideal parent, Holly is wary of his checkered past. Her opinion of\nhim is radically changed when a masked gunman barges into the courtroom\nduring the custody hearing. Crawford reacts instinctually, saving Holly\nfrom a bullet. But his heroism soon takes on the taint of recklessness. The\ncloud over him grows even darker after he uncovers a horrifying truth about\nthe courtroom gunman and realizes that the unknown person behind the\nshooting remains at large . . .and a threat. Catching the real culprit\nbecomes a personal fight for Crawford. But pursuing the killer in his\ncustomary diehard fashion will jeopardize his chances of gaining custody of\nhis daughter, and further compromise Judge Holly Spencer, who needs\nprotection not only from an assassin, but from Crawford himself and the\nforbidden attraction between them. FRICTION will keep you on the edge of\nyour seat with breathtaking plot twists and the unforgettable characters\nthat make Sandra Brown one of the world's best-loved authors. It is an\nextraordinary novel about the powerful ties that bind us to the ones we\nlove and the secrets we keep to protect them.\"\r\n6482,6844,447,Paul Auster,Moon Palace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390616212l/447.jpg,3.99,12170,\"fiction, romance\",\"Marco Stanley Fogg, an orphan of the sixties, travels from Manhattan to\nUtah in search of himself\"\r\n6483,6845,28483,\"Margaret Weis, Tracy Hickman\",The Seventh Gate,https://images.gr-assets.com/books/1327837380l/28483.jpg,4.09,14827,\"fantasy, fiction\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n6484,6846,102459,Mike Mignola,Hellboy: Wake the Devil,https://images.gr-assets.com/books/1486039250l/102459.jpg,4.2,14144,\"comics, horror\",\"Wake the Devil remains the most involved and longest Hellboy series, and is\nthe most disastrous mission in the history of the Bureau for Paranormal\nResearch and Defense.\"\r\n6485,6848,9644151,Mike Mullin,Ashfall,https://images.gr-assets.com/books/1301592315l/9644151.jpg,3.96,18583,\"fiction, romance\",\"Under the bubbling hot springs and geysers of Yellowstone National Park is\na supervolcano. Most people don't know it's there. The caldera is so large\nthat it can only be seen from a plane or satellite. It just could be\noverdue for an eruption, which would change the landscape and climate of\nour planet. For Alex, being left alone for the weekend means having the\nfreedom to play computer games and hang out with his friends without hassle\nfrom his mother. Then the Yellowstone supervolcano erupts, plunging his\nhometown into a nightmare of darkness, ash, and violence. Alex begins a\nharrowing trek to seach for his family and finds help in Darla, a travel\npartner he meets along the way. Together they must find the strength and\nskills to survive and outlast an epic disaster.\"\r\n6486,6850,781498,\"Trinka Hakes Noble, Steven Kellogg\",The Day Jimmy's Boa Ate the Wash,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348478859l/781498.jpg,4.16,16875,\"fiction, fantasy\",Jimmy's boa constrictor wreaks havoc on the class trip to a farm.\r\n6487,6851,13526026,Nelson DeMille,The Panther,https://images.gr-assets.com/books/1338763739l/13526026.jpg,3.93,11695,\"fiction, thriller\",The PantherNelson DeMille\r\n6488,6852,123063,Michel Faber,Under the Skin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171847901l/123063.jpg,3.72,11360,\"fiction, horror\",\"In a surreal portrait of contemporary society run amok, Isserley spends her\nlife picking up hitchhikers, a diverse array of trailer trash, graduate\nstudents, thugs, and philosophers, whose only interest for Isserley is\nwhether they have families and whether they have muscles. A first novel.\nReader's Guide included. Reprint. 20,000 first printing.\"\r\n6489,6853,140524,Dorothy Gilman,The Unexpected Mrs. Pollifax,https://images.gr-assets.com/books/1407611607l/140524.jpg,4.14,15666,\"mystery, suspense\",\"Tired of her club meetings, Mrs. Pollifax decides to become a secret agent\nand is sent to Mexico where she becomes entangled in quite a hot Cold War.\"\r\n6490,6854,17159011,\"Douglas Preston, Lincoln Child\",White Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581563145l/17159011.jpg,4.07,12277,\"mystery, thriller\",\"Past and present collide as Special Agent Pendergast uncovers mysterious\nconnections between a string of 19th century bear attacks in a Colorado\nmining town, a fabled, long-lost Sherlock Holmes story, and a deadly\npresent-day arsonist. In 1876, in a mining camp called Roaring Fork in the\nColorado Rockies, eleven miners were killed by a rogue grizzly bear. Corrie\nSwanson has arranged to examine the miners' remains. When she makes a\nshocking discovery, town leaders try to stop her from exposing their\ncommunity's dark and bloody past. Just as Special Agent Pendergast of the\nFBI arrives to rescue his protege, the town comes under siege by a\nmurderous arsonist who-with brutal precision-begins burning down\nmultimillion-dollar mansions with the families locked inside. Drawn deeper\ninto the investigation, Pendergast discovers a long-lost Sherlock Holmes\nstory that may be the key to solving both the mystery of the long-dead\nminers and the modern-day killings as well. Now, with the ski resort snowed\nin and under savage attack-and Corrie's life suddenly in grave danger-\nPendergast must solve the enigma of the past before the town of the present\ngoes up in flames.\"\r\n6491,6855,1051620,Karen Miller,\"The Innocent Mage (Kingmaker, Kingbreaker, #1)\",https://images.gr-assets.com/books/1327918882l/1051620.jpg,3.65,15419,\"fantasy, fiction\",\"\"\"The Innocent Mage is come, and we stand at the beginning of the end of\neverything.\"\" Being a fisherman like his father isn't a bad life, but it's\nnot the one that Asher wants. Despite his humble roots, Asher has grand\ndreams. And they call him to Dorana, home of princes, beggars?and the\nwarrior mages who have protected the kingdom for generations. Little does\nAsher know, however, that his arrival in the city is being closely watched\nby members of the Circle, people dedicated to preserving an ancient magic.\nAsher might have come to the city to make his fortune, but he will find his\ndestiny.\"\r\n6492,6856,1337448,\"Christiane F., Kai Hermann, Horst Rieck\",Wir Kinder vom Bahnhof Zoo,https://images.gr-assets.com/books/1463309277l/1337448.jpg,4.16,10070,\"biography, classics\",\"Im Alter von zwölf Jahren kommt Christiane F. in einem Jugendheim zum\nHaschisch, kurz darauf in einer Diskothek zum Heroin. Sie wird süchtig,\ngeht vormittags zur Schule und nachmittags mit ihren ebenfalls\nheroinabhängigen Freunden auf den Kinderstrich am Bahnhof Zoo. Die\nBerlinerin Christiane F. erzählt mit minuziösem Erinnerungsvermögen und\nrückhaltloser Offenheit ihre traurige Geschichte. Ein Buch, das in den 70er\nJahren Deutschland erschütterte - und bis heute nichts von seiner\nAktualität eingebüsst hat.\"\r\n6493,6857,32276,Carl Sagan,The Dragons of Eden: Speculations on the Evolution of Human Intelligence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429540203l/32276.jpg,4.16,13310,\"science, nonfiction\",\"The well-known astronomer and astrobiologist surveys current knowledge of\nthe development of intelligence on Earth in various forms of life and\nexplains his persuasion that intelligence must have developed along similar\nlines throughout the universe\"\r\n6494,6858,142079,Sue Grafton,S is for Silence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439457865l/142079._SY475_.jpg,3.9,17879,\"mystery, fiction\",\"Thirty-four years after Violet Sullivan's unexplained disappearance, Daisy\n--the not-quite-seven-year-old daughter she left behind--enlists the\nassistance of private detective Kinsey Millhone to help her find the truth.\"\r\n6495,6859,1303564,Robert Muchamore,Maximum Security (Cherub #3),https://images.gr-assets.com/books/1357225650l/1303564.jpg,4.24,14860,\"fiction, crime\",Maximum Security (Cherub #3)Robert Muchamore\r\n6496,6860,375901,Leo Lionni,Frederick,https://images.gr-assets.com/books/1329956148l/375901.jpg,4.19,16222,\"fiction, classics\",FrederickLeo Lionni\r\n6497,6861,7059135,Maria V. Snyder,Inside Out,https://images.gr-assets.com/books/1335383824l/7059135.jpg,3.82,20472,\"fantasy, romance\",Inside OutMaria V. Snyder\r\n6498,6862,17346698,\"John             Lewis, Andrew Aydin, Nate Powell\",March: Book One,https://images.gr-assets.com/books/1360539808l/17346698.jpg,4.33,19430,\"history, nonfiction\",\"A first-hand account of the author's lifelong struggle for civil and human\nrights spans his youth in rural Alabama, his life-changing meeting with\nMartin Luther King, Jr., and the birth of the Nashville Student Movement.\"\r\n6499,6863,218659,\"Flannery O'Connor, Robert Fitzgerald\",Everything that Rises Must Converge,https://images.gr-assets.com/books/1412859621l/218659.jpg,4.27,14534,\"fiction, classics\",Nine modern short stories that often bristle with caustic humor\r\n6500,6864,1746470,Sherrilyn Kenyon,Dream Chaser,https://images.gr-assets.com/books/1462051552l/1746470.jpg,4.2,23294,\"paranormal, romance\",\"Simone Dubois, a medical examiner with the unique power to read the minds\nof the wrongfully dead, is surprised to find herself helping Dream-Hunter\nXypher, who has one month as a human to redeem himself or face eternal\ndamnation.\"\r\n6501,6865,45234,Hugh Laurie,The Gun Seller,https://images.gr-assets.com/books/1480110444l/45234.jpg,3.69,13247,\"fiction, mystery\",\"A spoof of the spy genre set in Britain features a drifter who orchestrates\na magnificent caper involving the CIA, international terrorists, arms\ndealers, a high-speed chase on skis, and buxom, blonde beauties.\"\r\n6502,6866,8242117,Nora Ephron,I remember nothing and other reflections,https://images.gr-assets.com/books/1320544923l/8242117.jpg,3.73,13875,\"memoir, biography\",\"A humorous collection of personal essays discusses the author's career in\njournalism, divorce, a long-anticipated inheritance with unanticipated\nresults, and the evolution of her relationship with her e-mail in-box.\"\r\n6503,6867,14082,\"R.K. Narayan, Jhumpa Lahiri\",Malgudi Days,https://images.gr-assets.com/books/1455574981l/14082.jpg,4.2,11527,\"fiction, classics\",\"Introducing this collection of stories, R. K. Narayan describes how in\nIndia 'the writer has only to look out of the window to pick up a character\nand thereby a story'. Malgudi Days is the marvellous result. Here Narayan\nportrays an astrologer, a snake-charmer, a postman, a vendor of pies and\nchappatis - all kinds of people, drawn in full colour and endearing\ndomestic detail. And under his magician's touch the whole imaginary city of\nMalgudi springs to life, revealing the essence of India and of human\nexperience.\"\r\n6504,6868,28257707,Mark Manson,The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life,https://images.gr-assets.com/books/1465761302l/28257707.jpg,4.03,41087,\"nonfiction, psychology\",The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good LifeMark Manson\r\n6505,6869,2579284,James Grady,Six Days of the Condor,https://images.gr-assets.com/books/1313011780l/2579284.jpg,4.08,13779,\"thriller, fiction\",Six Days of the CondorJames Grady\r\n6506,6870,698,Anne Tyler,Digging to America,https://images.gr-assets.com/books/1327901292l/698.jpg,3.53,15484,\"fiction, contemporary\",Digging to AmericaAnne Tyler\r\n6507,6871,12360050,\"Oliver Pötzsch, Lee Chadeayne\",\"Die Henkerstochter und der schwarze Mönch (Band 2 aus der Reihe \"\"Die Henkerstochter-Saga\"\")\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442954456l/12360050._SX318_.jpg,3.82,10785,\"mystery, fiction\",\"Die Henkerstochter und der schwarze Mönch (Band 2 aus der Reihe \"\"Die Henkerstochter-Saga\"\")Oliver Pötzsch, Lee Chadeayne\"\r\n6508,6872,7145565,Jussi Adler-Olsen,Flaskepost fra P,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1258242269l/7145565.jpg,4.04,9658,\"crime, thriller\",\"Krimi. En femten år gammel flaskepost med et fortvivlet råb om hjælp lander\nhos Afdeling Q, og snart er Carl Mørck dybt begravet i en syg sag om en\npsykopatisk morder, religiøs fanatisme og værgeløse børn.\"\r\n6509,6873,7979,Brian Jacques,The Bellmaker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921177l/7979.jpg,3.95,17476,\"fantasy, fiction\",\"Worried about his daughter Mariel, Joseph the Bellmaker is led by a dream\nfrom Redwall Abbey to Southsward, where he becomes caught up in the battle\nbetween Squirrelking Gael and the vicious Foxwolf Nagru. Reprint. AB.\"\r\n6510,6876,105986,P.G. Wodehouse,The Code Of The Woosters,https://images.gr-assets.com/books/1299729089l/105986.jpg,4.36,8979,\"fiction, classics\",\"“To dive into a Wodehouse novel is to swim in some of the most elegantly\nturned phrases in the English language.”—Ben Schott Follow the adventures\nof Bertie Wooster and his gentleman’s gentleman, Jeeves, in this stunning\nnew edition of one of the greatest comic novels in the English language.\nWhen Aunt Dahlia demands that Bertie Wooster help her dupe an antique\ndealer into selling her an 18th-century cow-creamer. Dahlia trumps Bertie's\nobjections by threatening to sever his standing invitation to her house for\nlunch, an unthinkable prospect given Bertie's devotion to the cooking of\nher chef, Anatole. A web of complications grows as Bertie's pal Gussie\nFink-Nottle asks for counseling in the matter of his impending marriage to\nMadeline Bassett. It seems Madeline isn't his only interest; Gussie also\nwants to study the effects of a full moon on the love life of newts. Added\nto the cast of eccentrics are Roderick Spode, leader of a fascist\norganization called the Saviors of Britain, who also wants that cow-\ncreamer, and an unusual man of the cloth known as Rev. H. P. \"\"Stinker\"\"\nPinker. As usual, butler Jeeves becomes a focal point for all the plots and\nploys of these characters, and in the end only his cleverness can rescue\nBertie from being arrested, lynched, and engaged by mistake!\"\r\n6511,6877,5849,V.S. Naipaul,A House for Mr. Biswas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564755127l/5849.jpg,3.82,13073,\"fiction, contemporary\",\"Owning a small portion of the Trinidad earth and a respectable house of his\nown is the dream and the reality sustaining Mohun Biswas through a life of\nfrustration and despair after he marries into the domineering Tulsi family.\nReprint. 15,000 first printing.\"\r\n6512,6878,13708346,Patricia Cornwell,The Bone Bed,https://images.gr-assets.com/books/1338860340l/13708346.jpg,3.64,13557,\"mystery, fiction\",\"Receiving a grisly communication in the wake of an eminent Canadian\npaleontologist's disappearance, Kay Scarpetta investigates the discovery of\na body in Boston Harbor and clues about other unsolved cases, a situation\nthat makes Scarpetta wonder who she can trust.\"\r\n6513,6879,8649656,Stephen Fry,The Fry Chronicles: An Autobiography,https://images.gr-assets.com/books/1376317909l/8649656.jpg,3.87,14037,\"biography, memoir\",The Fry Chronicles: An AutobiographyStephen Fry\r\n6514,6880,448836,\"John Locke, C.B. Macpherson\",Second Treatise of Government,https://images.gr-assets.com/books/1405624453l/448836.jpg,3.75,14549,\"philosophy, classics\",\"The central principles of what today is broadly known as political\nliberalism were made current in large part by Locke's \"\"Second Treatise of\nGovernment\"\" (1690). The principles of individual liberty, the rule of law,\ngovernment by consent of the people, and the right to private property are\ntaken for granted as fundamental to the human condition now. Most liberal\ntheorists writing today look back to Locke as the source of their ideas.\nSome maintain that religious fundamentalism, \"\"post-modernism,\"\" and\nsocialism are today the only remaining ideological threats to liberalism.\nTo the extent that this is true, these ideologies are ultimately attacks on\nthe ideas that Locke, arguably more than any other, helped to make the\nuniversal vocabulary of political discourse.\"\r\n6515,6881,17228280,Elizabeth Eulberg,Better Off Friends,https://images.gr-assets.com/books/1386372561l/17228280.jpg,3.95,15692,\"contemporary, romance\",\"Can guys and girls ever really be just friends? Find out in Elizabeth\nEulberg's romantic comedy, now in paperback! For Macallan and Levi, it was\nfriends at first sight. Everyone says guys and girls can't be just friends,\nbut these two are. They hang out after school, share tons of inside jokes,\ntheir families are super close, and Levi even starts dating one of Mac's\nfriends. They are platonic and happy that way. Eventually they realize\nthey're best friends -- which wouldn't be so bad if they didn't keep\ngetting in each other's way. Guys won't ask Mac out because they think\nshe's with Levi, and Levi spends too much time joking around with Mac, and\nmaybe not enough time with his date. They can't help but wonder . . . are\nthey more than friends or are they better off without making it even more\ncomplicated? From romantic comedy superstar Elizabeth Eulberg comes a\nfresh, fun examination of a question for the ages: Can guys and girls ever\nreally be just friends? Or are they always one fight away from not speaking\nagain -- and one kiss away from true love?\"\r\n6516,6882,6966823,Nicholas Carr,The Shallows: What the Internet is Doing to Our Brains,https://images.gr-assets.com/books/1368393880l/6966823.jpg,3.85,6938,\"nonfiction, psychology\",The Shallows: What the Internet is Doing to Our BrainsNicholas Carr\r\n6517,6883,11488123,Natasha Solomons,The House at Tyneford,https://images.gr-assets.com/books/1377631578l/11488123.jpg,3.78,14092,\"fiction, romance\",The House at TynefordNatasha Solomons\r\n6518,6884,42547,\"Martin Luther King Jr., Clayborne Carson\",\"The Autobiography of Martin Luther King, Jr.\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926572l/42547.jpg,4.31,11261,\"biography, history\",\"With knowledge, spirit, good humor, and passion, THE AUTOBIOGRAPHY OF\nMARTIN LUTHER KING, JR. brings to life a remarkable man whose thoughts and\nactions speak to our most burning contemporary issues and still inspire the\ndesires, hopes, and dreams of us all. Written in his own words, this\nhistory-making autobiography is Martin Luther King: the mild-mannered,\ninquisitive child and student who chafed under and eventually rebelled\nagainst segregation; the dedicated young minister who continually\nquestioned the depths of his faith and the limits of his wisdom; the loving\nhusband and father who sought to balance his family's needs with those of a\ngrowing, nationwide movement; and the reflective, world-famous leader who\nwas fired by a vision of equality for people everywhere. Relevant and\ninsightful, THE AUTOBIOGRAPHY OF MARTIN LUTHER KING, JR. offers King's\nseldom disclosed views on some of the world's greatest and most\ncontroversial figures: John F. Kennedy, Malcolm X, Lyndon B. Johnson,\nMahatma Gandhi, and Richard Nixon. It also paints a rich and moving\nportrait of a people, a time, and a nation in the face of powerful change.\nFinally, it shows how everyday Americans from all walks of life confronted\nthemselves, each other, and the burden of the past-and how their fears and\ncourage helped shape our future.\"\r\n6519,6885,522534,\"Mineko Iwasaki, Rande Brown\",Geisha: A Life,https://images.gr-assets.com/books/1359402937l/522534.jpg,3.92,12995,\"biography, nonfiction\",\"A Kyoto geisha describes her initiation into an okiya at the age of four,\nthe intricate training that made up most of her education, her successful\ncareer, and the traditions surrounding the geisha culture. Reprint.\"\r\n6520,6886,666758,A.W. Tozer,The Knowledge of the Holy: The Attributes of God: Their Meaning in the Christian Life,https://images.gr-assets.com/books/1411484750l/666758.jpg,4.37,13800,\"christian, religion\",\"\"\"Teach us, O God, that nothing is necessary to Thee. Were anything\nnecessary to Thee that thing would be the measure of Thine imperfection:\nand how could we worship one who is imperfect?\"\" The Knowledge of the Holy\nis a classic devotional that has moved the hearts of Christians for over a\ncentury! Each chapter focuses on one attribute of God-from God's\ninfinitude, immutability, grace, goodness... this book is perhaps one of\nthe most theologically rich AND approachable devotionals in the world!\"\r\n6521,6887,104160,\"Sergei Lukyanenko, Andrew Bromfield\",Дневной дозор,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410577807l/104160.jpg,4.05,13812,\"fantasy, fiction\",\"Дневной дозорSergei Lukyanenko, Andrew Bromfield\"\r\n6522,6888,136640,Douglas Preston,The Codex,https://images.gr-assets.com/books/1316729332l/136640.jpg,3.88,15047,\"thriller, fiction\",\"The mysterious disappearance of treasure hunter and adventurer Maxwell\nBroadbent--along with that of his riches--sends his three sons on a search\nfor their father, who has hidden himself and his treasures, in order to\nclaim their inheritance, which also includes an ancient Mayan codex\ncontaining revolutionary pharmacological secrets that someone will do\nanything to find. Reprint.\"\r\n6523,6889,2137,Michael Cunningham,A Home at the End of the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442779849l/2137.jpg,3.89,13228,\"fiction, romance\",Winter 1999\r\n6524,6890,15752115,\"Scott Snyder, Greg Capullo, Jonathan Glapion, James Tynion IV, Rafael Albuquerque, Jason Fabok, Becky Cloonan, Andy Clarke, Sandu Florea\",\"Batman, Volume 2: The City of Owls\",https://images.gr-assets.com/books/1342309403l/15752115.jpg,4.26,13864,\"comics, fiction\",\"Batman, Volume 2: The City of OwlsScott Snyder, Greg Capullo, Jonathan Glapion, James Tynion IV, Rafael Albuquerque, Jason Fabok, Becky Cloonan, Andy Clarke, Sandu Florea\"\r\n6525,6891,28759,Mercedes Lackey,Magic's Pawn,https://images.gr-assets.com/books/1345854036l/28759.jpg,4.21,19865,\"fantasy, fiction\",\"In Magic's Pawn, an ancient age in the history of Valdemar comes to life--\nan age when the kingdom was ravaged by the ungoverned fury of bandit\nwarlords, ferocious ice dragons, and the wild magic of wizards. A new\naddition to Lackey's Valdemar kingdom--and her most powerful series to\ndate!\"\r\n6526,6892,28747,George Saunders,CivilWarLand in Bad Decline,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553962495l/28747.jpg,4.22,10525,\"fiction, contemporary\",\"Offering a witty portrait of America in the near future, this collection of\nsix short stories and a novella--including \"\"Bounty\"\" and \"\"Offloading for\nMrs. Schwartz\"\"--takes a pointed look at such topics as corporate hypocrisy,\nmarital discord, and virtual reality. A first collection. 15,000 first\nprinting.\"\r\n6527,6893,9739365,\"Howard E. Wasdin, Stephen Templin\",SEAL Team Six: Memoirs of an Elite Navy SEAL Sniper,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442949773l/9739365._SX318_.jpg,4,10582,\"biography, history\",\"SEAL Team Six: Memoirs of an Elite Navy SEAL SniperHoward E. Wasdin, Stephen Templin\"\r\n6528,6894,190115,Caroline Myss,Sacred Contracts: Awakening Your Divine Potential,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181731l/190115.jpg,3.97,12218,\"spirituality, psychology\",\"Introduces a program for self-discovery and divine connection that helps\nreaders determine their higher purpose in life, a process that promotes\nemotional well-being, healthier relationships, and spiritual rebirth.\"\r\n6529,6895,4955,Dave Eggers,How We Are Hungry,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348367656l/4955.jpg,3.75,11282,\"fiction, contemporary\",How We Are HungryDave Eggers\r\n6530,6896,30292,\"Plato, G.M.A. Grube, John M. Cooper\",\"Euthyphro, Apology, Crito, Meno, Phaedo\",https://images.gr-assets.com/books/1399079227l/30292.jpg,4.1,13301,\"philosophy, classics\",\"Presents translations of five dialogues from Plato, as well as additional\nnotes on history and mythology.\"\r\n6531,6897,26224667,Jana Aston,Wrong,https://images.gr-assets.com/books/1443007627l/26224667.jpg,3.94,14596,\"romance, contemporary\",\"I have a history of picking the wrong guy. Gay? Player? Momma's boy? Check,\ncheck and check. Now I can't stop fantasizing about one of the customers at\nthe coffee shop I work at between classes. It's just a harmless crush,\nright? It's not like I ever see this guy outside of the coffee shop. It's\nnot like I'm going to see him while attempting to get birth control at the\nstudent clinic. While wearing a paper gown. While sitting on an exam table.\nBecause he's the doctor. Shoot. Me. But what if, for once, the man I've had\nthe dirtiest, most scandalous fantasies about turned out to be everything\nbut wrong?\"\r\n6532,6898,79121,Oscar Wilde,The Happy Prince and The House of Pomegranates,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700803l/79121.jpg,4.22,17522,\"classics, fiction\",The Happy Prince and The House of PomegranatesOscar Wilde\r\n6533,6899,18982011,J.D. Horn,The Line,https://images.gr-assets.com/books/1385507733l/18982011.jpg,3.78,7834,\"fantasy, paranormal\",\"To the uninitiated, Savannah shows only her bright face and genteel manner.\nThose who know her well, though, can see beyond her colonial trappings and\nsmall-city charm to a world where witchcraft is respected, Hoodoo is\nfeared, and spirits linger. Mercy Taylor is all too familiar with the\nsupernatural side of Savannah, being a member of the most powerful family\nof witches in the South. Despite being powerless herself, of course. Having\ngrown up without magic of her own, in the shadow of her talented and\ncharismatic twin sister, Mercy has always thought herself content. But when\na series of mishaps--culminating in the death of the Taylor matriarch--\nleaves a vacuum in the mystical underpinnings of Savannah, she finds\nherself thrust into a mystery that could shake her family apart...and\nunleash a darkness the line of Taylor witches has been keeping at bay for\ngenerations.\"\r\n6534,6900,29519517,Erin Watt,Twisted Palace,https://images.gr-assets.com/books/1474992523l/29519517.jpg,4,16342,\"romance, contemporary\",\"The hotly anticipated conclusion to the Royals series begun with the #1 New\nYork Times bestselling novels Paper Princess and Broken Prince. “This\ngeneration’s Cruel Intentions.” —Jennifer L. Armentrout, #1 New York Times\nBestselling Author \"\"Twisted Palace was an awesome conclusion to the Royals\ntrilogy. Readers are in for an absolute treat. I eagerly await the next\nbook from Erin Watt.\"\" —Samantha Towle, New York Times Bestselling Author\n\"\"From rags to riches to revenge, the Royals will take you on a seductive,\nthrilling ride that will leave you panting for more. Twisted Palace is the\nperfect conclusion to this intensely epic tale of love, lies and allure.\"\"\n—S.L. Jennings, New York Times Bestselling Author of Taint and Born Sinner\n\"\"Erin Watt's words are addictive brilliance. If you haven't let these\nRoyals ruin you yet, what are you waiting for?\"\" —Meghan March, USA Today\nBestselling Author These Royals will ruin you... From mortal enemies to\nunexpected allies, two teenagers try to protect everything that matters\nmost. Ella Harper has met every challenge that life has thrown her way.\nShe’s tough, resilient, and willing to do whatever it takes to defend the\npeople she loves, but the challenge of a long-lost father and a boyfriend\nwhose life is on the line might be too much for even Ella to overcome. Reed\nRoyal has a quick temper and even faster fists. But his tendency to meet\nevery obstacle with violence has finally caught up with him. If he wants to\nsave himself and the girl he loves, he’ll need to rise above his tortured\npast and tarnished reputation. No one believes Ella can survive the Royals.\nEveryone is sure Reed will destroy them all. They may be right. With\neverything and everyone conspiring to keep them apart, Ella and Reed must\nfind a way to beat the law, save their families, and unravel all the\nsecrets in their Twisted Palace.\"\r\n6535,6901,2493973,Jeanne DuPrau,The Diamond of Darkhold,https://images.gr-assets.com/books/1320636372l/2493973.jpg,3.79,18425,\"fantasy, fiction\",\"When a roamer trades them an ancient book with only a few pages remaining,\nLina and Doon return to Ember to seek the machine the book seems to\ndescribe in hopes that it will get their new community, Sparks, through the\nwinter.\"\r\n6536,6902,596259,Gordon B. Hinckley,Standing for Something: 10 Neglected Virtues That Will Heal Our Hearts and Homes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192142l/596259.jpg,4.61,12708,\"religion, nonfiction\",\"Focusing on recovering the virtues that once bound people together, the\npresident of The Church of Jesus Christ of Latter-Day Saints shares his\nblueprint for healing the nation, beginning within the family and the human\nsoul. Reprint. 200,000 first printing.\"\r\n6537,6903,93802,Daniel Silva,A Death In Vienna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389823717l/93802.jpg,4.17,12761,\"thriller, fiction\",\"Sent to Vienna to authenticate a painting, art restorer and occasional spy\nGabriel Allon sets out to uncover the truth about a photograph of an\nunnamed man who had brutalized his mother during the final days of World\nWar II, during the Death March from Auschwitz, a quest that could unravel\nan evil with profound repercussions in the present. 175,000 first printing.\"\r\n6538,6906,9439989,Jennifer Estep,Touch of Frost,https://images.gr-assets.com/books/1301505419l/9439989.jpg,3.96,23343,\"fantasy, paranormal\",\"When Jasmine Ashton is murdered in the Library of Antiquities, Gwen Frost\nis determined to find out who killed the girl after she realizes she should\nhave been the one that died.\"\r\n6539,6907,10169662,Chevy Stevens,Never Knowing,https://images.gr-assets.com/books/1294615110l/10169662.jpg,3.85,16178,\"mystery, thriller\",Never KnowingChevy Stevens\r\n6540,6908,31268,Robert Ludlum,The Aquitaine Progression,https://images.gr-assets.com/books/1408931400l/31268.jpg,3.9,14100,\"thriller, fiction\",\"A conspiracy called Aquitaine acts to realize a hegemony over the Free\nWorld, and ex-North Vietnamese prisoner Converse faces death as he tries to\nexpose it.\"\r\n6541,6909,103159,John Galsworthy,The Forsyte Saga,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286090l/103159.jpg,4.15,14218,\"classics, fiction\",\"The three novels which make up The Forsyte Saga chronicle the ebbing social\npower of the commerical upper-middle class Forsyte family between 1886 and\n1920. This, the only critical edition of Galsworthy's popular masterpiece,\ncontains detailed notes which are vital to the saga, explaining\nparticularly the contemporary artistic and literary allusions, and slang of\nthe time.\"\r\n6542,6910,262228,Sue Grafton,\"\"\"O\"\" is for Outlaw\",https://images.gr-assets.com/books/1403183790l/262228.jpg,3.92,18715,\"mystery, fiction\",\"“Grafton keeps pulling out surprises- and pulling us in.” —Entertainment\nWeekly on \"\"O\"\" is for Outlaw Through fourteen books, fans have been fed\nshort rations when it comes to Kinsey Millhone's past: a morsel here, a\ndollop there. We know of the aunt who raised her, the second husband who\nleft her, the long-lost family up the California coast. But husband number\none remained a blip on the screen until now. The call comes on a Monday\nmorning from a guy who scavenges defaulted storage units at auction. Last\nweek he bought a stack. They had stuff in them--Kinsey stuff. For thirty\nbucks, he'll sell her the lot. Kinsey's never been one for personal\npossessions, but curiosity wins out and she hands over a twenty (she may be\ncurious but she loves a bargain). What she finds amid childhood memorabilia\nis an old undelivered letter. It will force her to reexamine her beliefs\nabout the breakup of that first marriage, about the honor of that first\nhusband, about an old unsolved murder. It will put her life in the gravest\nperil.\"\"O\"\" Is for Outlaw: Kinsey's fifteenth adventure into the dark side of\nhuman nature. \"\"A\"\" Is for Alibi \"\"B\"\" Is for Burglar \"\"C\"\" Is for Corpse \"\"D\"\" Is\nfor Deadbeat \"\"E\"\" Is for Evidence \"\"F\"\" Is for Fugitive \"\"G\"\" Is for Gumshoe \"\"H\"\"\nIs for Homicide \"\"I\"\" Is for Innocent \"\"J\"\" Is for Judgment \"\"K\"\" Is for Killer\n\"\"L\"\" is for Lawless \"\"M\"\" Is for Malice \"\"N\"\" Is for Noose \"\"O\"\" Is for Outlaw \"\"P\"\"\nIs for Peril \"\"Q\"\" Is for Quarry \"\"R\"\" Is for Ricochet \"\"S\"\" Is for Silence \"\"T\"\"\nIs for Trespass \"\"U\"\" Is for Undertow \"\"V\"\" Is for Vengeance \"\"W\"\" Is for Wasted\n\"\"X\"\"\"\r\n6543,6911,2820533,Laurie Faria Stolarz,\"Deadly Little Secret (Touch, #1)\",https://images.gr-assets.com/books/1325558484l/2820533.jpg,3.86,20156,\"paranormal, mystery\",\"When someone starts stalking high school junior Camelia, everyone at school\nassumes that it is Ben, who is new at school and rumored to have killed his\nprevious girlfriend, but Camelia is inexplicably drawn to him nevertheless.\"\r\n6544,6912,18282915,\"Janet Evanovich, Lee Goldberg\",The Chase,https://images.gr-assets.com/books/1381528974l/18282915.jpg,3.93,14059,\"mystery, fiction\",\"A latest collaboration by the best-selling author of the Stephanie Plum\nseries and the best-selling author of the Monk series finds FBI agent Kate\nO'Hare once again forced to covertly team up with brilliant con man\nNicholas Fox to take down a big-league criminal.\"\r\n6545,6913,25403,\"Jostein Gaarder, James Anderson\",Appelsinpiken,https://images.gr-assets.com/books/1415583796l/25403.jpg,3.91,10355,\"fiction, philosophy\",\"After his grandmother gives him a letter written by his father before his\ndeath and hidden away for years, fifteen-year-old Georg Roed attempts to\ndiscover the identity of the mysterious Orange Girl who had captivated his\nfather.\"\r\n6546,6914,228220,\"Leigh Nichols, Dean Koontz\",The House of Thunder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389299860l/228220.jpg,3.78,14618,\"suspense, horror\",\"Susan Thorton gradually recovers from amnesia caused by an automobile\naccident and sees in the hospital her lover's murderers, who are supposedly\ndead\"\r\n6547,6915,71864,John Marsden,The Dead of the Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214810l/71864.jpg,4.13,15240,\"fiction, thriller\",The Dead of the NightJohn Marsden\r\n6548,6916,18869970,Daphne du Maurier,My Cousin Rachel,https://images.gr-assets.com/books/1386609405l/18869970.jpg,3.92,9557,\"classics, mystery\",My Cousin RachelDaphne du Maurier\r\n6549,6917,70509,Gary Shteyngart,Absurdistan,https://images.gr-assets.com/books/1486266465l/70509.jpg,3.29,10712,\"fiction, contemporary\",\"Hoping to get out of Russia and return to his adopted home in the U.S.,\nMisha Vainberg, the obese son of a wealthy Russian, makes his way to\nAbsurdsvani, a small unstable country on the brink of civil war, where he\nbecomes embroiled in the ridiculous conflict, risks his life, and falls in\nlove, all the while plotting to somehow get to America. Reprint. 50,000\nfirst printing.\"\r\n6550,6918,8677937,Sherrilyn Kenyon,Invincible (Chronicles of Nick #2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442858923l/8677937._SY475_.jpg,4.27,19887,\"paranormal, fantasy\",Invincible (Chronicles of Nick #2)Sherrilyn Kenyon\r\n6551,6919,55354,George Carlin,Napalm & Silly Putty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438051222l/55354._SX318_.jpg,4.12,12798,\"nonfiction, fiction\",\"A comedic look at life's annoying universal truths discusses how a spy\nsatellite can be a \"\"spy\"\" if they announce it on TV, why most people with\nlow self-esteem have earned it, and \"\"The Ten Most Annoying Songs of All\nTime.\"\"\"\r\n6552,6920,24815,Bill Watterson,The Indispensable Calvin and Hobbes: A Calvin and Hobbes Treasury,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347311516l/24815.jpg,4.73,14597,\"comics, fiction\",\"Features the hyperimaginative six-year-old and his guardian tiger in their\nmost memorable adventures from \"\"Revenge of the Baby-Sat\"\" and \"\"Scientific\nProgress Goes Boink\"\"\"\r\n6553,6921,46349,Firoozeh Dumas,Funny in Farsi: A Memoir of Growing Up Iranian in America,https://images.gr-assets.com/books/1411923160l/46349.jpg,3.76,10008,\"memoir, nonfiction\",\"An autobiography of growing up as an Iranian-American describes the\nauthor's family's 1971 move from Iran to Southern California, the members\nof her diverse family, and their struggle with culture shock.\"\r\n6554,6923,213975,\"J.D. Robb, Susan Ericksen\",Witness in Death,https://images.gr-assets.com/books/1368396677l/213975.jpg,4.3,19178,\"mystery, romance\",\"Witness in DeathJ.D. Robb, Susan Ericksen\"\r\n6555,6924,60211,Gene Wolfe,The Shadow of the Torturer,https://images.gr-assets.com/books/1329650008l/60211.jpg,3.8,15507,\"fantasy, fiction\",The Shadow of the TorturerGene Wolfe\r\n6556,6925,13069935,A.S. King,Ask the Passengers,https://images.gr-assets.com/books/1371850438l/13069935.jpg,3.88,17896,\"contemporary, fiction\",Ask the PassengersA.S. King\r\n6557,6926,20499240,Ben Aaronovitch,Foxglove Summer,https://images.gr-assets.com/books/1402338677l/20499240.jpg,4.18,12167,\"fantasy, mystery\",\"Cop, Londoner and magical apprentice Peter Grant is the only one willing to\nadmit that there may be a supernatural element involved in the\ndisappearance of children in the small village of Herefordshire as he tries\nto find the truth. By the author of Broken Homes. Original. 25,000 first\nprinting.\"\r\n6558,6927,261689,Georgette Heyer,The Grand Sophy,https://images.gr-assets.com/books/1414731822l/261689.jpg,4.16,16282,\"romance, fiction\",\"Sophy sets everything right for her desperate family in one of Georgette\nHeyer's most popular Regency romances.\"\r\n6559,6928,299215,Friedrich A. Hayek,The Road to Serfdom,https://images.gr-assets.com/books/1327787673l/299215.jpg,4.18,11306,\"history, philosophy\",\"\"\"Over Two Million Copies Sold\"\" The Road to Serfdom By Friedrich A. Hayek\nCondensed Edition The Road to Serfdom is a book written by the Austrian-\nborn economist and philosopher Friedrich von Hayek (1899-1992) between\n1940-1943, in which he \"\"[warns] of the danger of tyranny that inevitably\nresults from government control of economic decision-making through central\nplanning.\"\" He further argues that the abandonment of individualism and\nclassical liberalism inevitably leads to a loss of freedom, the creation of\nan oppressive society, the tyranny of a dictator, and the serfdom of the\nindividual. Significantly, Hayek challenged the general view among British\nacademics that fascism (and National Socialism) was a capitalist reaction\nagainst socialism. He argued that fascism, National Socialism and socialism\nhad common roots in central economic planning and empowering the state over\nthe individual. Since its publication in 1944, The Road to Serfdom has been\nan influential and popular exposition of market libertarianism. It has sold\nover two million copies. The Road to Serfdom was to be the popular edition\nof the second volume of Hayek's treatise entitled \"\"The Abuse and Decline of\nReason,\"\" and the title was inspired by the writings of the 19th century\nFrench classical liberal thinker Alexis de Tocqueville on the \"\"road to\nservitude.\"\" The book was first published in Britain by Routledge in March\n1944, during World War II, and was quite popular, leading Hayek to call it\n\"\"that unobtainable book,\"\" also due in part to wartime paper rationing. It\nwas published in the United States by the University of Chicago Press in\nSeptember 1944 and achieved great popularity. At the arrangement of editor\nMax Eastman, the American magazine Reader's Digest published an abridged\nversion in April 1945, enabling The Road to Serfdom to reach a wider\npopular audience beyond academics. The Road to Serfdom has had a\nsignificant impact on twentieth-century conservative and libertarian\neconomic and political discourse, and is often cited today by commentators.\"\r\n6560,6929,18800655,Marko Kloos,Terms of Enlistment,https://images.gr-assets.com/books/1391472650l/18800655.jpg,3.96,12890,\"fiction, ebooks\",\"The year is 2108, and the North American Commonwealth is bursting at the\nseams. For welfare rats like Andrew Grayson, there are only two ways out of\nthe crime-ridden and filthy welfare tenements: You can hope to win the\nlottery and draw a ticket on a colony ship settling off-world, or you can\njoin the service. Andrew chooses to enlist in the armed forces. But as he\nstarts a career of supposed privilege, he soon learns that good food and\ndecent health care come at a steep price.\"\r\n6561,6930,18076876,Joanna Wylde,Reaper's Legacy,https://images.gr-assets.com/books/1373565326l/18076876.jpg,4.27,28046,\"romance, contemporary\",\"When he discovers his brother's ex-girlfriend Sophie and his nephew Noah\nare living in near poverty, tattooed biker Ruger steps in to help them and\ngets more than he bargained for when Sophie shows him just how much she\nwants him in her life--and in her bed. Original. 75,000 first printing.\"\r\n6562,6931,41502,Diana Gabaldon,Lord John and the Brotherhood of the Blade ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421850685l/41502.jpg,3.86,14952,\"fiction, mystery\",Lord John and the Brotherhood of the Blade Diana Gabaldon\r\n6563,6932,12468,Norman Mailer,The Executioner's Song,https://images.gr-assets.com/books/1325755176l/12468.jpg,4.07,13829,\"fiction, nonfiction\",The Executioner's SongNorman Mailer\r\n6564,6933,15755201,Robert Crais,Suspect,https://images.gr-assets.com/books/1345131356l/15755201.jpg,4.14,14501,\"mystery, fiction\",SuspectRobert Crais\r\n6565,6934,11359,Toni Morrison,Tar Baby,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924530l/11359.jpg,3.91,13951,\"fiction, classics\",\"The arrival of an ominous black stranger disturbs the precisely\nchoreographed interactions among the five people living in a beautiful\nhouse on a Caribbean island--a millionaire candy manufacturer, his wife,\nand their servants--in a novel that explores the spectrum of emotions\nunderlying the relationships between the races. Reader's Guide available.\nReprint. 10,000 first printing.\"\r\n6566,6935,837501,William Pène du Bois,The Twenty-One Balloons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347453445l/837501.jpg,3.96,17385,\"fiction, fantasy\",\"Relates the incredible adventures of Professor William Waterman Sherman who\nin 1883 sets off in a balloon across the Pacific, survives the volcanic\neruption of Krakatoa, and is eventually picked up in the Atlantic. Reissue.\"\r\n6567,6936,13093001,John Sandford,Stolen Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391798162l/13093001.jpg,4.17,13426,\"mystery, fiction\",Stolen PreyJohn Sandford\r\n6568,6937,840,Donald A. Norman,The Psychology of Everyday Things,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442460745l/840._SY475_.jpg,4.18,11838,\"nonfiction, business\",The Psychology of Everyday ThingsDonald A. Norman\r\n6569,6938,227658,Margaret Peterson Haddix,Running Out of Time,https://images.gr-assets.com/books/1408913584l/227658.jpg,3.98,19126,\"fiction, mystery\",\"Run For Your Life Jessie lives with her family in the frontier village of\nClifton, Indiana, in 1840 -- or so she believes. When diphtheria strikes\nthe village and the children of Clifton start dying, Jessie's mother\nreveals a shocking secret -- it's actually 1996, and they are living in a\nreconstructed village that serves as a tourist site. In the world outside,\nmedicine exists that can cure the dread disease, and Jessie's mother is\nsending her on a dangerous mission to bring back help. But beyond the walls\nof Clifton, Jessie discovers a world even more alien and threatening than\nshe could have imagined, and soon she finds her own life in jeopardy. Can\nshe get help before the children of Clifton, and Jessie herself, run out of\ntime?\"\r\n6570,6941,129616,Judith McNaught,Something Wonderful,https://images.gr-assets.com/books/1435634530l/129616.jpg,4.33,20049,\"romance, fiction\",\"Alexandra Lawrence, an innocent country girl, finds her marriage to\npowerful Jordan Townsende, Duke of Hawthorne, threatened by a complex web\nof jealousy, passion, revenge, and pride amid the glittering lights of\nLondon society. Reissue.\"\r\n6571,6942,2003767,Nora Roberts,Tribute,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437070351l/2003767._SY475_.jpg,3.92,18811,\"romance, fiction\",\"Working to restore a family farmhouse, Cilla McGowan remembers her\ngrandmother's fatal overdose years earlier before meeting a handsome\nneighbor and discovering a cache of letters that suggests her grandmother\nhad been pregnant at the time of her death. Reprint.\"\r\n6572,6943,46012,Debbie Macomber,16 Lighthouse Road,https://images.gr-assets.com/books/1388881732l/46012.jpg,4.08,9938,\"romance, fiction\",\"The protagonist, Olivia Lockhart, is a woman judge, who denies a divorce in\ncourt, and in her small town of Cedar Cove, makes big news because of the\nruling.\"\r\n6573,6944,86172,Tom Wolfe,A Man in Full,https://images.gr-assets.com/books/1320472513l/86172.jpg,3.8,12540,\"fiction, contemporary\",\"Charles Croker, a middle-aged, egotistical former college football star\nturned tycoon, finds his life turned upside down and the delicate racial\nbalance of Atlanta threatened, when star running back Fareek Fanon, a\nproduct of the city's slums, is accused of raping an Atlanta aristocrat's\ndaughter. Reprint.\"\r\n6574,6945,42631,Joanna Weaver,Having a Mary Heart in a Martha World: Finding Intimacy With God in the Busyness of Life,https://images.gr-assets.com/books/1341472478l/42631.jpg,4.16,12501,\"christian, nonfiction\",\"A guide for women who struggle between a longing for a deeper spiritual\nlife and the demands of their daily responsibilities offers practical\nadvice on how to balance work and worship, offers guilt-reducing\nreassurance, and explains how readers can experience less stress and\ngreater joy while strengthening their service. Reissue.\"\r\n6575,6946,7636774,Laura Lippman,I'd Know You Anywhere,https://images.gr-assets.com/books/1277582483l/7636774.jpg,3.47,15337,\"mystery, fiction\",I'd Know You AnywhereLaura Lippman\r\n6576,6947,18166936,Leslye Walton,The Strange and Beautiful Sorrows of Ava Lavender,https://images.gr-assets.com/books/1397110326l/18166936.jpg,4.12,18562,\"fantasy, fiction\",The Strange and Beautiful Sorrows of Ava LavenderLeslye Walton\r\n6577,6948,17349163,Joanna Trollope,Sense & Sensibility,https://images.gr-assets.com/books/1363291870l/17349163.jpg,3.55,11346,\"fiction, romance\",Sense & SensibilityJoanna Trollope\r\n6578,6951,264778,Anna Lee Waldo,Sacajawea,https://images.gr-assets.com/books/1315509057l/264778.jpg,4.23,13504,\"fiction, history\",\"Clad in a doeskin, alone and unafraid, she stood straight and proud before\nthe onrushing forces of America's destiny: Sacajawea, child of a Shoshoni\nchief, lone woman on Lewis and Clark's historic trek -- beautiful spear of\na dying nation. She knew many men, walked many miles. From the whispering\nprairies, across the Great Divide to the crystal capped Rockies and on to\nthe emerald promise of the Pacific Northwest, her story over flows with\nemotion and action ripped from the bursting fabric of a raw new land. Ten\nyears in the writing, SACAJAWEA unfolds an immense canvas of people and\nevents, and captures the eternal longings of a woman who always yearned for\none great passion -- and always it lay beyond the next mountain.\"\r\n6579,6952,1722717,Gemma Malley,The Declaration,https://images.gr-assets.com/books/1317067021l/1722717.jpg,3.71,16224,\"fiction, romance\",\"It's the year 2140 and Anna shouldn't be alive. Nor should any of the\nchildren she lives with at Grange Hall. The facility is full of kids like\nher, kids whose parents chose to recklessly abuse Mother Nature and have\nchildren despite a law forbidding them from doing so as long as they took\nlongevity drugs. To pay back her parents' debt to Mother Nature, Anna will\nhave to work for the rest of her life. But then Peter appears at the hall,\nand he tells a very different story about the world outside of the Grange.\nPeter begs Anna to escape Grange Hall, and to claim a life for herself\noutside its bleak walls. But even if they get out, they still have to make\ntheir way to London, to Anna's parents, and to an underground movement\nthat's determined to bring back children and rid the world of longevity\ndrugs.\"\r\n6580,6953,18687079,\"Gene Luen Yang, Michael Dante DiMartino, Bryan Konietzko, Gurihiru\",\"Avatar: The Last Airbender: The Rift, Part 1\",https://images.gr-assets.com/books/1382378982l/18687079.jpg,4.33,10560,\"comics, fantasy\",\"When Avatar Aang and his friends embark on a journey to honor an Air Nomad\nholiday, a cryptic visit from the spirit of Avatar Yangchen leads Aang to a\nrefinery operating on sacred land, and soon everyone is in peril from a\ndangerous ancient spirit.\"\r\n6581,6954,12374,Richard Ford,Independence Day,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166501473l/12374.jpg,3.86,11663,\"fiction, contemporary\",Independence DayRichard Ford\r\n6582,6955,2336803,Brad Thor,The Last Patriot,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388705552l/2336803.jpg,4.16,12264,\"fiction, thriller\",\"Brad Thor, master of suspense and #1 New York Times bestselling author is\nback with his highest-voltage thriller to date in which Navy SEAL turned\ncovert Homeland Security operative Scot Harvath must race to locate an\nancient secret that has the power to stop militant Islam dead in its\ntracks. June 632 A.D.: Deep within the Uranah Valley of Mount Arafat in\nMecca, the Prophet Mohammed shares with his closest companions a final and\nstartling revelation. Within days, he is assassinated. September 1789: U.S.\nMinister to France Thomas Jefferson, who is charged with forging a truce\nwith the violent Muslim pirates of the Barbary Coast, makes a shocking\ndiscovery—one that could forever impact the world’s relationship with\nIslam. Present day: When a car bomb explodes outside a Parisian café, Scot\nHarvath is thrust back into the life he has tried so desperately to leave\nbehind. Saving the intended victim of the attack, Harvath becomes party to\na perilous race to uncover a secret so powerful that militant Islam could\nbe defeated once and for all. But as desperate as the American government\nis to have the information brought to light, there are powerful forces\ndetermined that Mohammed’s mysterious final revelation continue to remain\nhidden forever. What Jason Bourne was to the Cold War, Scot Harvath is to\nthe War on Terror. In The Last Patriot, readers will be engrossed as\nHarvath once again takes them on a whirlwind tour through international\ncities and nail-biting suspense where the stakes are higher than they have\never been before.\"\r\n6583,6956,214856,Obert Skye,\"Leven Thumps and the Gateway to Foo (Leven Thumps, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348786235l/214856.jpg,3.71,17760,\"fantasy, fiction\",\"WELCOME TO FOO. Fourteen-year-old Leven Thumps (a.k.a. \"\"Lev\"\") lives a\nwretched life in Burnt Culvert, Oklahoma. But his life is about to change\nand his destiny be fulfilled as he learns about a secret gateway that\nbridges two worlds -- the real world and Foo, a place created at the at the\nbeginning of time in the folds of the mind that makes it possible for\nmankind to dream and hope, aspire and imagine. But Foo is in chaos, and\nthree transplants from that dreamworld have been sent to retrieve Lev, who\nalone has the power to save Foo. Enter Clover, a wisecracking, foot-high\nsidekick; Winter, a girl with a special power of her own; and Geth, the\nrightful heir to Foo. Their mission: to convince Lev that he has the power\nto save Foo. Can this unique band of travelers help Lev overcome his doubt?\nWill Lev find the gateway in time? Or will Sabine and his dark shadows find\nthe gateway first and destroy mankind?\"\r\n6584,6957,18228202,Francine Rivers,Bridge to Haven,https://images.gr-assets.com/books/1376078910l/18228202.jpg,4.07,11325,\"christian, fiction\",\"Having been abandoned as a newborn and found and raised by Pastor Ezekiel\nFreeman in the small California town of Haven, Abra Matthews feels like she\ndoesn't belong and at the age of seventeen runs off to Hollywood, becoming\nstarlet Lena Scott.\"\r\n6585,6958,16071736,J. Courtney Sullivan,The Engagements,https://images.gr-assets.com/books/1361254904l/16071736.jpg,3.59,8634,\"fiction, romance\",\"Explores the marital foibles of four couples while following the creation\nthe famous advertising campaign that turned diamonds into a symbol of the\nhope for everlasting love.\"\r\n6586,6959,13168,Beverly Cleary,Runaway Ralph,https://images.gr-assets.com/books/1327883411l/13168.jpg,3.95,16845,\"fantasy, classics\",\"\"\"The rousing notes of the bugle and the laughter and shouting increased the\nfeeling of rebellion within Ralph. As the last strains of the bugle call\nhovered in the clear mountain air, Ralph made up his mind. He knew now what\nhe was going to do. He was going to run away. Fed up with his timid mother\nand uncle and his squirmy little cousins, Ralph hops onto his toy\nmotorcycle and zooms down the road to summer camp. It turns out camp is not\nall peanut butter and jelly sandwiches and fun. A strict watchdog, a mouse-\nhungry cat, and a troubled boy named Garf lead Ralph on some fur-raising\nescapades. Perhaps home isn't such a bad place to be, if only Ralph can\nfind a way to get there again.\"\r\n6587,6960,13640229,Kristen Ashley,Creed,https://images.gr-assets.com/books/1347468402l/13640229.jpg,4.17,26696,\"romance, contemporary\",\"As children, Tucker Creed and his neighbor Sylvie Bissenette find they have\nsomething awful in common. The bond they form blossoms with their ages.\nCreed breaks free from the town, and Sylvie is forced to endure a\nnightmare-- and do the unspeakable to end it. To deal, she develops a hard\nshell with sharp edges that very few can break through. When Creed again\nfinds his Sylvie, he discovers he has to find his way back into her heart\nwithout getting shredded in the process.\"\r\n6588,6961,2142,Ted Dekker,Blink,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388372253l/2142.jpg,4.17,12037,\"suspense, fiction\",BlinkTed Dekker\r\n6589,6962,27213121,Daniel Silva,The Black Widow,https://images.gr-assets.com/books/1460313822l/27213121.jpg,4.34,8822,\"fiction, thriller\",The Black WidowDaniel Silva\r\n6590,6963,434764,Stephen E. Robinson,Believing Christ: The Parable of the Bicycle and Other Good News,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387655499l/434764.jpg,4.51,12951,\"religion, nonfiction\",Believing Christ: The Parable of the Bicycle and Other Good NewsStephen E. Robinson\r\n6591,6964,10586539,Amanda Hocking,Wake (Watersong #1),https://images.gr-assets.com/books/1344231690l/10586539.jpg,3.7,17833,\"fantasy, paranormal\",\"\"\"An amazing, enthralling story. . . ravishing and explosive. Wake is\nawesome!\"\" – Books with Bite Enter the world of Amanda Hocking's Watersong,\na place of breathtaking beauty, immortal power—and terrifying secrets.\nGemma Fisher seems to have it all—she's carefree, pretty, and falling in\nlove with Alex, the boy next door. He's always been just a friend, but this\nsummer they've taken their relationship to the next level, and now she's\nfalling harder for him every day. But Gemma doesn't know that her ordinary\nlife is about to change forever. Penn, Lexi and Thea are strangers in town\nfor the summer—and they've been watching her. Three sisters with mysterious\npowers, they invite Gemma to join their exclusive circle, and it changes\nher in ways she never imagined. Suddenly she's stronger, faster, and more\nbeautiful than ever. But her new powers come with a terrifying price. And\nas she uncovers the truth, she's is forced to choose between staying with\nthose she loves—or entering a new world brimming with dark hungers and\nunimaginable secrets.\"\r\n6592,6966,17994,Simon Singh,\"The Code Book. How to Make It, Break It, Hack It, Crack It\",https://images.gr-assets.com/books/1403181687l/17994.jpg,4.28,12919,\"history, science\",\"The Code Book. How to Make It, Break It, Hack It, Crack ItSimon Singh\"\r\n6593,6967,67513,Karen Chance,Touch the Dark,https://images.gr-assets.com/books/1307391100l/67513.jpg,3.7,26970,\"paranormal, fantasy\",\"When a bloodthirsty Mafioso sets his vengeful sights on Cassandra Palmer,\nwho is gifted with the ability to communicate with the dead, she is forced\nto ask the vampire council for help and must pay a high price at the hands\nof a sensual master vampire. Original.\"\r\n6594,6968,11286,Dan Simmons,Carrion Comfort,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203579l/11286.jpg,3.89,13285,\"horror, fiction\",Carrion ComfortDan Simmons\r\n6595,6969,9858714,Lori Brighton,The Mind Readers,https://images.gr-assets.com/books/1291820285l/9858714.jpg,3.76,9825,\"paranormal, fantasy\",The Mind ReadersLori Brighton\r\n6596,6970,815150,Karen Marie Moning,The Highlander's Touch ,https://images.gr-assets.com/books/1257330461l/815150.jpg,4.15,22072,\"romance, paranormal\",The Highlander's Touch Karen Marie Moning\r\n6597,6972,353342,Avi,Crispin: The Cross of Lead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405898248l/353342.jpg,3.59,18277,\"fiction, fantasy\",\"H \"\"Avi's plot is engineered for maximum thrills, with twists, turns, and\ntreachery aplenty. . . . A page-turner to delight Avi's fans, it will leave\nreaders hoping for a sequel.\"\"-Publishers Weekly (starred review) H \"\" . . .\n[T]he book is a page-turner from beginning to end . . . [A] meticulously\ncrafted story, full of adventure, mystery, and action.\"\" -School Library\nJournal (starred review) \"\"Historical fiction at its finest.\"\"-VOYA\"\r\n6598,6973,76667,Piers Anthony,Wielding a Red Sword,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923571l/76667.jpg,3.93,16222,\"fantasy, fiction\",\"Mym, an Indian prince in a land dominated totally by rajahs, assumes the\nrole of War and, in his new incarnation, sets out to alleviate injustice\nand undermine the evil power of Satan\"\r\n6599,6974,18461986,Kylie Scott,Deep,https://images.gr-assets.com/books/1397676461l/18461986.jpg,4.09,25588,\"romance, contemporary\",DeepKylie Scott\r\n6600,6975,79006,Jeffrey Archer,Honour Among Thieves,https://images.gr-assets.com/books/1316131242l/79006.jpg,3.82,12409,\"fiction, thriller\",\"A suspense novel that blends elements of the political and social upheaval\nof the Middle East, Mafia intrigues, and the machinations of Saddam\nHussein.\"\r\n6601,6976,7657484,\"J. Michael Straczynski, Shane Davis, Sandra Hope, Barbara Ciardo, Rob Leigh\",\"Superman: Earth One, Volume 1\",https://images.gr-assets.com/books/1320538241l/7657484.jpg,3.9,12982,\"comics, fiction\",\"The follow-up to the NEW YORK TIMES #1 bestselling graphic novels SUPERMAN:\nEARTH ONE VOL. 1 and 2 is here Written by J. Michael Straczynski with art\nby Ardian Syaf (BATGIRL), SUPERMAN: EARTH ONE VOL. 3 follows a young Clark\nKent as he continues his journey toward becoming the World's Greatest Super\nHero. After defeating villains terrestrial and beyond, Superman faces a\nthreat that he can't simply outmuscle. A threat smarter, more cunning and\ndeadly than he can imagine: the Luthors\"\r\n6602,6977,11106458,Cassandra Clare,The Mortal Instrument Series: City of Bones / City of Ashes / City of Glass / City of Fallen Angels,https://images.gr-assets.com/books/1313073526l/11106458.jpg,4.59,13996,\"fantasy, paranormal\",The Mortal Instrument Series: City of Bones / City of Ashes / City of Glass / City of Fallen AngelsCassandra Clare\r\n6603,6978,609035,\"John Foxe, W. Grinton Berry\",Foxe's Book of Martyrs,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348566202l/609035.jpg,4.25,12117,\"christian, biography\",\"Foxe's Book of MartyrsJohn Foxe, W. Grinton Berry\"\r\n6604,6979,60223,Rachel Gibson,See Jane Score,https://images.gr-assets.com/books/1330265531l/60223.jpg,4.06,20770,\"romance, contemporary\",\"Award–winner and USA Today bestselling author Rachel Gibson's smart, sassy\ncontemporary romances are making her one of the genre's fastest rising\nstars.\"\r\n6605,6980,17174,Michael Dorris,A Yellow Raft in Blue Water: A Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439049792l/17174._SY475_.jpg,3.84,14380,\"fiction, classics\",\"Moving backward in time, Dorris's critically acclaimed debut novel is a\nlyrical saga of three generations of Native American women beset by\nhardship and torn by angry secrets.\"\r\n6606,6981,6294549,Seanan McGuire,Rosemary and Rue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406866868l/6294549.jpg,3.74,21030,\"fantasy, paranormal\",\"Half-fae Toby retreats to the human world after being rejected by her\nFaerie family, but finds her anonymity compromised by the murder of an\nimportant countess who binds her to investigate, forcing Toby to resume her\nfae position.\"\r\n6607,6982,64401,Robert Lynn Asprin,Another Fine Myth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389251108l/64401.jpg,4.03,17018,\"fantasy, fiction\",\"After the murder of his master Garkin, a thief and apprentice magician\njoins forces with a demon dimension traveler named Aahz\"\r\n6608,6983,9279734,Elizabeth Reyes,Forever Mine ,https://images.gr-assets.com/books/1327166807l/9279734.jpg,3.88,18346,\"romance, contemporary\",\"Seventeen-year old Sarah's life is turned upside down when her single mom\nis sent to jail. She's forced to move, leaving behind everything she's ever\nknown, including her best friend Sydney. Lost and bitter in a new school,\nher one goal is to save money and move back home. Then she meets Angel\nMoreno.Enigmatic but gorgeous, Angel is almost too good to be true. Except\nfor one thing, his archaic belief that guys and girls can never be \"\"just\nfriends\"\". The problem? Sarah's best friend Sydney is not a girl.With their\nunexpected romance intensifying to places neither ever experienced, how\nlong can Sarah keep Angel in the dark about the guy waiting for her back\nhome?\"\r\n6609,6984,6617185,\"Simon Kuper, Stefan Szymanski\",\"Soccernomics: Why England Loses, Why Germany and Brazil Win, and Why the U.S., Japan, Australia, Turkey--and Even Iraq--Are Destined to Become the Kings of the World's Most Popular Sport\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432865592l/6617185._SY475_.jpg,3.91,10577,\"sports, nonfiction\",\"A pair of award-winning journalists draw on analogies from a range of\ndisciplines to consider why forefront soccer teams win or lose World Cup\ncompetitions, offering insight into the playing styles of leading national\nteams as well as overall factors that influence how the game is played.\nOriginal.\"\r\n6610,6985,4499214,Catherine Fisher,Sapphique,https://images.gr-assets.com/books/1327885488l/4499214.jpg,3.7,16475,\"fantasy, fiction\",\"After his escape from the sentient prison, Incarceron, Finn finds that the\nRealm is not at all what he expected, and he does not know whether he is to\nbe its king, how to free his imprisoned friends, or how to stop\nIncarceron's quest to be free of its own nature.\"\r\n6611,6986,127451,Lurlene McDaniel,\"Don't Die, My Love\",https://images.gr-assets.com/books/1320416427l/127451.jpg,4.12,14197,\"romance, fiction\",\"Don't Die, My LoveLurlene McDaniel\"\r\n6612,6987,40482,Tess Gerritsen,Harvest ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193515l/40482.jpg,4.09,14274,\"mystery, thriller\",\"Spurred by the death of a younger sibling to pursue a medical career,\nsurgical resident Abby DiMatteo is delighted by her recruitment into a\ncardiac transplant team, until she is forced to choose between two\npatients.\"\r\n6613,6988,1587362,Mark Bittman,How to Cook Everything Vegetarian: Simple Meatless Recipes for Great Food,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390927101l/1587362.jpg,4.08,12262,\"cookbooks, nonfiction\",\"A definitive, one-stop vegetarian cookbook showcases more than two thousand\ndifferent recipes and variations for simple meatless meals, including\nsalads, soups, eggs and dairy, vegetables and fruit, pasta, grains,\nlegumes, tofu and other meat substitutes.\"\r\n6614,6989,20801166,Sandy   Hall,A Little Something Different,https://images.gr-assets.com/books/1396394307l/20801166.jpg,3.65,14206,\"romance, contemporary\",\"The distinctive new crowdsourced publishing imprint, Swoon Reads, presents\nits first published novel about a romance between two college students,\ntold from 14 different viewpoints.\"\r\n6615,6990,17349222,Ann Patchett,This Is the Story of a Happy Marriage,https://images.gr-assets.com/books/1375215541l/17349222.jpg,4.03,13126,\"memoir, nonfiction\",\"The New York Times bestselling author of State of Wonder, Run, and Bel\nCanto creates a resonant portrait of a life in this collection of writings\non love, friendship, work, and art. \"\"The tricky thing about being a writer,\nor about being any kind of artist, is that in addition to making art you\nalso have to make a living.\"\" So begins This Is the Story of a Happy\nMarriage, an examination of the things Ann Patchett is fully committed\nto—the art and craft of writing, the depths of friendship, an elderly dog,\nand one spectacular nun. Writing nonfiction, which started off as a means\nof keeping her insufficiently lucrative fiction afloat, evolved over time\nto be its own kind of art, the art of telling the truth as opposed to the\nart of making things up. Bringing her narrative gifts to bear on her own\nlife, Patchett uses insight and compassion to turn very personal\nexperiences into stories that will resonate with every reader. These essays\ntwine to create both a portrait of life and a philosophy of life. Obstacles\nthat at first appear insurmountable—scaling a six-foot wall in order to\njoin the Los Angeles Police Department, opening an independent bookstore,\nand sitting down to write a novel—are eventually mastered with quiet\ntenacity and a sheer force of will. The actual happy marriage, which was\nthe one thing she felt she wasn't capable of, ultimately proves to be a\nmetaphor as well as a fact: Patchett has devoted her life to the people and\nideals she loves the most. An irresistible blend of literature and memoir,\nThis Is the Story of a Happy Marriage is a unique examination of the heart,\nmind, and soul of one of our most revered and gifted writers.\"\r\n6616,6992,7853137,John Verdon,Think of a Number,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394236041l/7853137.jpg,3.83,11877,\"mystery, fiction\",\"Recently retired after a prestigious career with the NYPD, homicide\ndetective Dave Gurney is pulled back into service when an old college\nfriend receives threatening letters from a murderous sender who has an\nuncanny ability to read a person's thoughts.\"\r\n6617,6994,114203,Nora Roberts,Birthright,https://images.gr-assets.com/books/1309282307l/114203.jpg,3.99,19024,\"romance, fiction\",\"Overseeing the excavation of an ancient skeleton at a small-town\nconstruction site, archaeologist Callie Dunbrook copes with accidents and\nrumors that the project is cursed, a situation that is complicated by a\nstranger's claims about her past.\"\r\n6618,6995,434535,James L. Ferrell,The Peacegiver: How Christ Offers to Heal Our Hearts and Homes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388383083l/434535.jpg,4.41,12313,\"nonfiction, religion\",The Peacegiver: How Christ Offers to Heal Our Hearts and HomesJames L. Ferrell\r\n6619,6996,64895,Mark Kurlansky,Cod: A Biography of the Fish that Changed the World,https://images.gr-assets.com/books/1356452461l/64895.jpg,3.92,13137,\"history, nonfiction\",\"A history of the fish that has led to wars, stirred revolutions, sustained\neconomies and diets, and helped in the settlement of North America features\nphotographs, drawings, and recipes, as well as the natural history of this\nmuch sought after fish\"\r\n6620,6997,8167094,Brian Greene,The Hidden Reality: Parallel Universes and the Search for the Deep Laws of the Cosmos,https://images.gr-assets.com/books/1320431300l/8167094.jpg,4.05,12080,\"nonfiction, philosophy\",\"Discusses recent discoveries in physics and cosmology to explore a range of\nmultiverse proposals, and examines how the knowledge that some aspects of\nreality may lie beyond human comprehension might affect scientific\nprogress.\"\r\n6621,6998,38723,\"Betty Friedan, Anna Quindlen\",The Feminine Mystique,https://images.gr-assets.com/books/1479777578l/38723.jpg,3.85,9823,\"nonfiction, classics\",\"The book that changed the consciousness of a country—and the world.\nLandmark, groundbreaking, classic—these adjectives barely describe the\nearthshaking and long-lasting effects of Betty Friedan's The Feminine\nMystique. This is the book that defined \"\"the problem that has no name,\"\"\nthat launched the Second Wave of the feminist movement, and has been\nawakening women and men with its insights into social relations, which\nstill remain fresh, ever since. A national bestseller, with over 1 million\ncopies sold.\"\r\n6622,6999,48862,\"Graham Greene, J.M. Coetzee\",Brighton Rock,https://images.gr-assets.com/books/1337363402l/48862.jpg,3.72,13871,\"fiction, classics\",\"When Pinkie kills a man during a gang war raging through the underworld of\nBrighton, he believes he can escape retribution, but is unprepared for Ida\nArnold who is determined to avenge a death.\"\r\n6623,7000,12415695,عبدالله المغلوث,كخه يا بابا,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1314105414l/12415695.jpg,3.71,12587,\"ebooks, nonfiction\",\"هنا…محاولة لنقد بعض سلوكياتنا وظواهرنا الاجتماعية المعاصرة، منذ أن نستمع\nإلى “كخه يا بابا” صغارا إلى كهولتنا. حاولت أن أسلط الضوء على بعض الممارسات\nالتي حولتنا إلى مجتمع محبط ويائس ولا يجيد الفرح\"\r\n6624,7001,6452760,\"Greg Mortenson, Khaled Hosseini\",\"Stones into Schools: Promoting Peace with Books, Not Bombs, in Afghanistan and Pakistan\",https://images.gr-assets.com/books/1260845553l/6452760.jpg,3.86,13543,\"nonfiction, memoir\",\"Stones into Schools: Promoting Peace with Books, Not Bombs, in Afghanistan and PakistanGreg Mortenson, Khaled Hosseini\"\r\n6625,7002,3009435,Toni Morrison,A Mercy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439037000l/3009435._SY475_.jpg,3.65,14707,\"fiction, classics\",\"In exchange for a bad debt, an Anglo-Dutch trader takes on Florens, a young\nslave girl, who feels abandoned by her slave mother and who searches for\nlove--first from an older servant woman at her master's new home, and then\nfrom a handsome free blacksmith\"\r\n6626,7004,23675858,A.G. Riddle,Departure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430394515l/23675858.jpg,3.79,11143,\"fiction, thriller\",DepartureA.G. Riddle\r\n6627,7006,16335,Agatha Christie,The Mystery of the Blue Train,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733972l/16335.jpg,3.77,17011,\"mystery, crime\",\"When the luxurious Blue Train arrives at Nice, a guard attempts to wake\nserene Ruth Kettering from her slumbers. But she will never wake again—for\na heavy blow has killed her, disfiguring her features almost beyond\nrecognition. What is more, her precious rubies are missing. The prime\nsuspect is Ruth’s estranged husband, Derek. Yet Hercule Poirot is not\nconvinced, so he stages an eerie reenactment of the journey, complete with\nthe murderer on board. . . .\"\r\n6628,7007,10808006,\"James Patterson, Maxine Paetro\",Private:  #1 Suspect,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390710719l/10808006.jpg,3.95,13428,\"mystery, fiction\",\"Former Marine Jack Morgan always uncovers the truth. But in James\nPatterson's unforgettable thriller, he faces his most shocking case yet.\nSince former Marine Jack Morgan started Private, it has become the world's\nmost effective investigation firm--sought out by the famous and the\npowerful to discreetly handle their most intimate problems. Private's\ninvestigators are the smartest, the fastest, and the most technologically\nadvanced in the world-and they always uncover the truth. When his former\nlover is found murdered in his bed, Jack Morgan is instantly the number one\nsuspect. While Jack is under police investigation, the mob strong-arms him\ninto recovering $30 million in stolen pharmaceuticals for them. And the\nbeautiful manager of a luxury hotel chain persuades him to quietly\ninvestigate a string of murders at her properties. While Jack is fighting\nfor his life, one of his most trusted colleagues threatens to leave\nPrivate, and Jack realizes he is confronting his cleverest and most\npowerful enemies ever. With more action, more intrigue, and more twists\nthan ever before, Private: #1 Suspect is James Patterson at his unstoppable\nbest.\"\r\n6629,7008,14295,George Saunders,Pastoralia,https://images.gr-assets.com/books/1348067120l/14295.jpg,4.11,10786,\"fiction, contemporary\",\"A collection of stories by the author of CivilWarLand in Bad Decline\nfocuses on a somewhat skewed version of America and includes the\nmisadventures of a male exotic dancer who is haunted by a departed maiden\naunt and a self-help guru given to colorful metaphors. Reprint.\"\r\n6630,7009,13523061,Meg Jay,The Defining Decade: Why Your Twenties Matter--And How to Make the Most of Them Now,https://images.gr-assets.com/books/1334798998l/13523061.jpg,4.11,12731,\"nonfiction, psychology\",\"Our \"\"thirty-is-the-new-twenty\"\" culture tells us the twentysomething years\ndon't matter. Some say they are a second adolescence. Others call them an\nemerging adulthood. Dr. Meg Jay, a clinical psychologist, argues that\ntwentysomethings have been caught in a swirl of hype and misinformation,\nmuch of which has trivialized what is actually the most defining decade of\nadulthood. Drawing from a decade of work with hundreds of twentysomething\nclients and students, THE DEFINING DECADE weaves the latest science of the\ntwentysomething years with behind-closed-doors stories from\ntwentysomethings themselves. The result is a provocative read that provides\nthe tools necessary to make the most of your twenties, and shows us how\nwork, relationships, personality, social networks, identity, and even the\nbrain can change more during this decade than at any other time in\nadulthood-if we use the time wisely. THE DEFINING DECADE is a smart,\ncompassionate and constructive book about the years we cannot afford to\nmiss.\"\r\n6631,7010,1085771,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",The Walking Dead V 7,https://images.gr-assets.com/books/1289097173l/1085771.jpg,4.27,16769,\"horror, comics\",\"The group becomes complacent as there is no sign of an attack; meanwhile,\nLori gives birth, a wedding occurs, and the new doctor settles in.\"\r\n6632,7011,291364,H.A. Rey,Curious George Rides a Bike,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348292189l/291364.jpg,4.24,15461,\"fiction, classics\",Curious George Rides a BikeH.A. Rey\r\n6633,7012,175319,Robert A. Heinlein,Methuselah's Children,https://images.gr-assets.com/books/1253209003l/175319.jpg,3.98,15028,\"fiction, fantasy\",Methuselah's ChildrenRobert A. Heinlein\r\n6634,7013,12663646,Lauren Oliver,Hana,https://images.gr-assets.com/books/1324106918l/12663646.jpg,3.63,20107,\"romance, ebooks\",\"Lauren Oliver's riveting, original digital story set in the world of her\nNew York Times bestseller Delirium. The summer before they're supposed to\nbe cured of the ability to love, best friends Lena and Hana begin to drift\napart. While Lena shies away from underground music and parties with boys,\nHana jumps at her last chance to experience the forbidden. For her, the\nsummer is full of wild music, dancing—and even her first kiss. But on the\nsurface, Hana must be a model of perfect behavior. She meets her approved\nmatch, Fred Hargrove, and glimpses the safe, comfortable life she’ll have\nwith him once they marry. As the date for her cure draws ever closer, Hana\ndesperately misses Lena, wonders how it feels to truly be in love, and is\nsimultaneously terrified of rebelling and of falling into line. In this\ndigital story that will appeal to fans of Delirium and welcome new admirers\nto its world, readers will come to understand scenes from Delirium through\nHana's perspective. Hana is a touching and revealing look at a life-\nchanging and tumultuous summer.\"\r\n6635,7014,102955,\"Garth Ennis, Steve Dillon, John McCrea\",\"Preacher, Volume 8: All Hell's a-Coming\",https://images.gr-assets.com/books/1309916812l/102955.jpg,4.33,14300,\"comics, fiction\",\"Written by Garth Ennis; Art by Steve Dillon and Glenn Fabry A new edition\nof the collection including PREACHER #51-58 and the one-shot PREACHER: TALL\nIN THE SADDLE. Following the events of the PREACHER: SALVATION collection,\nJesse Custer wants to renew his quest to find God and hold him accountable\nfor all of his actions. But before he can continue down that path, he must\nreunite with his girlfriend Tulip. In this edition, we look back and see\nhow Jesse and Tulip first met as well as how she became so deadly\nproficient with a gun. Also, after making amends with his love, Jesse seeks\nrevenge against his former friend and compatriot Cassidy for the things\nthat the Irish vampire did to Tulip during the time that they both believed\nthe Preacher to be dead.\"\r\n6636,7015,6356190,\"Stephen King, Michael Whelan\",The Little Sisters of Eluria,https://images.gr-assets.com/books/1328794822l/6356190.jpg,4.24,14287,\"fantasy, horror\",\"The Little Sisters of EluriaStephen King, Michael Whelan\"\r\n6637,7016,773480,\"Stan Berenstain, Jan Berenstain\",\"Inside, Outside, Upside Down\",https://images.gr-assets.com/books/1428895593l/773480.jpg,4.13,15032,\"fiction, classics\",\"A simple tale, using a limited vocabulary for young readers, of how little\nbear travels to town in a cardboard box.\"\r\n6638,7017,6574542,Robert Crais,The First Rule,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442546114l/6574542._SY475_.jpg,4.2,14169,\"mystery, fiction\",\"Elvis Cole's taciturn partner, Joe Pike, investigates an attack on former\nassociate Frank Meyer, a one-time mercenary whose family has been murdered\nby a professional hit crew and who police suspect has been keeping a\ndangerous secret.\"\r\n6639,7018,483445,David Colbert,\"The Magical Worlds of Harry Potter: A Treasury of Myths, Legends, and Fascinating Facts\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441546433l/483445.jpg,3.96,13820,\"fantasy, nonfiction\",\"Explores the sources and meanings of aspects of the literary world of Harry\nPotter within myths, legends, and history.\"\r\n6640,7019,825377,Peter H. Reynolds,The Dot,https://images.gr-assets.com/books/1363702319l/825377.jpg,4.26,17436,\"art, fiction\",\"Vashti believes that she cannot draw, but her art teacher's encouragement\nleads her to change her mind.\"\r\n6641,7020,6407514,Shannon Hale,Forest Born,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437847914l/6407514._SY475_.jpg,4.01,20603,\"fantasy, fiction\",Forest BornShannon Hale\r\n6642,7021,34605,Clive Barker,The Damnation Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390447329l/34605.jpg,3.82,14299,\"horror, fiction\",\"A reclusive millionaire makes a deal with the devil. Just another horror\ntale? Don't bet on it. It's from Clive Barker.\"\r\n6643,7022,78728,\"Milan Kundera, Linda Asher\",L'ignorance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316513l/78728.jpg,3.76,9625,\"fiction, philosophy\",\"A New York Times Notable Book Irena and Josef meet by chance while\nreturning to their homeland, which they had abandoned twenty years earlier.\nWill they manage to pick up the thread of their strange love story,\ninterrupted almost as soon as it began and then lost in the tides of\nhistory? The truth is that after such a long absence \"\"their memories no\nlonger match.\"\"\"\r\n6644,7024,2678349,محمد عبد الرحمن العريفي,استمتع بحياتك,https://images.gr-assets.com/books/1399206237l/2678349.jpg,4.21,10882,\"religion, spirituality\",استمتع بحياتكمحمد عبد الرحمن العريفي\r\n6645,7026,337116,\"William Gibson, Bruce Sterling\",The Difference Engine,https://images.gr-assets.com/books/1327891675l/337116.jpg,3.41,14517,\"fiction, fantasy\",\"In London of 1855, celebrated paleontologist Edward Mallory gets mixed up\nwith Charles Babbage, the inventor of an advanced calculating machine run\nby his elite group of clackers.\"\r\n6646,7027,102954,\"Garth Ennis, Steve Dillon\",Preacher: Salvation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348311524l/102954.jpg,4.3,13902,\"fiction, fantasy\",\"Disillusioned with his own beliefs, Jesse Custer, along with his girlfriend\nTulip and their Irish vampire friend Cassidy, begins a violent and riotous\njourney across the country in search of God, who has abandoned heaven.\"\r\n6647,7028,13425570,\"Clayton M. Christensen, James Allworth, Karen Dillon\",How Will You Measure Your Life?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328046792l/13425570.jpg,4.06,11475,\"business, nonfiction\",\"Akin to The Last Lecture in its revelatory perspective following life-\naltering events, \"\"How Will You Measure Your Life?\"\" presents a set of\npersonal guidelines that have helped the author find meaning and happiness\nin his life.\"\r\n6648,7029,11233988,Jon Klassen,I Want My Hat Back,https://images.gr-assets.com/books/1327888784l/11233988.jpg,4.39,18489,\"fiction, fantasy\",\"A bear almost gives up his search for his missing hat until he remembers\nsomething important, in a cumulative tale with a mischievous twist.\"\r\n6649,7030,239109,R.A. Salvatore,The Lone Drow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428294158l/239109.jpg,4.15,12877,\"fantasy, fiction\",\"The sequel to The Thousand Orcs, this second volume in the new Hunter's\nBlades Trilogy from the Forgotten Realms universe continues the adventures\nof the author's popular Dark Elf hero, Drizzt Do'Urden, and his companions.\nReprint.\"\r\n6650,7031,2983489,Denis Leary,\"Why We Suck: A Feel Good Guide to Staying Fat, Loud, Lazy and Stupid\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347584264l/2983489.jpg,3.67,12880,\"nonfiction, biography\",\"The four-time Emmy-nominated comic satirist of Rescue Me presents\nirreverent cultural observations about how society is taking itself too\nseriously, in an account that shares anecdotes from his Irish-Catholic\nupbringing, high-pressure family life and work as a performing artist, in\nan edition with a new introduction. Reprint. A best-selling book.\"\r\n6651,7032,61672,Françoise Sagan,Bonjour tristesse,https://images.gr-assets.com/books/1346107613l/61672.jpg,3.62,12355,\"fiction, classics\",\"Published when she was only eighteen, Françoise Sagan's astonishing first\nnovel, Bonjour Tristessebecame an instant bestseller. It tells the story of\nCécile, who leads a carefree life with her widowed father and his young\nmistresses until, one hot summer on the Riviera, he decides to remarry -\nwith devastating consequences. In A Certain SmileDominique, a young woman\nbored with her lover, begins an encounter with an older man that unfolds in\nunexpected and troubling ways. These stylish, shimmering and amoral tales\nhad explicit sexual scenes removed for English publication in the 1950s.\nNow this fresh and accurate new translation presents the uncensored text of\nSagan's masterpieces in full for the first time. A New Translation by\nHeather Lloyd With an Introduction by Rachel Cusk 'Françoise Sagan is the\nFrench F. Scott Fitzgerald.' Guardian 'Funny, thoroughly immoral and\nthoroughly French.' The Times\"\r\n6652,7033,25671861,Jeffrey Archer,Cometh the Hour,https://images.gr-assets.com/books/1433791167l/25671861.jpg,4.13,7197,\"fiction, mystery\",Cometh the HourJeffrey Archer\r\n6653,7034,11469379,Corban Addison,A Walk Across the Sun,https://images.gr-assets.com/books/1328767745l/11469379.jpg,4.13,12091,\"fiction, contemporary\",A Walk Across the SunCorban Addison\r\n6654,7035,1126719,Alastair Reynolds,House of Suns,https://images.gr-assets.com/books/1447892903l/1126719.jpg,4.19,13033,\"fiction, fantasy\",House of SunsAlastair Reynolds\r\n6655,7037,391724,Edgar Allan Poe,The Black Cat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387720896l/391724.jpg,4.07,16132,\"classics, horror\",The Black CatEdgar Allan Poe\r\n6656,7038,102327,John Steakley,Armor,https://images.gr-assets.com/books/1465894856l/102327.jpg,4.12,13330,\"fiction, fantasy\",\"A best-selling novel of military science fiction follows the battle of a\none-man, atomic-powered, armored fighting machine on the alien planet of\nBanshee, home to a horde of berserk enemies of humanity. Reissue.\"\r\n6657,7039,19312,\"Astrid Lindgren, Ilon Wikland, Jill M. Morgan\",Bröderna Lejonhjärta,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269738l/19312.jpg,4.35,16325,\"fantasy, classics\",\"My brother, Jonathan, knew that I was going to die. 'How can things be so\nterrible,' I asked. 'That some people have to die, when they're not even\nten years old?' 'I don't think it's that terrible,' said Jonathan. 'I think\nyou'll have a marvellous time.' A tender story of courage, love, and life\nafter death.\"\r\n6658,7041,268598,\"J.D. Robb, Susan Ericksen\",Loyalty in Death,https://images.gr-assets.com/books/1458243301l/268598.jpg,4.3,19219,\"mystery, romance\",\"Loyalty in DeathJ.D. Robb, Susan Ericksen\"\r\n6659,7042,262229,Sue Grafton,\"\"\"Q\"\" is for Quarry\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173232845l/262229.jpg,3.91,17505,\"mystery, fiction\",\"Eighteen years after the decomposed body of an unidentified young woman is\ndiscovered in a quarry off California's Highway 1, two police detectives\nnearing retirement enlist Kinsey Millhone's aid to help identify the long-\nago murder victim, as Kinsey's journey into the past unleashes a deadly\ninvestigation in the present. 800,000 first printing.\"\r\n6660,7044,1373381,Jojo Moyes,The Ship of Brides,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708487l/1373381.jpg,3.74,12821,\"fiction, romance\",\"In 1946, despite the Navy's ironclad sanctions aboard the HMS Victoria,\nwhich is on route to England from Australia, the men and their war brides,\nwho are journeying across the sea to face their unknown futures, find their\nlives intertwined. Original. 75,000 first printing.\"\r\n6661,7045,462684,\"Jacqueline Wilson, Nick Sharratt\",The Story of Tracy Beaker,https://images.gr-assets.com/books/1320527485l/462684.jpg,3.69,14772,\"fiction, contemporary\",\"Left at an orphanage, Tracy Beaker dreams of the day that her mother will\nreturn from wherever she has gone to reclaim her and take her away from her\nunpleasant surroundings.\"\r\n6662,7046,543103,Evan Wright,Generation Kill,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441919496l/543103._SY475_.jpg,4.25,11680,\"history, nonfiction\",\"A narrative on the lives of twenty-three First Recon marines who led the\nblitzkrieg on Iraq describes their training, their dangerous entry into\nsuspected ambush points, and the physical and psychological challenges they\nfaced in skirmishes leading to the fall of Baghdad. 125,000 first printing.\"\r\n6663,7048,2033217,Daniel Silva,Moscow Rules,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441892771l/2033217._SY475_.jpg,4.17,13558,\"fiction, mystery\",\"Investigating the suspicious death of a journalist in Moscow, Gabriel Allon\nlearns of the machinations of a former KGB colonel whose covert arms\ndealing business is part of a larger plot to challenge the global dominance\nof the United States. Reprint.\"\r\n6664,7049,25733983,Hope Jahren,Lab Girl,https://images.gr-assets.com/books/1441826687l/25733983.jpg,4.04,16594,\"science, memoir\",Lab GirlHope Jahren\r\n6665,7050,2157243,Derek Landy,Playing with Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388710353l/2157243.jpg,4.31,15533,\"fantasy, mystery\",\"Skulduggery and Valkyrie are facing a new enemy: Baron Vengeous, who is\ndetermined to bring back the terrifying Faceless Ones and is crafting an\narmy of evil to help him. Added to that, Vengeous is about to enlist a new\nally (if he can raise it from the dead): the horrible Grotesquery, a very\nunlikable monster of legend. Once Vengeous is on the loose, dead bodies and\nvampires start showing up all over Ireland. Now pretty much everybody is\nout to kill Valkyrie, and the daring detective duo faces its biggest\nchallenge yet. But what if the greatest threat to Valkyrie is just a little\ncloser to home? Look for Scepter of the Ancients\"\r\n6666,7052,130916,Patricia Gaffney,The Saving Graces,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348825877l/130916.jpg,3.78,13969,\"fiction, romance\",The Saving GracesPatricia Gaffney\r\n6667,7053,272607,Harlan Coben,Fade Away,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390230993l/272607.jpg,3.99,14679,\"mystery, fiction\",\"The disappearance of basketball player Greg Downing, his onetime athletic\nrival both on and off the court, from his upscale suburban New Jersey home\nthrows sports agent Myron Bolitar back into his own past as he tries to\nunravel the strange, violent rise and fall of a sports hero. Reissue.\"\r\n6668,7054,8948,Darren Shan,\"Sons of Destiny (Cirque Du Freak, Book 12)\",https://images.gr-assets.com/books/1344270002l/8948.jpg,4.22,14997,\"horror, paranormal\",\"Time seemed to collapse... There was a sharp stabbing sensation in my\nstomach... Steve crowed, \"\"Now I have you! Now you're gonna die!\"\" Dead if he\nloses - damned if he wins. The time has finally come for Darren to face his\narchenemy, Steve Leopard. One of them will die. The other will become the\nLord of the Shadows - and destroy the world. Is the future written, or can\nDarren trick destiny?\"\r\n6669,7055,84927,Peter Shaffer,Amadeus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269687l/84927.jpg,4.2,14285,\"fiction, music\",\"0riginating at the National Theatre of Great Britain, Amadeus was the\nrecipient of both the Evening Standard Drama Award and the Theatre Critics\nAward. In the United States, the play won the coveted Tony Award and went\non to become a critically acclaimed major motion picture winning eight\nOscars, including Best Picture. Now, this extraordinary work about the life\nof Wolfgang Amadeus Mozart is available with a new preface by Peter Shaffer\nand a new introduction by the director of the 1998 Broadway revival, Sir\nPeter Hall. Amadeus is a must-have for classical music buffs, theatre\nlovers, and aficionados of historical fiction.\"\r\n6670,7056,62485,R.A. Salvatore,\"The Icewind Dale Trilogy Collector's Edition (Forgotten Realms: Icewind Dale, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442601703l/62485._SY475_.jpg,4.28,11293,\"fantasy, fiction\",\"The Icewind Dale Trilogy Collector's Edition (Forgotten Realms: Icewind Dale, #1-3)R.A. Salvatore\"\r\n6671,7057,12753231,Emmy Laybourne,Monument 14,https://images.gr-assets.com/books/1337779838l/12753231.jpg,3.89,17360,\"fiction, fantasy\",Monument 14Emmy Laybourne\r\n6672,7058,251964,Jude Deveraux,The Black Lyon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924537l/251964.jpg,3.99,14456,\"romance, fiction\",\"A Classic Love Story of a Fearless Lord and the Woman Who Tamed Him Darkly\nhandsome and rich beyond imagining, the bold English conqueror was called\n“the Black Lyon” for his lionlike ferocity. He had no match among enemies,\nor women . . . until he met Lyonene, the green-eyed beauty whose fiery\nspirit equaled his own. Through a whirlwind romance and stormy marriage,\nshe endured every peril to be by his side, until vicious lies and jealousy\ndrove her into danger. Now only the fierce Black Lyon can save her—for he\nalone has the courage to destroy the ruthless plot threatening to shatter\nthe bond of love the Lyon and his lady vowed would never be broken . . .\"\r\n6673,7059,12542,Anne Lamott,Grace [Eventually]: Thoughts on Faith,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442888834l/12542._SY475_.jpg,3.98,12863,\"memoir, spirituality\",\"The author presents a collection of essays on the missteps, detours, and\nroadblocks in her walk of faith and in her discovery of what it means to be\nfully human and alive.\"\r\n6674,7060,335459,Martha Stewart,Everyday Food: Great Food Fast,https://images.gr-assets.com/books/1320479731l/335459.jpg,3.93,11969,\"cookbooks, nonfiction\",\"A collection of dishes that can be prepared with fresh ingredients in\nthirty minutes or less, including main dish salads, vegetable risottos, no-\ncook pasta sauces, grilled kabobs, and roasts.\"\r\n6675,7061,17831617,Christina Lauren,Beautiful Bombshell,https://images.gr-assets.com/books/1373436923l/17831617.jpg,4.06,23755,\"romance, contemporary\",\"In Vegas with two friends for what is supposed to be Bennett's stag party,\nBennett and Miles opt to rendezvous in secret with their significant others\nwho have surprised them by showing up in Sin City.\"\r\n6676,7062,12743472,Teri Terry,Slated,https://images.gr-assets.com/books/1453582609l/12743472.jpg,4.07,17404,\"romance, mystery\",\"In a future England, Kyla is one of the \"\"slated,\"\" those whose memories have\nbeen erased, but as she observes more and more strange events, she also\ngains more memories which put her and her boyfriend in danger.\"\r\n6677,7063,1398034,Pramoedya Ananta Toer,Bumi Manusia,https://images.gr-assets.com/books/1464891625l/1398034.jpg,4.37,8574,\"fiction, history\",\"Drawn into the mysterious mansion of a wealthy Javanese family in the\n1890s, Minke, a young student, finds love with Annelies and a teacher in\nAnnalies' mother, a brilliant and charismatic concubine\"\r\n6678,7064,108385,Christine Feehan,Dark Gold (Dark #3),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185122l/108385.jpg,4.16,19210,\"romance, paranormal\",Dark Gold (Dark #3)Christine Feehan\r\n6679,7065,5957702,Kathy Reichs,206 Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441798279l/5957702._SY475_.jpg,3.92,17160,\"mystery, crime\",206 BonesKathy Reichs\r\n6680,7066,6076387,Lorrie Moore,A Gate at the Stairs,https://images.gr-assets.com/books/1327909646l/6076387.jpg,3.14,13590,\"fiction, contemporary\",\"In the Midwest just after the September 11 attacks, twenty-year-old Tassie\nKeltjin comes of age amid such challenges as racism, the War on Terror, and\ncruelty in the name of love, as she leaves her family's farm to attend\ncollege and takes a part-time job as a nanny.\"\r\n6681,7067,8593026,Rebecca Forster,Hostile Witness,https://images.gr-assets.com/books/1334706916l/8593026.jpg,3.72,8031,\"mystery, fiction\",\"The \"\"USA Today\"\" bestselling author of \"\"Keeping Counsel\"\" returns with a\ngripping thriller about a brilliant lawyer torn among her client, a\npowerful family's hidden legacy, and the truth. Original.\"\r\n6682,7068,929782,\"Jack London, Andrew Sinclair\",Martin Eden,https://images.gr-assets.com/books/1344411175l/929782.jpg,4.39,12744,\"classics, ebooks\",\"Recounts the story of Martin Eden, a young seaman struggling to obtain\nsocial and intellectual recognition as a writer\"\r\n6683,7069,68455,Andrzej Sapkowski,Wieża Jaskółki,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208555920l/68455.jpg,4.34,10195,\"fantasy, fiction\",Wieża JaskółkiAndrzej Sapkowski\r\n6684,7070,1632833,Conn Iggulden,\"Lords of the Bow (Conqueror, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388213209l/1632833.jpg,4.31,11600,\"fiction, history\",\"The second in 'The Conqueror Series', this novel is an epic story of\nGenghis Khan continuing to dominate the scene as he matures from the young\nboy of 'Wolf of the Plains' to the great Conqueror.\"\r\n6685,7072,13227319,\"Brian Azzarello, Cliff Chiang, Tony Akins, Dan Green, Matthew Wilson, Jared K. Fletcher\",\"Wonder Woman, Volume 1: Blood\",https://images.gr-assets.com/books/1336978265l/13227319.jpg,3.87,15698,\"comics, fantasy\",\"When Wonder Woman learns the secret her mother Hippolyta, queen of the\nAmazons, has kept regarding her father, her life shatters.\"\r\n6686,7073,20348781,Brittainy C. Cherry,Loving Mr. Daniels,https://images.gr-assets.com/books/1392378701l/20348781.jpg,4.28,18058,\"romance, contemporary\",Loving Mr. DanielsBrittainy C. Cherry\r\n6687,7074,13020,\"William Shakespeare, David Scott Kastan\",The History of Henry the Fourth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347520897l/13020.jpg,3.81,14988,\"classics, fiction\",\"Shakespeare's rich exploration of kingship, politics and war and of\nfathers, sons and coming of age.\"\r\n6688,7075,159061,Ed Emberley,\"Go Away, Big Green Monster!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1541359994l/159061._SX318_.jpg,4.21,14322,\"fiction, fantasy\",\"Die-cut pages through which bits of a monster are revealed are designed to\nhelp a child control nighttime fears of monsters.\"\r\n6689,7076,6606855,\"Jinsei Kataoka, Kazuma Kondou\",デッドマン・ワンダーランド 1,https://images.gr-assets.com/books/1446490168l/6606855.jpg,4.2,12932,\"manga, horror\",\"ある日突然、クラスメイト惨殺の容疑で死刑を宣告された五十嵐丸太。送られた先は日本唯一の完全民営化刑務所「デッドマン・ワンダーランド」だった...。大ヒ\nット、監獄サバイバルアクション!\"\r\n6690,7077,15096257,Linda Lafferty,The Bloodletter's Daughter: A Novel of Old Bohemia,https://images.gr-assets.com/books/1355074644l/15096257.jpg,3.75,7654,\"fiction, romance\",\"In 1606, the city of Prague shines as a golden mecca of art and culture\ncarefully cultivated by Emperor Rudolf II. But the emperor hides an ugly\nsecret: His bastard son, Don Julius, is afflicted with a madness that\npushes the young prince to unspeakable depravity. Desperate to stem his\nson's growing number of scandals, the emperor exiles Don Julius to a remote\ncorner of Bohemia, where the young man is placed in the care of a\nbloodletter named Pichler. The bloodletter's task: cure Don Julius of his\nmadness by purging the vicious humors coursing through his veins. When\nPichler brings his daughter Marketa to assist him, she becomes the object\nof Don Julius's frenzied - and dangerous - obsession. To him, she embodies\nthe women pictured in the Coded Book of Wonder, a priceless manuscript from\nthe imperial library that was his only link to sanity. As the prince\ndescends further into the darkness of his mind, his acts become ever more\ndesperate, as Marketa, both frightened and fascinated, can't stay away.\nInspired by a real - life murder that threatened to topple the powerful\nHapsburg dynasty, The Bloodletter's Daughter is a dark and richly detailed\nsaga of passion and revenge.\"\r\n6691,7079,11666,John Updike,Rabbit at Rest,https://images.gr-assets.com/books/1320394471l/11666.jpg,3.96,12221,\"fiction, classics\",\"Ex-basketball player Harry \"\"Rabbit\"\" Angstrom has acquired heart trouble, a\nsecond grandchild, and he is looking for a reason to live.\"\r\n6692,7080,32426,\"David Axton, Dean Koontz\",Prison of Ice ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203375l/32426.jpg,3.73,15271,\"horror, suspense\",\"Prison of Ice David Axton, Dean Koontz\"\r\n6693,7081,519933,Diana Wynne Jones,The Lives of Christopher Chant,https://images.gr-assets.com/books/1356549015l/519933.jpg,4.22,17117,\"fantasy, fiction\",The Lives of Christopher ChantDiana Wynne Jones\r\n6694,7082,382450,George R.R. Martin,Fevre Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197708l/382450.jpg,3.85,12708,\"fantasy, horror\",\"During the icy winter of 1857, riverboat man Abner Marsh is made captain of\nhis own grand Mississippi steamboat by Joshua York, a vampire intent upon\nsaving his maligned race from extinction.\"\r\n6695,7083,819667,\"Caralyn Buehner, Mark Buehner\",Snowmen at Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439255395l/819667._SX318_.jpg,4.23,15697,\"fantasy, fiction\",\"Snowmen at NightCaralyn Buehner, Mark Buehner\"\r\n6696,7084,25802884,Alessandra Torre,Hollywood Dirt,https://images.gr-assets.com/books/1439214601l/25802884.jpg,4.12,20467,\"romance, contemporary\",\"Cole Masten--bad boy, partier, and actor--alights in small-town Georgia and\ndevelops a relationships with his total opposite.\"\r\n6697,7085,15769463,Tara Sivec,Futures and Frosting,https://images.gr-assets.com/books/1344367548l/15769463.jpg,4.28,16341,\"romance, contemporary\",\"Carter, Claire and Gavin have formed the perfect little family. Their\nfriends are getting married and everyone is growing up, maturing and ready\nto face the future. Or are they? From bachelorette party hell, porn\naddictions, dinner roll baseball and botched wedding proposals to finding\nout everyone's extended family is chock full of crazy, Carter and Claire\nbegin to question the strength of the ties that bind them. Unfortunately,\nthese ties have nothing to do with fuzzy handcuffs and everything to do\nwith the mounting differences between them. Will their friends make a mess\nof things with their inappropriate comments and need to know everything, or\nwill they convince the couple that happily-ever-after sometimes really can\nstart with beer pong?\"\r\n6698,7087,18054175,Matthew Quick,The Good Luck of Right Now,https://images.gr-assets.com/books/1370898422l/18054175.jpg,3.61,12230,\"fiction, contemporary\",The Good Luck of Right NowMatthew Quick\r\n6699,7088,1605034,Alexander McCall Smith,The Miracle at Speedy Motors ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438086011l/1605034._SY475_.jpg,4.09,16887,\"mystery, fiction\",The Miracle at Speedy Motors Alexander McCall Smith\r\n6700,7089,3759,Ian Fleming,Goldfinger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433975399l/3759._SY475_.jpg,3.8,13267,\"fiction, thriller\",\"James Bond investigates the mysterious dealings of England's richest man,\nAuric Goldfinger, and finds himself squaring against Goldfinger's deadly\nKorean henchman, Oddjob.\"\r\n6701,7090,371456,Émile Zola,Nana,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174236758l/371456.jpg,3.84,13610,\"classics, fiction\",\"French realism's most beguiling femme fatale, Nana crawled from the gutter\nto ascend the heights of Parisian society, devouring men and squandering\nfortunes along the way. Her corruption reflects the degenerate state of the\nSecond Empire and her story -- a classic of French literature -- is among\nthe first modern novels.\"\r\n6702,7091,12988089,Richard Paul Evans,Rise of the Elgen,https://images.gr-assets.com/books/1332381957l/12988089.jpg,4.29,15152,\"fantasy, fiction\",Rise of the ElgenRichard Paul Evans\r\n6703,7092,103035,Clive Barker,Cabal,https://images.gr-assets.com/books/1405259936l/103035.jpg,3.92,13557,\"horror, fiction\",CabalClive Barker\r\n6704,7093,347143,Tom Perrotta,The Abstinence Teacher,https://images.gr-assets.com/books/1320459201l/347143.jpg,3.24,13303,\"fiction, contemporary\",\"Teaching human sexuality from a perspective that information and pleasure\nare top priorities, divorced mom Ruth Ramsey butts heads with the local\nsoccer coach, a divorced former addict who became an evangelical Christian\nafter hitting rock bottom. By the author of Joe College. 200,000 first\nprinting.\"\r\n6705,7094,30314465,David Baldacci,No Man's Land,https://images.gr-assets.com/books/1469561999l/30314465.jpg,4.19,8834,\"fiction, thriller\",No Man's LandDavid Baldacci\r\n6706,7095,144127,David Farland,The Sum of All Men,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196460l/144127.jpg,3.74,14938,\"fantasy, fiction\",The Sum of All MenDavid Farland\r\n6707,7096,17329041,Suzanne Rindell,The Other Typist,https://images.gr-assets.com/books/1385399311l/17329041.jpg,3.55,7107,\"fiction, mystery\",The Other TypistSuzanne Rindell\r\n6708,7098,35125,Alan Dean Foster,Alien,https://images.gr-assets.com/books/1332019229l/35125.jpg,4.08,13669,\"horror, fiction\",\"Seven astronauts travel to a distant planet to investigate strange radio\nsignals and encounter a deadly alien which secretes itself aboard their\nship and threatens to kill them all.\"\r\n6709,7099,8805443,Robert Crais,The Sentry,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438489020l/8805443._SY475_.jpg,4.2,14248,\"mystery, fiction\",\"When Joe Pike witnesses Dru Rayne's uncle beaten by a protection gang, he\nbecomes a target, and discovers Dru and her uncle are not who they seem.\"\r\n6710,7100,13111733,J.M. Darhower,Sempre,https://images.gr-assets.com/books/1340797919l/13111733.jpg,4.21,14217,\"romance, contemporary\",\"A sexy novel about two seventeen-year-olds—one a victim of human\ntrafficking; the other the son of the man who enslaved her—who fall in love\nand question everything they ever believed… THIS IS A STORY ABOUT SACRIFICE\n. . . DEATH . . . LOVE . . . FREEDOM. THIS IS A STORY ABOUT FOREVER.\nSeventeen-year-old Haven Antonelli has never known freedom. From the time\nshe was a little girl, she and her mother have been slaves— victims of\nhuman trafficking orchestrated by a vast Mafia network. But when Haven\nattempts to escape and is caught, one man gives her a choice: go with him\nor die. Agreeing to leave with Dr. Vincent DeMarco, Haven arrives at his\nhome and meets the doctor’s defiant—yet intriguing—son Carmine. Though\nCarmine’s privileged upbringing is a world away from hers, Haven senses the\nthings they share. And soon her tenuous friendship with Carmine blossoms\ninto an unexpected love. Carmine has breezed through life breaking every\nrule, scorning attachments— until he meets this strange, timid girl his\nfather has brought home. Her inno­cence draws him in a way he cannot\nunderstand, and makes him feel in ways he never thought he’d experience.\nAnd when he learns the Mafia isn’t through with her, he becomes bent on\nprotecting her . . . no matter the cost.\"\r\n6711,7101,17333171,Ilona Andrews,Magic Shifts,https://images.gr-assets.com/books/1414091260l/17333171.jpg,4.47,16363,\"fantasy, paranormal\",\"After breaking from life with the Pack, mercenary Kate Daniels and her mate\n- former Beast Lord Curran Lennart - are adjusting to a very different\npace. While they're thrilled to escape all the infighting, Curran misses\nthe constant challenges of leading the shapeshifters. So when the Pack\noffers him its stake in the Mercenary Guild, Curran seizes the opportunity\n- too bad the Guild wants nothing to do with him and Kate.\"\r\n6712,7102,961833,Susanna Kearsley,Mariana,https://images.gr-assets.com/books/1330496361l/961833.jpg,4.06,13572,\"romance, fiction\",MarianaSusanna Kearsley\r\n6713,7103,6678,\"Roald Dahl, Quentin Blake\",Going Solo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391620175l/6678.jpg,4.04,14086,\"biography, memoir\",\"The author describes his summer vacations as a child in Norway, life in an\nEnglish boarding school, adventures as a young man working in East Africa\nfor the Shell Company, and being a fighter pilot in World War II.\"\r\n6714,7104,517344,\"Sara Pennypacker, Marla Frazee\",\"Clementine (Clementine, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441718778l/517344._SX318_.jpg,3.9,15584,\"fiction, contemporary\",\"Armed with attitude, individuality, and a penchant for disaster,\nClementine, a wonderfully wacky girl who is the inventor of the world's\nfirst pair of bologna glasses, makes her first appearance in this hilarious\nchapter book. Reprint.\"\r\n6715,7105,8752885,Daniel Abraham,The Dragon's Path,https://images.gr-assets.com/books/1292362307l/8752885.jpg,3.78,13508,\"fantasy, fiction\",The Dragon's PathDaniel Abraham\r\n6716,7106,402128,\"T.S. Eliot, Edward Gorey\",Old Possum's Book of Practical Cats,https://images.gr-assets.com/books/1327882662l/402128.jpg,4.09,15410,\"poetry, classics\",\"A collection of T. S. Eliot's poems which concern cats including Mr.\nMistoffelees, and Skimbleshanks: The Railway Cat\"\r\n6717,7107,25106926,Philippa Gregory,The Taming of the Queen,https://images.gr-assets.com/books/1433348581l/25106926.jpg,3.89,9793,\"fiction, history\",The Taming of the QueenPhilippa Gregory\r\n6718,7109,39792,\"Henning Mankell, Laurie Thompson\",Mannen som log,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265770l/39792.jpg,3.93,12545,\"mystery, crime\",\"\"\"Originally published in Sweden as Kvicksand by Leopard feorlag, Stockholm,\nin 2014\"\"--Title page verso.\"\r\n6719,7110,16012,Ai Yazawa,Paradise Kiss 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293641l/16012.jpg,4.11,14065,\"manga, romance\",Paradise Kiss 1Ai Yazawa\r\n6720,7111,4485966,Geoff Colvin,Talent Is Overrated: What Really Separates World-Class Performers from Everybody Else,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440778775l/4485966._SY475_.jpg,3.96,12511,\"business, psychology\",\"Wall Street Journaland BusinessWeekbestseller Asked to explain why a few\npeople truly excel, most people offer one of two answers. The first is hard\nwork. Yet we all know plenty of hard workers who have been doing the same\njob for years or decades without becoming great. The other possibility is\nthat the elite possess an innate talent for excelling in their field. We\nassume that Mozart was born with an astounding gift for music, and Warren\nBuffett carries a gene for brilliant investing. The trouble is, scientific\nevidence doesn't support the notion that specific natural talents make\ngreat performers. According to distinguished journalist Geoff Colvin, both\nthe hard work and natural talent camps are wrong. What really makes the\ndifference is a highly specific kind of effort-\"\"deliberate practice\"\"-that\nfew of us pursue when we're practicing golf or piano or stockpicking. Based\non scientific research, Talent is Overratedshares the secrets of\nextraordinary performance and shows how to apply these principles. It\nfeatures the stories of people who achieved world-class greatness through\ndeliberate practice-including Benjamin Franklin, comedian Chris Rock,\nfootball star Jerry Rice, and top CEOs Jeffrey Immelt and Steven Ballmer.\"\r\n6721,7112,3122173,Sherrilyn Kenyon,One Silent Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404685592l/3122173.jpg,4.13,21869,\"paranormal, fantasy\",\"Stryker, the adopted brother of the Dark-Hunter Acheron, prepares to lead\nan army of demons and vampires against the entire human race and annihilate\nthe Dark-Hunters, but the arrival of his ex-wife Zephyra throws his plans\nawry.\"\r\n6722,7113,61906,Lois McMaster Bujold,The Warrior's Apprentice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170597854l/61906._SY475_.jpg,4.29,15782,\"fiction, fantasy\",\"Discharged from the Barrarayan academy after flunking the physical, a\ndiscouraged Miles Vorkosigan takes possession of a jumpship and becomes the\nleader of a mercenary force that expands to a fleet of treasonous\nproportions. Reprint.\"\r\n6723,7114,2501453,\"أحلام مستغانمي, Ahlam Mosteghanemi\",عابر سرير,https://images.gr-assets.com/books/1291848845l/2501453.jpg,3.64,11783,\"romance, fiction\",\"Arabic novel about life among a group of thieves by the Nobel Prize winning\nEgyptian author.\"\r\n6724,7115,62103,\"George C. Perry, Clive Barda, Jane Rice, Andrew Lloyd Webber\",The Complete Phantom of the Opera,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440130005l/62103._SX318_.jpg,4.29,13681,\"classics, fiction\",\"This is the lavishly illustrated, definitive account of The Phantom of the\nOpera, tracing the Phantom legend from its origins in historical fact\nthrough Gaston Leroux's heartrending classic novel and other artistic\nincarnations to the present day and Andrew Lloyd Webber's incredibly\nsuccessful musical.\"\r\n6725,7116,295834,\"Michael Buckley, Peter Ferguson\",The Unusual Suspects,https://images.gr-assets.com/books/1276514128l/295834.jpg,4.22,17793,\"fantasy, mystery\",\"The Unusual SuspectsMichael Buckley, Peter Ferguson\"\r\n6726,7117,174845,Dietrich Bonhoeffer,Gemeinsames Leben,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525219497l/174845._SY475_.jpg,4.29,12811,\"religion, christian\",Gemeinsames LebenDietrich Bonhoeffer\r\n6727,7118,228992,Stephen R. Donaldson,The White Gold Wielder,https://images.gr-assets.com/books/1329385743l/228992.jpg,4.01,14117,\"fantasy, fiction\",\"The conclusion to \"\"The Second Chronicles of Thomas Covenant\"\" finds a\ndespairing Thomas Covenant deciding to do whatever must be done, at\nwhatever cost, to at last defeat and destroy Lord Foul\"\r\n6728,7119,203288,Anne McCaffrey,The Ship Who Sang,https://images.gr-assets.com/books/1355931323l/203288.jpg,4,18613,\"fantasy, fiction\",\"Follows Helva through her adventures in space after having been born human,\nbut only her brain was saved and implanted into the titanium body of an\nintergalactic space ship.\"\r\n6729,7120,23168817,\"Liu Cixin, Joel Martinsen\",黑暗森林,https://images.gr-assets.com/books/1412064931l/23168817.jpg,4.38,12476,\"fiction, ebooks\",\"This near-future trilogy is the first chance for English-speaking readers\nto experience this multiple-award-winning phenomenon from Cixin Liu,\nChina's most beloved science fiction author. In The Dark Forest, Earth is\nreeling from the revelation of a coming alien invasion-in just four\ncenturies' time. The aliens' human collaborators may have been defeated,\nbut the presence of the sophons, the subatomic particles that allow\nTrisolaris instant access to all human information, means that Earth's\ndefense plans are totally exposed to the enemy. Only the human mind remains\na secret. This is the motivation for the Wallfacer Project, a daring plan\nthat grants four men enormous resources to design secret strategies, hidden\nthrough deceit and misdirection from Earth and Trisolaris alike. Three of\nthe Wallfacers are influential statesmen and scientists, but the fourth is\na total unknown. Luo Ji, an unambitious Chinese astronomer and sociologist,\nis baffled by his new status. All he knows is that he's the one Wallfacer\nthat Trisolaris wants dead. The Remembrance of Earth's Past Trilogy The\nThree-Body Problem The Dark Forest Death's End Other Books Ball Lightning\n(forthcoming)\"\r\n6730,7121,11806716,Mira Grant,Blackout,https://images.gr-assets.com/books/1317680509l/11806716.jpg,4.11,14819,\"horror, fiction\",BlackoutMira Grant\r\n6731,7122,9489502,\"Douglas Preston, Lincoln Child\",Cold Vengance,https://images.gr-assets.com/books/1344264848l/9489502.jpg,4.09,13230,\"thriller, mystery\",\"Cold VenganceDouglas Preston, Lincoln Child\"\r\n6732,7123,32443,\"Leigh Nichols, Dean Koontz\",The Eyes of Darkness,https://images.gr-assets.com/books/1328218196l/32443.jpg,3.85,14002,\"fiction, thriller\",\"A tale to keep you awake all night... It's a year since Tina Evans lost her\nlittle boy Danny in a tragic accident, a year since she began the painful\nprocess of trying to rebuild her life. Then a shattering message appears on\nthe blackboard in Danny's old room: NOT DEAD. Is it someone's idea of a\ngrim joke? Or the tangible evidence of her tormented unconscious? Or\nsomething...more? The search for an answer, the search for Danny, demands a\ncourage and endurance beyond any that Tina thought she possessed. Only her\nlove for her son, her love for the one man who believes her, drives her on,\nthrough the neon clamour of Las Vegas nightlife, the sun-scorched desert,\nand the frozen mountains of the High Sierra. People die, coldly, brutally,\nas a buried truth struggles to surface. A truth so incredible, so\nfrightening, so dangerous that its secret must be kept at the price of any\nlife --- any man, any woman...any child.\"\r\n6733,7124,47957,Anne Bishop,Heir to the Shadows,https://images.gr-assets.com/books/1325423413l/47957.jpg,4.33,18541,\"fantasy, romance\",\"For young Jaenelle, amnesia keeps her frightening memories at bay. But with\nSaetan to protect her, her magic--and memories--will return. Jaenelle will\nsoon face her destiny when she remembers Daemon, Saetans son, who made the\nultimate sacrifice for her love.\"\r\n6734,7126,84844,Tami Hoag,Guilty as Sin (Deer Lake #2),https://images.gr-assets.com/books/1340516937l/84844.jpg,4.1,13575,\"mystery, suspense\",\"As prosecutor Ellen North prepares to try the man arrested for the\nabduction of little Josh Kirkwood in the small hamlet of Deer Lake,\nMinnesota, she confronts the sensation-driven news media, an old lover who\nhas become a defense attorney, an unwanted partner, and, suddenly, a second\nkidnapping. Reissue.\"\r\n6735,7127,153007,Jacqueline Carey,Kushiel's Scion,https://images.gr-assets.com/books/1344265086l/153007.jpg,4.19,16358,\"fantasy, romance\",Kushiel's ScionJacqueline Carey\r\n6736,7128,89185,Alastair Reynolds,Chasm City,https://images.gr-assets.com/books/1309203334l/89185.jpg,4.12,13802,\"fiction, mystery\",\"Tanner Mirabel ventures through the dark underside of Chasm City, a once\nutopian city overrun by a vicious virus known as the Melding Plague, in\npursuit of a lowlife postmortal and comes face to face with a centuries-old\natrocity that everyone would do anything to keep hidden. Reprint.\"\r\n6737,7129,6791212,Martin Sixsmith,\"The Lost Child of Philomena Lee: A Mother, Her Son And A Fifty Year Search\",https://images.gr-assets.com/books/1338612242l/6791212.jpg,3.65,7261,\"history, biography\",\"A compelling story of family secrets, love and lossWhen she fell pregnant\nas a teenager in Ireland in 1952, Philomena Lee was sent to the convent at\nRoscrea in Co. Tipperary to be looked after as a fallen woman. She cared\nfor her baby for three years until the Church took him from her and sold\nhim, like countless others, to America for adoption. Coerced into signing a\ndocument promising never to attempt to see her child again, she nonetheless\nspent the next fifty years secretly searching for him, unaware that he was\nsearching for her from across the Atlantic. Philomena's son, renamed\nMichael Hess, grew up to be a top Washington lawyer and a leading\nRepublican official in the Reagan and Bush administrations. But he was a\ngay man in a homophobic party where he had to conceal not only his\nsexuality but, eventually, the fact that he had AIDs. With little time\nleft, he returned to Ireland and the convent where he was born: his\ndesperate quest to find his mother before he died left a legacy that was to\nunfold with unexpected consequences for all involved. The Lost Child of\nPhilomena Lee is the tale of a mother and a son whose lives were scarred by\nthe forces of hypocrisy on both sides of the Atlantic and of the secrets\nthey were forced to keep. A compelling narrative of human love and loss,\nMartin Sixsmith's moving account is both heartbreaking yet ultimately\nredemptive.\"\r\n6738,7130,438024,Jim Benton,Let's Pretend This Never Happened (Dear Dumb Diary #1),https://images.gr-assets.com/books/1328861650l/438024.jpg,3.98,13347,\"fiction, contemporary\",\"In her diary, middle school student Jamie Kelly describes her life at home\nand at school, including her attempts to triumph over her nemesis, the\nbeautiful and popular Angeline.\"\r\n6739,7131,1432370,Liz Murray,\"Breaking Night: A Memoir of Forgiveness, Survival, and My Journey from Homeless to Harvard\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442723929l/1432370._SX318_.jpg,4.19,12664,\"memoir, nonfiction\",\"Breaking Night: A Memoir of Forgiveness, Survival, and My Journey from Homeless to HarvardLiz Murray\"\r\n6740,7132,8315872,\"J.D. Robb, Nora Roberts\",Treachery in Death,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440092413l/8315872._SY475_.jpg,4.43,17289,\"mystery, romance\",\"Treachery in DeathJ.D. Robb, Nora Roberts\"\r\n6741,7133,17797253,Nancy Horan,Under the Wide and Starry Sky,https://images.gr-assets.com/books/1367256646l/17797253.jpg,3.57,12105,\"history, fiction\",Under the Wide and Starry SkyNancy Horan\r\n6742,7134,13070346,Quinn Loftis,Blood Rites ,https://images.gr-assets.com/books/1321501581l/13070346.jpg,4.41,16421,\"paranormal, romance\",\"With the challenge complete and the corrupt Alpha of Coldspring, defeated\nFane is now free to complete the mate bond with Jacque and perform the\nBlood Rites ... but Jacque will soon realize a plan has been put in motion\nthat will change her course and possibly tear her from Fane's grasp\nforever.\"\r\n6743,7135,11908,\"Saul Bellow, Christopher Hitchens\",The Adventures of Augie March,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270246l/11908.jpg,3.84,12830,\"fiction, classics\",\"Augie's nonconformity leads him into an eventful, humorous, and sometimes\nearthy way of life.\"\r\n6744,7136,18221931,Tijan,Carter Reed,https://images.gr-assets.com/books/1376139745l/18221931.jpg,4.03,26670,\"romance, contemporary\",\"Emma decided to skip the gym and went home early. It was the last easy\ndecision she made because she found her roommate being raped by the\nboyfriend. She had two choices. Call the cops and be killed by his family’s\nmafia connections or kill him first and hope to survive. There was no\nchoice to her. She killed the bastard first and went to the one person who\ncould protect her. Carter Reed. He’s a weapon for the rivaling mafia\nfamily, but he’s also Emma’s secret. Not only was he best friends with her\nbrother, but she’s the reason he became that weapon in the first place.\nThis book is not for the faint of heart.\"\r\n6745,7137,47345,Tony Parsons,Man and Boy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388877591l/47345.jpg,3.55,11603,\"fiction, contemporary\",Man and BoyTony Parsons\r\n6746,7138,10115,Margaret George,The Memoirs of Cleopatra,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388502841l/10115.jpg,4.17,14235,\"fiction, history\",The Memoirs of CleopatraMargaret George\r\n6747,7139,10503124,Steve Berry,The Jefferson Key,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433168156l/10503124._SY475_.jpg,3.88,13472,\"thriller, fiction\",\"Cotton Malone battles a group of families whose influence dates back to the\nU.S. Constitution and who seeks to crack a code devised by Thomas Jefferson\nhimself in their quest for power. Reprint.\"\r\n6748,7140,18339630,Miriam Toews,All My Puny Sorrows,https://images.gr-assets.com/books/1416181263l/18339630.jpg,3.93,11602,\"fiction, contemporary\",All My Puny SorrowsMiriam Toews\r\n6749,7141,18339743,Miranda Beverly-Whittemore,Bittersweet,https://images.gr-assets.com/books/1404476771l/18339743.jpg,3.44,11544,\"fiction, mystery\",\"Winning a scholarship to a prestigious college where she befriends a\nbeautiful girl of privilege, unassuming Mabel joins her friend during a\nlakeside summer surrounded by wealthy vacationers only to discover morally\nambiguous truths about her friend's family fortune.\"\r\n6750,7142,513367,John Gribbin,In Search of Schrödinger's Cat : Quantum Physics And Reality,https://images.gr-assets.com/books/1440464162l/513367.jpg,4,12399,\"science, nonfiction\",\"An astrophysicist offers an introduction to the theoretical principles,\npractical applications, and far-reaching implications of quantum physics\nand quantum mechanics\"\r\n6751,7143,62571,F. Paul Wilson,The Keep ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925088l/62571.jpg,3.98,13211,\"horror, fiction\",The Keep F. Paul Wilson\r\n6752,7146,164323,David A. Vise,\"The Google Story: Inside the Hottest Business, Media, and Technology Success of Our Time\",https://images.gr-assets.com/books/1320394284l/164323.jpg,3.81,11158,\"business, biography\",\"An inside look at the billion-dollar enterprise reveals how the Internet\nicon grew from a concept to a social phenomenon with a bold mission: to\norganize all of the world's information and make it easily accessible to\npeople in more than one hundred languages. Reprint. 50,000 first printing.\"\r\n6753,7147,3344411,\"Hans Fallada, Michael Hofmann, Geoff Wilkes\",Jeder stirbt für sich allein,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275409l/3344411.jpg,4.21,6838,\"fiction, history\",\"Jeder stirbt für sich alleinHans Fallada, Michael Hofmann, Geoff Wilkes\"\r\n6754,7148,24934065,Alwyn Hamilton,Rebel of the Sands,https://images.gr-assets.com/books/1446829335l/24934065.jpg,3.96,16789,\"fantasy, romance\",\"\"\"First published in the United States of America by Viking, an imprint of\nPenguin Random House LLC, 2016\"\"--Title page verso.\"\r\n6755,7149,21618,Joe Haldeman,Forever Peace ,https://images.gr-assets.com/books/1267317517l/21618.jpg,3.73,14124,\"fiction, science\",\"Suffering from the psychological strains of the Ngumi War, soldierboy\noperator Julian Class, assisted by his lover, Dr. Amelia Harding, makes an\nastonishing scientific discovery that could restore the universe. Reprint.\"\r\n6756,7150,762064,\"J.D. Robb, Nora Roberts\",Betrayal in Death,https://images.gr-assets.com/books/1388255545l/762064.jpg,4.31,19215,\"mystery, romance\",\"New York Lieutenant Eve Dallas is up against a hit-man for the elite, whose\nnext target may be her own husband, Roarke.\"\r\n6757,7151,123632,\"C.G. Jung, Joseph L. Henderson, Aniela Jaffé, Jolande Jacobi, John Freeman, Marie-Louise von Franz\",Man and His Symbols,https://images.gr-assets.com/books/1327336291l/123632.jpg,4.18,12463,\"psychology, philosophy\",\"Explores Jung's psychological concepts regarding the nature, function and\nimportance of man's symbols as they appear on both the conscious and\nsubconscious level\"\r\n6758,7152,625554,Gerald N. Lund,\"The Work and the Glory, Vol. 1: Pillar of Light\",https://images.gr-assets.com/books/1416338631l/625554.jpg,4.28,12722,\"fiction, religion\",\"The Work and the Glory, Vol. 1: Pillar of LightGerald N. Lund\"\r\n6759,7153,7955881,Kazu Kibuishi,Amulet: Book Three: The Cloud Searchers,https://images.gr-assets.com/books/1422028852l/7955881.jpg,4.36,15936,\"fantasy, comics\",\"A latest entry in the best-selling series finds Emily, Navin and the gang\ntraveling by airship in search of the mythical cloud city of Cielis, a\nquest that is joined by the dubiously trustworthy son of the Elf King.\nOriginal.\"\r\n6760,7154,27276262,Steven  Rowley,Lily and the Octopus,https://images.gr-assets.com/books/1499086357l/27276262.jpg,3.74,13667,\"fiction, contemporary\",Lily and the OctopusSteven  Rowley\r\n6761,7155,3447,Tim O'Brien,In the Lake of the Woods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447688l/3447.jpg,3.78,12441,\"fiction, mystery\",\"Pursued by rumors of the atrocities he committed in Vietnam, a politician\nand his wife seek refuge in a lakeside cabin in northern Minnesota, where a\nmystery unfolds when the wife mysterious vanishes into the nearby\nwilderness. Reprint.\"\r\n6762,7156,6264710,\"Lisa Kleypas, Rosalyn Landor\",Tempt Me at Twilight,https://images.gr-assets.com/books/1380326419l/6264710.jpg,4.18,23125,\"romance, fiction\",\"Tempt Me at TwilightLisa Kleypas, Rosalyn Landor\"\r\n6763,7157,12677913,Colleen Houck,Tiger's Destiny,https://images.gr-assets.com/books/1340738756l/12677913.jpg,4.41,18503,\"fantasy, romance\",\"Kelsey, Ren and Kishan race against time and the evil sorcerer Lokesh on\nthe Andaman Islands in the Bay of Bengal as they seek Durga's final gift,\nthe Rope of Fire, that will finally break the tiger's curse.\"\r\n6764,7158,372385,Harlan Coben,Back Spin,https://images.gr-assets.com/books/1431404184l/372385.jpg,3.96,14333,\"mystery, fiction\",Back SpinHarlan Coben\r\n6765,7159,73100,Susan Elizabeth Phillips,This Heart of Mine,https://images.gr-assets.com/books/1391625031l/73100.jpg,4.12,21976,\"romance, contemporary\",\"Molly Somerville loves her career as the creator of the Daphne the Bunny\nchildren's book series, but the rest of her life could use some\nimprovement. She has a reputation for trouble that started even before she\ngave away her fifteen-million-dollar inheritance. Then there's her long-\nterm crush on the quarterback for the Chicago Stars football team her\nsister owns—that awful, gorgeous Kevin Tucker, a man who can't even\nremember Molly's name! One night Kevin barges into Molly's not-quite-\nperfect life and turns it upside down. Unfortunately, the Ferrari-driving\nriving, poodle-hating jock isn't as shallow as she wishes he were, and she\nsoon finds herself at a place called Wind Lake. Surrounded by paintbox\ncottages, including a charming old bed-and-breakfast, Molly and Kevin\nbattle their attraction and each other as they face one of life's most\nimportant lessons. Sometimes love hurts, sometimes it makes you mad as\nhell, and sometimes—if you're lucky—it can heal in a most unexpected way.\"\r\n6766,7160,13605727,Jennifer L. Armentrout,Elixir,https://images.gr-assets.com/books/1336124504l/13605727.jpg,4.41,21974,\"paranormal, fantasy\",\"In order to save Alex, Aiden St. Delphi will do anything, including making\nwar against the gods.\"\r\n6767,7161,17452179,Louise Doughty,Apple Tree Yard,https://images.gr-assets.com/books/1371030400l/17452179.jpg,3.71,10082,\"fiction, thriller\",\"Sitting in a courtroom after being charged with murder, a geneticist and\nhappily married mother of two reflects on her affair with a secret lover\nwho claimed a connection to the British government and who seduced her with\nan irresistible combination of sexual power, justice and revenge. By the\naward-nominated author of Whatever You Love. 50,000 first printing.\"\r\n6768,7162,136642,\"Douglas Preston, Lincoln Child\",The Ice Limit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172082459l/136642.jpg,3.97,12250,\"thriller, fiction\",\"The Ice LimitDouglas Preston, Lincoln Child\"\r\n6769,7165,389827,Janette Oke,When Calls the Heart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347248405l/389827.jpg,4.19,13609,\"romance, christian\",When Calls the HeartJanette Oke\r\n6770,7167,133241,Julie Garwood,Saving Grace,https://images.gr-assets.com/books/1304789462l/133241.jpg,4.25,19061,\"romance, fiction\",\"Sixteen-year-old widow Lady Johanna enters into a marriage of convenience\nwith Scottish warrior Gabriel MacBain, and she slowly suspects that she is\nfalling in love with her gruff, handsome husband. Reprint.\"\r\n6771,7168,7198269,Lisa Kleypas,Married By Morning,https://images.gr-assets.com/books/1380326600l/7198269.jpg,4.14,22830,\"romance, fiction\",Married By MorningLisa Kleypas\r\n6772,7169,30593,\"Vladimir Nabokov, David Lodge\",Pnin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434737531l/30593._SY475_.jpg,3.9,11538,\"fiction, classics\",\"The National Book Award-nominated classic finds hapless Russian migr\nTimofey Pnin precariously employed on an American college campus in the\n1950s, where he falls victim to subtle academic conspiracies and the\nmanipulations of the narrator. 10,000 first printing.\"\r\n6773,7170,76661,Piers Anthony,\"Being a Green Mother (Incarnations of Immortality, #5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388334575l/76661.jpg,3.95,15569,\"fantasy, fiction\",\"Orb, the daughter of Niobe, is chosen to become the Incarnation of Nature\nbut finds herself drawn to a mysterious man called Natasha--who may be the\nembodiment of Evil\"\r\n6774,7171,3334563,Cornelia Funke,Inkheart,https://images.gr-assets.com/books/1346484626l/3334563.jpg,4.17,14014,\"fantasy, romance\",\"Twelve-year-old Meggie learns that her father Mo, a bookbinder, can \"\"read\"\"\nfictional characters to life when an evil ruler named Capricorn, freed from\nthe novel \"\"Inkheart\"\" years earlier, tries to force Mo to release an\nimmortal monster from the story.\"\r\n6775,7172,537094,Nikolai Gogol,Шинель,https://images.gr-assets.com/books/1448040003l/537094.jpg,4.12,12091,\"classics, fiction\",ШинельNikolai Gogol\r\n6776,7173,102030,\"Eiji Yoshikawa, Charles Terry, Edwin O. Reischauer\",宮本武蔵 Miyamoto Musashi,https://images.gr-assets.com/books/1327942522l/102030.jpg,4.43,9574,\"fiction, classics\",\"When a Zen priest saves Musashi after the Battle of Sekigahara and confines\nhim in solitude to train and discipline his mind and spirit, Musashi\nattempts to become the greatest samurai in Japan\"\r\n6777,7174,6696465,Wendy Mass,Finally,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388620542l/6696465.jpg,4.19,13268,\"fantasy, fiction\",\"After her twelfth birthday, Rory checks off a list of things she is finally\nallowed to do, but unexpected consequences interfere with her involvement\nin the movie being shot at her school, while a weird prediction starts to\nmake sense.\"\r\n6778,7175,6398972,John Grisham,Ford County,https://images.gr-assets.com/books/1320454906l/6398972.jpg,3.56,13770,\"fiction, mystery\",\"The author returns to Ford County, Mississippi--the setting of his first\nnovel, \"\"A Time to Kill\"\"--in a collection of seven stories.\"\r\n6779,7176,93157,Matthew      Lewis,The Monk,https://images.gr-assets.com/books/1365712491l/93157.jpg,3.8,13633,\"classics, horror\",\"Ambrosio, the worthy superior of the Capuchins of Madrid, falls to the\ntemptations of Matilda, a fiend-inspired wanton who, disguised as a boy,\nhas entered his monastery as a novice. Ambrosio then falls in love with one\nof his penitents and finally kills her in order to escape detection.\nHowever, he is discovered, tortured by the Inquisition and sentenced to\ndeath. Although extravagant in its mixture of the supernatural, the\nterrible, and the indecent, the book contains scenes of great effect. The\nnovel is a prime example of 18th century Gothic, written partly in response\nto Walpole and Radcliffe and enjoyed a considerable contemporary vogue.\"\r\n6780,7177,23281640,John Sandford,Gathering Prey,https://images.gr-assets.com/books/1417985559l/23281640.jpg,4.18,9757,\"mystery, fiction\",\"When his adopted daughter's friend reports that someone has been killing\noff a circle of nomadic panhandlers, Lucas travels to North Dakota, where\nhe encounters a dangerously violent subculture.\"\r\n6781,7178,17232261,Jamie Ford,Songs of Willow Frost,https://images.gr-assets.com/books/1367527068l/17232261.jpg,3.64,13645,\"fiction, history\",\"Confined to Seattle's Sacred Heart Orphanage during the Great Depression,\nChinese-American boy William Eng becomes convinced that a certain movie\nactress is actually the mother he has not seen since he was seven years\nold.\"\r\n6782,7179,280366,\"Arnaldur Indriðason, Bernard Scudder\",Mýrin,https://images.gr-assets.com/books/1316129835l/280366.jpg,3.8,11803,\"mystery, crime\",\"Inspector Erlendur Sveinsson heads up the investigation into the killing of\na solitary man, found murdered in his Reykjavik apartment, only to discover\nthat the victim has only two friends, one in prison and one missing for\ntwenty-five years, and that the dead man had been accused but not convicted\nof a rape forty years earlier. Reader's Guide available. Reprint. 25,000\nfirst printing.\"\r\n6783,7180,28568,Jeffery Deaver,The Vanished Man,https://images.gr-assets.com/books/1257881028l/28568.jpg,4.08,13353,\"mystery, thriller\",\"Hunting down a killer and master illusionist whose first of several brutal\nmurders took place at a prestigious New York music school, investigator\nLincoln Rhyme and his protTgTe, Amelia Sachs, work together to prevent a\nterrifying act of vengeance.\"\r\n6784,7182,324737,\"Jim Cymbala, Dean Merrill\",\"Fresh Wind, Fresh Fire\",https://images.gr-assets.com/books/1384258871l/324737.jpg,4.24,11677,\"christian, nonfiction\",\"Pastor Jim Cymbala shares the lessons he learned when the Spirit ignited\nhis heart and began to move through his people. This book is for anyone\nseeking to live at the center of God's purposes, through experiencing the\npower of his Spirit. This softcover edition includes a study guide.\"\r\n6785,7183,12291438,Megan Shepherd,The Madman’s Daughter,https://images.gr-assets.com/books/1354155885l/12291438.jpg,3.69,17647,\"horror, fantasy\",The Madman’s DaughterMegan Shepherd\r\n6786,7184,16131072,\"James Patterson, Howard Roughan\",Second Honeymoon,https://images.gr-assets.com/books/1352225697l/16131072.jpg,3.89,11418,\"mystery, fiction\",\"Second HoneymoonJames Patterson, Howard Roughan\"\r\n6787,7185,23355069,Samantha Young,Hero,https://images.gr-assets.com/books/1413500793l/23355069.jpg,4.1,21777,\"romance, contemporary\",\"\"\"Alexa Holland's father was her hero--until her shocking discovery that her\nmother and she weren't his only family. Ever since, Alexa has worked to\nturn her life in a different direction and forge her own identity outside\nof his terrible secrets. But when she meets a man who's as damaged by her\nfather's mistakes as she is, Alexa must help him\"\"--\"\r\n6788,7186,55352,George Carlin,Brain Droppings,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389605173l/55352.jpg,4.11,13255,\"nonfiction, biography\",\"The veteran comic shares some thoughts, musings, questions, lists, beliefs,\ncuriosities, monologues, assumptions, and assertions about the follies of\nmodern life\"\r\n6789,7187,8696,\"Douglas Adams, Mark Carwardine\",Last Chance to See,https://images.gr-assets.com/books/1327867839l/8696.jpg,4.33,13860,\"science, nonfiction\",\"The authors provide an account of their journey around the world in search\nof endangered animals, including the kakapo of New Zealand, white rhinos in\nZaire, and the Komodo lizard\"\r\n6790,7188,1653655,Gordon Korman,Swindle,https://images.gr-assets.com/books/1328843225l/1653655.jpg,3.94,13562,\"mystery, fiction\",\"When his precious baseball card is stolen by a mean dealer named Swindle,\nGriffin Bing gathers up a group of courageous misfits and devises a plan to\nbreak into the compound to get it back. Reprint.\"\r\n6791,7190,15832932,Huntley Fitzpatrick,What I Thought Was True,https://images.gr-assets.com/books/1479774148l/15832932.jpg,3.71,16390,\"contemporary, romance\",\"Seventeen-year-old Gwen Castle is a working-class girl determined to escape\nher small island town, but when rich-kid Cass Somers, with whom she has a\ncomplicated romantic history, shows up, she's forced to reassess her\nfeelings about her loving, complex family, her lifelong best friends, her\nwealthy employer, the place where she lives and the boy she can't admit she\nloves.\"\r\n6792,7192,10429037,Sara Shepard,Ruthless,https://images.gr-assets.com/books/1314802629l/10429037.jpg,3.93,16885,\"mystery, fiction\",RuthlessSara Shepard\r\n6793,7193,18667976,Beatriz Williams,The Secret Life of Violet Grant,https://images.gr-assets.com/books/1393212446l/18667976.jpg,3.97,12825,\"fiction, romance\",\"\"\"Passion, redemption, and a battered old suitcase full of secrets: the New\nYork Times-bestselling author of A Hundred Summers returns with another\nengrossing tale of lost love and female ambition that crosses generations.\nManhattan, 1964. Vivian Schuyler, newly graduated from Bryn Mawr College,\nhas recently defied the privilege of her storied old Fifth Avenue family to\ndo the unthinkable for a budding Kennedy-era socialite: break into the Mad\nMen world of razor-stylish Metropolitan magazine. But when she receives a\nbulky overseas parcel in the mail, the unexpected contents draw her\ninexorably back into her family's past, and the hushed-over crime\npassionnel of an aunt she never knew, whose existence has been wiped from\nthe record of history. Berlin, 1914. Violet Schuyler Grant endures her\nmarriage to the philandering and decades-older scientist Dr. Walter Grant\nfor one reason: for all his faults, he provides the necessary support to\nher liminal position as a young American female physicist in prewar\nGermany. The arrival of Dr. Grant's magnetic former student at the\nbeginning of Europe's fateful summer interrupts this delicate detente.\nLionel Richardson, a captain in the British Army, challenges Violet to\nescape her husband's perverse hold, and as the world edges into war and\nLionel's shocking true motives become evident, Violet is tempted to take\nthe ultimate step to set herself free and seek a life of her own conviction\nwith a man whose cause is as audacious as her own. As the iridescent and\nfractured Vivian digs deeper into her aunt's past and the mystery of her\nultimate fate, Violet's story of determination and desire unfolds, shedding\nlight on the darkness of her years abroad and teaching Vivian to reach\nforward with grace for the ambitious future--and the love--she wants\nmost.\"\"--\"\r\n6794,7194,37338,Shayla Black,Wicked Ties,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430790214l/37338.jpg,3.97,22097,\"romance, contemporary\",\"Hiring bodyguard Jack Cole when a stalker turns dangerous, cable sex talk\nshow host Morgan O'Malley embarks on a passionate love affair with Jack,\nwith whom she lives out some of her most secret fantasies. Original. 25,000\nfirst printing.\"\r\n6795,7195,47878,Jenny Nimmo,\"Charlie Bone and the Beast (The Children of the Red King, # 6)\",https://images.gr-assets.com/books/1290344896l/47878.jpg,3.93,16397,\"fantasy, fiction\",\"The sixth magical adventure in the NY TIMES bestselling CHARLIE BONE\nseries! Life should be perfect for Charlie now that his parents have been\nreunited. But mystery and adventure always find him. This time Asa, a\nfellow classmate who changes into a beast at dusk and Charlie's sometime\nenemy, is missing. His parents seek out Charlie for help, and now Charlie\nneeds the help of the Flames to rescue his classmate. Manfred Bloor has\nalso taken the new endowed student, Dagbert Endless, under his wing and\nCharlie is highly suspicious of the pair. Can the Flames and Charlie rescue\nAsa without being caught by Manfred and Dagbert?\"\r\n6796,7196,27406436,Vi Keeland,The Baller: A Down and Dirty Football Novel,https://images.gr-assets.com/books/1447850960l/27406436.jpg,4.13,17375,\"romance, sports\",The Baller: A Down and Dirty Football NovelVi Keeland\r\n6797,7197,22055280,Brian Staveley,The Providence of Fire,https://images.gr-assets.com/books/1405301050l/22055280.jpg,4.16,11629,\"fantasy, fiction\",\"The Providence of Fire is the second novel in Brian Staveley's Chronicle of\nthe Unhewn Throne, a gripping new epic fantasy series The conspiracy to\ndestroy the ruling family of the Annurian Empire is far from over. Having\nlearned the identity of her father's assassin, Adare flees the Dawn Palace\nin search of allies to challenge the coup against her family. Few trust\nher, but when she is believed to be touched by Intarra, patron goddess of\nthe empire, the people rally to help her retake the capital city. As armies\nprepare to clash, the threat of invasion from barbarian hordes compels the\nrival forces to unite against their common enemy. Unknown to Adare, her\nbrother Valyn, a renegade member of the empire's most elite fighting force,\nhas allied with the invading nomads. The terrible choices each of them has\nmade may make war between them inevitable. Between Valyn and Adare is their\nbrother Kaden, rightful heir to the Unhewn Throne, who has infiltrated the\nAnnurian capital with the help of two strange companions. The knowledge\nthey possess of the secret history that shapes these events could save\nAnnur or destroy it.\"\r\n6798,7198,51985,\"Jean-Paul Sartre, Arlette Elkaïm-Sartre, Annie Cohen-Solal, Carol Macomber\",L'Existentialisme est un humanisme ,https://images.gr-assets.com/books/1328870158l/51985.jpg,3.96,12493,\"philosophy, classics\",\"This book presents a new English translation of two seminal works by Jean-\nPaul Sartre, the most dominant European intellectual of the post-World War\nII decades. The volume includes Sartre's 1945 lecture “Existentialism Is a\nHumanism” and his analysis of Camus's The Stranger, along with a discussion\nof these works by acclaimed Sartre biographer Annie Cohen-Solal. This\nedition is a translation of the 1996 French edition, which includes Arlette\nElkaïm-Sartre's introduction and a Q&A with Sartre about his lecture. In\nher foreword, intended for an American audience, acclaimed Sartre\nbiographer Annie Cohen-Solal offers an assessment of both works. It was to\ncorrect common misconceptions about his thought that Sartre accepted an\ninvitation to speak on October 29, 1945, at the Club Maintenant in Paris.\nThe unstated objective of his lecture (“Existentialism Is a Humanism”) was\nto expound his philosophy as a form of “existentialism,” a term much\nbandied about at the time. Sartre asserted that existentialism was\nessentially a doctrine for philosophers, though, ironically, he was about\nto make it accessible to a general audience. The published text of his\nlecture quickly became one of the bibles of existentialism and made Sartre\nan international celebrity. The idea of freedom occupies the center of\nSartre's doctrine. Man, born into an empty, godless universe, is nothing to\nbegin with. He creates his essence—his self, his being—through the choices\nhe freely makes (“existence precedes essence”). Were it not for the\ncontingency of his death, he would never end. Choosing to be this or that\nis to affirm the value of what we choose. In choosing, therefore, we commit\nnot only ourselves but all of mankind.\"\r\n6799,7199,15451058,Gloria Steinem,My Life on the Road,https://images.gr-assets.com/books/1440005972l/15451058.jpg,4.08,15997,\"memoir, nonfiction\",\"\"\"Includes 'Secrets' a new chapter\"\"--Cover.\"\r\n6800,7201,6609864,Lauren Conrad,Sugar and Spice,https://images.gr-assets.com/books/1258145375l/6609864.jpg,3.53,14901,\"fiction, romance\",\"Jane Roberts is a bona fide celebrity, she is treated like a queen, has\ncouture clothes and starlet looks. She also has the tabloid scandals, fake\nfriends and relentless paparazzi. Now that Jane has survived her first\nseason on the air, she has learned a few things. Most importantly -\nHollywood is full of people trying to use you.\"\r\n6801,7204,342994,\"Hans Christian Andersen, Rachel Isadora\",Den Lille Pige med Svovlstikkerne,https://images.gr-assets.com/books/1411481144l/342994.jpg,4.08,16478,\"classics, fiction\",\"The wares of the poor little match girl illuminate her cold world, bringing\nsome beauty to her brief, tragic life, in a classic tale illustrated by a\nCaldecott Honor artist. Reissue.\"\r\n6802,7205,95643,Rory Stewart,The Places In Between,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1567837295l/95643.jpg,3.88,11445,\"travel, nonfiction\",The Places In BetweenRory Stewart\r\n6803,7206,24611454,Nora Roberts,Stars of Fortune,https://images.gr-assets.com/books/1458079016l/24611454.jpg,4,12822,\"romance, fantasy\",\"BOOK ONE OF THE GUARDIANS TRILOGY To celebrate the rise of their new queen,\nthree goddesses of the moon created three stars, one of fire, one of ice,\none of water. But then they fell from the sky, putting the fate of all\nworlds in danger. And now three women and three men join forces to pick up\nthe pieces… Sasha Riggs is a reclusive artist, haunted by dreams and\nnightmares that she turns into extraordinary paintings. Her visions lead\nher to the Greek island of Corfu, where five others have been lured to seek\nthe fire star. Sasha recognizes them, because she has drawn them: a\nmagician, an archaeologist, a wanderer, a fighter, a loner. All on a quest.\nAll with secrets. Sasha is the one who holds them together—the seer. And in\nthe magician, Bran Killian, she sees a man of immense power and compassion.\nAs Sasha struggles with her rare ability, Bran is there to support her,\nchallenge her, and believe in her. But Sasha and Bran are just two of the\nsix. And they all must all work together as a team to find the fire star in\na cradle of land beneath the sea. Over their every attempt at trust, unity,\nand love, a dark threat looms. And it seeks to corrupt everything that\nstands in its way of possessing the stars…\"\r\n6804,7208,16342,Agatha Christie,Cat Among the Pigeons,https://images.gr-assets.com/books/1275665326l/16342.jpg,3.82,17221,\"mystery, fiction\",\"Hercule Poirot investigates when an unsuspecting student becomes the target\nof a killer who is terrorizing a famous school for girls.\"\r\n6805,7209,15786792,Edward Rutherfurd,Paris,https://images.gr-assets.com/books/1344117043l/15786792.jpg,3.95,8441,\"fiction, history\",ParisEdward Rutherfurd\r\n6806,7210,77995,Guy de Maupassant,The Necklace and Other Short Stories,https://images.gr-assets.com/books/1327649717l/77995.jpg,3.94,11688,\"classics, fiction\",\"Nine memorable classics: \"\"Ball of Fat,\"\" \"\"The Necklace,\"\" \"\"A Piece of\nString,\"\" \"\"Mme. Tellier's Establishment,\"\" \"\"Mademoiselle Fifi,\"\" \"\"Miss\nHarriet,\"\" \"\"A Way to Wealth,\"\" \"\"My Uncle Jules,\"\" and \"\"The Horla.\"\"\"\r\n6807,7211,84786,Michael Connelly,Void Moon,https://images.gr-assets.com/books/1344267460l/84786.jpg,3.95,14090,\"mystery, fiction\",\"New York Times bestselling author Michael Connelly writes novels of\nbrilliantly original suspense. In this electrifying tour de force, he takes\nus into a world of extremes: too much criminality, too much money, and too\nmany ways to die. In L.A. Cassie Black is another beautiful woman in a\nPorsche: except Cassie just did six years in prison and still has \"\"outlaw\njuice\"\" flowing in her veins. Now Cassie is returning to her old profession,\ntaking down a money man in Vegas. But the perfect heist goes very wrong,\nand suddenly Cassie is on the run--with a near-psychotic Vegas \"\"fixer\"\"\nkilling everyone who knew about the job. Between Cassie and the man hunting\nher are a few last secrets: like who really set up the job, why Cassie had\nto take the change, and how, in the end, it might all be a matter of the\nmoon...\"\r\n6808,7212,34057,Rudyard Kipling,Captains Courageous,https://images.gr-assets.com/books/1327959659l/34057.jpg,3.88,14823,\"classics, fiction\",\"After being washed overboard from an ocean liner, fifteen-year-old Harvey\nCheyne, spoiled son of a millionaire, is rescued by New England fishermen\nwho put him to work on their boat.\"\r\n6809,7214,31333,Anne Rice,Violin,https://images.gr-assets.com/books/1479198883l/31333.jpg,3.26,14911,\"fiction, horror\",\"Triana, a beautiful young woman who dreams of becoming a great musician,\nfalls prey to the demonic Stefan, the tormented ghost of a Russian\naristocrat, who seduces and manipulates her, drawing her into the dark side\ninto her own nature and then into the cruel past. 750,000 first printing.\nBOMC Main.\"\r\n6810,7215,25527908,Sharon Guskin,The Forgetting Time,https://images.gr-assets.com/books/1442527065l/25527908.jpg,3.79,8457,\"fiction, mystery\",The Forgetting TimeSharon Guskin\r\n6811,7217,13618,\"Tsugumi Ohba, Takeshi Obata\",デスノート #3 (Desu Nōto) Gekisō (激走),https://images.gr-assets.com/books/1419952370l/13618.jpg,4.42,18012,\"manga, fantasy\",The third in the bestselling and award-winning manga series Death Note.\r\n6812,7218,11309018,John Flanagan,The Lost Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348471987l/11309018.jpg,4.27,15816,\"fantasy, fiction\",\"In 1896, an archaeological dig unearths an ancient trunk containing\nmanuscripts that confirm the existence of Araluen Rangers Will and Halt and\ntell of their first meeting and some of their previously unknown exploits.\"\r\n6813,7219,15738951,Lee Child,\"Deep Down (Jack Reacher, #16.5)\",https://images.gr-assets.com/books/1373921650l/15738951.jpg,3.87,9916,\"thriller, fiction\",\"While hitchhiking through West Texas, former MP Jack Reacher encounters a\nyoung woman seeking protection for herself and her little girl from her\nmonstrous husband, due to be released from jail, and his horrible family.\nReissue.\"\r\n6814,7220,10947600,Hannah Harrington,Saving June,https://images.gr-assets.com/books/1349156138l/10947600.jpg,3.97,14867,\"contemporary, romance\",\"\"\"If she'd waited less than two weeks, my sister would be June who died in\nJune. But I guess she never took that into account.\"\" Harper Scott's older\nsister, June, took her own life a week before high school graduation,\nleaving Harper devastated. So when her divorcing parents decide to split up\nJune's ashes, Harper steals the urn and takes off cross-country with her\nbest friend, Laney, to the one place June always dreamed of going--\nCalifornia. Enter Jake Tolan, a boy with a bad attitude, a classic-rock\nobsession...and an unknown connection to June. When he insists on joining\nthem, Harper's just desperate enough for answers to let him. With his\nalternately charming and infuriating demeanor and his belief that music can\nsee you through anything, he might be exactly what Harper needs.\nExcept...Jake's keeping a secret that has the power to turn her life upside\ndown--again.\"\r\n6815,7221,23398806,M.J. Arlidge,Eeny Meeny,https://images.gr-assets.com/books/1418746579l/23398806.jpg,3.88,8498,\"thriller, crime\",Eeny MeenyM.J. Arlidge\r\n6816,7223,7830126,Dean Koontz,What the Night Knows,https://images.gr-assets.com/books/1308459193l/7830126.jpg,3.74,13873,\"horror, fiction\",\"A companion to The Darkest Evening of the Year centers on an iconic Belgian\nshepherd that accompanies a man on a cross-country road trip marked by\nheart-stopping danger and colorful characters. Reprint.\"\r\n6817,7224,16174197,Kitty French,Knight & Play,https://images.gr-assets.com/books/1354181901l/16174197.jpg,4.04,24297,\"romance, contemporary\",\"Book one of the ultra sexy Knight series from USA Today Best selling Author\nKitty French . God, this book is freakin' filthy! Awesome' - Goodreads\nreviewer. . Book 1 of 2 Sequel, Knight & Stay, out NOW! . There's only one\nthing in life Lucien Knight really hates, and that's husbands who cheat on\ntheir wives. There's only one problem in Sophie Black's life. Her cheating\nhusband... From the moment Lucien & Sophie meet, the seal is set. Romantic,\nemotional & intensely erotic, Knight and Play is the perfect read for\nlovers of international bestsellers Fifty Shades & Bared To You. Let\nyourself be swept away by Part One of the Knight series from Kitty French,\na romance so hot it'll burn your fingers... CEO of Knight Inc. Lucien\nKnight is catch-your-breath gorgeous and damaged by his troubled past in\nNorway. All grown up and relocated to London, he's built his empire of\nadult clubs from the ground up to become the gorgeous patron saint of the\nsex industry. No one knows the dark childhood secrets that have given\nLucien a backbone of steel and a heart encased in ice. No one until Sophie\nBlack, that is... From the moment girl-next-door Sophie accepts the job as\nLucien Knight's PA, she understands how Alice must have felt when she\ntumbled down the rabbit hole. Lucien takes her safe, vanilla life away and\nplunges her head first into a huge dish of fantasy flavours. Rich, spicy\nchocolate covered with dark, oozingly lickable sauce? Check. Tutti-frutti\nwith indecently red, glistening cherries on the top? Yes please. Lucien\nstrips away all of Sophie's inhibitions, and when he instructs her to\nselect three new toys, she soon realises he has more than a game of\nMonopoly on his mind... He's opened the door to a whole new pleasure packed\nworld without limits, and Sophie is utterly intoxicated. But how far is she\nwilling to go? And what happens when she has to step back into reality\nagain? Lucien & Sophie's is a story of star crossed love and forbidden\npassion, a sexual odyssey that spans the globe and changes both of their\nlives forever. Let it change yours, too.\"\r\n6818,7225,18405221,Anthony  Ryan,Queen of Fire,https://images.gr-assets.com/books/1417350958l/18405221.jpg,3.64,11985,\"fantasy, fiction\",\"\"\"In the thrilling conclusion to the bestselling Raven's Shadow trilogy,\nVaelin Al Sorna must help his queen reclaim her Realm. Only his enemy has a\ndangerous new collaborator, one with powers darker than Vaelin has ever\nencountered. The Ally is there, but only ever as a shadow, unexplained\ncatastrophe or murder committed at the behest of a dark and vengeful\nspirit. Sorting truth from myth is often a fruitless task. After fighting\nback from the brink of death, Queen Lyrna is determined to repel the\ninvading Volarian army and regain the independence of the Unified Realm.\nExcept, to accomplish her goals, she must do more than rally her loyal\nsupporters. She must align herself with forces she once found repugnant --\nthose who possess the strange and varied gifts of the Dark -- and take the\nwar to her enemy's doorstep. Victory rests on the shoulders of Vaelin Al\nSorna, now named Battle Lord of the Realm. However, his path is riddled\nwith difficulties. For the Volarians have a new weapon on their side, one\nthat Vaelin must destroy if the Realm is to prevail: a mysterious Ally with\nthe ability to grant unnaturally long life to his servants. And defeating\none who cannot be killed is a nearly impossible challenge, especially when\nVaelin's blood-song, the mystical power that has made him the epic fighter\nhe is, has gone ominously silent.\"\"\"\r\n6819,7226,404223,Stephen R. Donaldson,The Wounded Land,https://images.gr-assets.com/books/1323997527l/404223.jpg,3.96,14549,\"fantasy, fiction\",\"Returning to the fantastic land where he had routed the evil Lord Foul,\nThomas Covenant, now a legendary hero, must once again take up the quest to\ndestroy the land's sinister forces.\"\r\n6820,7227,249042,William Styron,Darkness Visible: A Memoir of Madness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190195l/249042.jpg,4.04,13396,\"memoir, psychology\",\"The author chronicles his descent into depression, discussing not only his\nown experience and recovery but also how others can find help\"\r\n6821,7228,13057939,Vaddey Ratner,In the Shadow of the Banyan,https://images.gr-assets.com/books/1346714710l/13057939.jpg,4.04,12946,\"fiction, history\",\"Her life of privilege in Cambodia shattered by the outbreak of civil war on\nthe streets of Phnom Penh, young Raami endures four years of loss,\nstarvation, and brutal forced labor while clinging to memories of the\nlegends and poems told to her by her father.\"\r\n6822,7230,6611038,Jennifer Estep,Spider's Bite,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1536005690l/6611038._SY475_.jpg,3.87,24192,\"fantasy, paranormal\",\"After Gin’s family was murdered by a Fire elemental when she was thirteen,\nshe lived on the streets and eventually became an assassin to survive. Now,\nGin is given an assignment by her handler to rub out an Ashland\nbusinessman, but it turns out to be a trap. After Gin’s handler is brutally\nmurdered, she teams up with the sexy detective investigating the case to\nfigure out who double-crossed her and why. Only one thing is for sure —Gin\nhas no qualms about killing her way to the top of the conspiracy.\"\r\n6823,7231,123845,Ralph Waldo Emerson,Self-Reliance and Other Essays,https://images.gr-assets.com/books/1319099192l/123845.jpg,4.14,14484,\"philosophy, classics\",\"A collection of six essays addresses the author's views on moral idealism,\nlaying the foundations for his later, more fully developed trancendentalist\nideologies.\"\r\n6824,7233,769016,\"Adele Faber, Elaine Mazlish, Kimberly Ann Coe\",How to Talk So Teens Will Listen and Listen So Teens Will Talk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442201568l/769016._SY475_.jpg,4.24,10931,\"nonfiction, psychology\",\"Adele Faber y Elaine Mazlish han ayudado a millones de familias con sus\nbestsellers. Ahora, y por primera vez en español, estas aclamadas expertas\na nivel internacional nos ofrecen una guía que le dará las herramientas\nnecesarias para ayudarles a sus adolescentes -- ¡y a usted mismo! -- a\nsobrevivir la etapa difícil de la adolescencia. \"\"Mi hijo de trece años pasa\nsu tiempo con los peores chicos de la escuela. Le paso diciendo que se\naleje de ellos, pero siempre me ignora. ¿Cómo hago para que me haga caso?\"\"\n\"\"Mi hija pasa mucho tiempo en el Internet charlando con un muchacho de\ndieciséis años. Bueno, por lo menos eso dice él. Ahora la quiere conocer.\nElla está muy entusiasmada. Yo tengo miedo. ¿Qué hago?\"\" \"\"Acabo de enterarme\nque mi hija de doce años fuma marihuana. ¿Cómo la confronto?\"\" Vivir con un\nadolescente puede ser abrumador. A veces es como si nuestros niños\ncariñosos se convirtieran de la noche a la mañana en adolescentes\nindependientes, con sus propios pensamientos, gustos y valores. Hoy en día,\nlos jóvenes están creciendo en un mundo más cruel, más materialista, más\nsexual y más violento que antes. ¿Qué se debe hacer? Tras muchos años de\ninvestigación, conferencias y comentarios que han recibido, Faber y\nMazlish, autoras del clásico bestseller Cómo Hablar para que los Niños\nEscuchen y Cómo Escuchar para que los Niños Hablen, han desarrollado una\ninnovadora forma de mantener un diálogo abierto y respetuoso entre padres y\nadolescentes, una estrategia que le pone frenos al conflicto, reduce\nfrustraciones y fomenta conversaciones acerca de las drogas, el sexo y\notros temas difíciles y de actualidad. Escrito en el estilo práctico y\npopular de estas galardonadas autoras, y lleno de sugerencias, historias y\ndibujos, esta guía le ayudará a construir una relación más comunicativa y\nmenos conflictiva con sus adolescentes.\"\r\n6825,7234,294951,\"Joseph Stein, Jerry Bock, Sheldon Harnick\",Fiddler On the Roof: Based on Sholom Aleichem's Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347523415l/294951.jpg,4.2,14049,\"classics, fiction\",Provides the music and lyrics for the long-running Broadway musical\r\n6826,7235,17607848,Sylvia Day,Afterburn,https://images.gr-assets.com/books/1369326801l/17607848.jpg,3.97,17821,\"romance, contemporary\",AfterburnSylvia Day\r\n6827,7236,7926,Sydney Taylor,All-of-a-Kind Family,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389583949l/7926.jpg,4.23,18383,\"fiction, classics\",\"Portrays the joys and troubles of five high-spirited Jewish sisters as they\ngrow up in New York City.\"\r\n6828,7237,18114057,Daniel Suarez,Influx,https://images.gr-assets.com/books/1374634071l/18114057.jpg,3.91,6938,\"fiction, thriller\",InfluxDaniel Suarez\r\n6829,7238,15560,Terry Brooks,Ilse Witch ,https://images.gr-assets.com/books/1403187876l/15560.jpg,3.95,14386,\"fantasy, fiction\",\"The discovery of a body pairs the last of the Druids, Walker Bob, with the\nmagical Isle Witch, a beautiful and enigmatic young woman who wields a\npowerful magic, on an epic voyage aboard the Jerle Shannara to solve a\nmystery. Reprint.\"\r\n6830,7239,95420,Katharine Graham,Personal History,https://images.gr-assets.com/books/1320504681l/95420.jpg,4.13,13714,\"memoir, biography\",\"The longtime owner of the Washington Post recounts her experiences,\nincluding how she rebounded from her husband's suicide to command the Post\nduring Vietnam and Watergate\"\r\n6831,7240,27824826,Jane Harper,The Dry,https://images.gr-assets.com/books/1456113132l/27824826.jpg,4.07,19843,\"mystery, fiction\",\"\"\"After getting a note demanding his presence, Federal Agent Aaron Falk\narrives in his hometown for the first time in decades to attend the funeral\nof his best friend Luke. Twenty years ago when Falk was accused of murder,\nLuke was his alibi. Falk and his father fled under a cloud of suspicion,\nsaved from prosecution only because of Luke's steadfast claim that the boys\nhad been together at the time of the crime. But now more than one person\nknows they didn't tell the truth back then, and Luke is dead\"\"--Amazon.com.\"\r\n6832,7241,40320,\"Janet Evanovich, Charlotte Hughes\",Full House,https://images.gr-assets.com/books/1479699904l/40320.jpg,3.63,17813,\"romance, mystery\",\"As polo instructor Nick Kaharchek and mother-of-two Billie Pearce enjoy a\nbudding romance, a killer closes in on them.\"\r\n6833,7242,291,\"Kahlil Gibran, Anthony R. Ferris\",الأجنحة المتكسرة,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347637124l/291.jpg,3.93,5611,\"poetry, classics\",\"الأجنحة المتكسرةKahlil Gibran, Anthony R. Ferris\"\r\n6834,7243,14889780,\"Douglas Preston, Lincoln Child\",Two Graves,https://images.gr-assets.com/books/1346937130l/14889780.jpg,4.03,12164,\"mystery, thriller\",\"Two GravesDouglas Preston, Lincoln Child\"\r\n6835,7244,13109291,Robin Hobb,Blood of Dragons,https://images.gr-assets.com/books/1341265576l/13109291.jpg,4.12,12165,\"fantasy, fiction\",\"Coming into their own in the lost city of Kelsingra, four dragon keepers\nwho have transformed into beautiful Elderlings must find the mythical\nsilver wells to keep their dragons alive while protecting them from\nencroaching enemies.\"\r\n6836,7245,539904,Cornelius Ryan,A Bridge Too Far,https://images.gr-assets.com/books/1326921431l/539904.jpg,4.24,13676,\"history, nonfiction\",\"Reviews the individuals, tactics, and events involved in Field Marshal\nBernard Law Montgomery's plan to end World War II\"\r\n6837,7246,87220,Jerry Spinelli,Loser,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347404110l/87220.jpg,3.72,15079,\"fiction, contemporary\",\"Just like other kids, Zinkoff rides his bike, hopes for snow days, and\nwants to be like his dad when he grows up. But Zinkoff also raises his hand\nwith all the wrong answers, trips over his own feet, and falls down with\nlaughter over a word like \"\"Jabip.\"\" Other kids have their own word to\ndescribe him, but Zinkoff is too busy to hear it. He doesn't know he's not\nlike everyone else. And one winter night, Zinkoff's differences show that\nany name can someday become \"\"hero.\"\"\"\r\n6838,7247,498835,Kate Mosse,Sepulchre,https://images.gr-assets.com/books/1328120460l/498835.jpg,3.73,13368,\"fiction, mystery\",SepulchreKate Mosse\r\n6839,7249,100247,Rolf Potts,Vagabonding: An Uncommon Guide to the Art of Long-Term World Travel,https://images.gr-assets.com/books/1320532720l/100247.jpg,3.92,13128,\"travel, nonfiction\",\"A complete guide to the vagabond approach to travel espouses taking time\noff from one's normal routine--for weeks to years--to discover the wonders\nof the world for oneself, explaining how to plan and prepare for travel,\nsimplify one's lifestyle and adapt to life on the road, handle travel\nadversity, and finally, reassimilate to ordinary life. Original. 15,000\nfirst printing.\"\r\n6840,7250,12383252,Laurell K. Hamilton,Kiss the Dead,https://images.gr-assets.com/books/1328767132l/12383252.jpg,3.79,18225,\"paranormal, fantasy\",\"U.S. Marshal Anita Blake must rescue a teenage girl who has been abducted\nby an ordinary group of people who turn out to be newly-turned vampires.\"\r\n6841,7251,10775,Ernest Hemingway,The Garden of Eden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405529251l/10775.jpg,3.74,12948,\"classics, fiction\",\"The last uncompleted novel of Ernest Hemingway, published posthumously in\n1986, charts the life of a young American writer and his glamorous wife who\nfall for the same woman. A sensational bestseller when it appeared in 1986,\nThe Garden of Eden is the last uncompleted novel of Ernest Hemingway, which\nhe worked on intermittently from 1946 until his death in 1961. Set on the\nCôte d'Azur in the 1920s, it is the story of a young American writer, David\nBourne, his glamorous wife, Catherine, and the dangerous, erotic game they\nplay when they fall in love with the same woman. \"\"A lean, sensuous\nnarrative...taut, chic, and strangely contemporary,\"\" The Garden of Eden\nrepresents vintage Hemingway, the master \"\"doing what nobody did better\"\" (R.\nZ. Sheppard, Time).\"\r\n6842,7252,1333030,Maya Banks,\"Sweet Surrender (Sweet Series, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1542977347l/1333030._SY475_.jpg,3.99,20856,\"romance, contemporary\",\"Searching for the man who had killed his partner, Dallas cop Gray\nMontgomery follows a trail of clues that lead to a link between the\nmurderer and Faith, a beautiful stranger, but when he tries to get close to\nher to uncover the truth, he discovers that his actions have now made Faith\na target. Original.\"\r\n6843,7253,22875,Stephen R. Donaldson,The One Tree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328044747l/22875.jpg,3.96,13812,\"fantasy, fiction\",The One TreeStephen R. Donaldson\r\n6844,7254,24816,Bill Watterson,Homicidal Psycho Jungle Cat: A Calvin and Hobbes Collection,https://images.gr-assets.com/books/1448818381l/24816.jpg,4.71,14113,\"comics, fiction\",\"Reprising the wide-open landscape format of, The Days Are Just Packed,\nHomicidal Psycho Jungle Cat chronicles another segment of the multifarious\nadventures of this wild child and his faithful, but skeptical, friend. If\nthe best cartoons compel readers to identify themselves within the funny\nframes, then all who enjoy Calvin and Hobbes are creative, imaginative, and\n... bad, bad, bad! Calvin, the irascible little boy with the stuffed tiger\nwho comes to life are a pair bound for trouble. Boring school lessons\nbecome occasions for death-defying alien air battles, speeding snow sled\ndescents elicit philosophical discussions on the meaning of life, and\nHobbe's natural inclination to pounce on his little friend wreaks havoc on\nCalvin's sense of security. Calvin's the kid we all wish we'd been. Sassy,\nimaginative, far more verbal than his parents can manage, Calvin is the\nquintessential bad boy -- and the boy we love to see. He terrorizes little\nSusie, offers \"\"Candid Opinions\"\" from a neighborhood stand, and questions\nhis parents' authority. \"\"What assurance do I have that your parenting isn't\nscrewing me up?\"\" he demands. Calvin and Hobbes manages to say what needs to\nbe said about childhood and life: \"\"Eww, mud,\"\" says Calvin. \"\"Look at this\ngooshy, dirty, slimy, thick, wet mud ... Bleecch ... Talk about a kid\nmagnet!\"\"\"\r\n6845,7255,17190226,J.C. Reed,Surrender Your Love,https://images.gr-assets.com/books/1359887738l/17190226.jpg,3.91,20398,\"romance, contemporary\",\"Meeting Jett was like lightning. Dangerous. Better left untouched. And\nbetter forgotten. But lightning always strikes twice. Brooke Stewart, a\nrealtor in New York, doesn't do relationships. When she's sent to a remote\nestate to finalize a real estate deal, she discovers her new boss is no\nother than the guy she left naked in bed. Sexy, dangerously handsome, and\narrogant Jett Mayfield attracts trouble, and women, like a lightning rod.\nBut the night he meets Brooke he gets more than he bargained for. The\ngreen-eyed millionaire playboy isn't used to taking no for an answer, and\nhe isn't about to start now. When he proposes two months of no strings sex,\nBrooke is intrigued and accepts his proposal. Little does she know Jett's\ndetermined to claim the one woman he can't have, pulling her deeper into\nhis dangerous world. A man who doesn't take 'no' for an answer. A woman\nafraid to surrender to love. Two lives that are about to cross...and\nsecrets laid bare.\"\r\n6846,7256,17985262,Matthew Mather,CyberStorm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394227619l/17985262.jpg,3.75,6028,\"fiction, thriller\",CyberStormMatthew Mather\r\n6847,7257,24476,Chuck Klosterman,Fargo Rock City: A Heavy Metal Odyssey in Rural North Dakota,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440854466l/24476._SY475_.jpg,3.8,11376,\"music, nonfiction\",\"Empirically proving that—no matter where you are—kids wanna rock, this is\nChuck Klosterman's hilrious memoir of growing up as a shameless metalhead\nin Wyndmere, North Dakotoa (population: 498). With a voice like Ace\nFrehley's guitar, Klosterman hacks his way through hair-band history,\nbeginning with that fateful day in 1983 when his older brother brought home\nMötley Crüe's Shout at the Devil. The fifth-grade Chuck wasn't quite ready\nto rock—his hair was too short and his farm was too quiet—but he still\nfound a way to bang his nappy little head. Before the journey was over, he\nwould slow-dance to Poison, sleep innocently beneath satanic pentagrams,\nlust for Lita Ford, and get ridiculously intellectual about Guns N' Roses.\nC'mon and feel his noize.\"\r\n6848,7258,795034,Tad Williams,To Green Angel Tower (Siege),https://images.gr-assets.com/books/1309992858l/795034.jpg,4.18,13830,\"fantasy, fiction\",\"As King Elias is drawn ever deeper into the nightmarish web of Sithi dark\nmagic, the allies of Prince Josua rally their forces at the Stone of\nFarewell, in preparation for a final confrontation with the undead Sithi\nStorm King and his evil minions. By the author of The Dragonbone Chair.\n50,000 first printing.\"\r\n6849,7259,6818019,\"Nujood Ali, Delphine Minoui, Linda Coverdale\",\"Moi Nojoud, 10 ans, divorcée\",https://images.gr-assets.com/books/1320467214l/6818019.jpg,3.79,13607,\"memoir, nonfiction\",\"The true story of a Yemeni child bride describes her forced marriage to an\nabusive husband three times her age, her pursuit of the marriage's\ndissolution, and the cultural factors that place girls at risk in Yemeni\nsociety.\"\r\n6850,7260,43798,Anne Rice,The Feast of All Saints,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385216547l/43798.jpg,3.83,15221,\"fiction, horror\",\"Set in nineteenth-century New Orleans, this colorful and evocative novel\ncaptures the lives of the gens de couleur libre, or the Free People of\nColor, a dazzling yet damned class caught between the worlds of white\nprivilege and black oppression. Reissue. (A Showtime/ABC-TV miniseries,\ndirected by Peter Medak, produced by Anne Rice, starring Forest Whitaker,\nPeter Gallagher, Jennifer Beals, Eartha Kitt, Pam Grier, Gloria Reuben, &\nBen Vereen)\"\r\n6851,7261,18453074,Joshua Ferris,To rise again at a decent hour,https://images.gr-assets.com/books/1391305201l/18453074.jpg,3.08,10270,\"fiction, contemporary\",To rise again at a decent hourJoshua Ferris\r\n6852,7262,150720,David Auburn,Proof: A Play,https://images.gr-assets.com/books/1417605435l/150720.jpg,4.01,13777,\"fiction, contemporary\",\"Reissued to coincide with the release of the film version which stars\nGwyneth Paltrow, Anthony Hopkins and Jake Gyllenhaal\"\r\n6853,7263,121581,\"Robert A. Heinlein, Damon Knight\",The Past through Tomorrow,https://images.gr-assets.com/books/1325885616l/121581.jpg,4.15,13920,\"fiction, classics\",\"The Past through TomorrowRobert A. Heinlein, Damon Knight\"\r\n6854,7264,86525,Robert A. Caro,Master of the Senate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189118l/86525.jpg,4.41,11411,\"biography, history\",\"Describes the future president's career in the U.S. Senate, from breaking\nthe southern control of Capitol Hill to passing the first civil rights\nlegislation since Reconstruction.\"\r\n6855,7265,15722284,Dean Koontz,Saint Odd,https://images.gr-assets.com/books/1403303609l/15722284.jpg,4.12,11714,\"horror, fantasy\",\"\"\"Two years after the cataclysmic events that sent him journeying into\nmystery, Odd Thomas, the intrepid fry cook who sees the dead and tries to\nhelp them, has traveled full circle, back to his beloved home town of Pico\nMundo and the people he loves. He has come to save them--and perhaps\nhumanity--from the full flowering of evil it is his destiny to confront, as\nhe draws ever closer to the truth of the world and his place in it.\nStronger, wiser than he started, and with the help of the friends he has\nmade along the way, Odd prepares to confront the terrible forces arrayed\nagainst him and possibly to journey still farther, to his long-awaited\nreunion with his lost love, Stormy Llewellyn\"\"--Provided by publisher.\"\r\n6856,7266,6671,Roald Dahl,The Wonderful Story Of Henry Sugar And Six More,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389581369l/6671.jpg,4.15,13419,\"fiction, fantasy\",\"An account of how the author came to be a writer and selections from his\nwriter's notebook augment stories juxtaposing fantasy and truth, and\npeopled with outrageous and courageous characters.\"\r\n6857,7268,7926242,Patricia Cornwell,Port Mortuary,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435641760l/7926242._SY475_.jpg,3.55,14765,\"mystery, fiction\",Port MortuaryPatricia Cornwell\r\n6858,7269,672948,Erich Maria Remarque,Arc de Triomphe,https://images.gr-assets.com/books/1353844109l/672948.jpg,4.4,11391,\"fiction, classics\",\"Driven out of Nazi Germany, Ravic, a prominent surgeon, finds refuge in\nParis, where he meets and falls in love with a French actress\"\r\n6859,7270,154795,\"Dan Jurgens, Jerry Ordway, Louise Simonson, Roger Stern, Jon Bogdanove, Tom Grummett, Jackson Butch Guice, Brett Breeding, Rick Burchett, Doug Hazlewood, Dennis Janke, Denis Rodier\",The Death of Superman,https://images.gr-assets.com/books/1383536130l/154795.jpg,3.89,12630,\"comics, fiction\",\"Superman meets his end while confronting a mysterious, and seemingly\nindestructible, adversary called Doomsday\"\r\n6860,7271,144800,Steven Hall,The Raw Shark Texts,https://images.gr-assets.com/books/1405099268l/144800.jpg,3.87,11010,\"fiction, fantasy\",\"Waking up in an unfamiliar place, unable to remember who he is, and\nattacked by a force he cannot see, Eric Sanderson discovers he is being\nhunted by a psychic predatory shark that may exist only in his mind but\nsoon starts making some very real appearances in his world.\"\r\n6861,7272,27904311,Rick Riordan,The Hammer of Thor,https://images.gr-assets.com/books/1463950690l/27904311.jpg,4.37,22736,\"fantasy, fiction\",\"Thor's hammer is missing again. The thunder god has a disturbing habit of\nmisplacing his weapon - the mightiest force in the Nine Worlds. But this\ntime the hammer isn't just lost, it has fallen into enemy hands. If Magnus\nChase and his friends can't retrieve the hammer quickly, the mortal worlds\nwill be defenseless against an onslaught of giants. Ragnarok will begin.\nThe Nine Worlds will burn. Unfortunately, the only person who can broker a\ndeal for the hammer's return is the gods' worst enemy, Loki - and the price\nhe wants is very high.\"\r\n6862,7273,15771862,Sonali Deraniyagala,Wave,https://images.gr-assets.com/books/1362126716l/15771862.jpg,3.7,12008,\"memoir, nonfiction\",\"A memoir of the author's experiences as a survivor of the 2004 tsunami that\nkilled her parents, husband, and two young sons recounts her struggles with\nprofound grief and survivor's guilt and her gradual steps toward healing.\"\r\n6863,7274,1307,\"Margaret Weis, Tracy Hickman\",Fire Sea,https://images.gr-assets.com/books/1325422748l/1307.jpg,4.05,14707,\"fantasy, fiction\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n6864,7275,13547504,Andrew Solomon,\"Far from the Tree: Parents, Children, and the Search for Identity\",https://images.gr-assets.com/books/1363008433l/13547504.jpg,4.26,11879,\"nonfiction, psychology\",\"The National Book Award-winning author of The Noonday Demon explores the\nconsequences of extreme personal differences between parents and children,\ndescribing his own experiences as a gay child of straight parents while\nevaluating the circumstances of people affected by physical, developmental\nor cultural factors that divide families. 150,000 first printing.\"\r\n6865,7276,958277,\"Barbara Park, Denise Brunkus\",Junie B. Jones and the Stupid Smelly Bus,https://images.gr-assets.com/books/1353109909l/958277.jpg,3.9,16918,\"fiction, contemporary\",\"In her own words, a young girl describes her feelings about starting\nkindergarten and what she does when she decides not to ride the bus home.\"\r\n6866,7277,23887,\"Gabriel García Márquez, Gregory Rabassa\",El otoño del patriarca,https://images.gr-assets.com/books/1410136666l/23887.jpg,3.84,10576,\"fiction, ebooks\",\"A \"\"poem on the solitude of power\"\" according to the author, the novel is a\nflowing tract on the life of an eternal dictator. The book is divided into\nsix sections, each retelling the same story of the infinite power held by\nthe archetypical Caribbean tyrant. García Márquez based his fictional\ndictator on a variety of real-life fascists, including Gustavo Rojas\nPinilla of his Colombian homeland, Generalissimo Francisco Franco of Spain\n(the novel was written in Barcelona), and Venezuela's Juan Vicente Gómez.\nThe product is a universal story of the disastrous effects created by the\nconcentration of power into a single man.\"\r\n6867,7278,3276637,Conn Iggulden,Bones of the Hills,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1540580457l/3276637._SY475_.jpg,4.32,11461,\"fiction, history\",\"The mighty Mongol conqueror, Genghis Khan, wreaks a path of destruction\nalong China's Great Wall.\"\r\n6868,7279,13330771,Oliver Sacks,Hallucinations,https://images.gr-assets.com/books/1440360108l/13330771.jpg,3.85,11443,\"science, psychology\",HallucinationsOliver Sacks\r\n6869,7280,12444297,Karen Marie Moning,Burned,https://images.gr-assets.com/books/1407503200l/12444297.jpg,4.12,17562,\"fantasy, paranormal\",\"NEW YORK TIMES BESTSELLER * \"\"Mac is back and badder than ever!\"\"--J. R. Ward\nMacKayla Lane and Jericho Barrons return in the blockbuster Fever series\nfrom Karen Marie Moning. It's easy to walk away from lies. Power is another\nthing. MacKayla Lane would do anything to save the home she loves. A gifted\nsidhe-seer, she's already fought and defeated the deadly Sinsar Dubh--an\nancient book of terrible evil--yet its hold on her has never been stronger.\nWhen the wall that protected humans from the seductive, insatiable Fae was\ndestroyed on Halloween, long-imprisoned immortals ravaged the planet. Now\nDublin is a war zone with factions battling for control. As the city heats\nup and the ice left by the Hoar Frost King melts, tempers flare, passions\nrun red-hot, and dangerous lines get crossed. Seelie and Unseelie vie for\npower against nine ancient immortals who have governed Dublin for\nmillennia; a rival band of sidhe-seers invades the city, determined to\nclaim it for their own; Mac's former protégé and best friend, Dani \"\"Mega\"\"\nO'Malley, is now her fierce enemy; and even more urgent, Highland druid\nChristian MacKeltar has been captured by the Crimson Hag and is being\ndriven deeper into Unseelie madness with each passing day. The only one Mac\ncan depend on is the powerful, dangerous immortal Jericho Barrons, but even\ntheir fiery bond is tested by betrayal. It's a world where staying alive is\na constant struggle, the line between good and evil is blurred, and every\nalliance comes at a price. In an epic battle against dark forces, Mac must\ndecide who she can trust, and what her survival is ultimately worth. Praise\nfor Burned \"\"Karen Marie Moning is back, delivering the kind of\nspellbinding, addictive, twisted tale we love to devour. Magic and madness,\nintrigue and illusion, passion and power, sexual tension and more sexual\ntension. . . . Burned is a book that shouldn't be missed. Thrilling,\nsuspenseful, sexy--it has all the right stuff to delight the most ardent of\nFever fans.\"\"--USA Today \"\"Dark, delicious suspense! Karen Marie Moning is my\nauthor of choice and Fever is my series of choice for action-packed\nsuspense with a spine-tingling paranormal twist.\"\"--#1 New York Times\nbestselling author Lisa Gardner \"\"A masterwork by an incomparable writer.\nBurned is brilliant, sexy, and dangerous. I adore Moning! No one does it\nbetter.\"\"--#1 New York Times bestselling author Sylvia Day \"\"Prepare for a\nheart-stopping trip into the epic Fever world, filled with gasp-out-loud\nsurprises and sweltering sensuality.\"\"--#1 New York Times bestselling author\nKresley Cole \"\"Burned gets the highest rating from me. I wanted to run\nthrough town shouting 'Mac is back! Mac is back!' Grab some snacks,\nsomething to drink, and settle down for a cover-to-cover read that will\nlikely keep you up all night.\"\"--New York Times bestselling author Linda\nHoward \"\"One of the most anticipated books in romance . . . Burned is told\nthrough several viewpoints, but the dominating view is Mac's, and it's\nwonderful to have her back, as well as get to spend time with the two\nAlphas in her life.\"\"--Heroes and Heartbreakers \"\"Deeply complex, heady and\naction-packed.\"\"--RT Book Reviews From the Hardcover edition.\"\r\n6870,7281,3301759,Edgar Allan Poe,The Murders in the Rue Morgue,https://images.gr-assets.com/books/1409105459l/3301759.jpg,3.92,15114,\"classics, mystery\",\"The story of a retired detective who is called upon to solve a perplexing\npair of murders is accompanied by commentary, biographical notes, and a\nreading group guide.\"\r\n6871,7282,104086,Guy Gavriel Kay,The Summer Tree,https://images.gr-assets.com/books/1412531529l/104086.jpg,3.99,16187,\"fantasy, fiction\",\"Five university students--Kimberly, Dave, Jennifer, Kevin, and Paul--meet a\nwizard who takes them to the heart of all worlds, Fionavar, where they\ndiscover who they were truly meant to be. Reprint.\"\r\n6872,7283,7909,\"Maud Hart Lovelace, Lois Lenski\",Betsy-Tacy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440321278l/7909._SY475_.jpg,4.07,18024,\"classics, fiction\",\"Best Friends Forever There are lots of children on Hill Street, but no\nlittle girls Betsy's age. So when a new family moves into the house across\nthe street, Betsy hopes they will have a little girl she can play with.\nSure enough, they do—a little girl named Tacy. And from the moment they\nmeet at Betsy's fifth birthday party, Betsy and Tacy becoms such good\nfriends that everyone starts to think of them as one person—Betsy-Tacy.\nBetsy and Tacy have lots of fun together. They make a playhouse from a\npiano box, have a sand store, and dress up and go calling. And one day,\nthey come home to a wonderful surprise—a new friend named Tib. Ever since\ntheir first publication in the 1940's, the Betsy-Tacy stories have been\nloved by each generation of young readers.\"\r\n6873,7284,2020935,Sara Zarr,Sweethearts,https://images.gr-assets.com/books/1336053590l/2020935.jpg,3.64,16515,\"contemporary, romance\",\"As children, Jennifer Harris and Cameron Quick were both social outcasts.\nThey were also one another's only friend. So when Cameron disappears\nwithout warning, Jennifer thinks she's lost the only person who will ever\nunderstand her. Now in high school, Jennifer has been transformed. Known as\nJenna, she's popular, happy, and dating, everything \"\"Jennifer\"\" couldn't be\n---but she still can't shake the memory of her long-lost friend. When\nCameron suddenly reappears, they are both confronted with memories of their\nshared past and the drastically different paths their lives have taken.\nFrom the National Book Award nominated author of Story of a Girl,\nSweethearts is a story about the power of memory, the bond of friendship,\nand the quiet resilience of our childhood hearts.\"\r\n6874,7285,1474628,Lauren Groff,The Monsters of Templeton,https://images.gr-assets.com/books/1328051913l/1474628.jpg,3.58,13849,\"fiction, mystery\",The Monsters of TempletonLauren Groff\r\n6875,7286,18107951,Charlaine Harris,Midnight Crossroad,https://images.gr-assets.com/books/1384456102l/18107951.jpg,3.63,15029,\"mystery, fantasy\",\"Describes what happens in Midnight, Texas, a dried-up, one traffic light\ntown, when a mysterious new resident, Manfred Bernardo, moves in.\"\r\n6876,7287,269746,Diane Mott Davidson,Catering to Nobody,https://images.gr-assets.com/books/1340227366l/269746.jpg,3.85,15777,\"mystery, fiction\",\"Catering a wake for her son's teacher leads Goldy Bear into the detective\nbusiness when rat poison turns up in her food and the police, except for\ninvestigator Tom Schulz, begin to treat her like a suspect.\"\r\n6877,7288,12614410,Julie Kagawa,The Lost Prince,https://images.gr-assets.com/books/1335463790l/12614410.jpg,4.05,21049,\"fantasy, paranormal\",\"Resentful of Meghan, the Fey Queen sister he believes deserted their\nfamily, Ethan Chase embarks on a dangerous journey into the fey world with\na girl he loves and a reluctant ally who might be his nephew.\"\r\n6878,7289,2095583,Kathy Reichs,Devil Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258845l/2095583.jpg,3.89,18180,\"mystery, crime\",\"When a plumber discovers the remains of a murdered girl and various dark\nreligious objects in the cellar of a client's house, Temperance Brennan is\ncalled in to investigate the case. Reprint.\"\r\n6879,7290,116114,James  Jones,From Here to Eternity,https://images.gr-assets.com/books/1330924946l/116114.jpg,4.09,13106,\"fiction, classics\",\"This is a novel of the soldiers who were poised on the brink of real\nmanhood when World War II flung them unceremoniously into that abyss.\nPrivate Robert E. Lee Prewitt is the nonconformist hero who refuses to box\nat Schofield Barracks and is slowly destroyed by his own rebelliousness.\nAround him, others are fighing their own small battles--and losing. --From\npublisher's description.\"\r\n6880,7291,389763,Wayne W. Dyer,Change Your Thoughts - Change Your Life: Living the Wisdom of the Tao,https://images.gr-assets.com/books/1328770256l/389763.jpg,4.24,11997,\"spirituality, philosophy\",\"Presents eighty-one essays discussing how to apply each verse of the Tao Te\nChing to life in the twenty-first century.\"\r\n6881,7292,81176,Michael Moore,\"Dude, Where's My Country?\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427030928l/81176.jpg,3.4,12468,\"nonfiction, history\",\"Dude, Where's My Country?Michael Moore\"\r\n6882,7293,364089,Mario Puzo,The Last Don,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436903416l/364089.jpg,3.8,11327,\"fiction, crime\",\"Determined to see his heirs established in legitimate society, mafia boss\nDomenico Clericuzio finds his vision threatened by secrets from his\nfamily's past that spark a vicious war between two cousins. Reprint.\"\r\n6883,7294,11995136,\"يوسف زيدان, Youssef Ziedan\",محال,https://images.gr-assets.com/books/1324288676l/11995136.jpg,3.31,10074,fiction,\"محاليوسف زيدان, Youssef Ziedan\"\r\n6884,7295,19452,Meg Cabot,Ready or Not,https://images.gr-assets.com/books/1327951939l/19452.jpg,3.4,21089,\"romance, fiction\",\"Top ten things Samantha Madison isn't ready for 10. Spending Thanksgiving\nat Camp David 9. With her boyfriend, the president's son 8. Who wants to\ntake things to the Next Level 7. Which Sam inadvertently announces live on\nMTV 6. While discussing the president's dubious policies on families,\nmorals, and, yes, sex 5. Juggling her new after-school job at Potomac Video\n4. Even though she's already the (unpaid) teen ambassador to the UN 3.\nGetting accosted because she's \"\"the redheaded girl who saved the\npresident's life,\"\" despite her new ebony tresses 2. Dealing with her\npopular sister Lucy, who for once can't get the guy she wants And the\nnumber-one thing Sam isn't ready for? 1. Finding out the hard way that in\nart class, \"\"life drawing\"\" means \"\"naked people\"\"\"\r\n6885,7296,128755,Kathy Reichs,Cross Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389771698l/128755.jpg,3.86,17850,\"mystery, crime\",Cross BonesKathy Reichs\r\n6886,7297,163363,Gerda Weissmann Klein,All But My Life,https://images.gr-assets.com/books/1316131452l/163363.jpg,4.28,13710,\"memoir, history\",\"All But My Life is the unforgettable story of Gerda Weissmann Klein's six-\nyear ordeal as a victim of Nazi cruelty. From her comfortable home in\nBielitz (present-day Bielsko) in Poland to her miraculous survival and her\nliberation by American troops--including the man who was to become her\nhusband--in Volary, Czechoslovakia, in 1945, Gerda takes the reader on a\nterrifying journey. Gerda's serene and idyllic childhood is shattered when\nNazis march into Poland on September 3, 1939. Although the Weissmanns were\npermitted to live for a while in the basement of their home, they were\neventually separated and sent to German labor camps. Over the next few\nyears Gerda experienced the slow, inexorable stripping away of \"\"all but her\nlife.\"\" By the end of the war she had lost her parents, brother, home,\npossessions, and community; even the dear friends she made in the labor\ncamps, with whom she had shared so many hardships, were dead. Despite her\nhorrifying experiences, Klein conveys great strength of spirit and faith in\nhumanity. In the darkness of the camps, Gerda and her young friends manage\nto create a community of friendship and love. Although stripped of the\nessence of life, they were able to survive the barbarity of their captors.\nGerda's beautifully written story gives an invaluable message to everyone.\nIt introduces them to last century's terrible history of devastation and\nprejudice, yet offers them hope that the effects of hatred can be overcome.\"\r\n6887,7298,577542,\"Rudyard Kipling, Jerry Pinkney\",Rikki-Tikki-Tavi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388410608l/577542.jpg,3.96,13851,\"classics, fiction\",\"Here is the thrilling story of Rikki, a fearless young mongoose who finds\nhimself locked in a life-and-death struggle to protect a boy and his\nparents from Nag and Nagaina, the two enormous cobras who stalk the gardens\noutside the family s home in India. Nobel Prize winner Rudyard Kipling s\ntimeless masterpiece has been lovingly passed from one generation of\nreaders to the next. Triumphantly brought to life in stunning watercolors\nfrom Caldecott Honor artist Jerry Pinkney, this is a tale that will win the\nhearts of young and old alike\"\r\n6888,7299,2249196,\"Grant Morrison, Frank Quitely\",\"All-Star Superman, Vol. 2\",https://images.gr-assets.com/books/1320477944l/2249196.jpg,4.33,12420,\"comics, fiction\",\"The Man of Steel goes toe-to-toe with Bizarro, his oddball twin, and the\nnew character Zibarro, also from the Bizarro planet.\"\r\n6889,7300,17345242,\"George R.R. Martin, Elio M. García Jr., Linda Antonsson\",The World of Ice and Fire,https://images.gr-assets.com/books/1400360220l/17345242.jpg,4.25,12119,\"fantasy, fiction\",\"A lavishly illustrated guide to the A Song of Ice and Fire universe traces\nthe pre-historical period and the coming of the First Men through the reign\nof the Targaryen kings and Robert's Rebellion. 75,000 first printing. TV\ntie-in.\"\r\n6890,7301,110386,Julia Quinn,\"To Sir Phillip, With Love\",https://images.gr-assets.com/books/1274211519l/110386.jpg,3.89,21928,\"romance, fiction\",\"Sir Phillip knew that Eloise Bridgerton was a spinster, and so he’d\nproposed, figuring that she’d be homely and unassuming, and more than a\nlittle desperate for an offer of marriage. Except . . . she wasn’t. The\nbeautiful woman on his doorstep was anything but quiet, and when she\nstopped talking long enough to close her mouth, all he wanted to do was\nkiss her . . . and more. Did he think she was mad? Eloise Bridgerton\ncouldn’t marry a man she had never met! But then she started thinking . . .\nand wondering . . . and before she knew it, she was in a hired carriage in\nthe middle of the night, on her way to meet the man she hoped might be her\nperfect match. Except . . . he wasn’t. Her perfect husband wouldn’t be so\nmoody and ill-mannered, and while Phillip was certainly handsome, he was a\nlarge brute of a man, rough and rugged, and totally unlike the London\ngentlemen vying for her hand. But when he smiled . . . and when he kissed\nher . . . the rest of the world simply fell away, and she couldn’t help but\nwonder . . . could this imperfect man be perfect for her?\"\r\n6891,7302,454236,\"Nando Parrado, Vince Rause\",Miracle in the Andes: 72 Days on the Mountain and My Long Trek Home,https://images.gr-assets.com/books/1320544978l/454236.jpg,4.21,11057,\"nonfiction, memoir\",\"A survivor of the horrific 1972 plane crash that stranded his rugby team in\nthe Andes for seventy-two days provides his account of the ordeal and of\nhis desperate expedition across seventy miles of frozen wilderness to find\nhelp.\"\r\n6892,7304,298730,Margaret Peterson Haddix,Among the Barons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178243l/298730.jpg,4.08,17495,\"fiction, fantasy\",\"Luke Garner, an illegal third child, spent his first twelve years in\nhiding. For the past four months Luke has lived among others, using the\nidentity of Lee Grant, at the Hendricks School for Boys. But just as things\nare finally starting to go right, Lee's little brother Smits arrives at the\nschool and Luke finds himself caught in a tangle of lies that gets more\ncomplex with every passing day. Can Luke trust Smits to keep his secret?\nAnd can he trust Smits's menacing bodyguard, Oscar?\"\r\n6893,7306,125662,R.L. Stine,Say Cheese and Die!,https://images.gr-assets.com/books/1328867794l/125662.jpg,3.72,15540,\"horror, fiction\",Say Cheese and Die!R.L. Stine\r\n6894,7307,328907,Bernard Cornwell,Sharpe's Tiger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525539270l/328907.jpg,4.08,12793,\"fiction, history\",Sharpe's TigerBernard Cornwell\r\n6895,7308,207684,Meg Cabot,Jinx,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440702549l/207684._SX318_.jpg,3.72,21745,\"fantasy, romance\",\"Sixteen-year-old Jean \"\"Jinx\"\" Honeychurch, the descendant of a witch, must\nleave Iowa to live with relatives in Manhattan after the first spell she\ncasts goes awry, but she will have to improve her skills to stop her cousin\nfrom practicing black magic that endangers them and the boy they both like.\"\r\n6896,7310,21874813,Alan Bradley,As Chimney Sweepers Come to Dust ,https://images.gr-assets.com/books/1406214651l/21874813.jpg,3.94,14337,\"mystery, fiction\",As Chimney Sweepers Come to Dust Alan Bradley\r\n6897,7311,13258,Zoë Heller,Notes on a Scandal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922976l/13258.jpg,3.69,11774,\"fiction, contemporary\",\"From the first day that the beguiling Sheba Hart joins the staff at St\nGeorge's, history teacher Barbara Covett is convinced that she has found a\nkindred spirit. Barbara's loyalty to her new friend is passionate and\nunstinting and when Sheba is discovered to be having an illicit affair with\none of her young pupils, Barbara quickly elects herself as Sheba's chief\ndefender. But all is not as it first seems in this dark story and, as Sheba\nwill soon discover, a friend can be just as treacherous as any lover. Now a\nmajor motion picture starring Judi Dench, Cate Blanchett and Bill Nighy.\"\r\n6898,7312,25293695,J.R. Ward,The Beast,https://images.gr-assets.com/books/1437025828l/25293695.jpg,4.45,13243,\"paranormal, romance\",\"Nothing is as it used to be for the Black Dagger Brotherhood. After\navoiding war with the Shadows, alliances have shifted and lines have been\ndrawn. The slayers of the Lessening Society are stronger than ever, preying\non human weakness to acquire more money, more weapons, more power. But as\nthe Brotherhood readies for an all-out attack on them, one of their own\nfights a battle within himself.\"\r\n6899,7313,65399,Dorothea Benton Frank,Sullivan's Island,https://images.gr-assets.com/books/1327888744l/65399.jpg,4.02,13081,\"fiction, romance\",\"Troubled by her unfaithful husband and difficult teenaged daughter, Susan\nHayes returns home to Sullivan's Island in an attempt to reconnect with her\npast\"\r\n6900,7314,229149,\"CLAMP, Anita Sengupta\",カードキャプターさくら 7 [Cardcaptor Sakura 7],https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176507l/229149.jpg,4.34,12151,\"manga, fantasy\",\"カードキャプターさくら 7 [Cardcaptor Sakura 7]CLAMP, Anita Sengupta\"\r\n6901,7315,10897866,G.P. Ching,The Soulkeepers (The Soulkeepers #1),https://images.gr-assets.com/books/1308260933l/10897866.jpg,3.71,7328,\"fantasy, fiction\",\"Includes book club discussion questions and an excerpt from the book 2,\nWeaving Destiny.\"\r\n6902,7316,33820,Nelson DeMille,Up Country,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288352l/33820.jpg,3.99,12902,\"fiction, thriller\",\"Retired Army investigator Paul Brenner is called back into service to\ninvestigate the death of a soldier thirty years earlier in Vietnam--a case\nthat stirs up many unpleasant memories. Reprint.\"\r\n6903,7317,1048645,Michael Morpurgo,Private Peaceful,https://images.gr-assets.com/books/1328868065l/1048645.jpg,4.16,13123,\"fiction, history\",Private PeacefulMichael Morpurgo\r\n6904,7318,383514,Rhys Bowen,Her Royal Spyness (Her Royal Spyness Mysteries #1),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174342700l/383514._SY475_.jpg,3.76,17498,\"mystery, fiction\",\"A penniless twenty-something member of the extended British royal family,\nLady Victoria, the daughter of the Duke of Atholt and Rannoch, puts her\nsleuthing talents to work when an arrogant Frenchman, who is determined to\ngain control of her family's eight-hundred-year-old estate for himself,\nends up dead in her bathtub. Reprint.\"\r\n6905,7319,12288282,Ilona Andrews,Gunmetal Magic,https://images.gr-assets.com/books/1331230049l/12288282.jpg,4.28,21396,\"fantasy, paranormal\",\"After being kicked out of the Order of Knights of Merciful Aid, Andrea Nash\nbegins working for Cutting Edge, a small investigative firm owned by her\nbest friend, Kate Daniels, and must enter the underbelly of supernatural\nAtlanta, where a killer waits, for her first assignment. Original. 100,000\nfirst printing.\"\r\n6906,7320,22381326,Joe Abercrombie,Half a War,https://images.gr-assets.com/books/1429885218l/22381326.jpg,4.01,10629,\"fantasy, fiction\",\"\"\"The final book in a stirring new epic fantasy trilogy following Half a\nKing and Half the World. Yarvi is the unlikely heir to the throne--a\nclever, thoughtful boy with a crippled hand who feels out of place in a\nviolent, Viking-like society. Thorn is a young girl, determined to follow\nin the footsteps of her dead father and become a famous warrior, whatever\nit takes. Now Yarvi has avenged the murder of his father, and sets out on\nan epic journey with Thorn that will embroil his kingdom in all-out war\"\"--\"\r\n6907,7322,15729261,Jennifer Probst,The Marriage Mistake,https://images.gr-assets.com/books/1348628724l/15729261.jpg,3.96,21512,\"romance, contemporary\",The Marriage MistakeJennifer Probst\r\n6908,7323,886512,Bruce Degen,Jamberry,https://images.gr-assets.com/books/1393791849l/886512.jpg,4.17,15478,\"fiction, poetry\",\"Hatberry Shoeberry In my canoeberry Under the bridge And over the dam\nLooking for berries Berries for jam They're off...a boy and an endearing,\nrhyme-spouting bear, who squires him through a fantastic world of berries.\nAnd their adventure comes to a razzamatazz finale under a starberry sky.\nChildren will want to feast again and again on Bruce Degen's exuberant,\ncolorful pictures and his rollicking, berryful rhymes. A young boy and a\nbear joyously romp through the land of berries where there are raspberry\nrabbits and a brassberry band with elephants skating on strawberry\njam!Bruce Degen's exuberant tale, with his equally energetic and vibrant\nillustrations, is now a quality board book.\"\r\n6909,7324,8269450,Kelley Armstrong,\"Darkest Powers Trilogy (Darkest Powers, #1-3)\",https://images.gr-assets.com/books/1411868332l/8269450.jpg,4.47,14473,\"paranormal, fantasy\",\"The Summoning The Darkest Powers Series, Book I After years of frequent\nmoves following her mother’s death, Chloe Saunders’s life is finally\nsettling down. She is attending art school, pursuing her dreams of becoming\na director, making friends, meeting boys. Her biggest concern is that she’s\nnot developing as fast as her friends are. But when puberty does hit, it\nbrings more than hormone surges. Chloe starts seeing ghosts–everywhere,\ndemanding her attention. After she suffers a breakdown, her devoted aunt\nLauren gets her into a highly recommended group home. At first, Lyle House\nseems a pretty okay place, except for Chloe’s small problem of fearing she\nmight be facing a lifetime of mental illness. But as she gradually gets to\nknow the other kids at the home–charming Simon and his ominous, unsmiling\nbrother Derek, obnoxious Tori, and Rae, who has a “thing” for fire–Chloe\nbegins to realize that there is something that binds them all together, and\nit isn’t your usual “problem kid” behaviour. And together they discover\nthat Lyle House is not your usual group home either… The Awakening The\nDarkest Powers Trilogy, Book II Book II in the Darkest Powers trilogy takes\nus deeper into a world where the supernatural intrudes on the everyday with\nriveting effect. If you had met me a few weeks ago, you probably would have\ndescribed me as an average teenage girl – someone normal. Now my life has\nchanged forever and I’m as far away from normal as it gets. A living\nscience experiment – not only can I see ghosts, but I was genetically\naltered by a group of people who call themselves The Edison Group. What\ndoes that mean? For starters, I’m a teenage necromancer whose powers are\nout of control: I raise the dead without even trying. Trust me, that is not\na power you want to have. Ever. I’m running for my life with three of my\nsupernatural friends – a charming sorcerer, a cynical werewolf, and a\ndisgruntled witch – and we have to find someone who can help us gain our\nfreedom back before The Edison Group finds us first. Or die trying. The\nReckoning The Darkest Powers Trilogy, Book III Only two weeks ago, life was\nall too predictable. But that was before I saw my first ghost. Now along\nwith my supernatural friends Tori, Derek, and Simon, I'm on the run from\nthe Edison Group, which genetically altered us as part of their sinister\nexperiment. We're hiding in a safe house that might not be as safe as it\nseems. We'll be gone soon anyway, back to rescue those we'd left behind and\ntake out the Edison Group . . . or so we hope.\"\r\n6910,7325,261604,Elizabeth Haydon,Rhapsody: Child of Blood,https://images.gr-assets.com/books/1453703106l/261604.jpg,3.95,16329,\"fantasy, fiction\",\"The debut of a new fantasy epic promises rich characters, intense action,\nand romance within the smoldering forges of the Cauldron. 100,000 first\nprinting.\"\r\n6911,7326,91201,Erich Segal,Doctors,https://images.gr-assets.com/books/1383563051l/91201.jpg,4,11331,\"fiction, romance\",\"Follows six Harvard Medical School students from the crucible of Harvard\nMed's training, through demanding internships and residencies, to the\nloves, triumphs, testings--and for some, tragedies--that confront them as\ndoctors\"\r\n6912,7327,142395,\"Amin Maalouf, Russell Harris\",Samarcande,https://images.gr-assets.com/books/1327995121l/142395.jpg,4.2,7600,\"fiction, history\",\"SamarcandeAmin Maalouf, Russell Harris\"\r\n6913,7328,7685763,J.D. Robb,Indulgence in Death,https://images.gr-assets.com/books/1292915498l/7685763.jpg,4.32,16464,\"mystery, romance\",Indulgence in DeathJ.D. Robb\r\n6914,7329,15852479,NoViolet Bulawayo,We Need New Names,https://images.gr-assets.com/books/1352225506l/15852479.jpg,3.71,11262,\"fiction, contemporary\",We Need New NamesNoViolet Bulawayo\r\n6915,7330,894072,Marian Potter,The Little Red Caboose (Little Golden Book),https://images.gr-assets.com/books/1364853044l/894072.jpg,4.21,15978,\"fiction, classics\",\"A little red caboose thinks nobody cares for him until he prevents his\ntrain from slipping backwards down a mountain.\"\r\n6916,7331,5093760,Jen Lancaster,\"Pretty in Plaid: A Life, a Witch, and a Wardrobe, or, the Wonder Years Before the Condescending, Egomanical, Self-Centered Smart-Ass Phase\",https://images.gr-assets.com/books/1484147603l/5093760.jpg,3.88,14860,\"memoir, nonfiction\",\"Pretty in Plaid: A Life, a Witch, and a Wardrobe, or, the Wonder Years Before the Condescending, Egomanical, Self-Centered Smart-Ass PhaseJen Lancaster\"\r\n6917,7332,180930,Scott Cunningham,Wicca: A Guide for the Solitary Practitioner,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347491489l/180930.jpg,4.01,12264,\"religion, spirituality\",\"Provides an overview of the earth-oriented religion, featuring solitary\nrituals for the Esbats and Sabbats, exercises to help develop magical\nproficiency, spells, and recipes.\"\r\n6918,7333,179142,\"Arthur Miller, Christopher Bigsby\",All My Sons,https://images.gr-assets.com/books/1309210788l/179142.jpg,3.87,15337,\"classics, fiction\",\"Presents the classic play, first produced in 1947, about guilt,\nresponsibility, and the relationship between fathers and sons in the\naftermath of a World War II corruption case.\"\r\n6919,7334,7863274,Cath Crowley,Graffiti Moon,https://images.gr-assets.com/books/1320129868l/7863274.jpg,3.9,14176,\"contemporary, romance\",\"Told in alternating voices, an all-night adventure features Lucy, who is\ndetermined to find a graffiti artist named Shadow, and Ed, the last person\nLucy wants to spend time with, except for the fact that he may know how to\nfind Shadow.\"\r\n6920,7335,845403,John Steptoe,Mufaro's Beautiful Daughters: An African Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442969300l/845403._SX318_.jpg,4.32,16479,\"fiction, fantasy\",An African tale inspired by a traditional story from South Africa.\r\n6921,7336,61904,Lois McMaster Bujold,Paladin of Souls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350884l/61904.jpg,4.13,15855,\"fantasy, fiction\",Paladin of SoulsLois McMaster Bujold\r\n6922,7337,13589182,Robert Greene,Mastery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348274726l/13589182.jpg,4.27,12717,\"business, psychology\",\"Evaluates the tactics employed by great historical figures to offer insight\ninto how to gain control over one's own life and destiny, challenging\ncultural myths to demonstrate how anyone can tap the power of a love for\ndoing something well to achieve high levels of success.\"\r\n6923,7338,4986,Kurt Vonnegut Jr.,\"God Bless You, Dr. Kevorkian\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388428899l/4986.jpg,3.83,11543,\"fiction, classics\",\"God Bless You, Dr. KevorkianKurt Vonnegut Jr.\"\r\n6924,7339,3090282,Molly Wizenberg,A Homemade Life: Stories and Recipes from My Kitchen Table,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347468210l/3090282.jpg,3.94,13310,\"memoir, cookbooks\",\"A creator of the award-winning Orangette blog presents a memoir about the\nlife lessons she learned in the kitchens of her youth, in a recipe-\ncomplemented account that describes experiences of loss and love while\nenjoying her father's French toast, her husband's pickles and her chocolate\nwedding cakes. Reprint.\"\r\n6925,7340,138069,David Wiesner,The Three Pigs,https://images.gr-assets.com/books/1172092242l/138069.jpg,4.15,16295,\"fiction, fantasy\",\"The three pigs escape the wolf by going into another world where they meet\nthe cat and the fiddle, the cow that jumped over the moon, and a dragon. By\nthe creator of the Caldecott Honor book, Sector 7.\"\r\n6926,7341,26123,Martin E.P. Seligman,Learned Optimism: How to Change Your Mind and Your Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190754l/26123.jpg,3.98,11310,\"psychology, nonfiction\",\"An authority on cognitive psychology and motivation documents the positive\neffects of optimism on the quality of life and provides a program of\nspecific exercises designed to break the pessimism habit while developing\nan optimistic outlook. Reprint. 25,000 first printing.\"\r\n6927,7342,7827221,Kimberly Derting,Desires of the Dead,https://images.gr-assets.com/books/1288223505l/7827221.jpg,4.07,20654,\"mystery, romance\",Desires of the DeadKimberly Derting\r\n6928,7343,563887,\"John Lawrence Peterson, Roberta Carter Clark\",The Littles,https://images.gr-assets.com/books/1360058166l/563887.jpg,3.98,15650,\"fantasy, fiction\",\"The LittlesJohn Lawrence Peterson, Roberta Carter Clark\"\r\n6929,7344,155106,\"Peggy Parish, Barbara Siebel Thomas\",Amelia Bedelia and the Surprise Shower,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347266336l/155106.jpg,4.27,14438,\"fiction, classics\",\"She's in trouble again! Fun-loving Amelia Bedelia is in charge of a\nsurprise wedding shower. And when she arrives with a garden hose, the\nentire party is turned into an uproarious mess!\"\r\n6930,7345,12125,Cynthia Voigt,\"Homecoming (Tillerman Family, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390250078l/12125.jpg,3.92,17023,\"fiction, contemporary\",\"The iconic start to the timeless, Newbery-winning series from Cynthia Voigt\nis repackaged with a fresh new look. “It’s still true.” That’s the first\nthing James Tillerman says to his older sister, Dicey, every morning. It’s\nstill true that their mother has abandoned the four Tillermans in a mall\nparking lot somewhere in the middle of Connecticut. It’s still true that\nthey have to find their own way to Great-aunt Cilla’s house in Bridgeport.\nIt’s still true that they need to spend as little as possible on food and\nseek shelter anywhere that is out of view of the authorities. It’s still\ntrue that the only way they can hope to all stay together is to just keep\nmoving forward. Deep down, Dicey hopes they can find someone to trust,\nsomeone who will take them in and love them. But she’s afraid it’s just too\nmuch to hope for....\"\r\n6931,7346,112751,Karen Marie Moning,Spell of the Highlander ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389924700l/112751.jpg,4.27,21143,\"romance, paranormal\",\"In her sexiest Highlander novel yet, \"\"New York Times\"\" bestselling author\nMoning stirs up a sizzling brew of ancient mystery and modern passion as\nshe brings together a devilishly handsome Celtic warrior trapped in time\nand the woman who's about to pay a high price for freeing him.\"\r\n6932,7347,28482,\"Margaret Weis, Tracy Hickman\",The Hand of Chaos,https://images.gr-assets.com/books/1327837169l/28482.jpg,4.05,14911,\"fantasy, fiction\",\"Chaos is everywhere as the Lord of the Nexus orders his servant Haplo and\nthe human child known as Bane to further their master's work on Arianus,\nthe realm of air. But their one time companion Alfred has been cast into\nthe deadly Labyrinth. And somehow the assassin Hugh the Hand has been\nresurrected to complete his dark mission. More important, the evil force\nthat Haplo and Alfred discovered on Arianus has escaped. As Haplo's doubts\nabout his master grow deeper, he must decide whether to obey the Lord of\nthe Nexus or betray the powerful Patryn...and endeavor to bring peace to\nthe universe.\"\r\n6933,7348,382680,Harlan Coben,One False Move,https://images.gr-assets.com/books/1403190750l/382680.jpg,4.07,13599,\"mystery, fiction\",\"Follows hot-headed sports agent Myron Bolitar as he tries to protect a star\nof the women's professional league, an attractive athlete whose troubled\npast may claim both their lives.\"\r\n6934,7349,62012,Roger Zelazny,The Guns of Avalon,https://images.gr-assets.com/books/1368213721l/62012.jpg,4.16,15131,\"fantasy, fiction\",\"Corwin, a prince who has escaped from prison, attempts to regain his right\nto the throne of the perfect kingdom, known as Amber\"\r\n6935,7350,163465,Katherine Paterson,The Great Gilly Hopkins,https://images.gr-assets.com/books/1443418961l/163465.jpg,3.83,15886,\"fiction, classics\",\"Eleven-year-old Gilly has been stuck in more foster families than she can\nremember, and she's disliked them all. She has a county-wide reputation for\nbeing brash, brilliant, and completely unmanageable. So when she's sent to\nlive with the Trotters -- by far the strangest family yet -- Gilly decides\nto put her sharp mind to work. Before long she's devised an elaborate\nscheme to get her real mother to come rescue her. But the rescue doesn't\nwork out, and the great Gilly Hopkins is left thinking that maybe life with\nthe Trotters wasn't so bad ...\"\r\n6936,7351,32807,Clive Cussler,Trojan Odyssey,https://images.gr-assets.com/books/1371338649l/32807.jpg,3.92,13635,\"fiction, thriller\",\"Underwater adventurer Dirk Pitt and the NUMA crew investigate a black tide\ninfesting the ocean off Nicaragua, a study complicated by the discovery of\na mysterious artifact, a powerful storm, and a conspiracy.\"\r\n6937,7352,138872,James Alexander Thom,Follow the River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387651947l/138872.jpg,4.21,13697,\"fiction, history\",\"Captured by the Shawnee Indians, Mary Ingles escapes and follows the Ohio\nRiver for a thousand miles back towards her home in Virginia\"\r\n6938,7353,91571,\"William Shakespeare, Barbara A. Mowat, Paul Werstine\",Measure for Measure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348266360l/91571.jpg,3.67,15474,\"classics, fiction\",\"Measure for Measure is among the most passionately discussed of\nShakespeare's plays. In it, a duke temporarily removes himself from\ngoverning his city-state, deputizing a member of his administration,\nAngelo, to enforce the laws more rigorously. Angelo chooses as his first\nvictim Claudio, condemning him to death because he impregnated Juliet\nbefore their marriage. Claudio's sister Isabella, who is entering a\nconvent, pleads for her brother's life. Angelo attempts to extort sex from\nher, but Isabella preserves her chastity. The duke, in disguise, eavesdrops\nas she tells her brother about Angelo's behavior, then offers to ally\nhimself with her against Angelo. Modern responses to the play show how it\ncan be transformed by its reception in present culture to evoke continuing\nfascination. To some, the duke (the government) seems meddlesome; to\nothers, he is properly imposing moral standards. Angelo and Isabella's\nencounter exemplifies sexual harassment. Others see a woman's right to\ncontrol her body in Isabella's choice between her virginity and her\nbrother's life. The authoritative edition of Measure for Measure from The\nFolger Shakespeare Library, the trusted and widely used Shakespeare series\nfor students and general readers, is now available as an eBook. Features\ninclude: · The exact text of the printed book for easy cross-reference ·\nHundreds of hypertext links for instant navigation · Freshly edited text\nbased on the best early printed version of the play · Full explanatory\nnotes conveniently placed on pages facing the text of the play · Scene-by-\nscene plot summaries · A key to famous lines and phrases · An introduction\nto reading Shakespeare’s language · Illustrations from the Folger\nShakespeare Library’s vast holdings of rare books · An essay by a leading\nShakespeare scholar providing a modern perspective on the play\"\r\n6939,7354,228221,\"Owen  West, Dean Koontz\",The Mask,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389216755l/228221.jpg,3.75,14336,\"horror, suspense\",\"Soon after Carol and Paul adopt a mysterious teenager suffering from\namnesia, terrible hauntings begin\"\r\n6940,7355,13514612,Cristin Terrill,All Our Yesterdays,https://images.gr-assets.com/books/1370046261l/13514612.jpg,4.05,16338,\"romance, fantasy\",All Our YesterdaysCristin Terrill\r\n6941,7357,5368,Kathleen Winsor,Forever Amber,https://images.gr-assets.com/books/1350464965l/5368.jpg,3.98,13286,\"fiction, romance\",\"Abandoned pregnant and penniless on the teeming streets of London, 16-year-\nold Amber St. Clare manages, by using her wits, beauty, and courage, to\nclimb to the highest position a woman could achieve in Restoration\nEngland—that of favorite mistress of the Merry Monarch, Charles II. From\nwhores and highwaymen to courtiers and noblemen, from events such as the\nGreat Plague and the Fire of London to the intimate passions of\nordinary—and extraordinary—men and women, Amber experiences it all. But\nthroughout her trials and escapades, she remains, in her heart, true to the\none man she really loves, the one man she can never have. Frequently\ncompared to Gone with the Wind, Forever Amber is the other great historical\nromance, outselling every other American novel of the 1940s—despite being\nbanned in Boston for its sheer sexiness. A book to read and reread, this\nedition brings back to print an unforgettable romance and a timeless\nmasterpiece.\"\r\n6942,7358,8619814,John  Stephens,The Emerald Atlas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180813l/8619814.jpg,3.92,15057,\"mystery, fantasy\",\"After years of moving from one orphanage to another following their\nparents' disappearance, Kate, Michael, and Emma learn that they have\nspecial powers, a prophesied quest to find a magical book, and a fearsome\nenemy.\"\r\n6943,7359,28390369,Zadie Smith,Swing Time,https://images.gr-assets.com/books/1456491713l/28390369.jpg,3.6,17311,\"fiction, contemporary\",\"An ambitious, exuberant new novel moving from North-West London to West\nAfrica, from the multi-award-winning author of White Teeth and On Beauty\nTwo brown girls dream of being dancers but only one, Tracey, has talent.\nThe other has ideas: about rhythm and time, about black bodies and black\nmusic, what constitutes a tribe, or makes a person truly free. It's a close\nbut complicated childhood friendship that ends abruptly in their early\ntwenties, never to be revisited, but never quite forgotten, either. Tracey\nmakes it to the chorus line but struggles with adult life, while her friend\nleaves the old neighborhood behind, traveling the world as an assistant to\na famous singer, Aimee, observing close up how the one percent live. But\nwhen Aimee develops grand philanthropic ambitions, the story moves from\nLondon to West Africa, where diaspora tourists travel back in time to find\ntheir roots, young men risk their lives to escape into a different future,\nthe women dance just like Tracey the same twists, the same shakes and the\norigins of a profound inequality are not a matter of distant history, but a\npresent dance to the music of time.\"\"\"\r\n6944,7360,42435,Doug Stanton,In Harm's Way: The Sinking of the U.S.S. Indianapolis and the Extraordinary Story of Its Survivors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442540445l/42435._SY475_.jpg,4.25,12406,\"history, nonfiction\",\"Chronicles the worst disaster in U.S. naval history, describing heroism in\nthe face of persistant shark attacks and hypothermia after the sinking of\nthe U.S.S. Indianapolis in the South Pacific in the final days of World War\nII.\"\r\n6945,7361,1819632,Yuna Kagesaki,Karin,https://images.gr-assets.com/books/1404303540l/1819632.jpg,3.99,13110,\"manga, romance\",KarinYuna Kagesaki\r\n6946,7362,18667779,Nina LaCour,Everything Leads to You,https://images.gr-assets.com/books/1389744233l/18667779.jpg,3.89,17583,\"contemporary, romance\",Everything Leads to YouNina LaCour\r\n6947,7363,363851,Wendy Mass,Jeremy Fink and the Meaning of Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442089244l/363851._SY475_.jpg,4.02,15567,\"fiction, mystery\",Jeremy Fink and the Meaning of LifeWendy Mass\r\n6948,7364,216048,Patricia Polacco,\"Thank You, Mr. Falker\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438482485l/216048._SX318_.jpg,4.52,13049,\"fiction, biography\",\"At first, Trisha loves school, but her difficulty learning to read makes\nher feel dumb, until, in the fifth grade, a new teacher helps her\nunderstand and overcome her problem.\"\r\n6949,7365,20821159,William Gibson,The Peripheral,https://images.gr-assets.com/books/1402651292l/20821159.jpg,3.94,8839,\"fiction, thriller\",\"Flynne Fisher lives in rural near-future America where jobs are scarce and\nveterans from the wars are finding it hard to recover. She scrapes a living\ndoing some freelance online game-playing, participating in some pretty\nweird stuff. Wilf Netherton lives in London, seventy-some years later, on\nthe far side of decades of slow-motion apocalypse. Things though are good\nfor the haves, and there aren't many have-nots left. Flynne and Wilf are\nabout to meet one another. Her world will be altered utterly, and Wilf's,\nfor all its decadence and power, will learn that some of these third-world\ntypes from the distant past can be real badass.\"\r\n6950,7366,6464937,Alice Munro,Too Much Happiness,https://images.gr-assets.com/books/1320459874l/6464937.jpg,3.82,12106,\"fiction, contemporary\",Too Much HappinessAlice Munro\r\n6951,7367,13614836,\"J. Lynn, Jennifer L. Armentrout\",Tempting the Best Man,https://images.gr-assets.com/books/1336112984l/13614836.jpg,3.73,25398,\"romance, contemporary\",\"Madison Daniels has worshipped her brother's best friend since they were\nkids. Everyone thinks she and Chase Gamble would make the perfect couple,\nbut there are two major flaws in their logic. 1) Chase has sworn off\nrelationships of any kind, and 2) after blurring the line between friends\nand lovers for one night four years ago, they can't stop bickering. Forced\ntogether for her brother's wedding getaway, Chase and Madison decide to\ncall a truce for the happy couple. Except all bets are off when they're\nforced to shack up in a tacky 70's honeymoon suite and survive a multitude\nof \"\"accidents\"\" as the family tries to prove their \"\"spark\"\" can be used than\nfor more than fighting. That is, if they don't strangle each other first...\"\r\n6952,7368,17158513,C.S. Pacat,Prince's Gambit,https://images.gr-assets.com/books/1356027904l/17158513.jpg,4.51,15899,\"fantasy, romance\",\"In order to stop a lethal plot and avoid war, Damen and Prince Laurent\ntravel to the battlefield, but as the truth of their pasts comes to light,\ntheir trust in each other is tested and their lives are put at risk.\"\r\n6953,7370,267243,William  Kennedy,Ironweed,https://images.gr-assets.com/books/1408926209l/267243.jpg,3.86,12194,\"fiction, classics\",\"In 1938, Francis Phelan, a murderer, is reduced to flop houses and hobo\njungles and returns to a depressed Albany, where--as a gravedigger--he\nshuffles his rag tag way to survival\"\r\n6954,7371,6621101,Jonathan Kellerman,Deception,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441374678l/6621101._SY475_.jpg,3.96,13026,\"mystery, fiction\",\"Detective Milo Sturgis and investigator Alex Delaware tackle the case of a\nmurdered teacher who before her death made a chilling DVD describing the\nsexual trauma she was suffering at the hands of three fellow teachers at\nher prestigious Los Angeles school. By the Edgar Award-winning author of\nTrue Detectives. Reprint.\"\r\n6955,7372,40580,Michael Moore,Stupid white men and other sorry excuses for the state of the nation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349128567l/40580.jpg,3.3,10835,\"nonfiction, history\",\"Remember when everything was looking up? When the government was running at\na surplus, pollution was disappearing, peace was breaking out in the Middle\nEast and Northern Ireland, and the Bridge to the 21st century was strung\nwith high–speed Internet cable and paved with 401K gold? Well, so much for\nthe future. Michael Moore, the award–winning provocateur behind Roger & Me\nand the bestseller Downsize This!, now returns to size up the new century –\nand that big, ugly special–interest group that's laying waste to the world\nas we know it: stupid white men. Whether he's calling for United Nations\naction to overthrow the Bush Family Junta, calling on African–Americans to\nplace 'whites only' signs over the entrances of unfriendly businesses, or\npraying that Jesse Helms will get kissed by a man, Stupid White Men is\nMike's Manifesto on Malfeasance and Mediocrity. So if you're feeling the\nsame way and you're wondering what's going to give out first – the economy,\nDick Cheney's pacemaker, or your new VW Beetle – here's the book for you.\"\r\n6956,7373,23766634,Sarah J. Maas,A Court of Wings and Ruin,https://images.gr-assets.com/books/1485528243l/23766634.jpg,4.54,55037,\"fantasy, romance\",\"Feyre has returned to the Spring Court, determined to gather information on\nTamlin's maneuverings and the invading king threatening to bring Prythian\nto its knees. But to do so she must play a deadly game of deceit-and one\nslip may spell doom not only for Feyre, but for her world as well. As war\nbears down upon them all, Feyre must decide who to trust amongst the\ndazzling and lethal High Lords-and hunt for allies in unexpected places. In\nthis thrilling third book in the #1 New York Times and USA Today\nbestselling series from Sarah J. Maas, the earth will be painted red as\nmighty armies grapple for power over the one thing that could destroy them\nall.\"\r\n6957,7374,4893390,Derek Landy,The Faceless Ones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347680563l/4893390.jpg,4.4,14971,\"fantasy, mystery\",\"Valkyrie screamed, sprinting toward Skulduggery. He looked up and reached\nout to her, but it was too late. . . . If you've read the other Skulduggery\nPleasant books by Derek Landy (and you really should have read them by\nnow), you've seen it all before: Some bad guy wants to bring about the end\nof the world, and Skulduggery and Valkyrie fight valiantly to stop it from\nhappening. A few people get hurt, sure, but everything's all right in the\nend. Well, not this time.\"\r\n6958,7375,63689,Paul Theroux,The Great Railway Bazaar: By Train Through Asia ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440437557l/63689._SY475_.jpg,3.91,12110,\"travel, nonfiction\",\"The author relates an account of the landscapes, characters, mishaps, and\nadventures he encountered on his grand railroad excursion from London to\nTokyo and back again on such classic railroads as the Orient, Mandalay, and\nTrans-Siberian Expresses. Reprint.\"\r\n6959,7376,13117308,Brad Thor,Black List,https://images.gr-assets.com/books/1339809055l/13117308.jpg,4.2,11176,\"thriller, fiction\",\"When his name is added to a secret government list of individuals slated\nfor assassination, counterterrorism operative Scot Harvath engages in a\nhigh-stakes game of survival while struggling to prevent a terrorist attack\nand learn who has framed him for treason.\"\r\n6960,7377,22417,\"Warren Ellis, Darick Robertson\",\"Transmetropolitan, Vol. 2: Lust for Life\",https://images.gr-assets.com/books/1427758922l/22417.jpg,4.35,13527,\"comics, fiction\",\"Washed-up journalist Spider Jerusalem returns to The City, a place of\nnoise, filth, and energy, where technology has drastically altered human\nlife.\"\r\n6961,7378,101869,Charles Stross,The Atrocity Archives,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440461724l/101869._SY475_.jpg,3.95,12600,\"fantasy, horror\",\"The father of modern computer science, Alan Turing paves the way for\nesoteric mathematical computations that, when used by Nazi Germany\"\r\n6962,7379,10867,Steve Martin,The Pleasure of My Company,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442278234l/10867._SX318_.jpg,3.78,12378,\"fiction, contemporary\",The Pleasure of My CompanySteve Martin\r\n6963,7380,138683,C.J. Sansom,Dark Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441320549l/138683._SY475_.jpg,4.24,11927,\"mystery, fiction\",\"When a friend's niece is charged with murder and threatened with torture\nfor her refusal to speak, 1540 lawyer Matthew Sharklake is granted an\nunexpected two-week reprieve to investigate the case if he will also accept\na dangerous assignment to find a legendary weapon of mass destruction. By\nthe author of Dissolution. Reader's Guide available. Reprint.\"\r\n6964,7382,11381910,Liz Moore,Heft,https://images.gr-assets.com/books/1327958826l/11381910.jpg,3.96,12722,\"fiction, contemporary\",\"An obese former academic shut-in and a poor kid dreaming of a successful\nbaseball career are linked together by a former student who transforms\ntheir lives in this novel from the author of The Words of Every Song.\n20,000 first printing.\"\r\n6965,7383,7998,Brian Jacques,Outcast of Redwall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422350841l/7998.jpg,3.9,15874,\"fantasy, fiction\",\"Raised by the good creatures of Redwall Abbey, the young ferret Veil is\ncast out after committing an unforgivable crime, and when his father, the\nleader of a vermin war gang, invites him to join them, Veil faces a\ndifficult choice. Reprint. AB. PW.\"\r\n6966,7384,543873,Lloyd Jones,Mister Pip,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308963140l/543873.jpg,3.66,11657,\"contemporary, classics\",\"An inventive and original novel from this multi-award-winning author. Lloyd\nJones' new novel is set mainly in a small village on Bougainville, a\ncountry torn apart by civil war. Mathilda attends the school set up by Mr\nWatts, the only white man on the island. By his own admission he's not much\nof a teacher and proceeds to educate the children by reading them Great\nExpectations. Mathilda falls in love with the novel, strongly identifying\nwith Pip. The promise of the next chapter is what keeps her going; Pip's\nstory protects her from the horror of what is happening around her -\nhelicopters menacing the skies above the village and rebel raids on the\nground. When the rebels visit the village searching for any remaining men\nto join their cause, they discover the name Pip written in the sand and\ninstigate a search for him. When Pip can't be found the soldiers destroy\nthe book. Mr Watts then encourages the children to retell the story from\ntheir memories. Then when the rebels invade the village, the teacher tells\nthem a story which lasts seven nights, about a boy named Pip, and a\nconvict...Years later, when she has fled the island for Australia, Matilda\nreaches for a copy of Great Expectations in the school library and realises\nthat Mr Watts was reading them his own version of the text, another\n'invention' of the original.Later she pursues Mr Watts's memory to\nWellington, New Zealand, and that of Dickens and Pip to London and\nGravesend. Jones frames Matilda's story with Pip's story and so creates a\nPacific Great Expectations. Mister Pip explores notions of storytelling,\nand the role of imagination in inventing the self. Lloyd Jones always\nsurprises, never stands still. This is inspired storytelling.\"\r\n6967,7385,1191,\"Giada De Laurentiis, Victoria Pearson\",Giada's Family Dinners,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193499l/1191.jpg,3.99,12061,\"cookbooks, nonfiction\",\"The Food Network host and best-selling author of Everyday Italian presents\na collection of easy-to-prepare, flexible recipes for Italian food lovers\nwith a busy schedule, explaining how to put together simple but tempting\nmeals for everyday evening dinners or for special holiday occasions.\n400,000 first printing.\"\r\n6968,7386,185012,John Patrick Shanley,Doubt: A Parable,https://images.gr-assets.com/books/1327908288l/185012.jpg,4.13,14050,\"fiction, religion\",\"Set in a Bronx Catholic school in 1964, a nun is faced with uncertainty as\nshe has grave concerns for a male colleague.\"\r\n6969,7387,675614,Cate Tiernan,Book of Shadows,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388801617l/675614.jpg,4.04,18691,\"ebooks, religion\",\"Morgan and her best friend, Bree, are introduced to Wicca when a gorgeous\nsenior named Cal invites them to join his new coven. Morgan falls for Cal\nimmediately? and discovers that she has strong,inexplicable powers.\"\r\n6970,7388,2141830,Beth Harbison,Secrets of a shoe addict,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441063520l/2141830._SY475_.jpg,3.73,12762,\"fiction, romance\",\"A trio of women forge a friendship based on private troubles, including\nTiffany, whose mad shopping spree places her dangerously in debt; Abbey, a\nminister's wife who is blackmailed with details from her sordid past; and\nLoreen, who hides the truth about her one-time hire of a male prostitute in\nLas Vegas. Reprint.\"\r\n6971,7389,22609080,Anna Todd,After We Fell,https://images.gr-assets.com/books/1420938115l/22609080.jpg,3.88,12776,\"romance, contemporary\",\"Book 3 of the After series—newly revised and expanded, Anna Todd's After\nfanfiction racked up 1 billion reads online and captivated readers across\nthe globe. Experience the internet's most talked-about book for yourself\nfrom the writer Cosmopolitan called “the biggest literary phenomenon of her\ngeneration.” Tessa and Hardin’s love was complicated before. Now it’s more\nconfusing than ever. AFTER WE FELL...Life will never be the same. #HESSA\nJust as Tessa makes the biggest decision of her life, everything changes.\nRevelations about first her family, and then Hardin’s, throw everything\nthey knew before in doubt and makes their hard-won future together more\ndifficult to claim. Tessa’s life begins to come unglued. Nothing is what\nshe thought it was. Not her friends. Not her family. The one person she\nshould be able to rely on, Hardin, is furious when he discovers the massive\nsecret she’s been keeping. And rather than being understanding, he turns to\nsabotage. Tessa knows Hardin loves her and will do anything to protect her,\nbut there’s a difference between loving someone and being able to have them\nin your life. This cycle of jealousy, unpredictable anger, and forgiveness\nis exhausting. She’s never felt so intensely for anyone, so exhilarated by\nsomeone’s kiss—but is the irrepressible heat between her and Hardin worth\nall the drama? Love used to be enough to hold them together. But if Tessa\nfollows her heart now, will it be...the end?\"\r\n6972,7390,6589074,Laurie Fabiano,Elizabeth Street,https://images.gr-assets.com/books/1328420628l/6589074.jpg,3.9,7821,\"fiction, history\",\"Elizabeth Street is both a fascinating immigrant story and an intimate\nportrait of how a first-generation American--and the author's own great-\ngrandmother--outwits one of the most brutal crime organizations of the\nearly 20th century.\"\r\n6973,7391,13415554,Sarah J. Maas,The Assassin and the Pirate Lord,https://images.gr-assets.com/books/1335782612l/13415554.jpg,4.23,20559,\"fantasy, fiction\",\"On a remote island in a tropical sea, Celaena Sardothien, feared assassin,\nhas come for retribution. She's been sent by the Assassin's Guild to\ncollect on a debt they are owed by the Lord of the Pirates. But when\nCelaena learns that the agreed payment is not in money, but in slaves, her\nmission suddenly changes - and she will risk everything to right the wrong\nshe's been sent to bring about.\"\r\n6974,7392,24965,\"Søren Kierkegaard, Alastair Hannay\",Frygt og Bæven,https://images.gr-assets.com/books/1309286516l/24965.jpg,4.01,10983,\"religion, classics\",\"Writing under the pseudonym of Johannes de silentio, Kierkegaard uses the\nform of a dialectical lyric to present his conception of faith. Abraham is\nportrayed as a great man, who chose to sacrifice his son, Isaac, in the\nface of conflicting expectations and in defiance of any conceivable ethical\nstandard. The infamous and controversial 'teleological suspension of the\nethical' challenged the contemporary views of Hegel's universal moral\nsystem, and the suffering individual must alone make a choice 'on the\nstrength of the absurd'. Kierkegaard's writings have inspired both modern\nProtestant theology and existentialism.\"\r\n6975,7393,30334,Amelia Atwater-Rhodes,Hawksong,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388389062l/30334.jpg,4.15,18231,\"fantasy, romance\",\"In a land that has been at war so long that no one remembers the reason for\nfighting, the shapeshifters who rule the two factions agree to marry in the\nhope of bringing peace, despite deep-seated fear and distrust of each\nother.\"\r\n6976,7394,45260,Peter F. Hamilton,The Naked God ,https://images.gr-assets.com/books/1316548289l/45260.jpg,4.2,12418,\"fiction, fantasy\",The Naked God Peter F. Hamilton\r\n6977,7395,14481,\"Peggy Parish, Wallace Tripp\",\"Come Back, Amelia Bedelia\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348600429l/14481.jpg,4.25,14154,\"fiction, classics\",\"Amelia Bedelia must look for a new job -- Mrs. Rogers has finally had\nenough. But for poor Amelia Bedelia, each new job is a bigger mess than the\nlast. Can she ever find a place to belong?\"\r\n6978,7396,790171,Thor Heyerdahl,Kon-Tiki Ekspedisjonen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348547584l/790171.jpg,4.1,13541,\"travel, history\",Kon-Tiki EkspedisjonenThor Heyerdahl\r\n6979,7397,15815364,Mohsin Hamid,How to Get Filthy Rich in Rising Asia,https://images.gr-assets.com/books/1353428459l/15815364.jpg,3.76,11023,\"fiction, contemporary\",\"Follows the journey of a young, impoverished boy in an unspecified Asian\nnation to the top of the corporate world and the twists and turns of his\nrelationship with a beautiful woman.\"\r\n6980,7398,15852,\"Albert Einstein, Nigel Calder, Robert W. Lawson\",Über die spezielle und die allgemeine Relativitätstheorie,https://images.gr-assets.com/books/1420607613l/15852.jpg,4.17,11069,\"science, nonfiction\",\"The Nobel Prize-winning physicist presents his views on the special and\ngeneral theory of relativity and the universe as a whole, in an accessible\nintroduction to his seminal theories, written for the non-scientist.\nReprint. 20,000 first printing.\"\r\n6981,7399,33770,Anna Maxted,Getting Over It,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423599391l/33770.jpg,3.53,13240,\"fiction, romance\",\"\"\"Maybe it will be good for you to be on your own for a bit.\"\" \"\"Why?\"\" I say\nin a bored tone. Lizzy dabs her mouth with her napkin (her perfect lipstick\nremains perfect) and declares, \"\"You've got to be happy alone before you can\nbe happy with someone.\"\" \"\"Liz,\"\" I say, \"\"did you read that in GirlTime?\"\" \"\"I\nmight have,\"\" says Lizzy airily. \"\"So?\"\" \"\"I wrote it.\"\" Wickedly funny and\nunfailingly honest, Getting Over It charts the misadventures of Helen\nBradshaw, a caustically charming twenty-something who isn't exactly living\nout her dreams. She's a lowly assistant editor at GirlTime magazine, drives\nan ancient Toyota, and has a history of choosing men who fall several\nthousand feet below acceptable boyfriend standard. Not to mention that she\nshares an apartment with a scruffy, tactless roommate, her best girlfriends\nare a little too perfect, and the most affectionate male in her life -- her\ncat, Fatboy -- occasionally pees in her underwear drawer. Then Helen gets\nthe telephone call she least expects: Her father has had a massive heart\nattack. Initially brushing off his death as merely an interruption in her\nalready chaotic life (they were never very close, after all), Helen is\nsurprised to find everything else starting to crumble around her. Her pushy\nmother is coming apart at the seams, a close friend might be heading toward\ntragedy, and, after the tequila incident, it looks as though Tom the vet\nwill be sticking with Dalmatians. Turns out getting over it isn't going to\nbe quite as easy as she thought. Hilarious, wise, and compulsively\nreadable, Getting over It marks the debut of one of the freshest, boldest\nnew voices in women's fiction.\"\r\n6982,7400,10866233,Siobhan Vivian,The List,https://images.gr-assets.com/books/1439733432l/10866233.jpg,3.46,16569,\"contemporary, fiction\",\"Every year at Mount Washington High School somebody posts a list of the\nprettiest and ugliest girls from each grade--this is the story of eight\ngirls, freshman to senior, and how they are affected by the list.\"\r\n6983,7401,19534,David James Duncan,The Brothers K,https://images.gr-assets.com/books/1403176622l/19534.jpg,4.39,11010,\"fiction, sports\",\"While their father mourns the end of his baseball career and their mother\nclings obsessively to her faith, the four Chance brothers choose their own\nways to deal with what the world has to offer them\"\r\n6984,7402,9484114,Shawn Achor,The Happiness Advantage: The Seven Principles of Positive Psychology That Fuel Success and Performance at Work,https://images.gr-assets.com/books/1381289860l/9484114.jpg,4.15,11131,\"psychology, business\",\"A Harvard lecturer identifies seven core principles of positive psychology\nto counsel readers on how to achieve greater effectiveness and fulfillment\nin the workplace, explaining the role of happiness in enabling success and\nproductivity.\"\r\n6985,7403,13167796,W. Bruce Cameron,A Dog's Journey: Another Novel for Humans,https://images.gr-assets.com/books/1327061453l/13167796.jpg,4.41,12513,\"fiction, contemporary\",A Dog's Journey: Another Novel for HumansW. Bruce Cameron\r\n6986,7405,6672183,\"Grant Morrison, Frank Quitely, Philip Tan, Jonathan Glapion, Alex Sinclair\",Batman & Robin: Batman Reborn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1563698691l/6672183._SY475_.jpg,4.08,13542,\"comics, fiction\",\"The Dynamic Duo hits the streets in their new flying Batmobile to face an\nassemblage of villains called the Circus of Strange as well as to\ninvestigate a child abducted by the mysterious Domino Killer.\"\r\n6987,7406,1157452,Matsuri Hino,めるぷり メルヘン☆プリンス 1,https://images.gr-assets.com/books/1324321395l/1157452.jpg,4.14,14343,\"manga, fantasy\",めるぷり メルヘン☆プリンス 1Matsuri Hino\r\n6988,7407,11031,\"Arturo Pérez-Reverte, Margaret Jull Costa\",La tabla de Flandes,https://images.gr-assets.com/books/1328874807l/11031.jpg,3.8,11868,\"mystery, fiction\",\"Acclaimed author Arturo Pérez-Reverte has earned a distinguished reputation\nas a master of the literary thriller with his international bestsellers The\nClub Dumas and The Queen of the South. Now, in this haunting new work,\nPérez-Reverte has written his most accomplished novel to date. The Painter\nof Battles is a captivating tale of love, war, art, and revenge. Andrés\nFaulques, a world-renowned war photographer, has retired to a life of\nsolitude on the Spanish coast. On the walls of a tower overlooking the sea,\nhe spends his days painting a huge mural that pays homage to history’s\nclassic works of war art and that incorporates a lifetime of disturbing\nimages. One night, an unexpected visitor arrives at Faulques’ door and\nchallenges the painter to remember him. As Faulques struggles to recall the\nface, the man explains that he was the subject of an iconic photo taken by\nFaulques in a war zone years ago. “And why have you come looking for me?”\nasks Faulques. The stranger answers, “Because I’m going to kill you.” This\nstory transports Faulques to the time when he crossed continents to capture\nconflicts on film with his lover, Olvido, at his side. Until she walked\ninto his life, Faulques muses, he had believed he would survive both war\nand women. As the tense dialogue between Faulques and his visitor\ncontinues, the stakes grow ever higher. What they are grappling with\nquickly proves to be not just Faulques’ fate but the very nature of human\nlove and cruelty itself. Arturo Pérez-Reverte perfectly balances the\nshadows of the heart with the chaos of war in this stunning composition on\nmorality. Superb and tautly written, The Painter of Battles is a deeply\naffecting novel about life and art.\"\r\n6989,7408,576570,\"Janet Stevens, Hans Christian Andersen\",Prinsessen på ærten,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348192494l/576570.jpg,4.1,14851,\"classics, fiction\",\"Prinsessen på ærtenJanet Stevens, Hans Christian Andersen\"\r\n6990,7409,4662,\"F. Scott Fitzgerald, Matthew J. Bruccoli\",The Short Stories of F. Scott Fitzgerald,https://images.gr-assets.com/books/1400891315l/4662.jpg,4.23,11525,\"classics, fiction\",\"The short stories of F. Scott Fitzgerald / edited and with a preface by\nMatthew J. Bruccoli.\"\r\n6991,7410,397466,V.C. Andrews,Dark Angel,https://images.gr-assets.com/books/1322289444l/397466.jpg,3.96,14720,\"fiction, horror\",Dark AngelV.C. Andrews\r\n6992,7411,77787,Timothy Zahn,Star Wars: Specter of the Past,https://images.gr-assets.com/books/1326718522l/77787.jpg,3.98,13705,\"fiction, fantasy\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n6993,7412,25507925,Tyler Oakley,Binge,https://images.gr-assets.com/books/1438341092l/25507925.jpg,4.3,13541,\"nonfiction, memoir\",BingeTyler Oakley\r\n6994,7413,22471294,Alessandra Torre,Black Lies,https://images.gr-assets.com/books/1407450110l/22471294.jpg,4.32,18741,\"romance, contemporary\",Black LiesAlessandra Torre\r\n6995,7414,351648,Laura Lippman,What The Dead Know,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442370504l/351648._SY475_.jpg,3.54,14404,\"mystery, fiction\",What The Dead KnowLaura Lippman\r\n6996,7415,17798233,\"Jay Crownover, Charlotte Connan de vries\",\"Rome (Marked Men, #3)\",https://images.gr-assets.com/books/1378491674l/17798233.jpg,4.22,26881,\"romance, contemporary\",\"Intrépide et pleine de vie, Cora Lewis est aussi celle qui veille sur ses\namis « bad boys » tatoueurs, d ans le salon Marked où elle officie comme\nperceuse. Derrière son apparente joie se cache un coeur brisé et Cora est\nbien décidée à ne plus jamais se laisser embraser par une passion\ndévorante. Elle attend maintenant l'homme parfait, sans bagages douloureux\nni histoire dramatique, avec qui elle pourra s'engager. Et elle rencontre\nRome Archer. Sous ses airs rassurants d'ancien soldat, Rome est en fait\ntêtu, autoritaire et rigide. Pas très « homme parfait » ! Et surtout il\nrevient du front... Si Rome avait l'habitude d'être le grand frère\nprotecteur, le fils aimant, le b on soldat, aujourd'hui il n'est aucun de\nces hommes-là. Traumatisé, il cherche un moyen de survivre et de reprendre\nle cours de sa vie, malgré les démons de la guerre qui le rongent. Pour\ncela, il pensait être seul, jusqu'à ce que Cora débarque dans sa vie et\nl'éclaire de mille couleurs. Parfois les mauvais chois sont les meilleurs.\"\r\n6997,7416,76527,\"Laurence Sterne, Melvyn New\",\"The Life and Opinions of Tristram Shandy, Gentleman\",https://images.gr-assets.com/books/1403402384l/76527.jpg,3.74,13641,\"classics, fiction\",\"Samuel Johnson and Samuel Richardson condemned it. James Boswell and Goethe\nproclaimed it a masterpiece. And from the beginning Sterne realized he had\nwritten a book that would not suit everyone's taste. For more than two\ncenturies. Tristram Shandy (1759-67) has astounded - and by turns\nconfounded, captivated, angered, and amused but ever entertained - readers\nworldwide. While on the surface a comic, disjointed account of the title\ncharacter's life and times, the work is in fact a brilliant commentary on\nlife's inherent chaos, the pointed challenge of British clergy-man-turned-\nauthor Laurence Sterne to the twin concepts of rationalism and\nsentimentalism. Delineating his views through skillfully drawn\nrepresentations - among them Tristram, Yorick, and Uncle Toby - Sterne\npinpointed issues central to not only his era but our own. Filled with\nthought-provoking ideas and marked by an open, conversational writing\nstyle, Tristram Shandy: A Book for Free Spirits is an adroit guide to\nunderstanding the aims and achievements of Sterne's masterpiece and to\nfully appreciating its lessons for contemporary times.\"\r\n6998,7418,98048,Susan Vreeland,The Passion of Artemisia,https://images.gr-assets.com/books/1311648181l/98048.jpg,3.86,13791,\"fiction, art\",\"A novel set against the backdrops of Rome, Florence, and Genoa recreates\nthe life of Artemisia Gentileschi, whose search for love, forgiveness, and\nwholeness through her art led to her fame as a painter.\"\r\n6999,7419,270435,Louise L. Hay,Heal Your Body,https://images.gr-assets.com/books/1404193356l/270435.jpg,4.34,11502,\"spirituality, nonfiction\",\"World-renowned teacher, Louise L. Hay has helped to heal and inspire\nmillions of people worldwide. She was diagnosed with cancer more than 20\nyears ago and used the methods she describes in Heal Your Body to cure\nherself.Louise L. Hay simply explains how our attitude to life and the\nlanguage we use cause our ailments. Using her simple and practical\ntechniques, you will be surprised to discover patterns in your own ailments\nthat reveal a lot about yourself. Just look up your illness or health\nchallenge, and then find the right affirmation to break the pattern. Use\nthis book to get on the path to being healthy today\"\r\n7000,7420,284698,\"Mia Ikumi, Reiko Yoshida\",東京ミュウミュウ (Tokyo Mew Mew) 1,https://images.gr-assets.com/books/1371146694l/284698.jpg,3.95,12970,\"manga, fantasy\",\"東京ミュウミュウ (Tokyo Mew Mew) 1Mia Ikumi, Reiko Yoshida\"\r\n7001,7421,11595276,Emily M. Danforth,The Miseducation of Cameron Post,https://images.gr-assets.com/books/1309190566l/11595276.jpg,3.99,16235,\"fiction, contemporary\",The Miseducation of Cameron PostEmily M. Danforth\r\n7002,7423,2173611,Diana Wynne Jones,House of Many Ways,https://images.gr-assets.com/books/1293848674l/2173611.jpg,4.03,17697,\"fantasy, fiction\",House of Many WaysDiana Wynne Jones\r\n7003,7424,23602561,Don Winslow,The Cartel,https://images.gr-assets.com/books/1429552939l/23602561.jpg,4.28,9270,\"fiction, crime\",\"A drug lord's prison transfer to Mexico upsets a precarious balance of\npeace and forcing a DEA agent to come out of retirement to stop the ensuing\nviolence.\"\r\n7004,7425,25937671,Sue Klebold,A Mother's Reckoning: Living in the Aftermath of Tragedy,https://images.gr-assets.com/books/1453261078l/25937671.jpg,4.13,12795,\"nonfiction, memoir\",A Mother's Reckoning: Living in the Aftermath of TragedySue Klebold\r\n7005,7426,13062,Carl Hiaasen,Skin Tight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439439549l/13062._SY475_.jpg,3.96,13039,\"fiction, mystery\",\"Originally published: New York: G.P. Putnam's Sons, 1989.\"\r\n7006,7427,3750,Ian Fleming,Moonraker,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388215989l/3750.jpg,3.7,12016,\"fiction, thriller\",\"When James Bond is sent to investigate enigmatic millionaire Hugo Drax, the\nman behind Britain's top-secret Moonraker missile program, he discovers\nDrax has both a sinister past and his own secret plan for the Moonraker.\"\r\n7007,7428,364550,\"John Locke, Peter Laslett, Raymond Geuss\",Two Treatises of Government,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348664298l/364550.jpg,3.81,13056,\"philosophy, history\",\"A revised 1988 version of Peter Laslett's acclaimed Two Treatises of\nGovernment, widely recognised as a classic text in the history of ideas.\"\r\n7008,7429,16900,Henry David Thoreau,Civil Disobedience and Reading,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348316137l/16900.jpg,4.06,12557,\"philosophy, classics\",Civil Disobedience and ReadingHenry David Thoreau\r\n7009,7430,17533,Louisa May Alcott,Rose in Bloom,https://images.gr-assets.com/books/1344269387l/17533.jpg,4.03,16842,\"fiction, classics\",Rose in BloomLouisa May Alcott\r\n7010,7431,18718848,David  Arnold,Mosquitoland,https://images.gr-assets.com/books/1402661616l/18718848.jpg,3.92,14312,\"contemporary, fiction\",\"\"\"When she learns that her mother is sick in Ohio, Mim confronts her demons\non a thousand-mile odyssey from Mississippi that redefines her notions of\nlove, loyalty, and what it means to be sane\"\"--\"\r\n7011,7432,25228579,Barbara Claypole White,The Perfect Son,https://images.gr-assets.com/books/1429633273l/25228579.jpg,3.97,10090,\"fiction, contemporary\",The Perfect SonBarbara Claypole White\r\n7012,7433,82436,Melina Marchetta,Looking for Alibrandi,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554658769l/82436._SY475_.jpg,3.85,14685,\"contemporary, fiction\",Looking for AlibrandiMelina Marchetta\r\n7013,7434,17257993,Kristen Ashley,Raid,https://images.gr-assets.com/books/1361025483l/17257993.jpg,4.23,24604,\"romance, contemporary\",RaidKristen Ashley\r\n7014,7435,15813668,Darynda Jones,Fifth Grave Past the Light,https://images.gr-assets.com/books/1355718001l/15813668.jpg,4.49,21286,\"paranormal, romance\",Fifth Grave Past the LightDarynda Jones\r\n7015,7436,416580,Wilbur Smith,The Seventh Scroll,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438003865l/416580._SY475_.jpg,4.1,11501,\"fiction, thriller\",\"Discovering the possible whereabouts of the lavish crypt belonging to the\nEgyptian Pharaoh Mamose, Egyptologist Royan Al Simma and Sir Nicholas\nQuention-Harper begin a desperate race against greedy assassins. Reissue.\"\r\n7016,7437,12813860,Kody Keplinger,A Midsummer's Nightmare,https://images.gr-assets.com/books/1327469139l/12813860.jpg,3.83,17247,\"contemporary, romance\",A Midsummer's NightmareKody Keplinger\r\n7017,7438,17571466,Nick Cutter,The Troop,https://images.gr-assets.com/books/1397768496l/17571466.jpg,3.71,11620,\"horror, fiction\",\"Once every year, Scoutmaster Tim Riggs leads a troop of boys into the\nCanadian wilderness for a weekend camping trip. This year, something is\nwaiting in the darkness. Something wicked ... An intruder stumbles upon\ntheir campsite like a wild animal. He is shockingly thin, disturbingly\npale, and voraciously hungry. Within his body is a bioengineered nightmare,\na horror that spreads faster than fear. One by one, the boys will do things\nno person could ever imagine ...\"\r\n7018,7439,820480,C.J. Sansom,Revelation,https://images.gr-assets.com/books/1327170369l/820480.jpg,4.32,11868,\"mystery, fiction\",\"C. J. Sansom's bestselling adventures of Matthew Shardlake continue in the\nfourth title of the series, Revelation.\"\"Remarkable. . . . The sights, the\nvoices, the very smell of this turbulent age seem to rise from the page.\"\"\nP.D. James Spring, 1543. King Henry VIII is wooing Lady Catherine Parr,\nwhom he wants for his sixth wife. But this time the object of his\naffections is resisting. Archbishop Cranmer and the embattled Protestant\nfaction at court are watching keenly, for Lady Catherine is known to have\nreformist sympathies. Matthew Shardlake, meanwhile, is working on the case\nof a teenage boy, a religious maniac locked in the Bedlam hospital for the\ninsane. Should he be released to his parents, when his terrifying actions\ncould lead to him being burned as a heretic? When an old friend is\nhorrifically murdered Shardlake promises his widow, for whom he has long\nhad complicated feelings, to bring the killer to justice. His search leads\nhim to both Cranmer and Catherine Parr - and with the dark prophecies of\nthe Book of Revelation. As London's Bishop Bonner prepares a purge of\nProtestants Shardlake, together with his assistant, Jack Barak, and his\nfriend, Guy Malton, follow the trail of a series of horrific murders that\nshake them to the core, and which are already bringing frenzied talk of\nwitchcraft and a demonic possession - for what else would the Tudor mind\nmake of a serial killer . . .'\"\r\n7019,7440,11339,\"Pablo Neruda, Stephen Tapscott\",Cien sonetos de amor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388324821l/11339.jpg,4.4,11425,\"classics, romance\",\"Cien sonetos de amorPablo Neruda, Stephen Tapscott\"\r\n7020,7441,18316089,Amy Bloom,Lucky Us,https://images.gr-assets.com/books/1400853144l/18316089.jpg,3.21,11205,\"fiction, ebooks\",\"Forging a life together after being abandoned by their parents, half\nsisters Eva and Iris share decades in and out of the spotlight in golden-\nera Hollywood and mid-20th-century Long Island. By the author of the\nNational Book Award finalist, Come to Me. 125,000 first printing.\"\r\n7021,7442,110393,Julia Quinn,It's In His Kiss,https://images.gr-assets.com/books/1314461965l/110393.jpg,4.01,20377,\"romance, fiction\",\"Meet Our Hero . . . Gareth St. Clair is in a bind. His father, who detests\nhim, is determined to beggar the St. Clair estates and ruin his\ninheritance. Gareth's sole bequest is an old family diary, which may or may\nnot contain the secrets of his past . . . and the key to his future. The\nproblem is—it's written in Italian, of which Gareth speaks not a word. Meet\nOur Heroine . . . All the ton agreed: there was no one quite like Hyacinth\nBridgerton. She's fiendishly smart, devilishly outspoken, and according to\nGareth, probably best in small doses. But there's something about\nher—something charming and vexing—that grabs him and won't quite let go . .\n. Meet Poor Mr. Mozart . . . Or don't. But rest assured, he's spinning in\nhis grave when Gareth and Hyacinth cross paths at the annual—and annually\ndiscordant—Smythe-Smith musicale. To Hyacinth, Gareth's every word seems a\ndare, and she offers to translate his diary, even though her Italian is\nslightly less than perfect. But as they delve into the mysterious text,\nthey discover that the answers they seek lie not in the diary, but in each\nother . . . and that there is nothing as simple—or as complicated—as a\nsingle, perfect kiss.\"\r\n7022,7443,31538614,\"J.K. Rowling, MinaLima\",\"Short Stories from Hogwarts of Power, Politics and Pesky Poltergeists\",https://images.gr-assets.com/books/1471436601l/31538614.jpg,4.2,10032,\"fantasy, fiction\",\"Short Stories from Hogwarts of Power, Politics and Pesky PoltergeistsJ.K. Rowling, MinaLima\"\r\n7023,7444,9454,\"Georg Wilhelm Friedrich Hegel, A.V. Miller, John Niemeyer Findlay\",Phänomenologie des Geistes,https://images.gr-assets.com/books/1425522818l/9454.jpg,3.91,11744,\"classics, nonfiction\",\"Expounds upon consciousness, self-consciousness, reason, spirit, religion\nand absolute knowing and also supports Kant, denounces skepticism and hails\nidealism\"\r\n7024,7446,479561,Peter F. Hamilton,The Neutronium Alchemist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347555003l/479561.jpg,4.25,12726,\"fiction, fantasy\",The Neutronium AlchemistPeter F. Hamilton\r\n7025,7447,9995135,Gena Showalter,The Darkest Seduction,https://images.gr-assets.com/books/1316891535l/9995135.jpg,4.35,20057,\"paranormal, romance\",\"Immortal warrior Paris, who is possessed by the demon of Promiscuity, finds\nlove with Sienna Blackstone, who is newly possessed by the demon of Wrath,\nbut an ancient blood feud threatens to tear them apart.\"\r\n7026,7448,30226723,Victoria Aveyard,King's Cage,https://images.gr-assets.com/books/1467121158l/30226723.jpg,4.03,30692,\"fantasy, romance\",\"In the third book in the #1 New York Times bestselling Red Queen series,\nMare is forced to play a psychological cat-and-mouse game with an old and\ndeadly enemy, where the stakes are not only the future of the Red Rebellion\nbut the sanctity of her own mind.\"\r\n7027,7450,5557442,يوسف زيدان,ظل الأفعى,https://images.gr-assets.com/books/1409365252l/5557442.jpg,3,8299,\"fiction, ebooks\",ظل الأفعىيوسف زيدان\r\n7028,7451,9266810,Sarah Mlynowski,Ten Things We Did (and Probably Shouldn't Have) ,https://images.gr-assets.com/books/1293821561l/9266810.jpg,3.74,15396,\"contemporary, romance\",\"Sixteen-year-old April, a high school junior, and her friend Vi, a senior,\nget a crash course in reality as the list of things they should not do\nbecomes a list of things they did while living parent-free in Westport,\nConnecticut, for the semester. By the author of the Magic in Manhattan\nseries. 75,000 first printing.\"\r\n7029,7452,13042154,Moira Young,Rebel Heart,https://images.gr-assets.com/books/1326311073l/13042154.jpg,3.89,16265,\"romance, fantasy\",\"After rescuing her twin brother from the Tonton, Saba experiences\ndisturbing telepathic visions while being hunted by a cunning enemy.\"\r\n7030,7453,4507,Julie Gregory,Sickened,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279744l/4507.jpg,3.72,11860,\"memoir, nonfiction\",\"In this fierce and lyrical memoir, Gregory takes readers inside the hidden\nworld of child abuse called Munchausen by Proxy--with a power rivaling\n\"\"Girl, Interrupted\"\" and \"\"A Child Called \"\"It.\"\"\"\r\n7031,7454,96082,Anita Shreve,The Last Time They Met,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171309348l/96082.jpg,3.48,13180,\"fiction, romance\",\"From the last time Linda and Thomas meet, at a charmless hotel in a distant\ncity, to the moment, thirty-five years earlier, when a chance encounter on\na rocky beach binds them fatefully together, this hypnotically compelling\nnovel unfolds a tale of intense passion, drama, and suspense. The Last Time\nThey Met is a singularly ambitious and accomplished work by one of today's\nmost widely celebrated novelists.\"\r\n7032,7455,25817493,Paulette Jiles,News of the World,https://images.gr-assets.com/books/1440342988l/25817493.jpg,4.14,15476,\"fiction, history\",News of the WorldPaulette Jiles\r\n7033,7456,40710,Brad Thor,Blowback,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924777l/40710.jpg,4.17,11410,\"thriller, fiction\",\"When a new weapon tips the balance against the Allied forces throughout the\nMiddle East, the only person the president can call is Scot Harvath.\"\r\n7034,7457,9864913,Devdutt Pattanaik,Jaya: An Illustrated Retelling of the Mahabharata,https://images.gr-assets.com/books/1357361164l/9864913.jpg,4.2,9534,\"fiction, religion\",\"High above the sky stands Swarga, paradise, abode of the gods. Still above\nis Vaikuntha, heaven, abode of God. The doorkeepers of Vaikuntha are the\ntwins, Jaya and Vijaya, both whose names mean 'victory'. One keeps you in\nSwarga; the other raises you into Vaikuntha. In Vaikuntha there is bliss\nforever, in Swarga there is pleasure for only as long as you deserve. What\nis the difference between Jaya and Vijaya? Solve this puzzle and you will\nsolve the mystery of the Mahabharata. In this enthralling retelling of\nIndia's greatest epic, the Mahabharata, originally known as Jaya, Devdutt\nPattanaik seamlessly weaves into a single narrative plots from the Sanskrit\nclassic as well as its many folk and regional variants, including the\nPandavani of Chattisgarh, Gondhal of Maharashtra, Terukkuttu of Tamil Nadu,\nand Yakshagana of Kamataka. Richly illustrated with over 250 line drawings\nby the author, the 108 chapters abound with little-known details such as\nthe names of the hundred Kauravas, the worship of Draupadi as a goddess in\nTamil Nadu, the stories of Astika, Madhavi, Jamini, Aravan and Barnareek,\nthe Mahabharata version of the Shakuntaiam and the Ramayana, and the dating\nof the war based on astronomical data. With clarity and simplicity, the\ntales in the elegant volume reveal the eternal relevance of the\nMahabharata, the complex and disturbing meditation on the human condition\nthat has shaped Indian thought for over 3000 years.\"\r\n7035,7458,51114,Gail Tsukiyama,Women of the Silk,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441615784l/51114._SY475_.jpg,3.94,12769,\"fiction, history\",\"Sent by her family to work in a silk factory just prior to World War II,\nyoung Pei grows to womanhood, working fifteen-hour days and sending her pay\nto the family who abandoned her\"\r\n7036,7459,54492,Anthony Hope,The Prisoner of Zenda,https://images.gr-assets.com/books/1356449081l/54492.jpg,3.87,12530,\"classics, fiction\",The Prisoner of ZendaAnthony Hope\r\n7037,7460,8349348,Amanda Hocking,Flutter,https://images.gr-assets.com/books/1282496658l/8349348.jpg,3.97,14828,\"paranormal, fantasy\",FlutterAmanda Hocking\r\n7038,7463,15157,David Baldacci,Saving Faith,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190537l/15157.jpg,3.82,13377,\"fiction, thriller\",\"When lobbyist Faith Lockhart stumbles upon a corruption scheme at the\nhighest levels of government, she becomes a dangerous witness who the most\npowerful men in the world will go to any lengths to silence in this #1 New\nYork Times bestselling thriller. In a secluded house not far from\nWashington, D.C., the FBI is interviewing one of the most important\nwitnesses it has ever had: a young woman named Faith Lockhart. For Faith\nhas done too much, knows too much, and will tell too much. Feared by some\nof the most powerful men in the world, Faith has been targeted to die. But\nwhen a private investigator walks into the middle of the assassination\nattempt, the shooting suddenly goes wrong, and an FBI agent is killed. Now\nFaith Lockhart must flee for her life--with her story, her deadly secret,\nand an unknown man she's forced to trust...\"\r\n7039,7464,171471,R.A. Salvatore,The Spine of the World (Paths of Darkness #2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201689l/171471.jpg,3.89,12099,\"fantasy, fiction\",The Spine of the World (Paths of Darkness #2)R.A. Salvatore\r\n7040,7465,308540,R.L. Stine,The Haunted Mask,https://images.gr-assets.com/books/1328867787l/308540.jpg,3.77,14043,\"horror, fiction\",\"A young girl purchases the most frighteningly lifelike Halloween mask and\nthen, to her horror, discovers that she is unable to remove it from her\nface. Reprint.\"\r\n7041,7466,136641,Douglas Preston,Tyrannosaur Canyon,https://images.gr-assets.com/books/1419207931l/136641.jpg,3.78,13452,\"thriller, fiction\",\"A long-missing moon rock, a killing in a New Mexico canyon, and a\nmurderously ambitious scientist contribute to the world's greatest\nscientific discovery and a mystery involving Earth's near-destruction by a\ngalactic fire bolt.\"\r\n7042,7467,28016509,J.P. Delaney,The Girl Before,https://images.gr-assets.com/books/1485972587l/28016509.jpg,3.7,23500,\"mystery, thriller\",\"In the tradition of \"\"The Girl on the Train, The Silent Wife, \"\"and\"\" Gone\nGirl \"\"comes an enthralling psychological thriller that spins one woman s\nseemingly good fortune, and another woman s mysterious fate, through a\nkaleidoscope of duplicity, death, and deception. \"\"Please make a list of\nevery possession you consider essential to your life.\"\" The request seems\nodd, even intrusive and for the two women who answer, the consequences are\ndevastating. EMMA Reeling from a traumatic break-in, Emma wants a new place\nto live. But none of the apartments she sees are affordable or feel safe.\nUntil One Folgate Street. The house is an architectural masterpiece: a\nminimalist design of pale stone, plate glass, and soaring ceilings. But\nthere are rules. The enigmatic architect who designed the house retains\nfull control: no books, no throw pillows, no photos or clutter or personal\neffects of any kind. The space is intended to transform its occupant and it\ndoes. JANE After a personal tragedy, Jane needs a fresh start. When she\nfinds One Folgate Street she is instantly drawn to the space and to its\naloof but seductive creator. Moving in, Jane soon learns about the untimely\ndeath of the home s previous tenant, a woman similar to Jane in age and\nappearance. As Jane tries to untangle truth from lies, she unwittingly\nfollows the same patterns, makes the same choices, crosses paths with the\nsame people, and experiences the same terror, as the girl before. Advance\npraise for \"\"The Girl Before\"\" Dazzling, startling, and above all cunning a\npitch-perfect novel of psychological suspense. Lee Child Riveting! One of\nthe most compelling page-turners I've read in years. Twisty, turny, and\nwith an ending not to be missed! Lisa Gardner\"\"\"\r\n7043,7468,15673,Louis Sachar,Wayside School Gets a Little Stranger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348972146l/15673.jpg,4.18,15566,\"fiction, fantasy\",\"Hooray! Wayside School is Open Again! All the kids from Wayside School had\nto spend 243 days in horrible schools while Wayside closed to get rid of\nthe cows (Don't ask!). Now the kids are back and the fun begins again on\nevery floor. Miss Much has prepared a Day on the 30th floor--with dogs and\ncats and frogs and skunks and pigs, and an orange named Fido causing a\nterrible commotion. In Mrs. Drazil's class, they're throwing a coffeepot, a\nsack of potatoes, a pencil sharpener, and a light bulb out the window to\nsee which hits the ground first. But the big surprise is that Mrs. Jewls is\nexpecting a baby--but one named Cootie Face or Bucket Head--and a\nsubstitute teacher is coming--and everyone knows what that means...\nSomething strange is going on at the already peculiar Way side School, when\nMrs. Jewls leaves her students with a succession of substitute teachers.\n\"\"Wayside School devotes [will] turn pages eagerly...these additional\nanecdote about wayside school will surely tickle the funny bones of\nfans\"\"-School Library Journal\"\r\n7044,7469,11279,Dan Simmons,Summer of Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400270646l/11279.jpg,4,13014,\"horror, fiction\",Summer of NightDan Simmons\r\n7045,7470,4961959,\"Jim Butcher, Mark Powers, Ardian Syaf\",Jim Butcher's the Dresden Files: Storm Front,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348528100l/4961959.jpg,4.36,11953,\"fantasy, comics\",\"A graphic novel based on the bestselling Harry Dresden books by Jim\nButcher! If circumstances surrounding a crime defy the ordinary and\nevidence points to a suspect who is anything but human, the men and women\nof the Chicago Police Department call in the one guy who can handle bizarre\nand often brutal phenomena. Harry Dresden is a wizard who knows firsthand\nthat the everyday world is actually full of strange and magical things—most\nof which don\"\r\n7046,7471,13064,Carl Hiaasen,Tourist Season,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438832189l/13064._SY475_.jpg,3.95,13850,\"fiction, mystery\",\"A group of most unusual terrorists sets out to purge Florida of greed and\ncorruption by attacking what they consider the root source--tourists\"\r\n7047,7472,16076787,أحمد خالد توفيق,السنجة,https://images.gr-assets.com/books/1349778839l/16076787.jpg,3.16,10449,\"fiction, suspense\",السنجةأحمد خالد توفيق\r\n7048,7473,366346,Debbie Macomber,204 Rosewood Lane,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174153026l/366346._SY475_.jpg,4.15,14454,\"romance, fiction\",204 Rosewood LaneDebbie Macomber\r\n7049,7474,16071767,Karin Slaughter,Unseen,https://images.gr-assets.com/books/1361517437l/16071767.jpg,4.17,12277,\"mystery, thriller\",\"Georgia Bureau of Investigation Agent Will Trent goes undercover to\ninfiltrate a drug and prostitution ring, and hides the facts about the\nassignment from his girlfriend, Sara Linton, when the stakes prove higher\nthan any he has yet encountered.\"\r\n7050,7475,6681333,Heather Brewer,The Chronicles of Vladimir Tod: Eleventh Grade Burns,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347728700l/6681333.jpg,4.31,14758,\"fantasy, paranormal\",The Chronicles of Vladimir Tod: Eleventh Grade BurnsHeather Brewer\r\n7051,7476,175324,Robert A. Heinlein,Double Star,https://images.gr-assets.com/books/1327984434l/175324.jpg,3.88,14661,\"fiction, classics\",\"A twenty-second-century actor is taken to Mars to assume the identity of a\nprominent Earthman who has disappeared\"\r\n7052,7477,390305,Alex Kava,A Perfect Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174376748l/390305._SY475_.jpg,4.02,13542,\"mystery, thriller\",A Perfect EvilAlex Kava\r\n7053,7479,7981,\"Brian Jacques, Allan Curless\",The Long Patrol,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437625105l/7981._SY475_.jpg,4.1,15343,\"fantasy, fiction\",\"The Long PatrolBrian Jacques, Allan Curless\"\r\n7054,7480,11107244,Steven Pinker,The Better Angels of Our Nature. Why Violence has Declined,https://images.gr-assets.com/books/1311281857l/11107244.jpg,4.19,11437,\"history, psychology\",\"Presents a controversial history of violence which argues that today's\nworld is the most peaceful time in human existence, drawing on\npsychological insights into intrinsic values that are causing people to\ncondemn violence as an acceptable measure.\"\r\n7055,7481,821003,\"A.A. Milne, Ernest H. Shepard\",When We Were Very Young,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198334l/821003.jpg,4.32,17922,\"poetry, classics\",\"A collection of poems reflecting the experiences of a little English boy\ngrowing up in the early part of the twentieth century.\"\r\n7056,7482,22367526,M.O. Walsh,My Sunshine Away,https://images.gr-assets.com/books/1412528921l/22367526.jpg,3.6,11118,\"fiction, mystery\",\"A man reflects on the summer of his fourteenth year, where in Baton Rouge\nhe fell in love with a golden-haired girl across the street before an\nunspeakable crime shattered illusions in his seemingly idyllic\nneighborhood.--\"\r\n7057,7483,370057,Dee Henderson,The Truth Seeker (O'Malley #3),https://images.gr-assets.com/books/1406514043l/370057.jpg,4.39,13796,\"christian, fiction\",\"U.S. Marshal Quinn Diamond enlists the help of forensic pathologist Lisa\nO'Malley in investigating a suspicious arson death, and at the same time,\nquestions Lisa's lack of faith in light of her family's beliefs.\"\r\n7058,7484,1244286,Dee Lestari,Filosofi Kopi: Kumpulan Cerita dan Prosa Satu Dekade,https://images.gr-assets.com/books/1356018939l/1244286.jpg,3.82,8904,\"fiction, romance\",\"Pemaknaan kembali kembali kopi, Buddha, Herman, surat tak tarkirimkan,\ncinta sejenis yang manis atau apa pun, membuktikan Dee tetap memesona.\nKalau kemarin panitia Nobel sastra masih maju mundur dengan nama Pramoedya,\nsekarang bisa memaknai kembali, melalui karya-karya ini. Ruang cerpen yang\nsempit dijadikannya wahana yang intens namun tidak sesak untuk\nmengungkapkan apa yang tak selalu mampu dikatakan. Lewat refleksi dan\nmonolog interior yang digarap dengan cakap dan jernih. pembaca diajaknya\nmenjelajahi halaman-halaman kecil dalam cerpen yang kini dijadikannya\nsemesta kehidupan. Ruang cerpen yang sempit dijadikannya wahana yang intens\nnamun tidak sesak untuk mengungkapkan apa yang tak selalu mampu dikatakan.\nLewat refleksi dan monolog interior yang digarap dengan cakap dan jernih.\npembaca diajaknya menjelajahi halaman-halaman kecil dalam cerpen yang kini\ndijadikannya semesta kehidupan. -GagasMedia-\"\r\n7059,7485,364826,\"Mika Waltari, ذبیح‌الله منصوری\",Sinuhe egyptiläinen ,https://images.gr-assets.com/books/1388361248l/364826.jpg,4.08,5907,\"fiction, classics\",\"Set in Egypt, more than a thousand years before Christ, it encompasses all\nof the then-known world. It is told by Sinhue, physician to the Pharaoh\nAkhenaton, and is the story of his life. Through his eyes are seen\ninnumerable characters, fully drawn and covering the whole panorama of the\nancient world.\"\r\n7060,7486,7907782,Nicole Krauss,Great House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554121436l/7907782._SY475_.jpg,3.45,13582,\"contemporary, fiction\",\"For twenty-five years, a solitary American novelist has been writing at the\ndesk she inherited from a young poet who disappeared at the hands of\nPinochet's secret police; one day a girl claiming to be the poet's daughter\narrives to take it away, sending the writer's life reeling. Across the\nocean, in the leafy suburbs of London, a man caring for his dying wife\ndiscovers, among her papers, a lock of hair that unravels a terrible\nsecret. In Jerusalem, an antiques dealer slowly reassembles his father's\nstudy, plundered by the Nazis from Budapest in 1944. Connecting these\nstories is a desk of many drawers that exerts a power over those who\npossess it or give it away. As the narrators of Great House make their\nconfessions, the desk takes on more and more meaning, and comes finally to\nstand for all that has been taken from them, and all that binds them to\nwhat has disappeared. Great House is a story haunted by questions: What do\nwe pass on to our children, and how do they absorb our dreams and losses?\nHow do we respond to disappearance, destruction, and change? Nicole Krauss\nhas written a soaring, powerful novel about memory struggling to create a\nmeaningful permanence in the face of inevitable loss. 'In surges of\nmesmerizing sentences that are so complicated, clever, artful, and\nlogically challenging that they read almost like aphorisms, Krauss aims to\nexplicate, not the underlying implications of her characters' behaviour,\nbut the very cycles of history. It's a daunting undertaking, one that not\nevery writer under forty would choose or can do justice to, but Krauss's\ntalent runs deep. And she cannot write a bad sentence: pound for pound, the\nsentences alone deliver epiphany upon epiphany.' Huffington Post\n'Remarkable...... Krauss builds a consuming rush of a novel, far more\norganic and eloquent than her much-lauded The History of Love.' Bookforum\n'For readers who love beautiful language and complex characters, Great\nHouse will be hard to put down.' People 'Krauss' masterful rendition of\ncharacter is breathtaking, compelling . . . This tour de force of fiction\nwriting will deeply satisfy fans of the author's first two books and bring\nher legions more.' Booklist, Starred Review 'This stunning work showcases\nKrauss's consistent talent . . . a formidable and haunting mosaic of loss\nand profound sorrow.' Publishers Weekly, Starred Review 'The most\nheartbreaking part of Great House is having to finish it . . . As the\nmysteries of this beautifully written novel come spooling out, you'll\nmarvel at how profoundly one brilliantly crafted extended metaphor\ninvolving a mute wooden artifact can remind us what it means to be alive.'\nElle\"\r\n7061,7487,28374062,Karin Slaughter,The Kept Woman,https://images.gr-assets.com/books/1462032117l/28374062.jpg,4.1,8175,\"fiction, thriller\",The Kept WomanKarin Slaughter\r\n7062,7488,11808919,Marie Force,\"Maid for Love (Gansett Island Series, #1)\",https://images.gr-assets.com/books/1402425002l/11808919.jpg,3.98,14989,\"romance, contemporary\",\"Maid for Love (Gansett Island Series, #1)Marie Force\"\r\n7063,7489,95619,Francine Rivers,And the Shofar Blew,https://images.gr-assets.com/books/1406507476l/95619.jpg,4.11,11618,\"fiction, christian\",\"Commited to building his new church, dynamic young preacher Paul Hudson\nloses sight of the purer intentions of his ministry and struggles to choose\nbetween his own will and God's plan.\"\r\n7064,7490,31357,Orson Scott Card,Prentice Alvin (Tales of Alvin Maker #3),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386745612l/31357.jpg,3.77,14326,\"fantasy, fiction\",\"Alvin returns to his birthplace to become the blacksmith's apprentice and\nalso to learn--hopefully with the help of the Torch-girl--to be a Maker.\nReissue.\"\r\n7065,7491,97875,Alexander McCall Smith,44 Scotland Street,https://images.gr-assets.com/books/1298439814l/97875.jpg,3.61,14795,\"fiction, mystery\",\"Pat rents a room from the handsome and cocky Bruce, at 44 Scotland Street,\nand discovers that she has also acquired some colorful new neighbors,\nincluding Domenica, an eccentric widow.\"\r\n7066,7492,268275,Sandra Brown,Chill Factor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186654l/268275.jpg,3.95,13255,\"romance, mystery\",\"From the #1 New York Times bestselling author of Seeing Red comes a\nsuspense novel about a woman trapped in a remote cabin with a man who may\nbe a serial killer. Five women are missing from the sleepy mountain town of\nCleary, North Carolina, and a blue ribbon has been left near where each\nwoman was last seen. Lilly Martin has returned to Cleary to close the sale\nof her cabin. But when her car skids and strikes a stranger, Ben Tierney,\nas he emerges from the woods, they've no choice but to wait out a brutal\nblizzard in the cabin. And as the hours of their confinement mount, Lilly\nwonders if the greater threat to her safety isn't the storm, but the\nstranger beside her....\"\r\n7067,7493,2108198,\"Neil Gaiman, Mark Buckingham\",Odd and the Frost Giants,https://images.gr-assets.com/books/1323790894l/2108198.jpg,3.95,15407,\"fantasy, fiction\",\"An unlucky twelve-year-old Norwegian boy named Odd leads the Norse gods\nLoki, Thor, and Odin in an attempt to outwit evil Frost Giants who have\ntaken over Asgard.\"\r\n7068,7495,669780,\"Tayeb Salih, Denys Johnson-Davies\",موسم الهجرة إلى الشمال,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663113l/669780.jpg,3.71,5985,\"fiction, classics\",\"After years of study in Europe, the young narrator of Season of Migration\nto the North returns to his village along the Nile in the Sudan. It is the\n1960s, and he is eager to make a contribution to the new postcolonial life\nof his country. Back home, he discovers a stranger among the familiar faces\nof childhood--the enigmatic Mustafa Sa'eed. Mustafa takes the young man\ninto his confidence, telling him the story of his own years in London, of\nhis brilliant career as an economist, and of the series of fraught and\ndeadly relationships with European women that led to a terrible public\nreckoning and his return to his native land. But what is the meaning of\nMustafa's shocking confession? Mustafa disappears without explanation,\nleaving the young man--whom he has asked to look after his wife--in an\nunsettled and violent no-man's-land between Europe and Africa, tradition\nand innovation, holiness and defilement, and man and woman, from which no\none will escape unaltered or unharmed. Season of Migration to the North is\na rich and sensual work of deep honesty and incandescent lyricism. In 2001\nit was selected by a panel of Arab writers and critics as the most\nimportant Arab novel of the twentieth century.\"\r\n7069,7496,24100,Doris Lessing,The Golden Notebook,https://images.gr-assets.com/books/1367457541l/24100.jpg,3.75,13790,\"fiction, classics\",\"Anna is a writer, author of one very successful novel, who now keeps four\nnotebooks. In one, with a black cover, she reviews the African experience\nof her earlier years. In a red one she records her political life, her\ndisillusionment with communism. In a yellow one she writes a novel in which\nthe heroine relives part of her own experience. And in a blue one she keeps\na personal diary. Finally, in love with an American writer and threatened\nwith insanity, Anna resolves to bring the threads of all four books\ntogether in a golden notebook. Doris Lessing's best-known and most\ninfluential novel, The Golden Notebook retains its extraordinary power and\nrelevance decades after its initial publication.\"\r\n7070,7497,396266,Jennifer Donnelly,The Winter Rose,https://images.gr-assets.com/books/1319665261l/396266.jpg,4.29,13930,\"romance, fiction\",The Winter RoseJennifer Donnelly\r\n7071,7498,29923,Jeff Shaara,The Last Full Measure,https://images.gr-assets.com/books/1331939776l/29923.jpg,4.22,12037,\"fiction, history\",\"Follows the continuing showdown between Grant and Lee on the battlefields\nof the Civil War\"\r\n7072,7499,120461,Éric-Emmanuel Schmitt,Oscar et la dame rose,https://images.gr-assets.com/books/1399593530l/120461.jpg,4.2,9928,\"fiction, contemporary\",Oscar et la dame roseÉric-Emmanuel Schmitt\r\n7073,7500,46676,Harold S. Kushner,When Bad Things Happen to Good People,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192408l/46676.jpg,4.02,10615,\"nonfiction, spirituality\",\"A new edition of the classic self-help guide by the respected rabbi\nexplains how to find comfort and strength in the face of tragedy and the\nchallenges of life and how to understand God's role in recovery. By the\nauthor of How Good Do We Have to Be? Reprint. 75,000 first printing.\"\r\n7074,7501,17768,Patrick O'Brian,Post Captain,https://images.gr-assets.com/books/1375475591l/17768.jpg,4.29,7714,\"fiction, history\",\"Aubrey and Maturin take to the sea in pursuit of French and Spanish\nenemies.\"\r\n7075,7502,2208744,Jessica Day George,\"Dragon Flight (Dragon Slippers, #2)\",https://images.gr-assets.com/books/1441437868l/2208744.jpg,4.18,15918,\"fantasy, romance\",\"Young seamstress Creel finds herself strategizing with the dragon king\nShardas once again when a renegade dragon in a distant country launches a\nwar against their country, bringing an entire army of dragons into the mix.\nBy the author of Dragon Slippers. Reprint.\"\r\n7076,7503,730501,Susan Coolidge,What Katy Did  ,https://images.gr-assets.com/books/1327538133l/730501.jpg,3.89,13935,\"classics, fiction\",What Katy Did  Susan Coolidge\r\n7077,7504,766917,Robert McCloskey,Homer Price,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348994806l/766917.jpg,4.07,16836,\"fiction, classics\",\"Six episodes in the life of Homer Price include one in which he and his pet\nskunk capture four bandits and another about a donut machine on the\nrampage. Reissue.\"\r\n7078,7505,153782,Tamora Pierce,Shatterglass,https://images.gr-assets.com/books/1366303866l/153782.jpg,4.16,18253,\"fantasy, fiction\",\"Tris and her mage-student, a young man whose glassmaking magic has been\namplified and mixed with lightning, team up to track a killer who may be\nnearer than they suspect.\"\r\n7079,7506,18878,David Eddings,The Belgariad: Part One - Pawn of Prophecy / Queen of Sorcery / Magician's Gambit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185770l/18878.jpg,4.27,13215,\"fantasy, fiction\",The Belgariad: Part One - Pawn of Prophecy / Queen of Sorcery / Magician's GambitDavid Eddings\r\n7080,7507,359194,Philip G. Zimbardo,The Lucifer Effect: Understanding How Good People Turn Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388365513l/359194.jpg,3.94,11860,\"psychology, nonfiction\",\"Discusses why people are susceptible to the power of evil, the ability of\ngroup dynamics and situational pressures to transform human behavior, the\nsignificance of disobedience, and the true nature of heroism.\"\r\n7081,7508,6606456,Nancy Pickard,The Scent of Rain and Lightning,https://images.gr-assets.com/books/1320509039l/6606456.jpg,3.79,14423,\"mystery, fiction\",\"Written with the wisdom and grace readers have come to expect from the\naward-winning author of \"\"The Virgin of Small Plains,\"\" this brilliantly\nmoving tale is one of family, murder, and redemptive love.\"\r\n7082,7509,361081,\"Clive Cussler, Michael Pritchard\",Pacific Vortex!,https://images.gr-assets.com/books/1269478239l/361081.jpg,3.76,14476,\"fiction, thriller\",\"Pacific Vortex!Clive Cussler, Michael Pritchard\"\r\n7083,7510,17835766,Abbi Glines,One More Chance,https://images.gr-assets.com/books/1397837715l/17835766.jpg,4.29,23899,\"romance, contemporary\",\"\"\"In Take a Chance, #1 New York Times bestselling author Abbi Glines gave us\nthe story of Grant, who first captured the hearts of new adult readers in\nFallen Too Far, and Harlow, the woman who stole his own. Now comes One More\nChance... Grant Carter did everything in his power to convince Harlow\nManning that he was a good guy. More than a smooth-talker. Someone she\ncould trust. He had to overcome his reputation as a playboy, and his\nhistory with Harlow's half-sister, Nan, a woman with a reputation of\nherown. Harlow had taken the chance, falling fast and hard for the man who\nthrilled her with his all-consuming desire. After a lifetime of avoiding\nbad boys like Grant, she had opened herself to the possibilities of love...\nBut a life-changing secret has torn them apart, and now both must decide if\nthey have enough fight to make it work--or if the pain of betrayal has\npermanently destroyed their future\"\"--\"\r\n7084,7511,23197269,Kim Stanley Robinson,Aurora,https://images.gr-assets.com/books/1436300570l/23197269.jpg,3.73,9686,\"fiction, fantasy\",AuroraKim Stanley Robinson\r\n7085,7512,238137,J.D. Robb,Purity in Death,https://images.gr-assets.com/books/1305124004l/238137.jpg,4.33,16947,\"mystery, romance\",\"Eve Dallas must face the impossible: someone has unleashed a computer virus\nthat may be able to spread from machine to man.\"\r\n7086,7513,116343,Mary  Stewart,The Hollow Hills,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395143293l/116343.jpg,4.23,17045,\"fantasy, fiction\",The Hollow HillsMary  Stewart\r\n7087,7514,303454,Margaret Peterson Haddix,\"Among the Brave (Shadow Children, #5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388682574l/303454.jpg,4.14,16527,\"fiction, fantasy\",\"Among the Brave (Shadow Children, #5)Margaret Peterson Haddix\"\r\n7088,7515,43081,\"Rusty Young, Thomas McFadden\",\"Marching Powder: A True Story of Friendship, Cocaine, and South America's Strangest Jail\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245700l/43081.jpg,4.22,7313,\"biography, travel\",\"An intriguing portrait of the San Pedro Prison in La Paz, Bolivia, details\nthe author's visit to the prison, his growing friendship with inmate Thomas\nMcFadden, a British subject arrested for drug smuggling, and the unique\nculture that exists within the prison. Original. 30,000 first printing.\"\r\n7089,7516,1025039,Fuyumi Soryo,マース (Mars) #1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438768054l/1025039.jpg,4.13,14044,\"manga, romance\",\"When popular Rei saves shy Kira from the harassing hands of her sleazy art\nteacher, Kira finds herself drawn to Rei and summons up the courage to let\nhim into her world.\"\r\n7090,7517,5553,Richard Feynman,Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant Teacher,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400827293l/5553.jpg,4.19,11867,\"nonfiction, science\",Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant TeacherRichard Feynman\r\n7091,7518,688663,Alice Waters,The Art of Simple Food: Notes and Recipes from a Delicious Revolution,https://images.gr-assets.com/books/1320458644l/688663.jpg,4.11,13022,\"cookbooks, nonfiction\",The Art of Simple Food: Notes and Recipes from a Delicious RevolutionAlice Waters\r\n7092,7519,96980,Piers Anthony,\"Centaur Aisle (Xanth, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544543l/96980.jpg,3.77,15431,\"fantasy, fiction\",\"Centaur Aisle (Xanth, #4)Piers Anthony\"\r\n7093,7520,332348,Michelle Richmond,The Year of Fog,https://images.gr-assets.com/books/1320513174l/332348.jpg,3.46,12248,\"fiction, mystery\",\"Photographer Abby Mason's life is changed forever by the disappearance of\nthe young girl with whom she had been walking on a cold and foggy beach,\nher desperate search for the truth behind the child's vanishing, and her\nunwavering faith in the redemptive power of love. By the author of Dream of\nthe Blue Room. Reprint. 60,000 first printing.\"\r\n7094,7521,194479,\"Marv Wolfman, George Pérez\",Crisis on Infinite Earths,https://images.gr-assets.com/books/1327906696l/194479.jpg,4.01,12915,\"comics, fiction\",\"A reprint of the original twelve-issue series that brought together all of\nDC's superhero characters from the beginning through the early 1980s,\nchanging the DC universe forever.\"\r\n7095,7522,24807,John Hodgman,The Areas of My Expertise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442971510l/24807._SY475_.jpg,3.81,11246,\"fiction, nonfiction\",\"A humorous compendium of reference tables, trivia, and wisdom--largely\ninvented by the author--lists the mottoes of the fifty-one states,\nidentifies U.S. presidents with hooks for hands, describes the menu items\nin addition to eel at the first Thanksgiving, and more. 50,000 first\nprinting.\"\r\n7096,7523,31538647,J.K. Rowling,Hogwarts: An Incomplete and Unreliable Guide,https://images.gr-assets.com/books/1502156557l/31538647.jpg,4.21,14977,\"fantasy, fiction\",\"'The Ministry of Magic felt strongly, however, that to construct an\nadditional wizarding station in the middle of London would stretch even the\nMuggles' notorious determination not to notice magic when it was exploding\nin front of their faces.' - J.K. Rowling Pottermore Presents is a\ncollection of J.K. Rowling's writing from the Pottermore archives: short\nreads originally featured on pottermore.com. These eBooks, with writing\ncurated by Pottermore, will take you beyond the Harry Potter stories as\nJ.K. Rowling reveals her inspiration, intricate details of characters'\nlives and surprises from the wizarding world. Hogwarts An Incomplete and\nUnreliable Guide takes you on a journey to Hogwarts School of Witchcraft\nand Wizardry. You'll venture into the Hogwarts grounds, become better\nacquainted with its more permanent residents, learn more about lessons and\ndiscover secrets of the castle . . . all at the turn of a page.\"\r\n7097,7524,19314,\"Astrid Lindgren, Patricia Crampton, Trina Schart Hyman\",Ronja Rövardotter,https://images.gr-assets.com/books/1451632787l/19314.jpg,4.27,14470,\"fantasy, fiction\",\"Ronia, who lives with her father and his band of robbers in a castle in the\nwoods, causes trouble when she befriends the son of a rival robber\nchieftain.\"\r\n7098,7525,7189177,Kathy Reichs,Spider Bones,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435331035l/7189177._SY475_.jpg,3.9,15403,\"fiction, mystery\",Spider BonesKathy Reichs\r\n7099,7526,235127,Andrew Clements,No Talking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388688752l/235127.jpg,3.94,14083,\"fiction, contemporary\",\"The noisy fifth grade boys of Laketon Elementary School challenge the\nequally loud fifth grade girls to a \"\"no talking\"\" contest.\"\r\n7100,7527,23602504,\"Jo Nesbø, Neil Smith\",Blod på snø,https://images.gr-assets.com/books/1422370944l/23602504.jpg,3.5,9370,\"crime, fiction\",\"\"\"From the internationally acclaimed author of the Harry Hole novels--a new,\nelectrifying stand-alone thriller set in Oslo in the 1970s: the story of an\nunusually complicated contract killer--the perfectly sympathetic antihero--\nthat is, as well, an edgy, almost lyrical meditation on death and love.\nThis is the story of Olav: an extremely talented \"\"fixer\"\" whose unexpected\ncapacity for love is as far-reaching as his talent for murder. He works for\nOslo's crime kingpin, \"\"fixing\"\" anyone who causes him trouble. But it's\nbecoming clear to Olav that the more you know about your boss's business,\nthe more your boss might want you fixed yourself, especially if you've\nfallen in love with his wife ...\"\"--\"\r\n7101,7528,13282015,Elisabeth Naughton,Wait for Me,https://images.gr-assets.com/books/1344212446l/13282015.jpg,3.98,12572,\"romance, contemporary\",\"After her husband's death, a woman with amnesia discovers evidence of a\nmissing child. Taking her young son and following clues to San Francisco,\nshe discovers a previous husband and daughter.\"\r\n7102,7529,12031532,Tan Twan Eng,The Garden of Evening Mists,https://images.gr-assets.com/books/1333033941l/12031532.jpg,4.08,10211,\"fiction, history\",\"Seeking solace in the Malaysian plantations of her childhood after grueling\nWorld War II experiences, criminal prosecutor Yun Ling Teoh discovers a\nJapanese garden and its enigmatic tender, an exiled Japanese royal gardener\nwho reluctantly accepts her as an apprentice. By the author of The Gift of\nRain. Original.\"\r\n7103,7531,696177,Arina Tanemura,紳士同盟† 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347625163l/696177.jpg,3.96,13260,\"manga, romance\",紳士同盟† 1Arina Tanemura\r\n7104,7533,94813,Christine Feehan,Dark Guardian,https://images.gr-assets.com/books/1327896501l/94813.jpg,4.33,17197,\"paranormal, romance\",\"Lucian Daratrazanoff finds himself drawn to cop Jaxon Montgomery, a fierce\nwoman who is being hounded by a deadly force, and as Lucian fights to\nprotect her she finds herself entering into his own dark realm.\"\r\n7105,7534,8492,Frank E. Peretti,Prophet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388474537l/8492.jpg,3.92,11708,\"fiction, christian\",\"In a thriller by the author of This Present Darkness, successful news\nanchorman John Barrett is caught in a suspenseful moral and spiritual\nbattle over the importance of Truth. Reprint.\"\r\n7106,7535,18602341,Danielle  Paige,The Wicked Will Rise,https://images.gr-assets.com/books/1423841142l/18602341.jpg,3.82,16739,\"fantasy, fiction\",\"In this New York Times bestselling sequel to Dorothy Must Die, who is\ngood—and who is actually Wicked? The Wicked Will Rise is perfect for fans\nof richly reimagined fairy tales and classic tales like Marissa Meyer’s\nLunar Chronicles and Gregory Maguire’s Wicked. My name is Amy Gumm—and I’m\nthe other girl from Kansas. After a tornado swept through my trailer park,\nI ended up in Oz. But it wasn’t like the Oz I knew from books and movies.\nDorothy had returned, but she was now a ruthless dictator. Glinda could no\nlonger be called the Good Witch. And the Wicked Witches who were left?\nThey’d joined forces as the Revolutionary Order of the Wicked, and they\nwanted to recruit me. My mission? Kill Dorothy. Except my job as assassin\ndidn’t work out as planned. Dorothy is still alive. The Order has vanished.\nAnd the home I couldn’t wait to leave behind might be in danger. Somehow,\nacross a twisted and divided land, I have to find the Order, protect the\ntrue ruler of Oz, take Dorothy and her henchmen down—and try to figure out\nwhat I’m really doing here.\"\r\n7107,7537,20613761,Claudia Rankine,Citizen: An American Lyric,https://images.gr-assets.com/books/1420944502l/20613761.jpg,4.3,14115,\"poetry, nonfiction\",\"Collects essays, poetry, and images that expose the racial tensions in\ntwenty-first century life, highlighting the slights, slips of the tongue,\nand intentional offensives that pervade the home, school, and popular\nmedia.\"\r\n7108,7538,16387,P.G. Wodehouse,\"Carry On, Jeeves\",https://images.gr-assets.com/books/1358970388l/16387.jpg,4.28,13133,\"fiction, classics\",\"The immortal Jeeves shimmers into the world of the Woosters, takes on\nBertie and carries on from there.\"\r\n7109,7539,1809175,\"Sarah Prineas, Antonio Javier Caparo\",The Magic Thief,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348418598l/1809175.jpg,3.94,14371,\"fantasy, fiction\",\"In a city that runs on a dwindling supply of magic, a young boy is drawn\ninto a life of wizardry and adventure. Conn should have dropped dead the\nday he picked Nevery's pocket and touched the wizard's locus magicalicus, a\nstone used to focus magic and work spells. But for some reason he did not.\nNevery finds that interesting, and he takes Conn as his apprentice on the\nprovision that the boy find a locus stone of his own. But Conn has little\ntime to search for his stone between wizard lessons and helping Nevery\ndiscover who—or what—is stealing the city of Wellmet's magic.\"\r\n7110,7540,29393,Michael Azerrad,Our Band Could Be Your Life: Scenes from the American Indie Underground 1981-1991,https://images.gr-assets.com/books/1168029429l/29393.jpg,4.2,10562,\"history, music\",\"\"\"This book will be fresh even for those whose lives these bands were...All\nthirteen profiles are page-turners.\"\" --Robert Christgau, Village Voice This\nis the never-before-told story of the musical revolution that happened\nright under the nose of the Reagan Eighties--when a small but sprawling\nnetwork of bands, labels, fanzines, radio stations, and other subversives\nreenergized American rock with punk rock's do-it-yourself credo and created\nmusic that was deeply personal, often brilliant, always challenging, and\nimmensely influential. This sweeping chronicle of music, politics, drugs,\nfear, loathing, and faith has been recognized as an indie rock classic in\nits own right. Among the bands profiled: Mission of Burma, Butthole\nSurfers, The Minutemen, Sonic Youth, Black Flag, Big Black, Hüsker Dü,\nFugazi, Minor Threat, Mudhoney, The Replacements, Beat Happening, and\nDinosaur Jr.\"\r\n7111,7541,56353,Rosalind Miles,\"I, Elizabeth\",https://images.gr-assets.com/books/1403186670l/56353.jpg,4.01,12132,\"fiction, history\",\"A fictional autobiography of Elizabeth I of England combines historical\naccuracy with insightful character studies to provide a picture of the\nworld in 1600.\"\r\n7112,7542,22009741,Marian Keyes,The Woman who Stole my Life,https://images.gr-assets.com/books/1428674566l/22009741.jpg,3.52,8693,\"fiction, romance\",The Woman who Stole my LifeMarian Keyes\r\n7113,7543,80834,Guy Delisle,Pyongyang,https://images.gr-assets.com/books/1327884533l/80834.jpg,3.93,12903,\"comics, travel\",PyongyangGuy Delisle\r\n7114,7544,5055,Ken Follett,Night over Water,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388249830l/5055.jpg,3.78,12329,\"fiction, thriller\",\"An English aristocrat, a German scientist, a murderer, a thief, and a\nbeautiful woman are among the desperate passengers who board the most\nluxurious airliner ever built to escape from England just two days after\nthe 1939 declaration of war against Germany. Reissue.\"\r\n7115,7545,18775284,Courtney Maum,I Am Having So Much Fun Here Without You,https://images.gr-assets.com/books/1403390765l/18775284.jpg,3.37,9374,\"contemporary, romance\",\"A romance in reverse is set in Paris and London and follows an artist's\nattempts to fall back in love with his wife after the end of his affair, an\neffort that is challenged by the sale of a personal painting and his wife's\ndiscovery of his infidelity. A first novel.\"\r\n7116,7546,22192,Cecily von Ziegesar,All I Want Is Everything,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437790591l/22192._SY475_.jpg,3.56,15467,\"fiction, contemporary\",\"The wickedly funny third book in the #1 New York Times bestselling series\nthat inspired the original hit CW show and the new series coming to HBO\nMax's Spring 2020 launch season (alongside hit series such as Pretty Little\nLiars and Friends). It's Christmastime and Blair and Serena are best\nfriends again, and up to their old tricks--partying hard and breaking\nhearts from Park Avenue to the Caribbean. Blair's mom and Cyrus are having\ntheir honeymoon in Salt Key. And when school lets out for the holiday,\nBlair, Serena, Aaron, and company head down there to blow off steam after\ntheir midterm exams. In between pina coladas and topless sunbathing, Blair\nand Serena plot revenge on super-jerk Chuck Bass. Everyone jets back to NYC\nfor Serena's New Year's party, during which Nate and Blair may or may not\nfinally go all the way...and Serena may or may not be discovered to be the\nsecret fling of Hollywood's hottest young leading man.\"\r\n7117,7547,407999,Michael E. Porter,Competitive Strategy: Techniques for Analyzing Industries and Competitors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347564683l/407999.jpg,4.14,10850,\"business, nonfiction\",\"Now nearing its sixtieth printing in English and translated into nineteen\nlanguages, Michael E. Porter's Competitive Strategy has transformed the\ntheory, practice, and teaching of business strategy throughout the world.\nElectrifying in its simplicity—like all great breakthroughs—Porter’s\nanalysis of industries captures the complexity of industry competition in\nfive underlying forces. Porter introduces one of the most powerful\ncompetitive tools yet developed: his three generic strategies—lowest cost,\ndifferentiation, and focus—which bring structure to the task of strategic\npositioning. He shows how competitive advantage can be defined in terms of\nrelative cost and relative prices, thus linking it directly to\nprofitability, and presents a whole new perspective on how profit is\ncreated and divided. In the almost two decades since publication, Porter's\nframework for predicting competitor behavior has transformed the way in\nwhich companies look at their rivals and has given rise to the new\ndiscipline of competitor assessment. More than a million managers in both\nlarge and small companies, investment analysts, consultants, students, and\nscholars throughout the world have internalized Porter's ideas and applied\nthem to assess industries, understand competitors, and choose competitive\npositions. The ideas in the book address the underlying fundamentals of\ncompetition in a way that is independent of the specifics of the ways\ncompanies go about competing. Competitive Strategy has filled a void in\nmanagement thinking. It provides an enduring foundation and grounding point\non which all subsequent work can be built. By bringing a disciplined\nstructure to the question of how firms achieve superior profitability,\nPorter’s rich frameworks and deep insights comprise a sophisticated view of\ncompetition unsurpassed in the last quarter-century.\"\r\n7118,7548,255458,Wayne A. Grudem,Systematic Theology: An Introduction to Biblical Doctrine,https://images.gr-assets.com/books/1328224325l/255458.jpg,4.23,11053,\"christian, religion\",\"The Christian church has a long tradition of systematic theology, that is,\nstudying theology and doctrine organized around fairly standard categories\nsuch as the Word of God, redemption, and Jesus Christ. This introduction to\nsystematic theology has several distinctive features: - A strong emphasis\non the scriptural basis for each doctrine and teaching - Clear writing,\nwith technical terms kept to a minimum - A contemporary approach, treating\nsubjects of special interest to the church today - A friendly tone,\nappealing to the emotions and the spirit as well as the intellect -\nFrequent application to life - Resources for worship with each chapter -\nBibliographies with each chapter that cross-reference subjects to a wide\nrange of other systematic theologies.\"\r\n7119,7549,380976,Sue Grafton,\"\"\"P\"\" is for Peril\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789158l/380976.jpg,3.85,16799,\"mystery, fiction\",\"\"\"P\"\" is for PerilSue Grafton\"\r\n7120,7550,25855506,Sarah Andersen,\"Adulthood Is a Myth: A \"\"Sarah's Scribbles\"\" Collection\",https://images.gr-assets.com/books/1481219756l/25855506.jpg,4.14,39601,\"comics, nonfiction\",\"Adulthood Is a Myth: A \"\"Sarah's Scribbles\"\" CollectionSarah Andersen\"\r\n7121,7551,301538,R. Scott Bakker,The Darkness That Comes Before,https://images.gr-assets.com/books/1421630062l/301538.jpg,3.78,13146,\"fantasy, fiction\",The Darkness That Comes BeforeR. Scott Bakker\r\n7122,7552,7841677,Kristin Kimball,\"The Dirty Life: On Farming, Food, and Love\",https://images.gr-assets.com/books/1277929135l/7841677.jpg,4.04,11559,\"memoir, nonfiction\",\"Documents the first year spent by the Harvard-graduate author with her new\nhusband on their sustainable farm in the Adirondacks, describing how she\nwithdrew from big-city life to be married in their barn loft, the difficult\nobstacles they faced attempting to provide a whole diet for one hundred\nlocals, and the rewards of a physical-labor lifestyle.\"\r\n7123,7553,9917998,Jonathan Maberry,Dust & Decay,https://images.gr-assets.com/books/1293823083l/9917998.jpg,4.29,13646,\"horror, fiction\",Dust & DecayJonathan Maberry\r\n7124,7554,13574417,Melissa Landers,Alienated,https://images.gr-assets.com/books/1384610045l/13574417.jpg,3.95,18171,\"romance, fantasy\",\"Two years ago, the aliens made contact. Now Cara Sweeney is going to be\nsharing a bathroom with one of them. Handpicked to host the first-ever\nL'eihr exchange student, Cara thinks her future is set. Not only does she\nget a free ride to her dream college, she'll have inside information about\nthe mysterious L'eihrs that every journalist would kill for. Cara's blog\nfollowing is about to skyrocket. Still, Cara isn't sure what to think when\nshe meets Aelyx. Humans and L'eihrs have nearly identical DNA, but cold,\ninfuriatingly brilliant Aelyx couldn't seem more alien. She's certain about\none thing though: no human boy is this good-looking. But when Cara's\nclassmates get swept up by anti-L'eihr paranoia, Midtown High School\nsuddenly isn't safe anymore. Threatening notes appear in Cara's locker, and\na police officer has to escort her and Aelyx to class. Cara finds support\nin the last person she expected. She realizes that Aelyx isn't just her\nonly friend; she's fallen hard for him. But Aelyx has been hiding the truth\nabout the purpose of his exchange, and its potentially deadly consequences.\nSoon Cara will be in for the fight of her life-not just for herself and the\nboy she loves, but for the future of her planet.\"\r\n7125,7555,18806240,Laura Ruby,Bone Gap,https://images.gr-assets.com/books/1402928507l/18806240.jpg,3.86,15150,\"fantasy, mystery\",Bone GapLaura Ruby\r\n7126,7556,52471,Adriana Trigiani,\"Big Cherry Holler (Big Stone Gap, Book 2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347322179l/52471.jpg,3.92,13356,\"fiction, romance\",\"Revisits the marriage of Ave Maria and Jack MacChesney, eight years after\ntheir wedding, amid the eccentric inhabitants in the small Virginia\nmountain town of Big Stone Gap.\"\r\n7127,7558,90475,Meg Cabot,Teen Idol,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348470853l/90475.jpg,3.53,20271,\"romance, contemporary\",\"High school junior Jenny Greenley is so good at keeping secrets that she's\nthe school newspaper's anonymous advice columnist. She's so good at it\nthat, when hotter-than-hot Hollywood star Luke Striker comes to her small\ntown to research a role, Jenny is the one in charge of keeping his identity\nunder wraps. But Luke doesn't make it easy, and soon everyone -- the town,\nthe paparazzi, and the tabloids alike -- know his secret ... and Jenny is\ncaught right in the middle of all the chaos.\"\r\n7128,7559,5587960,Chimamanda Ngozi Adichie,The Thing Around Your Neck,https://images.gr-assets.com/books/1320413162l/5587960.jpg,4.18,11861,\"fiction, contemporary\",\"A collection of twelve stories includes the tale of a medical student in\nhiding with a poor Muslim woman, and a woman who discovers a devastating\nsecret about her brother's death.\"\r\n7129,7560,27883214,Stephanie Garber,Caraval,https://images.gr-assets.com/books/1465563623l/27883214.jpg,3.97,30975,\"fantasy, romance\",\"Welcome, welcome to Caraval—Stephanie Garber’s sweeping tale of two sisters\nwho escape their ruthless father when they enter the dangerous intrigue of\na legendary game. Scarlett has never left the tiny island where she and her\nbeloved sister, Tella, live with their powerful, and cruel, father. Now\nScarlett’s father has arranged a marriage for her, and Scarlett thinks her\ndreams of seeing Caraval, the far-away, once-a-year performance where the\naudience participates in the show, are over. But this year, Scarlett’s\nlong-dreamt of invitation finally arrives. With the help of a mysterious\nsailor, Tella whisks Scarlett away to the show. Only, as soon as they\narrive, Tella is kidnapped by Caraval’s mastermind organizer, Legend. It\nturns out that this season’s Caraval revolves around Tella, and whoever\nfinds her first is the winner. Scarlett has been told that everything that\nhappens during Caraval is only an elaborate performance. But she\nnevertheless becomes enmeshed in a game of love, heartbreak, and magic with\nthe other players in the game. And whether Caraval is real or not, she must\nfind Tella before the five nights of the game are over, a dangerous domino\neffect of consequences is set off, and her sister disappears forever.\"\r\n7130,7561,2179832,James Frey,Bright Shiny Morning,https://images.gr-assets.com/books/1415586680l/2179832.jpg,3.8,10762,\"fiction, memoir\",\"One of the most celebrated and controversial authors in America delivers\nhis first novel—a sweeping chronicle of contemporary Los Angeles that is\nbold, exhilarating, and utterly original. Dozens of characters pass across\nthe reader's sight lines—some never to be seen again—but James Frey lingers\non a handful of LA's lost souls and captures the dramatic narrative of\ntheir lives: a bright, ambitious young Mexican-American woman who allows\nher future to be undone by a moment of searing humiliation; a supremely\nnarcissistic action-movie star whose passion for the unattainable object of\nhis affection nearly destroys him; a couple, both nineteen years old, who\nflee their suffocating hometown and struggle to survive on the fringes of\nthe great city; and an aging Venice Beach alcoholic whose life is turned\nupside down when a meth-addled teenage girl shows up half-dead outside the\nrestroom he calls home. Throughout this strikingly powerful novel there is\nthe relentless drumbeat of the millions of other stories that, taken as a\nwhole, describe a city, a culture, and an age. A dazzling tour de force,\nBright Shiny Morning illuminates the joys, horrors, and unexpected fortunes\nof life and death in Los Angeles.\"\r\n7131,7562,2267195,Kate Chopin,The Story of an Hour,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348249668l/2267195.jpg,4.08,13308,\"contemporary, classics\",\"Kate Chopin. Also includes \"\"Regret.\"\" In these selections, two women examine\ntheir lives, one looking forward to the future, the other regretting the\npast. 34 pages. Tale Blazers.\"\r\n7132,7563,85391,John Updike,Rabbit Is Rich,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1207331711l/85391.jpg,3.9,12455,\"fiction, classics\",\"Winner of the Pulitzer Prize, the National Book Award, and the National\nBook Critics Circle Award The hero of John Updike's Rabbit, Run, ten years\nafter the events of Rabbit Redux, has come to enjoy considerable prosperity\nas the chief sales representative of Springer Motors, a Toyota agency in\nBrewer, Pennsylvania. The time is 1979: Skylab is falling, gas lines are\nlengthening, and double-digit inflation coincides with a deflation of\nnational self-confidence. Nevertheless, Harry “Rabbit” Angstrom feels in\ngood shape, ready to enjoy life at last—until his wayward son, Nelson,\nreturns from the West, and the image of an old love pays a visit to the\nlot. New characters and old populate these scenes from Rabbit's middle age\nas he continues to pursue, in his zigzagging fashion, the rainbow of\nhappiness.\"\r\n7133,7564,12752313,Anna Quindlen,\"Lots of Candles, Plenty of Cake\",https://images.gr-assets.com/books/1330649974l/12752313.jpg,3.71,12792,\"memoir, nonfiction\",\"Presents a candid and personal account that explores what matters to\nmiddle-aged women and how they regard life stages.\"\r\n7134,7565,7531478,Cheryl Rainfield,Scars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954389l/7531478.jpg,4.17,12452,\"contemporary, fiction\",Teen girl cuts to cope with memories of sexual abuse\r\n7135,7566,5941079,Mary Kay Andrews,The Fixer Upper,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684989l/5941079._SX318_.jpg,3.88,14560,\"fiction, romance\",\"After her boss is caught in a political scandal, fledgling Washington\nlobbyist Dempsey Jo Killebrew is left broke, unemployed, and homeless. Out\nof options, she reluctantly accepts her father's offer to help turn\nBirdsong—the fading Victorian mansion he recently inherited in Guthrie,\nGeorgia—into a real estate cash cow. But Birdsong turns out to be a\nmoldering Pepto-Bismol-pink dump with duct-taped windows, a driveway full\nof junk, and a grumpy distant relation who's claiming squatter's rights.\nStuck in a tiny town where everyone seems to know her business, Dempsey\ngrits her teeth and rolls up her sleeves, and begins her journey back to\nthe last place she ever expected: home.\"\r\n7136,7567,6688121,Ahmad Fuadi,Negeri 5 Menara,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1249749162l/6688121.jpg,4.04,10018,\"fiction, religion\",Negeri 5 MenaraAhmad Fuadi\r\n7137,7568,129510,Naomi Novik,Empire of Ivory,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389968861l/129510.jpg,3.93,15449,\"fantasy, fiction\",\"An epidemic of unknown origins has decimated the noble dragons' ranks and\nonly Temeraire and a pack of newly recruited dragons stand as the only\nmeans of an airborne defense against France's ever bolder armies.\"\r\n7138,7569,541920,Rick Atkinson,\"An Army at Dawn: The War in Africa, 1942-1943\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440057096l/541920._SY475_.jpg,4.25,11111,\"history, nonfiction\",\"An Army at Dawn: The War in Africa, 1942-1943Rick Atkinson\"\r\n7139,7570,170618,Mary Higgins Clark,Daddy's Little Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347359178l/170618.jpg,3.85,14602,\"mystery, fiction\",\"Journalist Ellie Cavanaugh, the sister of a murder victim, attends the\nparole hearing of the man who had been convicted of the crime twenty-two\nyears earlier, and begins to wonder if his claim of innocence might be\ntrue.\"\r\n7140,7571,30343,Sandra Brown,Ricochet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1283517524l/30343.jpg,3.96,13327,\"mystery, romance\",\"The \"\"New York Times\"\" bestselling author of \"\"Chill Factor\"\" returns with a\nchilling story of murder, romance, and betrayal in high society where one\nrough-and-tumble detective might find his own life on the line. Available\nin a tall Premium Edition.\"\r\n7141,7572,199530,Fannie Flagg,Can't Wait to Get to Heaven,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391183531l/199530.jpg,3.89,12262,\"fiction, contemporary\",\"Strange things begin to happen when Mrs. Shimfessle, an eighty-year-old\nwoman, falls out of a fig tree in her own front yard, in an entertaining\nnew novel about one woman's offbeat experiences in the hereafter. Reader's\nGuide included. Reprint. 250,000 first printing.\"\r\n7142,7573,8706185,Jo Walton,Among Others,https://images.gr-assets.com/books/1317792367l/8706185.jpg,3.68,14761,\"fantasy, fiction\",\"Winner of the 2011 Nebula Award for Best Novel Winner of the 2012 Hugo\nAward for Best Novel Startling, unusual, and yet irresistably readable,\nAmong Others is at once the compelling story of a young woman struggling to\nescape a troubled childhood, a brilliant diary of first encounters with the\ngreat novels of modern fantasy and SF, and a spellbinding tale of escape\nfrom ancient enchantment. Raised by a half-mad mother who dabbled in magic,\nMorwenna Phelps found refuge in two worlds. As a child growing up in Wales,\nshe played among the spirits who made their homes in industrial ruins. But\nher mind found freedom and promise in the science fiction novels that were\nher closest companions. Then her mother tried to bend the spirits to dark\nends, and Mori was forced to confront her in a magical battle that left her\ncrippled--and her twin sister dead. Fleeing to her father whom she barely\nknew, Mori was sent to boarding school in England-a place all but devoid of\ntrue magic. There, outcast and alone, she tempted fate by doing magic\nherself, in an attempt to find a circle of like-minded friends. But her\nmagic also drew the attention of her mother, bringing about a reckoning\nthat could no longer be put off... Combining elements of autobiography with\nflights of imagination in the manner of novels like Jonathan Lethem's The\nFortress of Solitude, this is potentially a breakout book for an author\nwhose genius has already been hailed by peers like Kelly Link, Sarah\nWeinman, and Ursula K. Le Guin. One of School Library Journal's Best Adult\nBooks 4 Teens titles of 2011 One of io9's best Science Fiction & Fantasy\nbooks of the year 2011\"\r\n7143,7574,238127,J.D. Robb,Seduction in Death,https://images.gr-assets.com/books/1305123885l/238127.jpg,4.3,17565,\"mystery, romance\",\"As Lieutenant Eve Dallas tracks a seductive and ruthless killer through the\nstreets of twenty-first-century New York, she must also face brutal\nmemories from her childhood.\"\r\n7144,7575,56616,James M. Cain,Double Indemnity,https://images.gr-assets.com/books/1404786837l/56616.jpg,4.12,13559,\"fiction, mystery\",\"An unfaithful and unscrupulous wife exploits a morally inert insurance\nsalesman in a scheme to murder her husband and collect his insurance\"\r\n7145,7576,490403,Sherrilyn Kenyon,Upon the Midnight Clear,https://images.gr-assets.com/books/1437691219l/490403.jpg,4,21567,\"paranormal, fantasy\",\"Leta, a goddess driven from her home on Olympus, arrives on the doorstep of\nformer celebrity-turned-recluse Aidan O'Conner, seeking to use his anger as\nfuel for her powers to defend herself against the ruthless enemy who has\ndriven her from her home.\"\r\n7146,7577,1908456,Garr Reynolds,Presentation Zen: Simple Ideas on Presentation Design and Delivery (Voices That Matter),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348381669l/1908456.jpg,4.08,10896,\"business, nonfiction\",\"Provides lessons to help users design and deliver creative presentations\nusing Microsoft PowerPoint.\"\r\n7147,7579,29744,Philip Roth,\"Goodbye, Columbus and Five Short Stories\",https://images.gr-assets.com/books/1408068287l/29744.jpg,3.87,10089,\"classics, fiction\",\"A Radcliffe undergraduate and a Newark public library employee engage in a\nsummer romance\"\r\n7148,7580,9366879,\"Tom Sniegoski, Jeff Smith, Thomas E. Sniegoski, Steve Hamaker\",\"Bone: Quest For The Spark, Book One \",https://images.gr-assets.com/books/1328839457l/9366879.jpg,4.33,11416,\"fantasy, comics\",\"Bone: Quest For The Spark, Book One Tom Sniegoski, Jeff Smith, Thomas E. Sniegoski, Steve Hamaker\"\r\n7149,7583,7200351,Sherrilyn Kenyon,No Mercy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440982954l/7200351._SY475_.jpg,4.28,19453,\"fantasy, paranormal\",\"Shape-shifter Dev Peltier and Dark-Hunter Samia fall in love in spite of\nSamia's painful history as a betrayed Amazon warrior and the presence of\nold and new enemies in New Orleans.\"\r\n7150,7584,23363928,Scott  Hawkins,The Library at Mount Char,https://images.gr-assets.com/books/1416181258l/23363928.jpg,4.07,7814,\"fantasy, horror\",\"Carolyn and a dozen other children being raised by \"\"Father,\"\" a cruel man\nwith mysterious powers, begin to think he might be God; so when he dies,\nthey square off against each other to determine who will inherit his\nlibrary, which they believe holds the power to all Creation.\"\r\n7151,7585,551536,Chris d'Lacey,Fire Star,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198705l/551536.jpg,3.91,13595,\"fantasy, fiction\",Fire StarChris d'Lacey\r\n7152,7586,12659,James A. Michener,Texas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273149l/12659.jpg,4.06,13581,\"fiction, history\",\"Spanning four centuries that encompass the formation of several great\ndynasties, an epic saga chronicles the development of the fortune-seeking\nRusks, the wheeler-dealer Quimpers, the cotton empire of the Cobbs, and\nclan of the Garzas. Reprint. 40,000 first printing.\"\r\n7153,7587,95707,Joel Osteen,Your Best Life Now: 7 Steps to Living at Your Full Potential,https://images.gr-assets.com/books/1344265872l/95707.jpg,4,10338,\"christian, spirituality\",Your Best Life Now: 7 Steps to Living at Your Full PotentialJoel Osteen\r\n7154,7589,68483,Lois McMaster Bujold,The Vor Game,https://images.gr-assets.com/books/1322571824l/68483.jpg,4.28,15252,\"fiction, fantasy\",\"NEW YORK TIMES BEST-SELLING AUTHOR. NEW EDITION OF THE BOOK THAT WON LOIS\nMCMASTER BUJOLD HER FIRST HUGO AWARD. Sequel to The Warrior's Apprentice.\nTHE PRINCE AND THE MERCENARY Miles Vorkosigan has shaken the High Command\nof his home planet Barrayar to the core and has been sent to the other side\nof the galaxy as a result. There Miles runs into his old pals, the Free\nDendarii Mercenaries. And a good thing, too, because it turns out that\nMiles's childhood chum--Emperor Gregor to you and me--has been the victim\nof foul play, and only Miles can save him. In fact, Miles knows he must\nsave Gregor. Because if he doesn't, then the only person who could become\nemperor is Miles himself, which is, for Miles, a fate worse than death!\nAbout Lois McMaster Bujold's Vorkosigan Saga: \"\"The pace is breathless, the\ncharacterization thoughtful and emotionally powerful, and the author's\nnarrative technique and command of language compelling. Highly\nrecommended.\"\"--Booklist \"\"[The Warrior's Apprentice] would work just fine. .\n. as the introduction to the series as a whole. I suspect that anybody who\nreads one will be as charmed as I was and want to pick up the rest.\"\"--SF\nSite \"\"If you love solid space opera rooted in strong character, you can't\ngo wrong. . . . The Warrior's Apprentice already displays the craft and the\nheart which would soon make Lois McMaster Bujold one of the most feted\ntalents in SF.\"\"--SF Reviews About Vorkosigan series entry Diplomatic\nImmunity: \"\"Bujold is adept at world-building and provides a witty,\ncharacter-centered plot, full of exquisite grace notes. . . fans will be\nthoroughly gripped and likely to finish the book in a single sitting.\"\"--\nPublishers Weekly The Vorkosigan Series in Story-based Chronological Order\nFalling Free Shards of Honor Barrayar The Warrior's Apprentice The Vor Game\nCetaganda Ethan of Athos Borders of Infinity Brothers in Arms Mirror Dance\nMemory Komarr A Civil Campaign Diplomatic Immunity Captain Vorpatril's\nAlliance CryoBurn Gentleman Jole and the Red Queen\"\r\n7155,7591,20706269,Lauren Beukes,Broken Monsters,https://images.gr-assets.com/books/1394562848l/20706269.jpg,3.59,7086,\"horror, fiction\",Broken MonstersLauren Beukes\r\n7156,7592,11623,\"Sylvia Plath, Karen V. Kukil\",The Journals of Sylvia Plath,https://images.gr-assets.com/books/1473939372l/11623.jpg,4.29,12419,\"nonfiction, memoir\",\"An uncensored collection of the late poet's complete journals as recorded\nduring the last twelve years of her life includes previously unpublished\nmaterial and chronicles her personal and literary struggles.\"\r\n7157,7593,5986375,David Foster Wallace,This is Water,https://images.gr-assets.com/books/1344270056l/5986375.jpg,4.53,13312,\"philosophy, nonfiction\",\"Only once did David Foster Wallace give a public talk on his views on life,\nduring a commencement address given in 2005 at Kenyon College. The speech\nis reprinted for the first time in book form in THIS IS WATER. How does one\nkeep from going through their comfortable, prosperous adult life\nunconsciously? How do we get ourselves out of the foreground of our\nthoughts and achieve compassion? The speech captures Wallace's electric\nintellect as well as his grace in attention to others. After his death, it\nbecame a treasured piece of writing reprinted in The Wall Street Journal\nand the London Times, commented on endlessly in blogs, and emailed from\nfriend to friend. Writing with his one-of-a-kind blend of causal humor,\nexacting intellect, and practical philosophy, David Foster Wallace probes\nthe challenges of daily living and offers advice that renews us with every\nreading.\"\r\n7158,7594,5552,Richard Feynman,QED: The Strange Theory of Light and Matter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920718l/5552.jpg,4.23,10438,\"science, nonfiction\",\"This book is a venture that, as far as we know, has never been tried. It is\na straightforward, honest explanation of a rather difficult subject-the\ntheory of Quantum electrodynamics-for a nontechnical audience. It is\ndesigned to give the interested reader an appreciation for the kind of\nthinking that physicists have resorted to in order to explain how Nature\nbehaves.\"\r\n7159,7597,269386,Jill Conner Browne,The Sweet Potato Queens' Book of Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187488l/269386.jpg,3.7,12903,\"fiction, nonfiction\",\"The group of Belles-gone-bad philosophize on men, life, love, being\nprepared, educating our young, and what to eat when tragedy strikes\"\r\n7160,7598,2964700,Tamora Pierce,Mastiff,https://images.gr-assets.com/books/1302921347l/2964700.jpg,4.24,19695,\"fantasy, fiction\",MastiffTamora Pierce\r\n7161,7599,179264,Debra Dean,The Madonnas of Leningrad,https://images.gr-assets.com/books/1479681269l/179264.jpg,3.77,12620,\"fiction, art\",\"In a novel that moves back and forth between the Soviet Union during World\nWar II and modern-day America, Marina, an elderly Russian woman, recalls\nvivid images of her youth during the height of the siege of Leningrad when,\nas a tour guide at the Hermitage, she and other staff members removed the\nmuseum's priceless artworks for safekeeping. A first novel. 50,000 first\nprinting.\"\r\n7162,7600,6098691,Laurell K. Hamilton,Divine Misdemeanors ,https://images.gr-assets.com/books/1327878336l/6098691.jpg,4.04,19184,\"fantasy, paranormal\",\"Refusing the throne of faerie in order to protect her unborn twins, Merry\nwithdraws with her bodyguards to Los Angeles before encountering unexpected\ndangers from the factions of the faerie courts and her own worshipers. By\nthe best-selling author of Swallowing Darkness. Reprint.\"\r\n7163,7601,2983654,Chelsea Cain,Sweetheart,https://images.gr-assets.com/books/1311994924l/2983654.jpg,4.05,14342,\"thriller, fiction\",\"Detective Archie Sheridan is trying to rebuild a life with his family. But\nhe remains haunted by beautiful, ruthless serial killer Gretchen Lowell -\nthe woman who tortured him then saved his life. Now she is safely behind\nbars, Archie is determined to stay away from her.\"\r\n7164,7602,7011225,José Saramago,Caim,https://images.gr-assets.com/books/1408538386l/7011225.jpg,3.89,7402,\"fiction, religion\",\"In a reimagining of the Old Testament, Cain, condemned to wander forever\nfor murdering his brother, journeys through time and space to witness key\nbiblical events that impress upon him the unjust nature of God's edicts.\"\r\n7165,7603,22321,William Gibson,All Tomorrow's Parties,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420821255l/22321.jpg,3.88,11672,\"fiction, science\",\"Living a down-and-out existence in Tokyo, Colin Laney is determined to make\nhis way back to the United States and to San Francisco, where, thanks to\nhis special sensitivities about people and events, he believes a pivotal\nmoment in human history will take place sometime in the future.\"\r\n7166,7604,7562764,Hannu Rajaniemi,The Quantum Thief,https://images.gr-assets.com/books/1327950631l/7562764.jpg,3.83,11137,\"fiction, fantasy\",\"Broken free from a nightmarish distant-future prison by a mysterious woman\nwho offers him his life back if he will complete the ultimate heist he left\nunfinished, con man Jean le Flambeur is pursued by an Oubliette\ninvestigator in a multi-planetary cat-and-mouse chase in worlds where\npeople communicate through shared memories. Reprint.\"\r\n7167,7605,9925913,John Sandford,Shock Wave,https://images.gr-assets.com/books/1292472145l/9925913.jpg,4.19,11578,\"mystery, fiction\",\"When protests about a superstore chain's plans to build a location in a\nMinnesota river town escalate into bombing attacks at the construction site\nand the company's headquarters, Virgil Flowers races against time to find\nand stop the bomber. By the best-selling author of Bad Blood. Reprint. 1\nmillion first printing.\"\r\n7168,7606,12075,Ludwig Wittgenstein,Logisch-Philosophische Abhandlung,https://images.gr-assets.com/books/1396830687l/12075.jpg,4.06,11069,\"philosophy, nonfiction\",Logisch-Philosophische AbhandlungLudwig Wittgenstein\r\n7169,7607,215492,Agatha Christie,Lord Edgware Dies,https://images.gr-assets.com/books/1375949065l/215492.jpg,3.88,14117,\"mystery, crime\",\"When Lord Edgware is found murdered the police are baffled. His estranged\nactress wife was seen visiting him just before his death and Hercule Poirot\nhimself heard her brag of her plan to “get rid” of him. But how could she\nhave stabbed Lord Edgware in his library at exactly the same time she was\nseen dining with friends? It’s a case that almost proves to be too much for\nthe great Poirot.\"\r\n7170,7608,107021,\"Jeph Loeb, Jim Lee, Scott Williams\",Batman (Volume 2): Hush,https://images.gr-assets.com/books/1460914478l/107021.jpg,4.25,12151,\"comics, fiction\",\"Batman (Volume 2): HushJeph Loeb, Jim Lee, Scott Williams\"\r\n7171,7609,5600151,Spencer Quinn,Dog on It,https://images.gr-assets.com/books/1342376684l/5600151.jpg,3.85,13525,\"mystery, fiction\",\"The first book of the New York Times bestselling Chet and Bernie mystery\nseries, an “enchanting one-of-a-kind novel” (Stephen King) that is “nothing\nshort of masterful” (Los Angeles Times). Chet, the wise and lovable canine\nnarrator of Dog on It, and Bernie, a down-on-his-luck private investigator,\nare quick to take a new case involving a frantic mother searching for her\nteenage daughter. This well-behaved and gifted student may or may not have\nbeen kidnapped, but she has definitely gotten mixed up with some very\nunsavory characters. With Chet’s highly trained nose leading the way, their\nhunt for clues takes them into the desert to biker bars and other exotic\nlocales—until the bad guys try to turn the tables and the resourceful duo\nlands in the paws of peril. Spencer Quinn’s irresistible mystery kicks off\na delightful new series that will have readers panting for more.\"\r\n7172,7611,28351,Dr. Seuss,And to Think That I Saw It on Mulberry Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389840830l/28351.jpg,3.99,17584,\"fiction, classics\",\"A boy imagines a series of incredible sights on his way home from school so\nthat he will have an interesting report to give his father.\"\r\n7173,7612,17334495,Doris Kearns Goodwin,\"The Bully Pulpit: Theodore Roosevelt, William Howard Taft, and the Golden Age of Journalism\",https://images.gr-assets.com/books/1386557352l/17334495.jpg,4.16,10384,\"history, biography\",\"Focusing on the broken friendship between Teddy Roosevelt and his chosen\nsuccessor, William Howard Taft, a Pulitzer Prize-winning historian revisits\nthe Progressive Era during which Roosevelt wielded the Bully Pulpit to\nchallenge and triumph over abusive monopolies, political bosses and corrupt\nmoney brokers only to see it compromised by Taft. (This book was previously\nfeatured in Forecast.)\"\r\n7174,7613,15801381,Brandon Mull,\"Chasing the Prophecy (Beyonders, #3)\",https://images.gr-assets.com/books/1356328161l/15801381.jpg,4.35,11816,\"fantasy, fiction\",\"Jason and Rachel's adventures and friendships have made Lyrian more of a\nhome to them than they could have imagined, so now, armed with the prophecy\nof a dying oracle, they are ready to become Lyrian's heroes whatever the\ncost to themselves.\"\r\n7175,7614,77736,David Weber,The Short Victorious War,https://images.gr-assets.com/books/1321561719l/77736.jpg,4.16,14563,\"fiction, ebooks\",Sci-fi.\r\n7176,7615,73965,Caroline Knapp,Drinking: A Love Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202057l/73965.jpg,4.04,12234,\"memoir, nonfiction\",\"The author provides a candid memoir of her twenty-year love affair with\nalcohol, explaining how and why she became an alcoholic and her struggle to\nlive without an alcoholic crutch\"\r\n7177,7616,1219103,Jules Verne,Cinq semaines en ballon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347375248l/1219103.jpg,3.74,13062,\"classics, fiction\",Cinq semaines en ballonJules Verne\r\n7178,7617,10324808,\"P.C. Cast, Kristin Cast\",Dragon's Oath,https://images.gr-assets.com/books/1359740283l/10324808.jpg,4.06,16558,\"fantasy, paranormal\",\"The first in an enthralling new mini-series of novellas from the #1\nbestselling authors of the House of Night, Dragon's Oath tells the story\nbehind the House of Night's formidable fencing instructor – the love that\nwill transform him, and the promise that will haunt him In early 19th\ncentury England, long before he's a professor at the Tulsa House of Night,\nBryan Lankford is a troublesome yet talented human teen who thinks he can\nget away with anything... until his father, a wealthy nobleman, has finally\nhad enough, and banishes him to America. When Bryan is Marked on the docks\nand given the choice between the London House of Night and the dragon-\nprowed ship to America, he chooses the Dragon – and a brand new fate.\nBecoming a Fledgling may be exciting, but it opens a door to a dangerous\nworld.... In 1830's St. Louis, the Gateway to the West, Dragon Lankford\nbecomes a Sword Master, and soon realizes there are both frightening\nchallenges and beautiful perks. Like Anastasia, the captivating young\nProfessor of Spells and Rituals at the Tower Grove House of Night, who\nreally should have nothing to do with a fledgling... But when a dark power\nthreatens, Dragon is caught in its focus. Though his uncanny fighting\nskills make him a powerful fledgling, is he strong enough to ward off evil,\nwhile protecting Anastasia as well? Will his choices save her—or destroy\nthem all?\"\r\n7179,7618,7823038,Kalayna Price,Grave Witch,https://images.gr-assets.com/books/1327440625l/7823038.jpg,3.96,22112,\"paranormal, fantasy\",\"While investigating a high-profile murder for the police, Alex Craft, a\ngrave witch who can talk to the dead, joins forces with homicide detective\nFalin Andrews to catch a killer who wields a magic so evil it could cost\nAlex both her life--and her soul. Original.\"\r\n7180,7619,16300,Agatha Christie,Sleeping Murder,https://images.gr-assets.com/books/1308808135l/16300.jpg,3.91,15612,\"mystery, fiction\",\"Miss Marple helps a young couple solve a murder that had occurred eighteen\nyears earlier.\"\r\n7181,7620,212525,\"Edith Wharton, Mary Gordon\",Ethan Frome and Other Short Fiction,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391561572l/212525.jpg,3.65,14271,\"classics, fiction\",\"Collects \"\"Ethan Frome\"\" and four short stories: \"\"The Touchstone,\"\" \"\"The Last\nAsset,\"\" \"\"Xingu,\"\" and \"\"The Other Two\"\"\"\r\n7182,7621,13419891,Sarah J. Maas,The Assassin and the Desert,https://images.gr-assets.com/books/1335783827l/13419891.jpg,4.4,18943,\"fantasy, ebooks\",\"The Silent Assassins of the Red Desert aren't much for conversation, and\nCeleana Sardothien wouldn't have it any other way. She's not there to\nchatter, she's there to hone her craft as the world's most feared killer\nfor hire. Quiet suits her just fine - until she begins to suspect there's a\ntraitor in the fortress, and she must determine which of the mute and\nmysterious assassins is her deadly adversary.\"\r\n7183,7622,132626,\"Friedrich Nietzsche, Walter Kaufmann, R.J. Hollingdale\",On the Genealogy of Morals / Ecce Homo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1531184643l/132626.jpg,4.14,11893,\"philosophy, nonfiction\",\"The great philosopher's major work on ethics, along with Ecce Homo,\nNietzche's remarkable review of his life and works. On the Genealogy of\nMorals (1887) shows him using philsophy, psychology, and classical\nphilology in an effort to give new direction to an ancient discipline. The\nwork consists of three essays. The first contrasts master morality and\nslave morality and indicates how the term \"\"good\"\" has widely different\nmeanings in each. The second inquiry deals with guilt and the bad\nconscience; the third with ascetic ideals—not only in religion but also in\nthe academy. Ecce Homo, written in 1898 and first published posthumously in\n1908, is Nietzsche's review of his life and works. It contains chapters on\nall the books he himself published. His interpretations are as fascinating\nas they are invaluable. Nothing Nietzsche wrote is more stunning\nstylistically or as a human document. Walter Kaufmann's masterful\ntranslations are faithful of the word and spirit of Nietzsche, and his\nrunning footnote commentaries on both books are more comprehensive than\nthose in his other Nietzsche translations because these tow works have been\nso widely misunderstood.\"\r\n7184,7623,121410,Steven Callahan,Adrift: Seventy-Six Days Lost at Sea,https://images.gr-assets.com/books/1356596323l/121410.jpg,4.09,10666,\"nonfiction, memoir\",Adrift: Seventy-Six Days Lost at SeaSteven Callahan\r\n7185,7624,129620,Judith McNaught,Once and Always,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426108166l/129620.jpg,4.21,18197,\"romance, fiction\",\"Free-spirited Victoria Seaton, an American orphan, sails to England to\nclaim her inheritance, where she meets and falls in love with her troubled\ncousin, Lord Jason Fielding. Reissue.\"\r\n7186,7626,95658,Lisi Harrison,\"Best Friends for Never (The Clique, #2)\",https://images.gr-assets.com/books/1344263568l/95658.jpg,3.73,15345,\"fiction, contemporary\",\"A bet about wardrobes between the wealthy Massie and middle-class Claire\nresults in a testing of old friendships, a forging of new ones, and a\nchange for the student body at Octavian Country Day School.\"\r\n7187,7627,11734251,Bernard Cornwell,Death of Kings,https://images.gr-assets.com/books/1327963375l/11734251.jpg,4.28,10479,\"fiction, history\",\"The latest chapter in the epic saga of the making of England, magnificently\nbrought to life by \"\"the reigning king of historical fiction\"\" (USA Today),\nBernard Cornwell. As the ninth century wanes, Alfred the Great lies dying,\nhis lifelong goal of a unified England in peril, his kingdom on the brink\nof chaos. Though his son, Edward, has been named his successor, there are\nother Saxon claimants to the throne—as well as ambitious pagan Vikings to\nthe north. Torn between his vows to Alfred and the desire to reclaim his\nlong-lost ancestral lands in the north, Uhtred, Saxon-born and Viking-\nraised, remains the king's warrior but has sworn no oath to the crown\nprince. Now he must make a momentous decision that will forever transform\nhis life and the course of history: to take up arms—and Alfred's mantle—or\nlay down his sword and let his liege's dream of a unified kingdom die along\nwith him.\"\r\n7188,7628,9151181,\"Howard Schultz, Joanne Gordon\",Onward: How Starbucks Fought for Its Life without Losing Its Soul,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390950547l/9151181.jpg,3.79,11119,\"business, nonfiction\",\"In this #1 New York Times bestseller, the CEO of Starbucks recounts the\nstory and leadership lessons behind the global coffee company's comeback In\n2008, Howard Schultz decided to return as the CEO of Starbucks to help\nrestore its financial health and bring the company back to its core values.\nIn Onward, he shares this remarkable story, revealing how, during one of\nthe most tumultuous economic periods in American history, Starbucks again\nachieved profitability and sustainability without sacrificing humanity.\"\r\n7189,7629,978098,Laurence Rees,Auschwitz: A New History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387726300l/978098.jpg,4.24,10437,\"history, nonfiction\",\"Insights gleaned from more than one hundred original interviews shed new\nlight on history's most notorious death camp, with the testimonies of\nsurvivors providing a detailed portrait of the camp's inner workings.\"\r\n7190,7630,9013,Slavomir Rawicz,The Long Walk: The True Story of a Trek to Freedom,https://images.gr-assets.com/books/1417980460l/9013.jpg,4.18,10188,\"history, nonfiction\",The Long Walk: The True Story of a Trek to FreedomSlavomir Rawicz\r\n7191,7631,682153,Nora Roberts,Three Fates,https://images.gr-assets.com/books/1309201516l/682153.jpg,4.03,17082,\"romance, fiction\",\"When a priceless family heirloom is stolen, Malachi, Gideon, and Rebecca\nSullivan embark on a mission to recover the treasure and make their\nfortune.\"\r\n7192,7632,20983362,Alexandra Bracken,Passenger,https://images.gr-assets.com/books/1446749751l/20983362.jpg,3.84,23070,\"fantasy, romance\",PassengerAlexandra Bracken\r\n7193,7633,102857,\"J.D. Robb, Susan Ericksen\",\"Born in Death (In Death, #23)\",https://images.gr-assets.com/books/1298297096l/102857.jpg,4.33,17912,\"mystery, romance\",\"Born in Death (In Death, #23)J.D. Robb, Susan Ericksen\"\r\n7194,7634,18666006,Chris Bohjalian,\"Close Your Eyes, Hold Hands\",https://images.gr-assets.com/books/1392355248l/18666006.jpg,3.59,12107,\"fiction, contemporary\",\"Living in an igloo of ice and trash bags half a year after a cataclysmic\nnuclear disaster, Emily, convinced that she will be hated as the daughter\nof the drunken father who caused the meltdown, assumes a fictional identity\nwhile protecting a homeless boy. By the best-selling author of The\nSandcastle Girls. 150,000 first printing.\"\r\n7195,7635,834378,Agatha Christie,A Pocket Full of Rye,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760577l/834378.jpg,3.83,17513,\"mystery, crime\",A Pocket Full of RyeAgatha Christie\r\n7196,7636,7011879,\"Durjoy Datta, Maanvi Ahuja\",of course i love you,https://images.gr-assets.com/books/1274597947l/7011879.jpg,3.21,6671,\"romance, fiction\",\"of course i love youDurjoy Datta, Maanvi Ahuja\"\r\n7197,7637,184850,Robyn Carr,Virgin River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191717l/184850.jpg,4.12,17371,\"romance, contemporary\",\"Welcome back to Virgin River with the book that started it all... Wanted:\nMidwife/nurse practitioner in Virgin River, population six hundred. Make a\ndifference against a backdrop of towering California redwoods and crystal\nclear rivers. Rent-free cabin included. When the recently widowed Melinda\nMonroe sees this ad, she quickly decides that the remote mountain town of\nVirgin River might be the perfect place to escape her heartache, and to\nreenergize the nursing career she loves. But her high hopes are dashed\nwithin an hour of arriving--the cabin is a dump, the roads are treacherous\nand the local doctor wants nothing to do with her. Realizing she's made a\nhuge mistake, Mel decides to leave town the following morning. But a tiny\nbaby abandoned on a front porch changes her plans...and former marine Jack\nSheridan cements them into place.\"\r\n7198,7638,12009,Iain M. Banks,The Algebraist,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388530602l/12009.jpg,3.99,13210,\"fiction, science\",\"It is 4034 AD. Humanity has made it to the stars. Fassin Taak, a Slow Seer\nat the Court of the Nasqueron Dwellers, will be fortunate if he makes it to\nthe end of the year. The Nasqueron Dwellers inhabit a gas giant on the\noutskirts of the galaxy, in a system awaiting its wormhole connection to\nthe rest of civilization. In the meantime, they are dismissed as decadents\nliving in a state of highly developed barbarism, hoarding data without\norder, hunting their own young and fighting pointless formal wars. Seconded\nto a military-religious order he's barely heard of — part of the baroque\nhierarchy of the Mercatoria, the latest galactic hegemony — Fassin Taak has\nto travel again amongst the Dwellers. He is in search of a secret hidden\nfor half a billion years. But with each day that passes a war draws closer\n— a war that threatens to overwhelm everything and everyone he's ever\nknown. Skyhorse Publishing, under our Night Shade and Talos imprints, is\nproud to publish a broad range of titles for readers interested in science\nfiction (space opera, time travel, hard SF, alien invasion, near-future\ndystopia), fantasy (grimdark, sword and sorcery, contemporary urban\nfantasy, steampunk, alternative history), and horror (zombies, vampires,\nand the occult and supernatural), and much more. While not every title we\npublish becomes a New York Times bestseller, a national bestseller, or a\nHugo or Nebula award-winner, we are committed to publishing quality books\nfrom a diverse group of authors.\"\r\n7199,7639,192510,\"José Mauro de Vasconcelos, قاسم صنعوی\",Meu Pé de Laranja Lima,https://images.gr-assets.com/books/1502523710l/192510.jpg,4.36,2716,\"romance, classics\",\"Meu Pé de Laranja LimaJosé Mauro de Vasconcelos, قاسم صنعوی\"\r\n7200,7640,22642472,Margaret Atwood,Stone Mattress,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404769155l/22642472.jpg,3.93,10622,\"fiction, fantasy\",Stone MattressMargaret Atwood\r\n7201,7641,262545,Ivan Doig,The Whistling Season,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441691915l/262545._SY475_.jpg,4.01,11379,\"fiction, history\",\"Hired as a housekeeper to work on the early 1900s Montana homestead of\nwidower Oliver Milliron, the irreverent Rose and her brother, Morris,\nendeavor to educate the widower's sons while witnessing local efforts on a\nmassive irrigation project.\"\r\n7202,7642,16000044,\"Morgan Rhodes, Michelle Rowen\",Rebel Spring,https://images.gr-assets.com/books/1379031383l/16000044.jpg,4.16,18379,\"fantasy, romance\",\"When the evil King Gaius announces that a road is to be built into the\nForbidden Mountains, he sets off a chain of events that will forever change\nthe face of the land.\"\r\n7203,7643,18170134,\"James Patterson, Marshall Karp\",NYPD Red 2,https://images.gr-assets.com/books/1373501096l/18170134.jpg,4.07,9293,\"mystery, fiction\",\"When NYPD Red arrives at a crime scene, everyone takes notice. Known as the\nprotectors of the rich, famous, and connected, NYPD Red is the elite task\nforce called in only for New York City's most high-profile crimes. And\nDetective Zach Jordan is the best of the best, a brilliant and relentless\npursuer of justice. He puts professionalism above all, ignoring his\nfeelings for his partner, Detective Kylie MacDonald, the woman who broke\nhis heart when they first met in the academy. But even with their top-notch\ntraining, Zach and Kylie aren't prepared for what they see when they're\ncalled to a crime scene in the heart of Central Park. They arrive to find a\ncarousel spinning round and round, its painted horses grinning eerily in\nthe early morning dark. There is only one rider: a brutally slaughtered\nwoman, her body tied up and dressed in a Hazmat suit, on display for the\nworld to see. The victim, a woman of vast wealth and even greater\nconnections, is the fourth in a string of shocking murders that have hit\nthe city. As the public pressure mounts, and political and personal secrets\nof the highest order hang in the balance, Zach and Kylie must find out\nwhat's really behind the murderer's rampage. But Kylie has been acting\nstrange recently--and Zach knows whatever she's hiding could threaten the\nbiggest case of their careers. NYPD Red 2 is the next outstanding novel in\nJames Patterson's newest series, a thriller that careens through New York\nCity and deep into the psyche of a depraved killer you've never seen\nbefore.\"\r\n7204,7644,12661,James A. Michener,Chesapeake,https://images.gr-assets.com/books/1421707536l/12661.jpg,4.14,15408,\"fiction, history\",\"A panoramic narrative of human and animal life on Maryland's Eastern Shore\nfocuses on a ten-square-mile area at the mouth of the Choptank River and\nthe families that settle there, from the early seventeenth century to the\npresent day. Reprint. 20,000 first printing.\"\r\n7205,7647,37100,Walter Mosley,Devil in a Blue Dress,https://images.gr-assets.com/books/1336545202l/37100.jpg,3.91,12969,\"mystery, fiction\",Devil in a Blue DressWalter Mosley\r\n7206,7648,265650,\"Michael Rosen, Jane Ray\",Shakespeare's Romeo and Juliet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173257853l/265650.jpg,4.09,19052,\"classics, fiction\",\"A prose retelling, incorporating lines from the play, of the tragic\nconsequences of a deadly feud between two rival families in Renaissance\nVerona.\"\r\n7207,7649,298663,Jim Thompson,The Killer Inside Me,https://images.gr-assets.com/books/1403187402l/298663.jpg,3.9,12425,\"fiction, crime\",\"Lou Ford, an easy-going deputy sheriff in Central City, hides his psychotic\nnature as he plans a double murder\"\r\n7208,7650,588747,Mary Elizabeth Braddon,Lady Audley's Secret,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388692586l/588747.jpg,3.73,13329,\"classics, mystery\",\"When beautiful Lucy Graham becomes Lady Audley, her future looks secure.\nBut her past is shrouded in mystery, and the disappearance of a young man\nsparks an investigation that will reveal her dark secret... This new\nedition explores the novel in the context of nineteenth-century sensation\nfiction and the lively debates it provoked.\"\r\n7209,7651,2528,\"José Saramago, Margaret Jull Costa\",Todos os Nomes,https://images.gr-assets.com/books/1327955213l/2528.jpg,3.88,9520,\"fiction, contemporary\",\"When a drone in the Central Registry discovers a stray unfiled birth\ncertificate, he decides to investigate the identity of the woman--the first\nstep in an obsession that will lead him to her. By the Nobel Prize-winning\nauthor of Blindness. Reader's Guide included. Reprint. 60,000 first\nprinting.\"\r\n7210,7652,60057,Adriana Trigiani,\"Lucia, Lucia\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342036l/60057.jpg,3.92,13360,\"fiction, romance\",\"The beautiful daughter of an Italian immigrant family in 1950 Greenwich\nVillage, Lucia Sartori pursues her dream of a career in the fashion\nindustry, until she falls in love with a handsome stranger, who must win\nover her traditional family to gain her hand in marriage, but old secrets\nand scandal could change their lives forever. Reader's Guide included.\nReprint.\"\r\n7211,7653,7514925,Jodi Lynn Anderson,Tiger Lily,https://images.gr-assets.com/books/1329681513l/7514925.jpg,3.98,16217,\"fantasy, romance\",Tiger LilyJodi Lynn Anderson\r\n7212,7654,11430,\"Karen Kingsbury, Gary Smalley\",Return,https://images.gr-assets.com/books/1406513762l/11430.jpg,4.44,11737,\"christian, fiction\",\"ReturnKaren Kingsbury, Gary Smalley\"\r\n7213,7655,114982,Philip Pullman,The Ruby in the Smoke,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424038246l/114982.jpg,3.75,16214,\"mystery, fiction\",\"In nineteenth-century London, sixteen-year-old Sally, a recent orphan,\nbecomes involved in a deadly search for a mysterious ruby.\"\r\n7214,7656,319300,Amanda Foreman,Georgiana: Duchess of Devonshire,https://images.gr-assets.com/books/1332041559l/319300.jpg,3.79,11621,\"history, biography\",\"Follows the turbulent life of the young noblewoman who became the style\nicon of late eighteenth-century England.\"\r\n7215,7658,12551077,Miranda Kenneally,Stealing Parker,https://images.gr-assets.com/books/1334451985l/12551077.jpg,3.88,15997,\"contemporary, romance\",\"\"\"A hero who will melt your heart.\"\"—Jennifer Echols, national award-winning\nauthor of Such a Rush Parker Shelton pretty much has the perfect life.\nShe's on her way to becoming valedictorian at Hundred Oaks High, she's made\nthe all-star softball team, and she has plenty of friends. Then her\nmother's scandal rocks their small town and suddenly no one will talk to\nher. Now Parker wants a new life. So she quits softball. Drops twenty\npounds. And she figures why kiss one guy when she can kiss three. Or four.\nWhy limit herself to high school boys when the majorly cute new baseball\ncoach seems especially flirty? But how far is too far before she loses\nherself completely? Praise for Catching Jordan: \"\"A must-read for teens! I\ncouldn't put it down!\"\"—Simon Elkeles, New York Times bestselling author of\nthe Perfect Chemistry series \"\"With a clever, authentic voice, Kenneally\nproves once and for all that when it comes to making life's toughest calls-\non and off the field-girls rule!\"\"—Sara Ockler, bestselling author of Fixing\nDelilah\"\r\n7216,7660,21330,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Tony Akins, Jimmy Palmiotti\",\"Fables, Volume 5: The Mean Seasons\",https://images.gr-assets.com/books/1327870458l/21330.jpg,4.19,17909,\"fantasy, comics\",\"New York Times Best-selling author Bill Willingham delivers the end to his\nlegendary series in Fables Volume 22. The Eisner Award-winning series sees\nthe conclusion of the beloved stories of Bigby Wolf, Rose Red, Boy Blue,\nBell, Pinnochio and countless other timeless fables. The only question left\nto be answered is whether or not they will have a happy ending.\"\r\n7217,7661,82888,Machado de Assis,Dom Casmurro,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348286455l/82888.jpg,4.24,10590,\"classics, fiction\",Dom CasmurroMachado de Assis\r\n7218,7662,57913,\"Robert Shea, Robert Anton Wilson\",The Illuminatus! Trilogy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923913l/57913.jpg,4,12444,\"fiction, fantasy\",3 science fiction-romaner.\r\n7219,7663,6420846,Alexander Gordon Smith,Lockdown,https://images.gr-assets.com/books/1409279086l/6420846.jpg,4.1,14024,\"horror, fantasy\",LockdownAlexander Gordon Smith\r\n7220,7664,16696,\"Michael Chabon, Jay Ryan\",The Final Solution: A Story of Detection,https://images.gr-assets.com/books/1407709227l/16696.jpg,3.31,12466,\"fiction, mystery\",\"Retired to the English countryside, an eighty-nine-year-old man, rumored to\nbe a once-famous detective, is more concerned with his beekeeping than with\nhis fellow man. Into his life wanders Linus Steinman, nine years old and\nmute, who has escaped from Nazi Germany with his sole companion: an African\ngray parrot. What is the meaning of the mysterious strings of German\nnumbers the bird spews out -- a top-secret SS code? The keys to a series of\nSwiss bank accounts? Or do they hold a significance both more prosaic and\nfar more sinister? Though the solution may be beyond even the reach of the\nonce-famous sleuth, the true story of the boy and his parrot is subtly\nrevealed in a wrenching resolution.\"\r\n7221,7666,7870457,\"John Layman, Rob Guillory\",International Flavor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347756860l/7870457.jpg,4.13,13134,\"fiction, mystery\",\"International FlavorJohn Layman, Rob Guillory\"\r\n7222,7667,452244,Poppy Z. Brite,Lost Souls,https://images.gr-assets.com/books/1420793346l/452244.jpg,3.89,13905,\"horror, fiction\",\"In Missing Mile, North Carolina, in search of supple young flesh and\nthirsting for blood, three beautiful vampires--Molochai, Twig, and Zillah--\nfollow vampires Nothing and Ann on a mad, illicit road trip south to New\nOrleans. Reprint.\"\r\n7223,7668,86658,Joseph Conrad,The Secret Agent: A Simple Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171075859l/86658.jpg,3.59,11590,\"fiction, mystery\",\"Penguin inaugurates a series of revised editions of Conrad's finest works,\nwith new introductions In a corrupt London underworld of criminals,\nterrorists, and fanatics, Mr. Verloc is assigned to plant a bomb. The\ntragic repercussions for his family show how Conrad's ironic voice is\nconcerned not with politics but with the terrible fates of ordinary people.\"\r\n7224,7669,514210,Alan W. Watts,The Way of Zen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348297121l/514210.jpg,4.18,11166,\"philosophy, religion\",\"Traces the origin of Zen and discusses the Zen way of life against its\nhistorical and cultural background.\"\r\n7225,7670,13642710,Ramez Naam,Nexus,https://images.gr-assets.com/books/1347149654l/13642710.jpg,4.06,9623,\"fiction, thriller\",NexusRamez Naam\r\n7226,7671,896622,Kathleen E. Woodiwiss,The wolf and the dove,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430144076l/896622.jpg,4.14,13694,\"romance, fiction\",The wolf and the doveKathleen E. Woodiwiss\r\n7227,7673,21412360,Colm Tóibín,Nora Webster,https://images.gr-assets.com/books/1451442745l/21412360.jpg,3.58,10353,\"fiction, contemporary\",\"Struggling with grief and financial hardships after the death of her\nbeloved husband, widow Nora struggles to support her four children and\nclings to secrecy in the intrusive community of her childhood before\nfinding her voice. By the award-winning author of The Master and Brooklyn.\n125,000 first printing.\"\r\n7228,7674,11532160,Jamie McGuire,Requiem (Providence #2),https://images.gr-assets.com/books/1307717182l/11532160.jpg,4.15,16911,\"paranormal, romance\",\"Dreaming of the dead might mean a restless night for anyone, but for Nina\nGrey, it was a warning. Still healing from her last run-in with Hell, Nina\nstruggles with recurring nightmares about her father's violent death. She\nbelieves her sleepless nights are the least of her problems-- but she's\nwrong. When Jared's worst fear comes to fruition, he is faced with a\nchoice: Fight Hell alone, or start a war with Heaven.\"\r\n7229,7675,7840156,Steve Berry,The Emperor's Tomb,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440785779l/7840156._SY475_.jpg,3.95,13159,\"thriller, fiction\",\"Receiving an anonymous note containing an unfamiliar web address, former\ngovernment operative Cotton Malone logs on to discover Cassiopeia Vitt\nbeing tortured by a mysterious perpetrator who orders Cotton to deliver an\nunknown object. By the best-selling author of The Templar Legacy. Reprint.\"\r\n7230,7676,18079661,Lisa Gardner,Fear Nothing,https://images.gr-assets.com/books/1372049470l/18079661.jpg,4.1,5982,\"mystery, thriller\",Fear NothingLisa Gardner\r\n7231,7677,184644,\"Dorie Greenspan, Alan    Richardson\",Baking: From My Home to Yours,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439765067l/184644._SX318_.jpg,4.18,11662,\"cookbooks, nonfiction\",\"Offers more than three hundred of the author's favorite recipes, including\nsplit-level pudding, gingered carrot cookies, and fold-over pear torte, and\nprovides baking tips and a glossary.\"\r\n7232,7679,10813480,Kristen Ashley,For You,https://images.gr-assets.com/books/1327337194l/10813480.jpg,4.19,23889,\"romance, contemporary\",For YouKristen Ashley\r\n7233,7680,439363,\"Aya Nakahara, Pookie Rolf\",ラブ★コン 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347987937l/439363.jpg,4.22,13801,\"manga, romance\",\"ラブ★コン 1Aya Nakahara, Pookie Rolf\"\r\n7234,7681,148584,Agatha Christie,Elephants Can Remember,https://images.gr-assets.com/books/1309211932l/148584.jpg,3.62,15420,\"mystery, crime\",Elephants Can RememberAgatha Christie\r\n7235,7683,98,\"Heidi Murkoff, Sharon Mazel, Heidi Murkoff, Arlene Eisenberg, Sandee Hathaway, Mark D. Widome\",What to Expect the First Year,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1156876973l/98._SX318_.jpg,3.86,10807,\"nonfiction, ebooks\",\"Cuts through the confusion surrounding pregnancy and birth by debunking\ndozens of myths that mislead parents, offering explanations of medical\nterms, and covering a variety of issues including prenatal care, birth\ndefects, and amniocentesis.\"\r\n7236,7685,11699349,Kristin Levine,The Lions of Little Rock,https://images.gr-assets.com/books/1442034711l/11699349.jpg,4.22,12962,\"fiction, history\",The Lions of Little RockKristin Levine\r\n7237,7686,169487,Phillip C. McGraw,Self Matters: Creating Your Life from the Inside Out,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442707143l/169487._SX318_.jpg,3.62,9609,\"psychology, nonfiction\",\"A guide by the author sometimes called \"\"Dr. Tell It Like It Is\"\" addresses\nthe issues of self and self-esteem, demonstrating how to fully realize\none's own power by utilizing a plan that explains how to overcome fear and\nfulfill personal potential. Reprint. 750,000 first printing.\"\r\n7238,7688,7942008,Hidekaz Himaruya,ヘタリア 1 Axis Powers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388335318l/7942008.jpg,4.35,11985,\"manga, comics\",Originally published in Japan by Gentosha Comics.\r\n7239,7689,1298171,\"Andrew Stanton, Walt Disney Company\",Finding Nemo,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182582191l/1298171.jpg,4.47,12160,\"fantasy, fiction\",\"Pixar Animation Studios, the Academy Awardwinning creators of Toy Story,\nToy Story 2, A Bugs Life, and Monsters, Inc., are bringing a new animated\nmovie, Finding Nemo, to the screen this summer. This visually stunning\nunderwater adventure follows eventful and comic journeys of two fish-a\nfather and his son Nemo-who become separated in the Great Barrier Reef. The\nunderwater world for the film was conceptualized and developed by the\ncreative team of artists, illustrators, and designers at Pixar, resulting\nin a lush landscape rich with detail. The Art of Finding Nemo celebrates\ntheir talent, featuring concept and character sketches, storyboards, and\nlighting studies in a huge spectrum of media, from five-second sketches to\nintricate color pastels. This behind-the-scenes odyssey invites the reader\ninto the elaborate creative process of animation films through interviews\nwith all the key players at Pixar. There will be childrens books related to\nFinding Nemo, but no adult titles other than this definitive volume.\nRevealing, insightful, and awesomely creative, The Art of Finding Nemo will\ndelight film-goers, artists, and animation fans alike.\"\r\n7240,7690,14480,\"Herman Parish, Lynn Sweat\",Calling Doctor Amelia Bedelia (I Can Read Book 2),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925323l/14480.jpg,4.29,12422,\"fiction, classics\",\"Funny bones The doctor is out! But Amelia Bedelia is ready to help a crowd\nof grouchy patients. Along the way she doses out some of the best medicine\nof all -- laughter, of course!\"\r\n7241,7691,11324166,Gail Carriger,Timeless,https://images.gr-assets.com/books/1327890901l/11324166.jpg,4.12,18617,\"fantasy, paranormal\",\"Alexia Tarabotti, Lady Maccon, has settled into domestic bliss. Of course,\nbeing Alexia, such bliss involves integrating werewolves into London High\nsociety, living in a vampire's second best closet, and coping with a\nprecocious toddler who is prone to turning supernatural willy-nilly. Until,\nthat is, she receives a summons that cannot be ignored. With husband,\nchild, and Tunstells in tow, Alexia boards a steamer to cross the\nMediterranean. But Egypt may hold more mysteries than even the indomitable\nLady Maccon can handle. What does the vampire Queen of the Alexandria Hive\nreally want from her? Why is the God-Breaker Plague suddenly expanding? And\nhow has Ivy Tunstell suddenly become the most popular actress in all the\nBritish Empire? TIMELESS is the final book of the Parasol Protectorate\nseries: a comedy of manners set in Victorian London, full of werewolves,\nvampires, dirigibles, and tea-drinking.\"\r\n7242,7692,112874,Jan Karon,\"These High, Green Hills\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171663787l/112874._SY475_.jpg,4.27,14106,\"fiction, christian\",\"Mitford rector Father Tim faces the new challenges of matirmony after he\nmarries his vivacious Cynthia, from the trials and tribulations of the\nparish's new computer, to redecorating the rectory, to his dog's new\nsleeping arrangements. Reprint. Tour.\"\r\n7243,7693,23158207,\"Eric Schmidt, Jonathan Rosenberg\",How Google Works,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422538855l/23158207.jpg,4.03,11703,\"business, nonfiction\",\"How Google WorksEric Schmidt, Jonathan Rosenberg\"\r\n7244,7694,20559676,J.A. Redmerski,Killing Sarai,https://images.gr-assets.com/books/1389883928l/20559676.jpg,4.17,11301,\"romance, contemporary\",Killing SaraiJ.A. Redmerski\r\n7245,7695,10893138,Cecelia Ahern,The Time of My Life,https://images.gr-assets.com/books/1327918581l/10893138.jpg,3.85,11684,\"contemporary, romance\",The Time of My LifeCecelia Ahern\r\n7246,7696,821000,\"A.A. Milne, Ernest H. Shepard\",Now We Are Six,https://images.gr-assets.com/books/1348199373l/821000.jpg,4.38,15840,\"classics, poetry\",\"A collection of poems reflecting the experiences of a little English boy\ngrowing up in the early part of the twentieth century.\"\r\n7247,7697,3665811,L.J. Smith,The Secret Circle: The Captive Part II and The Power,https://images.gr-assets.com/books/1341592078l/3665811.jpg,4.11,16231,\"paranormal, fantasy\",\"Caught in the struggle between good and evil . . . Cassie has joined the\nmost alluring—and deadly—in-crowd imaginable. But power comes with a price,\nand it's more dangerous than she knows. Torn between the dueling desires of\nthe two leaders of the Secret Grcle, she must ultimately choose between\nsaving all of New Salem, and her own dangerous love for the bewitching\nAdam, which threatens to tear the circle apart. In the ultimate battle\nbetween good and evil, will Cassie's supernatural powers be strong enough\nto lead the coven out of danger? Or will she foil prey to the dark forces\nwithin? . . . will she sacrifice her love for the circle to survive?\"\r\n7248,7698,16045078,Mary Kay Andrews,Ladies' Night ,https://images.gr-assets.com/books/1376835524l/16045078.jpg,3.8,12306,\"fiction, romance\",Ladies' Night Mary Kay Andrews\r\n7249,7699,14759321,Jane Green,Family Pictures,https://images.gr-assets.com/books/1365217958l/14759321.jpg,3.62,12089,\"fiction, contemporary\",\"\"\"RIVETING.\"\" - SheKnows.com \"\"ABSORBING.\"\"--Booklist \"\"GRIPPING.\"\" - Library\nJournal Who can you trust if not the ones you love? Sylvie and Maggie are\ntwo women living on opposite coasts with children about to leave the nest\nfor school. Both are in their forties with husbands who travel more than\neither would like. The looming emptiness of their respective homes has left\nthem feeling anxious and lonely, needing their husbands to be home now more\nthan ever. It isn't until Eve, Sylvie's daughter, happens to befriend\nMaggie's daughter that the similarities between these two women becomes\nshockingly real. A huge secret has remained well hidden for years until\nnow, and their lives will be blown apart as dark truths from the past come\nto the surface. Can these two women learn to forgive, for the sake of their\nchildren? For themselves? In Family Pictures, Jane Green, the beloved\nauthor of such bestsellers as Jemima J and The Beach House, has written an\nemotional, page turning story about what it means to be a mother and a\nwife, about trust and family and the enduring strength of women when put to\nthe test. \"\"Will linger with you long after you close the book.\"\" -People\nmagazine\"\r\n7250,7700,7384801,Lara Adrian,\"Taken by Midnight (Midnight Breed, #8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274764l/7384801.jpg,4.27,19135,\"paranormal, romance\",\"When she starts experiencing strange urges after surviving an attack, Jenna\nDarraw takes refuge in Boston with the Order, an ancient race of vampire\nwarriors, where she meets Brock, a sexy vampire with the power to heal.\"\r\n7251,7701,1249630,\"José Maria de Eça de Queirós, Ester de Lemos\",Os Maias,https://images.gr-assets.com/books/1362526641l/1249630.jpg,3.99,10649,\"fiction, romance\",\"Os MaiasJosé Maria de Eça de Queirós, Ester de Lemos\"\r\n7252,7702,23252517,Amy Harmon,The Law of Moses,https://images.gr-assets.com/books/1415024195l/23252517.jpg,4.37,17279,\"romance, paranormal\",\"If I tell you right up front, right in the beginning that I lost him, it\nwill be easier for you to bear. You will know it's coming, and it will\nhurt. But you'll be able to prepare. Someone found him in a laundry basket\nat the Quick Wash, wrapped in a towel, a few hours old and close to death.\nThey called him Baby Moses when they shared his story on the ten o'clock\nnews - the little baby left in a basket at a dingy Laundromat, born to a\ncrack addict and expected to have all sorts of problems. I imagined the\ncrack baby, Moses, having a giant crack that ran down his body, like he'd\nbeen broken at birth. I knew that wasn't what the term meant, but the image\nstuck in my mind. Maybe the fact that he was broken drew me to him from the\nstart. It all happened before I was born, and by the time I met Moses and\nmy mom told me all about him, the story was old news and nobody wanted\nanything to do with him. People love babies, even sick babies. Even crack\nbabies. But babies grow up to be kids, and kids grow up to be teenagers.\nNobody wants a messed up teenager.And Moses was messed up. Moses was a law\nunto himself. But he was also strange and exotic and beautiful. To be with\nhim would change my life in ways I could never have imagined. Maybe I\nshould have stayed away. Maybe I should have listened. My mother warned me.\nEven Moses warned me. But I didn't stay away. And so begins a story of pain\nand promise, of heartache and healing, of life and death. A story of before\nand after, of new beginnings and never-endings. But most of all . . . a\nlove story.\"\r\n7253,7703,29975458,Amy Gentry,Good as Gone,https://images.gr-assets.com/books/1464329788l/29975458.jpg,3.53,12121,\"fiction, mystery\",\"Propulsive and suspenseful, Good as Gone will appeal to fans of Gone Girl\nand The Girl on the Train, and keep readers guessing until the final pages.\nThirteen-year-old Julie Whitaker was kidnapped from her bedroom in the\nmiddle of the night, witnessed only by her younger sister. Her family was\nshattered, but managed to stick together, hoping against hope that Julie is\nstill alive. And then one night: the doorbell rings. A young woman who\nappears to be Julie is finally, miraculously, home safe. The family is\necstatic but Anna, Julie s mother, has whispers of doubts.She hates to face\nthem. She cannot avoid them. When she is contacted by a former detective\nturned private eye, she begins a torturous search for the truth about the\nwoman she desperately hopes is her daughter. \"\"\"\r\n7254,7704,114188,Nora Roberts,Holding the Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390318067l/114188.jpg,4.02,16902,\"romance, contemporary\",\"Raised as a sister to Margo and Laura at the grandiose Templeton house,\nbusinesswoman Kate Powell faces a professional impropriety and a dark\nsecret from her past that forces her to search deep within herself.\nReissue.\"\r\n7255,7706,99297,Amanda Grange,Mr. Darcy's Diary,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202072l/99297.jpg,3.63,15151,\"romance, fiction\",\"Monday 9th September \"\"I left London today and met Bingley at Netherfield\nPark. I had forgotten what good company he is; always ready to be pleased\nand always cheerful. After my difficult summer, it is good to be with him\nagain. ...\"\" The only place Darcy could share his innermost feelings was in\nthe private pages of his diary... Torn between his sense of duty to his\nfamily name and his growing passion for Elizabeth Bennet, all he can do is\nstruggle not to fall in love. Mr. Darcy's Diarypresents the story of the\nunlikely courtship of Elizabeth Bennet and Fitzwilliam Darcy from Darcy's\npoint of view. This graceful imagining and sequel to Pride and Prejudice\nexplains Darcy's moodiness and the difficulties of his reluctant\nrelationship as he struggles to avoid falling in love with Miss Bennet.\nThough seemingly stiff and stubborn attimes, Darcy's words prove him also\nto be quite devoted and endearing -- qualities that eventually win over\nMiss Bennet's heart. This continuation of a classic romantic novel is\ncharming and elegant, much like Darcy himself. Pride and Prejudice has\ninspired a large number of modern day sequels, the most successful of which\nfocus on the rich, proud Mr. Darcy. Praise forMr. Darcy's Diary:\n\"\"Absolutely fascinating. Amanda Grange seems to have really got under\nDarcy's skin and retells the story, in diary form, with great feeling and\nsensitivity.\"\" -- Historical Novel Society \"\"Written with charm, elegance and\nstyle, Amanda Grange's excellent retelling of Pride and Prejudice, Mr.\nDarcy's Diary, will make you fall in love with Fitzwilliam Darcy once\nagain!\"\" -- Single Titles \"\"Mr. Darcy's Diary is an enjoyable journey into\nthe mind of one of the most popular characters in literary history...a gift\nto a new generation of Darcy fans and a treat for existing fans as well.\"\"\n-- Austenblog\"\r\n7256,7707,297186,Robert Crais,L.A. Requiem,https://images.gr-assets.com/books/1328900044l/297186.jpg,4.26,12632,\"mystery, fiction\",\"When P.I. Elvis Cole discovers that his partner, Joe Pike, was once the\nlover of a murdered woman, he finds himself going beyond normal\ninvestigative procedures and starts to pry into the very private realm of\nthe LAPD's elite Robbery-Homicide Division\"\r\n7257,7710,89884,Kent Haruf,Eventide,https://images.gr-assets.com/books/1320471712l/89884.jpg,4.16,12661,\"fiction, contemporary\",\"A novel of small-town life in the high plains region around Holt, Colorado,\nfollows the challenges, emotional upheaval, tragedies, and intertwined\ndestinies of the local inhabitants as they cope with the changes they\nencounter.\"\r\n7258,7711,5199185,\"Tim Hamilton, Ray Bradbury\",Fahrenheit 451: The Authorized Adaptation,https://images.gr-assets.com/books/1416448162l/5199185.jpg,3.92,11809,\"classics, fiction\",\"Now an HBO Original Movie starring Michael B. Jordan (Black Panther), Sofia\nBoutella (Star Trek: Beyond), and Michael Shannon (The Shape of Water). An\nEisner Award Nominee \"\"Monday burn Millay, Wednesday Whitman, Friday\nFaulkner, burn 'em to ashes, then burn the ashes.\"\" For Guy Montag, a career\nfireman for whom kerosene is perfume, this is not just an official slogan.\nIt is a mantra, a duty, a way of life in a tightly monitored world where\nthinking is dangerous and books are forbidden. In 1953, Ray Bradbury\nenvisioned one of the world's most unforgettable dystopian futures, and in\nRay Bradbury's Fahrenheit 451, the artist Tim Hamilton translates this\nfrightening modern masterpiece into a gorgeously imagined graphic novel. As\ncould only occur with Bradbury's full cooperation in this authorized\nadaptation, Hamilton has created a striking work of art that uniquely\ncaptures Montag's awakening to the evil of government-controlled thought\nand the inestimable value of philosophy, theology, and literature.\nIncluding an original foreword by Ray Bradbury and fully depicting the\nbrilliance and force of his canonic and beloved masterwork, Ray Bradbury's\nFahrenheit 451 is an exceptional, haunting work of graphic literature.\"\r\n7259,7712,2122216,Maki Minami,スペシャル·エー,https://images.gr-assets.com/books/1408207157l/2122216.jpg,4.18,14607,\"manga, romance\",スペシャル·エーMaki Minami\r\n7260,7713,6255949,\"Hiroshi Sakurazaka, 桜坂洋, Alexander O. Smith, Joseph Reeder\",オール・ユー・ニード・イズ・キル,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1568911292l/6255949._SY475_.jpg,4.05,10073,\"fiction, fantasy\",\"When the alien Mimics invade, Keiji Kiriya is just one of many recruits\nshoved into a suit of battle armor called a Jacket and sent out to kill.\nKeiji dies on the battlefield, only to be reborn each morning to fight and\ndie again and again. On his 158th iteration, he gets a message from a\nmysterious ally--the female soldier known as the Full Metal Bitch. Is she\nthe key to Keiji's escape or his final death? Now a major motion picture\nstarring Tom Cruise!\"\r\n7261,7714,24408,Elizabeth George Speare,The Bronze Bow,https://images.gr-assets.com/books/1369712582l/24408.jpg,3.93,15507,\"fiction, classics\",\"A young Jewish rebel is filled with hatred for the Romans and a desire to\navenge his parents' deaths until Jesus of Nazareth teaches him love and\nunderstanding of others. A Newbery Medal book. Reissue.\"\r\n7262,7715,23426,Alain de Botton,Essays in Love,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389004893l/23426.jpg,3.97,8288,\"philosophy, fiction\",Essays in LoveAlain de Botton\r\n7263,7716,27397,Jonathan Harr,A Civil Action,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436324928l/27397._SY475_.jpg,3.94,11985,\"nonfiction, fiction\",\"A young Boston trial lawyer is drawn into a case involving two industrial\nchemical plants and a cluster of childhood leukemia victims that is to\nencompass nine difficult years and bring him to near bankruptcy. Reprint.\n100,0000 first printing. Tour.\"\r\n7264,7717,621739,Wanda Gág,Millions of Cats,https://images.gr-assets.com/books/1318725166l/621739.jpg,4.08,16991,\"fiction, classics\",\"How can an old man and his wife select one cat from a choice of millions\nand trillions?\"\r\n7265,7718,313256,Christine Feehan,Dark challenge,https://images.gr-assets.com/books/1330425767l/313256.jpg,4.23,17015,\"romance, paranormal\",\"Julian Savage was golden. Powerful. But tormented. For the brooding hunter\nwalked alone. Always alone, far from his Carpathian kind, alien to even his\ntwin. Like his name, his existence was savage. Until he met the woman he\nwas sworn to protect…. When Julian heard Desari sing, rainbows swamped his\nstarving senses. Emotions bombarded his hardened heart. And a dark hunger\nto possess her flooded his loins, blinding him to the danger stalking him.\nAnd even as Desari enflamed him, she dared to defy him - with mysterious,\nunparalleled feminine powers. Was Desari more than his perfect mate? Julian\nhad met his match in this woman, but would she drive him to madness…or save\nhis soul?\"\r\n7266,7719,15791403,\"James Patterson, David Ellis\",Mistress,https://images.gr-assets.com/books/1375363772l/15791403.jpg,3.52,10475,\"mystery, fiction\",\"James Patterson's scariest, sexiest stand-alone thriller since The Quickie.\nBen isn't like most people. Unable to control his racing thoughts, he's a\nman consumed by his obsessions: movies, motorcycles, presidential trivia-\nand Diana Hotchkiss, a beautiful woman Ben knows he can never have. When\nDiana is found dead outside her apartment, Ben's infatuation drives him on\na hunt to find out what happened to the love of his life. Ben soon\ndiscovers that the woman he pined for was hiding a shocking double life.\nAnd now someone is out to stop Ben from uncovering the truth about Diana's\nillicit affairs. In his most heart-pumping thriller yet, James Patterson\nplunges us into the depths of a mind tortured by paranoia and obsession, on\nan action-packed chase through a world of danger and deceit.\"\r\n7267,7720,208146,Allen Say,Grandfather's Journey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403355395l/208146.jpg,4.12,13337,\"biography, history\",\"A Japanese-American man recounts his grandfather's journey to America which\nhe later also undertakes, and the feelings of being torn by a love for two\ndifferent countries. A Caldecott Medal Winner. Reprint.\"\r\n7268,7721,38030,Mary Kay Andrews,Savannah Blues,https://images.gr-assets.com/books/1327883095l/38030.jpg,3.97,13886,\"mystery, fiction\",\"Landing a catch like Talmadge Evans III got Eloise \"\"Weezie\"\" Foley a jewel\nof a town house in Savannah's historic district. Divorcing Tal got her\nexiled to the backyard carriage house, where she has launched a spite-fest\nwith Tal's new fiancÉe, the elegant Caroline DeSantos. An antiques picker,\nWeezie combs Savannah's steamy back alleys and garage sales for treasures\nwhen she's not dealing with her loopy relatives or her hunky ex-boyfriend.\nBut an unauthorized sneak preview at a sale lands Weezie smack in the\nmiddle of magnolia-scented murder, mayhem...and more. Dirty deals simmer\nall around her—just as her relationship with the cutest chef in town heats\nup and she finds out how delicious love can be the second time around.\"\r\n7269,7722,294043,James Rollins,Excavation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401242550l/294043.jpg,4.02,13148,\"thriller, fiction\",ExcavationJames Rollins\r\n7270,7724,144789,Matthew Reilly,Scarecrow,https://images.gr-assets.com/books/1316635676l/144789.jpg,4.21,11900,\"thriller, fiction\",\"When a $20,000,000 bounty is placed on his head, Shane \"\"Scarecrow\"\"\nSchofield begins an international race for survival during which he\nunravels a vast conspiracy that reveals why he has been targeted. By the\nauthor of Ice Station and Area 7. Reprint.\"\r\n7271,7725,9064899,Kiersten White,Endlessly,https://images.gr-assets.com/books/1320349604l/9064899.jpg,3.99,18789,\"paranormal, fantasy\",EndlesslyKiersten White\r\n7272,7727,73184,Thich Nhat Hanh,\"Living Buddha, Living Christ\",https://images.gr-assets.com/books/1309211729l/73184.jpg,4.13,10943,\"religion, spirituality\",\"A Vietnamese monk and Buddhist teacher explores the common ground of\nChristianity and Buddhism on such subjects as compassion and holiness, and\noffers inspiration to believers in both religions.\"\r\n7273,7728,1170158,Ursula K. Le Guin,The Earthsea Trilogy,https://images.gr-assets.com/books/1295382040l/1170158.jpg,4.25,14199,\"fantasy, fiction\",\"The windswept isles of Earthsea were famous for wizards, and the greatest\nwas Ged. Hungry for power and knowledge he tampered with long-held secrets\nand loosed a terrible shadow upon the world.\"\r\n7274,7729,17325147,Jessica Park,Left Drowning,https://images.gr-assets.com/books/1372359048l/17325147.jpg,4.14,17461,\"romance, contemporary\",\"Weighted down by the loss of her parents, Blythe McGuire struggles to keep\nher head above water as she trudges through her last year at Matthews\nCollege. Then a chance meeting sends Blythe crashing into something she\ndoesn't expect--an undeniable attraction to a dark-haired senior named\nChris Shepherd, whose past may be even more complicated than her own. As\ntheir relationship deepens, Chris pulls Blythe out of the stupor she's been\nin since the night a fire took half her family. She begins to heal, and\neven, haltingly, to love this guy who helps her find new paths to pleasure\nand self-discovery. But as Blythe moves into calmer waters, she realizes\nChris is the one still strangled by his family's traumatic history. As dark\ncurrents threaten to pull him under, Blythe may be the only person who can\nkeep him from drowning.\"\r\n7275,7730,7268995,\"Philip C. Stead, Erin E. Stead\",A Sick Day for Amos McGee,https://images.gr-assets.com/books/1312019421l/7268995.jpg,4.25,15444,\"fiction, fantasy\",\"Zookeeper Amos McGee always makes time to visit his friends who live at the\nzoo until the day he stays home because he is sick.\"\r\n7276,7731,18651980,Smith Henderson,Fourth of July Creek,https://images.gr-assets.com/books/1417981221l/18651980.jpg,3.83,10390,\"fiction, contemporary\",Fourth of July CreekSmith Henderson\r\n7277,7732,276877,Lisa Jackson,Absolute Fear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435282812l/276877._SY475_.jpg,4.15,13190,\"mystery, thriller\",\"When a series of brutal ritual slayings is linked to Our Lady of Virtues\nHospital, Eve Renner, whose past is tied to this old asylum, must learn to\ntrust her former lover Cole Dennis, who had been accused of attempted\nmurder, when she becomes the killer's next target. Reprint.\"\r\n7278,7733,43992,Greg Iles,True Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433562939l/43992._SY475_.jpg,4.05,11234,\"mystery, thriller\",\"The idyllic life of busy Natchez doctor Chris Shepard is turned upside down\nwhen undercover FBI agent Alex Morse recruits him for a case involving a\nlocal divorce attorney who is suspected of murdering the spouses of his\nclients. By the author of Turning Angel. Reprint.\"\r\n7279,7734,59091,\"Erskine Caldwell, Lewis Nordan\",Tobacco Road,https://images.gr-assets.com/books/1369852920l/59091.jpg,3.73,10959,\"fiction, classics\",\"Jeeter Lester, a poor Georgia sharecropper, and his family struggle to get\nby, but when his son Dude is seduced and married by Jeeter's widowed\nsister, it starts a tragic chain of events.\"\r\n7280,7735,1747896,Kate Summerscale,The Suspicions of Mr. Whicher: Murder and the Undoing of a Great Victorian Detective,https://images.gr-assets.com/books/1312021413l/1747896.jpg,3.43,11316,\"history, mystery\",The Suspicions of Mr. Whicher: Murder and the Undoing of a Great Victorian DetectiveKate Summerscale\r\n7281,7736,425377,Loretta Chase,Lord of Scoundrels,https://images.gr-assets.com/books/1381766823l/425377.jpg,4.12,19137,\"romance, fiction\",\"They call him many names, but Angelic isn't one of them . . . Sebastian\nBallister, the notorious Marquess of Dain, is big, bad, and dangerous to\nknow. No respectable woman would have anything to do with the \"\"Bane and\nBlight of the Ballisters\"\"—and he wants nothing to do with respectable\nwomen. He's determined to continue doing what he does best—sin and sin\nagain—and all that's going swimmingly, thank you . . . until the day a shop\ndoor opens and she walks in. She's too intelligent to fall for the worst\nman in the world . . . Jessica Trent is a determined young woman, and she's\ngoing to drag her imbecile brother off the road to ruin, no matter what it\ntakes. If saving him—and with him, her family and future—means taking on\nthe devil himself, she won't back down. The trouble is, the devil in\nquestion is so shockingly irresistible, and the person who needs the most\nsaving is—herself!\"\r\n7282,7737,60177,L. Frank Baum,Ozma of Oz,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170538598l/60177._SY475_.jpg,3.97,14829,\"fantasy, classics\",\"Readers of all ages will welcome the chance to be reunited with Dorothy\nGale and such beloved characters as the Scarecrow, Tin Woodman, and\nCowardly Lion, as well as to meet new favorites such as the Hungry Tiger,\nwhose appetite is never satisfied; Princess Langwidere, who has thirty\nheads; Billina, a talking chicken; and Tiktok, a mechanical man. Blown\noverboard while sailing with her uncle, Dorothy finds herself in the fairy\nrealm of Ev. She sets out with her friends to rescue the Queen of Ev and\nher ten children, who have been imprisoned by the cruel Nome King. But even\nOzma, the wise Ruler of Oz, is no match for the clever king, and it's up to\nDorothy to save everyone from terrible danger. But will the Nome King's\nenchantments be too much even for the plucky little girl from Kansas? Ozma\nof Oz has delighted children and adults for over eighty years, and now new\ngenerations can enjoy the unforgettable characters and the surprising and\nfunny story in this deluxe facsimile of the rare first edition, featuring\nforty-two of John R. Neill's full-color plates and twenty-one two- color\nillustrations, as well as a colorful pictorial binding. Afterword by Peter\nGlassman. New generations can enjoy this surprising and funny story of the\nrescue of the royal family of Ev from the evil Nome King in a deluxe\nfacsimile of the rare first edition. A Books of Wonder(R) Classic.\"\r\n7283,7738,2371,David McCullough,The Johnstown Flood,https://images.gr-assets.com/books/1313667349l/2371.jpg,4.11,11691,\"history, nonfiction\",\"A history of the 1889 flood that killed over 2,000 people in Johnstown,\nPennsylvania. Based on letters, diaries, historical records, and interviews\nwith survivors.\"\r\n7284,7739,3268926,Glenn Beck,The Christmas Sweater,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442052035l/3268926._SX318_.jpg,3.79,12916,\"fiction, christian\",\"#1 New York Times bestselling author and renowned radio and television host\nGlenn Beck delivers an instant holiday classic about boyhood memories,\nwrenching life lessons, and the true meaning of the gifts we give to one\nanother in love. If You Could Change Your Life by Reversing Your Biggest\nRegrets, Sorrows and Mistakes...Would You? We weren't wealthy, we weren't\npoor -- we just were. We never wanted for anything, except maybe more time\ntogether.... When Eddie was twelve years old, all he wanted for Christmas\nwas a bike. Although his life had gotten harder -- and money tighter --\nsince his father died and the family bakery closed...Eddie dreamed that\nsomehow his mother would find a way to have his dream bike gleaming beside\ntheir modest Christmas tree that magical morning. What he got from her\ninstead was a sweater. \"\"A stupid, handmade, ugly sweater\"\" that young Eddie\nleft in a crumpled ball in the corner of his room. Scarred deeply by the\nrealization that kids don't always get what they want, and too young to\nunderstand that he already owned life's most valuable treasures, that\nChristmas morning was the beginning of Eddie's dark and painful journey on\nthe road to manhood. It will take wrestling with himself, his faith, and\nhis family -- and the guidance of a mysterious neighbor named Russell -- to\nhelp Eddie find his path through the storm clouds of life and finally see\nthe real significance of that simple gift his mother had crafted by hand\nwith love in her heart. Based on a deeply personal true story, The\nChristmas Sweater is a warm and poignant tale of family, faith and\nforgiveness that offers us a glimpse of our own lives -- while also making\nus question if we really know what's most important in them.\"\r\n7285,7740,16074748,Rachel Renée Russell,Tales From a Not-So-Happy-Heartbreaker,https://images.gr-assets.com/books/1418103694l/16074748.jpg,4.42,9554,\"romance, contemporary\",\"Middle-school drama queen Nikki Maxwell worries about asking a boy to her\nschool's \"\"sweetheart dance.\"\"\"\r\n7286,7741,294045,James Rollins,Deep Fathom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348924000l/294045.jpg,4.07,13227,\"thriller, fiction\",Deep FathomJames Rollins\r\n7287,7742,3216451,Nelson DeMille,The Gate House,https://images.gr-assets.com/books/1397190673l/3216451.jpg,3.71,12625,\"mystery, fiction\",The Gate HouseNelson DeMille\r\n7288,7743,19501672,\"J. Lynn, Jennifer L. Armentrout\",Stay with Me,https://images.gr-assets.com/books/1400524327l/19501672.jpg,4.17,20654,\"romance, contemporary\",\"New York Times and USA Today Bestseller From the #1 New York Times\nbestselling author of Wait for You and Be with Me comes a daring tale that\npushes boundaries . . . At 21, Calla hasn't done a lot of things. She’s\nnever been kissed, never seen the ocean, never gone to an amusement park.\nBut growing up, she witnessed some things no child ever should. She still\ncarries the physical and emotional scars of living with a strung-out\nmother, Mona—secrets she keeps from everyone, including her close circle of\ncollege friends. But the safe cocoon Calla has carefully built is shattered\nwhen she discovers her mom has stolen her college money and run up a huge\ncredit card debt in her name. Now, Calla has to go back to the small town\nshe thought shed left behind and clean up her mom’s mess again. Of course,\nwhen she arrives at her mother’s bar, Mona is nowhere to be found. Instead,\nsix feet of hotness named Jackson James is pouring drinks and keeping the\nplace humming. Sexy and intense, Jax is in Calla’s business from they\nmoment they meet, giving her a job and helping her search for Mona. And the\nway he looks at her makes it clear he wants to get horizontal . . . and\nmaybe something more. Before Calla can let him get close, though, she’s got\nto deal with the pain of the past—and some very bad guys out to mess her up\nif she doesn't give them her mom.\"\r\n7289,7744,15743075,Sylvia Day,Seven Years to Sin,https://images.gr-assets.com/books/1355259011l/15743075.jpg,3.89,10703,\"romance, fiction\",Seven Years to SinSylvia Day\r\n7290,7745,13580928,Ally Carter,Perfect Scoundrels,https://images.gr-assets.com/books/1340716595l/13580928.jpg,4.28,20029,\"mystery, contemporary\",Perfect ScoundrelsAlly Carter\r\n7291,7746,6562380,\"Larry Bird, Earvin Johnson, Jackie MacMullan\",When the Game Was Ours,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439998377l/6562380._SY475_.jpg,4.16,9401,\"sports, biography\",\"With intimate, fly-on-the-wall detail, \"\"When the Game Was Ours\"\" transports\nreaders to an electric era of basketball and reveals for the first time the\ninner workings of two players--Larry Bird and Earvin \"\"Magic\"\" Johnson--dead\nset on besting one another.\"\r\n7292,7747,66676,R.A. Salvatore,The Two Swords (Hunter's Blades #3),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390694377l/66676.jpg,4.16,11756,\"fantasy, fiction\",\"The sequel to The Thousand Orcs and The Lone Drow, this third and final\nvolume in the best-selling new Hunter's Blades Trilogy from the Forgotten\nRealms universe continues the epic adventures of the author's popular Dark\nElf hero, Drizzt Do'Urden, and his companions. Reprint.\"\r\n7293,7748,31304,Agatha Christie,Nemesis,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760569l/31304.jpg,3.84,15406,\"mystery, fiction\",\"In utter disbelief, Miss Marple read the letter addressed to her from the\nrecently deceased Mr. Rafiel—an acquaintance she had met briefly on her\ntravels. He had left instructions for her to investigate a crime after his\ndeath. The only problem was, he had failed to tell her who was involved or\nwhere and when the crime had been committed. It was most intriguing. Soon\nshe is faced with a new crime—the ultimate crime—murder. It seems someone\nis adamant that past evils remained buried. . . .\"\r\n7294,7749,3379,Douglas Coupland,All Families Are Psychotic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405992884l/3379.jpg,3.69,10461,\"fiction, contemporary\",All Families Are PsychoticDouglas Coupland\r\n7295,7750,867387,Tony Hillerman,The Blessing Way,https://images.gr-assets.com/books/1179033344l/867387.jpg,4.06,14138,\"mystery, fiction\",\"Homicide is always an abomination, but there is something exceptionally\ndisturbing about the victim discovered in a high lonely place, a corpse\nwith a mouth full of sand, abandoned at a crime scene seemingly devoid of\ntracks or useful clues. Though it goes against his better judgment, Navajo\nTribal Police Lieutenant Joe Leaphorn cannot help but suspect the hand of a\nsupernatural killer. There is palpable evil in the air, and Leaphorn's\npursuit of a Wolf-Witch is leading him where even the bravest men fear, on\na chilling trail that winds perilously between mysticism and murder.\"\r\n7296,7751,12029468,Jane Green,Another Piece of My Heart,https://images.gr-assets.com/books/1321468393l/12029468.jpg,3.7,11882,\"fiction, romance\",\"Marrying a divorced father of two, Andi finds herself struggling to gain\nher stepdaughters' acceptance while preserving family peace in the face of\ndaily dramas and competitions for her husband's attention that challenge\neverything she once believed about love, family and parenting. By the\nauthor of Jemima J. 250,000 first printing.\"\r\n7297,7752,1457790,Camilla Läckberg,Stenhuggaren,https://images.gr-assets.com/books/1334876462l/1457790.jpg,3.85,6435,\"mystery, crime\",\"Kriminalroman som udspilles i den lille skærgårdsby Fjällbacka. Da en lokal\nfisker finder en lille pige druknet, viser det sig, at det er mord. Men\nhvem har myrdet den 7-årige Sara og hvorfor?\"\r\n7298,7753,1908511,Mo Willems,The Pigeon Wants a Puppy!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442862172l/1908511._SX318_.jpg,4.37,17490,\"fiction, fantasy\",\"The pigeon really, really wants a puppy, but when a puppy arrives the\npigeon changes its mind.\"\r\n7299,7754,22551809,David  Brooks,The Road to Character,https://images.gr-assets.com/books/1422216361l/22551809.jpg,3.66,10648,\"nonfiction, philosophy\",The Road to CharacterDavid  Brooks\r\n7300,7755,23884,\"Gabriel García Márquez, Edith Grossman\",El general en su laberinto,https://images.gr-assets.com/books/1361537151l/23884.jpg,3.66,10286,\"fiction, classics\",\"Old and ill, General Simon Bolivar reexamines his life--reliving his\ncampaigns, recalling his romances, and revealing himself as a lover,\nlibertine, and fighter--during a seven-month voyage down the Magdalena\nRiver\"\r\n7301,7756,60142,Mario Vargas Llosa,La ciudad y los perros,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388862058l/60142.jpg,4.09,9782,\"fiction, classics\",La ciudad y los perrosMario Vargas Llosa\r\n7302,7757,18599754,Cammie McGovern,Amy & Matthew,https://images.gr-assets.com/books/1392738015l/18599754.jpg,3.7,11559,\"contemporary, romance\",Amy & MatthewCammie McGovern\r\n7303,7758,21489683,Tess Gerritsen,Die Again,https://images.gr-assets.com/books/1395144977l/21489683.jpg,4.16,10837,\"mystery, thriller\",Die AgainTess Gerritsen\r\n7304,7759,85993,Meg Cabot,Party Princess,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266468983l/85993.jpg,3.67,19068,\"romance, contemporary\",\"Princesses just want to have fun. . . . And Mia does too, despite the fact\nthat the student government over which she presides is suddenly broke. But\nGrandmère's got a wacky scheme to raise the money, catapult Mia to\ntheatrical fame, and link her romantically with an eligible teen bachelor\nwho's not her boyfriend. No wonder Michael seems to think she's a psycho,\nor worse: not much fun. Is it possible that Mia, soon-to-be star of the\nstage, president of the student body, and future ruler of Genovia, doesn't\nknow how to party?\"\r\n7305,7761,323289,Sandra Brown,Witness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266524389l/323289.jpg,3.98,10558,\"romance, mystery\",WitnessSandra Brown\r\n7306,7762,6692041,Susan Abulhawa,The Scar of David,https://images.gr-assets.com/books/1312020216l/6692041.jpg,4.35,8590,\"fiction, history\",\"This work focuses on a Palestinian family from the village of Ein Hod,\nwhich was emptied of its inhabitants by the newly formed state of Israel in\n1948. The narrator, Amal, is born into that family in a UN-administered\nrefugee camp in Jenin, where her family would eventually die waiting--or\nfighting--to return to their beloved Palestine.\"\r\n7307,7763,207694,Melissa Nathan,The Nanny,https://images.gr-assets.com/books/1389595555l/207694.jpg,3.78,10872,\"romance, fiction\",The NannyMelissa Nathan\r\n7308,7764,22892122,Katy Evans,Manwhore,https://images.gr-assets.com/books/1421552037l/22892122.jpg,4.14,19220,\"romance, contemporary\",\"Seeking to expose Chicago's hottest player, Malcolm Saint, Rachel is\ndetermined to make her career off of his humiliation, but her motives\nchange when she becomes irresistibly attracted to him.\"\r\n7309,7765,16479439,Peter Clines,Ex-Heroes,https://images.gr-assets.com/books/1360646185l/16479439.jpg,3.87,5354,\"horror, fantasy\",Ex-HeroesPeter Clines\r\n7310,7766,89184,Alastair Reynolds,Absolution Gap,https://images.gr-assets.com/books/1309210984l/89184.jpg,4.01,12105,\"fiction, science\",\"In the epic conclusion of the Revelation Space trilogy, veteran Clavain and\nhis desperate companions seek refuge on a remote moon, light-years away\nfrom the ancient killing machines wreaking havoc on the universe in an\nattempt to destroy all human life, only to discover that to defeat this\nhorrific enemy, they must forge an uneasy alliance with an even more deadly\n\"\"ally.\"\" Reprint.\"\r\n7311,7767,17490,Enid Blyton,\"The Faraway Tree Stories (The Enchanted Wood, The Faraway Tree, The Folk of the Faraway Tree)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388863626l/17490.jpg,4.28,11405,\"fantasy, classics\",\"The Folk of the Faraway Tree is the third magical story in the Faraway Tree\nseries by the world’s best-loved children’s author, Enid Blyton. When Joe,\nBeth and Frannie move to a new home, an Enchanted Wood is on their\ndoorstep. And when they discover the Faraway Tree, that is the beginning of\nmany magical adventures! Join them and their friends Moonface, Saucepan Man\nand Silky the fairy as they discover which new land is at the top of the\nFaraway Tree. Will it be the Land of Spells, the Land of Treats, or the\nLand of Do-As-You-Please? Come on an amazing adventure – there’ll be\nadventures waiting whatever happens. Enid Blyton’s funny, magical adventure\nstories have become true classics, loved by millions and still selling\nthousands of copies every year. She is arguably the most famous children’s\nauthor of all time, thanks to series such as The Wishing-Chair, The Faraway\nTree­, The Mysteries, The Famous Five and The Secret Seven.\"\r\n7312,7768,171001,Misty Bernall,She Said Yes: The Unlikely Martyrdom of Cassie Bernall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663661l/171001.jpg,3.9,12272,\"biography, nonfiction\",\"The mother of one of the high school students killed in the Littleton\nshootings describes her daughter's religious faith.\"\r\n7313,7769,30919,Evelyn Waugh,Scoop,https://images.gr-assets.com/books/1416017359l/30919.jpg,3.86,12032,\"classics, fiction\",ScoopEvelyn Waugh\r\n7314,7770,85622,Rita Golden Gelman,Tales of a Female Nomad: Living at Large in the World,https://images.gr-assets.com/books/1320531284l/85622.jpg,3.84,11380,\"travel, memoir\",\"A fascinating memoir of a reinvented life follows the author, the creator\nof more than seventy children's books, on a journey across the globe in\nsearch of her personal identity in the wake of a failed marriage and her\nperipatetic lifestyle in the fifteen years that have followed. Reprint.\n25,000 first printing.\"\r\n7315,7771,19631,Lorrie Moore,Birds of America: Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388641896l/19631.jpg,4.12,10768,\"fiction, contemporary\",\"A long-awaited collection of stories--twelve in all--by one of the most\nexciting writers at work today, the acclaimed author of Who Will Run the\nFrog Hospital? and Self-Help. Stories remarkable in their range, emotional\nforce, and dark laughter, and in the sheer beauty and power of their\nlanguage.\"\r\n7316,7772,26252659,Lauren Blakely,Big Rock,https://images.gr-assets.com/books/1485375190l/26252659.jpg,3.97,15203,\"romance, contemporary\",\"An unsufferably conceited New York playboy needs to appear to be committed\nto one person in order to help his father sell his flagship Fifth Avenue\njewelry store, but finds himself developing feelings for his fake fiancaee.\"\r\n7317,7773,23207027,Kendare Blake,Three Dark Crowns,https://images.gr-assets.com/books/1469265644l/23207027.jpg,3.86,9386,\"fantasy, fiction\",\"Fans of acclaimed author Kendare Blake’s Anna Dressed in Blood will devour\nher latest novel, a dark and inventive fantasy about three sisters who must\nfight to the death to become queen. In every generation on the island of\nFennbirn, a set of triplets is born: three queens, all equal heirs to the\ncrown and each possessor of a coveted magic. Mirabella is a fierce\nelemental, able to spark hungry flames or vicious storms at the snap of her\nfingers. Katharine is a poisoner, one who can ingest the deadliest poisons\nwithout so much as a stomachache. Arsinoe, a naturalist, is said to have\nthe ability to bloom the reddest rose and control the fiercest of lions.\nBut becoming the Queen Crowned isn’t solely a matter of royal birth. Each\nsister has to fight for it. And it’s not just a game of win or lose...it’s\nlife or death. The night the sisters turn sixteen, the battle begins. The\nlast queen standing gets the crown.\"\r\n7318,7774,6422680,Elizabeth Bard,\"Lunch in Paris: A Love Story, with Recipes\",https://images.gr-assets.com/books/1344266322l/6422680.jpg,3.67,11458,\"memoir, nonfiction\",\"Lunch in Paris: A Love Story, with RecipesElizabeth Bard\"\r\n7319,7775,159177,John Jakes,Love and War ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389903265l/159177.jpg,4.1,13844,\"fiction, history\",\"The Hazard family of Pennsylvania and the Main family of South Carolina\nexperience five years of sacrifice, corruption, courage, brutality,\nfriendship and passion during the Civil War. Reprint.\"\r\n7320,7777,9443405,\"David Foster Wallace, Michael Pietsch\",The Pale King,https://images.gr-assets.com/books/1324405497l/9443405.jpg,3.95,10982,\"fiction, contemporary\",\"The Pale KingDavid Foster Wallace, Michael Pietsch\"\r\n7321,7778,27297,\"Confucius, D.C. Lau\",論語 [Lún Yǔ],https://images.gr-assets.com/books/1309201523l/27297.jpg,3.82,9807,\"philosophy, classics\",\"The Analects express a philosophy, or a moral code, by which Confucius, one\nof the most humane thinkers of all time, believed everyone should live.\nUpholding the ideals of wisdom, self-knowledge, courage and love of one's\nfellow man, he argued that the pursuit of virtue should be every\nindividual's supreme goal. And, while following the Way, or the truth,\nmight not result in immediate or material gain, Confucius showed that it\ncould nevertheless bring its own powerful and lasting spiritual rewards.\"\r\n7322,7779,50039,\"Pamela Des Barres, Dave Navarro\",I'm with the Band: Confessions of a Groupie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388303269l/50039.jpg,3.67,11172,\"music, memoir\",\"Pamela Des Barres was the \"\"Sweetheart of Rock,\"\" the reigning queen of\nL.A.'s wild music scene. A hopeful romantic and the ultimate star-chaser,\nshe lived life in the fast lane. Now she tells everything.\"\r\n7323,7780,5148720,Richelle Mead,Succubus Heat,https://images.gr-assets.com/books/1363643447l/5148720.jpg,4.19,20108,\"paranormal, fantasy\",\"\"\"Georgina Kincaid has been a bad succubus which should be a good thing. But\nshe's in a foul mood after breaking up with her boyfriend and has been so\nwicked that uber-demon Jerome decides to 'outsource' Georgina to a rival -\nand have her spy for him. Then Jerome is kidnapped, and all immortals under\nhis control mysteriously lose their powers\"\"--WorldCat.\"\r\n7324,7781,4714126,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",\"The Walking Dead, Vol. 9: Here We Remain\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412196024l/4714126.jpg,4.25,14085,\"comics, horror\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n7325,7782,20613920,Mariana Zapata,Under Locke,https://images.gr-assets.com/books/1390340678l/20613920.jpg,4.11,24373,\"romance, contemporary\",Under LockeMariana Zapata\r\n7326,7783,625094,\"Giuseppe Tomasi di Lampedusa, Archibald Colquhoun\",Il Gattopardo,https://images.gr-assets.com/books/1376481466l/625094.jpg,3.99,9664,\"fiction, classics\",\"Based on the life of the author's great grandfather in the last half of the\n19th century, the story trace the effect upon him of the crumbling of his\nfeudal domain after the overthrow of the Bourbon monarchy in Naples.\"\r\n7327,7784,22469,\"Paul Jenkins, Andy Kubert, Richard Isanove, Joe Quesada, Bill Jemas\",Wolverine: Origin,https://images.gr-assets.com/books/1320663605l/22469.jpg,3.96,10790,\"comics, fiction\",\"Wolverine: OriginPaul Jenkins, Andy Kubert, Richard Isanove, Joe Quesada, Bill Jemas\"\r\n7328,7785,397456,V.C. Andrews,Dawn ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554374947l/397456._SY475_.jpg,3.87,13674,\"fiction, horror\",\"From #1 bestselling author V.C. Andrews (Flowers in the Attic, My Sweet\nAudrina) the first book in the captivating Cutler series... In her fine new\nVirginia school, Dawn Longchamp feels happy and safe. But nothing is what\nit seems... Now Dawn and her older brother Jimmy have a chance for a\ndecent, respectable life, and Dawn's secret, precious hope to study singing\ncan come true. Philip Cutler, the handsomest boy in school, sets Dawn's\nheart on fire. She is deeply devoted to her brooding brother; but with\nPhilip, she imagines a lovely dream of romance... Then Dawn's mother\nsuddenly dies, and her entire world begins to crumble. After a terrible new\nshock, she is thrust into a different family and an evil web of unspoken\nsins. Her sweet innocence lost, humiliated and scorned, Dawn is desperate\nto find Jimmy again and...strip away the wicked lies that will change all\ntheir lives forever.\"\r\n7329,7786,285212,\"Patricia Briggs, Eileen Wilks, Karen Chance, Sunny\",On the Prowl,https://images.gr-assets.com/books/1422192630l/285212.jpg,4.05,21757,\"paranormal, fantasy\",\"A collection of paranormal romances, including Patricia Briggs' \"\"Alpha and\nOmega,\"\" in which a beautiful werewolf uncovers her true powers with the\nhelp of a werewolf prince.\"\r\n7330,7787,37303,John Sandford,Silent Prey,https://images.gr-assets.com/books/1309286873l/37303.jpg,4.13,14522,\"mystery, fiction\",Silent PreyJohn Sandford\r\n7331,7788,231989,Sara Douglass,Battleaxe (The Axis Trilogy #1),https://images.gr-assets.com/books/1312033613l/231989.jpg,3.93,12632,\"fantasy, fiction\",Fantasy-roman.\r\n7332,7789,70287,Sandra Gulland,The Many Lives & Secret Sorrows of Josephine B.,https://images.gr-assets.com/books/1355931779l/70287.jpg,4.09,12398,\"fiction, history\",\"Passion intertwines with fate in this riveting and historically rich novel\nabout the journey of a woman from poverty to ultimate power in Revolution-\nera France. In this first of three books inspired by the life of Josephine\nBonaparte, Sandra Gulland has created a novel of immense and magical\nproportions. We meet Josephine in the exotic and lush Martinico, where an\nold island woman predicts that one day she will be queen. The journey from\nthe remote village of her birth to the height of European elegance is long,\nbut Josephine's fortune proves to be true. By way of fictionalized diary\nentries, we traverse her early years as she marries her one true love,\nbears his children, and is left betrayed, widowed, and penniless. It is\nJosephine's extraordinary charm, cunning, and will to survive that\ncatapults her to the heart of society, where she meets Napoleon, whose\ndestiny will prove to be irrevocably intertwined with hers.\"\r\n7333,7790,7701043,حسن الجندي,الجزار,https://images.gr-assets.com/books/1270726397l/7701043.jpg,4.11,9413,\"horror, fiction\",الجزارحسن الجندي\r\n7334,7791,12037026,Lisa Scottoline,Come Home,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347425080l/12037026.jpg,3.56,12971,\"mystery, fiction\",Come HomeLisa Scottoline\r\n7335,7792,7825557,Adam Gidwitz,A Tale Dark and Grimm,https://images.gr-assets.com/books/1345696603l/7825557.jpg,4.04,15041,\"fantasy, fiction\",\"Follows Hansel and Gretel as they walk out of their own story and into\neight more tales, encountering witches, devils, warlocks, kindly strangers,\nand other helpful folk as they take charge of their own happily ever after.\"\r\n7336,7793,7165405,Trudi Canavan,The Ambassador's Mission,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440185052l/7165405._SY475_.jpg,3.9,12385,\"fantasy, fiction\",\"Half the Thieves in the city are dead and nothing can account for the\nrandomness and the inventiveness of each death. Sonea, a Black Magician of\nKyralia, knows that she is needed to help hunt down the rogue magician\nkilling the Thieves. But Sonea has problems of her own. Her son is now the\nassistant to the new Guild Ambassador of Sachaka and will be in deadly\ndanger when he sets foot on their ancient enemy's soil. As a Black\nMagician, however, her every action is watched - and monitored. Any attempt\nto leave the city will result in her exile, and lose her any chance of\nhelping her friends - or her son.\"\r\n7337,7794,50695,Philip Roth,Everyman,https://images.gr-assets.com/books/1327649258l/50695.jpg,3.54,10298,\"fiction, contemporary\",\"A successful commercial artist with three very different ex-wives, a\ndaughter who adores him, and two sons who despise him, the protagonist\nfinds his confidence, sense of independence, and well-being undermined by\nan attack of illness in middle age. Reader's Guide available. Reprint.\n100,000 first printing.\"\r\n7338,7795,1300350,Dee Lestari,Supernova: Akar,https://images.gr-assets.com/books/1410249029l/1300350.jpg,3.78,7932,\"fiction, fantasy\",Supernova: AkarDee Lestari\r\n7339,7796,491735,\"Alisa Valdes, Alisa Valdes-Rodriguez\",The Dirty Girls Social Club,https://images.gr-assets.com/books/1317066640l/491735.jpg,3.46,11045,\"fiction, romance\",\"In the years after graduating from Boston University, six Latina friends\nfrom widely varied backgrounds meet every six months to dine, share the\nstories of their everyday lives, and offer advice to one another. A first\nnovel. Reprint. 150,000 first printing.\"\r\n7340,7798,70912,Luke Rhinehart,The Dice Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348073555l/70912.jpg,3.6,9813,\"fiction, psychology\",\"In the beginning was Chance, and Chance was with God and Chance was God\n.... There was a man sent by Chance, whose name was Luke .... And Chance\nwas made flesh ... and he dwelt among us, full of chaos, and falsehood and\nwhim. -- from The Book of the Die\"\r\n7341,7799,6867952,\"Yana Toboso, Tomo Kimura\",黒執事 II [Kuroshitsuji II],https://images.gr-assets.com/books/1403792460l/6867952.jpg,4.48,15194,\"manga, fantasy\",\"黒執事 II [Kuroshitsuji II]Yana Toboso, Tomo Kimura\"\r\n7342,7800,7519866,Bret Easton Ellis,Imperial Bedrooms,https://images.gr-assets.com/books/1278878105l/7519866.jpg,3.14,11093,\"fiction, contemporary\",\"A follow-up to\"\"Less Than Zero\"\" continues the stories of the teenage\ncharacters at midlife, finding successful screenwriter Clay returning to\nLos Angeles to cast a new movie and reunite with former girlfriend Blair,\nrecovering addict Julian, and notoriousdealer Rip.\"\r\n7343,7801,22296542,\"Krista Ritchie, Becca Ritchie\",Addicted to You,https://images.gr-assets.com/books/1400803526l/22296542.jpg,3.9,12746,\"romance, contemporary\",\"Fans of Tammara Webber’s EASY will love this book about two college\nstudents who use their addictions to escape their screwed up world.\"\r\n7344,7802,22021611,Gayle Forman,Just One Night,https://images.gr-assets.com/books/1398780998l/22021611.jpg,4.12,15986,\"romance, contemporary\",\"\"\"First published in the United States of America by Dutton Books\"\"--\nCopyright page.\"\r\n7345,7805,71863,John Marsden,\"The Third Day, The Frost\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389910066l/71863.jpg,4.19,13199,\"fiction, thriller\",\"Ellie and her friends have achieved more than they ever thought possible as\nan unarmed bunch of amateur teenage fighters. But it's not enough. The war\nwages on, their families are in captivity and their country is on its\nknees. Hiding back in Hell, the friends face a big question: what to do\nnext? The gang have another success when they manage to rescue Kevin. He\nreturns to them equipped with a new knowledge of explosives. Suddenly the\nquestion of what to do next becomes clear - launch an attack on the major\nenemy target of Cobblers' Bay. Can Ellie, Homer, Fi, Robin, Lee and Kevin\nreally stage a major military attack on the enemy? And in their attempt to\npull it off, what will they have to sacrifice? They have already lost\nCorrie and Chris; who else will the group have to lose in their desperation\nto defend their country? The Third Day, The Frost, draws the reader deeper\ninto the struggle of these ordinary teens attempting to survive in\nextraordinary times. A tense and moving read that will stay with you\nforever.\"\r\n7346,7806,181077,\"Eleanor Coerr, Ronald Himler\",Sadako and the Thousand Paper Cranes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348780305l/181077.jpg,4.09,14578,\"fiction, classics\",\"Hospitalized with the dreaded atom bomb disease, leukemia, a child in\nHiroshima races against time to fold one thousand paper cranes to verify\nthe legend that by doing so a sick person will become healthy.\"\r\n7347,7807,13616,\"Tsugumi Ohba, Takeshi Obata\",デスノート #4 (Desu Nōto) Koigokoro (恋心),https://images.gr-assets.com/books/1432686076l/13616.jpg,4.38,16819,\"comics, fantasy\",\"When high school student Light Yagami finds the Death Note, a notebook\ndropped by a Shinigami death god, he discovers that any person whose name\nis written in it dies, so Light decides to use the notebook to rid the\nworld of evil.\"\r\n7348,7808,77661,Josephine Tey,The Daughter of Time,https://images.gr-assets.com/books/1394326949l/77661.jpg,3.95,15626,\"mystery, fiction\",The Daughter of TimeJosephine Tey\r\n7349,7809,93799,Daniel Silva,Prince of Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193057l/93799.jpg,4.17,11250,\"thriller, mystery\",Prince of FireDaniel Silva\r\n7350,7810,26097,\"Milan Kundera, Linda Asher\",La lenteur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400521122l/26097.jpg,3.66,8620,\"fiction, philosophy\",\"Two simultaneous stories, both taking place in a French chateau two\ncenturies apart, details the sexual encounters of an eighteenth-century\ncouple and the absence of sex for a twentieth-century married couple and\ncompares the \"\"morning after\"\" of the two men. $100,000 ad/promo.\"\r\n7351,7811,20883847,Brian  McClellan,The Autumn Republic ,https://images.gr-assets.com/books/1393261950l/20883847.jpg,4.35,10910,\"fantasy, fiction\",\"IN A RICH, DISTINCTIVE WORLD THAT MIXES MAGIC WITH TECHNOLOGY, WHO COULD\nSTAND AGAINST MAGES THAT CONTROL GUNPOWDER AND BULLETS? The capital has\nfallen... Field Marshal Tamas returns to his beloved country to find that\nfor the first time in history, the capital city of Adro lies in the hands\nof a foreign invader. His son is missing, his allies are indistinguishable\nfrom his foes, and reinforcements are several weeks away. An army\ndivided... With the Kez still bearing down upon them and without clear\nleadership, the Adran army has turned against itself. Inspector Adamat is\ndrawn into the very heart of this new mutiny with promises of finding his\nkidnapped son. All hope rests with one... And Taniel Two-shot, hunted by\nmen he once thought his friends, must safeguard the only chance Adro has of\ngetting through this war without being destroyed... THE AUTUMN REPUBLIC is\nthe epic conclusion that began with Promise of Blood and The Crimson\nCampaign.\"\r\n7352,7812,11041,Anaïs Nin,Delta of Venus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388793271l/11041.jpg,3.69,10561,\"fiction, classics\",\"A new edition of the classic selection of entertaining, poetic, and erotic\nstories ranges from lyrical love to high comedy and deals with such\nsubjects as the exotic pleasures of Paris in the 1930s and a woman's\nawakening to her sexual nature. Reprint. 15,000 first printing.\"\r\n7353,7813,6488483,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",The Walking Dead Volume 11,https://images.gr-assets.com/books/1266000285l/6488483.jpg,4.33,13202,\"horror, comics\",\"The group addresses religion as it takes in a shady priest, and Rick and\nAbraham attempt to locate Dale after he's kidnapped.\"\r\n7354,7814,102439,Vernor Vinge,Rainbows End,https://images.gr-assets.com/books/1316729149l/102439.jpg,3.76,12314,\"fiction, fantasy\",\"In a near-future western civilization that is threatened by corruptive\npractices within its technologically advanced information networks, a\nrecovered Alzheimer's victim, his military son and daughter-in-law, and his\nmiddle school-age granddaughter are caught up in a dangerous maelstrom\nbeyond their worst imaginings. By the Hugo Award-winning author of A\nDeepness in the Sky. Reprint.\"\r\n7355,7815,23122175,Kristen Callihan,The Friend Zone,https://images.gr-assets.com/books/1430227184l/23122175.jpg,4.21,21130,\"romance, sports\",\"Gray doesn't make friends with women. He has sex with them. Until Ivy. The\nlast thing star tight-end Gray Grayson wants to do is drive his agent's\ndaughter's bubblegum pink car. But he needs the wheels and she's studying\nabroad. Something he explains when she sends him an irate text to let him\nknow exactly how much pain she'll put him in if he crashes her beloved\nride. Before he knows it, Ivy Mackenzie has become his best texting bud.\nBut then Ivy comes home and everything goes haywire. Because the only thing\nGray can think of is being with Ivy. Ivy doesn't have sex with friends.\nEspecially not with a certain football player. No matter how hot he makes\nher... Gray drives Ivy crazy. He's irreverent, sex on a stick, and\ncompletely off limits. Because, Ivy has one golden rule: never get involved\nwith one of her father's clients. A rule that's proving harder to keep now\nthat Gray is doing his best to seduce her. Her best friend is fast becoming\nthe most irresistible guy she's ever met. Which means Gray is going to have\nto use all his skills to win Ivy's heart. Game on.\"\r\n7356,7816,17163514,Michael J. Sullivan,The Rose and the Thorn,https://images.gr-assets.com/books/1362121827l/17163514.jpg,4.39,11791,\"fantasy, fiction\",The Rose and the ThornMichael J. Sullivan\r\n7357,7817,104159,\"Sergei Lukyanenko, Andrew Bromfield\",Сумеречный дозор,https://images.gr-assets.com/books/1382426338l/104159.jpg,4.11,11770,\"fiction, fantasy\",\"Сумеречный дозорSergei Lukyanenko, Andrew Bromfield\"\r\n7358,7818,4107256,Kelley Armstrong,Frostbitten,https://images.gr-assets.com/books/1327437513l/4107256.jpg,4.29,18094,\"paranormal, fantasy\",FrostbittenKelley Armstrong\r\n7359,7820,15433,Piers Anthony,\"Night Mare (Xanth, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544619l/15433.jpg,3.81,15008,\"fantasy, fiction\",\"Mare Imbri, a deliverer of bad dreams, is made partially real so that she\ncan warn King Trent of Xanth about the coming invasion\"\r\n7360,7821,13507011,\"Sandra Brown, Stephen Lang\",Low Pressure,https://images.gr-assets.com/books/1396934108l/13507011.jpg,3.86,12076,\"mystery, romance\",\"Low PressureSandra Brown, Stephen Lang\"\r\n7361,7822,303098,\"Douglas Preston, Lincoln Child\",Riptide,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173555399l/303098._SY475_.jpg,3.93,11835,\"thriller, fiction\",\"IN 1695, a notorious English pirate buried his bounty in a maze of booby-\ntrapped tunnels on an island off the coast of Maine. In three hundred\nyears, no one has breached this cursed and rocky fortress. Now a treasure\nhunter and his high-tech, million-dollar recovery team embark on the\nperfect operation to unlock the labyrinth's mysteries. First the computers\nfail. The then crewmen begin to die. The island has guarded its secrets for\ncenturies, and it isn't letting them go--without a fight.\"\r\n7362,7823,3331756,غسان كنفاني,عائد إلى حيفا,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1211383720l/3331756.jpg,4.32,11315,\"fiction, classics\",عائد إلى حيفاغسان كنفاني\r\n7363,7824,13811,Raymond E. Feist,Talon of the Silver Hawk,https://images.gr-assets.com/books/1409594805l/13811.jpg,4.01,13120,\"fantasy, fiction\",Talon of the Silver HawkRaymond E. Feist\r\n7364,7825,3124122,Steve Berry,The Charlemagne Pursuit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435806459l/3124122._SY475_.jpg,3.88,12874,\"fiction, thriller\",\"A mysterious manuscript discovered in the tomb of Charlemagne sends Cotton\nMalone on a perilous international quest to the harsh world of Antarctica\nin pursuit of the truth about the death of his father on a classified sub\nmission beneath Antarctica.\"\r\n7365,7826,12722,John Steinbeck,The Moon Is Down,https://images.gr-assets.com/books/1327961310l/12722.jpg,3.87,12809,\"fiction, classics\",\"An adaptation for the theater of the 1942 novel written with a purpose to\nmotivate and enthuse the resistance movements in occupied countries in\nWorld War II. The story tells of the military occupation of a small town in\nNorthern Europe by the army of an unnamed nation at war with England and\nRussia (much like the occupation of Norway by the Germans during World War\nII). Although the text never names the occupying force as German,\nreferences to \"\"The Leader\"\", \"\"Memories of defeats in Belgium and France 20\nyears ago\"\" clearly suggest it.\"\r\n7366,7827,126151,Mark Mathabane,Kaffir Boy: An Autobiography--The True Story of a Black Youth's Coming of Age in Apartheid South Africa,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442887234l/126151._SY475_.jpg,4.15,11633,\"memoir, nonfiction\",\"The Classic Story of Life in Apartheid South Africa Mark Mathabane was\nweaned on devastating poverty and schooled in the cruel streets of South\nAfrica's most desperate ghetto, where bloody gang wars and midnight police\nraids were his rites of passage. Like every other child born in the\nhopelessness of apartheid, he learned to measure his life in days, not\nyears. Yet Mark Mathabane, armed only with the courage of his family and a\nhard-won education, raised himself up from the squalor and humiliation to\nwin a scholarship to an American university. This extraordinary memoir of\nlife under apartheid is a triumph of the human spirit over hatred and\nunspeakable degradation. For Mark Mathabane did what no physically and\npsychologically battered \"\"Kaffir\"\" from the rat-infested alleys of Alexandra\nwas supposed to do -- he escaped to tell about it.\"\r\n7367,7828,12482658,Anne Tyler,The Beginner's Goodbye,https://images.gr-assets.com/books/1333577280l/12482658.jpg,3.58,12780,\"fiction, contemporary\",The Beginner's GoodbyeAnne Tyler\r\n7368,7829,93276,\"Thomas Malory, Eugène Vinaver\",The Story of King Arthur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963591l/93276.jpg,4.1,13286,\"classics, fantasy\",\"Contains classic stories of the life and death of the legendary King of\nEngland and the adventures of his noble courtiens\"\r\n7369,7831,4488657,\"صلاح جاهين, يحيى حقي\",رباعيات صلاح جاهين,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1228559895l/4488657.jpg,4.43,9995,\"poetry, classics\",\"رباعيات صلاح جاهينصلاح جاهين, يحيى حقي\"\r\n7370,7832,118389,T.S. Eliot,The Love Song of J. Alfred Prufrock and Other Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1229242079l/118389.jpg,4.32,14775,\"poetry, classics\",\"A collection of poems composed by Nobel Prize-winning writer T.S. Eliot\nbetween 1909 and 1935.\"\r\n7371,7833,17567,Gene Stratton-Porter,A Girl of the Limberlost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749079l/17567.jpg,4.14,13071,\"classics, romance\",\"Deeply wounded by her embittered mother's lack of sympathy for her\naspirations, Elnora finds comfort in the nearby Limberlost Swamp, whose\nbeauty and rich abundance provide her with the means to better her life.\"\r\n7372,7834,20426917,Kim Harrison,The Witch with No Name,https://images.gr-assets.com/books/1398700782l/20426917.jpg,4.43,13513,\"fantasy, paranormal\",\"After ten years and thirteen adventures, at last the triumphant conclusion\nto Kim Harrison’s #1 New York Times bestselling Hollows series! Bounty\nhunter and witch Rachel Morgan has come a long way from the klutzy runner\nfleeing a bad job. She’s faced vampires and werewolves, banshees, witches,\nand soul-eating demons. She’s crossed worlds, channeled gods, and accepted\nher place as a day-walking demon. She’s lost friends and lovers and family,\nand an old enemy has become something much more. But power demands\nresponsibility, and world-changers must always pay a price. That time is\nnow. To save her best friend Ivy’s soul and the rest of the living\nvampires, to keep the demonic ever-after and our own world from utter\ndestruction at the hands of fanatics, Rachel Morgan will risk everything.\"\r\n7373,7836,124272,\"Henry James, Amy Bloom, Pierre A. Walker\",The Wings of the Dove,https://images.gr-assets.com/books/1320514843l/124272.jpg,3.81,12812,\"classics, fiction\",\"Milly Theale travels to London in an attempt to forget about her deadly\nillness.\"\r\n7374,7837,7140220,Nancy Reagin,Twilight and History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347615881l/7140220.jpg,4.38,11186,\"history, fantasy\",\"The first look at the history behind Stephenie Meyer's bestselling Twilight\nseries, timed to release with the third movie, Eclipse The characters of\nthe Twilight Saga carry a rich history that shapes their identities and\nactions over the course of the series. Edward, for instance, may look like\na seventeen-year-old teen heartthrob, but was actually born in 1901 and\ndied during the Spanish Influenza of 1918. His adopted sister, Alice, was\nimprisoned in an insane asylum in 1920 and treated so badly there that even\nbecoming a vampire was a welcome escape. This book is the first to explore\nthe history behind the Twilight Saga's characters and their stories. You’ll\nlearn about what life might have been like for Jasper Whitlock Hale, the\nConfederate vampire who fought during the Civil War, Carlisle Cullen, the\nPuritan witch hunter-turned-vampire who participated in the witchcraft\npersecutions in Early Modern England, and the history of the Quileute\nculture that shaped Jacob and his people —and much more. Gives you the\nhistorical backdrop for Twilight Saga characters and events Adds a whole\nnew dimension to the Twilight novels and movies Offers fresh insights on\nvampires, romance, and history Twilight and History is an essential\ncompanion for every Twilight fan, whether you've just gotten into the\nseries or have followed it since the beginning.\"\r\n7375,7838,122649,Oscar Wilde,Lady Windermere's Fan,https://images.gr-assets.com/books/1336666367l/122649.jpg,3.9,13408,\"classics, fiction\",Lady Windermere's FanOscar Wilde\r\n7376,7839,33335,\"Masaru Emoto, David A. Thayne\",The Hidden Messages in Water,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440232568l/33335._SY475_.jpg,4.27,10800,\"science, spirituality\",\"In this New York Times bestseller, internationally renowned Japanese\nscientist Masaru Emoto shows how the influence of our thoughts, words and\nfeelings on molecules of water can positively impact the earth and our\npersonal health. This book has the potential to profoundly transform your\nworld view. Using high-speed photography, Dr. Masaru Emoto discovered that\ncrystals formed in frozen water reveal changes when specific, concentrated\nthoughts are directed toward them. He found that water from clear springs\nand water that has been exposed to loving words shows brilliant, complex,\nand colorful snowflake patterns. In contrast, polluted water, or water\nexposed to negative thoughts, forms incomplete, asymmetrical patterns with\ndull colors. The implications of this research create a new awareness of\nhow we can positively impact the earth and our personal health.\"\r\n7377,7840,759960,S.E. Hinton,Rumble Fish,https://images.gr-assets.com/books/1320491172l/759960.jpg,3.77,14002,\"fiction, classics\",\"and\"\"Stylistically superb. . . . This packs a punch that will leave readers\nof any age reeling.and\"\"and...School Library Journal, Starredand\"\"Sharper in\nfocus and more mature in style than Hintonand's The\nOutsiders.and\"\"and...BooklistAn ALA Best Books for Young AdultsA School\nLibrary Journal Best Books of the Year\"\r\n7378,7841,825509,Ken Follett,A Place Called Freedom,https://images.gr-assets.com/books/1320559980l/825509.jpg,3.87,10267,\"fiction, thriller\",\"Rebelling against the unfair and hazardous conditions in the 1766 Scottish\ncoal mines, young Mack McAsh attracts the attention of headstrong Lizzie\nHallim\"\r\n7379,7842,47667,\"José Saramago, Margaret Jull Costa\",Ensaio Sobre a Lucidez,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1600099270l/47667._SY475_.jpg,3.76,7445,\"fiction, romance\",\"Ensaio Sobre a LucidezJosé Saramago, Margaret Jull Costa\"\r\n7380,7843,17182421,Jason Mott,The Returned,https://images.gr-assets.com/books/1372089735l/17182421.jpg,3.29,11449,\"fiction, fantasy\",\"When their son Jacob, who died tragically at his eighth birthday party in\n1966, arrives on their doorstep, still eight years old, Harold and Lucille\nHargrave must navigate a strange new reality as chaos erupts around the\nworld as people's loved ones are returned from beyond.\"\r\n7381,7844,356824,Ramachandra Guha,India After Gandhi: The History of the World's Largest Democracy,https://images.gr-assets.com/books/1500471959l/356824.jpg,4.34,9357,\"nonfiction, history\",\"Amagisterial account of the pains, the struggles, the humiliations, and the\nglories of the world's largest and least likely democracy, Ramachandra\nGuha's India After Gandhi is a breathtaking chronicle of the brutal\nconflicts that have rocked a giant nation and the extraordinary factors\nthat have held it together. An intricately researched and elegantly written\nepic history peopled with larger-than-life characters, it is the work of a\nmajor scholar at the peak of his abilities.\"\r\n7382,7845,18668059,Ryan Holiday,The Obstacle Is the Way: The Timeless Art of Turning Adversity to Advantage,https://images.gr-assets.com/books/1391440316l/18668059.jpg,4.11,12470,\"philosophy, business\",\"Reframing advice from icons throughout history, including Ulysses S. Grant,\nAmelia Earhart and Steve Jobs, for today's world, this motivational guide\nshows readers how to overcome obstacles and turn them into advantages.\"\r\n7383,7846,197457,Erin Hunter,The Sight,https://images.gr-assets.com/books/1363489119l/197457.jpg,4.27,15904,\"fantasy, fiction\",\"There will be three, kin of your kin . . . The wild cats have flourished in\ntheir new home on the banks of the lake for several seasons, and the Clans\nare growing strong and healthy with new kits. The time has come for three\nkits of ThunderClan to become apprentices. Hollypaw, Jaypaw, and Lionpaw\nspring from a strong legacy: children of Squirrelflight and Brambleclaw,\ntwo of the noblest ThunderClan warriors, and grandchildren of the great\nleader Firestar himself. All three young cats possess unusual power and\ntalent and seem certain to provide strength to the Clan for the next\ngeneration. But there are dark secrets around the three, and a mysterious\nprophecy hints at trouble to come. An undercurrent of rage is rising\nagainst those who are not Clanborn, and the warrior code is in danger of\nbeing washed away by a river of blood. All the young cats' strength will be\nneeded if the Clans are to survive. . . . who hold the power of the stars\nin their paws.\"\r\n7384,7847,18870159,Abbi Glines,Bad for You,https://images.gr-assets.com/books/1390861093l/18870159.jpg,4.3,19392,\"romance, contemporary\",Bad for YouAbbi Glines\r\n7385,7848,347698,Kate Grenville,The Secret River,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388508143l/347698.jpg,3.79,11051,\"fiction, history\",The Secret RiverKate Grenville\r\n7386,7849,18422,\"Ben Carson, Cecil Murphey\",Gifted Hands: The Ben Carson Story,https://images.gr-assets.com/books/1331248043l/18422.jpg,4.21,9871,\"biography, nonfiction\",Examines the life and career of the famous neurosurgeon.\r\n7387,7850,363973,\"Linda Williams, Megan Lloyd\",The Little Old Lady Who Was Not Afraid of Anything,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441377475l/363973._SX318_.jpg,4.25,14270,\"fantasy, fiction\",\"0nce upon a time, there was a little old lady who was not afraid of\nanything! But one autumn night, while walking in the woods, the little old\nlady heard . . . CLOMP, CLOMP, SHAKE, SHAKE, CLAP, CLAP. And the little old\nlady who was not afraid of anything had the scare of her life!\"\r\n7388,7851,6076768,Brad Thor,The Apostle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442630611l/6076768._SY475_.jpg,4.11,11267,\"thriller, fiction\",\"When a media titan's daughter is kidnapped in Afghanistan and offered in\nexchange for the freedom of a top Al Qaeda operative, Navy SEAL turned\ncovert Homeland Security operative Scot Harvath undertakes a dangerous\nmission to free the terrorist from a Kabul prison only to discover that\nthings are not what they seem. Reprint. 1 million first printing. A best-\nselling book.\"\r\n7389,7852,556629,R.C. Sproul,The Holiness of God,https://images.gr-assets.com/books/1175783071l/556629.jpg,4.35,10960,\"christian, religion\",The Holiness of GodR.C. Sproul\r\n7390,7853,858514,Kevin Henkes,Wemberly Worried,https://images.gr-assets.com/books/1415584914l/858514.jpg,4.22,14325,\"fiction, fantasy\",\"A mouse named Wemberly, who worries about everything, finds that she has a\nwhole list of things to worry about when she faces the first day of nursery\nschool.\"\r\n7391,7854,2992061,Sherrilyn Kenyon,Born of the Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549166388l/2992061._SY475_.jpg,4.21,11309,\"romance, paranormal\",\"Command Assassin Nykyrian Quiakides tries to protect Kiara Zamir, whose\nfather's political alliances have made her a target, while he is hunted by\nthe League, a group of expert assassins who are the backbone of the\ngovernment.\"\r\n7392,7855,351559,Dorothy L. Sayers,Murder Must Advertise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389232617l/351559.jpg,4.21,14672,\"mystery, fiction\",\"Back in print and now available in trade paperback, Dorothy L. Sayers'\nclassic tale of murder and scandal at a chic London advertising agency,\nfeaturing the dashing and brilliant Lord Peter Wimsey. When executive\nVictor Dean dies from a fall down the iron staircase at Pym's Publicity, a\nposh London ad agency, Lord Peter Wimsey goes undercover to investigate.\nBefore his tragic demise, the victim had tried to warn Mr. Pym, the firm's\nowner, about some scandalous behavior involving his employees. Posing as a\nnew copywriter, Wimsey discovers that Dean was part of an unsavory crowd at\nPym's whose recreational habits link them to the criminal underworld. With\ntime running out and the body count rising, Wimsey must rush to find the\ntruth before his identity is discovered and a determined killer strikes\nagain.\"\r\n7393,7856,851678,Carole Radziwill,\"What Remains: A Memoir of Fate, Friendship, and Love\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1297935017l/851678.jpg,4.16,9602,\"memoir, nonfiction\",\"The author traces her life and marriage to Anthony Radziwill, President\nKennedy's nephew, in an account that describes her work as a journalist,\nher friendship with JFK, Jr., and his wife, and her husband's struggle with\nterminal cancer.\"\r\n7394,7857,22571699,Patricia Briggs,Dead Heat,https://images.gr-assets.com/books/1406232150l/22571699.jpg,4.27,15320,\"fantasy, paranormal\",\"\"\"The Mercy Thompson series transports readers into the realm of werewolves\nCharles Cornick and Anna Latham... Charles and Anna soon discover that a\ndangerous fae being is on the loose, replacing human children with\nsimulacrums. The fae have started a cold war with humanity that's about to\nheat up and Charles and Anna are in the crossfire\"\"--\"\r\n7395,7858,820273,\"Nancy E. Shaw, Margot Apple\",Sheep in a Jeep,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348754949l/820273.jpg,4.11,13788,\"fiction, poetry\",Records the misadventures of a group of sheep that go riding in a jeep.\r\n7396,7859,141077,\"Leo Tolstoy, Isai Kamen, Doris Lessing\",Крейцерова соната,https://images.gr-assets.com/books/1451489791l/141077.jpg,3.9,10915,\"classics, fiction\",\"In a violent rage against the dangers of lust, the hypocrisies of marriage,\nand the tragic consequences of misinforming young people, especially women,\nabout the disturbing realities of sex, Tolstoy chokes out THE KREUTZER\nSONATA with palpable fury. Recounting a husband's addictions, sinister\nguilt, humiliation, and subsequent obsession with his wife, Tolstoy shows\nus in this brilliant, taut narrative just how destructive a partnership can\nbe. THE KREUTZER SONATA is an example of Tolstoy's thoughts on spiritual\ncrisis, Christianity, and sexuality, and an exquisite introduction to the\ngreat Russian writer. This edition will include the controversial SEQUEL TO\nTHE KREUTZER SONATA.\"\r\n7397,7860,132688,Julia Child,The Way to Cook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348719968l/132688.jpg,4.31,11500,\"cookbooks, nonfiction\",\"Blending classic techniques with free-style American cooking and\nemphasizing freshness, lightness, and simpler preparations, this treasury\nof cooking from the \"\"French Chef\"\" features eight hundred master recipes and\nvariations\"\r\n7398,7861,257257,Phaidon Press,The 20th Century Art Book,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173206855l/257257.jpg,3.94,9927,\"art, nonfiction\",\"Depicts five hundred paintings and sculptures, each by a different modern\nartist, in alphabetical order by artist, with a brief description of the\nwork and its place in art history and in the artist's career\"\r\n7399,7862,276289,\"Bruno Ernst, M.C. Escher, John E. Brigham\",De toverspiegel van M.C. Escher,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388608974l/276289.jpg,4.15,11103,\"art, nonfiction\",Profiles Escher's life and work. Includes inidex of illustrations.\r\n7400,7863,6801652,\"Matsuri Hino, Tomo Kimura\",ヴァンパイア騎士 9,https://images.gr-assets.com/books/1329240058l/6801652.jpg,4.31,14193,\"manga, romance\",\"Yuki Cross, who was adopted by the headmaster of the Cross Academy after a\nvampire attack, must protect the students in the day classes from the\nvampires in the night classes.\"\r\n7401,7866,33449,\"Al Ries, Jack Trout\",The 22 Immutable Laws of Marketing: Violate Them at Your Own Risk!,https://images.gr-assets.com/books/1417627150l/33449.jpg,4.02,9955,\"business, nonfiction\",\"The 22 Immutable Laws of Marketing: Violate Them at Your Own Risk!Al Ries, Jack Trout\"\r\n7402,7869,23419,Alain de Botton,The Consolations of Philosophy,https://images.gr-assets.com/books/1403191802l/23419.jpg,3.99,10291,\"philosophy, nonfiction\",\"The author attempts to make philosophy useful by using the great\nphilosophers to heal a variety of psychic ailments.\"\r\n7403,7871,17412188,S.J. Watson,Second Life,https://images.gr-assets.com/books/1410793297l/17412188.jpg,3.24,9056,\"thriller, fiction\",Second LifeS.J. Watson\r\n7404,7872,527862,Irvine Welsh,The Acid House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347788489l/527862.jpg,3.69,10752,\"fiction, contemporary\",\"Short stories offer a satiric look at modern life, telling the stories of a\nman who survives with just a brain, a soccer player who is turned into a\nfly, and a drug addict who exchanges consciousnesses with an infant\"\r\n7405,7874,111126,Alice Munro,\"Hateship, Friendship, Courtship, Loveship, Marriage\",https://images.gr-assets.com/books/1494106094l/111126.jpg,4.06,10945,\"fiction, contemporary\",\"A collection of short fiction explores the complexities of human\nrelationships and emotions in stories about a housekeeper entering old-\nmaidhood whose life is transformed by a practical joke and a lifelong\nphilanderer who finds the tables turned.\"\r\n7406,7876,16256798,\"Gary Keller, Jay Papasan\",The One Thing: The Surprisingly Simple Truth Behind Extraordinary Results ,https://images.gr-assets.com/books/1362177469l/16256798.jpg,4.17,13388,\"business, nonfiction\",\"Offers advice on living a better life by cutting down on distractions,\nbuilding momentum toward a goal, and coping with stress.\"\r\n7407,7877,20980373,Whitney G.,Reasonable Doubt: Volume 2,https://images.gr-assets.com/books/1397189810l/20980373.jpg,4.14,21134,\"romance, contemporary\",\"She lied to me... She betrayed the one rule that I'm most adamant about:\nHonesty. Complete and utter fucking honesty. I really wish she was someone\nelse-someone who didn't have the ability to make me feel, someone I could\neasily discard like the hundreds of women before her. She isn't. I'm drawn\nto her like I've never been drawn to a woman before-completely captivated\nby the very sight of her. But unfortunately, with my past slowly re-\nsurfacing for all of the world to see, I'll have to find a way to let her\ngo. She can never be mine.\"\r\n7408,7878,417524,Simms Taback,Joseph Had a Little Overcoat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437646815l/417524._SX318_.jpg,4.12,14810,\"fiction, art\",A very old overcoat is recycled numerous times into a variety of garments.\r\n7409,7879,511527,\"Jacqueline Wilson, Nick Sharratt, Sue Heap\",Double Act,https://images.gr-assets.com/books/1353573624l/511527.jpg,3.69,13204,\"fiction, contemporary\",\"Ten-year-old twins Ruby and Garnet try to deal with the big changes in\ntheir lives when their father starts dating and they face the possibility\nof being separated.\"\r\n7410,7880,1301153,Meg Cabot,Princess Mia,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348221230l/1301153.jpg,3.82,17889,\"romance, contemporary\",\"Fourteen-year-old Mia, who is trying to lead a normal life as a teenage\ngirl in New York City, is shocked to learn that her father is the Prince of\nGenovia, a small European principality, and that she is a princess and the\nheir to the throne.\"\r\n7411,7881,290039,Omar Tyree,Flyy Girl,https://images.gr-assets.com/books/1415677404l/290039.jpg,4.21,9869,\"fiction, romance\",\"As a young black woman, Tracey, and her friends, motivated by the material\nlife, plunge into a world of violence, gratuitous sex, lies, and\nheartbreak, she begins to take a closer look at her own life, sexuality,\nand dreams. 25,000 first printing. Tour.\"\r\n7412,7882,10374638,Deborah Rodriguez,A Cup of Friendship,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1296689560l/10374638.jpg,3.57,7607,\"fiction, religion\",\"After hard luck and heartbreak, Sunny finally finds a place to call home—in\nthe middle of an Afghanistan war zone. There, the thirty-eight-year-old\nserves up her American hospitality to the expats who patronize her coffee\nshop, including a British journalist, a “danger pay” consultant, and a\nwealthy and well-connected woman. True to her name, Sunny also bonds with\npeople whose language and landscape are unfamiliar to most Westerners, but\nwhose hearts and souls are very much like our own: the maternal Halajan,\nwho vividly recalls the days before the Taliban and now must hide a modern\nromance from her ultratraditional son; and Yazmina, a young Afghan villager\nwith a secret that could put everyone's life in jeopardy. In this gorgeous\nfirst novel, New York Times bestselling author Deborah Rodriguez paints a\nstirring portrait of a faraway place where—even in the fog of political and\nsocial conflict—friendship, passion, and hope still exist. Originally\npublished as A Cup of Friendship Look for special features inside. Join the\nCircle for author chats and more. RandomHouseReadersCircle.com\"\r\n7413,7883,47697,\"Alisa Kwitney, Neil Gaiman\",The Sandman: King of Dreams,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439583183l/47697._SX318_.jpg,4.61,11538,\"comics, fantasy\",\"Chronicles Neil Gaimain's comic book series \"\"The Sandman,\"\" examining the\nstories and the varying artistic styles while also providing previously\nunpublished illustrations and comments by Gaiman.\"\r\n7414,7884,7006562,\"Marc Guggenheim, Alex Maleev, Stephen King\",Stephen King's N.,https://images.gr-assets.com/books/1492728218l/7006562.jpg,4.22,10844,\"horror, comics\",\"Presents a graphic novel adaptation of a short story that revolves around\nan eerie collection of stones set in Ackerman's Field in rural Maine.\"\r\n7415,7886,28735,Mercedes Lackey,By the Sword,https://images.gr-assets.com/books/1424369518l/28735.jpg,4.24,17268,\"fantasy, fiction\",\"Granddaughter of a sorceress and daughter of a noble house, Kerowyn had\nbeen forced to run the family keep since her mother's untimely death. Now\nall of her hopes and plans to return to training horses and hunting have\nbeen shattered by an attack on her ancestral home, the death of her father,\nthe wounding of her brother and the kidnapping of his fiance.\"\r\n7416,7887,13451,Stephen King,Storm of the Century: An Original Screenplay,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438560419l/13451._SY475_.jpg,3.86,14629,\"horror, fiction\",\"Complemented by an author introduction, the screenplay for a six-hour\ntelevision miniseries follows the residents of Little Tall Island as they\nprepare to cope with both a dangerous storm and an mysteriously evil force\"\r\n7417,7888,147844,Kristen Britain,First Rider's Call,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347642517l/147844.jpg,4.2,16292,\"fantasy, fiction\",First Rider's CallKristen Britain\r\n7418,7889,4102763,Jeffrey Archer,Paths of Glory,https://images.gr-assets.com/books/1312068627l/4102763.jpg,3.88,11086,\"fiction, thriller\",\"A fictionalized account of the life of teacher George Mallory follows his\nbrilliant education, service in World War I, and his fatal attempt to\nsummit Mount Everest in 1924.\"\r\n7419,7890,33732,Jennifer Crusie,Anyone But You ,https://images.gr-assets.com/books/1263487145l/33732.jpg,3.8,16747,\"romance, contemporary\",Anyone But You Jennifer Crusie\r\n7420,7891,635083,Kevin Henkes,Owen,https://images.gr-assets.com/books/1415585883l/635083.jpg,4.25,14919,\"fiction, fantasy\",\"Owen had a fuzzy yellow blanket. \"\"Fuzzy goes where I go,\"\" said Owen. But\nMrs. Tweezers disagreed. She thought Owen was too old for a blanket. Owen\ndisagreed. No matter what Mrs. Tweezers came up with, Blanket Fairies or\nvinegar, Owen had the answer. But when school started, Owen't mother knew\njust what to do, and everyone -- Owen, Fuzzy, and even Mrs. Tweezers -- was\nhappy.\"\r\n7421,7892,17167572,\"Terry Pratchett, Stephen Baxter\",The Long War,https://images.gr-assets.com/books/1368422103l/17167572.jpg,3.58,11074,\"fiction, fantasy\",\"War has come to the Long Earth. . . . Humankind has spread across the new\nworlds opened by explorers Joshua and Lobsang a mere decade ago. Now\n\"\"civilization\"\" flourishes, and airships link the multiple Earths. A new\nAmerica christening itself \"\"Valhalla\"\" has emerged more than a million steps\nfrom the original Datum Earth. Like the American revolutionaries of old,\nthe Valhallans resent being controlled from afar. And in the wake of\nhumankind's advance, the trolls—graceful, hive-mind humanoids whose song\nhas suffused the Long Earth—are beginning to fall silent . . . and\ndisappear. Joshua, now married and a father, is summoned by Lobsang. It\nseems he alone can confront the perfect storm of crises that could plunge\nall of the Long Earth into war—a war unlike any that has come before.\"\r\n7422,7893,14014,Mercedes Lackey,Arrow's Fall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388518059l/14014.jpg,4.18,17342,\"fantasy, fiction\",\"Talia, Herald to the Queen of Valdemar, travels to a neighboring realm to\ninvestigate a prince's proposal to marry the Queen's heir, but discovers an\nevil plot to destroy Valdemar\"\r\n7423,7894,3888,\"America's Test Kitchen, Carl Tremblay, Daniel J. Van Ackere\",The America's Test Kitchen Family Cookbook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281876l/3888.jpg,4.31,12081,\"cookbooks, nonfiction\",\"Presents advice on cooking techniques, equipment, food preparation, and\nselection of ingredients, along with recipes for appetizers, soups, meats,\nfish, vegetables, sauces, breads, and desserts.\"\r\n7424,7895,24093,Tamora Pierce,Street Magic,https://images.gr-assets.com/books/1328861813l/24093.jpg,4.12,18897,\"fantasy, fiction\",\"Former \"\"street rat\"\" Briar Moss must face his past when he discovers a young\nmage in need of a mentor.\"\r\n7425,7896,26722820,Phaedra Patrick,The Curious Charms of Arthur Pepper,https://images.gr-assets.com/books/1456116507l/26722820.jpg,3.91,12080,\"fiction, contemporary\",The Curious Charms of Arthur PepperPhaedra Patrick\r\n7426,7897,8573642,Jodi Meadows,Incarnate,https://images.gr-assets.com/books/1358271343l/8573642.jpg,3.73,19034,\"fantasy, romance\",\"Ana is new. For thousands of years in Range, a million souls have been\nreincarnated over and over, keeping their memories and experiences from\nprevious lifetimes. When Ana was born, one of those souls vanished, and no\none knows why. When Ana travels to the capital city of Heart, its citizens\ntreat her as a nosoul, suspicious and afraid of what her presence means.\nWhen dragons and sylph attack the city, is Ana to blame? Ana needs to\nuncover the mistake that gave her someone else's life, but will her quest\nthreaten the peace of Heart and destroy the promise of reincarnation for\nall?\"\r\n7427,7898,6419887,\"William Kamkwamba, Bryan Mealer\",The Boy Who Harnessed the Wind: Creating Currents of Electricity and Hope,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347318102l/6419887.jpg,4.07,13374,\"nonfiction, memoir\",\"The Boy Who Harnessed the Wind: Creating Currents of Electricity and HopeWilliam Kamkwamba, Bryan Mealer\"\r\n7428,7899,280240,Paul O. Zelinsky,Rumpelstilzchen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253409l/280240.jpg,4.23,14306,\"fantasy, classics\",\"A strange little man helps the miller's daughter spin straw into gold for\nthe king on the condition that she will give him her first-born child.\"\r\n7429,7900,17910048,Katherine Addison,The Goblin Emperor,https://images.gr-assets.com/books/1373039517l/17910048.jpg,4.05,11443,\"fantasy, fiction\",\"Reluctantly elevated to the throne when his father and brothers are killed\nin a suspicious accident, an exiled half-goblin is rapidly overwhelmed by\nambitious sycophants, imperial burdens and dangerous plots while searching\nfor friendship and love. A first novel. 20,000 first printing.\"\r\n7430,7901,21437200,\"Rob Thomas, Jennifer Graham\",Mr. Kiss and Tell ,https://images.gr-assets.com/books/1405566768l/21437200.jpg,4.01,12729,\"mystery, fiction\",\"\"\"The second Veronica Mars novel, in which she investigates a mysterious\ncrime at The Neptune Grand hotel\"\" --\"\r\n7431,7902,15808816,\"Adam Makos, Larry Alexander\",A Higher Call: An Incredible True Story of Combat and Chivalry in the War-Torn Skies of World War II,https://images.gr-assets.com/books/1350889524l/15808816.jpg,4.32,8975,\"history, nonfiction\",\"A Higher Call: An Incredible True Story of Combat and Chivalry in the War-Torn Skies of World War IIAdam Makos, Larry Alexander\"\r\n7432,7904,355,Robert A. Heinlein,Job: A Comedy of Justice,https://images.gr-assets.com/books/1438043968l/355.jpg,3.77,14592,\"fiction, fantasy\",\"After he firewalked in Polynesia, the world wasn't the same for Alexander\nHergensheimer, now called Alec Graham. As natural accidents occurred\nwithout cease, Alex knew Armageddon and the Day of Judgement were near.\nSomehow he had to bring his beloved heathen, Margrethe, to a state of\ngrace, and, while he was at it, save the rest of the world ....\"\r\n7433,7905,12081467,Carl Hiaasen,Chomp!,https://images.gr-assets.com/books/1320532144l/12081467.jpg,3.93,12832,\"fiction, mystery\",\"Spending his days in a zoo beside his volatile animal wrangler father,\nWahoo Cray struggles to control his father's temper when the latter takes a\njob with an egocentric reality nature show host.\"\r\n7434,7906,166580,\"Neil Gaiman, Yoshitaka Amano\",The Sandman: The Dream Hunters,https://images.gr-assets.com/books/1327940077l/166580.jpg,4.38,14629,\"fantasy, comics\",\"Following in the tradition of Japanese folk tales, this graphic novel is a\ntale centered on ill-fated love and dream-eating monsters. Full color.\"\r\n7435,7907,11686,John Cheever,The Stories of John Cheever,https://images.gr-assets.com/books/1339732173l/11686.jpg,4.27,11156,\"fiction, classics\",\"A collection of sixty-one of Cheever's short stories, including four that\nhave never been published in book form.\"\r\n7436,7909,450573,Neil Simon,The Odd Couple,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347953468l/450573.jpg,4.02,12571,\"classics, fiction\",The text of the comedy hit which opened on Broadway in March of 1965\r\n7437,7910,31555,\"V.S. Ramachandran, Sandra Blakeslee, Oliver Sacks\",Phantoms in the Brain: Probing the Mysteries of the Human Mind,https://images.gr-assets.com/books/1409601908l/31555.jpg,4.25,12194,\"psychology, science\",\"Neuroscientist V.S. Ramachandran is internationally renowned for uncovering\nanswers to the deep and quirky questions of human nature that few\nscientists have dared to address. His bold insights about the brain are\nmatched only by the stunning simplicity of his experiments -- using such\nlow-tech tools as cotton swabs, glasses of water and dime-store mirrors. In\nPhantoms in the Brain, Dr. Ramachandran recounts how his work with patients\nwho have bizarre neurological disorders has shed new light on the deep\narchitecture of the brain, and what these findings tell us about who we\nare, how we construct our body image, why we laugh or become depressed, why\nwe may believe in God, how we make decisions, deceive ourselves and dream,\nperhaps even why we're so clever at philosophy, music and art. Some of his\nmost notable cases: A woman paralyzed on the left side of her body who\nbelieves she is lifting a tray of drinks with both hands offers a unique\nopportunity to test Freud's theory of denial. A man who insists he is\ntalking with God challenges us to ask: Could we be \"\"wired\"\" for religious\nexperience? A woman who hallucinates cartoon characters illustrates how, in\na sense, we are all hallucinating, all the time. Dr. Ramachandran's\ninspired medical detective work pushes the boundaries of medicine's last\ngreat frontier -- the human mind -- yielding new and provocative insights\ninto the \"\"big questions\"\" about consciousness and the self.\"\r\n7438,7911,129523,J.D. Robb,\"Divided in Death (In Death, #18)\",https://images.gr-assets.com/books/1389938707l/129523.jpg,4.32,17321,\"mystery, romance\",\"When one of his trusted employees, Reva Ewing, with whom he had been\nworking on a top-secret government project, becomes the prime suspect in a\ndouble homicide, Irish billionaire Roarke enlists the assistance of\nLieutenant Eve Dallas to uncover the truth and find a vicious group of\ntechno-terrorists who will do anything to achieve their ends. 650,000 first\nprinting.\"\r\n7439,7913,56919,Mario Benedetti,La tregua,https://images.gr-assets.com/books/1371167309l/56919.jpg,4.19,10137,\"classics, fiction\",La treguaMario Benedetti\r\n7440,7914,24041443,Vanessa Diffenbaugh,We Never Asked for Wings,https://images.gr-assets.com/books/1432153065l/24041443.jpg,3.82,10972,\"contemporary, fiction\",\"This paperback edition includes a Q & A with the author; questions and\ntopics for discussion.\"\r\n7441,7915,23341894,Tamara Ireland Stone,Every Last Word,https://images.gr-assets.com/books/1431016937l/23341894.jpg,4.2,19214,\"contemporary, romance\",\"A New York Times Best Seller If you could read my mind, you wouldn't be\nsmiling. Samantha McAllister looks just like the rest of the popular girls\nin her junior class. But hidden beneath the straightened hair and expertly\napplied makeup is a secret that her friends would never understand: Sam has\nPurely-Obsessional OCD and is consumed by a stream of dark thoughts and\nworries that she can't turn off. Second-guessing every move, thought, and\nword makes daily life a struggle, and it doesn't help that her lifelong\nfriends will turn toxic at the first sign of a wrong outfit, wrong lunch,\nor wrong crush. Yet Sam knows she'd be truly crazy to leave the protection\nof the most popular girls in school. So when Sam meets Caroline, she has to\nkeep her new friend with a refreshing sense of humor and no style a secret,\nright up there with Sam's weekly visits to her psychiatrist. Caroline\nintroduces Sam to Poet's Corner, a hidden room and a tight-knit group of\nmisfits who have been ignored by the school at large. Sam is drawn to them\nimmediately, especially a guitar-playing guy with a talent for verse, and\nstarts to discover a whole new side of herself. Slowly, she begins to feel\nmore \"\"normal\"\" than she ever has as part of the popular crowd . . . until\nshe finds a new reason to question her sanity and all she holds dear.\nPraise for Every Last Word\"\"Clueless meets Dead Poets Society with a\nwhopping final twist.\"\" -Kirkus Reviews \"\"This book is highly recommended-\nreaders will connect with Sam, relating to her anxiety about her peers, and\nroot for her throughout the book.\"\" -VOYA \"\"A thoughtful romance with a\nstrong message about self-acceptance, [this] sensitive novel boasts strong\ncharacterizations and conflicts that many teens will relate to. Eminently\nreadable.\"\" -Booklist \"\"A brilliant and moving story about finding your\nvoice, the power of words, and true friendship. I couldn't put it down \"\"\n-Elizabeth Eulberg, Author of The Lonely Hearts Club \"\"Brilliant, brave, and\nbeautiful.\"\" -Kathleen Caldwell, A Great Good Place for Books \"\"A riveting\nstory of love, true friendship, self-doubt and self-confidence, overcoming\nobstacles, and truly finding oneself.\"\" -Melanie Koss, Professor of Young\nAdult Literature, Northern Illinois University \"\"Romantic, unpredictable,\nrelatable, and so very enjoyable.\"\" -Arnold Shapiro, Oscar- and Emmy-winning\nProducer \"\"Characters to love and a story to break your heart. Readers will\nwant to turn page after page and read every last word. Then do it all over\nagain.\"\" -Marianne Follis, Teen Librarian, Valley Ranch (Irving) Public\nLibrary\"\r\n7442,7916,55095,\"James Andrew Miller, Tom Shales\",Live from New York: An Uncensored History of Saturday Night Live,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439437449l/55095._SY475_.jpg,4.04,10112,\"memoir, nonfiction\",\"Live from New York: An Uncensored History of Saturday Night LiveJames Andrew Miller, Tom Shales\"\r\n7443,7917,25017,Simon Winchester,\"Krakatoa: The Day the World Exploded: August 27, 1883 \",https://images.gr-assets.com/books/1407108467l/25017.jpg,3.86,12625,\"science, history\",\"Simon Winchester, New York Times bestselling author of The Professor and\nthe Madman, examines the legendary annihilation in 1883 of the volcano-\nisland of Krakatoa, which was followed by an immense tsunami that killed\nnearly forty thousand people. The effects of the immense waves were felt as\nfar away as France. Barometers in Bogotá and Washington, D.C., went\nhaywire. Bodies were washed up in Zanzibar. The sound of the island's\ndestruction was heard in Australia and India and on islands thousands of\nmiles away. Most significant of all -- in view of today's new political\nclimate -- the eruption helped to trigger in Java a wave of murderous anti-\nWestern militancy among fundamentalist Muslims, one of the first outbreaks\nof Islamic-inspired killings anywhere. Krakatoa gives us an entirely new\nperspective on this fascinating and iconic event. This P.S. edition\nfeatures an extra 16 pages of insights into the book, including author\ninterviews, recommended reading, and more.\"\r\n7444,7919,2049993,Eoin Colfer,Airman,https://images.gr-assets.com/books/1327967233l/2049993.jpg,4.14,15257,\"fantasy, fiction\",AirmanEoin Colfer\r\n7445,7921,5048174,Kurt Vonnegut Jr.,2BR02B,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328301776l/5048174.jpg,3.93,7442,\"fiction, classics\",2BR02BKurt Vonnegut Jr.\r\n7446,7922,8643220,\"Richelle Mead, Emma Vieceli, Leigh Dragoon\",Vampire Academy: The Graphic Novel,https://images.gr-assets.com/books/1331468259l/8643220.jpg,4.11,13445,\"paranormal, manga\",\"Retold in graphic novel format, runaway vampire princess Lissa and her\nguardian-in-training Rose are found and returned to St. Vladimir's Academy,\nwhere one focuses on mastering magic, the other on physical training, while\nboth try to avoid the perils ofgossip, cliques, gruesome pranks, and\nsinister plots.\"\r\n7447,7923,64666,Oliver Sacks,An Anthropologist on Mars: Seven Paradoxical Tales,https://images.gr-assets.com/books/1356447436l/64666.jpg,4.18,10894,\"science, psychology\",\"Profiles seven neurological patients, including a surgeon with Tourette's\nsyndrome and an artist whose color sense is destroyed in an accident but\nfinds new creative power in black and white\"\r\n7448,7924,7469133,Jeff Lindsay,Dexter Is Delicious,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1527406223l/7469133.jpg,3.79,13582,\"fiction, mystery\",\"Serial killer Dexter Morgan reevaluates his life views upon the birth of\nhis daughter and investigates the disappearance of a teenage girl who has\nbeen running with a group of goths rumored to be engaging in cannibalism.\"\r\n7449,7925,835495,\"Mem Fox, Jane Dyer\",Time for Bed,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347387574l/835495.jpg,4.16,13568,\"fiction, poetry\",\"Time for BedMem Fox, Jane Dyer\"\r\n7450,7927,339026,P.B. Kerr,The Akhenaten Adventure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388443430l/339026.jpg,3.76,15306,\"fantasy, fiction\",\"When twelve-year-old twins John and Philippa Gaunt develop extraordinary\nmagical gifts, they travel to London to meet their wildly eccentric djinn-\nuncle, Nimrod, who teaches them to harness their new powers and sends them\non a mission.\"\r\n7451,7928,815158,Paul O. Zelinsky,Rapunzel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430277005l/815158.jpg,4.16,13896,\"fantasy, classics\",\"A retelling of the German folktale follows a beautiful girl with long\ngolden hair who is kept imprisoned in a lonely tower by a sorceress. An ALA\nNotable Book & Caldecott Medal Winner. Reprint.\"\r\n7452,7929,23731881,\"J.K. Rowling, Joel Holland\",Very Good Lives: The Fringe Benefits of Failure and the Importance of Imagination,https://images.gr-assets.com/books/1418419116l/23731881.jpg,4.26,12510,\"nonfiction, philosophy\",\"Very Good Lives: The Fringe Benefits of Failure and the Importance of ImaginationJ.K. Rowling, Joel Holland\"\r\n7453,7930,17401198,Rachel Abbott,Only the Innocent,https://images.gr-assets.com/books/1361257672l/17401198.jpg,4.03,4513,\"mystery, crime\",Only the InnocentRachel Abbott\r\n7454,7931,6145711,Robert Kirkman,\"The Walking Dead, Vol. 10: What We Become\",https://images.gr-assets.com/books/1353969736l/6145711.jpg,4.29,14118,\"fiction, horror\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n7455,7932,144793,Matthew Reilly,Area 7,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185761l/144793.jpg,4.08,12024,\"thriller, fiction\",\"Lt. Shane \"\"Scarecrow\"\" Schofield, a presidential guard on a military\nhelicopter, accompanies the president to the super-secret Area 7, where\nrogue Air Force commander Caesar Russell waits to unleash his diabolical\nscheme to take over the country.\"\r\n7456,7933,20797535,Marcus Sakey,A Better World,https://images.gr-assets.com/books/1394856007l/20797535.jpg,4.15,10702,\"fiction, thriller\",A Better WorldMarcus Sakey\r\n7457,7934,77368,Robin McKinley,Spindle's End,https://images.gr-assets.com/books/1308815054l/77368.jpg,3.79,18395,\"fantasy, fiction\",\"The infant princess Briar Rose is cursed on her name day by Pernicia, an\nevil fairy, and then whisked away by a young fairy to be raised in a remote\npart of a magical country, unaware of her real identity and hidden from\nPernicia's vengeful powers.\"\r\n7458,7935,13634927,Diana Gabaldon,\"A Leaf on the Wind of All Hallows (Outlander, #8.5)\",https://images.gr-assets.com/books/1351354006l/13634927.jpg,4.24,13891,\"fantasy, fiction\",\"A Leaf on the Wind of All Hallows (Outlander, #8.5)Diana Gabaldon\"\r\n7459,7936,21843117,R.S. Grey,Scoring Wilder,https://images.gr-assets.com/books/1401806540l/21843117.jpg,4.1,17771,\"romance, sports\",\"With Olympic tryouts on the horizon, the last thing nineteen-year-old\nKinsley Bryant needs to add to her plate is Liam Wilder. He's a\nprofessional soccer player, America's favorite bad boy and has all the\nqualities of a skilled panty-dropper. Not to mention that Liam is strictly\noff limits; her coaches have made that perfectly clear. But that just makes\nhim all the more enticing.\"\r\n7460,7937,13562054,عزالدين شكري فشير,باب الخروج: رسالة علي المفعمة ببهجة غير متوقعة,https://images.gr-assets.com/books/1340915967l/13562054.jpg,3.88,9246,\"fiction, ebooks\",باب الخروج: رسالة علي المفعمة ببهجة غير متوقعةعزالدين شكري فشير\r\n7461,7938,13037558,\"James Patterson, Michael Ledwidge\",\"I, Michael Bennett\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388229421l/13037558.jpg,4.04,12464,\"mystery, fiction\",\"I, Michael BennettJames Patterson, Michael Ledwidge\"\r\n7462,7939,19090384,Ilona Andrews,Clean Sweep,https://images.gr-assets.com/books/1385939257l/19090384.jpg,4.2,16071,\"fantasy, paranormal\",\"\"\"On the outside, Dina Demille is the epitome of normal. She runs a quaint\nVictorian Bed and Breakfast in a small Texas town, owns a Shi-tzu named\nBeast, and is a perfect neighbor, whose biggest problem should be what to\nserve her guests for breakfast. But Dina is... different: Her broom is a\ndeadly weapon; her Inn is magic and thinks for itself. Meant to be a\nlodging for otherworldly visitors, the only permanent guest is a retired\nGalactic aristocrat who can't leave the grounds because she's responsible\nfor the deaths of millions and someone might shoot her on sight. Under the\ncircumstances, 'normal' is a bit of a stretch for Dina. And now, something\nwith wicked claws and deepwater teeth has begun to hunt at night... Feeling\nresponsible for her neighbors, Dina decides to get involved. Before long,\nshe has to juggle dealing with the annoyingly attractive, ex-military, new\nneighbor, Sean Evans -- an alpha-strain werewolf -- and the equally\narresting cosmic vampire soldier, Arland, while trying to keep her inn and\nits guests safe. But the enemy she's facing is unlike anything she's ever\nencountered before. It's smart, vicious, and lethal; and putting herself\nbetween this creature and her neighbors might just cost her everything.\"\"--\nPage 4 of cover.\"\r\n7463,7940,2977487,Richelle Mead,Succubus Dreams ,https://images.gr-assets.com/books/1315977451l/2977487.jpg,4.14,21530,\"paranormal, fantasy\",\"Shape-shifting succubus Georgina Kincaid, who gets her energy from seducing\nmen, is frustrated by her non-sexual relationship with best-selling author\nSeth Mortensen and her attraction to Dante, a dream interpreter, while\ndealing with a mysterious force that is draining her energy. Original.\"\r\n7464,7941,241936,Robert Crais,The Last Detective,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177599l/241936.jpg,4.24,12160,\"mystery, fiction\",\"When the son of his longtime girlfriend, Lucy, mysteriously vanishes, Elvis\nCole finds himself encumbered by his personal demons, the dark secrets of\nhis childhood, and haunting long-suppressed memories of his service in\nVietnam, which threaten to destroy his world. Reprint.\"\r\n7465,7942,48304,\"Isa Chandra Moskowitz, Terry Hope Romero, Sara Quin\",Vegan Cupcakes Take Over the World: 75 Dairy-Free Recipes for Cupcakes that Rule,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176764l/48304.jpg,4.08,11509,\"cookbooks, nonfiction\",\"A collection of dozens of dairy-free, vegan cupcake and frosting recipes,\nwritten by the co-hosts of Post Punk Kitchen, includes such options as\nBanana Split Cupcakes, Linzer Torte Cupcakes, and Chai Latte Cupcakes. By\nthe authors of Vegan with a Vengeance. Original.\"\r\n7466,7943,522471,Joan Bauer,Hope Was Here,https://images.gr-assets.com/books/1309211597l/522471.jpg,4,14954,\"fiction, contemporary\",Hope Was HereJoan Bauer\r\n7467,7944,16061734,A.M. Homes,May We Be Forgiven,https://images.gr-assets.com/books/1349221581l/16061734.jpg,3.66,7545,\"fiction, contemporary\",\"Feeling overshadowed by his more-successful younger brother, Harold is\nshocked by his brother's violent act of rage, which irrevocably changes\nboth of their lives, placing Harold in the psychologically dynamic role of\nfather figure to his brother's adolescent children and caregiver to his\naging parents. By the author of This Book Will Save Your Life. (This book\nwas previously listed in Forecast.)\"\r\n7468,7946,39926,Naomi Wolf,The Beauty Myth: How Images of Beauty Are Used Against Women,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197585l/39926.jpg,3.89,13037,\"nonfiction, psychology\",\"The bestselling classic that redefined our view od the relationship between\nbeauty and female identity. In today's world, women have more power, legal\nrecognition, and professional success than ever before. Alongside the\nevident progress of the women's movement, however, writer and journalist\nNaomi Wolf is troubled by a different kind of social control, which, she\nargues, may prove just as restrictive as the traditional image of homemaker\nand wife. It's the beauty myth, an obsession with physical perfection that\ntraps the modern woman in an endless spiral of hope, self-consciousness,\nand self-hatred as she tries to fulfill society's impossible definition of\n\"\"the flawless beauty.\"\"\"\r\n7469,7949,315578,\"Miklós Nyiszli, Tibère Kremer, Bruno Bettelheim, Richard Seaver\",Orvos voltam Auschwitzban,https://images.gr-assets.com/books/1356698317l/315578.jpg,4.24,8422,\"history, nonfiction\",\"When the Nazis invaded Hungary in 1944, they sent virtually the entire\nJewish population to Auschwitz. A Jew and a medical doctor, Dr. Miklos\nNyiszli was spared from death for a grimmer fate: to perform “scientific\nresearch” on his fellow inmates under the supervision of the infamous\n“Angel of Death”: Dr. Josef Mengele. Nyiszli was named Mengele’s personal\nresearch pathologist. Miraculously, he survived to give this terrifying and\nsobering account.\"\r\n7470,7950,2358737,Thomas L. Friedman,\"Hot, Flat, and Crowded: Why We Need a Green Revolution--and How It Can Renew America\",https://images.gr-assets.com/books/1312006327l/2358737.jpg,3.68,10714,\"nonfiction, science\",\"Examines America's loss of focus and national purpose since 9/11, and the\nglobal environmental crisis, and shows how the solutions to these two\nproblems are linked.\"\r\n7471,7951,825576,\"Kathryn Jackson, Byron Jackson, Gustav Tenggren\",The Saggy Baggy Elephant (Little Golden Book),https://images.gr-assets.com/books/1320481063l/825576.jpg,4.06,15288,\"fiction, classics\",\"After a parrot makes fun of Sooki’s big ears, long nose, and wrinkled skin,\nthe “saggy baggy” elephant isn’t too sure of himself. But once he meets\nsome beautiful creatures who look just like him, Sooki celebrates with a\njoyful “one-two-three-kick.” For over 50 years, parents and children have\ntreasured this tale, with gorgeous art by Gustaf Tenggren, the illustrator\nof The Poky Little Puppy.\"\r\n7472,7952,2183,\"Gustave Flaubert, Robert Baldick, Geoffrey Wall\",L'Éducation sentimentale,https://images.gr-assets.com/books/1327788473l/2183.jpg,3.83,11642,\"fiction, classics\",\"Sentimental Education begins with the hero - Frederic Moreau - leaving\nParis and returning to the provinces and his mother. Part love story, part\nhistorical novel and satire it tells of how Moreau is driven by passion for\nan unattainable older woman. His 'sentimental education' turns out to be\nmore of an anxious quest than a happy one, echoing Flaubert's own life\nexperience of unrequited love. Packed with vivid detail and characterised\nby its historical authenticity, the book was described by Flaubert as 'the\nmoral history of the men of my generation'.\"\r\n7473,7954,17455541,\"Phil Robertson, Mark Schlabach\",Legend of the Duck Commander,https://images.gr-assets.com/books/1362252767l/17455541.jpg,4.06,10102,\"biography, nonfiction\",\"This no-holds-barred autobiography chronicles the remarkable life of\nRobertson, the original Duck Commander and \"\"Duck Dynasty\"\" star, from early\nchildhood through the founding of a family business.\"\r\n7474,7955,1242729,Raditya Dika,Kambing Jantan: Sebuah Catatan Harian Pelajar Bodoh ,https://images.gr-assets.com/books/1406103629l/1242729.jpg,3.59,8685,\"fiction, nonfiction\",Author's diary as an Indonesian teenager studying in Australia.\r\n7475,7956,16301111,Kirsty Moseley,Best Friends with a Self-Confessed Player,https://images.gr-assets.com/books/1438766503l/16301111.jpg,3.96,18043,\"romance, contemporary\",\"\"\"Riley Tanner has a best friend, the best friend a girl could ask for. He's\nsupportive, loyal, honest, trustworthy. kind. and thoughtful. He's also the\nbiggest player in school. Their relationship has always been easy and\naffectionate, but after Riley's month long vacation, things become a little\nstrange. She starts to look at him in ways that go way beyond the 'friend\nzone'. Add in her best friend's rival, and things become a whole lot more\ncomplicated.\"\" -- p. [4] of cover.\"\r\n7476,7957,12027429,Maria V. Snyder,Scent of Magic,https://images.gr-assets.com/books/1335295226l/12027429.jpg,4.13,16400,\"fantasy, romance\",\"Coming out of hiding to find her sister and repair their estrangement, and\nto stop King Tohon from winning control of the Realms, Avry of Kazan, the\nlast Healer in the Fifteen Realms, must support Tohon's opponents by\nteaching them forest skills and destroying an army of the walking dead.\nOriginal.\"\r\n7477,7958,11889938,Robert Crais,Taken,https://images.gr-assets.com/books/1315773532l/11889938.jpg,4.17,12492,\"mystery, fiction\",\"When Elvis Cole and Joe Pike are hired to find her missing girl, the\ninvestigation derails into a nightmare. Cole himself disappears and it's\nleft to Pike to burn through the deadly world of human traffickers to find\nhis friend. But he may already be too late.\"\r\n7478,7959,56066,Mary Kay Andrews,Savannah Breeze,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265660l/56066.jpg,4.05,13053,\"mystery, fiction\",Savannah BreezeMary Kay Andrews\r\n7479,7960,13925,Juliet Marillier,Child of the Prophecy ,https://images.gr-assets.com/books/1343590673l/13925.jpg,4.11,15142,\"fantasy, romance\",Child of the Prophecy Juliet Marillier\r\n7480,7961,84552,\"Marion Zimmer Bradley, Diana L. Paxson\",Priestess of Avalon ,https://images.gr-assets.com/books/1274559433l/84552.jpg,4.03,13823,\"fantasy, fiction\",\"Known to the Romans as Helena on the holy isle of Avalon, British princess\nEilan fulfills her destiny to bridge the pagan world of the goddess and the\nnew Christian empire founded by her own son, Constantine, and when she\ntravels to the Holy Land she discovers a truth that transcends any\nreligion. 125,000 first printing.\"\r\n7481,7962,17407233,Tara Sue Me,The submissive,https://images.gr-assets.com/books/1361512956l/17407233.jpg,3.97,14069,\"romance, contemporary\",\"A wealthy and powerful CEO takes on an innocent and inexperienced\nsubmissive and finds himself falling for her in the second novel of the\nerotic trilogy following The Submissive. Original.\"\r\n7482,7963,88514,Michel Houellebecq,Plateforme,https://images.gr-assets.com/books/1328330240l/88514.jpg,3.79,9024,\"contemporary, fiction\",\"Après la mort de son père, Michel, fonctionnaire quadragénaire et blasé,\ndécide de partir en Thaïlande pour goûter aux plaisirs exotiques. Il y\nrencontre Valérie, cadre dans une grande société de voyages, à qui il\nsoufflera sa théorie sur les vraies motivations des Européens en quête de\nsensations fortes. Embarqué dans la lutte pour le profit à tout prix, où le\ncorps est plus que jamais une marchandise, Michel jette un regard cynique\nsur la société occidentale. Il sera peut-être surpris de découvrir que\nl'être humain est encore capable de sentiments...\"\r\n7483,7964,15801967,Jonah Berger,Contagious. Why Things Catch On.,https://images.gr-assets.com/books/1376783352l/15801967.jpg,3.88,11287,\"business, nonfiction\",\"Upper Saddle River, N.J. : Creative Homeowner,\"\r\n7484,7965,122211,Terry McMillan,Disappearing Acts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348975826l/122211.jpg,4.21,11309,\"fiction, romance\",\"When Franklin, a young construction worker, meets Zora, a struggling singer\nfrom Ohio, neither is certain they can make the sacrifices and commitments\nneeded to build love. Reprint.\"\r\n7485,7966,877752,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 7,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442962522l/877752._SX318_.jpg,4.41,16111,\"manga, fantasy\",\"Tohru Honda was an orphan when one day fate kicked her out of the house and\nonto land belonging to the mysterious Sohma family. Everything goes well\nuntil she discovers the Sohma family's secret, when hugged by members of\nthe opposite sex, they turn into their Chinese zodiac animal!\"\r\n7486,7967,1173576,\"Joe Navarro, Marvin Karlins\",What Every Body is Saying: An FBI Agent's Guide to Speed-Reading People,https://images.gr-assets.com/books/1355055362l/1173576.jpg,3.9,10204,\"psychology, nonfiction\",\"He says that's his best offer. Is it? She says she agrees. Does she? The\ninterview went great—or did it? He said he'd never do it again. But he did.\nRead this book and send your nonverbal intelligence soaring. Joe Navarro, a\nformer FBI counterintelligence officer and a recognized expert on nonverbal\nbehavior, explains how to \"\"speed-read\"\" people: decode sentiments and\nbehaviors, avoid hidden pitfalls, and look for deceptive behaviors. You'll\nalso learn how your body language can influence what your boss, family,\nfriends, and strangers think of you. You will discover: The ancient\nsurvival instincts that drive body language Why the face is the least\nlikely place to gauge a person's true feelings What thumbs, feet, and\neyelids reveal about moods and motives The most powerful behaviors that\nreveal our confidence and true sentiments Simple nonverbals that instantly\nestablish trust Simple nonverbals that instantly communicate authority\nFilled with examples from Navarro's professional experience, this\ndefinitive book offers a powerful new way to navigate your world.\"\r\n7487,7968,114152,Nora Roberts,Finding the Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390318069l/114152.jpg,4.06,16408,\"romance, fiction\",\"When her marriage ends in a divorce that leaves her emotionally and\nfinancially devastated, Laura Templeton, the daughter of a wealthy\nhotelier, decides to rebuild her life without the help of the Templeton\nfortune\"\r\n7488,7970,27999,Annie Proulx,Close Range: Wyoming Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442895695l/27999._SY475_.jpg,3.99,11107,\"fiction, contemporary\",\"A collection of short stories, which includes the short story, Brokeback\nMountain.\"\r\n7489,7971,373925,\"Stephen Sondheim, Hugh Wheeler, Christopher Godfrey Bond\",Sweeney Todd: The Demon Barber of Fleet Street (Applause Musical Library),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460219l/373925.jpg,4.17,12850,\"horror, fiction\",\"The applause musical library edition includes: -- Eugene Lee's set\ndesigns-- Franne Lee's costume designs-- Production photographs; cast lists\nand credits; and awards for all major productions-- A selected discography\"\r\n7490,7972,836984,Kristin Hannah,Distant Shores,https://images.gr-assets.com/books/1320544877l/836984.jpg,3.7,12174,\"fiction, romance\",\"When her daughters leave for college and her husband lands the job of his\ndreams, Elizabeth Shore struggles to renew her dreams and passion for life.\"\r\n7491,7973,12067972,Tammara Webber,Where You Are,https://images.gr-assets.com/books/1367082773l/12067972.jpg,3.94,18402,\"romance, contemporary\",Where You AreTammara Webber\r\n7492,7974,25200,\"Shūsaku Endō, William Johnston\",沈黙,https://images.gr-assets.com/books/1327991351l/25200.jpg,4.1,11917,\"fiction, religion\",\"沈黙Shūsaku Endō, William Johnston\"\r\n7493,7975,6609758,Rachel Ward,Numbers,https://images.gr-assets.com/books/1386036562l/6609758.jpg,3.46,16717,\"fantasy, paranormal\",\"Fifteen-year-old Jem knows when she looks at someone the exact date they\nwill die, so she avoids relationships and tries to keep out of the way, but\nwhen she meets a boy named Spider and they plan a day out together, they\nbecome more involved than either of them had planned.\"\r\n7494,7976,238140,J.D. Robb,Reunion in Death,https://images.gr-assets.com/books/1305123931l/238140.jpg,4.33,16688,\"mystery, romance\",\"Lieutenant Eve Dallas is called in to investigate the murder of Walter\nPettibone by a woman calling herself Julie Dockport, and soon Eve realizes\nthat \"\"Julie\"\" is a woman Eve had put in prison years before who is back for\nrevenge.\"\r\n7495,7977,173572,Philip Yancey,Where Is God When It Hurts?,https://images.gr-assets.com/books/1328847643l/173572.jpg,4.22,9972,\"christian, religion\",\"This perennial best-seller, now in a revised and expanded edition, includes\na study guide. The book and study materials focus on the role of pain in\nGod's plan for life and how we can respond to it.\"\r\n7496,7978,6553733,Jacqueline Winspear,The Mapping of Love and Death,https://images.gr-assets.com/books/1329659691l/6553733.jpg,4.19,14010,\"mystery, fiction\",\"August 1914. As Michael Clifton is mapping land he has just purchased in\nCalifornia's beautiful Santa Ynez Valley, war is declared in Europe—and\nduty-bound to his father's native country, the young cartographer soon sets\nsail for England to serve in the British army. Three years later, he is\nlisted as missing in action. April 1932. After Michael's remains are\nunearthed in France, his parents retain London psychologist and\ninvestigator Maisie Dobbs, hoping she can find the unnamed nurse whose love\nletters were among their late son's belongings. It is a quest that leads\nMaisie back to her own bittersweet wartime love—and to the stunning\ndiscovery that Michael Clifton was murdered in his dugout. Suddenly an\nexposed web of intrigue and violence threatens to ensnare the dead\nsoldier's family and even Maisie herself as she attempts to cope with the\nimpending loss of her mentor and the unsettling awareness that she is once\nagain falling in love.\"\r\n7497,7979,29072594,Bruce Springsteen,Born to Run,https://images.gr-assets.com/books/1472979089l/29072594.jpg,4.18,14276,\"music, biography\",\"Over the past seven years, Bruce Springsteen has privately devoted\nhimselfto writing the story of his life, bringing to these pages the same\nhonesty, humor, and originality found in his songs. He describes growing up\nCatholic in Freehold, New Jersey, amid the poetry, danger, and darkness\nthat fueled his imagination, leading up to the moment he refers to as The\nBig Bang: seeing Elvis Presley s debut on The Ed Sullivan Show. He vividly\nrecounts his relentless drive to become a musician, his early days as a bar\nband king in Asbury Park, and the rise of the E Street Band. With disarming\ncandor, he also tells for the first time the story of the personal\nstruggles that inspired his best work. Born to Run will be revelatory for\nanyone who has ever enjoyed Bruce Springsteen, but this book is much more\nthan a legendary rock star s memoir. This is a book for workers and\ndreamers, parents and children, lovers and loners, artists, freaks, or\nanyone who has ever wanted to be baptized in the holy river of rock and\nroll. Rarely has a performer told his own story with such force and sweep.\nLike many of his songs (\"\"Thunder Road, \"\"Badlands.\"\" \"\"Darkness on the edge of\nTown. \"\"The River\"\" \"\"Born in the U.S.A.\"\" \"\"The Rising, \"\" abd \"\"The Ghost of Tom\nJoad,\"\" to name just a few). Bruce Springsteen s autobiography is written\nwith the lyricism of a singular songwriter and the wisdom of a man who has\nthought deeply about his experiences.\"\r\n7498,7982,114128,Nora Roberts,Hidden Riches,https://images.gr-assets.com/books/1309207156l/114128.jpg,3.97,12871,\"romance, contemporary\",Hidden RichesNora Roberts\r\n7499,7983,215643,Nalini Singh,Visions of Heat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388450756l/215643.jpg,4.13,22754,\"paranormal, romance\",Visions of HeatNalini Singh\r\n7500,7984,25953369,Margot Lee Shetterly,Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race,https://images.gr-assets.com/books/1481844518l/25953369.jpg,3.92,19947,\"history, nonfiction\",Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space RaceMargot Lee Shetterly\r\n7501,7985,20995,Robert Greene,Art of Seduction,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388282563l/20995.jpg,4.05,10100,\"psychology, philosophy\",\"A fascinating inside look at the nature of seduction uses a vast array of\nsources, from Freud and Nietzsche to Cleopatra and Josephine Bonaparte, to\nuncover the truth about this important feature of the human animal.\nReprint.\"\r\n7502,7986,40217,Jacqueline Carey,Kushiel's Justice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387707057l/40217.jpg,4.24,14422,\"fantasy, romance\",Kushiel's JusticeJacqueline Carey\r\n7503,7987,13497991,Iain M. Banks,The Hydrogen Sonata,https://images.gr-assets.com/books/1340894566l/13497991.jpg,4.15,10964,\"fiction, ebooks\",The Hydrogen SonataIain M. Banks\r\n7504,7988,17661831,Joseph Boyden,The Orenda,https://images.gr-assets.com/books/1363710334l/17661831.jpg,4.24,10830,\"fiction, history\",\"Abandoned by his native guides a year after arriving in the New World, a\n17th-century Jesuit missionary is taken prisoner by a Huron warrior in the\nCanadian wilderness and made to work as an emissary between rival nations\nat the side of an orphaned Iroquois girl. By the award-winning author of\nThrough Black Spruce. 50,000 first printing.\"\r\n7505,7989,20878809,R.J. Palacio,The Julian chapter,https://images.gr-assets.com/books/1399502333l/20878809.jpg,4.31,10437,\"fiction, contemporary\",The Julian chapterR.J. Palacio\r\n7506,7990,90078,John Locke,An Essay Concerning Human Understanding,https://images.gr-assets.com/books/1416179522l/90078.jpg,3.82,11456,\"philosophy, classics\",\"This new, complete, and unabridged edition represents the very latest in\ncritical thinking on Locke's pioneering work, which set the groundwork for\nmodern philosophy.\"\r\n7507,7991,16307,Agatha Christie,Hallowe'en Party,https://images.gr-assets.com/books/1295673439l/16307.jpg,3.66,14932,\"mystery, fiction\",Hallowe'en PartyAgatha Christie\r\n7508,7992,9266793,Sara Shepard,Never Have I Ever ,https://images.gr-assets.com/books/1289526446l/9266793.jpg,4.03,15419,\"mystery, romance\",\"Emma takes the place of her long-lost twin sister who has disappeared. Her\ntwin sister has been murdered and the deeper Emma digs the more suspects\nshe uncovers, while the killer watches every move.\"\r\n7509,7993,28698036,Brandon Sanderson,Mistborn: Secret History,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1453756231l/28698036._SY475_.jpg,4.38,12796,\"fantasy, ebooks\",\"Mistborn: Secret History is a companion story to the original Mistborn\ntrilogy. As such, it contains HUGE SPOILERS for the books Mistborn (The\nFinal Empire), The Well of Ascension, and The Hero of Ages. It also\ncontains very minor spoilers for the book The Bands of Mourning. Mistborn:\nSecret History builds upon the characterization, events, and worldbuilding\nof the original trilogy. Reading it without that background will be a\nconfusing process at best. In short, this isn't the place to start your\njourney into Mistborn (though if you have read the trilogy - but it has\nbeen a while - you should be just fine, so long as you remember the\ncharacters and the general plot of the books). Saying anything more here\nrisks revealing too much. Even knowledge of this story's existence is, in a\nway, a spoiler. There's always another secret.\"\r\n7510,7994,952,\"Gary Chapman, D. Ross Campbell\",The Five Love Languages of Children,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440895321l/952._SY475_.jpg,4.21,9744,\"christian, nonfiction\",\"Since 1992, Chapman's bestselling book \"\"The Five Love Languages\"\" has helped\nmillions of couples develop stronger, more fulfilling relationships by\nteaching them to speak each others' love language. Now parents can discover\ntheir child's primary language and learn what they can do to effectively\nconvey unconditional feelings of respect, affection, and commitment.\"\r\n7511,7995,15904,Alexander McCall Smith,The Sunday Philosophy Club ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422152744l/15904.jpg,3.36,14279,\"mystery, fiction\",\"The editor of The Review of Applied Ethics and an irrepressibly curious\nlover of puzzles, Isabel Dalhousie decides to investigate when she\nwitnesses the fatal fall of a young man and discovers that he had been\nprobing misdeeds at his brokerage firm, in the first in a new series by the\ncreator of The No. 1 Ladies' Detective Agency. Reader's Guide available.\nReprint. 300,000 first printing.\"\r\n7512,7996,238142,J.D. Robb,\"Visions in Death (In Death, #19)\",https://images.gr-assets.com/books/1390188401l/238142.jpg,4.33,16888,\"mystery, romance\",\"The summer had been long hot and bloody. Fall, with its cooler temperatures\nwas coming. Maybe people wouldn't be as inclined to kill each other. But\nshe doubted it.' Eve Dallas' latest homicide case is a particularly vicious\none. A young mother, Elisa Maplewood, is found raped and strangled in the\npark, her body naked but for what appears to be a red ribbon tied around\nher neck. As Eve starts investigating Elisa's friends and relations, an\noffer of help comes from an unlikely source. The only reason Eve agrees to\nmeet with psychic Celina Sanchez is that she is a friend of a friend. But\nCelina claims to have experienced visions of the killer and can recite\nprecise details of the case - details that the police have kept to\nthemselves. She is also no glory-hunter - she doesn't want her name\nreleased to the media. Haunted by the visions of death that she sees, all\nshe wants to do is help Eve catch the criminal so that she is left in\npeace. Though Eve remains sceptical of Celina's abilities, she serves the\ngreater good, and she will use all the resources she can to track down the\nkiller before he strikes again....\"\r\n7513,7997,133954,\"Henry James, Michael Cunningham\",Washington Square,https://images.gr-assets.com/books/1309286618l/133954.jpg,3.67,12071,\"classics, fiction\",\"Washington SquareHenry James, Michael Cunningham\"\r\n7514,7998,174879,\"Carl R. Rogers, Peter D. Kramer\",On Becoming a Person:  A Therapist's View of Psychotherapy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348329148l/174879.jpg,4.11,9988,\"psychology, nonfiction\",\"The late Carl Rogers, founder of the humanistic psychology movement,\nrevolutionized psychotherapy with his concept of \"\"client-centered therapy.\"\"\nHis influence has spanned decades, but that influence has become so much a\npart of mainstream psychology that the ingenious nature of his work has\nalmost been forgotten. A new introduction by Peter Kramer sheds light on\nthe significance of Dr. Rogers's work today. New discoveries in the field\nof psychopharmacology, especially that of the antidepressant Prozac, have\nspawned a quick-fix drug revolution that has obscured the psychotherapeutic\nrelationship. As the pendulum slowly swings back toward an appreciation of\nthe therapeutic encounter, Dr. Rogers's \"\"client-centered therapy\"\" becomes\nparticularly timely and important.\"\r\n7515,8000,16176,Matt Ridley,The Red Queen: Sex and the Evolution of Human Nature,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432490063l/16176._SY475_.jpg,4.02,11437,\"science, nonfiction\",\"Referring to Lewis Carroll's Red Queen from Through the Looking-Glass, a\ncharacter who has to keep running to stay in the same place, Matt Ridley\ndemonstrates why sex is humanity's best strategy for outwitting its\nconstantly mutating internal predators. The Red Queen answers dozens of\nother riddles of human nature and culture -- including why men propose\nmarriage, the method behind our maddening notions of beauty, and the\ndisquieting fact that a woman is more likely to conceive a child by an\nadulterous lover than by her husband. Brilliantly written, The Red Queen\noffers an extraordinary new way of interpreting the human condition and how\nit has evolved.\"\r\n7516,8004,287380,\"Masami Tsuda, Darcy Lockman, Jack Niida\",彼氏彼女の事情 #1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925098l/287380.jpg,3.96,12863,\"manga, romance\",\"In the long-awaited conclusion to this series, Yukino and Soichiro announce\nthe pregnancy to their friends while graduation slowly creeps up. Their\nfriends also solidify plans for the future. Hopes, dreams, and ambitions\nlead them down separate paths. Only time will tell if their friendships\ngrow or diminish. Young adult.\"\r\n7517,8005,21457243,Anne Bishop,Vision in Silver ,https://images.gr-assets.com/books/1404354570l/21457243.jpg,4.27,15605,\"fantasy, paranormal\",\"The Others freed the cassandra sangue to protect the blood-prophets from\nexploitation, not realizing their actions would have dire consequences. Now\nthe fragile seers are in greater danger than ever before - both from their\nown weaknesses and from those who seek to control their divinations for\nwicked purposes. In desperate need of answers, Simon Wolfgard, a shape-\nshifter leader among the Others, has no choice but to enlist blood-prophet\nMeg Corbyn's help, regardless of the risks she faces by aiding him.\"\r\n7518,8006,22674493,\"James Patterson, Marshall Karp\",NYPD Red 3,https://images.gr-assets.com/books/1423508688l/22674493.jpg,4.03,6798,\"mystery, crime\",\"PROTECT THE RICH. SERVE THE FAMOUS. HUNT THE GUILTY. NYPD Red is the elite,\nhighly trained task force assigned to protect the rich, the famous, and the\nconnected. And Detective Zach Jordan and his partner Kylie MacDonald-the\nwoman who broke his heart at the police academy-are the best of the best,\nbrilliant and tireless investigators who will stop at nothing to deliver\njustice. Zach and Kylie's New Year's celebrations are cut short when\nthey're called to the home of billionaire businessman Hunter Alden, Jr.\nafter he makes a grisly discovery in his townhouse garage. When Alden's\nteenage son goes missing soon afterwards, and his father seems oddly\nreluctant to find him, Zach and Kylie find themselves in the middle of a\nchilling conspiracy that threatens everyone in its wake-especially their\ncity's most powerful citizens. NYPD Red 3 is the next sensational novel in\nJames Patterson's explosive new series, a thriller that goes behind the\nclosed doors of New York high society and into the depths of depravity.\"\r\n7519,8007,8664368,Howard Jacobson,The Finkler Question,https://images.gr-assets.com/books/1319018978l/8664368.jpg,2.76,9627,\"fiction, contemporary\",\"A staggeringly brilliant new novel from bestselling and award-winning giant\nof literature Howard Jacobson.\"\r\n7520,8008,238139,J.D. Robb,Imitation in Death,https://images.gr-assets.com/books/1305124047l/238139.jpg,4.34,17318,\"mystery, romance\",\"Summer is drawing to a violent close when a killer makes his debut with the\nmutilation of a prostitute. His calling card: a personal note to Lieutenant\nEve Dallas.\"\r\n7521,8009,1219954,Iris Rainer Dart,Beaches,https://images.gr-assets.com/books/1490973062l/1219954.jpg,4.14,12362,\"fiction, romance\",\"Loudmouthed, redheaded Cee Cee Bloom has her sights set on Hollywood.\nBertie White, quiet and conservative, dreams of getting married and having\nchildren. In 1951, their childhood worlds collide in Atlantic City. Keeping\nin touch as pen pals, they reunite over the years ... always near the\nocean. Powerful and moving, this novel follows Cee Cee and Bertie's\nextraordinary friendship over the course of thirty years as they transform\nfrom adolescents into adults. A bestselling novel that became a hugely\nsuccessful film, Beaches is funny, heartbreaking, and a tale that should be\na part of every woman's library.\"\r\n7522,8010,24271,David Almond,Skellig,https://images.gr-assets.com/books/1320460285l/24271.jpg,3.77,13778,\"fantasy, fiction\",\"Unhappy about his baby sister's illness and the chaos of moving into a\ndilapidated old house, Michael retreats to the garage and finds a\nmysterious stranger who is something like a bird and something like an\nangel.\"\r\n7523,8011,130119,David Hume,An Enquiry concerning Human Understanding,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348617665l/130119.jpg,3.9,11646,\"philosophy, classics\",An Enquiry concerning Human UnderstandingDavid Hume\r\n7524,8012,170641,Mary Higgins Clark,I Heard That Song Before,https://images.gr-assets.com/books/1408925501l/170641.jpg,3.81,12611,\"mystery, fiction\",\"Marrying the son of her father's wealthy employer, twenty-eight-year-old\ngardener's daughter Kay Lansing becomes increasingly disturbed by the\nsuspicion surrounding her husband, Peter, in regard to the mysterious\ndeaths of his first wife and a high-school senior. Reprint.\"\r\n7525,8013,20821299,B.J. Novak,The Book with No Pictures,https://images.gr-assets.com/books/1400873472l/20821299.jpg,4.34,13984,fiction,\"\"\"In this book with no pictures, the reader has to say every silly word, no\nmatter what\"\"--\"\r\n7526,8014,155981,Maxwell Maltz,Psycho-Cybernetics. A New Way to Get More Living Out of Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347404991l/155981.jpg,4.2,10652,\"psychology, business\",\"Previously published Wiltshire, 1967. Guide to personal health and success\"\r\n7527,8015,4950,Amitav Ghosh,The Hungry Tide,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433646536l/4950.jpg,3.91,9722,\"fiction, contemporary\",\"Presents a novel of life in modern India, chronicling the interwoven\njourney of an American marine biologist and a Delhi businessman who travel\nto the remote Sundarban islands.\"\r\n7528,8016,8646,Mary Lawson,Crow Lake,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187730l/8646.jpg,3.85,12220,\"fiction, contemporary\",\"Kate Morrison, orphaned at the age of seven, grows up seeing her brilliant\nolder brother Matt's failure to further his education as a tragedy, and\nfeeling somewhat guilty about her own accomplishments, and it is not until\nyears later that she finally sees the damage her faulty thinking has\ncaused.\"\r\n7529,8017,15728921,Catherine Ryan Hyde,Don't Let Me Go,https://images.gr-assets.com/books/1348261563l/15728921.jpg,4.13,4911,\"fiction, contemporary\",Don't Let Me GoCatherine Ryan Hyde\r\n7530,8018,588234,Leslie Marmon Silko,Ceremony,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1573576343l/588234.jpg,3.73,11547,\"fiction, classics\",\"On a New Mexico reservation, one Navajo family--including Tayo, a World War\nII veteran deeply scarred by his experiences as a Japanese POW and by the\nrejection of his own people--struggles to survive in a world no longer\ntheirs in the years just before and after World War II. Reader's Guide\navailable. Reissue. 30,000 first printing.\"\r\n7531,8020,28204534,\"Brian K. Vaughan, Cliff Chiang, Matthew Wilson\",The Paper Girls - Vol 1,https://images.gr-assets.com/books/1458578587l/28204534.jpg,3.87,23858,\"comics, fiction\",\"The Paper Girls - Vol 1Brian K. Vaughan, Cliff Chiang, Matthew Wilson\"\r\n7532,8021,828015,Deborah Ellis,The Breadwinner,https://images.gr-assets.com/books/1388330682l/828015.jpg,3.93,11816,\"fiction, history\",Originally published in 2000. Published in 2015 with additional content.\r\n7533,8022,16000980,Robyn Carr,The Wanderer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390008289l/16000980.jpg,3.95,11256,\"romance, contemporary\",\"When Henry Cooper inherits property in Thunder Point, Oregon, the fate of\nthe entire small town rests on whether he decides to stay there or move on,\na decision that is influenced by his growing attraction for Sarah Dupree.\"\r\n7534,8023,10765,Stephen Clarke,A Year in the Merde,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432601757l/10765._SY475_.jpg,3.54,10319,\"travel, fiction\",\"An entertaining memoir of the author's adventures and experiences as an\nexpatriate living in Paris describes the life and times of a young British\nman brought to Paris by a French company to open a chain of British tea\nrooms, detailing his dealings with lazy French employees, a scheming boss,\nlusty girlfriends, and French culture. Reprint.\"\r\n7535,8024,18635039,Dorothea Benton Frank,The Hurricane Sisters ,https://images.gr-assets.com/books/1395873591l/18635039.jpg,3.49,10793,\"fiction, romance\",\"Hurricane season begins early and rumbles all summer long, well into\nSeptember. Often people's lives reflect the weather and The Hurricane\nSisters is just such a story. Once again New York Times bestselling author\nDorothea Benton Frank takes us deep into the heart of her magical South\nCarolina Lowcountry on a tumultuous journey filled with longings,\ndisappointments, and, finally, a road toward happiness that is hard earned.\nThere we meet three generations of women buried in secrets. The determined\nmatriarch, Maisie Pringle, at eighty, is a force to be reckoned with\nbecause she will have the final word on everything, especially when she's\ndead wrong. Her daughter, Liz, is caught up in the classic maelstrom of\nbeing middle-age and in an emotionally demanding career that will\neventually open all their eyes to a terrible truth. And Liz's beautiful\ntwenty-something daughter, Ashley, whose dreamy ambitions of her unlikely\nfuture keeps them all at odds. Luckily for Ashley, her wonderful older\nbrother, Ivy, is her fierce champion but he can only do so much from San\nFrancisco where he resides with his partner. And Mary Beth, her dearest\nfriend, tries to have her back but even she can't talk headstrong Ashley\nout of a relationship with an ambitious politician who seems slightly too\nold for her. Actually, Ashley and Mary Beth have yet to launch themselves\ninto solvency. Their prospects seem bleak. So while they wait for the world\nto discover them and deliver them from a ramen-based existence, they\nplacate themselves with a hare-brained scheme to make money but one that\nthreatens to land them in huge trouble with the authorities. So where is\nClayton, Liz's husband? He seems more distracted than usual. Ashley\ndesperately needs her father's love and attention but what kind of a parent\ncan he be to Ashley with one foot in Manhattan and the other one planted in\nindiscretion? And Liz, who's an expert in the field of troubled domestic\nlife, refuses to acknowledge Ashley's precarious situation. Who's in charge\nof this family? The wake-up call is about to arrive. The Lowcountry has\nendured its share of war and bloodshed like the rest of the South, but this\nstorm season we watch Maisie, Liz, Ashley, and Mary Beth deal with\nchallenges that demand they face the truth about themselves. After a\nterrible confrontation they are forced to rise to forgiveness, but can they\nestablish a new order for the future of them all? Frank, with her hallmark\nscintillating wit and crisp insight, captures how a complex family of\ndisparate characters and their close friends can overcome anything through\nthe power of love and reconciliation. This is the often hilarious,\nsometimes sobering, but always entertaining story of how these\nunforgettable women became The Hurricane Sisters.\"\r\n7536,8025,66933,\"Frantz Fanon, Jean-Paul Sartre, Richard Philcox, Homi K. Bhabha\",Les Damnés de la terre,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1545547240l/66933.jpg,4.16,11142,\"history, philosophy\",\"A distinguished psychiatrist from Martinique who took part in the Algerian\nNationalist Movement, Frantz Fanon was one of the most important theorists\nof revolutionary struggle, colonialism, and racial difference in history.\nFanon's masterwork is a classic alongside Edward Said's Orientalism or The\nAutobiography of Malcolm X, and it is now available in a new translation\nthat updates its language for a new generation of readers. The Wretched of\nthe Earth is a brilliant analysis of the psychology of the colonized and\ntheir path to liberation. Bearing singular insight into the rage and\nfrustration of colonized peoples, and the role of violence in effecting\nhistorical change, the book incisively attacks the twin perils of post\nindependence colonial politics: the disenfranchisement of the masses by the\nelites on the one hand, and intertribal and interfaith animosities on the\nother. Fanon's analysis, a veritable handbook of social reorganization for\nleaders of emerging nations, has been reflected all too clearly in the\ncorruption and violence that has plagued present-day Africa. The Wretched\nof the Earth has had a major impact on civil rights, anticolonialism, and\nblack consciousness movements around the world, and this bold new\ntranslation by Richard Philcox reaffirms it as a landmark.\"\r\n7537,8026,41698,Clive Cussler,Deep Six,https://images.gr-assets.com/books/1400897211l/41698.jpg,3.88,13100,\"fiction, thriller\",\"A dangerous Soviet plot looming behind the evil plans of a great Asian\nshipping family, challenges Dirk Pitt to action\"\r\n7538,8027,974122,\"Bruce H. Wilkinson, David Kopp\",Secrets of the Vine: Breaking Through to Abundance,https://images.gr-assets.com/books/1335813686l/974122.jpg,4.13,10040,\"christian, spirituality\",\"Explores images from chapter 15 of the Gospel of John, in which Jesus\nsymbolically portrays himself as the vine, God as the vinedresser, and his\nfollowers as the branches, to reveal the secrets of spiritual fulfillment.\"\r\n7539,8028,58728,\"Anne Frank, Susan Massotty\",\"Verhaaltjes, en gebeurtenissen uit het Achterhuis. Cady's leven\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388749846l/58728.jpg,4.23,10587,\"history, biography\",\"A collection of the author's lesser-known writings includes stories,\npersonal reminiscences, previously deleted excerpts from her diary, and an\nunfinished novel composed while she was hidden from the Nazis.\"\r\n7540,8029,20174424,Robert Jackson Bennett,City of Stairs,https://images.gr-assets.com/books/1394545220l/20174424.jpg,4.13,11863,\"fantasy, fiction\",\"Sent to a backwater colony that was once a god-supported conquering power,\nspymaster Shara Divani investigates the brutal murder of a historian and\nuncovers evidence that the city's divine protectors may still be alive.\nOriginal. 25,000 first printing.\"\r\n7541,8030,512475,Mary Higgins Clark,The Cradle Will Fall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348145655l/512475.jpg,3.89,14370,\"mystery, fiction\",\"A minor road accident landed county prosecutor Katie DeMaio in Westlake\nHospital. That night, from her window, she thought she saw a man load a\nwoman's body into the trunk of a car...or was it just a sleeping pill\ninduced nightmare? At work the next day, Katie began investigating a\nsuicide that looked more like murder. Initial evidence pointed elsewhere,\nbut medical examiner Richard Carroll saw a trail leading to Dr. Edgar\nHighley. He suspected that the famous doctor's work \"\"curing\"\" infertile\nwomen was more than controversial -- that it was deceitful, depraved, and\noften deadly. But before Richard could tell Katie his fears, she left the\noffice for the weekend and an appointment for routine surgery...in Dr.\nHighley's operating room.\"\r\n7542,8031,114701,Bruce Coville,Into the Land of the Unicorns,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388331416l/114701.jpg,4.04,14976,fiction,Into the Land of the UnicornsBruce Coville\r\n7543,8032,33723,\"Lauren Henderson, Chris Manby, Sarah Mlynowski, Jill A. Davis, Stella Duffy, Lisa Jewell, Marian Keyes, Sophie Kinsella, Adèle Lang, Carole Matthews, Anna Maxted, Megan McCafferty, Alisa Valdes, Isabel Wolff, Meg Cabot, Jessica Adams, Louise Bagshawe, Emily Barr, Jenny Colgan, Lynda Curnyn, Jennifer Weiner\",Girls Night In,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663697l/33723.jpg,3.61,11485,\"fiction, romance\",\"Girls Night InLauren Henderson, Chris Manby, Sarah Mlynowski, Jill A. Davis, Stella Duffy, Lisa Jewell, Marian Keyes, Sophie Kinsella, Adèle Lang, Carole Matthews, Anna Maxted, Megan McCafferty, Alisa Valdes, Isabel Wolff, Meg Cabot, Jessica Adams, Louise Bagshawe, Emily Barr, Jenny Colgan, Lynda Curnyn, Jennifer Weiner\"\r\n7544,8033,21025,\"Irvin D. Yalom, Nicola Ferguson\",The Gift of Therapy: An Open Letter to a New Generation of Therapists and Their Patients,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581004586l/21025._SY475_.jpg,4.22,9569,\"psychology, nonfiction\",\"The Gift of Therapy: An Open Letter to a New Generation of Therapists and Their PatientsIrvin D. Yalom, Nicola Ferguson\"\r\n7545,8034,160830,Seth Godin,All Marketers Are Liars: The Power of Telling Authentic Stories in a Low-Trust World,https://images.gr-assets.com/books/1420382656l/160830.jpg,3.88,9068,\"business, nonfiction\",All Marketers Are Liars: The Power of Telling Authentic Stories in a Low-Trust WorldSeth Godin\r\n7546,8035,36159,C.S. Friedman,Black Sun Rising,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437435124l/36159._SY475_.jpg,3.93,13994,\"fiction, fantasy\",\"Twelve centuries after the first colonists are stranded on Erna, a\nseismically active planet inhabited by a natural force that preys on\nhumans' worst nightmares, four colonists begin a mission to confront the\nevil. Original.\"\r\n7547,8037,752994,Molière,Le Misanthrope ou L'Atrabilaire Amoureux,https://images.gr-assets.com/books/1416873266l/752994.jpg,3.78,12994,\"classics, fiction\",Le Misanthrope ou L'Atrabilaire AmoureuxMolière\r\n7548,8038,44660,David Eddings,\"The Belgariad Boxed Set: Pawn of Prophecy, Queen of Sorcery, Magician's Gambit, Castle of Wizardry, & Enchanters' End Game (The Belgariad, #1-5)\",https://images.gr-assets.com/books/1391347386l/44660.jpg,4.26,11755,\"fantasy, fiction\",\"The Belgariad Boxed Set: Pawn of Prophecy, Queen of Sorcery, Magician's Gambit, Castle of Wizardry, & Enchanters' End Game (The Belgariad, #1-5)David Eddings\"\r\n7549,8039,60937,Alice Walker,The Temple of My Familiar,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170553835l/60937._SY475_.jpg,4.05,11471,\"fiction, classics\",\"In a story spanning 500,000 years, and moving through America, England, and\nAfrica, men, women, and animals share a spiritual world and learn the\nintricacies of their connecting lives\"\r\n7550,8040,9542259,J.R. Ward,\"Envy (Fallen Angels, #3)\",https://images.gr-assets.com/books/1464568467l/9542259.jpg,4.21,15836,\"paranormal, romance\",\"Envy (Fallen Angels, #3)J.R. Ward\"\r\n7551,8041,18892134,Veronica Roth,Four: The Son,https://images.gr-assets.com/books/1395049991l/18892134.jpg,4.11,11370,\"fiction, fantasy\",Four: The SonVeronica Roth\r\n7552,8042,2948832,Lisa Kleypas,Seduce Me at Sunrise,https://images.gr-assets.com/books/1390526497l/2948832.jpg,4.1,22167,\"romance, fiction\",\"Refusing to give in to his feelings for the tempting Winnifred Hathaway\nwhose family had rescued him from death as a boy, Kev Merripen, tormented\nby the mysteries of his Gypsy past, is reunited with his long-denied love\nas he competes for her affections and struggles to confront a dangerous\nsecret concerning his destiny. Original.\"\r\n7553,8043,26721568,Jennifer L. Armentrout,The Problem with Forever,https://images.gr-assets.com/books/1452349399l/26721568.jpg,4,17394,\"contemporary, romance\",The Problem with ForeverJennifer L. Armentrout\r\n7554,8044,28686840,Jennifer Niven,Holding Up the Universe,https://images.gr-assets.com/books/1463377718l/28686840.jpg,3.93,19504,\"contemporary, romance\",\"A New York Times Bestseller From the author of the New York Times\nbestseller All the Bright Places comes a heart-wrenching story about what\nit means to see someone—and love someone—for who they truly are. Everyone\nthinks they know Libby Strout, the girl once dubbed “America’s Fattest\nTeen.” But no one’s taken the time to look past her weight to get to know\nwho she really is. Following her mom’s death, she’s been picking up the\npieces in the privacy of her home, dealing with her heartbroken father and\nher own grief. Now, Libby’s ready: for high school, for new friends, for\nlove, and for EVERY POSSIBILITY LIFE HAS TO OFFER. In that moment, I know\nthe part I want to play here at MVB High. I want to be the girl who can do\nanything. Everyone thinks they know Jack Masselin, too. Yes, he’s got\nswagger, but he’s also mastered the impossible art of giving people what\nthey want, of fitting in. What no one knows is that Jack has a newly\nacquired secret: he can’t recognize faces. Even his own brothers are\nstrangers to him. He’s the guy who can re-engineer and rebuild anything in\nnew and bad-ass ways, but he can’t understand what’s going on with the\ninner workings of his brain. So he tells himself to play it cool: Be\ncharming. Be hilarious. Don’t get too close to anyone. Until he meets\nLibby. When the two get tangled up in a cruel high school game—which lands\nthem in group counseling and community service—Libby and Jack are both\npissed, and then surprised. Because the more time they spend together, the\nless alone they feel. . . . Because sometimes when you meet someone, it\nchanges the world, theirs and yours. Jennifer Niven delivers another\npoignant, exhilarating love story about finding that person who sees you\nfor who you are—and seeing them right back. \"\"Niven is adept at creating\ncharacters. . . . [Libby's] courage and body-positivity make for a joyful\nreading experience.\"\" --The New York Times “Holding Up the Universe . . .\ntaps into the universal need to be understood. To be wanted. And that’s\nwhat makes it such a remarkable read.” —TeenVogue.com,“Why New Book Holding\nUp the Universe Is the Next The Fault in Our Stars” \"\"Want a love story that\nwill give you all the feels? . . . You'll seriously melt!\"\"—Seventeen\nMagazine\"\r\n7555,8045,12357,Sarah Vowell,Take the Cannoli: Stories from the New World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166501351l/12357.jpg,3.86,10235,\"nonfiction, memoir\",\"A wickedly funny collection of personal essays from popular NPR personality\nSarah Vowell. Hailed by Newsweek as a \"\"cranky stylist with talent to burn,\"\"\nVowell has an irresistible voice -- caustic and sympathetic, insightful and\ndouble-edged -- that has attracted a loyal following for her magazine\nwriting and radio monologues on This American Life. While tackling subjects\nsuch as identity, politics, religion, art, and history, these\nautobiographical tales are written with a biting humor, placing Vowell\nsolidly in the tradition of Mark Twain and Dorothy Parker. Vowell searches\nthe streets of Hoboken for traces of the town's favorite son, Frank\nSinatra. She goes under cover of heavy makeup in an investigation of goth\nculture, blasts cannonballs into a hillside on a father-daughter outing,\nand maps her family's haunted history on a road trip down the Trail of\nTears. Take the Cannoli is an eclectic tour of the New World, a collection\nof alternately hilarious and heartbreaking essays and autobiographical\nyarns.\"\r\n7556,8047,126061,James D. Watson,The Double Helix: A Personal Account of the Discovery of the Structure of DNA,https://images.gr-assets.com/books/1384152213l/126061.jpg,3.87,11415,\"science, nonfiction\",\"The classic personal account of Watson and Crick’s groundbreaking discovery\nof the structure of DNA, now with an introduction by Sylvia Nasar, author\nof A Beautiful Mind. By identifying the structure of DNA, the molecule of\nlife, Francis Crick and James Watson revolutionized biochemistry and won\nthemselves a Nobel Prize. At the time, Watson was only twenty-four, a young\nscientist hungry to make his mark. His uncompromisingly honest account of\nthe heady days of their thrilling sprint against other world-class\nresearchers to solve one of science’s greatest mysteries gives a dazzlingly\nclear picture of a world of brilliant scientists with great gifts, very\nhuman ambitions, and bitter rivalries. With humility unspoiled by false\nmodesty, Watson relates his and Crick’s desperate efforts to beat Linus\nPauling to the Holy Grail of life sciences, the identification of the basic\nbuilding block of life. Never has a scientist been so truthful in capturing\nin words the flavor of his work.\"\r\n7557,8048,823412,Jamie Oliver,Cook with Jamie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348728611l/823412.jpg,4.05,10592,\"cookbooks, nonfiction\",\"My guide to making you a better cook. I can't tell you how long I've\ndreamed about writing this book. It's the biggest book I've ever done, and\nI've really tried to make it a timeless, modern-day classic. Whether you're\na student, a young couple, an established cook, or a novice, I'll take you\nthrough a whole load of simple and accessible recipes that will blow the\nsocks off your family and any guests you might have round for dinner.\nThere's information on the equipment that I think you should have in your\nkitchen, advice on how to recognize and cook loads of different cuts of\nmeat, as well as on how to get the best value and quality when you're out\nshopping. With all of us consuming more processed food than ever, it's a\nsad fact that most people just aren't confident enough to cook anymore.\nWith this in mind, now is the time for you to get stuck in and reclaim your\nfantastic cooking heritage! You know what . . . if you're going to eat\nthree times a day for the rest of your life, you might as well learn to\ncook properly and enjoy it! So roll up your sleeves and let me help you.\nP.S.: By the way, you should feel good about buying this book because every\nsingle penny I make from it will go toward training and inspiring young\nkids from tough backgrounds all over the world to have a career in food\nthrough the Fifteen Foundation. So on behalf of them, thank you.\"\r\n7558,8049,20253,\"Brian Herbert, Kevin J. Anderson\",Dune: House Harkonnen,https://images.gr-assets.com/books/1403181168l/20253.jpg,3.63,11890,\"fiction, fantasy\",\"A second prequel to \"\"Dune\"\" follows the journeys of Leto Atreides, Baron\nHarkonnen, Jessica, Gurney Halleck, and Duncan Idaho.\"\r\n7559,8050,2992069,Sherrilyn Kenyon,Dream Warrior,https://images.gr-assets.com/books/1358132728l/2992069.jpg,4.21,12404,\"paranormal, romance\",\"A powerful warrior who has spent an eternity fighting for the ancient gods\nwho spawned him, Cratus is baffled by the open nature of philanthropist and\npeace advocate Delphine Toussaint, until he realizes that this very human\nwoman holds the key to defeating an ancient enemy. Original.\"\r\n7560,8051,6282334,Tracy Kidder,Strength in What Remains,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394335626l/6282334.jpg,4.01,11833,\"nonfiction, biography\",\"Presents the story of Burundi civil war survivor Deo, who endures\nhomelessness before pursuing an education at Columbia and eventually\nreturns to his native land to help people in both countries.\"\r\n7561,8053,38739,James Herriot,The Lord God Made Them All,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210936l/38739.jpg,4.39,12510,\"biography, memoir\",\"Continues the memoirs of Yorkshire veterinarian James Herriot, as life for\nHerriot, his wife, and two children gets back to normal after World War II.\"\r\n7562,8054,112693,Louise Rennison,... Then He Ate My Boy Entracers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347563558l/112693.jpg,4.09,14737,\"romance, fiction\",... Then He Ate My Boy EntracersLouise Rennison\r\n7563,8055,94807,Arnold Lobel,Frog And Toad Book Set: Frog And Toad Are Friends; Frog And Toad Together; Days With Frog And Toad; Frog And Toad All Year,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923023l/94807.jpg,4.4,13214,\"fiction, classics\",Frog And Toad Book Set: Frog And Toad Are Friends; Frog And Toad Together; Days With Frog And Toad; Frog And Toad All YearArnold Lobel\r\n7564,8056,12254379,\"Haruki Murakami, Jay Rubin\",1Q84 Books 1-2,https://images.gr-assets.com/books/1327925087l/12254379.jpg,4.07,8342,\"fiction, fantasy\",\"The internationally best-selling and award-winning author of such works as\nWhat I Talk About When I Talk About Running presents a psychologically\ncharged tale that draws on Orwellian themes. Reprint. 125,000 first\nprinting.\"\r\n7565,8057,140345,\"Mary Westmacott, Agatha Christie\",Absent in the Spring ,https://images.gr-assets.com/books/1396225976l/140345.jpg,4.14,9787,\"fiction, mystery\",\"Absent in the Spring Mary Westmacott, Agatha Christie\"\r\n7566,8059,22402972,Lynda Mullaly Hunt,Fish In A Tree,https://images.gr-assets.com/books/1403181554l/22402972.jpg,4.28,15582,\"fiction, contemporary\",\"\"\"Fans of R.J. Palacio's Wonder will appreciate this feel-good story of\nfriendship and unconventional smarts.\"\" --Kirkus Reviews Ally has been smart\nenough to fool a lot of smart people. Every time she lands in a new school,\nshe is able to hide her inability to read by creating clever yet disruptive\ndistractions. She is afraid to ask for help; after all, how can you cure\ndumb? However, her newest teacher Mr. Daniels sees the bright, creative kid\nunderneath the trouble maker. With his help, Ally learns not to be so hard\non herself and that dyslexia is nothing to be ashamed of. As her confidence\ngrows, Ally feels free to be herself and the world starts opening up with\npossibilities. She discovers that there's a lot more to her--and to\neveryone--than a label, and that great minds don't always think alike. The\nauthor of the beloved One for the Murphys gives readers an emotionally-\ncharged, uplifting novel that will speak to anyone who's ever thought there\nwas something wrong with them because they didn't fit in. This paperback\nedition includes The Sketchbook of Impossible Things and discussion\nquestions. A New York Times Bestseller! * \"\"Unforgettable and uplifting.\"\"--\nSchool Library Connection, starred review * \"\"Offering hope to those who\nstruggle academically and demonstrating that a disability does not equal\nstupidity, this is as unique as its heroine.\"\"--Booklist, starred review *\n\"\"Mullaly Hunt again paints a nuanced portrayal of a sensitive, smart girl\nstruggling with circumstances beyond her control.\"\" --School Library\nJournal, starred review\"\r\n7567,8060,13414594,Debbie Macomber,The Inn At Rose Harbor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185644l/13414594.jpg,3.93,13001,\"romance, fiction\",The Inn At Rose HarborDebbie Macomber\r\n7568,8061,12926432,Fiona Carnarvon,Lady Almina and the Real Downton Abbey: The Lost Legacy of Highclere Castle,https://images.gr-assets.com/books/1344371479l/12926432.jpg,3.61,12235,\"history, biography\",Lady Almina and the Real Downton Abbey: The Lost Legacy of Highclere CastleFiona Carnarvon\r\n7569,8062,116445,S.M. Stirling,Dies the Fire ,https://images.gr-assets.com/books/1414175443l/116445.jpg,3.92,11912,\"fantasy, fiction\",\"When a strange electrical storm over the island of Nantucket suddenly\ncauses all electronic devices to cease functioning, the world is faced with\nan unimaginable transformation, one that is complicated by some\nindividuals' ruthless quest for ultimate domination. Reprint.\"\r\n7570,8064,113576,\"Bethany McLean, Peter Elkind\",The Smartest Guys in the Room: The Amazing Rise and Scandalous Fall of Enron,https://images.gr-assets.com/books/1309204701l/113576.jpg,4.14,10525,\"business, nonfiction\",\"An account of the rise and fall of Enron, written by award-winning Fortune\ninvestigative reporters, draws on a wide range of sources while revealing\nthe contributions of lesser-known participants in the scandal. Reprint.\"\r\n7571,8065,27213163,Jacqueline Woodson,Another Brooklyn,https://images.gr-assets.com/books/1491253077l/27213163.jpg,3.87,13176,\"fiction, contemporary\",Another BrooklynJacqueline Woodson\r\n7572,8066,94672,John Shors,Beneath a Marble Sky,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442623817l/94672._SY475_.jpg,3.99,11427,\"romance, history\",\"In 1632, the Emperor of Hindustan, consumed by grief over the death of his\nwife, Mumtaz Mahal, ordered the building of a grand mausoleum to symbolize\nthe greatness of their love. Against scenes of unimaginable wealth and\npower, there were murderous sibling rivalries and cruel despotism. In\nBeneath a Marble Sky, Princess Jahanara tells the story of how the Taj\nMahal came to be, and describes her own life as an agent in its creation\nand as a witness to the fateful events surrounding its completion. As a\nprincess and a mother, a sister and a daughter, Jaharana faces impossible\nchoices and discovers the real meaning of her regal birthright.\"\r\n7573,8067,39032,\"Douglas Preston, Lincoln Child\",Mount Dragon,https://images.gr-assets.com/books/1312037682l/39032.jpg,3.91,12656,\"thriller, fiction\",\"Guy Carson, a brilliant researcher at GeneDyne, is delighted when he is\ntransferred to Mount Dragon, the company's high-security genetic\nengineering lab, until he discovers that scientists there have concocted a\nkiller virus that threatens all humankind. Reissue.\"\r\n7574,8068,64960,\"Brian Coffey, Dean Koontz\",The Face of Fear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432840275l/64960._SY475_.jpg,3.8,13345,\"horror, suspense\",\"An ex-mountain climber and a beautiful terrified woman are trapped on the\n40th floor of a deserted office building by a psychopath called \"\"The\nButcher.\"\"\"\r\n7575,8069,58547,Kurt Cobain,Journals,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192877l/58547.jpg,3.98,10349,\"music, biography\",\"Presents lyrics, drawings, letters, and other writings from Kurt Cobain's\njournals, revealing his thoughts on Nirvana, fame, fans, and the state of\nrock music.\"\r\n7576,8071,28703,Don DeLillo,Cosmopolis,https://images.gr-assets.com/books/1328389098l/28703.jpg,3.22,10099,\"fiction, contemporary\",\"A brilliant billionaire asset manager, en route via white stretch limo to\nthe local haircutter, finds his trip interrupted by a presidential\nmotorcade, music idol's funeral, movie set, and violent political\ndemonstration, and receives a number of important visitors in the fields of\nsecurity, technology, currency, finance, and theory. Reprint. 75,000 first\nprinting.\"\r\n7577,8073,3673357,Adriana Trigiani,Very Valentine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442506747l/3673357._SY475_.jpg,3.8,13279,\"fiction, romance\",Very ValentineAdriana Trigiani\r\n7578,8074,21324,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Shawn McManus, Andrew Pepoy\",\"Fables, Volume 8: Wolves\",https://images.gr-assets.com/books/1375393296l/21324.jpg,4.28,15530,\"comics, fantasy\",\"Follows the adventures of storybook and nursery rhyme characters who live\nside-by-side with humans.\"\r\n7579,8075,41962,Maeve Binchy,Light A Penny Candle,https://images.gr-assets.com/books/1320391955l/41962.jpg,3.88,13144,\"fiction, romance\",Light A Penny CandleMaeve Binchy\r\n7580,8076,184324,Christine Feehan,\"Dark Demon (Carpathians, #16)\",https://images.gr-assets.com/books/1309288721l/184324.jpg,4.34,15915,\"paranormal, romance\",\"Dark Demon (Carpathians, #16)Christine Feehan\"\r\n7581,8077,10822174,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",\"The Walking Dead, Vol. 14: No Way Out \",https://images.gr-assets.com/books/1327883131l/10822174.jpg,4.34,13590,\"comics, horror\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n7582,8078,138399,\"Robert Kirkman, Charlie Adlard\",The Walking Dead. Book Two,https://images.gr-assets.com/books/1366213424l/138399.jpg,4.35,12650,\"comics, horror\",Further accounts of the survival horror and zombies.\r\n7583,8079,59780,\"Italo Calvino, William Weaver, Ανταίος Χρυσοστομίδης, Ελευθερία Κοψιδά\",Le cosmicomiche,https://images.gr-assets.com/books/1327975008l/59780.jpg,4.2,10389,\"fiction, fantasy\",\"Le cosmicomicheItalo Calvino, William Weaver, Ανταίος Χρυσοστομίδης, Ελευθερία Κοψιδά\"\r\n7584,8080,60935,Alice Walker,Possessing the Secret of Joy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170553834l/60935.jpg,4.06,11748,\"fiction, classics\",\"Severely traumatized after suffering genital mutilation in her native\nAfrica, Tashi Johnson spends much of her adult life in North America\nseeking help through psychoanalysis and desperate to regain the ability to\nfeel.\"\r\n7585,8081,190999,Clifford D. Simak,Way Station,https://images.gr-assets.com/books/1326490682l/190999.jpg,4.03,12087,\"fiction, classics\",Way StationClifford D. Simak\r\n7586,8082,7476122,Rachel Vincent,My Soul to Keep,https://images.gr-assets.com/books/1268059270l/7476122.jpg,4.09,17033,\"paranormal, fantasy\",My Soul to KeepRachel Vincent\r\n7587,8083,175113,Henri J.M. Nouwen,The Return of the Prodigal Son: A Story of Homecoming,https://images.gr-assets.com/books/1327010857l/175113.jpg,4.38,10802,\"christian, spirituality\",\"Inspired by Rembrandt's depiction of the gospel story, a Catholic priest\nreflects on homecoming, affirmation, reconciliation, and forgivness while\nprobing the complexity of the father-son relationship\"\r\n7588,8084,33293,Charles Wheelan,Naked Economics: Undressing the Dismal Science,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388217711l/33293.jpg,4,5646,\"nonfiction, business\",\"Seeks to provide an engaging and comprehensive primer to economics that\nexplains key concepts without technical jargon and using common-sense\nexamples.\"\r\n7589,8085,153781,Tamora Pierce,Magic Steps,https://images.gr-assets.com/books/1366188641l/153781.jpg,3.98,17813,\"fantasy, fiction\",Magic StepsTamora Pierce\r\n7590,8086,16233105,Addison Moore,Someone To Love,https://images.gr-assets.com/books/1355429121l/16233105.jpg,3.74,14747,\"romance, contemporary\",Someone To LoveAddison Moore\r\n7591,8087,104101,Guy Gavriel Kay,The Lions of Al-Rassan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348007861l/104101.jpg,4.27,13954,\"fantasy, fiction\",\"The ruling Asharites of Al-Rassan have come from the desert sands, but over\ncenturies, seduced by the sensuous pleasures of their new land, their stern\npiety has eroded. The Asharite empire has splintered into decadent city-\nstates led by warring petty kings. King Almalik of Cartada is on the\nascendancy, aided always by his friend and advisor, the notorious Ammar ibn\nKhairan -- poet, diplomat, soldier -- until a summer afternoon of savage\nbrutality changes their relationship forever. Meanwhile, in the north, the\nconquered Jaddites' most celebrated -- and feared -- military leader,\nRodrigo Belmonte, driven into exile, leads his mercenary company south. In\nthe dangerous lands of Al-Rassan, these two men from different worlds meet\nand serve -- for a time -- the same master. Sharing their interwoven fate\n-- and increasingly torn by her feelings -- is Jehane, the accomplished\ncourt physician, whose own skills play an increasing role as Al-Rassan is\nswept to the brink of holy war, and beyond. Hauntingly evocative of\nmedieval Spain, The Lions of Al-Rassan is both a brilliant adventure and a\ndeeply compelling story of love, divided loyalties, and what happens to men\nand women when hardening beliefs begin to remake -- or destroy -- a world.\"\r\n7592,8088,162086,Laura Wiess,Such a Pretty Girl,https://images.gr-assets.com/books/1336185676l/162086.jpg,3.89,13445,\"fiction, contemporary\",\"Haunted by flashbacks, fifteen-year-old Meredith learns that three years in\nprison has not changed the abusive father who molested her.\"\r\n7593,8090,350065,Judith Krantz,Scruples,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390623030l/350065.jpg,3.8,12465,\"fiction, romance\",\"After five brief but ecstatic years married to the ruler of a vast\nindustrial empire, Billy Ikehorn creates Scruples, a California specialty\nshop where the rich can have realized their most lavish whims and wildest\nfantasies.\"\r\n7594,8091,4618898,Sandra Dallas,Prayers for Sale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441720342l/4618898._SY475_.jpg,3.83,13730,\"fiction, history\",Prayers for SaleSandra Dallas\r\n7595,8093,15760,Dean Koontz,Dark Rivers of the Heart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921195l/15760.jpg,3.88,13792,\"horror, fiction\",\"Two secretive, lonely people desperately flee a clandestine, illegal agency\nwith a hidden fascist agenda, pursued by a vicious, insidiously evil\noperative with full access to the vast resources of the government.\"\r\n7596,8094,226858,Elizabeth Berg,What We Keep ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925334l/226858.jpg,3.91,12742,\"fiction, contemporary\",\"Estranged from her mother and her sister for thirty-five years after a\nseries of dramatic events, Ginny Young arrives at a reunion that reveals\nthe family she thought she knew\"\r\n7597,8095,6647312,\"Janne Teller, Martin Aitken\",Intet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348405700l/6647312.jpg,3.76,9290,\"fiction, contemporary\",\"When thirteen-year-old Pierre Anthon leaves school to sit in a plum tree\nand train for becoming part of nothing, his seventh grade classmates set\nout on a desperate quest for the meaning of life.\"\r\n7598,8096,26581,\"A.N. Roquelaure, Anne Rice\",Sleeping Beauty Box Set,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348561551l/26581.jpg,3.98,9850,\"fiction, fantasy\",\"After waking her from her hundred-year slumber, the Prince takes Sleeping\nBeauty as a sex slave and brings her to live in his kingdom where she\nlearns to become submissive and fulfills the sexual desires of nobles and\nother slaves.\"\r\n7599,8097,94510,\"Brian Azzarello, Eduardo Risso\",\"100 Bullets, Vol. 1: First Shot, Last Call (100 bullets, #1)\",https://images.gr-assets.com/books/1327888942l/94510.jpg,3.82,13026,\"comics, crime\",\"100 Bullets, Vol. 1: First Shot, Last Call (100 bullets, #1)Brian Azzarello, Eduardo Risso\"\r\n7600,8098,1116393,Karen Miller,\"Innocence Lost (Kingmaker, Kingbreaker, #2)\",https://images.gr-assets.com/books/1327918842l/1116393.jpg,3.71,12475,\"fantasy, fiction\",\"Prince Gar now has the magic for weatherworking and is able to keep his\nenemies at bay, while Asher has become the most powerful Olken in the\nhistory of Lur. Peace and prosperity seem assured for the two of them. But\nMorg, the evil sorcerer mage, remains trapped inside a shattered body. He\nknows his time is running out and that desperate measures are called for.\nUnwittingly, Gar and Asher become caught up in a dangerous deception which\nthreatens to tear apart the kingdom and destroy the fragile balance between\nOlken and Doranen. And no one, not even Dathne and her secret Circle, is\nprepared for the consequences when the Innocent Mage is revealed at last .\n. .\"\r\n7601,8099,14358,Madeleine L'Engle,\"A Ring of Endless Light (Austin Family, #4)\",https://images.gr-assets.com/books/1279354664l/14358.jpg,4.14,15629,\"fiction, fantasy\",\"After a tumultuous year in New York City, the Austins are spending the\nsummer on the small island where their grandfather lives. He’s very sick,\nand watching his condition deteriorate as the summer passes is almost more\nthan Vicky can bear. To complicate matters, she finds herself as the center\nof attention for three very different boys. Zachary Grey, the troubled and\nreckless boy Vicky met last summer, wants her all to himself as he grieves\nthe loss of his mother. Leo Rodney has been just a friend for years, but\nthe tragic loss of his father causes him to turn to Vicky for comfort—and\nromance. And then there’s Adam Eddington. Adam is only asking Vicky to help\nwith his research on dolphins. But Adam—and the dolphins—may just be what\nVicky needs to get through this heartbreaking summer.\"\r\n7602,8100,10757806,Sara Zarr,How to Save a Life,https://images.gr-assets.com/books/1337211222l/10757806.jpg,3.89,13864,\"contemporary, fiction\",How to Save a LifeSara Zarr\r\n7603,8101,6324903,Matthew Reilly,The Five Greatest Warriors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442798615l/6324903._SY475_.jpg,4.24,10772,\"thriller, fiction\",\"Jack West, Jr., leads a team of loyal followers during an Armageddon-\nrisking adventure that takes them from the deserts of Israel and storm-\nswept coastal Japan to the steppes of Mongolia and a mysterious island.\"\r\n7604,8102,25337081,J.D. Robb,Brotherhood in Death,https://images.gr-assets.com/books/1439226052l/25337081.jpg,4.35,9041,\"mystery, romance\",\"\"\"Sometimes brotherhood can be another word for conspiracy. . . . Dennis\nMira just had two unpleasant surprises. First he learned that his cousin\nEdward was secretly meeting with a real estate agent about their late\ngrandfather's magnificent West Village brownstone, despite the promise they\nboth made to keep it in the family. Then, when he went to the house to\nconfront Edward about it, he got a blunt object to the back of the head.\nLuckily Dennis is married to Charlotte Mira, the NYPSD's top profiler and a\ngood friend of Lieutenant Eve Dallas. When the two arrive on the scene, he\nexplains that the last thing he saw was Edward in a chair, bruised and\nbloody. When he came to, his cousin was gone. With the mess cleaned up and\nthe security disks removed, there's nothing left behind but a few traces\nfor forensics to analyze. As a former lawyer, judge, and senator, Edward\nMira mingled with the elite and crossed paths with criminals, making\nenemies on a regular basis. Like so many politicians, he also made some\nvery close friends behind closed--and locked--doors. But a badge and a\nbillionaire husband can get you into places others can't go, and Eve\nintends to shine some light on the dirty deals and dark motives behind the\ndisappearance of a powerful man, the family discord over a multimillion-\ndollar piece of real estate . . . and a new case that no one saw coming\"\" --\"\r\n7605,8103,176788,Mercedes Lackey,\"Arrow's Flight (Heralds of Valdemar, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388537944l/176788.jpg,4.13,17226,\"fantasy, fiction\",\"Arrow's Flight (Heralds of Valdemar, #2)Mercedes Lackey\"\r\n7606,8104,161656,\"Liz Kessler, Sarah Gibb\",The Tail of Emily Windsnap,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388242543l/161656.jpg,3.89,16453,\"fiction, fantasy\",\"After finally convincing her mother that she should take swimming lessons,\ntwelve-year-old Emily discovers a terrible and wonderful secret about\nherself that opens up a whole new world.\"\r\n7607,8105,23341862,Sarah Hepola,Blackout: Remembering the Things I Drank to Forget,https://images.gr-assets.com/books/1423750824l/23341862.jpg,3.96,9165,\"memoir, nonfiction\",\"*A NEW YORK TIMES BESTSELLER* For Sarah Hepola, alcohol was \"\"the gasoline\nof all adventure.\"\" She spent her evenings at cocktail parties and dark bars\nwhere she proudly stayed till last call. Drinking felt like freedom, part\nof her birthright as a strong, enlightened twenty-first-century woman. But\nthere was a price. She often blacked out, waking up with a blank space\nwhere four hours should be. Mornings became detective work on her own life.\nWhat did I say last night? How did I meet that guy? She apologized for\nthings she couldn't remember doing, as though she were cleaning up after an\nevil twin. Publicly, she covered her shame with self-deprecating jokes, and\nher career flourished, but as the blackouts accumulated, she could no\nlonger avoid a sinking truth. The fuel she thought she needed was draining\nher spirit instead. A memoir of unblinking honesty and poignant, laugh-out-\nloud humor, BLACKOUT is the story of a woman stumbling into a new kind of\nadventure--the sober life she never wanted. Shining a light into her\nblackouts, she discovers the person she buried, as well as the confidence,\nintimacy, and creativity she once believed came only from a bottle. Her\ntale will resonate with anyone who has been forced to reinvent or struggled\nin the face of necessary change. It's about giving up the thing you cherish\nmost--but getting yourself back in return.\"\r\n7608,8106,13003565,John Flanagan,The Invaders,https://images.gr-assets.com/books/1327983041l/13003565.jpg,4.4,13040,\"fantasy, fiction\",\"Hal and the other Herons were charged with protecting the Skandian's sacred\nartifact, the Andomal, but when it is stolen they have to endure storms at\nsea, a cold winter, and a battle with bandits in their efforts to recover\nthe relic.\"\r\n7609,8107,44796,W. Somerset Maugham,The Moon and Sixpence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348314865l/44796.jpg,4.11,10074,\"fiction, classics\",\"\"\"Witty, compelling.\"\" — The Boston Globe. Gripped by an overwhelming\nobsession, Charles Strickland, a conventional London stockbroker, decides\nin midlife to desert his wife, family, business, and civilization for his\nart. One of Maugham's most popular works, The Moon and Sixpence is a\nriveting story about an uncompromising and self-destructive man who\nforsakes wealth and comfort to pursue the life of a painter. Drifting from\nParis to Marseilles, Strickland eventually settles in Tahiti, takes a\nmistress, and in spite of poverty and a long, terminal illness, produces\nhis most passionate and mysterious works of art. Loosely based on the life\nof Paul Gauguin, Maugham's timeless masterpiece is storytelling at its best\n— an insightful work focusing on artistic fixation that propels the artist\nbeyond the commonplace into the selfish realm of genius.\"\r\n7610,8109,23753,\"Neil Gaiman, Mike Dringenberg, Chris Bachalo, Michael Zulli, Kelly Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Parkhouse, Daniel Vozzo, Lee Loughridge, Steve Oliff, Todd Klein, Dave McKean, Sam Kieth\",\"The Absolute Sandman, Volume One\",https://images.gr-assets.com/books/1312226853l/23753.jpg,4.65,13401,\"comics, fantasy\",\"The Absolute Sandman, Volume OneNeil Gaiman, Mike Dringenberg, Chris Bachalo, Michael Zulli, Kelly Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Parkhouse, Daniel Vozzo, Lee Loughridge, Steve Oliff, Todd Klein, Dave McKean, Sam Kieth\"\r\n7611,8111,11831,Cynthia Voigt,\"Dicey's Song (Tillerman Family, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923650l/11831.jpg,3.94,14926,\"fiction, classics\",\"The Newbery-winning novel in Cynthia Voigt’s timeless series is repackaged\nwith a modern look. When Momma abandoned Dicey Tillerman and her three\nsiblings in a mall parking lot and was later traced to an asylum where she\nlay unrecognizing, unknowing, she left her four children no choice but to\nget on by themselves. They set off alone on foot over hundreds of miles\nuntil they finally found someone to take them in. Gram’s rundown farm isn’t\nperfect, but they can stay together as a family—which is all Dicey really\nwanted. But after watching over the others for so long, it’s hard for Dicey\nto know what to do now. Her own identity has been so wrapped up in being\nthe caretaker, navigator, penny counter, and decision maker that she’s not\nsure how to let go of some responsibilities while still keeping a sense of\nherself. But when the past comes back with devastating force, Dicey sees\njust how necessary—and painful—letting go can be.\"\r\n7612,8112,763429,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn, Rus Wooton\",The Walking Dead. Book Three,https://images.gr-assets.com/books/1426446934l/763429.jpg,4.43,12384,\"comics, horror\",\"2018 Eisner Award winner, Best Writer 2018 Eisner Award winner, Best\nPainter/Multimedia Artist 2018 Eisner Award winner, Best Continuing Series\n2018 Eisner Award winner, Best Publication for Teens 2018 Eisner Award\nwinner, Best Cover Artist 2018 Harvey Award winner, Book of the Year 2018\nHugo Award winner, Best Graphic Story 2018 British Fantasy Award winner,\nBest Comic/Graphic Novel 2018, 2016, 2015 Entertainment Weekly's The Best\nComic Books of the Year 2018, Newsweek's Best Comic Books of the Year 2018,\nThe Washington Post's 10 Best Graphic Novels of the Year 2018, Barnes &\nNoble's Best Books of the Year 2018, YALSA's Great Graphic Novels for Teens\n2018, Thrillist's Best Comics & Graphic Novels of the Year 2018, Powell's\nBest Science-Fiction, Fantasy, Horror, and Graphic Novels of the Year The\nrichly imagined world of MONSTRESS is an alternate matriarchal 1900s Asia,\nwith an art deco-infused steampunk aesthetic that's brimming with arcane\ndangers. Within it, a teenage girl struggles to overcome the trauma of war,\na task that's made all the more difficult by her mysterious psychic link to\nan eldritch monster of tremendous power--a connection that will transform\nthem both, and place them in the crosshairs of both human and otherworldly\npowers. Creator/writer Marjorie Liu (who made history as the first woman to\nwin an Eisner Award for Best Writer) and creator/artist Sana Takeda present\na deluxe, oversized hardcover edition of their beloved breakout comic in\nMONSTRESS BOOK ONE. Collecting the first 18 issues of the New York Times\nbestselling series, this massive edition features a striking new cover, as\nwell as special extras, including never-before-seen sketches, script pages,\nand more for over 500 pages of award-winning content.\"\r\n7613,8114,9998,\"Kōbō Abe, E. Dale Saunders\",砂の女 [Suna no onna],https://images.gr-assets.com/books/1361254930l/9998.jpg,3.91,11467,\"fiction, classics\",\"In this famous postwar Japanese novel, the first of Abe's to be translated\ninto English, Niki Jumpei, an amateur entomologist in pursuit of a rare\nspecimen of beetle, wanders into a strange seaside village, whose residents\nall live in sandpits. He is taken prisoner, and, along with a widow cast\nout by the community, he is forced to move into her sandpit and continually\nshovel away the sand that threatens to take over the village. In Niki's\nstruggles to escape his prison and his developing relationship with the\nwoman, he gradually comes to understand the existential nature of life.\"\r\n7614,8115,77298,\"Mario Vargas Llosa, Helen R. Lane\",La tía Julia y el escribidor,https://images.gr-assets.com/books/1327993472l/77298.jpg,3.9,9228,\"fiction, romance\",\"La tía Julia y el escribidorMario Vargas Llosa, Helen R. Lane\"\r\n7615,8116,25005214,Victoria Aveyard,Queen Song,https://images.gr-assets.com/books/1437677533l/25005214.jpg,3.74,12436,\"fantasy, fiction\",\"The #1 New York Times bestselling series! From #1 New York Times\nbestselling author Victoria Aveyard, this 55-page digital original prequel\nnovella is an intriguing glimpse into the world of Red Queen before Mare\nand Cal and the Scarlet Guard. Queen Coriane, first wife of King Tiberias,\nkeeps a secret diary—how else can she ensure that no one at the palace will\nuse her thoughts against her? In her diary, Coriane recounts her heady\ncourtship with the crown prince, the birth of a new prince, Cal, and the\npotentially deadly challenges that lay ahead for her in royal life. And\ndon’t miss Broken Throne: A Red Queen Collection, featuring three brand-new\nnovellas and other exclusive content, coming in April!\"\r\n7616,8117,22418,\"Warren Ellis, Darick Robertson, Rodney Ramos\",\"Transmetropolitan, Vol. 3: Year of the Bastard\",https://images.gr-assets.com/books/1452027011l/22418.jpg,4.4,12188,\"comics, fiction\",\"World weary journalist Spider Jerusalem's wit and wisdom broadens the minds\nof the readers of his column in the WORD newspaper, and at the same time\nexposes the politics and corruption of life in the big city.\"\r\n7617,8119,18163646,Amy Zhang,Falling Into Place,https://images.gr-assets.com/books/1393613084l/18163646.jpg,3.88,12411,\"contemporary, fiction\",Falling Into PlaceAmy Zhang\r\n7618,8120,56594,\"Sheldon Vanauken, C.S. Lewis\",A Severe Mercy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440774555l/56594._SY475_.jpg,4.32,11207,\"biography, christian\",\"\"\"This acclaimed story traces the idyllic marriage of Sheldon and Jean\nVanauken, their search for faith, their friendship with C.S. Lewis, and the\ntragedy of untimely death and love lost. It includes eighteen letters by\nC.S. Lewis\"\"--Back cover.\"\r\n7619,8121,9862761,Charles C. Mann,1493: Uncovering the New World Columbus Created,https://images.gr-assets.com/books/1327900945l/9862761.jpg,4.05,10963,\"history, nonfiction\",\"Reveals how the voyages of Columbus reintroduced plants and animals that\nhad been separated millions of years earlier, documenting how the ensuing\nexchange of flora and fauna between Eurasia and the Americas fostered a\nEuropean rise, decimated imperial China and rendered Manila and Mexico City\nthe center of the world for two centuries. Reprint.\"\r\n7620,8122,9429531,Anna Jean Mayhew,The Dry Grass of August,https://images.gr-assets.com/books/1327170212l/9429531.jpg,3.82,12446,\"fiction, ebooks\",The Dry Grass of AugustAnna Jean Mayhew\r\n7621,8125,5981872,Jennifer Ashley,The Madness of Lord Ian Mackenzie,https://images.gr-assets.com/books/1322336718l/5981872.jpg,4.07,19932,\"romance, fiction\",The Madness of Lord Ian MackenzieJennifer Ashley\r\n7622,8126,127712,Stephen Hunter,Point of Impact,https://images.gr-assets.com/books/1315656617l/127712.jpg,4.26,10318,\"thriller, fiction\",\"Twenty years after he earned a reputation for killing eighty-seven men\nduring the Vietnam War, Bob Lee Swagger finds that his skills are in demand\nwhen an organization with ties to the CIA hires him for a particularly\ndangerous mission, only to learn that he has become the fall guy in a dark\nplot to assassinate the president. Reissue. (Tie-in to the film Shooter,\nwritten by Jonathan Lemkin, directed by Antoine Fuqua, releasing March\n2007, starring Mark Wahlberg & Danny Glover) (Suspense)\"\r\n7623,8127,6193,J.M. Coetzee,Life & Times of Michael K.,https://images.gr-assets.com/books/1327203650l/6193.jpg,3.85,10647,\"fiction, contemporary\",\"Michael K, a young South African, becomes unwillingly and unwittingly\ninvolved in a war in South Africa after he loses his gardening job in\nCapetown and embarks on an odyssey to return his dying mother to her\nhomeland.\"\r\n7624,8128,16948,Mary Doria Russell,Children of God,https://images.gr-assets.com/books/1373509005l/16948.jpg,4.05,12938,\"fiction, religion\",\"A priest named Emilio Sandoz embarks on a quest to demystify God's\nprovidence that leads him to question the possibility of faith\"\r\n7625,8130,1776251,Jamie Oliver,Jamie at Home: Cook Your Way to the Good Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347729405l/1776251.jpg,4.09,10588,\"cookbooks, nonfiction\",\"Home is where the heart is . . . This book is very close to my heart. It's\nabout no-nonsense, simple cooking with great flavors all year round. When I\nbegan writing it, I didn't really know what recipes I would come up with,\nbut something began to inspire me very quickly . . . my vegetable patch! I\ncame to realize last year that it's not always about looking out at the\nwider world for inspiration. Being at home, feeling relaxed and open, can\nalso offer this. I love to spend time at home in the village where I grew\nup, working with the boss, Mother Nature, in my garden and seeing all my\nbeautiful veggies coming out of the ground. Inside you'll find over one\nhundred new recipes, plus some basic planting information and tips if you\nfancy having a go at getting your hands dirty as well!\"\r\n7626,8131,41701,Clive Cussler,The Mediterranean Caper,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442726835l/41701._SY475_.jpg,3.75,13139,\"fiction, thriller\",\"Dirk Pitt responds to a call of distress and finds himself coping with a\nmodern Greek goddess in a red bikini, a vast drug-smuggling ring, a still-\nactive Nazi criminal, and a perilous undersea labyrinth.\"\r\n7627,8132,18892,\"Marion Zimmer Bradley, Diana L. Paxson\",The Forest House,https://images.gr-assets.com/books/1319444215l/18892.jpg,3.85,13951,\"fantasy, fiction\",\"In a tale set in Druidic England, Eilan feels torn between her love for a\nyoung Roman soldier and her inner need to become a priestess for her\nGoddess\"\r\n7628,8133,37302,John Sandford,Certain Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348125158l/37302.jpg,4.2,12320,\"mystery, fiction\",\"The story of a professional hit woman for the Mafia in Minneapolis. She is\nhired to eliminate the wife of a man a woman desires. A policeman dies in\nthe process and detective Lucas Davenport goes after her. By the author of\nSecret Prey.\"\r\n7629,8134,478657,MaryJanice Davidson,Undead and Unreturnable,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191267l/478657.jpg,3.89,18700,\"paranormal, romance\",\"Betsy the vampire queen is faced with the trials and tribulations of the\nholiday season, as she struggles to cope with a half-sister who is the\ndevil's daughter, an evil stepmother, a fiend living in her basement,\nkillers and spirits running amok, and a spring wedding to plan with her\none-time nemesis, Eric Sinclair. Reprint.\"\r\n7630,8135,96594,Jack Campbell,\"Fearless (The Lost Fleet, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348244880l/96594.jpg,3.97,12733,\"fiction, fantasy\",\"To ward off an attack by the Syndics, Geary orders the fleet to the Sancere\nsystem where they engage in combat, which takes its toll on the officers\nand crew of the Alliance, prompting a mutiny that divides them--and makes\nthem an easy target. Original.\"\r\n7631,8136,820956,Sara Donati,Dawn on a Distant Shore,https://images.gr-assets.com/books/1403186902l/820956.jpg,4.19,11461,\"romance, fiction\",\"Settler Elizabeth Bonner must cross the frozen wilderness of New York State\nin the winter of 1794 in a desperate bid to save her husband from being\nhanged as an American spy, in the exciting sequel to Into the Wilderness.\nReprint.\"\r\n7632,8138,27864391,David Ebershoff,The Danish Girl,https://images.gr-assets.com/books/1451790312l/27864391.jpg,3.74,8292,\"fiction, romance\",\"Set in decadent 1920s Copenhagen, this tender tale of love and marriage in\nthe midst of fundamental crisis introduces a man who discovers he's a woman\nand the woman who will do anything for him. Original.\"\r\n7633,8140,5481,Aldous Huxley,Brave New World Revisited ,https://images.gr-assets.com/books/1410136964l/5481.jpg,3.93,11073,\"classics, fiction\",\"When the novel Brave New World first appeared in 1932, its shocking\nanalysis of a scientific dictatorship seemed a projection into the remote\nfuture. Here, in one of the most important and fascinating books of his\ncareer, Aldous Huxley uses his tremendous knowledge of human relations to\ncompare the modern-day world with his prophetic fantasy. He scrutinizes\nthreats to humanity, such as overpopulation, propaganda, and chemical\npersuasion, and explains why we have found it virtually impossible to avoid\nthem. Brave New World Revisited is a trenchant plea that humankind should\neducate itself for freedom before it is too late.\"\r\n7634,8141,40483,\"Pauline Réage, Sabine d'Estree\",Histoire d'O,https://images.gr-assets.com/books/1464369941l/40483.jpg,3.34,10922,\"fiction, classics\",\"\"\" ... j'étais persuadé qu'Histoire d'O allait révolutionner la librairie,\nque j'allais en vendre des centaines de milliers d'exemplaires dans tous\nles pays, et que les mentalités allaient changer d'un seul coup. L'audace\nde ce livre me paraissait plus libératrice que provocante. J'y sentais un\nferment de liberté qui me paraissait prometteur. J'attendais un choc. \"\"\nJean-Jacques Pauvert, extrait de son Introduction. Lorsque Histoire d'O est\npublié pour la première fois à Paris en 1954 par Jean-Jacques Pauvert, le\nroman échappe de peu à la censure du Ministère de l'Intérieur et devient\ntrès rapidement l'un des romans français les plus traduits dans le monde.\nIl narre, dans une langue aussi insolente qu'élégante, les expériences\nd'une jeune femme au moment où elle s'apprête à pénétrer de soit plein gré\ndans le ténébreux dédale des pratiques sexuelles perverties d'une société\nsecrète de débauchés. Se complaisant dans le plus pur fantasme, ce roman a\npour thème central l'abandon, sous le couvert de l'amour, à tous les excès\ndu sadisme et du masochisme, ainsi que le lien de la \"\" propriété \"\".\nAujourd'hui, Doris Kloster. photographe spécialisée dans les thèmes de la\nsexualité féminine et de la domination, réalise un très vieux rêve : donner\ndu plus controversé et du plus célèbre roman érotique jamais publié une\nreprésentation visuelle. Le résultat n'est pas moins sensationnel :\nL'Histoire d'O Illustrée donne à voir plus de cinquante superbes images,\nreflétant à la perfection l'érotisme torride du roman. En \"\" tournant \"\"\nentièrement à Paris et dans ses environs, Doris Kloster a réussi à\nretrouver les personnages, décors, costumes et accessoires originels. Et\nchacune de ces magnifiques photos couleur est accompagnée d'un bref extrait\ndu roman. A ceci s'ajoute, en plus de la préface de Doris Kloster, une\nintroduction de Jean-Jacques Pauvert, l'éditeur original du roman.\nL'Histoire d'O Illustrée offre un authentique festin visuel, qui ravira les\nfans de l'œuvre de Doris Kloster et séduira les amateurs éclairés de la\nplus occulte sexualité. Un futur classique, et dores et déjà un collector\npour tout bibliophile.\"\r\n7635,8142,45106,Robin Hobb,Forest Mage,https://images.gr-assets.com/books/1446012746l/45106.jpg,3.35,11953,\"fantasy, fiction\",\"Plague has ravaged the prestigious King's Cavalla of Gernia, decimating the\nranks of both cadets and instructors. Yet Nevare Burvelle has made an\nastonishingly robust recovery, defeating his sworn nemesis while in the\nthroes of the disease and freeing himself—he believes—from the Speck magic\nthat infected him. And now he is journeying home to Widevale, anticipating\na tender reunion with his beautiful fiancée, Carsina, and a bright future\nas a commissioned officer. But there is no haven in the bosom of his\nkinfolk, for his nights are haunted by grim visions of treachery—and his\ndays are tormented by a strange side-effect of the plague that shames his\nfamily and repulses the lady of his heart. And as the still-potent magic in\nhis blood roars to life, Nevare realizes a terrible truth: that the enemy\nwho seeks to destroy everything he loves dwells perhaps not without but\nwithin him.\"\r\n7636,8143,425124,Dennis Lehane,Sacred,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435786018l/425124._SY475_.jpg,3.94,12247,\"mystery, fiction\",SacredDennis Lehane\r\n7637,8144,18799585,Kendra Elliot,Hidden ,https://images.gr-assets.com/books/1386936783l/18799585.jpg,3.98,8758,\"mystery, romance\",\"\"\"Eleven years ago, the Co-ed Slayer murdered nine female students on the\nOregon State University campus. Lacey Campbell barely escaped his attack,\nbut lost her best friend whose remains were never found. As the sole\nsurviving victim, Lacey helped send the sadistic serial killer to prison\nfor life. Now a forensic odontologist examining teeth and bones for the\nstate Medical Examiner, Lacey is devastated when she arrives at a crime\nscene and identifies the skeletal remains as her college friend. The\nremainsare discovered on the land of ex-cop Jack Harper. Sparks fly between\nhim and Lacey, even as they realize that the prosecution's witnesses from a\ndecade ago are now being murdered one by one. All the evidence points to\nthe Co-ed Slayer as the culprit, only, he's long since dead. So who's the\nnew killer? And is Lacey next in line to die? Golden Heart finalist Kendra\nElliot combines chilling suspense and steamy romance in a gripping tale,\nuniting in-depth forensic knowledge with a passion for thrillers. Setin the\nsnowy winter of Oregon, Hidden creates spine-tingling chills--\"\r\n7638,8145,29104680,Penelope Douglas,Punk 57,https://images.gr-assets.com/books/1466189204l/29104680.jpg,4.22,12748,\"romance, contemporary\",\"From New York Times Bestselling Author, Penelope Douglas, comes the latest\nstandalone love-hate romance... \"\"We were perfect together. Until we met.\"\"\nMisha I can't help but smile at the lyrics in her letter. She misses me. In\nfifth grade, my teacher set us up with pen pals from a different school.\nThinking I was a girl, with a name like Misha, the other teacher paired me\nup with her student, Ryen. My teacher, believing Ryen was a boy like me,\nagreed. It didn't take long for us to figure out the mistake. And in no\ntime at all, we were arguing about everything. The best take-out pizza.\nAndroid vs. iPhone. Whether or not Eminem is the greatest rapper ever...\nAnd that was the start. For the next seven years, it was us. Her letters\nare always on black paper with silver writing. Sometimes there's one a week\nor three in a day, but I need them. She's the only one who keeps me on\ntrack, talks me down, and accepts everything I am. We only had three rules.\nNo social media, no phone numbers, no pictures. We had a good thing going.\nWhy ruin it? Until I run across a photo of a girl online. Name's Ryen,\nloves Gallo's pizza, and worships her iPhone. What are the chances? F*ck\nit. I need to meet her. I just don't expect to hate what I find. Ryen He\nhasn't written in three months. Something's wrong. Did he die? Get\narrested? Knowing Misha, neither would be a stretch. Without him around,\nI'm going crazy. I need to know someone is listening. It's my own fault. I\nshould've gotten his phone number or picture or something. He could be gone\nforever. Or right under my nose, and I wouldn't even know it. *Punk 57 is a\nstand alone New Adult romance. It is suitable for ages 18+.\"\r\n7639,8146,337623,Jack Higgins,Eye of the Storm,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390941227l/337623.jpg,3.96,11724,\"thriller, fiction\",\"Elusive master terrorist Sean Dillon reemerges during the Gulf War when\nSaddam Hussein hires him to assassinate Margaret Thatcher, and only Martin\nBrosnan can stop him. 225,000 first printing. $150,000 ad/promo. BOMC Feat\nAlt. Reader's Digest Cond Bks.\"\r\n7640,8147,17835351,Sean Patrick,Nikola Tesla: Imagination and the Man That Invented the 20th Century,https://images.gr-assets.com/books/1366561721l/17835351.jpg,3.79,13584,\"biography, history\",\"Coleção Melhoria Contínua O objetivo da coleção é oferecer aos\nprofissionais e estudantes conceitos e práticas nas mais eficazes\nmetodologias e ferramentas usadas por empresas privadas e públicas para\ngestão de processos e resultados, com foco na melhoria contínua. Livros da\nColeção: 1. Introdução ao Lean Seis Sigma. 2. DMAIC – Definir e Medir. 3.\nDMAIC – Implantar, Analisar e Controlar. 4. O Black Belt em Lean Seis Sigma\n– Ferramentas avançadas. 5. Lean Thinking. 6. 5S. 7. Lean Service. 8. TRIZ\n– Teoria da Solução Inventiva de Problemas.\"\r\n7641,8148,23221,Meg Cabot,How to Be Popular,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385321684l/23221.jpg,3.54,18568,\"romance, contemporary\",\"Sixteen-year-old Steph Landry finds an old book on how to be popular and\ndecides to change her social status by following its advice, much to the\nbafflement of her two best friends.\"\r\n7642,8149,7707,\"George Bernard Shaw, Alan Jay Lerner\",Pygmalion and My Fair Lady (50th Anniversary Edition) (Signet Classics (Paperback)),https://images.gr-assets.com/books/1327891970l/7707.jpg,4.24,13318,\"classics, fiction\",\"Pygmalion and My Fair Lady (50th Anniversary Edition) (Signet Classics (Paperback))George Bernard Shaw, Alan Jay Lerner\"\r\n7643,8150,22028,Mario Puzo,Omertà,https://images.gr-assets.com/books/1327867034l/22028.jpg,3.68,10538,\"fiction, crime\",\"In a darkly comic novel by the author of The Godfather, Don Raymonde\nAprile, now retired, and FBI agent Kurt Cilke, engage in one last war with\nthe distinctions between \"\"good guys\"\" and \"\"bad guys\"\" getting lost in the\nshuffle. Reprint.\"\r\n7644,8151,12157365,Elizabeth Norris,Unraveling,https://images.gr-assets.com/books/1337474732l/12157365.jpg,3.84,16361,\"paranormal, romance\",UnravelingElizabeth Norris\r\n7645,8152,265264,Richard Bach,One,https://images.gr-assets.com/books/1356137029l/265264.jpg,3.94,9349,\"fiction, philosophy\",\"In his latest novel One, phenomenally bestselling author Richard Bach asks\nthe questions--what if we could meet the people we are destined to be in\ntwenty years? What if we could confront the people we were in the past, and\nthose we are right now in parallel lifetimes, in alternate worlds?\"\r\n7646,8153,37187,Kate DiCamillo,The Tiger Rising,https://images.gr-assets.com/books/1479692331l/37187.jpg,3.78,14832,\"fiction, fantasy\",The Tiger RisingKate DiCamillo\r\n7647,8154,28734,Mercedes Lackey,Magic's Price,https://images.gr-assets.com/books/1478489331l/28734.jpg,4.26,17108,\"fantasy, fiction\",\"Vanyel, the powerful Herald-Mage, stands alone in the battle against the\nevil forces threatening the once-peaceful kingdom of Valdemar, accompanied\nonly by his companion, Yfandes\"\r\n7648,8156,527744,Agatha Christie,After the Funeral ,https://images.gr-assets.com/books/1384881992l/527744.jpg,3.84,13569,\"mystery, crime\",\"When Cora Lansquenet is savagely murdered with a hatchet, the extraordinary\nremark she made the previous day at her brother Richard’s funeral suddenly\ntakes on a chilling significance. At the reading of Richard’s will, Cora\nwas clearly heard to say, “It’s been hushed up very nicely, hasn’t it.… But\nhe was murdered, wasn’t he?” In desperation, the family solicitor turns to\nHercule Poirot to unravel the mystery.…\"\r\n7649,8158,13614,\"Tsugumi Ohba, Takeshi Obata\",デスノート #8 (Desu Nōto) Mato (的),https://images.gr-assets.com/books/1487897453l/13614.jpg,4.27,14494,\"comics, fantasy\",\"Target: Light--working as Kira, the newest member of the NPA intelligence\nbureau, and L--has nearly succeeded in creating his ideal world. But the\nyears of uncontested victory have made him complacent, and he is unprepared\nfor a new attack close to home. With his younger sister Sayu kidnapped and\nthe NPA's Death Note demanded as ransom, Light must travel across the world\nand confront two new adversaries, each with a very different agenda. Will\nLight's quick wits be a match for this new challenge, or will he be forced\nto choose between Kira's ambitions and his own family's lives?\"\r\n7650,8160,12617,\"Noam Chomsky, Edward S. Herman\",Manufacturing Consent: The Political Economy of the Mass Media,https://images.gr-assets.com/books/1222383663l/12617.jpg,4.22,10301,\"nonfiction, history\",\"Examines the political role played by the media in shaping events, assesses\nthe relationship between the media and the corporations that control and\nfinance them, and discusses the fine distinctions between news and\npropaganda.\"\r\n7651,8161,19307,\"Astrid Lindgren, Gerry Bothmer\",Pippi Långstrump i Söderhavet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348636160l/19307.jpg,4.1,13911,\"fiction, classics\",\"The adventures of the strongest girl in the world, who takes her two\nfriends with her when she travels from Sweden to visit her father, king of\nan island in the South Seas.\"\r\n7652,8163,40471,Cormac McCarthy,Outer Dark,https://images.gr-assets.com/books/1356452527l/40471.jpg,3.88,9172,\"fiction, horror\",\"A man tells his sister that the child she bore him is dead, but learning it\nis alive, she searches the woods for her lost son\"\r\n7653,8164,16175040,Kresley Cole,Endless Knight ,https://images.gr-assets.com/books/1369329231l/16175040.jpg,4.39,14677,\"fantasy, paranormal\",\"\"\"Evie has fully come into her powers as the tarot Empress. As one of\ntwenty-two teens given powers following the apocalypse, she knows a war is\nbrewing, and it's kill or be killed\"\"--\"\r\n7654,8165,40992,Gene Wolfe,Shadow & Claw,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180510l/40992.jpg,4.04,11282,\"fantasy, fiction\",\"The Book of the New Sun is unanimously acclaimed as Gene Wolfe's most\nremarkable work, hailed as \"\"a masterpiece of science fantasy comparable in\nimportance to the major works of Tolkien and Lewis\"\" by Publishers Weekly.\nShadow & Claw brings together the first two books of the tetralogy in one\nvolume: The Shadow of the Torturer is the tale of young Severian, an\napprentice in the Guild of Torturers on the world called Urth, exiled for\ncommitting the ultimate sin of his profession -- showing mercy toward his\nvictim. Ursula K. Le Guin said, \"\"Magic stuff . . . a masterpiece . . . the\nbest science fiction I've read in years!\"\" The Claw of the Conciliator\ncontinues the saga of Severian, banished from his home, as he undertakes a\nmythic quest to discover the awesome power of an ancient relic, and learn\nthe truth about his hidden destiny. \"\"One of the most ambitious works of\nspeculative fiction in the twentieth century.\"\" -- The Magazine of Fantasy\nand Science Fiction\"\r\n7655,8166,23503361,Julia Pierpont,Parmi les dix milliers de choses,https://images.gr-assets.com/books/1464907467l/23503361.jpg,2.84,8458,\"fiction, contemporary\",Parmi les dix milliers de chosesJulia Pierpont\r\n7656,8167,10878,Hunter S. Thompson,The Great Shark Hunt: Strange Tales from a Strange Time,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402149917l/10878.jpg,4.07,9953,\"history, biography\",\"Brings together a selection of the legendary American journalist's articles\non subjects ranging from the Super Bowl to Watergate, from Hemingway to\nBrando, and from sharks to drugs.\"\r\n7657,8168,47730,\"Anne Sexton, Maxine Kumin\",The Complete Poems: Anne Sexton,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425271044l/47730.jpg,4.28,11888,\"poetry, classics\",\"From the joy and anguish of her own experience, Sexton fashioned poems that\ntold truths about the inner lives of men and women. This book comprises\nSexton's ten volumes of verse, including the Pulitzer Prize-winner Live or\nDie, as well as seven poems form her last years.\"\r\n7658,8169,11830394,Kim Stanley Robinson,2312,https://images.gr-assets.com/books/1405778758l/11830394.jpg,3.43,10042,\"fiction, fantasy\",\"Winner of the Nebula Award for Best SF Novel of the Year The year is 2312.\nScientific and technological advances have opened gateways to an\nextraordinary future. Earth is no longer humanity's only home; new habitats\nhave been created throughout the solar system on moons, planets, and in\nbetween. But in this year, 2312, a sequence of events will force humanity\nto confront its past, its present, and its future. The first event takes\nplace on Mercury, on the city of Terminator, itself a miracle of\nengineering on an unprecedented scale. It is an unexpected death, but one\nthat might have been foreseen. For Swan Er Hong, it is an event that will\nchange her life. Swan was once a woman who designed worlds. Now she will be\nled into a plot to destroy them.\"\r\n7659,8170,119838,Sharon M. Draper,Tears of a Tiger,https://images.gr-assets.com/books/1348102787l/119838.jpg,4.16,11266,\"fiction, contemporary\",Tears of a TigerSharon M. Draper\r\n7660,8171,6287290,James Rollins,Altar of Eden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347551027l/6287290.jpg,4.01,12250,\"thriller, fiction\",\"Baghdad falls . . . and armed men are seen looting the city zoo. Amid a\nhail of bullets, a concealed underground lab is ransacked—and something\nhorrific is set loose upon the world. Seven years later, Louisiana state\nveterinarian Lorna Polk investigates an abandoned shipwrecked fishing\ntrawler carrying exotic caged animals, part of a black market smuggling\nring. But there is something disturbingly wrong with these beasts—each an\nunsettling mutation of the natural order, all sharing one uncanny trait:\nincredibly heightened intelligence. Joining forces with U.S. Border Patrol\nAgent Jack Menard—a man who shares with her a dark and bloody past—Lorna\nsets out to uncover the truth about this strange cargo and the terrorist\nthreat it poses. Because a beast escaped the shipwreck and is running\namok—and what is about to be born upon the altar of Eden could threaten not\nonly the future of the world but the very foundation of what it means to be\nhuman.\"\r\n7661,8172,1011359,Bisco Hatori,桜蘭高校ホスト部 2,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199687l/1011359.jpg,4.46,14350,\"manga, romance\",桜蘭高校ホスト部 2Bisco Hatori\r\n7662,8173,176326,\"Michael Buckley, Peter Ferguson\",The Problem Child,https://images.gr-assets.com/books/1349015533l/176326.jpg,4.27,15353,\"fantasy, mystery\",\"The Problem ChildMichael Buckley, Peter Ferguson\"\r\n7663,8174,1206073,David Hackett Fischer,Washington's Crossing,https://images.gr-assets.com/books/1353284022l/1206073.jpg,4.11,10445,\"history, nonfiction\",Washington's CrossingDavid Hackett Fischer\r\n7664,8175,4830,Salman Rushdie,Shalimar the Clown,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388809435l/4830.jpg,3.86,10396,\"fiction, contemporary\",\"In 1991, Ambassador Maximilian Ophuls--ex-ambassador to India, and\nAmerica's counterterrorism chief--is murdered on the Los Angeles doorstep\nof his illegitimate daughter's home by his Kashmiri Muslim driver, who\ncalls himself Shalimar the Clown.\"\r\n7665,8176,8745,\"Waris Dirie, Cathleen Miller\",Desert Flower: The Extraordinary Journey of a Desert Nomad,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439762656l/8745._SY475_.jpg,4.09,9609,\"biography, memoir\",\"Waris Dirie ran away from her oppressive life in the African desert when\nshe was barely in her teens, illiterate and impoverished, with nothing to\nher name but a tattered shawl. She traveled alone across the dangerous\nSomali desert to Mogadishu—the first leg of a remarkable journey that would\ntake her to London, where she worked as a house servant; then to nearly\nevery corner of the globe as an internationally renowned fashion model; and\nultimately to New York City, where she became a human rights ambassador for\nthe U.N. Desert Flower is her extraordinary story.\"\r\n7666,8177,615921,Eric S. Nylund,First Strike,https://images.gr-assets.com/books/1320418133l/615921.jpg,4.12,9670,\"fiction, fantasy\",\"The Covenant shows no mercy as they continue to assault every human world\nthey can find, but Spartan 117, the Master Chief, has discovered an ancient\nsecret that could alter the course of the war and save the Earth.\"\r\n7667,8178,16117182,Natasha Preston,Broken Silence,https://images.gr-assets.com/books/1388207146l/16117182.jpg,4.14,8280,\"romance, contemporary\",\"It has been four years since Oakley, her mum, and brother fled to\nAustralia. With the trials looming, she makes the decision to return to\nEngland. Oakley is desperate for closure so she can put the past behind her\nand move on with her life. How will she cope when she comes face to face\nwith the two people that hurt her the most, and the one person that she\nhurt the most? Her love for Cole never faded, but how will he react to her\nreturn after so long? Will they be able to put everything behind them in\norder to have a happy ending?\"\r\n7668,8179,4076,\"Tom Peters, Robert H. Waterman Jr.\",In Search of Excellence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388304029l/4076.jpg,3.91,9469,\"business, nonfiction\",\"The \"\"Greatest Business Book of All Time\"\" (Bloomsbury UK), In Search of\nExcellence has long been a must-have for the boardroom, business school,\nand bedside table. Based on a study of forty-three of America's best-run\ncompanies from a diverse array of business sectors, In Search of Excellence\ndescribes eight basic principles of management -- action-stimulating,\npeople-oriented, profit-maximizing practices -- that made these\norganizations successful. Joining the HarperBusiness Essentials series,\nthis phenomenal bestseller features a new Authors' Note, and reintroduces\nthese vital principles in an accessible and practical way for today's\nmanagement reader.\"\r\n7669,8180,17899392,\"James Patterson, Emily Raymond\",First Love,https://images.gr-assets.com/books/1408925704l/17899392.jpg,3.76,9890,\"romance, fiction\",\"First LoveJames Patterson, Emily Raymond\"\r\n7670,8181,107029,\"Bill Finger, Gardner F. Fox, Bob Kane, Jerry Robinson, Sheldon Moldoff\",Batman Chronicles: Volume 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285873l/107029.jpg,3.99,9593,\"comics, fiction\",\"Collects the earliest adventures of Batman and Robin as they battle a\nvariety of villains including the Monk and the Joker.\"\r\n7671,8183,7879278,Lisa Tawn Bergren,Waterfall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429307722l/7879278.jpg,4.04,15884,\"fantasy, romance\",\"\"\"Maybe most American teens would love a Mediterranean vacation, but the\nBentarrini sisters are stuck in Italy every summer with their archaeologist\nparents! Young Gabi is bored out of her mind . . . until she's swept into\nthe 14th century and a whole newworld filled with knights, horses, armor,\nswords, and great-looking Italian guys!\"\"--Provided by publisher.\"\r\n7672,8184,20890479,Rachel Joyce,The Love Song of Miss Queenie Hennessy,https://images.gr-assets.com/books/1403202599l/20890479.jpg,4.04,10730,\"fiction, contemporary\",The Love Song of Miss Queenie HennessyRachel Joyce\r\n7673,8185,15559,Terry Brooks,Morgawr ,https://images.gr-assets.com/books/1341521219l/15559.jpg,3.96,12797,\"fantasy, fiction\",\"Shocking revelations challenge the beliefs of the Druids and their comrades\nas they continue to battle the unspeakable forces of darkness that threaten\nto engulf them.\"\r\n7674,8186,116053,Rosamunde Pilcher,September,https://images.gr-assets.com/books/1420776195l/116053.jpg,4.12,12412,\"fiction, romance\",SeptemberRosamunde Pilcher\r\n7675,8187,4808763,\"Isaac Asimov, Bob E. Flick, Jim Gallant\",The Last Question (When the World Ends),https://images.gr-assets.com/books/1274107046l/4808763.jpg,4.58,11762,\"fiction, classics\",\"The Last Question (When the World Ends)Isaac Asimov, Bob E. Flick, Jim Gallant\"\r\n7676,8188,52783,\"Saul Bellow, Luciano Bianciardi\",Henderson the Rain King,https://images.gr-assets.com/books/1297116277l/52783.jpg,3.79,11226,\"fiction, classics\",\"A middle-age American millionaire goes to Africa in search of a more\nmeaningful life and receives the adoration of an African tribe that\nbelieves he has a gift for rainmaking.\"\r\n7677,8189,9654,Erica Jong,Fear of Flying,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190180l/9654.jpg,3.44,13061,\"fiction, classics\",\"This ground-breaking novel of self-discovery, freedom, and womanhood\nrecords the erotic fantasies and outrageous adventures of Isadora Wing who\ntravels constantly in spite of her phobia of flight, accompanied by a new\nintroduction by the author. Reprint\"\r\n7678,8190,9349915,\"Sarah Blakley-Cartwright, David Leslie Johnson, Catherine Hardwicke\",Red Riding Hood,https://images.gr-assets.com/books/1344267754l/9349915.jpg,3.51,14220,\"fantasy, romance\",\"Valerie's sister was beautiful, kind, and sweet. Now she is dead. Henri,\nthe handsome son of the blacksmith, tries to console Valerie, but her wild\nheart beats fast for another: the outcast woodcutter, Peter, who offers\nValerie another life far from home. After her sister's violent death,\nValerie's world begins to spiral out of control. For generations, the\nwerewolf has been kept at bay with a monthly sacrifice. But no one is safe.\nWhen an expert wolf hunter arrives, the villagers learn that the creature\nlives among them - it could be anyone in town. It soon becomes clear that\nValerie is the only one who can hear the voice of creature. The Wolf says\nshe must surrender herself before the Blood Moon wanes . . . or everyone\nshe loves will die. This is a dangerous new vision of a classic fairy tale,\nand for readers who want even more of Valerie's riveting story, a bonus\nchapter that extends the drama is available at\nhttp://www.redridinghoodbook.com/.\"\r\n7679,8191,4765642,Rashmi Bansal,Stay Hungry Stay Foolish,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236261939l/4765642.jpg,3.62,8598,\"business, biography\",Stay Hungry Stay FoolishRashmi Bansal\r\n7680,8192,6694,\"Roald Dahl, Quentin Blake\",The Giraffe and the Pelly and Me,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165604309l/6694._SX318_.jpg,3.8,14180,\"fiction, fantasy\",\"While Billy and the Ladderless Window-Cleaning Company are cleaning the\nwindows of the Duke of Hampshire's estate, they spot the Cobra, the most\ndangerous cat-burglar in the world, stealing the Duchess's diamonds.\"\r\n7681,8193,17934521,Nickolas Butler,Shotgun Lovesongs,https://images.gr-assets.com/books/1396818566l/17934521.jpg,3.78,9878,\"fiction, contemporary\",Shotgun LovesongsNickolas Butler\r\n7682,8194,671724,Conn Iggulden,\"The Death of Kings (Emperor, #2)\",https://images.gr-assets.com/books/1320470253l/671724.jpg,4.25,10633,\"fiction, history\",\"Brilliant…stunning,” raved the Los Angeles Times about Conn Iggulden’s\nfirst novel, Emperor: The Gates of Rome. “Iggulden is a grand storyteller,”\ndeclared USA Today. Now Iggulden returns to the landscape of ancient Rome\nand the life of Julius Caesar in a new novel filled with all the sumptuous\nstorytelling that distinguished his first book. Sweeping from the\nwindswept, pirate-ruled seas to the stifling heat of the Roman senate,\nIggulden takes us further down the path to glory as Julius Caesar comes\ninto his own as a man, warrior, senator, husband, leader. In a sweltering,\nsparsely settled region of North Africa, a band of disheveled soldiers turn\ntheir eyes toward one man among them. Ragged, dirty, and half starved, the\nmen will follow their leader into the mad, glorious fight for honor and\nrevenge that only he wants to fight. Their leader is named Julius Caesar.\nThe soldiers are Roman legionaries. And their quarry is a band of pirates\nwho made the mistake of seizing Julius Caesar—and holding him for ransom.\nNow, to get his revenge, Caesar will turn peasants into soldiers, building\na shipborne fighting force that will not only decimate a pirate fleet but\nwill dominate the Mediterranean, earning him the coveted title Military\nTribune of Rome. While Caesar builds a legend far from Rome, his friend\nGaius Brutus is fighting battles of another sort, rising to power in the\nwake of the shocking assassination of a dictator. Once Brutus and Caesar\nwere as close as brothers, both devoted to the same ideals and attracted to\nthe same forbidden woman. Now, when Caesar returns—with the winds of glory\nat his back—they will find themselves at odds. For each has built an army\nof elite warriors—Caesar’s forged in far-flung battles, Brutus’ from Rome’s\npolitical killing fields. But in an era when men die for their treachery\nand their allegiances, the two men will soon be united by a shock wave from\nthe north. There, a gladiator named Spartacus is gathering strength,\nbuilding an army of seventy thousand desperate slaves—to fight a\ncataclysmic battle against Rome itself. Filled with unforgettable\nimages—from the death throes of a king to the birth of Caesar’s child, from\nthe bloody battlefields of Greece to the silent passion of lovers—Emperor:\nThe Death of Kings is an astounding work, a stunning blend of vibrant\nhistory and thrilling fiction. From the Hardcover edition.\"\r\n7683,8195,106882,Mireille Guiliano,French Women Don't Get Fat,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171567893l/106882._SX318_.jpg,3.48,10584,\"nonfiction, cookbooks\",\"A gourmand's guide to the slim life shares the principles of French\ngastronomy, the art of enjoying all edibles in proportion, arguing that the\nsecret of being thin and happy lies in the ability to appreciate and\nbalance pleasures, not in deprivation, in a guide that includes\ninspirational true-life stories, simple advice, and dozens of delectable\nrecipes. Reprint. 175,000 first printing.\"\r\n7684,8196,289601,Laura Whitcomb,A Certain Slant of Light,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441806268l/289601._SY475_.jpg,3.83,16769,\"paranormal, fantasy\",A Certain Slant of LightLaura Whitcomb\r\n7685,8197,493455,Scott Westerfeld,\"The Uglies Trilogy (Uglies, #1-3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255574775l/493455.jpg,4.06,13405,\"fantasy, fiction\",\"A fresh repackaging of the bestselling Uglies boks...the series that\nstarted the whole dystopian trend!\"\r\n7686,8198,22693231,Greg Iles,The Bone Tree,https://images.gr-assets.com/books/1421259645l/22693231.jpg,4.18,8055,\"fiction, mystery\",The Bone TreeGreg Iles\r\n7687,8199,78971,Jeffrey Archer,False Impression,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429040577l/78971.jpg,3.67,10338,\"fiction, thriller\",False ImpressionJeffrey Archer\r\n7688,8200,13105527,\"pleasefindthis, Iain S. Thomas, Jon Ellis\",I Wrote This For You,https://images.gr-assets.com/books/1413756174l/13105527.jpg,4.17,11533,\"poetry, romance\",\"Pleasefindthis is the joint work of poet Iain S. Thomas and photographer\nJon Ellis.\"\r\n7689,8201,56913,\"Ina Garten, Quentin Bacon\",Barefoot in Paris,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185491l/56913.jpg,4.19,11128,\"cookbooks, nonfiction\",\"The author of The Barefoot Contessa Cookbook applies her talent for\ncreating simple but sophisticated dishes to the culinary delights of\nFrance, using fresh, quality ingredients to concoct delicious new twists on\ntraditional French favorites, including Steak au Poivre, Creme Brule, and\nother tasty dishes. 250,0000 first printing.\"\r\n7690,8203,347577,Louise Rennison,...and that's when it fell off in my hand,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1312508902l/347577.jpg,4.06,14351,\"fiction, romance\",\"Follow Georgia's hilarious antics as she desperately muddles her way\nthrough teenage life and all that it entails - make-up disasters, rapidly\nexpanding nunga nungas, school, friends, highly embarrassing family and of\ncourse, boys.\"\r\n7691,8204,16056862,Natasha Anders,The Unwanted Wife,https://images.gr-assets.com/books/1349084566l/16056862.jpg,3.94,17458,\"romance, contemporary\",The Unwanted WifeNatasha Anders\r\n7692,8205,29991719,Emma Chase,Royally Screwed,https://images.gr-assets.com/books/1463068765l/29991719.jpg,4.11,15906,\"romance, contemporary\",\"Nicholas Arthur Frederick Edward Pembrook, Crowned Prince of Wessco, aka\n“His Royal Hotness,” is wickedly charming, devastatingly handsome, and\nunabashedly arrogant—hard not to be when people are constantly bowing down\nto you. Then, one snowy night in Manhattan, the prince meets a dark haired\nbeauty who doesn’t bow down. Instead, she throws a pie in his face.\nNicholas wants to find out if she tastes as good as her pie, and this heir\napparent is used to getting what he wants. Dating a prince isn’t what\nwaitress Olivia Hammond ever imagined it would be. There’s a disapproving\nqueen, a wildly inappropriate spare heir, relentless paparazzi, and brutal\npublic scrutiny. While they’ve traded in horse drawn carriages for Rolls\nRoyces and haven’t chopped anyone’s head off lately—the royals are far from\naccepting of this commoner. But to Olivia—Nicholas is worth it. Nicholas\ngrew up with the whole world watching, and now Marriage Watch is in full\nforce. In the end, Nicholas has to decide who he is and, more importantly,\nwho he wants to be: a King... or the man who gets to love Olivia forever.\"\r\n7693,8206,6239873,Anna Godbersen,Splendor,https://images.gr-assets.com/books/1295983771l/6239873.jpg,3.84,16276,\"romance, fiction\",SplendorAnna Godbersen\r\n7694,8207,31175,Charlotte Brontë,The Professor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1220194504l/31175.jpg,3.56,12140,\"fiction, classics\",The ProfessorCharlotte Brontë\r\n7695,8208,9815702,Chloe Neill,\"Drink Deep (Chicagoland Vampires, #5)\",https://images.gr-assets.com/books/1296789716l/9815702.jpg,4.12,21860,\"paranormal, fantasy\",\"Drink Deep (Chicagoland Vampires, #5)Chloe Neill\"\r\n7696,8209,4653511,غسان كنفاني,رجال في الشمس,https://images.gr-assets.com/books/1321707850l/4653511.jpg,4.16,10016,\"fiction, classics\",\"This collection of important stories by novelist, journalist, teacher and\nPalestinina activist Ghassan Kanafani includes 'Men in the Sun,' the basis\nof the film 'The Deceived.' Also in the volume are 'The Land of Sad\nOranges', 'If You Were A Horse', 'The Falcon' and 'Letter from Gaza.'\"\r\n7697,8210,132391,\"Hans Christian Andersen, Lisbeth Zwerger, Anthea Bell\",Den lille havfrue,https://images.gr-assets.com/books/1309204955l/132391.jpg,4.02,14361,\"classics, fantasy\",\"Den lille havfrueHans Christian Andersen, Lisbeth Zwerger, Anthea Bell\"\r\n7698,8211,207687,Meg Cabot,\"Big Boned (Heather Wells, #3)\",https://images.gr-assets.com/books/1496810737l/207687.jpg,3.84,17672,\"mystery, romance\",\"Life is reasonably rosy for plus-size ex-pop star turned Assistant\nDormitory Director and sometime sleuth Heather Wells. Her freeloading ex-\ncon dad is finally moving out. She still yearns for her hot landlord,\nCooper Cartwright, but her relationship with \"\"rebound beau,\"\" vigorous vegan\nmath professor Tad Tocco, is more than satisfactory. Best of all, nobody\nhas died lately in \"\"Death Dorm,\"\" the aptly nicknamed student residence that\nHeather assistant-directs. Of course every silver lining ultimately has\nsome black cloud attached. And when the latest murdered corpse to clutter\nup her jurisdiction turns out to be her exceedingly unlovable boss, Heather\nfinds herself on the shortlist of prime suspects—along with the rabble-\nrousing boyfriend of her high-strung student assistant and an indecently\nhandsome young campus minister who's been accused of taking liberties with\ncertain girls' choir members. With fame beckoning her back into show\nbusiness (as the star of a new kids' show!) it's a really bad time to get\nwrapped up in another homicide. Plus Tad's been working himself up to ask\nher a Big Question, which Heather's not sure she has an answer for . . .\"\r\n7699,8212,330760,Jack Kerouac,The Subterraneans,https://images.gr-assets.com/books/1428958819l/330760.jpg,3.68,10325,\"fiction, classics\",\"Written over the course of three days and three nights, The Subterraneans\nwas generated out of the same kind of ecstatic flash of inspiration that\nproduced another one of Kerouac's early classics, On The Road. Centering\naround the tempestuous breakup of Leo Percepied and Mardou Fox--two\ndenizens of the 1950s San Francisco underground--The Subterraneans is a\ntale of dark alleys and smoky rooms, of artists, visionaries, and\nadventurers existing outside mainstream America's field of vision.\"\r\n7700,8213,181400,\"Angela Elwell Hunt, Tim Jonke\",The Tale of Three Trees: A Traditional Folktale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442446987l/181400._SX318_.jpg,4.52,13226,\"christian, fiction\",\"Three trees that dream of greatness are surprised by the way their dreams\ncome true. On board pages.\"\r\n7701,8214,419103,Frank Miller,Sin City: The Big Fat Kill,https://images.gr-assets.com/books/1470924869l/419103.jpg,4.1,12625,\"comics, fiction\",\"Graphic novels offer a collection of intertwined stories stemming from\ncorruption, revenge, and the criminal underworld in a city so brutal it is\nknown as \"\"The Town Without Pity.\"\"\"\r\n7702,8215,16341,Agatha Christie,The Moving Finger,https://images.gr-assets.com/books/1396227246l/16341.jpg,3.84,15142,\"mystery, fiction\",The Moving FingerAgatha Christie\r\n7703,8216,392217,Patricia Cornwell,Hornet's Nest,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388461967l/392217.jpg,3.28,12973,\"mystery, fiction\",Hornet's NestPatricia Cornwell\r\n7704,8217,126066,\"John Eldredge, Brent Curtis\",The Sacred Romance Drawing Closer To The Heart Of God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441807205l/126066._SY475_.jpg,4,9882,\"christian, spirituality\",\"Without being preachy or cliche, the authors offer a glimpse of God's heart\nthat is tender, risky, and compelling. The Sacred Romance strikes a chord\nin us because more than in any other age, we have lost touch with our\nhearts. We have left that essential part of ourselves behind in the pursuit\nof efficiency, success, even Christian service. If you long for something\nmore, even if you don't know what the something is, then open this profound\nbook.\"\r\n7705,8218,236056,Louis Sachar,There's a Boy in the Girls' Bathroom,https://images.gr-assets.com/books/1346870062l/236056.jpg,3.95,12732,\"fiction, contemporary\",\"An unmanageable, but loveable,eleven-year-old misfit learns to believe in\nhimself when he gets to know the new school counselor, who is a sort of\nmisfit, too.\"\r\n7706,8219,17233800,Katie McGarry,Crash Into You,https://images.gr-assets.com/books/1370532247l/17233800.jpg,4.28,21136,\"romance, contemporary\",\"Hiding secrets from her family that expects her to be perfect, Rachel Young\nfalls in love with Isaiah Walker, a foster youth who hides his own secrets\nuntil their shared love for street racing puts their lives in jeopardy.\"\r\n7707,8220,7993566,Edmund Morris,Colonel Roosevelt,https://images.gr-assets.com/books/1320530371l/7993566.jpg,4.1,12745,\"biography, history\",\"The Pulitzer Prize-winning author of The Rise of Theodore Roosevelt\npresents a chronicle of the last ten years of the 26th president's life to\ncover his African safaris, presidency and various brushes with death.\"\r\n7708,8221,65336,\"William Carlos Williams, Charles Tomlinson\",Selected Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549475131l/65336.jpg,4.15,11740,\"poetry, classics\",Offers a collection of poems along with notes on the text.\r\n7709,8222,77786,Timothy Zahn,Star Wars: Vision of the Future,https://images.gr-assets.com/books/1328289436l/77786.jpg,4.06,11657,\"fiction, fantasy\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n7710,8223,6449422,Haruki Murakami,1Q84 Book 2 [Ichi-kyū-hachi-yon],https://images.gr-assets.com/books/1329955515l/6449422.jpg,4.04,9668,\"fiction, ebooks\",\"Haruki Murakami is an international phenomenon. When Books One and Two of\nhis latest masterpiece, 1Q84, were published in Japan, a million copies\nwere sold in one month, and the critical acclaim that ensued was reported\nall over the globe. Readers were transfixed by the mesmerising story of\nAomame and Tengo and the strange parallel universe they inhabit. Then, one\nyear later, to the surprise and delight of his readers, Murakami published\nan unexpected Book Three, bringing the story to a close. In order to\nreflect the experience of 1Q84's first readers, Harvill Secker is\npublishing Books One and Two in one beautifully designed volume and Book\nThree in a separate edition. A long-awaited treat for his fans, 1Q84 is\nalso a thrilling introduction to the unique world of Murakami's\nimagination. This hypnotically addictive novel is a work of startling\noriginality and, as the title suggests, a mind-bending ode to George\nOrwell's Nineteen Eighty-Four. (The number 9 in Japanese is pronounced like\nthe letter 'Q'). The year is 1984. Aomame sits in a taxi on the expressway\nin Tokyo. Her work is not the kind which can be discussed in public but she\nis in a hurry to carry out an assignment and, with the traffic at a stand-\nstill, the driver proposes a solution. She agrees, but as a result of her\nactions starts to feel increasingly detached from the real world. She has\nbeen on a top-secret mission, and her next job will lead her to encounter\nthe apparently superhuman founder of a religious cult. Meanwhile, Tengo is\nleading a nondescript life but wishes to become a writer. He inadvertently\nbecomes involved in a strange affair surrounding a literary prize to which\na mysterious seventeen-year-old girl has submitted her remarkable first\nnovel. It seems to be based on her own experiences and moves readers in\nunusual ways. Can her story really be true? Both Aomame and Tengo notice\nthat the world has grown strange; both realise that they are indispensable\nto each other. While their stories influence one another, at times by\naccident and at times intentionally, the two come closer and closer to\nintertwining. ** Murakamiâe(tm)s new novel is coming ** COLORLESS TSUKURU\nTAZAKI AND HIS YEARS OF PILGRIMAGE 'The reason why death had such a hold on\nTsukuru Tazaki was clear. One day his four closest friends, the friends\nheâe(tm)d known for a long time, announced that they did not want to see\nhim, or talk with him, ever again'\"\r\n7711,8224,20439328,Ali Smith,How to Be Both,https://images.gr-assets.com/books/1405890478l/20439328.jpg,3.61,9431,\"fiction, contemporary\",How to Be BothAli Smith\r\n7712,8225,85989,Meg Cabot,Princess on the Brink,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441944648l/85989.jpg,3.7,17654,\"romance, contemporary\",Princess on the BrinkMeg Cabot\r\n7713,8226,341281,\"Thomas Hardy, Patricia Ingham\",The Woodlanders,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389977312l/341281.jpg,3.82,10835,\"classics, fiction\",\"Giles Winterbowne suffers with the many tribulations of his selfless love\nfor a woman above his station in this classic tale of the West country\"\r\n7714,8228,4071018,Barbara Delinsky,While My Sister Sleeps,https://images.gr-assets.com/books/1320495122l/4071018.jpg,3.82,12719,\"fiction, contemporary\",\"When her sister, a world-class runner, suffers a massive heart attack that\nleaves her in a coma from which she may never wake up, a woman and her\nfamily struggle to cope with the tragedy as their relationships are put to\nthe ultimate test.\"\r\n7715,8229,419083,Mark Bowden,Killing Pablo: The Hunt for the World's Greatest Outlaw,https://images.gr-assets.com/books/1311648121l/419083.jpg,3.93,9469,\"history, crime\",\"Reveals the inside story of how U.S. special forces and intelligence\nagencies led the largest manhunt in history to capture and contain\nColombian cocaine cartel kingpin Pablo Escobar, one of the world's most\npowerful outlaws.\"\r\n7716,8230,12968662,Chris Cleave,Gold,https://images.gr-assets.com/books/1340468522l/12968662.jpg,3.68,6997,\"fiction, sports\",GoldChris Cleave\r\n7717,8231,3064985,Lesley Livingston,Wondrous Strange,https://images.gr-assets.com/books/1327879404l/3064985.jpg,3.69,17738,\"fantasy, romance\",\"Since the dawn of time, the Faerie have taken. . . . Seventeen-year-old\nactress Kelley Winslow always thought faeries were just something from\nchildhood stories. Then she meets Sonny Flannery. He's a changeling—a\nmortal taken as an infant and raised among Faerie—and within short order\nhe's turned Kelley's heart inside out and her life upside down. For\nKelley's beloved Central Park isn't just a park—it's a gateway between her\nordinary city and the Faerie's dangerous, bewitching Otherworld. Now\nKelley's eyes are opening not just to the Faerie that surround her, but to\nthe heritage that awaits her . . . a destiny both wondrous and strange.\"\r\n7718,8232,10395,Franklin Foer,How Soccer Explains the World: An Unlikely Theory of Globalization,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441241407l/10395._SY475_.jpg,3.76,9231,\"sports, nonfiction\",\"Soccer is much more than a game, or even a way of life. It's a perfect\nwindow into the crosscurrents of today's world, with all its joys and\nsorrows. In this remarkably insightful, wide-ranging work of reportage,\nFranklin Foer takes us on a surprising tour through the world of soccer,\nshining a spotlight on the clash of civilizations, the international\neconomy, and just about everything in between. How Soccer Explains the\nWorld is an utterly original book that makes sense of our troubled times.\"\r\n7719,8233,45974,\"Fernando Pessoa, Richard Zenith\",Livro do Desassossego,https://images.gr-assets.com/books/1382871857l/45974.jpg,4.5,9115,\"poetry, fiction\",\"Livro do DesassossegoFernando Pessoa, Richard Zenith\"\r\n7720,8234,12791521,\"Geoff Johns, Gary Frank, Jon Sibal, Brad Anderson, Rob Leigh\",\"Batman: Earth One, Volume 1\",https://images.gr-assets.com/books/1344369854l/12791521.jpg,4.06,11302,\"comics, fiction\",\"A reimagining of Batman's beginnings sheds new light on how Bruce Wayne\nbecame the Dark Knight, as he seeks revenge on his parents' killers.\"\r\n7721,8236,583924,MaryJanice Davidson,Undead and Unappreciated,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442543610l/583924._SY475_.jpg,3.88,18066,\"paranormal, romance\",\"The newly crowned queen of the undead, fashion-savvy Betsy Taylor continues\nher reluctant reign while trying to uncover the truth about some\ntroublesome family secrets. Reprint.\"\r\n7722,8237,20980959,\"Douglas Preston, Lincoln Child\",Blue Labyrinth,https://images.gr-assets.com/books/1408116686l/20980959.jpg,4.11,9184,\"mystery, thriller\",\"Special Agent Pendergast-one of the most original, compelling characters in\nall of contemporary fiction-returns in Preston and Child's new exhilarating\nnovel BLUE LABYRINTH A long-buried family secret has come back to haunt\nSpecial Agent Aloysius Pendergast. It begins with murder. One of\nPendergast's most implacable, most feared enemies is found on his doorstep,\ndead. Pendergast has no idea who is responsible for the killing, or why the\nbody was brought to his home. The mystery has all the hallmarks of the\nperfect crime, save for an enigmatic clue: a piece of turquoise lodged in\nthe stomach of the deceased. The gem leads Pendergast to an abandoned mine\non the shore of California's Salton Sea, which in turn propels him on a\njourney of discovery deep into his own family's sinister past. But\nPendergast learns there is more at work than a ghastly episode of family\nhistory: he is being stalked by a subtle killer bent on vengeance over an\nancient transgression. And he soon becomes caught in a wickedly clever\nplot, which leaves him stricken in mind and body, and propels him toward a\nreckoning beyond anything he could ever have imagined....\"\r\n7723,8238,7940589,Manning Marable,Malcolm X: A Life of Reinvention,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347690389l/7940589.jpg,4.2,11448,\"biography, history\",\"An authoritative biography of Malcolm X draws on new research to reveal\ninformation not contained in his autobiography, including the true story\nbehind his assasination. By the author of Beyond Black and White:\nTransforming African-American Politics. Reprint. A National Book Award\nfinalist.\"\r\n7724,8239,32349,Marlo Morgan,Mutant Message Down Under,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441257420l/32349._SY475_.jpg,3.79,9981,\"fiction, spirituality\",\"Mutant Message Down Under is the fictional account of an American woman's\nspiritual odyssey through outback Australia. An underground bestseller in\nits original self-published edition, Marlo Morgan's powerful tale of\nchallenge and endurance has a message for us all. Summoned by a remote\ntribe of nomadic Aborigines to accompany them on walkabout, the woman makes\na four-month-long journey and learns how they thrive in natural harmony\nwith the plants and animals that exist in the rugged lands of Australia's\nbush. From the first day of her adventure, Morgan is challenged by the\nphysical requirements of the journey—she faces daily tests of her\nendurance, challenges that ultimately contribute to her personal\ntransformation. By traveling with this extraordinary community, Morgan\nbecomes a witness to their essential way of being in a world based on the\nancient wisdom and philosophy of a culture that is more than 50,000 years\nold.\"\r\n7725,8240,4769247,Lara Adrian,Ashes of Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274773l/4769247.jpg,4.19,18982,\"paranormal, romance\",\"As vampire warrior Andreas Reichen uses his former lover, Claire Roth, as a\npawn in his deadly game of revenge against the vampire responsible for\nkilling his Breed brethren, passion explodes between them once more.\"\r\n7726,8241,112879,\"Michael Buckley, Peter Ferguson\",Once Upon a Crime,https://images.gr-assets.com/books/1349015477l/112879.jpg,4.26,15091,\"fantasy, mystery\",\"When the fairy-tale detectives rush to New York City to find an Everafter\nwho can cure Puck, they trigger a chain of events that includes a murder\nmystery, and learn many new things about their mother, who is in an\nenchanted sleep.\"\r\n7727,8242,168814,Bert Dodson,Keys to Drawing,https://images.gr-assets.com/books/1172360760l/168814.jpg,4,10004,\"art, nonfiction\",Keys to DrawingBert Dodson\r\n7728,8243,158988,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Andrew Pepoy, Gene Ha, Joshua Middleton, Iñaki Miranda, Mike Allred\",\"Fables, Volume 9: Sons of Empire\",https://images.gr-assets.com/books/1375396700l/158988.jpg,4.24,15232,\"comics, fantasy\",\"Fables, Volume 9: Sons of EmpireBill Willingham, Mark Buckingham, Steve Leialoha, Andrew Pepoy, Gene Ha, Joshua Middleton, Iñaki Miranda, Mike Allred\"\r\n7729,8244,1233478,Karen Chance,Embrace the Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432372340l/1233478._SY475_.jpg,4.09,19294,\"paranormal, fantasy\",Embrace the NightKaren Chance\r\n7730,8245,171624,Len Deighton,The Ipcress File,https://images.gr-assets.com/books/1295903974l/171624.jpg,3.94,12052,\"fiction, thriller\",The Ipcress FileLen Deighton\r\n7731,8246,158944,\"Marion Cunningham, Fannie Merritt Farmer, Archibald Candy Corporation\",The Boston Cooking-School Cook Book 1896,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347424134l/158944.jpg,4.1,12723,\"cookbooks, nonfiction\",\"Features nearly two thousand recipes and includes chapters dealing with\nmicrowave, outdoor, and vegetarian cooking\"\r\n7732,8247,3240691,بهاء طاهر,واحة الغروب,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503527816l/3240691._SX318_.jpg,3.82,10365,\"fiction, history\",واحة الغروببهاء طاهر\r\n7733,8249,27208,Flann O'Brien,The Third Policeman,https://images.gr-assets.com/books/1343027425l/27208.jpg,4.02,10352,\"fiction, fantasy\",\"With the publication of The Third Policeman, Dalkey Archive Press now has\nall of O'Brien's fiction back in print.\"\r\n7734,8250,4285768,Alexander McCall Smith,Tea Time for the Traditionally Built,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185473l/4285768.jpg,4.11,15001,\"mystery, fiction\",\"Precious Ramotswe tries to recover her trusty white van after her husband\nsells it and replaces it with a characterless modern vehicle, while The No.\n1 Ladies' Detective Agency tries to discover if a local football team's\ngames are fixed.\"\r\n7735,8251,273512,Erin Hunter,\"Starlight (Warriors: The New Prophecy, #4)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392456105l/273512.jpg,4.28,15719,\"fantasy, fiction\",\"Erin Hunter’s #1 nationally bestselling Warriors series continues in\nWarriors: The New Prophecy—now featuring fierce new art. The fourth book in\nthis second series, Warriors: The New Prophecy #4: Starlight, brings more\nadventure, intrigue, and thrilling battles to the epic world of the warrior\nClans. Before there is peace, blood will spill blood…. The Clans have\nfinally arrived in their new home, and now they must struggle to establish\nterritories and learn the hidden dangers of this unfamiliar world. Most\nimportant, they must find a replacement for the Moonstone—a place to\ncommunicate with StarClan. But more than one cat is harboring sinister\nplans that could lead to violence and darkness, and as the warriors wait\nfor a sign, they begin to realize that the threats they face in the forest\nmay not be as perilous as the threats they face from within. Supports the\nCommon Core State Standards\"\r\n7736,8252,13522957,Suzanne Wright,Feral Sins,https://images.gr-assets.com/books/1331458140l/13522957.jpg,4.12,21978,\"paranormal, romance\",\"When female wolf shifter Taryn Warner first encounters Trey Coleman, an\nalpha male wolf shifter with a dangerous reputation, she's determined to\nresist his charms. But Taryn finds herself drawn in by Trey's forceful\ndemeanor and arctic-blue eyes, and she eventually agrees to enter an uneasy\nalliance with him. If the two succeed in convincing their respective packs\nthat they've chosen each other as mates, Trey will win valuable political\nallies, while Taryn will escape an odious arranged mating. Will they be\nable to maintain the clear heads needed to pull off the deception?\"\r\n7737,8253,87424,\"Hergé, Leslie Lonsdale-Cooper, Michael Turner\",Tintin au pays des Soviets,https://images.gr-assets.com/books/1327959256l/87424.jpg,3.67,10702,\"comics, fiction\",\"Tintin au pays des SovietsHergé, Leslie Lonsdale-Cooper, Michael Turner\"\r\n7738,8254,9998705,Kathy Reichs,Flash and Bones,https://images.gr-assets.com/books/1306253347l/9998705.jpg,3.86,14064,\"mystery, crime\",\"A latest entry in the series by the producer of the Bones television hit\nfinds forensic anthropologist Dr. Temperance Brennan investigating a\npossible FBI cover-up with ties to the disappearance of a NASCAR crew\nmember's sister, a right-wing extremist group and a secret substance.\nReprint. TV tie-in.\"\r\n7739,8255,23453099,Ottessa Moshfegh,Eileen,https://images.gr-assets.com/books/1479545528l/23453099.jpg,3.38,10460,\"fiction, mystery\",\"Dreaming of life in the city while caring for her alcoholic father and\nworking in a 1960s boys' prison, a disturbed young woman is manipulated\ninto committing a psychologically charged crime during the holiday season.\"\r\n7740,8256,1566705,J.D. Robb,Creation in Death ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1185298023l/1566705._SY475_.jpg,4.34,16050,\"mystery, romance\",The 25th In Death novel from #1 New York Times bestselling author\r\n7741,8257,770040,Anna Dewdney,Llama Llama Mad at Mama,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442605521l/770040._SX318_.jpg,4.28,14175,\"fiction, poetry\",\"A young llama wants to play but must go shopping with his mother instead,\nand so he gets angry and makes a mess at the store.\"\r\n7742,8258,18594594,Karin Slaughter,Cop Town,https://images.gr-assets.com/books/1384822680l/18594594.jpg,3.88,10660,\"mystery, thriller\",\"Reluctant rookie cop Kate Murphy finds herself teamed with agenda-seeking\nMaggie Lawson in a manhunt for a cop killer.\"\r\n7743,8259,165053,\"Nicholas Ganz, Tristan Manco\",Graffiti World: Street Art from Five Continents,https://images.gr-assets.com/books/1302039517l/165053.jpg,4.01,9000,\"art, nonfiction\",\"A history of graffiti art traces its evolution from the late 1960s to\ntoday, citing its reflection of hip-hop culture as well as its symbolism of\nyouth art.\"\r\n7744,8260,1918702,Ed Young,Lon Po Po,https://images.gr-assets.com/books/1265127897l/1918702.jpg,4.03,14340,\"fantasy, fiction\",\"A haunting Chinese rendition of the classic tale of \"\"Little Red Riding\nHood\"\" follows the adventures of young Shang, Tao, and Paotze, who encounter\na terrifying wolf. Reprint. Caldecott Medal. Boston Globe-Horn Book Award.\"\r\n7745,8261,348632,Anita Amirrezvani,The Blood of Flowers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440786428l/348632._SY475_.jpg,3.95,11871,\"fiction, history\",The Blood of FlowersAnita Amirrezvani\r\n7746,8262,45181,E. Nesbit,Five Children and It ,https://images.gr-assets.com/books/1327882197l/45181.jpg,3.88,16059,\"fantasy, classics\",\"When Cyril, Anthea, Robert, Jane and their baby brother go digging in the\ngravel pit, the last thing they expect to find is a Psammead � an ancient\nSand-fairy! Having a Sand-fairy for a pet means having one wish granted\neach day. But the children don't realize all the trouble wishes can cause .\n. . A timeless classic with an introduction by Quentin Blake, award-winning\nillustrator and first-ever Children's Laureate (1999�2001).\"\r\n7747,8263,18387597,Essam Youssef,2 ضباط,https://images.gr-assets.com/books/1377876467l/18387597.jpg,3.64,8109,\"fiction, thriller\",2 ضباطEssam Youssef\r\n7748,8264,559889,Clive Cussler,\"Flood Tide (Dirk Pitt, #14)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328033231l/559889.jpg,3.88,11987,\"fiction, mystery\",\"Dirk Pitt matches wits with a nefarious Chinese smuggler who specializes in\nsecretly transporting illegal Chinese immigrants into countries around the\nworld, as he tracks his quarry to a remote port in Louisiana and searches\nfor a treasure ship that sankat the beginning of World War II\"\r\n7749,8265,23299512,Victoria Schwab,This Savage Song,https://images.gr-assets.com/books/1445529989l/23299512.jpg,4.14,17210,\"fantasy, paranormal\",This Savage SongVictoria Schwab\r\n7750,8266,8456124,\"L.J. Smith, Kevin Williamson, Julie Plec\",Bloodlust,https://images.gr-assets.com/books/1287687704l/8456124.jpg,4.05,11333,\"fantasy, romance\",\"A new beginning . . . When Stefan Salvatore's first love turned him into a\nvampire, his world—and his soul—were destroyed. Now he and his brother,\nDamon, must flee their hometown, where they risk being discovered . . . and\nkilled. The brothers head to New Orleans, looking for safe haven. But the\ncity is more dangerous than they ever imagined, full of other vampires—and\nvampire hunters. Will Stefan's eternal life be forever damned? Based on the\npopular CW TV show inspired by the bestselling novels, Stefan's Diaries\nreveals the truth about what really happened between Stefan, Damon, and\nKatherine—and how the Vampire Diaries love triangle began.\"\r\n7751,8268,17838528,Morgan Matson,The Unexpected Everything,https://images.gr-assets.com/books/1443203227l/17838528.jpg,4.07,18752,\"contemporary, romance\",The Unexpected EverythingMorgan Matson\r\n7752,8269,43799,\"Anne Rampling, Anne Rice\",Exit to Eden,https://images.gr-assets.com/books/1328206253l/43799.jpg,3.55,11846,\"fiction, romance\",\"Lisa, the founder of an exclusive sexual fantasy resort called The Club,\nfinds her stern self-control disrupted when she falls in love with Elliot,\na photojournalist who has been contracted as a slave to the resort.\nReprint. 50,000 first printing.\"\r\n7753,8270,6654104,\"Mary-Jane Knight, Rick Riordan\",Percy Jackson: The Ultimate Guide,https://images.gr-assets.com/books/1360574678l/6654104.jpg,4.12,14173,\"fantasy, fiction\",\"It's the handbook no half-blood should be without: a fully illustrated, in-\ndepth guide to gods, monsters, and all things Percy. This novelty companion\nto the best-selling series comes complete with trading cards, full-color\ndiagrams, and maps, all packaged in a handy, \"\"manual-size\"\" POB with a\ncrisp, magnetic flap enclosure./DIVDIV\"\r\n7754,8271,13239822,G. Willow Wilson,Alif the Unseen,https://images.gr-assets.com/books/1325543155l/13239822.jpg,3.84,10982,\"fantasy, fiction\",Alif the UnseenG. Willow Wilson\r\n7755,8272,50001,\"Robert Foster, J.R.R. Tolkien\",The Complete Guide to Middle-Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170366180l/50001._SX318_.jpg,4.17,10280,\"fantasy, fiction\",\"The Complete Guide to Middle-EarthRobert Foster, J.R.R. Tolkien\"\r\n7756,8273,12449167,Lucinda Riley,Hothouse Flower,https://images.gr-assets.com/books/1320957431l/12449167.jpg,3.8,9282,\"fiction, romance\",\"As a child, concert pianist Julia Forrester would linger in the hothouse of\nWharton Park estate, where exotic flowers tended by her grandfather\nblossomed and faded with the seasons. Now, recovering from a family\ntragedy, she once more seeks comfort at Wharton Park, newly inherited by\nKit Crawford, a charismatic man with a sad story of his own. But when a\nyears-old diary is found during renovation work, the pair turn to Julia's\ngrandmother to hear the truth about the love affair that turned Wharton\nPark's fortunes sour . . . And so Julia is plunged back in time, to the\nworld of Olivia and Harry Crawford, a young couple torn apart by the Second\nWorld War - and whose fragile marriage is destined to affect the happiness\nof generations to come, including Julia's own. LUCINDA RILEY'S heart-\nrending storytelling embraces war-torn Europe and the exoticism of Thailand\nas she examines the messy tangles of love.\"\r\n7757,8274,29008738,Amy Harmon,The Bird and the Sword,https://images.gr-assets.com/books/1462457112l/29008738.jpg,4.29,11705,\"fantasy, romance\",\"\"\"'Swallow, daughter, pull them in, those words that sit upon your lips.\nLock them deep inside your soul, hide them 'til they've time to grow. Close\nyour mouth upon the power, curse not, cure not, 'til the hour. You won't\nspeak and you won't tell, you won't call on heaven or hell. You will learn\nand you will thrive. Silence, daughter. Stay alive.' The day my mother was\nkilled, she told my father I wouldn't speak again, and she told him if I\ndied, he would die too. Then she predicted the king would trade his soul\nand lose his son to the sky. My father has a claim to the throne, and he is\nwaiting in the shadows for all of my mother's words to come to pass. He\nwants desperately to be king, and I just want to be free. But freedom will\nrequire escape, and I'm a prisoner of my mother's curse and my father's\ngreed. I can't speak or make a sound, and I can't wield a sword or beguile\na king. In a land purged of enchantment, love might be the only magic left,\nand who could ever love ... a bird?\"\"--Back cover.\"\r\n7758,8275,92845,Terry Brooks,The Black Unicorn ,https://images.gr-assets.com/books/1460848089l/92845.jpg,3.75,14108,\"fantasy, fiction\",\"When the wizard Meeks assumes the appearance of Ben Holiday, the real Ben\nbecomes an outcast\"\r\n7759,8276,16076,\"Kate Chopin, Cynthia Brantley Johnson, Alyssa  Harad\",The Awakening and Selected Short Stories,https://images.gr-assets.com/books/1403398895l/16076.jpg,3.84,8505,\"classics, fiction\",\"Presents \"\"The Awakening\"\" and other short stories, including \"\"Beyond the\nBayou,\"\" \"\"A respectable woman,\"\" and \"\"A Pair of Silk Stockings.\"\"\"\r\n7760,8277,2296567,Uwem Akpan,Say You're One of Them,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266709325l/2296567.jpg,3.49,10899,\"fiction, contemporary\",Say You're One of ThemUwem Akpan\r\n7761,8278,6688087,Elly Griffiths,The Crossing Places,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349088962l/6688087.jpg,3.87,12427,\"mystery, fiction\",\"Forensisch archeologe Ruth Galloway probeert met behulp van de wetenschap\nen politieonderzoek jaren oude moorden alsnog op te lossen.\"\r\n7762,8279,721003,Roland Smith,Peak,https://images.gr-assets.com/books/1328876929l/721003.jpg,3.98,13314,\"fiction, sports\",\"Fourteen-year-old Peak Marcello attempts to be the youngest person to reach\nthe top of Mount Everest.\"\r\n7763,8280,39799,\"Henning Mankell, Ebba Segerberg\",Steget efter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169315340l/39799.jpg,4.08,10619,\"mystery, crime\",\"Steget efterHenning Mankell, Ebba Segerberg\"\r\n7764,8281,825473,Frederick Forsyth,The Devil's Alternative,https://images.gr-assets.com/books/1333578726l/825473.jpg,4,9927,\"fiction, thriller\",The Devil's AlternativeFrederick Forsyth\r\n7765,8283,138684,C.J. Sansom,Sovereign ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440215651l/138684._SY475_.jpg,4.28,11071,\"mystery, fiction\",\"When Henry VIII sets out to quell rebellion in the north and transport a\ndangerous conspirator back to London for questioning, lawyer Matthew\nShardlake finds himself investigating the murder of a local glazier with\nunsettling ties to the royal family, a case during which he discovers a\ncache of secret papers that throw the royal line's legitimacy into\nquestion. By the author of Dissolution. Reprint.\"\r\n7766,8285,440960,\"Grant Morrison, Andy Kubert, John Van Fleet, Jesse Delperdang\",Batman: Batman and Son,https://images.gr-assets.com/books/1328217465l/440960.jpg,3.81,10188,\"comics, fiction\",\"Talia, Batman's one-time love, returns with a child named Damian and claims\nthat he is Batman's son, he takes him in but will this misguided boy be the\none to destroy Batman?\"\r\n7767,8286,101255,Harold McGee,On Food and Cooking: The Science and Lore of the Kitchen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347221060l/101255.jpg,4.48,10631,\"cookbooks, science\",\"A kitchen classic for nearly 35 years. Hailed by Time magazine as \"\"a minor\nmasterpiece\"\" when it first appeared in 1984, On Food and Cooking is the\nbible to which food lovers and professional chefs worldwide turn for an\nunderstanding of where our foods come from, what exactly they're made of,\nand how cooking transforms them into something new and delicious. For its\ntwentieth anniversary, Harold McGee prepared a new, fully revised and\nupdated edition of On Food and Cooking. He has rewritten the text almost\ncompletely, expanded it by two-thirds, and commissioned more than 100 new\nillustrations. As compulsively readable and engaging as ever, the new On\nFood and Cooking provides countless eye-opening insights into food, its\npreparation, and its enjoyment. On Food and Cooking pioneered the\ntranslation of technical food science into cook-friendly kitchen science\nand helped birth the inventive culinary movement known as \"\"molecular\ngastronomy.\"\" Though other books have been written about kitchen science, On\nFood and Cooking remains unmatched in the accuracy, clarity, and\nthoroughness of its explanations, and the intriguing way in which it blends\nscience with the historical evolution of foods and cooking techniques.\nAmong the major themes addressed throughout the new edition are: ·\nTraditional and modern methods of food production and their influences on\nfood quality · The great diversity of methods by which people in different\nplaces and times have prepared the same ingredients · Tips for selecting\nthe best ingredients and preparing them successfully · The particular\nsubstances that give foods their flavors, and that give us pleasure · Our\nevolving knowledge of the health benefits and risks of foods On Food and\nCooking is an invaluable and monumental compendium of basic information\nabout ingredients, cooking methods, and the pleasures of eating. It will\ndelight and fascinate anyone who has ever cooked, savored, or wondered\nabout food.\"\r\n7768,8287,668710,\"Michael Buckley, Peter Ferguson\",Magic and Other Misdemeanors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425243201l/668710.jpg,4.29,15038,\"fantasy, mystery\",\"Fans of fractured fairy tales will be delighted to discover the fantasy,\nmystery, adventure, and humor in the beloved New York Times bestselling\nSisters Grimm series by Michael Buckley, now with new cover art. The nine\nwildly popular books are favorites around the world. They were among the\nfirst books to bring a distinctly girl-power spin to fairy tales--a trend\nfollowed by hit television series and movies such as Grimm and Maleficent;\nthe bestselling book series the Land of Stories; and more. Now, books one\nthrough six in this smash-hit series appear with new covers, with books\nseven, eight, and nine available as revised editions soon.\"\r\n7769,8288,9962040,Maya Banks,In Bed with a Highlander,https://images.gr-assets.com/books/1348705921l/9962040.jpg,4.05,20529,\"romance, fiction\",\"Highland warrior Ewan McCabe finds his plans to reclaim what is his\nthwarted by Mairin, the illegitimate daughter of the king, whom he is\nforced to marry--and who could be the salvation of him and his clan.\"\r\n7770,8289,577283,William Styron,The Confessions of Nat Turner,https://images.gr-assets.com/books/1406138384l/577283.jpg,3.96,11535,\"fiction, classics\",\"A twenty-fifth anniversary edition of the Pulitzer Prize-winning novel\nbased on the true story of an abortive slave rebellion in 1831 gives a\nchilling account of a noble man's moral decline. Reissue.\"\r\n7771,8290,18931,Jodee Blanco,Please Stop Laughing at Me... One Woman's Inspirational Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420925136l/18931.jpg,3.84,9178,\"memoir, nonfiction\",\"While other children were daydreaming about dances, first kisses, and\ncollege, Jodee Blanco was trying to figure out how to go from homeroom to\nstudy hall without being taunted or spit upon as she walked through the\nhalls. This powerful, unforgettable memoir chronicles how one child was\nshunned—and even physically abused—by her classmates from elementary school\nthrough high school. It is an unflinching look at what it means to be the\noutcast, how even the most loving parents can get it all wrong, why schools\nare often unable to prevent disaster, and how bullying has been\nmisunderstood and mishandled by the mental health community. You will be\nshocked, moved, and ultimately inspired by this harrowing tale of survival\nagainst insurmountable odds. This vivid story will open your eyes to the\nharsh realities and long-term consequences of bullying—and how all of us\ncan make a difference in the lives of teens today.\"\r\n7772,8292,9712341,Gemma Burgess,A Girl Like You,https://images.gr-assets.com/books/1289919160l/9712341.jpg,3.95,12117,\"romance, contemporary\",\"After breaking up with her boyfriend Abigail Wood must learn how to be\nsingle from scratch. Her dating skills are abysmal, and she ricochets from\ndisaster to disaster - until Robert, one of London's most notorious\nlotharios, agrees to coach her. She learns to navigate the bar scene and\npractices the art of being bulletproof.\"\r\n7773,8294,7081,John Scalzi,The Android's Dream,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441762412l/7081._SY475_.jpg,3.97,11476,\"fiction, fantasy\",\"To avoid an interstellar incident, ex-cop and hacker Harry Creek, aided by\nBrian Javna, a childhood friend turned AI, searches for a rare type of\nsheep to be used in an alien race's coronation ceremony, following a trail\nthat leads to pet store owner Robin Baker, whose genes contain traces of\nthe sheep DNA. By the author of Old Man's War. Reprint.\"\r\n7774,8295,3291,Isabel Allende,Cuentos de Eva Luna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439782373l/3291.jpg,3.96,10862,\"fiction, romance\",\"Eva Luna -- amante, revolucionaria, narradora -- reclinada en la cama con\nsu amante, le cuenta una historia \"\"que nunca ha contado antes a nadie,\"\" en\nveintitres vivdos y fascinantes relatos sobre guerrilleros y nigromantes,\nseductores y tiranos, diplomáticos y acróbatas. En esta estupenda colección\nde cuentos, Isabel Allende continúa la magia de su muy elogiada novela Eva\nLuna.\"\r\n7775,8296,7579,Lama Surya Das,Awakening the Buddha Within : Tibetan Wisdom for the Western World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442401545l/7579._SY475_.jpg,4.18,9912,\"spirituality, religion\",\"Drawing on three decades of learning from the spiritual masters of Asia, an\nAmerican lama illuminates the sacred wisdom and practices of Buddhism and\nshows readers how to integrate them into their lives, relationships, and\ncareers. Reprint. $50,000 ad/promo. Tour.\"\r\n7776,8297,11821514,Edie Claire,Long Time Coming,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328346826l/11821514.jpg,3.77,9327,\"romance, mystery\",Long Time ComingEdie Claire\r\n7777,8298,33906,Sara Zarr,Story of a Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436244825l/33906._SY475_.jpg,3.67,14282,\"fiction, contemporary\",Story of a GirlSara Zarr\r\n7778,8299,18108795,Lee Child,High Heat,https://images.gr-assets.com/books/1467986444l/18108795.jpg,3.93,4842,\"thriller, fiction\",\"Published exclusively as an ebook, a long short story from thriller master\nLee Child about the teenage Reacher, now also available in No Middle Name:\nthe Collected Jack Reacher Stories. July 1977. Jack Reacher is almost\nseventeen, and he stops in New York on his way from South Korea to visit\nhis brother at West Point. The summer heat is suffocating, fires are raging\nin the Bronx, the city is bankrupt, and the mad gunman known as Son of Sam\nis still on the loose. Reacher meets a woman with a problem, and agrees to\nhelp her . . . and then the power grid fails and the lights go out,\nplunging the lawless city that never sleeps into chaos. What does a\nvisiting teenager do in the dark? If that visiting teenager is Jack\nReacher, the answer is: plenty. Don’t miss the exciting preview of Lee\nChild’s latest Jack Reacher novel, Never Go Back!\"\r\n7779,8301,13252406,J.D. Robb,Delusion in Death,https://images.gr-assets.com/books/1334022208l/13252406.jpg,4.31,13716,\"mystery, romance\",Delusion in DeathJ.D. Robb\r\n7780,8302,504369,David Weber,Field of Dishonor,https://images.gr-assets.com/books/1321561655l/504369.jpg,4.19,13157,\"fiction, fantasy\",\"Captain Honor Harrington returns home to Manticore, where she is caught up\nin an unexpected political crisis and becomes the target of revenge for her\nenemy, Pavel Young, whom she helped get dismissed from the navy.\"\r\n7781,8303,13235689,David Byrne,How Music Works,https://images.gr-assets.com/books/1340792878l/13235689.jpg,3.95,10163,\"music, nonfiction\",How Music WorksDavid Byrne\r\n7782,8304,18404093,Mary Kay Andrews,Save the Date,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390618287l/18404093.jpg,3.87,11080,\"romance, fiction\",Save the DateMary Kay Andrews\r\n7783,8305,10006,Paul Auster,Oracle Night,https://images.gr-assets.com/books/1328287302l/10006.jpg,3.77,8827,\"fiction, contemporary\",\"Recovering from a near-fatal illness, Sidney Orr, a thirty-four-year-old\nnovelist, purchases a mysterious blue notebook from a Brooklyn stationery\nshop and is drawn into a bizarre world of eerie premonitions and baffling\nevents.\"\r\n7784,8306,40526,Jack Finney,Time and Again,https://images.gr-assets.com/books/1393198563l/40526.jpg,3.98,11251,\"fiction, fantasy\",\"Simon Morley is selected by a secret government agency to test Einstein's\ntheory of the past co-existing with the present and is transported back to\n1880s New York\"\r\n7785,8307,22027055,Heather Burch,One Lavender Ribbon ,https://images.gr-assets.com/books/1401681451l/22027055.jpg,3.78,9175,\"romance, fiction\",\"Can a stack of long-hidden love letters from a WWII war hero inspire a\nheartbroken woman to love again? Reeling from a bitter divorce, Adrienne\nCarter abandons Chicago and retreats to the sun, sand, and beauty of\nSouthern Florida, throwing herself into the restoration of a dilapidated\nold Victorian beach house. Early into the renovations, she discovers a tin\nbox hidden away in the attic that reveals the emotional letters from a WWII\nparatrooper to a young woman who lived in the house more than a half-\ncentury earlier. The old letters—incredibly poetic and romantic—transcend\ntime, and they arouse in Adrienne a curiosity that leads her to track down\nthe writer of the letters. William “Pops” Bryant is now an old man living\nin a nearby town with his handsome but overprotective grandson, Will. As\nAdrienne begins to unravel the secrets of the letters (and the Bryants),\nshe finds herself not yet willing to give up entirely on love.\"\r\n7786,8308,1022866,\"Nicky Cruz, Jamie Buckingham\",Run Baby Run,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436560736l/1022866._SY475_.jpg,4.21,10697,\"christian, biography\",\"One of the most influential Christian books of modern times, with over 12\nmillion copies sold worldwide. The book that helped forge a new\nconsciousness in generations of believers is being re-issued with a\ndramatic new cover and compelling foreword by Tim Dilena to emphasize its\nplace at the heart of contemporary Christian literature.\"\r\n7787,8309,539282,August Wilson,Fences (The Century Cycle #6),https://images.gr-assets.com/books/1481833774l/539282.jpg,3.84,11991,\"classics, fiction\",\"During the 1950s Troy Maxson struggles against racism and tries to preserve\nhis feelings of pride in himself.\"\r\n7788,8310,78629,Richard Wurmbrand,Tortured for Christ,https://images.gr-assets.com/books/1419182359l/78629.jpg,4.34,9622,\"biography, christian\",\"\"\"Months of solitary confinement, years of periodic physical torture,\nconstant suffering from hunger and cold, the anguish of brain-washing and\nmental cruelty these are the experiences of a Romanian pastor during his\nfourteen years in Communist prisons. His crime, like that of thousands of\nothers, was his fervent belief in Jesus Christ and his public witness\nconcerning his faith. Meeting in homes, in basements, and in woods\nsometimes daring to preach in public on street corners these faithful souls\npersisted in their Christian witness knowing full well the ultimate cost of\ntheir actions. This is their story a classic account of courage, tenacious\nfaith, and unbelievable endurance. This history of the Underground Church\nreflects the continuing struggle in many parts of the world today\"\"--Page 4\nof cover.\"\r\n7789,8311,25663717,Lynda Cohen Loigman,The Two-Family House,https://images.gr-assets.com/books/1479207044l/25663717.jpg,3.94,9395,\"fiction, contemporary\",The Two-Family HouseLynda Cohen Loigman\r\n7790,8312,30636,C.S. Lewis,Miracles: A Preliminary Study,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168079584l/30636._SY475_.jpg,4.08,10821,\"christian, religion\",Miracles: A Preliminary StudyC.S. Lewis\r\n7791,8313,5771014,\"Daniel Coyle, John Farrell\",\"The Talent Code: Unlocking the Secret of Skill in Sports, Art, Music, Math, and Just About Everything Else\",https://images.gr-assets.com/books/1404579448l/5771014.jpg,4.07,10334,\"psychology, nonfiction\",\"The Talent Code: Unlocking the Secret of Skill in Sports, Art, Music, Math, and Just About Everything ElseDaniel Coyle, John Farrell\"\r\n7792,8314,18693753,Elizabeth Little,Dear Daughter,https://images.gr-assets.com/books/1395618683l/18693753.jpg,3.44,10004,\"mystery, fiction\",Dear DaughterElizabeth Little\r\n7793,8315,23745189,Carrie Anne Noble,The Mermaid's Sister,https://images.gr-assets.com/books/1421800056l/23745189.jpg,3.64,6221,\"fantasy, fiction\",\"Finding that her sister is beginning to turn into a mermaid, Clara and her\nbest friend O'Neill try to get her sister from their mountaintop cottage to\nthe sea, but run into myriad problems along the way.\"\r\n7794,8316,16396,P.G. Wodehouse,The Inimitable Jeeves ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760419l/16396.jpg,4.26,7376,\"fiction, classics\",\"“To dive into a Wodehouse novel is to swim in some of the most elegantly\nturned phrases in the English language.”—Ben Schott Follow the adventures\nof Bertie Wooster and his gentleman’s gentleman, Jeeves, in this stunning\nnew edition of one of the greatest comic short story collections in the\nEnglish language. This classic collection of linked stories feature some of\nthe funniest episodes in the life of Bertie Wooster, gentleman, and Jeeves,\nhis gentleman’s gentleman—in which Bertie's terrifying Aunt Agatha stalks\nthe pages, seeking whom she may devour, while Bertie’s friend Bingo Little\nfalls in love with seven different girls in succession (he marries the\nlast, bestselling romantic novelist Rosie M. Banks). And Bertie, with\nJeeves’s help, just evades the clutches of the terrifying Honoria Glossop.\nAt its heart is one of Wodehouse’s most delicious stories and a comic\nmasterpiece, \"\"The Great Sermon Handicap.\"\"\"\r\n7795,8317,534415,\"Margaret Weis, Tracy Hickman\",Dragons of Summer Flame,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389236610l/534415.jpg,3.84,11465,\"fantasy, fiction\",\"Primed for a battle between good and evil, Raistlin, the corrupt mage,\nreturns to the Dragonlance series, along with a new generation of\ncharacters, the inheritors of the fabled Heroes of the Lance. Reissue.\"\r\n7796,8318,6045456,Tom Rob Smith,The Secret Speech,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1529494668l/6045456.jpg,3.78,9880,\"fiction, thriller\",The Secret SpeechTom Rob Smith\r\n7797,8319,7908638,Carl Hiaasen,Star Island,https://images.gr-assets.com/books/1320464091l/7908638.jpg,3.44,11806,\"fiction, mystery\",Star IslandCarl Hiaasen\r\n7798,8320,68496,China Miéville,Un Lun Dun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170692699l/68496._SY475_.jpg,3.81,13243,\"fantasy, fiction\",\"Stumbling into an alternate funhouse version of her home city, twelve-year-\nold Londoner Deeba finds herself trapped in a world of killer giraffes,\nanimated umbrellas, and ghost children, and must take on the role of savior\nto prevent utter destruction.\"\r\n7799,8321,13617,\"Tsugumi Ohba, Takeshi Obata\",\"デスノート #5 (Desu Nōto) Hakushi (白紙,) \",https://images.gr-assets.com/books/1449779269l/13617.jpg,4.35,15786,\"manga, comics\",\"Light Yagami is an ace student with great prospects-and he's bored out of\nhis mind. But all that changes when he finds the Death Note, a notebook\ndropped by a rogue Shinigami death god. Any human whose name is written in\nthe notebook dies, and now Light has vowed to use the power of the Death\nNote to rid the world of evil. But when criminals begin dropping dead, the\nauthorities send the legendary detective L to track down the killer. With L\nhot on his heels, will Light lose sight of his noble goal...or his life?\"\r\n7800,8322,10532477,Richard Castle,Heat Rises,https://images.gr-assets.com/books/1302579268l/10532477.jpg,3.92,12449,\"mystery, fiction\",\"Fast-paced and full of intrigue, Heat Rises pairs the tough and sexy NYPD\nHomicide Detective Nikki Heat with hotshot reporter Jameson Rook in New\nYork Times bestselling author Richard Castle's most thrilling mystery yet.\nThe bizarre murder of a parish priest at a New York bondage club opens\nNikki Heat's most thrilling and dangerous case so far, pitting her against\nNew York's most vicious drug lord, an arrogant CIA contractor, and a\nshadowy death squad out to gun her down. And that is just the tip of an\niceberg that leads to a dark conspiracy reaching all the way to the highest\nlevel of the NYPD. But when she gets too close to the truth, Nikki finds\nherself disgraced, stripped of her badge, and out on her own as a target\nfor killers with nobody she can trust. Except maybe the one man in her life\nwho's not a cop. Reporter Jameson Rook. In the midst of New York's coldest\nwinter in a hundred years, there's one thing Nikki is determined to prove:\nHeat Rises.\"\r\n7801,8323,18956,David Simon,Homicide: A Year on the Killing Streets,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432402772l/18956._SY475_.jpg,4.38,10279,\"crime, nonfiction\",Homicide: A Year on the Killing StreetsDavid Simon\r\n7802,8324,155712,\"Benedict Freedman, Nancy Freedman\",Mrs. Mike,https://images.gr-assets.com/books/1309212489l/155712.jpg,4.13,12826,\"fiction, romance\",\"Young Kathy, a city girl, marries a Canadian Mountie and begins a new life\nin the wilderness of the North Woods\"\r\n7803,8325,22886113,Connor Franta,A Work in Progress,https://images.gr-assets.com/books/1426466460l/22886113.jpg,4.36,14397,\"memoir, nonfiction\",\"NEW YORK TIMES BESTSELLER GOODREADS CHOICE AWARD WINNER FOR BEST\nMEMOIR/AUTOBIOGRAPHY FORBES TOP 5 BREAKTHROUGH BOOK OF 2015 In this\nintimate memoir of life beyond the camera, Connor Franta shares the lessons\nhe has learned on his journey from small-town boy to Internet sensation—so\nfar. Here, Connor offers a look at his Midwestern upbringing as one of four\nchildren in the home and one of five in the classroom; his struggles with\nidentity, body image, and sexuality in his teen years; and his decision to\nfinally pursue his creative and artistic passions in his early twenties,\nsetting up his thrilling career as a YouTube personality, philanthropist,\nentrepreneur, and tastemaker. Exploring his past with insight and humor,\nhis present with humility, and his future with hope, Connor reveals his\nprivate struggles while providing heartfelt words of wisdom for young\nadults. His words will resonate with anyone coming of age in the digital\nera, but at the core is a timeless message for people of all ages: don’t be\nafraid to be yourself and to go after what you truly want. This full-color\ncollection includes photography and childhood clippings provided by Connor\nand is a must-have for anyone inspired by his journey.\"\r\n7804,8326,18090147,Rene Denfeld,The Enchanted,https://images.gr-assets.com/books/1373991244l/18090147.jpg,3.96,11515,\"fiction, mystery\",\"The lady, an investigator who excels at uncovering information to save her\nclients from execution . . . The fallen priest, beaten down by his guilt\nover a terrible sin and its tragic consequences . . . The warden, a kind\nman within a cruel system . . . The mute prisoner, sensing what others\ncannot in what he calls \"\"this enchanted place\"\" . . . The enchanted place is\nan ancient stone prison. Two outsiders walk here: a woman known only as the\nlady, and a fallen priest. The lady comes to the prison when she has a job\nto do. She's skilled at finding the secrets that get men off death row.\nThis gift threatens her career—and complicates her life—when she takes on\nthe case of York, a killer whose date of execution looms. York is different\nfrom the lady's former clients: he wants to die. Going against the\ncondemned man's wishes, the lady begins her work. What she uncovers about\nYork's birth and upbringing rings chillingly familiar. In York's shocking\nand shameful childhood, the lady sees the shadows of her own. The lady is\nwatched by a death row inmate who finds escape in the books he reads from\nthe prison library and by reimagining the world he inhabits—a world of\nmajestic golden horses that stampede underground and of tiny men who hammer\naway inside stone walls. He is not named, nor do we know his crime. But he\nlistens. He listens to York's story. He sees the lady fall in love with the\npriest and wonders how such warmth is possible in these crumbling\ncorridors. As tensions in \"\"this enchanted place\"\" build, he sees the\ncorruption and the danger. And he waits as the hour of his own destiny\napproaches. The Enchanted is a magical novel about redemption, the poetry\nthat can exist within the unfathomable, and the human capacity to transcend\nand survive even the most nightmarish reality. Beautiful and unexpected,\nthis is a memorable story.\"\r\n7805,8327,7116709,Paul  Hoffman,The Left Hand of God ,https://images.gr-assets.com/books/1257742712l/7116709.jpg,3.66,10638,\"fantasy, fiction\",The Left Hand of God Paul  Hoffman\r\n7806,8328,17332564,Katie Cotugno,How to Love,https://images.gr-assets.com/books/1366904609l/17332564.jpg,3.73,12515,\"contemporary, romance\",\"For fans of Sarah Dessen and John Green, How to Love is a breathtaking\ndebut about a couple who falls in love . . . twice. Before: Reena Montero\nhas loved Sawyer LeGrande for as long as she can remember. But he's never\nnoticed that Reena even exists . . . until one day, impossibly, he does.\nReena and Sawyer fall in messy, complicated love. But then Sawyer\ndisappears without a word, leaving a devastated—and pregnant—Reena behind.\nAfter: Almost three years have passed, and there's a new love in Reena's\nlife: her daughter. Reena's gotten used to life without Sawyer, but just as\nsuddenly as he disappeared, he turns up again. Reena wants nothing to do\nwith him, though she'd be lying if she said his being back wasn't stirring\nsomething in her. After everything that's happened, can Reena really let\nherself love Sawyer LeGrande again?\"\r\n7807,8329,7062,Adam Gopnik,Paris to the Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345313l/7062.jpg,3.75,11065,\"travel, memoir\",\"Revisiting a recurring American obsession with the French capital, the\nauthor takes a look at Paris and what it means to Americans as he describes\nhis own relationship with the city.\"\r\n7808,8330,8720917,Jenny Downham,You Against Me,https://images.gr-assets.com/books/1311064228l/8720917.jpg,3.7,15118,\"romance, contemporary\",You Against MeJenny Downham\r\n7809,8331,343718,Ann M. Martin,A Dog's Life: Autobiography of a Stray,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198703l/343718.jpg,4.18,11112,\"fiction, fantasy\",A Dog's Life: Autobiography of a StrayAnn M. Martin\r\n7810,8332,153783,Tamora Pierce,The Will of the Empress,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390187660l/153783.jpg,4.15,16730,\"fantasy, fiction\",\"For years the Empress of Namorn has pressed her young cousin, Lady\nSandrilene fa Toren, to visit her vast lands within the Empire's borders,\nand at long last she agrees in what turns out to be quite the interesting\nvisitation.\"\r\n7811,8333,15823426,\"Tyler Hamilton, Daniel Coyle\",\"The Secret Race: Inside the Hidden World of the Tour de France: Doping, Cover-ups, and Winning at All Costs\",https://images.gr-assets.com/books/1344963275l/15823426.jpg,4.32,8711,\"sports, nonfiction\",\"The Secret Race: Inside the Hidden World of the Tour de France: Doping, Cover-ups, and Winning at All CostsTyler Hamilton, Daniel Coyle\"\r\n7812,8334,3757,Ian Fleming,Dr. No,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428348040l/3757.jpg,3.76,10569,\"fiction, thriller\",\"When James Bond is attacked on the island of Jamaica, he suspects the man\nbehind it is Dr. Julius No, a reclusive megalomaniac with steel pincers for\nhands.\"\r\n7813,8335,18090150,\"Isabel Allende, Oliver Brock, Frank Wynne\",El juego de Ripper,https://images.gr-assets.com/books/1422871316l/18090150.jpg,3.24,8919,\"mystery, fiction\",\"El juego de RipperIsabel Allende, Oliver Brock, Frank Wynne\"\r\n7814,8336,74862,Samad Behrangi,ماهی سیاه کوچولو,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170869052l/74862._SX318_.jpg,4.11,5364,\"fiction, philosophy\",ماهی سیاه کوچولوSamad Behrangi\r\n7815,8337,74406,Robertson Davies,Fifth Business,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170852646l/74406.jpg,4.04,11651,\"fiction, classics\",\"Ramsay is a man twice born, a man who has returned from the hell of the\nbattle-grave at Passchendaele in World War I decorated with the Victoria\nCross and destined to be caught in a no man's land where memory, history,\nand myth collide. As Ramsay tells his story, it begins to seem that from\nboyhood, he has exerted a perhaps mystical, perhaps pernicious, influence\non those around him. His apparently innocent involvement in such innocuous\nevents as the throwing of a snowball or the teaching of card tricks to a\nsmall boy in the end prove neither innocent nor innocuous. Fifth Business\nstands alone as a remarkable story told by a rational man who discovers\nthat the marvelous is only another aspect of the real.\"\r\n7816,8338,2324124,\"Alan    Richardson, Karen Tack\",\"Hello, Cupcake!: Irresistibly Playful Creations Anyone Can Make\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442609590l/2324124._SX318_.jpg,4.05,10653,\"cookbooks, nonfiction\",\"An imaginative array of unique cupcake designs explains how to use snack\nitems and common candies to create a variety of confectionery masterpieces\nto suit any occasion, from a big-top circus cupcake tier for a child's\nbirthday, to a white cupcake Christmas wreath, ghost chocolate cupcakes,\nturkey cupcake place cards, or sausage and pepperoni pizza cupcakes for\nApril Fool's Day. Original.\"\r\n7817,8340,41958,Maeve Binchy,Nights of Rain and Stars,https://images.gr-assets.com/books/1355496059l/41958.jpg,3.67,12365,\"fiction, romance\",\"In a small Greek island village, local residents and a group of\ninternational travelers are brought together by sudden tragedy, in a story\nof friendship, dreams, fears, and complicated relationships forever altered\nby shared experiences. Reprint.\"\r\n7818,8341,9529502,Lincoln Peirce,Big Nate on a Roll,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348187631l/9529502.jpg,4.32,9873,\"fiction, comics\",Big Nate on a RollLincoln Peirce\r\n7819,8342,12546674,Catherine Bybee,Wife by wednesday,https://images.gr-assets.com/books/1355031471l/12546674.jpg,3.77,10586,\"romance, contemporary\",\"The New York Times, USA Today, and Wall Street Journal bestselling novel\nthat launches Bybee's popular Weekday Brides series A wife by Wednesday...a\nlove for a lifetime Blake Harrison: Rich, titled, and charming...and in\nneed of a wife by Wednesday. Blake turns to Sam Elliot, who isn't the\nbusinessman he expected. Instead, Blake is faced with Samantha Elliot,\nbeautiful and feisty with a voice men call 1-900 numbers to hear. Samantha\nElliot: Owner of matchmaking firm Alliance and not on the marital\nmenu...that is, until Blake offers her ten million dollars for a one-year\ncontract. And there's nothing indecent about this proposal. The money will\nreally help with her family's medical bills. All Samantha will need to do\nis keep her attraction to her new husband to herself and avoid his bed. But\nBlake's toe-curling kisses and sexy charm prove too difficult for Sam to\nresist. It was a marriage contract that planned for everything...except\nfalling in love.\"\r\n7820,8343,824318,\"Dick Riley, Pam McAllister, Bruce Cassiday\",\"The  Bedside, Bathtub and Armchair Companion to Agatha Christie\",https://images.gr-assets.com/books/1409153866l/824318.jpg,4.23,10356,\"crime, mystery\",\"Over 400,000 copies sold! If you are a mystery buff, an Agatha Christie\nfan, an occasional Christie reader or an acquaintance of any of the above,\nthis book is for you and all your fortunate friends The Bedside, Bathtub &\nArmchair Companion to Agatha Christie, on the 25th anniversary of Agatha\nChristie's death, continues as a grand salute to the queen of mysteries. It\nis filled with wonderful and surprising things about her books, her\ncharacters, the movies and plays based on them, and Dame Agatha herself.\nOriginal contributions by some sixty writers celebrate the Christie touch.\nTake your pick among thse intriguing features and speculations: -Surviving\nan English country weekend - if you had the advice of Hercule Poirot - A\nguide to the Christie poisions, as well as the cruder methods of genteel\nmayhem - The \"\"other\"\" Agatha Christie who wrote romantic novels - A murder\nvictim's (!) first-person account of a Christie Mystery Weekend - The\nHercule Poirot Double-Crostic and other puzzles That's a taste. There's\nmuch more - and witty plot summaries of all Christie's novels, plays, and\nmany of her short stories. (But no endings, of course!) This treasury is\nmore than entertainment - it is also a personal reference work for Christie\nfans. And there are scores of movie posters, film stills, illustrations and\na Christie mystery map, too.\"\r\n7821,8345,12988016,Kresley Cole,\"Shadow's Claim (The Dacians, #1)\",https://images.gr-assets.com/books/1336161703l/12988016.jpg,4.28,17866,\"paranormal, romance\",\"Shadow's Claim (The Dacians, #1)Kresley Cole\"\r\n7822,8346,17910544,Kelly Corrigan,Glitter and Glue,https://images.gr-assets.com/books/1403166272l/17910544.jpg,3.76,10841,\"memoir, nonfiction\",\"The author of the best-selling The Middle Place presents an account of her\nperspectives on motherhood, which have been shaped by her job as a nanny\nfor a grieving Australian family and her character-testing experiences with\nher daughters.\"\r\n7823,8347,61834,\"Walter Lord, Nathaniel Philbrick\",A Night to Remember,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440174850l/61834._SY475_.jpg,4,11475,\"nonfiction, classics\",\"Recounts the demise of the \"\"unsinkable\"\" Titanic, the massive luxury liner\nthat housed extravagances such as a French \"\"sidewalk cafe\"\" and a grand\nstaircase, but failed to provide enough lifeboats for the 2,207 passengers\non board.\"\r\n7824,8348,6944566,Brady Udall,The Lonely Polygamist,https://images.gr-assets.com/books/1459640976l/6944566.jpg,3.5,9773,\"fiction, contemporary\",The Lonely PolygamistBrady Udall\r\n7825,8349,13061,Carl Hiaasen,Stormy Weather,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435608425l/13061._SY475_.jpg,3.94,11452,\"fiction, mystery\",\"A hilarious new novel of greed and corruption from the bestselling author\nof Strip Tease. The story focuses on southern Florida at the height of the\ntourist season, when a ferocious hurricane hits--luring con artists,\ncarpetbaggers, and would-be saviours like hyenas to the lion's kill.\n\"\"Hiaasen (hilself is a one-man force of nature\"\".--Variety. Major\nadvertising, including key city radio and print ads in The New York Times\nBook Review and Miami Herald.\"\r\n7826,8350,6303733,\"Richard Russo, Arthur Morey\",That Old Cape Magic,https://images.gr-assets.com/books/1320442735l/6303733.jpg,3.3,12095,\"fiction, ebooks\",\"Jack and Joy Griffin's lives seem to always come back to Cape Cod, where\nthey honeymooned, as they experience the ups and downs of life, including\nthe deaths of Jack's parents, the marriage of their daughter and Jack and\nJoy's divorce. Reprint. A best-selling book.\"\r\n7827,8351,6634409,Maya Banks,The Darkest Hour,https://images.gr-assets.com/books/1327927870l/6634409.jpg,4.17,19619,\"romance, suspense\",\"When he receives a note indicating that his wife Rachel, who he thought was\ndead, is alive and in trouble, ex-Navy SEAL Ethan Kelly sets off on a\ndangerous mission to rescue her, braving a jungle and a deadly drug cartel.\"\r\n7828,8352,10108463,Donald Ray Pollock,The Devil All the Time,https://images.gr-assets.com/books/1320561517l/10108463.jpg,4.09,9620,\"fiction, horror\",\"Presents a dark tale set in rural southern Ohio and West Virginia between\nWorld War II and the 1960s that follows the experiences of tormented and\nviolent individuals whose struggles culminate in the adult patterns of an\norphaned son.\"\r\n7829,8353,18111281,Saroo Brierley,A Long Way Home,https://images.gr-assets.com/books/1371983160l/18111281.jpg,4.12,12404,\"memoir, biography\",A Long Way HomeSaroo Brierley\r\n7830,8355,11690,Orhan Pamuk,İstanbul: Hatıralar ve Şehir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290334l/11690.jpg,3.77,9919,\"biography, travel\",İstanbul: Hatıralar ve ŞehirOrhan Pamuk\r\n7831,8356,287655,\"Clare Naylor, Mimi Hare\",The Second Assistant: A Tale from the Bottom of the Hollywood Ladder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442366160l/287655._SY475_.jpg,3.52,11268,\"fiction, romance\",\"A former congressional intern who takes a job as second assistant at a\npowerful Hollywood talent agency, Elizabeth Miller copes with the trials,\ntribulations, and dirty dealings of the film world.\"\r\n7832,8357,1990,\"Charles Dickens, Patricia Ingham, Hablot Knight Browne\",The Life and Adventures of Martin Chuzzlewit,https://images.gr-assets.com/books/1334392783l/1990.jpg,3.82,11784,\"classics, fiction\",\"Set partly in the United States, this novel includes a searing satire on\nmid-nineteenth-century America. Martin Chuzzlewit is the story of two\nChuzzlewits, Martin and Jonas, who have inherited the characteristic\nChuzzlewit selfishness. It contrasts their diverse fates: moral redemption\nand worldly success for one and increasingly desperate crime for the other.\nIn her Introduction to this new edition, Patricia Ingham discusses how, in\nwriting a story that was meant only to recommend \"\"goodness and innocence,\"\"\nDickens succeeded in exploring \"\"the intertwining of moral sensibility and\nbrutality.\"\"\"\r\n7833,8358,71870,John Marsden,\"Darkness, Be My Friend\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590306l/71870._SY475_.jpg,4.11,12447,\"fiction, thriller\",\"As survivors of an enemy invasion of their homeland, Ellie and her friends\nreturn to Australia as guides for soldiers from New Zealand who plan an\nattack on the Wirrawee airfield. Reprint.\"\r\n7834,8359,6251012,Stephen King,UR,https://images.gr-assets.com/books/1295433746l/6251012.jpg,3.65,13518,\"horror, fiction\",URStephen King\r\n7835,8360,133488,James A. Michener,Tales of the South Pacific,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425684588l/133488.jpg,4.03,11999,\"fiction, classics\",\"The tale upon which the Broadway musical \"\"South Pacific\"\" is based explores\nthe people and beauty of the Pacific's Coral Islands as seen though the\neyes of a young naval lieutenent.\"\r\n7836,8361,5845,V.S. Naipaul,A Bend in the River,https://images.gr-assets.com/books/1353691563l/5845.jpg,3.77,11011,\"fiction, classics\",\"In an African country that has suffered revolution and civil war and that\nis headed by a man of almost insane energy and crudity, one restless,\nreflective, and isolated villager and his friends uneasily submit to the\ntide of events\"\r\n7837,8362,25852784,Matthew Desmond,Evicted: Poverty and Profit in the American City,https://images.gr-assets.com/books/1453060710l/25852784.jpg,4.48,15165,\"nonfiction, history\",\"Based on years of embedded fieldwork and painstakingly gathered data, this\nmasterful book transforms our understanding of extreme poverty and economic\nexploitation while providing fresh ideas for solving a devastating,\nuniquely American problem.\"\r\n7838,8363,13565676,Sarah J. Maas,The Assassin and the Empire,https://images.gr-assets.com/books/1341877441l/13565676.jpg,4.42,17277,\"fantasy, romance\",\"Celaena Sardothien is the assassin with everything: a place to call her\nown, the love of handsome Sam, and, best of all, freedom. Yet, she won't be\ntruly free until she is far away from her old master, Arobynn Hamel;\nCelaena must take one last daring assignment that will liberate her\nforever. But having it all, means you have a lot to lose . . . This fourth\nfantastic e-novella gives readers an inside look at the characters who\nappear in the full-length novel THRONE OF GLASS. Don't miss out!\"\r\n7839,8364,17835773,Abbi Glines,Misbehaving,https://images.gr-assets.com/books/1415353706l/17835773.jpg,4.18,18648,\"romance, contemporary\",\"Escaping to Sea Breeze for the chance to blow off some steam, Jason hooks\nup with the town's resident wild child Jess, who is ready for some fun, but\nfalling in love is out of the question.\"\r\n7840,8365,21416690,Genevieve Cogman,The Invisible Library,https://images.gr-assets.com/books/1416823893l/21416690.jpg,3.73,12058,\"fantasy, fiction\",Series information from author's website.\r\n7841,8366,112322,Anne Tyler,Saint Maybe,https://images.gr-assets.com/books/1453274893l/112322.jpg,3.88,13134,\"fiction, contemporary\",\"Ian Bedloe's life is forever affected by an event that took place years\nbefore--the night, in 1967, when he told his older brother, Dan, that Dan's\nwife had been cheating on him and that the baby son Dan had come to love\nwas not his own\"\r\n7842,8368,541341,Mary Downing Hahn,Deep and Dark and Dangerous: A Ghost Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348351238l/541341.jpg,4.22,12839,\"mystery, horror\",\"When twelve-year-old Ali spends the summer with her aunt and cousin at the\nfamily's vacation home, she stumbles upon a secret that her mother and aunt\nhave been hiding for over thirty years. Reprint.\"\r\n7843,8369,3130430,\"Melissa Anelli, J.K. Rowling\",\"Harry, A History: The True Story of a Boy Wizard, His Fans, and Life Inside the Harry Potter Phenomenon\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442437397l/3130430._SY475_.jpg,4.09,12308,\"nonfiction, fantasy\",\"Harry, A History: The True Story of a Boy Wizard, His Fans, and Life Inside the Harry Potter PhenomenonMelissa Anelli, J.K. Rowling\"\r\n7844,8370,3700085,Francisco X. Stork,Marcelo in the Real World,https://images.gr-assets.com/books/1328838330l/3700085.jpg,3.95,14651,\"contemporary, romance\",\"Marcelo Sandoval, a seventeen-year-old boy on the high-functioning end of\nthe autistic spectrum, faces new challenges, including romance and\ninjustice, when he goes to work for his father in the mailroom of a\ncorporate law firm.\"\r\n7845,8371,228199,Stephen King,\"The Green Mile, Part 4: The Bad Death of Eduard Delacroix\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556210860l/228199._SY475_.jpg,4.52,12958,\"horror, fiction\",\"Time runs out for one of the inmates on death row at Cold Mountain\npenitentiary.\"\r\n7846,8372,8343444,Tere Liye,Daun Yang Jatuh Tak Pernah Membenci Angin,https://images.gr-assets.com/books/1485759293l/8343444.jpg,3.97,9974,\"romance, fiction\",Daun Yang Jatuh Tak Pernah Membenci AnginTere Liye\r\n7847,8373,623976,Brandon Sanderson,Alcatraz Versus the Evil Librarians,https://images.gr-assets.com/books/1332516621l/623976.jpg,3.87,13474,\"fantasy, fiction\",\"On his thirteenth birthday, foster child Alcatraz Smedry receives a bag of\nsand which is immediately stolen by the evil Librarians who are trying to\ntake over the world, and Alcatraz is introduced to his grandfather and his\nown special talent, and told that he must use it to save civilization.\"\r\n7848,8374,13163846,Jeffrey Brown,Darth Vader and Son,https://images.gr-assets.com/books/1392020416l/13163846.jpg,4.14,14005,\"comics, fiction\",\"What if Darth Vader took an active role in raising his son? What if \"\"Luke,\nI am your father\"\" was just a stern admonishment from an annoyed dad? In\nthis hilarious and sweet comic reimagining, Darth Vader is a dad like any\nother—except with all the baggage of being the Dark Lord of the Sith.\nCelebrated artist Jeffrey Brown's delightful illustrations give classic\nStar Wars® moments a fresh twist, presenting the trials and joys of\nparenting through the lens of a galaxy far, far away. Life lessons include\nlightsaber batting practice, using the Force to raid the cookie jar, Take\nYour Child to Work Day on the Death Star (\"\"Er, he looks just like you, Lord\nVader!\"\"), and the special bond shared between any father and son.\"\r\n7849,8375,2068,Daniel C. Dennett,Darwin's Dangerous Idea: Evolution and the Meanings of Life,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412689162l/2068.jpg,4.03,11090,\"science, philosophy\",\"Offers a wider perspective on Darwin's scientific theory of natural\nselection, explaining how it extends beyond biology, analyzing current\ncontroversies over the origins of life and inherent biases, and challenging\npopular philosophies\"\r\n7850,8376,68452,Andrzej Sapkowski,Pani Jeziora,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208556022l/68452.jpg,4.28,9902,\"fantasy, fiction\",Pani JezioraAndrzej Sapkowski\r\n7851,8377,244102,C.J. Box,Open Season,https://images.gr-assets.com/books/1255789732l/244102.jpg,3.91,10659,\"mystery, fiction\",\"As Wyoming game warden Joe Pickett races against time to save an endangered\nspecies, he finds himself plunged into a deadly mystery that soon threatens\nhis family and the life he loves. A first novel. 15,000 first printing.\"\r\n7852,8378,12926132,Shannon Hale,Palace of Stone,https://images.gr-assets.com/books/1345726316l/12926132.jpg,3.95,16023,\"fantasy, fiction\",\"Miri goes from student to queen's lady-in-waiting in the highly anticipated\nsequel to the 2006 Newbery-Honoree, PRINCESS ACADEMY\"\r\n7853,8379,22725443,Jill Alexander Essbaum,Hausfrau,https://images.gr-assets.com/books/1419180448l/22725443.jpg,3.24,9949,\"fiction, contemporary\",HausfrauJill Alexander Essbaum\r\n7854,8380,386142,Amanda Brown,Legally Blonde,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389052907l/386142.jpg,3.68,11094,\"fiction, romance\",\"The hilarious novel about a not-so-dumb blonde that inspired the\nblockbuster movie--including what's next for Elle Woods.\"\r\n7855,8381,21414439,Susan Dennard,Truthwitch,https://images.gr-assets.com/books/1428675822l/21414439.jpg,3.93,17752,\"fantasy, romance\",\"Two best friends use their magic to save the world from war and corruption\nin Susan Dennard's New York Times bestselling YA fantasy, Truthwitch. On a\ncontinent ruled by three empires, some are born with a \"\"witchery,\"\" a\nmagical skill that sets them apart from others. In the Witchlands, there\nare almost as many types of magic as there are ways to get in trouble—as\ntwo desperate young women know all too well. Safiya is a Truthwitch, able\nto discern truth from lie. It’s a powerful magic that many would kill to\nhave on their side, especially amongst the nobility to which Safi was born.\nSo Safi must keep her gift hidden, lest she be used as a pawn in the\nstruggle between empires. Iseult, a Threadwitch, can see the invisible ties\nthat bind and entangle the lives around her—but she cannot see the bonds\nthat touch her own heart. Her unlikely friendship with Safi has taken her\nfrom life as an outcast into one of reckless adventure, where she is a\ncool, wary balance to Safiya’s hotheaded impulsiveness. Safiya and Iseult\njust want to be free to live their own lives, but war is coming to the\nWitchlands. With the help of the cunning Prince Merik (a Windwitch and\nprivateer) and the hindrance of a Bloodwitch bent on revenge, the friends\nmust fight emperors, princes, and mercenaries alike, who will stop at\nnothing to get their hands on a Truthwitch.\"\r\n7856,8382,4813,Gavin Menzies,1421: The Year China Discovered America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274909l/4813.jpg,3.58,10200,\"history, nonfiction\",\"On March 8, 1421, the largest fleet the world had ever seen set sail from\nChina to \"\"proceed all the way to the ends of the earth to collect tribute\nfrom the barbarians beyond the seas.\"\" When the fleet returned home in\nOctober 1423, the emperor had fallen, leaving China in political and\neconomic chaos. The great ships were left to rot at their moorings and the\nrecords of their journeys were destroyed. Lost in the long, self-imposed\nisolation that followed was the knowledge that Chinese ships had reached\nAmerica seventy years before Columbus and had circumnavigated the globe a\ncentury before Magellan. And they colonized America before the Europeans,\ntransplanting the principal economic crops that have since fed and clothed\nthe world.\"\r\n7857,8383,13513205,\"Hope Larson, Madeleine L'Engle\",A Wrinkle in Time: The Graphic Novel,https://images.gr-assets.com/books/1334801023l/13513205.jpg,3.95,12337,\"fantasy, comics\",\"The world already knows Meg and Charles Wallace Murry, Calvin O'Keefe, and\nthe three Mrs--Who, Whatsit, and Which--the memorable and wonderful\ncharacters who fight off a dark force and save our universe in the Newbery\naward-winning classic A Wrinkle in Time. But in 50 years of publication,\nthe book has never been illustrated. Now, Hope Larson takes the classic\nstory to a new level with her vividly imagined interpretations of tessering\nand favorite characters like the Happy Medium and Aunt Beast. Perfect for\nold fans and winning over new ones, this graphic novel adaptation is a\nmust-read.\"\r\n7858,8384,225343,Nora Ephron,Heartburn,https://images.gr-assets.com/books/1386647458l/225343.jpg,3.57,12503,\"fiction, memoir\",\"Cookbook author Rachel Samstat--out of analysis and seven months pregnant--\ndiscovers that her husband is into analysis and an affair, and suffers six\nweeks of intensive heartburn\"\r\n7859,8385,13528417,Liza Klaussmann,Tigers in Red Weather,https://images.gr-assets.com/books/1336156424l/13528417.jpg,3.42,10800,\"fiction, mystery\",Tigers in Red WeatherLiza Klaussmann\r\n7860,8386,92375,Ken Follett,Hornet Flight,https://images.gr-assets.com/books/1309202400l/92375.jpg,3.83,11362,\"fiction, thriller\",\"In June 1944, with the war not going well for the British, the lives of\nthree people on both sides of the English Channel intertwine as one of them\nmakes a discovery that could change the course of the war. Reprint.\"\r\n7861,8387,39801,\"Henning Mankell, Laurie Thompson\",Den vita lejoninnan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169315341l/39801._SY475_.jpg,3.84,10678,\"mystery, crime\",\"Den vita lejoninnanHenning Mankell, Laurie Thompson\"\r\n7862,8388,28485,\"Margaret Weis, Tracy Hickman\",\"Elven Star (The Death Gate Cycle, #2)\",https://images.gr-assets.com/books/1324543424l/28485.jpg,3.98,13576,\"fantasy, fiction\",\"Leaving his own realm to journey to the steamy rain forests of Pryan, Haplo\nsows the seeds of chaos in anticipation of his people's invasion of the\njungle world\"\r\n7863,8389,52872,Sherman Alexie,Flight: A Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440251533l/52872._SY475_.jpg,3.89,12016,\"fiction, fantasy\",\"On the verge of committing an act of violence, a troubled, orphaned Indian\nteenager finds himself hurtled through time and into various bodies, before\nreturning to himself, forever altered by his experiences.\"\r\n7864,8390,12073,\"Ludwig Wittgenstein, G.E.M. Anscombe\",Philosophische Untersuchungen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440047548l/12073._SY475_.jpg,4.23,9403,\"philosophy, nonfiction\",\"Philosophische UntersuchungenLudwig Wittgenstein, G.E.M. Anscombe\"\r\n7865,8391,9915707,Carrie Jones,Endure,https://images.gr-assets.com/books/1330073413l/9915707.jpg,4.08,16128,\"fantasy, paranormal\",\"It’s all-out war (and no-holds-barred romance!) in the fourth book in\nCarrie Jones’s bestselling series\"\r\n7866,8392,23545800,Claire Contreras, Kaleidoscope Hearts,https://images.gr-assets.com/books/1421251011l/23545800.jpg,4.06,15396,\"romance, contemporary\", Kaleidoscope HeartsClaire Contreras\r\n7867,8393,68524,Bernard Cornwell,Enemy of God,https://images.gr-assets.com/books/1311985643l/68524.jpg,4.38,8664,\"fantasy, fiction\",\"Follows the life of King Arthur as he settles uneasily into Mordred's\nthrone, with his kingdom still unbalanced by Merlin's ceaseless quest for a\npriceless treasure and threatened by enemies posing as friends\"\r\n7868,8395,18246727,Tarryn Fisher,Mud Vein,https://images.gr-assets.com/books/1379536072l/18246727.jpg,4.11,16593,\"romance, contemporary\",\"When reclusive novelist Senna Richards wakes up on her thirty-third\nbirthday, everything has changed. Caged behind an electrical fence, locked\nin a house in the middle of the snow, Senna is left to decode the clues to\nfind out why she was taken. If she wants her freedom, she has to take a\nclose look at her past. But, her past has a heartbeat...and her kidnapper\nis nowhere to be found. With her survival hanging by a thread, Senna soon\nrealizes this is a game. A dangerous one. Only the truth can set her free.\"\r\n7869,8396,579696,\"Scott Dikkers, Maria Schneider, John Krewson, Robert Siegel, David Javerbaum, Todd Hanson, Carol Kolb, Mike Loew, Tim Harrod\",Our Dumb Century: The Onion Presents 100 Years of Headlines from America's Finest News Source,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195124l/579696.jpg,4.18,10999,\"fiction, history\",\"Our Dumb Century: The Onion Presents 100 Years of Headlines from America's Finest News SourceScott Dikkers, Maria Schneider, John Krewson, Robert Siegel, David Javerbaum, Todd Hanson, Carol Kolb, Mike Loew, Tim Harrod\"\r\n7870,8397,294044,James Rollins,Ice Hunt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347585309l/294044.jpg,4.04,12302,\"thriller, fiction\",\"Carved into a moving island of ice twice the size of the United States, Ice\nStation Grendel has been abandoned for more than seventy years. The twisted\nbrainchild of the finest minds of the former Soviet Union, it was designed\nto be inaccessible and virtually invisible. But an American undersea\nresearch vessel has inadvertently pulled too close—and something has been\nsighted moving inside the allegedly deserted facility, something whose\nsurvival defies every natural law. And now, as scientists, soldiers,\nintelligence operatives, and unsuspecting civilians are drawn into\nGrendel's lethal vortex, the most extreme measures possible will be\nundertaken to protect its dark mysteries—because the terrible truths locked\nbehind submerged walls of ice and steel could end human life on Earth.\"\r\n7871,8398,29484,Laurell K. Hamilton,Strange Candy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357477l/29484._SY475_.jpg,3.74,14468,\"fiction, fantasy\",\"A collection of short fiction features \"\"The Girl Who Was Infatuated with\nDeath,\"\" an Anita Blake, Vampire Hunter story, as well as \"\"House of\nWizards,\"\" \"\"Stealing Souls,\"\" and \"\"Those Who Seek Forgiveness.\"\"\"\r\n7872,8399,79016,Jeffrey Archer,First Among Equals,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389154944l/79016.jpg,3.87,11171,\"fiction, thriller\",\"Four members of Britain's Parliament vie, over a thirty-year period, for\nsuccess, power, and the office of Prime Minister, and only time will reveal\nthe winner. Reprint.\"\r\n7873,8400,53200,Stephen Hawking,Black Holes and Baby Universes and Other Essays,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924312l/53200.jpg,4.09,9477,\"science, nonfiction\",\"A collection of essays from the noted scientist includes personal\nreminiscences, a call for better science education, and explorations of the\norigins of the universe\"\r\n7874,8401,179033,Stephen R. Donaldson,\"The Chronicles of Thomas Covenant, the Unbeliever\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920669l/179033.jpg,3.78,12122,\"fantasy, fiction\",\"The acclaimed fantasy epic, together in one volume.\"\r\n7875,8402,8074967,Nalini Singh,Archangel's Blade,https://images.gr-assets.com/books/1327877499l/8074967.jpg,4.26,20804,\"paranormal, romance\",\"Vampire Dmitri, an archangel's right hand man, investigates the murder of a\nyoung vampire, which leads him to Honor, a dangerous woman who has recently\nsurvived a brutal attack by a rogue vampire, in whom he awakens violent\nemotions.\"\r\n7876,8403,31795,Will Durant,The Story of Philosophy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438471992l/31795._SY475_.jpg,4.09,8618,\"philosophy, history\",\"Examines the history of speculative thought by focusing on such dominant\npersonalities as Plato, Bacon, Spinoza, Kant, Schopenhauer, and Nietzsche\"\r\n7877,8404,110763,Elaine Pagels,The Gnostic Gospels,https://images.gr-assets.com/books/1403187711l/110763.jpg,3.93,11216,\"history, nonfiction\",\"A study of the Gnostic texts, which describe the same people and events\nportrayed in the New Testament but from a different perspective, reveals\nwhy their suppression was essential to the development of the Christian\nchurch\"\r\n7878,8405,242157,Jonathan Tropper,How to Talk to a Widower,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173052631l/242157.jpg,3.97,9884,\"fiction, contemporary\",\"Twenty-nine-year-old widower Doug Parker finds his life spiraling out of\ncontrol as he struggles to come to terms with grief, love, family, and\nsuburbia while dealing with a bossy, pregnant twin sister who urges him to\nbegin dating again, a younger sister planning her wedding, a mother dealing\nwith her ailing husband, and a hostile teenage stepson. Reprint. 60,000\nfirst printing.\"\r\n7879,8406,841973,Edgar Rice Burroughs,The Gods of Mars,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348188943l/841973.jpg,3.86,10859,\"fantasy, classics\",The Gods of MarsEdgar Rice Burroughs\r\n7880,8407,17570105,\"Vince Flynn, Kyle Mills, Armand Schultz\",The Survivor,https://images.gr-assets.com/books/1443534014l/17570105.jpg,4.2,6945,\"fiction, thriller\",\"The SurvivorVince Flynn, Kyle Mills, Armand Schultz\"\r\n7881,8409,18467818,Roxane Gay,An Untamed State,https://images.gr-assets.com/books/1395145925l/18467818.jpg,4.05,10809,\"fiction, contemporary\",\"Her perfect life is shattered when Mireille is kidnapped by armed men in\nfront of her father's estate in Haiti and she must endure the horrors and\ntorments of her captors while her father inexplicably resists paying for\nher ransom.\"\r\n7882,8410,2176735,Tim Winton,Breath,https://images.gr-assets.com/books/1317792624l/2176735.jpg,3.8,10233,\"fiction, contemporary\",BreathTim Winton\r\n7883,8411,164723,American Psychiatric Association,Diagnostic and Statistical Manual of Mental Disorders DSM-IV-TR (Text Revision),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389919214l/164723.jpg,3.87,10114,\"psychology, nonfiction\",\"Since the DSM-IV® was published in 1994, we've seen many advances in our\nknowledge of psychiatric illness. This Text Revision incorporates\ninformation culled from a comprehensive literature review of research about\nmental disorders published since DSM-IV® was completed in 1994. Updated\ninformation is included about the associated features, culture, age, and\ngender features, prevalence, course, and familial pattern of mental\ndisorders. The DSM-IV-TR® brings this essential diagnostic tool up-to-date,\nto promote effective diagnosis, treatment, and quality of care. Now you can\nget all the essential diagnostic information you rely on from the DSM-IV®\nalong with important updates not found in the 1994 edition. Stay current\nwith important updates to the DSM-IV-TR®: Benefit from new research into\nSchizophrenia, Aspergers Disorder, and other conditions Utilize additional\ninformation about the epidemiology and other facets of DSM conditions\nUpdate ICD-9-CM codes implemented since 1994 (including Conduct Disorder,\nDementia, Somatoform Disorders) DSM-IV-TR®, the handheld version of the\nDiagnostic and Statistical Manual of Mental Disorders, Fourth Edition, Text\nRevision, is now available for both Palm OS and PocketPC handhelds. This\nText Revision incorporates information culled from a comprehensive\nliterature review of research about mental disorders and includes\nassociated features, culture, age, and gender features, prevalence, course,\nand familial pattern of mental disorders. And with Skyscape's patented\nsmARTlink? technology, DSM-IV-TR can easily cross-index with other clinical\nand drug prescription products from Skyscape to provide a powerful and\nintegrated source of clinical information that you can carry with you\nwherever you go!\"\r\n7884,8412,104737,Laurie R. King,A Monstrous Regiment of Women,https://images.gr-assets.com/books/1334169424l/104737.jpg,4.04,15363,\"mystery, fiction\",A Monstrous Regiment of WomenLaurie R. King\r\n7885,8413,40271,Orson Scott Card,Alvin Journeyman (Tales of Alvin Maker #4),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256345l/40271.jpg,3.72,12663,\"fantasy, fiction\",Alvin Journeyman (Tales of Alvin Maker #4)Orson Scott Card\r\n7886,8414,17262236,Elizabeth Wein,Rose Under Fire,https://images.gr-assets.com/books/1368219053l/17262236.jpg,4.13,13526,\"fiction, history\",Rose Under FireElizabeth Wein\r\n7887,8415,511240,\"Kiyohiko Azuma, あずま きよひこ\",よつばと! 1,https://images.gr-assets.com/books/1284943754l/511240.jpg,4.34,12754,\"comics, fiction\",\"Presents the exploits of Yotsuba, a young girl of alien origins who has\nbeen adopted by a single father, as she befuddles friends and neighbors and\nlearns about life.\"\r\n7888,8416,35476,\"Black Elk, John G. Neihardt\",Black Elk Speaks,https://images.gr-assets.com/books/1328819916l/35476.jpg,4.13,8888,\"history, biography\",\"Reveals the life of Lakota healer Nicholas Black Elk as he led his tribe's\nbattle against white settlers who threatened their homes and buffalo herds,\nand describes the victories and tragedies at Little Bighorn and Wounded\nKnee. Reprint.\"\r\n7889,8417,6326920,Ben Mezrich,\"The Accidental Billionaires: The Founding of Facebook: A Tale of Sex, Money, Genius and Betrayal\",https://images.gr-assets.com/books/1320527444l/6326920.jpg,3.5,9400,\"biography, business\",\"Relates the story behind the founding of Facebook by Harvard University\nundergraduates, and describes how conflicting ideas for the future of the\nsite destroyed the friendship of co-founders Mark Zuckerberg and Eduardo\nSaverin.\"\r\n7890,8418,1050383,Jeffery Deaver,The Sleeping Doll,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348064162l/1050383.jpg,3.92,11895,\"mystery, thriller\",The Sleeping DollJeffery Deaver\r\n7891,8419,252999,Christine Feehan,Dark Legend,https://images.gr-assets.com/books/1330425833l/252999.jpg,4.33,16196,\"paranormal, romance\",\"Waking years after burying himself and his vampire twin in a Paris\ncemetery, Gabriel must again hunt his brother, who has also awoken, and the\nonly person who can protect him from becoming a vampire too is the healer\nFrancesca.\"\r\n7892,8420,107017,\"Jeph Loeb, Jim Lee, Scott Williams\",Batman Hush #1,https://images.gr-assets.com/books/1460914534l/107017.jpg,4.1,31527,\"comics, fiction\",\"Unaware of being watched, Batman pursues villains including Killer Croc and\nPoison Ivy, and discovers that Poison Ivy's latest plan will require that\nhe ally himself with Catwoman in order to defeat his old friend Superman.\"\r\n7893,8421,13112023,Heather Gudenkauf,One Breath Away,https://images.gr-assets.com/books/1333763497l/13112023.jpg,3.98,13179,\"thriller, crime\",One Breath AwayHeather Gudenkauf\r\n7894,8422,2967316,Greg Iles,The Devil's Punchbowl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421371209l/2967316.jpg,4.05,10626,\"mystery, thriller\",\"A deep river pit in Natchez, Mississippi, reputed to be the hiding spot for\nJean Lafitte's hidden treasure and a dumping ground for numerous murder\nvictims, becomes the site of a dangerous showdown for Penn Cage.\"\r\n7895,8423,47944,Sara Ryan,Empress of the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425519439l/47944.jpg,3.73,11076,\"romance, fiction\",\"While away for the summer at a school for the gifted, Nicola Lancaster\nfinds a special friend in a girl from North Carolina, Battle Hall Davies,\nbut when her feelings for Battle take an unexpected turn into the area of\nlove, Nic begins to question what she is feeling. Reprint.\"\r\n7896,8424,2637138,Jim Butcher,Welcome to the Jungle,https://images.gr-assets.com/books/1320418408l/2637138.jpg,4.09,13833,\"fantasy, comics\",\"Harry Dresden, the only professional wizard listed in the Chicago phone\nbook, takes on supernatural villains out to turn the world upside down, in\nan original graphic novel adventure.\"\r\n7897,8427,8389671,Alice Hoffman,The Red Garden,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293576l/8389671.jpg,3.69,13236,\"fiction, fantasy\",\"Traces the multi-generational story of wintry Blackwell town through the\nexperiences of such characters as a wounded Civil War solider who is saved\nby a passionate neighbor and a woman who meets a fiercely human historical\nfigure. By the best-selling author of The Third Angel. Reprint.\"\r\n7898,8428,42407,Jean de Brunhoff,Le Roi Babar,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922352l/42407.jpg,4.18,14296,\"fiction, classics\",\"Le roi Babar rentre de son voyage de noces chargé de nombreux cadeaux pour\ntous. Il les donnera lorsque Célesteville sera construite. Tous se mettent\nau travail dans la joie et la bonne humeur. Babar les récompense comme\npromis et une grande fête est organisée pour l'occasion. Peu à peu la vie\ns'organise dans Célesteville. Et même si parfois des malheurs surgissent,\nles éléphants de Célesteville ne se découragent jamais.\"\r\n7899,8429,13623777,Gordon Korman,Ungifted,https://images.gr-assets.com/books/1340757270l/13623777.jpg,4,11956,\"fiction, contemporary\",UngiftedGordon Korman\r\n7900,8430,160194,Michael Frayn,Noises Off,https://images.gr-assets.com/books/1320486520l/160194.jpg,4.18,12709,\"fiction, classics\",\"Slapstick comedy about a group of second-rate actors rehearsing a Broadway-\nbound play. When they finally get their performances right, everything else\nstarts going wrong.\"\r\n7901,8431,372384,Harlan Coben,The Final Detail,https://images.gr-assets.com/books/1300230473l/372384.jpg,4,11989,\"mystery, fiction\",\"When Myron Bolitar's best friend and partner is arrested for the murder of\na client--a fallen baseball star attempting a comeback--Myron and his\nsidekick Win plunge into their most difficult and bizarre case yet.\"\r\n7902,8432,3972,Dan Simmons,Olympos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216654l/3972.jpg,3.93,11393,\"fiction, fantasy\",\"Beneath the gaze of the gods, the mighty armies of Greece and Troy met in\nfierce and glorious combat, scrupulously following the text set forth in\nHomer's timeless narrative. But that was before twenty-first-century\nscholar Thomas Hockenberry stirred the bloody brew, causing an enraged\nAchilles to join forces with his archenemy Hector and turn his murderous\nwrath on Zeus and the entire pantheon of divine manipulators; before the\nswift and terrible mechanical creatures that catered for centuries to the\npitiful idle remnants of Earth's human race began massing in the millions,\nto exterminate rather than serve. And now all bets are off.\"\r\n7903,8433,3872,Tom Standage,A History of the World in 6 Glasses,https://images.gr-assets.com/books/1415681601l/3872.jpg,3.74,10473,\"history, nonfiction\",\"An offbeat history of the world traces the story of humankind from the\nStone Age to the twenty-first century from the perspective of six different\ndrinks--beer, wine, spirits, coffee, tea, and cola--describing their\npervasive influence during pivotal eras of world history, from humankind's\nadoption of agriculture to the advent of globalization. Reprint. 40,000\nfirst printing.\"\r\n7904,8435,71622,Robert Hicks,The Widow of the South,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388418705l/71622.jpg,3.75,12419,\"fiction, history\",The Widow of the SouthRobert Hicks\r\n7905,8437,10790276,\"Randy Alcorn, Alex Kendrick, Stephen Kendrick\",Courageous,https://images.gr-assets.com/books/1406505682l/10790276.jpg,4.53,9409,\"christian, fiction\",\"Dedicated law enforcement officers Adam Mitchell and Nathan Hayes face a\ndifferent kind of challenge when they become fathers, but as their children\nbegin to drift farther away, and tragedy hits home, they must find a way to\nbecome closer to God.\"\r\n7906,8438,6345760,\"Kate DiCamillo, Yoko Tanaka\",The Magician's Elephant,https://images.gr-assets.com/books/1320520056l/6345760.jpg,3.82,14726,\"fantasy, fiction\",\"The Magician's ElephantKate DiCamillo, Yoko Tanaka\"\r\n7907,8439,31178,Anne Tyler,Back When We Were Grownups,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202509l/31178.jpg,3.51,13416,\"fiction, contemporary\",\"Beck Davitch looks back on her thirty-year marriage to Joe and her role as\na mother and manager of the Open Arms, wondering if she is living the life\nshe was meant to live and reconsidering her dedication to the family\nbusiness.\"\r\n7908,8440,23289,James Joyce,The Dead,https://images.gr-assets.com/books/1456153413l/23289.jpg,4.09,11279,\"classics, fiction\",The DeadJames Joyce\r\n7909,8441,5607622,\"محمد المنسي قنديل, Mohamed Mansi Qandil\",قمر على سمرقند,https://images.gr-assets.com/books/1288464594l/5607622.jpg,3.9,5070,\"fiction, ebooks\",\"قمر على سمرقندمحمد المنسي قنديل, Mohamed Mansi Qandil\"\r\n7910,8443,7831742,Bree Despain,The Lost Saint,https://images.gr-assets.com/books/1327883674l/7831742.jpg,4.04,15328,\"paranormal, fantasy\",\"When Grace Divine receives a frightening phone call from her brother Jude,\nwhom she then cannot find, she knows she must turn to her supernatural\npowers, even though it threatens her relationship with her boyfriend\nDaniel.\"\r\n7911,8444,4946005,Dean Koontz,Relentless,https://images.gr-assets.com/books/1320399029l/4946005.jpg,3.71,12416,\"fiction, suspense\",\"Unable to let go of a poor review of his latest best-seller, novelist Cubby\nGreenwich endeavors to track down the reclusive critic only to trigger a\nterrifying chain of events that reveal the critic's sociopathic tendencies\nas well as the violent nature of the critic's mother. Reprint. A #1 best-\nseller.\"\r\n7912,8445,73906,Stephen R. Lawhead,Taliesin. Book I of the Pendragon Cycle,https://images.gr-assets.com/books/1170843303l/73906.jpg,3.98,12435,\"fiction, fantasy\",Taliesin. Book I of the Pendragon CycleStephen R. Lawhead\r\n7913,8447,18323154,حسن كمال,المرحوم,https://images.gr-assets.com/books/1376392753l/18323154.jpg,3.51,8937,\"horror, fiction\",المرحومحسن كمال\r\n7914,8448,92956,Orson Scott Card,The Memory of Earth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390186790l/92956.jpg,3.56,13107,\"fantasy, fiction\",\"The first volume in the Homecoming saga from bestselling author Orson Scott\nCard, The Memory of Earth High above the planet Harmony, the Oversoul\nwatches. Its task, programmed so many millennia ago, is to guard the human\nsettlement on this planet--to protect this fragile remnant of Earth from\nall threats. To protect them, most of all, from themselves. The Oversoul\nhas done its job well. There is no war on Harmony. There are no weapons of\nmass destruction. There is no technology that could lead to weapons of war.\nBy control of the data banks, and subtle interference in the very thoughts\nof the people, the artificial intelligence has fulfilled its mission. But\nnow there is a problem. In orbit, the Oversoul realizes that it has lost\naccess to some of its memory banks, and some of its power systems are\nfailing. And on the planet, men are beginning to think about power, wealth,\nand conquest. Homecoming series The Memory of Earth The Call of Earth The\nShips of Earth Earthfall Earthborn\"\r\n7915,8449,6751356,Dolen Perkins-Valdez,Wench,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348551327l/6751356.jpg,3.68,12250,\"fiction, history\",\"Slave mistresses Lizzie, Reenie and Sweet travel to a resort in Ohio each\nyear with their white masters, until Mawu shows up and encourages the three\nothers to escape, forcing them to choose between freedom and leaving their\nfriends and families--and the emotional and psychological ties that bind\nthem to their masters. A first novel. 25,000 first printing.\"\r\n7916,8450,3556419,Karen Chance,Curse the Dawn,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204854l/3556419.jpg,4.16,18032,\"paranormal, fantasy\",\"When most of the supernatural power players want to see her six feet under,\nCassandra Palmer, an all-powerful Pythia, needs the protection of the\nVampire Senate, which forces her into an alliance with sexy master vampire\nMircea.\"\r\n7917,8451,26661,Beth Moore,Praying God's Word: Breaking Free From Spiritual Strongholds,https://images.gr-assets.com/books/1266101982l/26661.jpg,4.45,9530,\"religion, nonfiction\",Praying God's Word: Breaking Free From Spiritual StrongholdsBeth Moore\r\n7918,8452,5946,Michael Ondaatje,In the Skin of a Lion,https://images.gr-assets.com/books/1405864361l/5946.jpg,3.88,11289,\"fiction, contemporary\",\"Arriving in Toronto in the 1920s from the Canadian wilderness, Patrick\nLewis experiences a series of adventures as he makes a living searching for\na missing millionaire, tunnels beneath Lake Ontario, and falls in love.\nReprint. 17,500 first printing.\"\r\n7919,8453,22131009,Jodi Picoult,Where There's Smoke,https://images.gr-assets.com/books/1401375667l/22131009.jpg,3.56,7802,\"fiction, paranormal\",\"Bestselling author Jodi Picoult is a masterful storyteller, who “writes\nwith a fine touch, a sharp eye for detail, and a firm grasp of the delicacy\nand complexity of human relationships” (The Boston Globe). Now, in this\noriginal short story, available exclusively as an eBook, Picoult introduces\nSerenity Jones, one of the fascinating characters from her eagerly awaited\nnew novel, Leaving Time. Even as a child, Serenity Jones knew she possessed\nunusual psychic gifts. Now, decades later, she’s an acclaimed medium and\nhost of her own widely viewed TV show, where she delivers messages to the\nliving from loved ones who have passed. Lately, though, her efforts to\nboost ratings and garner fame have compromised her clairvoyant instincts.\nWhen Serenity books a young war widow to appear as a guest, the episode\nquickly unravels, stirring up a troubling controversy. And as she tries to\nundo the damage—to both her reputation and her show—Serenity finds that\npride comes at a high price. Praise for Jodi Picoult “Picoult is a rare\nwriter who delivers, book after book, a winning combination of the literary\nand the commercial.”—Entertainment Weekly “Picoult is a solid, lively\nstoryteller.”—The New York Times “If Picoult were a general, she would be\nPatton; if a sports franchise, the New York Yankees; if a natural\nphenomenon, the sunrise.”—Tampa Tribune\"\r\n7920,8454,5559,\"Jack Welch, John A. Byrne, Mike Barnicle\",Jack: Straight from the Gut,https://images.gr-assets.com/books/1297699934l/5559.jpg,3.79,9781,\"biography, business\",\"The CEO of General Electric looks back on his distinguished career with the\ncorporation and shares his personal philosophy of business and innovative\nmanagerial style. (Business & Finance)\"\r\n7921,8455,30125,Shel Silverstein,The Missing Piece Meets the Big O,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437926898l/30125._SX318_.jpg,4.32,9056,\"poetry, fiction\",\"The missing piece sat alone waiting for someone to come along and take it\nsomewhere.... The different ones it encounters - and what it discovers in\nits helplessness - are portrayed with simplicity and compassion in the\nwords and drawings of Shel Silverstein.\"\r\n7922,8456,44559,\"Milan Kundera, Aaron Asher\",Život je jinde,https://images.gr-assets.com/books/1327945876l/44559.jpg,3.95,8834,\"fiction, philosophy\",\"The author initially intended to call this novel The Lyrical Age. The\nlyrical age, according to Kundera, is youth, and this novel, above all, is\nan epic of adolescence; an ironic epic that tenderly erodes sacrosanct\nvalues: childhood, motherhood, revolution, and even poetry. Jaromil is in\nfact a poet. His mother made him a poet and accompanies him (figuratively)\nto his love bed and (literally) to his deathbed. A ridiculous and touching\ncharacter, horrifying and totally innocent (\"\"innocence with its bloody\nsmile\"\"!), Jaromil is at the same time a true poet. He's no creep, he's\nRimbaud. Rimbaud entrapped by the communist revolution, entrapped in a\nsomber farce.\"\r\n7923,8457,77477,Anna Quindlen,Blessings,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390372380l/77477.jpg,3.56,12480,\"fiction, contemporary\",\"When a teenage couple abandons their baby at the gate of the estate owned\nby Lydia Blessing, Skip Cuddy, the estate caretaker, decides to raise the\nchild himself, a decision that has a profound effect on the lives of\neveryone in the community, in a story of love, secrets, and redemption by\nthe author of Black and Blue. Reprint. 500,000 first printing.\"\r\n7924,8458,12900491,Gena Showalter,Wicked Nights,https://images.gr-assets.com/books/1320067374l/12900491.jpg,4.11,17942,\"paranormal, romance\",\"Zacharel, the leader of a powerful angelic army, lets nothing stand in his\nway of his anti-demon missions until he rescues Annabelle Miller from an\ninstitution for the criminally insane and from the demons who long to\npossess her.\"\r\n7925,8459,11237412,Pittacus Lore,Six's Legacy,https://images.gr-assets.com/books/1363281063l/11237412.jpg,4.08,13853,\"ebooks, fantasy\",\"I Am Number Four: The Lost Files: The Legacies contains three action-packed\nnovellas that give the heart-pounding backstories of some of your favorite\nLoriens. Originally published as the e-novellas Six's Legacy, Nine's\nLegacy, and The Fallen Legacies, now, for the first time ever, their\nbackstories are together in one volume. You know we're out there, living\namong you. You know we're waiting for our day to come. You have seen the\npower of our legacies. You know this is why they hunt us. You may think you\nknow our stories. You are wrong. We each have our own story. We know the\ntime has come to share them with you. Our legacies are your only hope.\"\r\n7926,8460,28760,Mercedes Lackey,Magic's Promise,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923597l/28760.jpg,4.2,16547,\"fantasy, fiction\",\"With King Randale stricken by a mysterious illness and the powerful Herald-\nMage Vanyel at the end of his strength, a neighboring kingdom is threatened\nby a magical holocaust\"\r\n7927,8463,3698601,Mark Bittman,Food Matters: A Guide to Conscious Eating with More Than 75 Recipes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348378773l/3698601.jpg,3.97,10408,\"cookbooks, nonfiction\",\"From the award-winning champion of culinary simplicity who gave us the\nbestselling How to Cook Everything and How to Cook Everything Vegetarian\ncomes Food Matters, a plan for responsible eating that's as good for the\nplanet as it is for your weight and your health. We are finally starting to\nacknowledge the threat carbon emissions pose to our ozone layer, but few\npeople have focused on the extent to which our consumption of meat\ncontributes to global warming. Think about it this way: In terms of energy\nconsumption, serving a typical family-of-four steak dinner is the rough\nequivalent of driving around in an SUV for three hours while leaving all\nthe lights on at home. Bittman offers a no-nonsense rundown on how\ngovernment policy, big business marketing, and global economics influence\nwhat we choose to put on the table each evening. He demystifies buzzwords\nlike “organic,” “sustainable,” and “local” and offers straightforward,\nbudget-conscious advice that will help you make small changes that will\nshrink your carbon footprint—and your waistline. Flexible, simple, and non-\ndoctrinaire, the plan is based on hard science but gives you plenty of\nleeway to tailor your food choices to your lifestyle, schedule, and level\nof commitment. Bittman, a food writer who loves to eat and eats out\nfrequently, lost thirty-five pounds and saw marked improvement in his blood\nlevels by simply cutting meat and processed foods out of two of his three\ndaily meals. But the simple truth, as he points out, is that as long as you\neat more vegetables and whole grains, the result will be better health for\nyou and for the world in which we live. Unlike most things that are\nvirtuous and healthful, Bittman's plan doesn't involve sacrifice. From\nSpinach and Sweet Potato Salad with Warm Bacon Dressing to Breakfast Bread\nPudding, the recipes in Food Matters are flavorful and sophisticated. A\nmonth's worth of meal plans shows you how Bittman chooses to eat and offers\nproof of how satisfying a mindful and responsible diet can be. Cheaper,\nhealthier, and socially sound, Food Matters represents the future of\nAmerican eating.\"\r\n7928,8464,60471,Rosamunde Pilcher,Coming Home,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347734548l/60471.jpg,4.27,11355,\"fiction, romance\",\"Against the backdrop of an elegant Cornwall mansion before World War II and\na vast continent-spanning canvas during the turbulent war years, this\ninvolving story tells of an extraordinary young woman's coming of age,\ncoming to grips with love and sadness, and in every sense of the term,\ncoming home... In 1935, Judith Dunbar is left behind at a British boarding\nschool when her mother and baby sister go off to join her father in\nSingapore. At Saint Ursula's, her friendship with Loveday Carey-Lewis\nsweeps her into the privileged, madcap world of the British aristocracy,\nteaching her about values, friendship, and wealth. But it will be the drama\nof war, as it wrenches Judith from those she cares about most, that will\nteach her about courage...and about love. Teeming with marvelous, memorable\ncharacters in a novel that is a true masterpiece, Rosamunde Pilcher's\nComing Home is a book to be savored, reread, and cherished forever.\"\r\n7929,8465,133767,\"Tim LaHaye, Jerry B. Jenkins\",Glorious Appearing: The End of Days,https://images.gr-assets.com/books/1402100211l/133767.jpg,3.96,10474,\"christian, fiction\",\"Antichrist has assembled the armies of the world in the Valley of Megiddo\nfor what he believes will be his ultimate triumph of the ages. With a\nvictory here he would ascend to the throne of God ...\"\r\n7930,8466,7824768,خالد الباتلي,ليتها تقرأ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1267871717l/7824768.jpg,3.04,9807,\"poetry, romance\",ليتها تقرأخالد الباتلي\r\n7931,8467,16158527,John Sandford,Silken Prey,https://images.gr-assets.com/books/1355077509l/16158527.jpg,4.16,10456,\"mystery, fiction\",\"Investigating the murder of a political fixer who had blackmailed his\nambitious heiress employer during a vicious smear campaign, Lucas Davenport\nfollows disturbing leads to the Minneapolis police department and a\nruthless woman who threatens his life. By the Pulitzer Prize-winning author\nof Stolen Prey. Reprint.\"\r\n7932,8469,251665,Anita Brookner,Hotel du Lac,https://images.gr-assets.com/books/1346713260l/251665.jpg,3.56,11066,\"fiction, contemporary\",\"Recounts the holiday of Edith Hope, meek, unmarried, and thirty-nine, who,\non the mend from a disastrous love affair, becomes intimately involved with\nher fellow guests at the Swiss Hotel du Lac\"\r\n7933,8470,151926,Pat Barker,The Ghost Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441850690l/151926._SY475_.jpg,4.11,11723,\"fiction, history\",\"Dr. William Rivers at the Craiglockhart War Hospital faces the moral\ndilemma of curing men like Lieutenant Billy Prior of shellshock so that\nthey can return to the fighting\"\r\n7934,8471,682793,Mark Twain,The Tragedy of Puddn'head Wilson,https://images.gr-assets.com/books/1473261603l/682793.jpg,3.74,11014,\"fiction, mystery\",The Tragedy of Puddn'head WilsonMark Twain\r\n7935,8472,208036,\"Aristotle, Joe Sachs\",τὰ μετὰ τὰ φυσικά,https://images.gr-assets.com/books/1355049704l/208036.jpg,4,10112,\"philosophy, classics\",\"τὰ μετὰ τὰ φυσικάAristotle, Joe Sachs\"\r\n7936,8473,15793231,Emily Murdoch,If You Find Me,https://images.gr-assets.com/books/1369597694l/15793231.jpg,4.06,13683,\"contemporary, fiction\",\"There are some things you can't leave behind . . . In If You Find Me by\nEmily Murdoch, a broken-down camper hidden deep in a national forest is the\nonly home fifteen year-old Carey can remember. The trees keep guard over\nher threadbare existence, with the one bright spot being Carey's younger\nsister, Jenessa, who depends on Carey for her very survival. All they have\nis each other, as their mentally ill mother comes and goes with greater\nfrequency. Until that one fateful day their mother has disappeared for\ngood, and two strangers arrive. Suddenly, the girls are taken from the\nwoods and thrust into a bright and perplexing new world of high school,\nclothes and boys. Now, Carey must face the truth of why her mother abducted\nher ten years ago, while haunted by a past that won't let her go . . . a\ndark past that hides many secrets, including the reason Jenessa hasn't\nspoken a word in over a year. Carey knows she must keep her sister close,\nand her secrets even closer, or risk watching her new life come crashing\ndown.\"\r\n7937,8474,13065,Carl Hiaasen,Native Tongue,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442404083l/13065._SY475_.jpg,3.94,10717,\"fiction, mystery\",\"Now reissued--one of the most beloved novels by the \"\"New York Times\"\"\nbestselling author in which dedicated, if somewhat demented,\nenvironmentalists battle sleazy real estate developers in the Florida Keys.\"\r\n7938,8475,128940,Sandra Dallas,The Persian Pickle Club,https://images.gr-assets.com/books/1311998766l/128940.jpg,3.78,13732,\"fiction, mystery\",\"It is the 1930s, and hard times have hit Harveyville, Kansas, where the\ncrops are burning up, and there's not a job to be found. For Queenie Bean,\na young farm wife, a highlight of each week is the gathering of the Persian\nPickle Club, a group of local ladies dedicated to improving their minds,\nexchanging gossip, and putting their quilting skills to good use. When a\nnew member of the club stirs up a dark secret, the women must band together\nto support and protect one another. In her magical, memorable novel, Sandra\nDallas explores the ties that unite women through good times and bad.\"\r\n7939,8476,6763961,Rachel Vincent,My Soul to Save,https://images.gr-assets.com/books/1255722532l/6763961.jpg,3.98,18243,\"paranormal, fantasy\",My Soul to SaveRachel Vincent\r\n7940,8477,351023,Jill Murphy,The Worst Witch,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349047328l/351023.jpg,3.94,13003,\"fantasy, fiction\",\"Mildred Hubble's first term at Miss Cackle's Academy for Witches starts\nbadly when, unlike her classmates, she can't control her broom, her kitten,\nor her spells.\"\r\n7941,8478,981463,\"Cynthia Rylant, Stephen Gammell\",The Relatives Came,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348676911l/981463.jpg,4.2,13099,\"fiction, travel\",\"The relatives come to visit from Virginia and everyone has a wonderful\ntime.\"\r\n7942,8479,125502,Siri Hustvedt,What I Loved,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347721158l/125502.jpg,4.02,9974,\"classics, psychology\",\"The long friendship between art historian Leo Hertzberg and artist Bill\nWechsler leads to a growing involvement between their two families as they\nlive in the same New York building, share a summer home in Vermont, and\ndeal with the joys, sorrows, tragedies, and loss that transform their\nlives. Reader's Guide available. Reprint. 30,000 first printing.\"\r\n7943,8480,4212386,Andrea Hirata,Maryamah Karpov: Mimpi-mimpi Lintang,https://images.gr-assets.com/books/1271605823l/4212386.jpg,3.6,8399,\"fiction, romance\",\"Keberanian dan keteguhan hati telah membawa Ikal pada banyak tempat dan\nperistiwa. Sudut-sudut dunia telah dia kunjungi demi menemukan A Ling. Apa\npun Ikal lakukan demi perempuan itu. Keberaniannya ditantang ketika tanda-\ntanda keberadaan A Ling tampak. Dia tetap mencari, meski tanda-tanda itu\nmasih samar.Dapatkah keduanya bertemu kembali? [Mizan, Bentang, Novel,\nInspirasi, Indonesia]\"\r\n7944,8481,11133791,Ellen Hopkins,Tilt,https://images.gr-assets.com/books/1346263814l/11133791.jpg,4.2,12141,\"poetry, contemporary\",TiltEllen Hopkins\r\n7945,8482,2747288,Todd J. McCaffrey,Dragonheart (Dragonriders of Pern),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435343903l/2747288._SY475_.jpg,4.14,10996,\"fantasy, fiction\",\"When young Fiona is asked to take on the role of Weyrwoman, she soon\ndiscovers the challenges of her new position, from unexpected perils to the\npossibility of losing her own dragon to the sickness that has claimed\nothers.\"\r\n7946,8484,7980,Brian Jacques,The Pearls of Lutra,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388786457l/7980.jpg,3.99,15605,\"fantasy, fiction\",\"The latest installment of the best-selling Redwall series features the\nquest of both an evil emperor and a determined young hedgehog to claim a\nmagnificent set of rose-colored pearls. Reprint. AB. NYT.\"\r\n7947,8485,4224060,\"Ken Robinson, Lou Aronica\",The Element: A New View of Human Capacity,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347351470l/4224060.jpg,3.89,9074,\"nonfiction, psychology\",\"Describes the inspiring potential of living in accordance with humanity's\ntalents and passions, drawing on the examples of renowned cultural artists\nwhile making recommendations for transforming education, business, and\ncommunities.\"\r\n7948,8486,24611425,Geraldine Brooks,The Secret Chord,https://images.gr-assets.com/books/1428406962l/24611425.jpg,3.55,9228,\"fiction, religion\",The Secret ChordGeraldine Brooks\r\n7949,8488,17443673,Amy Harmon,A Different Blue,https://images.gr-assets.com/books/1364846607l/17443673.jpg,4.22,14183,\"romance, contemporary\",\"Blue Echohawk doesn't know who she is. She doesn't know her real name or\nwhen she was born. Abandoned at two and raised by a drifter, she didn't\nattend school until she was ten years old. At nineteen, when most kids her\nage are attending college or moving on with life, she is just a senior in\nhigh school. With no mother, no father, no faith, and no future, Blue\nEchohawk is a difficult student, to say the least. Tough, hard, and overtly\nsexy, she is the complete opposite of the young British teacher who decides\nhe is up for the challenge, and takes the troublemaker under his wing. This\nis the story of a nobody who becomes somebody. It is the story of an\nunlikely friendship, where hope fosters healing and redemption becomes\nlove. But falling in love can be hard when you don't know who you are.\nFalling in love with someone who knows exactly who they are and exactly why\nthey can't love you back might be impossible.\"\"\"\r\n7950,8489,2159007,Chuck Klosterman,Downtown Owl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348123580l/2159007.jpg,3.53,9666,\"fiction, contemporary\",\"New York Times bestselling author and “oneofAmerica’stop cultural critics”\n(Entertainment Weekly) Chuck Klosterman’s debut novel brilliantly captures\nthe charm and dread of small town life—now available in trade paperback.\nSomewhere in rural North Dakota, there is a fictional town called Owl. They\ndon’t have cable. They don’t really have pop culture, but they do have\ngrain prices and alcoholism. People work hard and then they die. But that’s\nnot nearly as awful as it sounds; in fact, sometimes it’s perfect. Mitch\nHrlicka lives in Owl. He plays high school football and worries about his\nweirdness, or lack thereof. Julia Rabia just moved to Owl. A history\nteacher, she gets free booze and falls in love with a self-loathing bison\nfarmer. Widower and local conversationalist Horace Jones has resided in Owl\nfor seventy-three years. They all know each other completely, except that\nthey’ve never met. But when a deadly blizzard— based on an actual storm\nthat occurred in 1984—hits the area, their lives are derailed in unex-\npected and powerful ways. An unpretentious, darkly comedic story of how it\nfeels to exist in a community where local mythology and violent reality are\npretty much the same thing, Downtown Owl is “a satisfying character study\nand strikes a perfect balance between the funny and the pro- found”\n(Publishers Weekly).\"\r\n7951,8490,797094,William C. Dietz,The Flood,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388298645l/797094.jpg,3.69,9709,\"fiction, fantasy\",\"The humans aboard the spaceship the Pillar of Autumn crash-land onto a\nmysterious ringworld, where they discover a secret weapon, the Halo\nconstruct, built to stop the force known as the Flood, as they battle the\nCovenant who worship the Halo.\"\r\n7952,8491,92846,Terry Brooks,Antrax,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210781l/92846.jpg,3.94,12947,\"fantasy, fiction\",\"Walker Boh, the last of the Druids, and his friends embark on a journey\ninto a mysterious land in search of forbidden magic and encounter an\nincredibly powerful force known as \"\"Antrax.\"\" Reprint.\"\r\n7953,8492,676,Billy Collins,Sailing Alone Around the Room: New and Selected Poems,https://images.gr-assets.com/books/1403183272l/676.jpg,4.24,10999,\"poetry, fiction\",\"Offers a collection of witty, emotional, and direct poems by the popular\nand critically acclaimed poet, including selections from his four previous\ncollections and new works such as \"\"Man Listening to a Disc,\"\" about\nheadphones.\"\r\n7954,8493,12924253,Anna Carey,Once,https://images.gr-assets.com/books/1321127130l/12924253.jpg,3.9,15315,\"romance, fantasy\",\"When you’re being hunted, who can you trust? For the first time since\nescaping from her School, Eve can finally sleep soundly. She is living in\nCalifia, protected from the terrifying fate that awaits orphaned girls in\nThe New America in the year 2041. But she was forced to abandon Caleb, the\nboy she loves, wounded and alone at Califia’s gates. When Eve gets word\nthat Caleb is in trouble, she sets out into the wild again to rescue him,\nonly to be captured and brought to the City of Sand. Trapped inside the\ncity walls, Eve uncovers a shocking secret about her past—and must confront\nthe harsh reality of her future. In this breathless sequel to Eve, Anna\nCarey returns to her tale of romance, adventure, and sacrifice in a world\nthat is both wonderfully strange and chillingly familiar.\"\r\n7955,8494,17970255,Samantha Young,Into the Deep,https://images.gr-assets.com/books/1373117694l/17970255.jpg,4.09,19288,\"romance, contemporary\",\"Charley unexpectedly runs into Jake, the bad boy who broke her heart, four\nyears after their breakup. Now she must decide if she's ready to trust him\nagain and take a chance on the greatest love she's ever known.\"\r\n7956,8495,61909,Lois McMaster Bujold,Mirror Dance,https://images.gr-assets.com/books/1297831387l/61909.jpg,4.32,14391,\"fiction, fantasy\",\"Attempting to live a normal life after a pre-natal accident leaves him in a\ndelicate state after he is born, Miles Vorkosigan learns that he has a\njealous clone brother who is plotting to kill and replace him. Reprint.\"\r\n7957,8496,384457,\"Jennifer Crusie, Bob Mayer\",Agnes and the Hitman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388277284l/384457.jpg,3.93,15848,\"romance, mystery\",\"Rescued during a break-in by a hit man sent by the mob to protect her, food\nwriter Agnes Crandall finds her situation further complicated by a missing\ncache of money that becomes a key factor in a Southern mafia wedding.\"\r\n7958,8497,6493321,\"Apostolos Doxiadis, Christos H. Papadimitriou, Alecos Papadatos, Annie Di Donna\",Logicomix: An Epic Search for Truth,https://images.gr-assets.com/books/1312031956l/6493321.jpg,4.01,11004,\"history, biography\",\"Recounts, in graphic novel format, the life of Bertrand Russell,\nmathematician and philospher, and his life-long struggle to achieve perfect\nlogic and ultimate truth.\"\r\n7959,8498,7992363,Laurent Binet,HHhH,https://images.gr-assets.com/books/1490084601l/7992363.jpg,4.07,7765,\"fiction, history\",HHhHLaurent Binet\r\n7960,8499,22693222,Kate Andersen Brower,The Residence: Inside the Private World of the White House,https://images.gr-assets.com/books/1406045992l/22693222.jpg,3.75,8841,\"history, nonfiction\",\"A remarkable history with elements of both In the President’s Secret\nService and The Butler, The Residence offers an intimate account of the\nservice staff of the White House, from the Kennedys to the Obamas.\nAmerica’s First Families are unknowable in many ways. No one has insight\ninto their true character like the people who serve their meals and make\ntheir beds every day. Full of stories and details by turns dramatic,\nhumorous, and heartwarming, The Residence reveals daily life in the White\nHouse as it is really lived through the voices of the maids, butlers,\ncooks, florists, doormen, engineers, and others who tend to the needs of\nthe President and First Family. These dedicated professionals maintain the\nsix-floor mansion’s 132 rooms, 35 bathrooms, 28 fireplaces, three\nelevators, and eight staircases, and prepare everything from hors d’oeuvres\nfor intimate gatherings to meals served at elaborate state dinners. Over\nthe course of the day, they gather in the lower level’s basement kitchen to\nshare stories, trade secrets, forge lifelong friendships, and sometimes\neven fall in love. Combining incredible first-person anecdotes from\nextensive interviews with scores of White House staff members—many speaking\nfor the first time—with archival research, Kate Andersen Brower tells their\nstory. She reveals the intimacy between the First Family and the people who\nserve them, as well as tension that has shaken the staff over the decades.\nFrom the housekeeper and engineer who fell in love while serving President\nReagan to Jackie Kennedy’s private moment of grief with a beloved staffer\nafter her husband’s assassination to the tumultuous days surrounding\nPresident Nixon’s resignation and President Clinton’s impeachment battle,\nThe Residence is full of surprising and moving details that illuminate day-\nto-day life at the White House.\"\r\n7961,8500,17455815,Jennifer L. Armentrout,Stone Cold Touch,https://images.gr-assets.com/books/1394110942l/17455815.jpg,4.38,18262,\"paranormal, fantasy\",\"As Layla's half-demon, half-gargoyle powers evolve, the demon prince Roth\nreturns to bring her news that could change her world forever.\"\r\n7962,8501,16127237,Lori Nelson Spielman,The Life List,https://images.gr-assets.com/books/1354593069l/16127237.jpg,4.08,8301,\"fiction, romance\",The Life ListLori Nelson Spielman\r\n7963,8502,11864728,Kelley Armstrong,The Rising,https://images.gr-assets.com/books/1340062496l/11864728.jpg,4.13,17452,\"paranormal, fantasy\",The RisingKelley Armstrong\r\n7964,8503,80890,\"Thomas Mann, John E. Woods, T.J. Reed\",Buddenbrooks: Verfall einer Familie,https://images.gr-assets.com/books/1337128414l/80890.jpg,4.13,12049,\"classics, fiction\",\"A new translation of Mann's classic story of four generations of a wealthy\nbourgeois family in northern Germany captures the triumphs and tragedies,\nsuccesses and failures, relationships, loves, and ordinary events of\nmiddle-class life\"\r\n7965,8504,231560,Anton Chekhov,Дядя Ваня,https://images.gr-assets.com/books/1443337895l/231560.jpg,3.84,11418,\"classics, fiction\",Дядя ВаняAnton Chekhov\r\n7966,8505,10844125,\"James Patterson, Richard DiLallo\",The Christmas Wedding,https://images.gr-assets.com/books/1327889901l/10844125.jpg,3.32,12736,\"fiction, romance\",\"The tree is decorated, the cookies are baked, and the packages are wrapped,\nbut the biggest celebration this Christmas is Gaby Summerhill's wedding.\nSince her husband died three years ago, Gaby's four children have drifted\napart, each consumed by the turbulence of their own lives. They haven't\ncelebrated Christmas together since their father's death, but when Gaby\nannounces that she's getting married--and that the groom will remain a\nsecret until the wedding day--she may finally be able to bring them home\nfor the holidays. But the wedding isn't Gaby's only surprise--she has one\nmore gift for her children, and it could change all their lives forever.\nWith deeply affecting characters and the emotional twists of a James\nPatterson thriller, The Christmas Wedding is a fresh look at family and the\nmagic of the season.\"\r\n7967,8506,18392,T.A. Barron,The Lost Years of Merlin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263143l/18392.jpg,3.97,12146,\"fiction, fantasy\",\"A young boy who has no identity nor memory of his past washes ashore on the\ncoast of Wales and finds his true name after a series of fantastic\nadventures.\"\r\n7968,8507,6080889,Maria V. Snyder,Storm Glass,https://images.gr-assets.com/books/1327899480l/6080889.jpg,3.95,18218,\"fantasy, romance\",\"As a glassmaker and a magician-in-training, Opal Cowen understands trial by\nfire. Now it's time to test her mettle. Someone has sabotaged the\nStormdancer clan's glass orbs, killing their most powerful magicians.\"\r\n7969,8508,11229,\"Iris Murdoch, Mary Kinzie\",\"The Sea, the Sea\",https://images.gr-assets.com/books/1302898449l/11229.jpg,3.9,10849,\"fiction, classics\",\"After a brilliant and fulfilling career, Charles Arrowby revels in his\nperfect refuge, an isolated home by the sea, but soon his complex past\nmakes unbidden visits.\"\r\n7970,8510,103815,Margaret Peterson Haddix,\"Among the Enemy (Shadow Children, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390277896l/103815.jpg,4.16,14836,\"fiction, fantasy\",\"Among the Enemy (Shadow Children, #6)Margaret Peterson Haddix\"\r\n7971,8511,13502970,Amy A. Bartol,Incendiary,https://images.gr-assets.com/books/1352268218l/13502970.jpg,4.43,12468,\"paranormal, fantasy\",\"Cold, fine drops of rain fall softly on my cheeks as I emerge from the\ndarkness of the ship's interior to the gray, overcast sky of the main deck.\nPulling my dark pea coat tighter to my body, the wind lifts red tendrils of\nmy hair. I walk slowly to the railing overlooking the water. I catch my\nfirst sight of the Irish coastline; its craggy landscape makes me shiver in\ndread. I find it difficult to imagine now how the Gancanagh had made this\ntheir home for so long without anyone realizing it. The cold, moss-covered\nedifices practically scream their presence. As I study the shadows between\nthe falling-down stone, I imagine creeping shapes of undead Faeries\ngrasping the rock, waiting for our ship to draw nearer to their position.\nTipping my face up, I let the rain wash over me. It bathes away the frigid\nsweat of fear that has broken on my brow. \"\"You don't know how fiercely\nbeautiful you are, do you?\"\" A quiet voice behind me asks, causing me to\nstiffen and fix my eyes on the rocks along the shoreline.\"\r\n7972,8512,769658,L. Ron Hubbard,Battlefield Earth: A Saga of the Year 3000,https://images.gr-assets.com/books/1349316024l/769658.jpg,3.49,11671,\"fiction, fantasy\",\"Jonnie Goodboy Tyler ventures out of the tiny community of humans barely\nsurviving in the Rocky Mountain refuge and finds himself challenging the\nPsychlos, the malignant and oppressive alien conquerors of Earth.\"\r\n7973,8513,129565,Dave Ramsey,Financial Peace Revisited,https://images.gr-assets.com/books/1309201190l/129565.jpg,4.31,10914,\"nonfiction, business\",\"A practical financial guide covers such topics as eliminating debt,\ninvesting simply, making sound financial decisions, and revolutionizing\nrelationsips with the flow of money.\"\r\n7974,8514,43352,Mary Higgins Clark,I'll Be Seeing You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522789846l/43352._SY475_.jpg,3.79,13804,\"mystery, fiction\",\"A young news reporter on assignment at a large metropolitan hospital is\nhorrified when she sees that a young Jane Doe whom paramedics have failed\nto save has a face identical to her own\"\r\n7975,8516,12349,Ruth Ozeki,My Year of Meats,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388513889l/12349.jpg,3.93,10297,\"fiction, contemporary\",\"Strange things happen in the love lives of two women--one a Japanese-\nAmerican filmmaker from New York, the other a Japanese housewife--linked by\na Japanese television show sponsored by an American meat exporter. A first\nnovel. Reprint. Tour.\"\r\n7976,8517,60925,Octavia E. Butler,Fledgling,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441479816l/60925._SY475_.jpg,3.9,11792,\"fantasy, fiction\",\"At Edmund Brooke’s insistence, his ten-year-old daughter, Vitorina, leaves\nthe closed world of her old and strait-laced great-aunts and their\nPortuguese mansion—complete with chapel—and journeys to a boarding school\nin England. Edmund readily accepts the offer of a golfing acquaintance to\nact as chaperone for Tory. Once on the train, however, Tory learns quite a\nbit more about Mr. Darlan, her traveling companion, than he would prefer.\nAnd so Tory is called upon to let down her facade of meekness and to reveal\nher real nature: she is shrewd, imaginative and—as the situation calls\nfor—brave. She is determined to outmaneuver this malicious mastermind,\nDarlan, and his French female accomplice who poses as his sister. She\nreaches London without her companion. But as planned, Tory is met by her\nfather’s delightful distant cousin and ex-fiancée, Philippa. Immediately\ndrawn to Philippa, Tory goes so far as to fake chicken pox in order to stay\nlonger with Philippa. This gives her time to settle some loose ends\ninvolving Mr. Darlan’s plot and to create one of her own: for wasn’t Tory’s\nfather Philippa’s great love and isn’t he all alone now?\"\r\n7977,8518,11665750,Kristen Ashley,At Peace,https://images.gr-assets.com/books/1327913073l/11665750.jpg,4.49,23308,\"romance, contemporary\",\"Violet Winters once had it all but lost it when her husband was murdered by\na criminal madman. During a cold winter night Violet has to leave her warm\nbed to tell her neighbor to turn the music down. And that's when she meets\nsinister, scarred, scarily attractive security specialist, Joe Callahan.She\nwants to deny it, but Violet can't beat back the hunger she feels for Joe\nso she gives in again and again. Feeling it himself, Joe feeds Vi's hunger,\nbreaking his own rules to keep her in his bed.Even though Violet had only\none man in her life, she's sure Joe is giving her the signals and Vi\ndecides she's ready to take a second chance at life and, maybe, love. But\nViolet doesn't know the dark secrets in Joe's past, secrets so soul-\nwrenching, they've drained him dry. With nothing left to give, Joe's\ndetermined to live his life alone and he breaks Violet's heart.Crushed by\nJoe's betrayal, Violet comes to terms with the fact that, no matter what\nsignals he gave, Joe was not theirs to win. But Violet's husband's murderer\nis obsessed with her and heartbreak again haunts the door of the Winters\nhome. When it does Joe is forced to face the knowledge that he can't fight\nViolet's pull, she's under his skin and filled him full to bursting.Joe\nneeds to win her back and put his life on the line to keep Violet safe.\nBut, having had it all once, can Violet endure losing Joe?\"\r\n7978,8519,401876,\"Samuel Shem, John Updike\",The House of God,https://images.gr-assets.com/books/1320486672l/401876.jpg,3.95,8812,\"fiction, classics\",\"An intern becomes disillusioned with the medical establishment when he sees\nhis fellow interns fall for the illusions that destroy a doctor's ability\nto relate to and really care for his patients.\"\r\n7979,8520,18045473,\"Ayşe Kulin, John W. Baker\",Nefes Nefese,https://images.gr-assets.com/books/1370617022l/18045473.jpg,3.81,6870,\"fiction, history\",\"Traditional Chinese edition of Last Train to Istanbul (Original Turkish\ntitle: Nefes Nefese). Disowned by their families, the last of the royal of\nthe Ottoman Empire and a Jewish man married and went to live in France\nright before WWII. The historical novel is based on a true story and\nhighlights the courageous effort by Turkish diplomats who saved the lives\nof hundreds of Jews caught in Nazi occupied France. In Chinese. Distributed\nby Tsai Fong Books, Inc.\"\r\n7980,8521,22749539,Pam Muñoz Ryan,Echo,https://images.gr-assets.com/books/1460587774l/22749539.jpg,4.36,14864,\"fantasy, fiction\",\"Decades after a man is entwined in a prophecy-based quest involving three\nmysterious sisters and a harmonica, three individuals from different areas\nof the world confront daunting challenges involving the same harmonica. By\nthe award-winning author of Paint the Wind. Simultaneous eBook.\"\r\n7981,8522,428862,Keri Smith,Wreck This Journal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348003539l/428862.jpg,4.19,10012,\"art, nonfiction\",\"A new edition of Keri Smith's bestseller, with updated materialThink of\nWreck This Journal as the anarchist's Artist's Way -- the book for those\nwho've always wanted to draw outside the lines but were afraid to do it.For\nanyone who's ever wished to, but had trouble starting, keeping, or\nfinishing a journal or sketchbook comes Wreck This Journal, an illustrated\nbook featuring a subversive collection of suggestions, asking readers to\nmuster up their best mistake - and mess-making abilities to fill the pages\nof the book (and destroy them).Through a series of creatively and quirkily\nillustrated prompts, acclaimed artist Keri Smith encourages journalers to\nengage in \"\"destructive\"\" acts - poking holes through pages, adding photos\nand defacing them, painting with coffee, colouring outside the lines, and\nmore - in order to experience the true creative process. With Keri Smith's\nunique sensibility, readers are introduced to a new way of art and journal\nmaking, discovering novel ways to escape the fear of the blank page and\nfully engage in the creative process.Bestselling author Keri Smith is a\nfreelance illustrator by trade, and has illustrated for the Washington\nPost, The New York Times, Ford Motor Company, People, The Body Shop and\nHallmark. She is the author of Wreck This Journal, How To Be An Explorer of\nthe World and Mess. A native of Canada, she lives in the US.\"\r\n7982,8523,70561,\"Aleksandr Solzhenitsyn, Edward E. Ericson Jr.\",\"Архипелаг ГУЛАГ, 1918-1956\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293026l/70561.jpg,4.15,10693,\"history, classics\",\"Архипелаг ГУЛАГ, 1918-1956Aleksandr Solzhenitsyn, Edward E. Ericson Jr.\"\r\n7983,8524,270032,Heinrich Harrer,Sieben Jahre in Tibet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251499l/270032.jpg,4.05,11283,\"travel, history\",Sieben Jahre in TibetHeinrich Harrer\r\n7984,8525,6080420,J. Courtney Sullivan,Commencement,https://images.gr-assets.com/books/1392259807l/6080420.jpg,3.36,12653,\"fiction, contemporary\",\"Celia, Bree, Sally, and April first meet as college freshmen and over a\nperiod of six years experience both happiness and disappointment as they to\nfind fulfilling love relationships, deal with changes within their\nfamilies, and pursue successful careers.\"\r\n7985,8526,592089,Suzanne Weyn,The Bar Code Tattoo (Point Thriller),https://images.gr-assets.com/books/1443904058l/592089.jpg,3.55,14037,\"fiction, fantasy\",The Bar Code Tattoo (Point Thriller)Suzanne Weyn\r\n7986,8527,8158992,Kresley Cole,MacRieve,https://images.gr-assets.com/books/1360517706l/8158992.jpg,4.3,17488,\"romance, fantasy\",MacRieveKresley Cole\r\n7987,8528,8105569,Larry Levin,Oogy: The Dog Only a Family Could Love,https://images.gr-assets.com/books/1289446928l/8105569.jpg,4.04,10273,\"nonfiction, memoir\",Oogy: The Dog Only a Family Could LoveLarry Levin\r\n7988,8529,36064,James Ellroy,American Tabloid,https://images.gr-assets.com/books/1403181563l/36064.jpg,4.21,10193,\"fiction, crime\",American TabloidJames Ellroy\r\n7989,8530,7124101,Thomas E. Sniegoski,\"The Fallen and Leviathan (The Fallen, #1-2)\",https://images.gr-assets.com/books/1282266008l/7124101.jpg,3.74,13676,\"fantasy, paranormal\",\"After orphan Aaron Corbet discovers the truth about his destiny and his\nrole as a liaison between angels, mortals, and powers both good and evil,\nhe uses his special gifts to battle against the evil angelic Powers.\"\r\n7990,8531,20082,Anne McCaffrey,The Renegades of Pern,https://images.gr-assets.com/books/1283622741l/20082.jpg,3.84,14387,\"fantasy, fiction\",The Renegades of PernAnne McCaffrey\r\n7991,8532,2530,\"José Saramago, Giovanni Pontiero\",Memorial do Convento,https://images.gr-assets.com/books/1483229660l/2530.jpg,3.9,5321,\"fiction, classics\",\"In early eighteenth-century Lisbon, Baltasar, a soldier who has lost his\nleft hand in battle, falls in love with Blimunda, a young girl with\nvisionary powers. From the day that he follows her home from the auto-da-fe\nwhere her mother is burned at the stake, the two are bound body and soul by\nlove of an unassailable strength. A third party shares their supper that\nevening: Padre Bartolomeu Lourenco, whose fantasy is to invent a flying\nmachine. As the Crown and the Church clash, they purse his impossible, not\nto mention heretical, dream of flight.\"\r\n7992,8533,153136,\"Rose Levy Beranbaum, Maria Guarnaschelli, Vincent Lee, Manuela Paul, Dean G. Bornstein\",The Cake Bible,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348092602l/153136.jpg,4.2,9412,\"cookbooks, nonfiction\",\"\"\"If you ever bake a cake, this book will become your partner in the\nkitchen.\"\" -- from the foreword by Maida Heatter This is the classic cake\ncookbook that enables anyone to make delicious, exquisite cakes. As a\nwriter for food magazines, women's magazines, and newspapers, including The\nNew York Times, Rose Levy Beranbaum's trademark is her ability to reduce\nthe most complex techniques to easy-to-follow recipes. Rose makes baking a\njoy. This is the definitive work on cakes by the country's top cake baker.\nThe Cake Bible shows how to: Mix a buttery, tender layer cake in under five\nminutes with perfect results every time Make the most fabulous chocolate\ncake you ever imagined with just three ingredients Find recipes for every\nmajor type of cake, from pancakes to four-tiered wedding cakes Make cakes\nwith less sugar but maximum flavor and texture Make many low- to no-\ncholesterol, low-saturated-fat recipes\"\r\n7993,8534,23507745,Robert  Beatty,Serafina and the Black Cloak,https://images.gr-assets.com/books/1420158894l/23507745.jpg,3.9,12256,\"fantasy, mystery\",\"\"\"Never go into the deep parts of the forest, for there are many dangers\nthere, and they will ensnare your soul.\"\" Serafina has never had a reason to\ndisobey her pa and venture beyond the grounds of Biltmore Estate.There's\nplenty to explore in her grand home, although she must take care to never\nbe seen. None of the rich folk upstairs know that Serafina exists; she and\nher pa, the estate's maintenance man, have secretly lived in the basement\nfor as long as Serafina can remember. But when children at the estate start\ndisappearing, only Serafina knows who the culprit is:a terrifying man in a\nblack cloak who stalks Biltmore's corridors at night. Following her own\nharrowing escape, Serafina risks everything by joining forces with Braeden\nVanderbilt, the young nephew of Biltmore's owners. Braeden and Serafina\nmust uncover the Man in the Black Cloak's true identity before all of the\nchildren vanish one by one. Serafina's hunt leads her into the very forest\nthat she has been taught to fear. There she discovers a forgotten legacy of\nmagic, one that is bound to her own identity. In order to save the children\nof Biltmore, Serafina must seek the answers that will unlock the puzzle of\nher past.\"\r\n7994,8535,599090,\"Alan Dean Foster, George Lucas\",Star Wars: From the Adventures of Luke Skywalker,https://images.gr-assets.com/books/1408936775l/599090.jpg,4.07,10647,\"fiction, fantasy\",\"Star Wars: From the Adventures of Luke SkywalkerAlan Dean Foster, George Lucas\"\r\n7995,8536,6021523,Nancy Thayer,Summer House,https://images.gr-assets.com/books/1320412131l/6021523.jpg,3.91,11460,\"fiction, romance\",\"From the \"\"New York Times\"\"-bestselling author of \"\"Moon Shell Beach\"\" comes a\nmoving new novel about an unexpectedly magical summer for three generations\nof women.\"\r\n7996,8537,331695,Sarah Turnbull,Almost French: Love and a New Life in Paris,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441921862l/331695._SY475_.jpg,3.68,10668,\"travel, nonfiction\",\"A Sydney journalist recounts her unexpected move to Paris, during which she\nfell in love and came to cherish the city's charm, fashion, food,\nparadoxes, and dinner parties. Reprint. 40,000 first printing.\"\r\n7997,8538,71458,Amélie Nothomb,Stupeur et tremblements,https://images.gr-assets.com/books/1336069300l/71458.jpg,3.72,9448,\"fiction, contemporary\",Stupeur et tremblementsAmélie Nothomb\r\n7998,8539,43797,Anne Rice,Pandora / Vittorio the Vampire (New Tales of the Vampires),https://images.gr-assets.com/books/1320491463l/43797.jpg,4.03,10977,\"horror, fantasy\",\"For the first time in trade paperback and in one chilling volume come two\nmesmerizing novels from Anne Rice, linked by two distinct creatures of the\nnight.\"\r\n7999,8540,9266769,Candace Bushnell,Summer and the City,https://images.gr-assets.com/books/1366212836l/9266769.jpg,3.63,11366,\"fiction, romance\",Summer and the CityCandace Bushnell\r\n8000,8541,142545,Jeffery Deaver,The Stone Monkey,https://images.gr-assets.com/books/1336331827l/142545.jpg,3.94,11769,\"mystery, thriller\",\"The page-turning New York Times bestseller from Jeffery Deaver's “simply\noutstanding” (San Jose Mercury News) Lincoln Rhyme series! The FBI has\nrecruited forensics expert Lincoln Rhyme and his protégée, Amelia Sachs, to\ncapture “the Ghost,” a homicidal immigrant smuggler. But when they corner\nhim aboard a cargo ship, the bust goes disastrously wrong and the Ghost\nescapes. Now the killer must eliminate two families who witnessed his\nflight before they jumped ship and vanished. . . . Searching New York\nCity's Chinatown, can Rhyme and Sachs find the Ghost's targets before he\ndoes?\"\r\n8001,8542,210243,J.D. Robb,Origin in Death,https://images.gr-assets.com/books/1410761398l/210243.jpg,4.34,16775,\"mystery, romance\",\"When a cosmetic surgeon is killed in his office with tidy precision,\nDetective Eve Dallas must track down the cold-blooded killer, who may be\none of the doctor's beautiful female patients. Reprint.\"\r\n8002,8543,148769,Angela Johnson,The First Part Last,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388305354l/148769.jpg,3.96,12689,\"fiction, contemporary\",The First Part LastAngela Johnson\r\n8003,8544,7783191,\"Christopher Chabris, Daniel Simons\",The Invisible Gorilla,https://images.gr-assets.com/books/1320530790l/7783191.jpg,3.88,10080,\"psychology, science\",\"The creators of the famous \"\"gorilla experiment\"\" that demonstrated people's\ninattention to obvious facts draw on hundreds of creative experiments to\nwhimsically reveal how the human race overrates its mental capacity.\"\r\n8004,8545,84842,Tami Hoag,Prior Bad Acts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922318l/84842.jpg,4.07,11454,\"mystery, suspense\",\"Assigned to protect a judge whose unpopular ruling regarding a potential\nserial killer has led to threats, Minneapolis homicide detective Sam Kovac\nand his partner, Nikki Liska, find their case taking a whole new direction\nwhen the judge is kidnapped and they discover that the suspect list is far\nlarger than anyone could have expected. 325,000 first printing.\"\r\n8005,8546,608906,Erin Hunter,Firestar's Quest,https://images.gr-assets.com/books/1363488985l/608906.jpg,4.32,14773,\"fantasy, fiction\",\"There is peace at last between the warrior Clans, and all four are\nthriving. Then Firestar, legendary leader of ThunderClan, discovers a\nshocking secret: StarClan, the warrior ancestors who guide his paw steps,\nhave lied to him. Firestar must embark on a perilous quest to discover a\nlong-forgotten truth. Whatever he finds at the end of his journey, he’s\nsure of one thing: Nothing will ever be the same again.\"\r\n8006,8547,1833852,Steve Toltz,A Fraction of the Whole,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437371336l/1833852._SY475_.jpg,4.06,7646,\"fiction, contemporary\",\"After his father's death, Jasper reflects on Martin Dean, the man who had\nraised him in intellectual captivity and spent his entire life analyzing\nabsolutely everything, and describes his unusual boyhood, colorful family\nmembers, father's failed battle to make a lasting impression on the world,\nand their many adventures together. A first novel. Reprint. 40,000 first\nprinting.\"\r\n8007,8548,13531024,Jon Klassen,This is Not My Hat,https://images.gr-assets.com/books/1360096324l/13531024.jpg,4.23,14779,\"fiction, fantasy\",A little fish thinks he can get away with stealing a hat.\r\n8008,8549,4924862,Ramit Sethi,I Will Teach You To Be Rich,https://images.gr-assets.com/books/1404581320l/4924862.jpg,4.04,10209,\"business, nonfiction\",\"At last, for a generation that's materially ambitious yet financially\nclueless comes I Will Teach You To Be Rich, Ramit Sethi's 6-week personal\nfinance program for 20-to-35-year-olds. A completely practical approach\ndelivered with a nonjudgmental style that makes readers want to do what\nSethi says, it is based around the four pillars of personal finance--\nbanking, saving, budgeting, and investing--and the wealth-building ideas of\npersonal entrepreneurship. Sethi covers how to save time by not wasting it\nmanaging money; the guns and cars myth of credit cards; how to negotiate\nlike an Indian--the conversation begins with \"\"no\"\"; why \"\"Budgeting Doesn't\nHave to Suck!\"\"; how to get things rolling--for real--with only $20; what\nmost people don't understand about taxes; how to get a CEO to take you out\nto lunch; how to avoid the Super Mario Brothers trap by making your savings\nwork harder than you do; the difference between cheap and frugal; the\nhidden relationship between money and food. Not to mention his first key\nlesson: Getting started is more important than being the smartest person in\nthe room. Integrated with his website, where readers can use interactive\ncharts, follow up on the latest information, and join the community, it is\na hip blueprint to building wealth and financial security. Every month,\n175,000 unique visitors come to Ramit Sethi's website,\nIwillteachyoutoberich.com, to discover the path to financial freedom. They\npraise him thoughtfully (\"\"Your site summarizes everything I want with my\nlife--to be rich in finances, rich in experience, rich in family\nblessings,\"\" Dan Esparza) and effusively (\"\"Dude, you rock. I love this\nsite!\"\" Richard Wu). The press has caught on, too: \"\"Ramit Sethi is a rising\nstar in the world of personal finance writing . . . one singularly attuned\nto the sensibilities of his generation. his style is part frat boy and part\nsilicon Valley geek, with a little bit of San Francisco hipster thrown in\"\"\n(San Francisco Chronicle). His writing is smart, his voice is full of\nattitude, and his ideas are uncommonly sound and refreshingly hype-free.\"\r\n8009,8550,23197346,Nelson DeMille,Radiant Angel,https://images.gr-assets.com/books/1427202729l/23197346.jpg,3.84,6590,\"fiction, thriller\",\"Prescient and chilling, DeMille's #1 New York Times bestselling novel takes\nus into the heart of a new Cold War with a clock-ticking plot that has\nManhattan in its crosshairs. After a showdown with the notorious Yemeni\nterrorist known as The Panther, John Corey has left the Anti-Terrorist Task\nForce and returned home to New York City, taking a job with the Diplomatic\nSurveillance Group. Although Corey's new assignment with the DSG-\nsurveilling Russian diplomats working at the U.N. Mission-is thought to be\n\"\"a quiet end,\"\" he is more than happy to be out from under the thumb of the\nFBI and free from the bureaucracy of office life. But Corey realizes\nsomething the U.S. government doesn't: The all-too-real threat of a newly\nresurgent Russia. When Vasily Petrov, a colonel in the Russian Foreign\nIntelligence Service posing as a diplomat with the Russian U.N. Mission,\nmysteriously disappears from a Russian oligarch's party in Southampton,\nit's up to Corey to track him down. What are the Russians up to and why? Is\nthere a possible nuclear threat, a so-called radiant angel? Will Corey find\nPetrov and put a stop to whatever he has planned before it's too late? Or\nwill Corey finally be outrun and outsmarted, with America facing the\nprospect of a crippling attack unlike anything it's ever seen before?\nPlease note: Radiant Angel is published in the UK under the title A Quiet\nEnd.\"\r\n8010,8551,29103028,Jeff Wheeler,The Queen's Poisoner,https://images.gr-assets.com/books/1455564888l/29103028.jpg,4.07,14126,\"fantasy, fiction\",\"King Severn Argentine's fearsome reputation precedes him: usurper of the\nthrone, killer of rightful heirs, ruthless punisher of traitors. Attempting\nto depose him, the Duke of Kiskaddon gambles...and loses. Now the duke must\natone by handing over his young son, Owen, as the king's hostage. And\nshould his loyalty falter again, the boy will pay with his life. Seeking\nallies and eluding Severn's spies, Owen learns to survive in the court of\nKingfountain. But when new evidence of his father's betrayal threatens to\nseal his fate, Owen must win the vengeful king's favor by proving his worth\n--through extraordinary means. And only one person can aid his desperate\ncause: a mysterious woman, dwelling in secrecy, who truly wields power over\nlife, death, and destiny.\"\r\n8011,8552,11436,\"Karen Kingsbury, Gary Smalley\",Rejoice,https://images.gr-assets.com/books/1406505041l/11436.jpg,4.45,11013,\"christian, fiction\",\"A fresh new look for the best-selling series from America’s number-one\ninspirational novelist, Karen Kingsbury. Fans will enjoy a personal note\nfrom Karen and Gary Smalley as well as discussion questions for book group\nuse. Revisit the Baxter family in all their life-changing events, or share\nthe series with someone who hasn’t discovered it yet. The Redemption series\nwon Christian Retailing’s 2005 Retailer’s Choice Award for Best Series! In\naddition, Rejoice was a 2005 Gold Medallion Award finalist! This latest\nrelease in the Redemption series reunites readers with the continuing saga\nof the Baxter family. Brooke Baxter has achieved everything this world has\nto offer—a prestigious career, a beautiful home, and two wonderful\nchildren. Her recent return to her faith is an encouragement to her family.\nBut if she faces tremendous loss, can her fledgling faith and her rocky\nmarriage survive? About the Author Karen Kingsbury is currently America’s\nbest-selling inspirational author. She has written more than 30 of her\nLife-Changing Fiction titles and has nearly 5 million books in print.\nDubbed by Time magazine as the Queen of Christian Fiction, Karen receives\nhundreds of letters each week and considers her readers as friends. Her\nfiction has made her one of the country’s favorite storytellers, and one of\nher novels - Gideon’s Gift - is under production for an upcoming major\nmotion picture release. Her emotionally gripping titles include the popular\nRedemption series, the Firstborn series, Divine, One Tuesday Morning,\nBeyond Tuesday Morning, Oceans Apart, and A Thousand Tomorrows. Karen and\nher husband, Don, live in the Pacific Northwest and are parents to one girl\nand five boys, including three adopted from Haiti. You can find out more\nabout Karen, her books, and her appearance schedule at\nwww.KarenKingsbury.com. Gary Smalley, well-known relationship expert, is\nthe founder of the Smalley Relationship Center and the author of several\ndozen books, including the best-selling The Blessing and The Language of\nLove, as well as Food and Love and One Flame. From AudioFile Sandra Burr\ngives credence to this horrific family drama about a child's near-drowning\nand subsequent brain damage. She reads the women's roles melodramatically,\nstretching out the performance, especially when a sister reveals she's HIV\npositive. Alternating with the serious drama, and serving as comic relief,\nare scenes from the nursing home where one of the sisters works. This story\nhas it all--comedy, drama, even romance. Burr does a splendid job weaving\nall the plot lines together with minimal confusion. Listeners will be drawn\nto this inspirational story. A.G.H. © AudioFile 2004, Portland, Maine--\nCopyright © AudioFile, Portland, Maine\"\r\n8012,8553,8492907,Michio Kaku,Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100 ,https://images.gr-assets.com/books/1320504811l/8492907.jpg,3.98,10159,\"science, nonfiction\",\"Uses interviews with numerous top scientists to offer a vision of the year\n2100 and how the science of the day will shape society and the everyday\nlives of people.\"\r\n8013,8554,13597723,Jennifer Lynn Barnes,The Naturals,https://images.gr-assets.com/books/1374862751l/13597723.jpg,4.16,16704,\"mystery, thriller\",The NaturalsJennifer Lynn Barnes\r\n8014,8556,39798,\"Henning Mankell, Ebba Segerberg\",Brandvägg,https://images.gr-assets.com/books/1341858941l/39798.jpg,3.95,10138,\"mystery, crime\",\"Inspector Kurt Wallander begins to suspect a connection between a series of\ncrimes--the murder of a taxi driver by two teenage girls, the escape of one\nof the culprits, a power blackout, and a grisly discovery at the\nmalfunctioning power station.\"\r\n8015,8557,2073686,\"Michael Buckley, Peter Ferguson\",Tales From the Hood,https://images.gr-assets.com/books/1397791708l/2073686.jpg,4.29,15020,\"fantasy, mystery\",\"Tales From the HoodMichael Buckley, Peter Ferguson\"\r\n8016,8558,844051,\"Charles Bernard Nordhoff, James Norman Hall\",Mutiny on the Bounty,https://images.gr-assets.com/books/1344266653l/844051.jpg,3.97,11746,\"classics, fiction\",\"Mutiny on the BountyCharles Bernard Nordhoff, James Norman Hall\"\r\n8017,8559,1015311,Ken Akamatsu,ラブひな #1,https://images.gr-assets.com/books/1324954179l/1015311.jpg,3.73,10926,\"manga, comics\",ラブひな #1Ken Akamatsu\r\n8018,8560,19049,\"William Arntz, Betsy Chasse, Mark Vicente\",What the Bleep Do We Know!?: Discovering the Endless Possibilities for Altering Your Everyday Reality,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190527l/19049.jpg,4.25,9759,\"science, philosophy\",\"A fully illustrated, interactive guide explores the complicated, dense\nmaterial of mysticism, philosophy, and quantum physics, boiling it down to\neasy to understand, practical advice. Movie tie-in. Reprint. 100,000 first\nprinting. $75,000 ad/promo.\"\r\n8019,8561,15954540,Jeff Wheeler,The Wretched of Muirwood,https://images.gr-assets.com/books/1356123105l/15954540.jpg,3.97,6029,\"fantasy, fiction\",\"In the ancient and mystical land of Muirwood, Lia has known only a life of\nservitude. Labeled a \"\"wretched,\"\" an outcast unwanted and unworthy of\nrespect, Lia is forbidden to realize her dream to read or write. All but\ndoomed, her days are spent toiling away as a kitchen slave under the charge\nof the Aldermaston, the Abbey's watchful overseer. But when an injured\nsquire named Colvin is abandoned at the kitchen's doorstep, an opportunity\narises. The nefarious Sheriff Almaguer soon starts a manhunt for Colvin,\nand Lia conspires to hide Colvin and change her fate. In the midst of a\nland torn by a treacherous war between a ruthless king and a rebel army,\nLia finds herself on an ominous journey that will push her to wonder if her\nown hidden magic is enough to set things right. At once captivating,\nmysterious, and magic-infused, The Wretched of Muirwood takes the classic\nfantasy adventure and paints it with a story instantly epic, and yet, all\nits own.\"\r\n8020,8562,891812,Johanna Lindsey,Gentle Rogue,https://images.gr-assets.com/books/1333636257l/891812.jpg,4.23,15496,\"romance, fiction\",\"Heartsick and desperate to return home to America, Georgina Anderson boards\nthe Maiden Anne disguised as a cabin boy, never dreaming she'll be forced\ninto intimate servitude at the whim of the ship's irrepressible captain,\nJames Mallory. The black sheep of a proud and tempestuous family, the\nhandsome ex-pirate once swore no woman alive could entice him into\nmatrimony. But on the high seas his resolve will be weakened by an\nunrestrained passion and by the high-spirited beauty whose love of freedom\nand adventure rivals his own.\"\r\n8021,8563,22886868,Terry Pratchett,The Shepherd's Crown,https://images.gr-assets.com/books/1433600285l/22886868.jpg,4.34,9134,\"ebooks, fantasy\",The Shepherd's CrownTerry Pratchett\r\n8022,8564,54620,\"Elizabeth Gaskell, Shirley Foster\",Mary Barton,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298427440l/54620.jpg,3.7,11742,\"fiction, classics\",\"Set in Manchester in the 1840s, Mary Barton depicts the effects of economic\nand physical hardship upon the city's working-class community. Paralleling\nthe novel's treatment of the relationship between masters and men, the\nsuffering of the poor, and the workmen's angry response, is the story of\nMary herself--a factory-worker's daughter who attracts the attentions of\nthe mill-owner's son, who becomes caught up in the violence of class\nconflict when a brutal murder forces her to confront her true feelings and\nallegiances. This new edition reproduces the last edition of the novel\nsupervised by Gaskell. The introduction provides historical and\nbiographical context to the novel, a survey of critical responses to Mary\nBarton, and argues that Gaskell was chiefly concerned with the importance\nof communication as a means of healing breaches between people. In\naddition, the book contains an up-to-date critical biography, revised notes\nand appendixes that include Gaskell's rough draft and outline of the\nnovel's conclusion. About the Series: For over 100 years Oxford World's\nClassics has made available the broadest spectrum of literature from around\nthe globe. Each affordable volume reflects Oxford's commitment to\nscholarship, providing the most accurate text plus a wealth of other\nvaluable features, including expert introductions by leading authorities,\nvoluminous notes to clarify the text, up-to-date bibliographies for further\nstudy, and much more.\"\r\n8023,8565,115476,Joseph Conrad,Nostromo: a Tale of the Seaboard,https://images.gr-assets.com/books/1328865264l/115476.jpg,3.81,11478,\"fiction, classics\",\"Set in the fictional South American country of Costaguana, this story of\nrevolution, deception, and self-betrayal centers on Nostromo, a handsome\nItalian sailor, who, like Costaguana, is being consumed by secret guilt and\ncorruption.\"\r\n8024,8566,13333093,Ellen Marie Wiseman,The Plum Tree,https://images.gr-assets.com/books/1339438508l/13333093.jpg,4.02,8479,\"fiction, romance\",The Plum TreeEllen Marie Wiseman\r\n8025,8567,13621,\"Tsugumi Ohba, Takeshi Obata\",デスノート #7 (Desu Nōto) Zero (零),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442172576l/13621._SY475_.jpg,4.41,14480,\"manga, comics\",\"デスノート #7 (Desu Nōto) Zero (零)Tsugumi Ohba, Takeshi Obata\"\r\n8026,8568,4345290,Michael J. Sullivan,The Crown Conspiracy,https://images.gr-assets.com/books/1313141264l/4345290.jpg,4.15,12198,\"fantasy, fiction\",\"In The Crown Conspiracy, Royce Melborn, a skilled thief, and his mercenary\npartner, Hadrian Blackwater, make a profitable living carrying out\ndangerous assignments for conspiring nobles until they become the unwitting\nscapegoats in the murder of the king. Sentenced to death, they have only\none way out and so begins this epic tale of treachery and adventure, sword\nfighting and magic, myth and legend. Whether you are looking for a single\nnovel, or a multi-book saga, The Crown Conspiracy is the place to begin. It\nis a heroic fantasy adventure written for a general audience and conceived\nas a single epic tale. This series is told through six self-contained\nepisodes, each complete in its own right. Across the entire chronicle,\nmysteries build, characters deepen, and plots thicken, but none of the\nbooks end in a disappointing cliffhanger or require you to read a previous\nbook to fully enjoy the one you are on.\"\r\n8027,8569,15767586,Sherrilyn Kenyon,Styxx,https://images.gr-assets.com/books/1359269406l/15767586.jpg,4.58,14344,\"paranormal, romance\",StyxxSherrilyn Kenyon\r\n8028,8570,59142,\"Honoré de Balzac, Sylvia Raphael, Christopher Prendergast\",Eugénie Grandet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286601l/59142.jpg,3.79,11028,\"classics, fiction\",\"Eugénie GrandetHonoré de Balzac, Sylvia Raphael, Christopher Prendergast\"\r\n8029,8571,19552,\"Marcella Hazan, Karin Kretschmann\",Essentials of Classic Italian Cooking,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439124302l/19552._SX318_.jpg,4.26,10729,\"cookbooks, nonfiction\",With more than 100 illustrations by Karin Kretschman.\r\n8030,8572,82991,\"Arnaldur Indriðason, Bernard Scudder\",Grafarþögn,https://images.gr-assets.com/books/1316131788l/82991.jpg,3.94,8918,\"mystery, crime\",\"A corpse is found on a hill outside the city, and Detective Inspector\nErlendur Sveinsson and his team think the body may have been buried for\nsome years. While Erlendur struggles to hold together the crumbling\nfragments of his own family, slowly but surely he finds out the truth about\nanother unhappy family. Few people are still alive who can tell the tale,\nbut even secrets taken to the grave cannot remain hidden forever.\"\r\n8031,8573,11387392,Jess Rothenberg,The Catastrophic History of You and Me,https://images.gr-assets.com/books/1327879884l/11387392.jpg,4.04,12890,\"romance, contemporary\",\"Just before her sixteenth birthday, Brie Eagan dies of a broken heart when\nher boyfriend tells her he does not love her, and she then must go through\nthe stages of grief, while watching her friends and family try to cope with\nher death.\"\r\n8032,8574,7906105,April Henry,\"Girl, Stolen\",https://images.gr-assets.com/books/1316730155l/7906105.jpg,3.99,13108,\"mystery, thriller\",\"When an impulsive carjacking turns into a kidnapping, Griffin, a high\nschool dropout, finds himself more in sympathy with his wealthy, blind\nvictim, sixteen-year-old Cheyenne, than with his greedy father.\"\r\n8033,8575,1211904,Obert Skye,\"Leven Thumps and the Eyes of the Want (Leven Thumps, #3)\",https://images.gr-assets.com/books/1414559844l/1211904.jpg,3.97,11192,\"fantasy, fiction\",\"Leven is summoned to the abode of the Want, not knowing whether that\nleader's intentions are to harm or to help Foo, and soon Leven is separated\nfrom his good friends as he continues his battle to save that mythical\nland.\"\r\n8034,8576,25624089,\"Bill O'Reilly, Martin Dugard\",Killing Reagan,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437224995l/25624089._SY475_.jpg,4.08,9794,\"history, biography\",\"The most-talked-about political commentator in America is back with more\nabout what he has to say to his fellow Americans. Print run 1,200,000.\"\r\n8035,8577,8046680,\"Leah Wilson, Jennifer Lynn Barnes, Mary Borsellino, Sarah Rees Brennan, Terri  Clark, Bree Despain, Adrienne Kress, Sarah Darer Littman, Cara Lockwood, Elizabeth M. Rees, Carrie Ryan, Ned Vizzini, Lili Wilkinson, Blythe Woolston\",The girl who was on fire,https://images.gr-assets.com/books/1327889490l/8046680.jpg,4.28,10189,\"nonfiction, fiction\",\"The girl who was on fireLeah Wilson, Jennifer Lynn Barnes, Mary Borsellino, Sarah Rees Brennan, Terri  Clark, Bree Despain, Adrienne Kress, Sarah Darer Littman, Cara Lockwood, Elizabeth M. Rees, Carrie Ryan, Ned Vizzini, Lili Wilkinson, Blythe Woolston\"\r\n8036,8578,394683,\"Russell Hoban, Lillian Hoban\",A Bargain for Frances,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347221170l/394683.jpg,4.25,13135,\"fiction, classics\",\"Frances and Thelma are friends -- most of the time Thelma always seems to\nget Frances into trouble. When she tricks Frances into buying her tea set,\nit's the last straw. Can Frances show her that it's better to lose a\nbargain than lose a friend?\"\r\n8037,8579,15806231,J.D. Robb,Calculated in Death,https://images.gr-assets.com/books/1346079575l/15806231.jpg,4.23,12807,\"mystery, romance\",Calculated in DeathJ.D. Robb\r\n8038,8580,22929741,Maggie Nelson,The Argonauts,https://images.gr-assets.com/books/1410981835l/22929741.jpg,3.99,11925,\"memoir, nonfiction\",\"An intrepid voyage out to the frontiers of the latest thinking about love,\nlanguage, and family Maggie Nelson's The Argonauts is a genre-bending\nmemoir, a work of \"\"autotheory\"\" offering fresh, fierce, and timely thinking\nabout desire, identity, and the limitations and possibilities of love and\nlanguage. At its center is a romance: the story of the author's\nrelationship with the artist Harry Dodge. This story, which includes\nNelson's account of falling in love with Dodge, who is fluidly gendered, as\nwell as her journey to and through a pregnancy, offers a firsthand account\nof the complexities and joys of (queer) family-making. Writing in the\nspirit of public intellectuals such as Susan Sontag and Roland Barthes,\nNelson binds her personal experience to a rigorous exploration of what\niconic theorists have said about sexuality, gender, and the vexed\ninstitutions of marriage and child-rearing. Nelson's insistence on radical\nindividual freedom and the value of caretaking becomes the rallying cry of\nthis thoughtful, unabashed, uncompromising book.\"\r\n8039,8581,502295,\"Jann S. Wenner, Corey Seymour\",Gonzo: The Life of Hunter S. Thompson,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430152207l/502295.jpg,4.07,9915,\"biography, nonfiction\",\"Gonzo: The Life of Hunter S. ThompsonJann S. Wenner, Corey Seymour\"\r\n8040,8582,25664459,Dominic Smith,The Last Painting of Sara de Vos,https://images.gr-assets.com/books/1494524049l/25664459.jpg,3.83,12029,\"fiction, art\",The Last Painting of Sara de VosDominic Smith\r\n8041,8583,29925715,Louise Jensen,The Sister,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1460794537l/29925715._SY475_.jpg,3.77,11603,\"mystery, fiction\",\"\"\"I did something terrible Grace. I hope you can forgive me...\"\" Grace hasn't\nbeen the same since the death of her best friend Charlie. She is haunted by\nCharlie's last words, and in a bid for answers, opens an old memory box of\nCharlie's. It soon becomes clear there was a lot she didn't know about her\nbest friend. When Grace starts a campaign to find Charlie's father, Anna, a\ngirl claiming to be Charlie's sister steps forward. For Grace, finding Anna\nis like finding a new family, and soon Anna has made herself very\ncomfortable in Grace and boyfriend Dan's home. But something isn't right.\nThings disappear, Dan's acting strangely and Grace is sure that someone is\nfollowing her. Is it all in Grace's mind? Or as she gets closer to\ndiscovering the truth about both Charlie and Anna, is Grace in terrible\ndanger? There was nothing she could have done to save Charlie... or was\nthere?\"\r\n8042,8584,10421530,Jennifer Estep,Kiss of Frost,https://images.gr-assets.com/books/1310420615l/10421530.jpg,4.05,18386,\"fantasy, paranormal\",\"Now in her second year as a warrior-in-training at Mythos Academy, Gwen\nFrost learns that one of her fellow students is secretly a Reaper who wants\nher dead.\"\r\n8043,8585,920780,David Shannon,Duck On A Bike,https://images.gr-assets.com/books/1328870602l/920780.jpg,4.06,12461,\"fiction, fantasy\",\"A duck decides to ride a bike and soon influences all the other animals on\nthe farm to ride bikes too.\"\r\n8044,8586,10518423,Margaret Leroy,The Collaborator,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442718986l/10518423._SY475_.jpg,3.88,11421,\"romance, fiction\",The CollaboratorMargaret Leroy\r\n8045,8587,17667561,Jennifer A. Nielsen,The Shadow Throne,https://images.gr-assets.com/books/1395418016l/17667561.jpg,4.23,15731,\"fantasy, fiction\",\"A conclusion to the best-selling trilogy that includes The False Prince and\nThe Runaway King finds Jaron embarking on his final adventure.\"\r\n8046,8589,87264,Machado de Assis,Memórias Póstumas de Brás Cubas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348283742l/87264.jpg,4.23,8306,\"fiction, classics\",Memórias Póstumas de Brás CubasMachado de Assis\r\n8047,8590,7264206,Elizabeth  George,This Body of Death,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441601872l/7264206._SX318_.jpg,4.01,12396,\"mystery, fiction\",This Body of DeathElizabeth  George\r\n8048,8591,773514,L.M. Montgomery,Emily Climbs,https://images.gr-assets.com/books/1403189071l/773514.jpg,4.14,15498,\"classics, fiction\",Emily ClimbsL.M. Montgomery\r\n8049,8592,2152871,Jacqueline Carey,Kushiel's Mercy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347229019l/2152871.jpg,4.3,13337,\"fantasy, romance\",Kushiel's MercyJacqueline Carey\r\n8050,8594,12040447,Orson Scott Card,Shadows in Flight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395376383l/12040447.jpg,3.76,11464,\"fiction, fantasy\",\"Bean moves with three of his children into a derelict space colony ship\nwhere they hope for a cure to engineered genes that give them high\nintelligence and short lives, a situation that is complicated when space-\ntime distortions cause them to be forgotten by humanity.\"\r\n8051,8595,20705702,Ilona Andrews,Burn For Me,https://images.gr-assets.com/books/1396368355l/20705702.jpg,4.34,17853,\"fantasy, paranormal\",\"#1 New York Times bestselling author Ilona Andrews launches a brand-new\nHidden Legacy series, in which one woman must place her trust in a\nseductive, dangerous man who sets off an even more dangerous desire . . .\nNevada Baylor is faced with the most challenging case of her detective\ncareer—a suicide mission to bring in a suspect in a volatile situation.\nNevada isn't sure she has the chops. Her quarry is a Prime, the highest\nrank of magic user, who can set anyone and anything on fire. Then she's\nkidnapped by Connor \"\"Mad\"\" Rogan—a darkly tempting billionaire with equally\ndevastating powers. Torn between wanting to run and wanting to surrender to\ntheir overwhelming attraction, Nevada must join forces with Rogan to stay\nalive. Rogan's after the same target, so he needs Nevada. But she's getting\nunder his skin, making him care about someone other than himself for a\nchange. And, as Rogan has learned, love can be as perilous as death,\nespecially in the magic world.\"\r\n8052,8596,1689469,Robert Crais,Chasing Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432086419l/1689469._SY475_.jpg,4.18,11070,\"mystery, fiction\",\"Elvis was a hero when he cleared an innocent man of a murder charge. But\nwhen that innocent man is found dead three years later holding photos of\nthe victim, Elvis is the one on trial.\"\r\n8053,8597,301023,Lauren Myracle,\"ttyl (Internet Girls, #1)\",https://images.gr-assets.com/books/1350771009l/301023.jpg,3.46,14505,\"fiction, contemporary\",\"Chronicles, in \"\"instant message\"\" format, the day-to-day experiences,\nfeelings, and plans of three friends, Zoe, Maddie, and Angela, as they\nbegin tenth grade.\"\r\n8054,8598,34548,Bruce Campbell,If Chins Could Kill: Confessions of a B Movie Actor,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424560070l/34548.jpg,3.99,11853,\"biography, nonfiction\",\"Chronicles the life of actor Bruce Campbell from his childhood in Detroit\nthrough his time spent making the film Evil Dead to his days in Hollywood.\"\r\n8055,8599,1898916,\"Matsuri Hino, Tomo Kimura\",ヴァンパイア騎士 4,https://images.gr-assets.com/books/1318835401l/1898916.jpg,4.31,13515,\"manga, romance\",\"Zero warns Yuki to stay away from Maria Kurenai, the new Night Class\ntransfer student, although he won't tell Yuki why. Kaname is also wary, and\nhe sends Ichijo to watch Maria so she doesn't start trouble. Who is this\ngirl, and why does she have the entire Night Class on edge\"\r\n8056,8600,1821187,\"Denis Johnson, Bettina Abarbanell\",Train Dreams,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1188814001l/1821187._SY475_.jpg,3.89,4886,\"fiction, contemporary\",\"Dies ist die Geschichte des Tagelöhners Robert Grainier, der irgendwann im\nJahr 1886 geboren wurde, entweder in Utah oder in Kanada, und der nie\nerfuhr, wer seine Eltern waren. Robert Grainier war in seinem Leben niemals\nbetrunken, hat nie eine Waffe besessen und hat kein einziges Mal in einen\nTelefonhörer gesprochen. Er ist mit zahllosen Zügen gefahren, saß in vielen\nAutomobilen und ist einmal, 1927, sogar in einem Flugzeug gereist. Dabei\nhat sich Robert Grainier in den über 80 Jahren seines Lebens bis auf wenige\nMeilen dem Pazifik genähert. Gesehen hat er den Ozean nie.\"\r\n8057,8601,16248196,Rolf Dobelli,Die Kunst des klaren Denkens,https://images.gr-assets.com/books/1364848267l/16248196.jpg,3.79,8367,\"nonfiction, philosophy\",Die Kunst des klaren DenkensRolf Dobelli\r\n8058,8602,1296415,Ellen Stoll Walsh,Mouse Paint,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347765015l/1296415.jpg,4.15,12839,\"art, fiction\",\"Three white mice discover jars of red, blue, and yellow paint and explore\nthe world of color.\"\r\n8059,8604,901680,Ulrich Bischoff,Edvard Munch,https://images.gr-assets.com/books/1381324687l/901680.jpg,4.07,8308,\"art, biography\",Edvard MunchUlrich Bischoff\r\n8060,8605,48697,\"Charles Harrison, Paul Wood\",\"Art in Theory, 1900-2000: An Anthology of Changing Ideas\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290665l/48697.jpg,3.94,7861,\"art, philosophy\",\"These 300 texts provide a vivid introduction to the history of art between\n1900 and 2000. Major themes considered include: concepts of genius and\noriginality, modes of landscape painting, the question of Modernity, and\nthe aesthetics of photography.\"\r\n8061,8606,9677870,\"Hervé Tullet, Christopher Franceschelli\",Un livre,https://images.gr-assets.com/books/1327934372l/9677870.jpg,4.44,15315,\"art, fiction\",The board book edition of the international bestseller.\r\n8062,8607,828483,Robert Muchamore,The Killing (Cherub #4),https://images.gr-assets.com/books/1409557087l/828483.jpg,4.12,11584,\"fiction, mystery\",\"When James is given the mission of digging up leads on Leon, a small-time\ncrook with big money, James unravels a larger plot than expected with the\nonly person who might know the truth being a deceased eighteen-year-old\nboy.\"\r\n8063,8608,43929,Harlan Coben,Darkest Fear,https://images.gr-assets.com/books/1315745037l/43929.jpg,4.03,10955,\"mystery, fiction\",\"A friend's son is gravely ill and the potential bone-marrow donor who could\nsave his life has disappeared, so detective Myron Bolitar has no choice but\nto investigate, even though his sports agency desperately needs his\nattention.\"\r\n8064,8609,724371,\"Alfred Tennyson, Charles Keeping\",The Lady of Shalott,https://images.gr-assets.com/books/1400891098l/724371.jpg,4.17,14848,\"poetry, classics\",\"Willows whiten, aspens quiver, Little breezes dusk and shiver Thro' the\nwave that runs for ever By the island in the river Flowing down to Camelot.\nFour gray walls, and four gray towers, Overlook a space of flowers, And the\nsilent isle imbowers The Lady of Shallot. The familiar words of this\nromantic poem have been enriched by the mysterious and evocative charcoal\ndrawings of the late Charles Keeping. His illustrations will serve to stir\nthe poetic imagination of readers familiar with Tennyson's haunting poem\nand will add an intriguing element of suspense and drama to newcomers. A\nmemorable book -- for children and adults alike.\"\r\n8065,8610,95661,Lisi Harrison,\"Revenge of the Wannabes (The Clique, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348352372l/95661.jpg,3.76,12935,\"fiction, romance\",\"Friendships are tested when Alicia, a seventh grader at Octavian Country\nDay School, decides to break away from the exclusive clique led by her best\nfriend to start her own group.\"\r\n8066,8611,80449,\"Friedrich Nietzsche, Douglas Smith\",Zur Genealogie der Moral,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923909l/80449.jpg,4.1,9214,\"philosophy, classics\",\"On the Genealogy of Morals (1887) is a book about the history of ethics and\nabout interpretation. Nietzsche rewrites the former as a history of\ncruelty, exposing the 4entral values of the Judaeo-Christian and liberal\ntraditions - compassion, equality, justice - as the product of a brutal\nprocess of conditioning designed to domesticate the animal vitality of\nearlier cultures. The result is a book which raises profoundly disquieting\nissues about the violence of both ethics and interpretation. Nietzsche\nquestions moral certainties by showing that religion and science have no\nclaim to absolute truth, before turning on his own arguments in order to\ncall their very presuppositions into question. The Genealogy is the most\nsustained of Nietzsche's later works and offers one of the fullest\nexpressions of his characteristic concerns. This edition places his ideas\nwithin the cultural context of his own time and stresses the relevance of\nhis work for a contemporary audience. - ;`Reason, seriousness, mastery over\nthe emotions, the whole murky affair which goes by the name of thought, all\nthe privileges and showpieces of man: what a high price has been paid for\nthem! How much blood and horror is at the bottom of all \"\"good things!\"\"' On\nthe Genealogy of Morals (1887) is a book about the history of ethics and\nabout interpretation. Nietzsche rewrites the former as a history of\ncruelty, exposing the central values of the Judaeo-Christian and liberal\ntraditions - compassion, equality, justice - as the product of a brutal\nprocess of conditioning designed to domesticate the animal vitality of\nearlier cultures. The result is a book which raises profoundly disquieting\nissues about the violence of both ethics and interpretation. Nietzsche\nquestions moral certainties by showing that religion and science have no\nclaim to absolute truth, before turning on his own arguments in order to\ncall their very presuppositions into question. The Genealogy is the most\nsustained of Nietzsche's later works and offers one of the fullest\nexpressions of his characteristic concerns. This edition places his ideas\nwithin the cultural context of his own time and stresses the relevance of\nhis work for a contemporary audience. -\"\r\n8067,8612,133017,\"Jamie Delano, John Ridgway, Alfredo Alcalá\",\"John Constantine, Hellblazer: Volume 1: Original Sins\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347360733l/133017.jpg,4.1,12881,\"comics, horror\",\"John Constantine, Hellblazer: Volume 1: Original SinsJamie Delano, John Ridgway, Alfredo Alcalá\"\r\n8068,8614,25451852,Jonathan Renshaw,Dawn of Wonder,https://images.gr-assets.com/books/1450681609l/25451852.jpg,4.36,12166,\"fantasy, fiction\",Dawn of WonderJonathan Renshaw\r\n8069,8615,13007638,J.D. Robb,Celebrity in Death,https://images.gr-assets.com/books/1328318908l/13007638.jpg,4.28,13182,\"mystery, romance\",\"At the star-studded party celebrating the premiere of a movie based on one\nof her cases, Lieutenant Eve Dallas discovers the actress who played\nPeabody drowned in the lap pool and investigates. Reprint.\"\r\n8070,8617,62032,\"Walter Moers, John Brownjohn\",Die 13½ Leben des Käpt'n Blaubär ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176963l/62032.jpg,4.2,10560,\"fantasy, fiction\",\"Käptn Blaubär ist eine Institution. Eine ganze Generation Kinder, Eltern,\nGroßeltern kennen ihn aus dem Fernsehen, kennen seine doppelbödigen\nGeschichten, die er den drei Kleinen Bärchen und Hein Blöd erzählt. Aber\nwer kennt die Biographie des berühmten Seemanns? Außer ihm keiner. Weil er\nseine Lebenserinnerungen stets für sich behalten hat, genauso wie seine\nköstlichsten Rezepte. Jetzt hält der Käptn die Zeit für gekommen, seine\nGeheimnisse zu lüften, wenn auch längst nicht alle. Aber allein die, die er\npreisgibt, reichen für dreizehneinhalb Leben aus. Er charakterisiert seinen\nBlaubär-Roman selbst 'als ein kühnes Unterfangen von epischen Ausmaß' und\nerklärt dies damit, dass 'früher alles viel größer war - natürlich auch die\nAbenteuer'.\"\r\n8071,8618,530793,Antonia Fraser,The Wives of Henry VIII,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347223113l/530793.jpg,4.15,13159,\"history, biography\",\"Presents a multiple biography of the six unfortunate wives of Henry VIII--\nfrom Catherine of Aragon, a woman of learning and dignity, to religious\nreformer Catherine Parr\"\r\n8072,8619,10659536,Shel Silverstein,Every Thing On It,https://images.gr-assets.com/books/1331416624l/10659536.jpg,4.39,11547,\"fiction, classics\",\"A spider lives inside my head Who weaves a strange and wondrous web Of\nsilken threads and silver strings To catch all sorts of flying things, Like\ncrumbs of thought and bits of smiles And specks of dried-up tears, And dust\nof dreams that catch and cling For years and years and years . . . Have you\never read a book with everything on it? Well, here it is, an amazing\ncollection of never-before-published poems and drawings from the creator of\nWhere the Sidewalk Ends, A Light in the Attic, and Falling Up. You will say\nHi-ho for the toilet troll, get tongue-tied with Stick-a-Tongue-Out-Sid,\nplay a highly unusual horn, and experience the joys of growing down. What's\nthat? You have a case of the Lovetobutcants? Impossible! Just come on in\nand let the magic of Shel Silverstein bend your brain and open your heart.\"\r\n8073,8620,489972,Raymond Briggs,The Snowman,https://images.gr-assets.com/books/1355497688l/489972.jpg,4.28,13496,\"fiction, fantasy\",The SnowmanRaymond Briggs\r\n8074,8622,13363270,Quinn Loftis,Just One Drop,https://images.gr-assets.com/books/1325565121l/13363270.jpg,4.48,15606,\"paranormal, romance\",Just One DropQuinn Loftis\r\n8075,8623,61665,\"Carl Sagan, Ann Druyan\",Billions and Billions: Thoughts on Life and Death at the Brink of the Millennium,https://images.gr-assets.com/books/1366573520l/61665.jpg,4.26,10690,\"science, nonfiction\",\"The author draws on the most recent research into science, mathematics, and\nspace in a study of the mysteries of life, addressing such topics as global\nwarming, the abortion debate, life on Mars, and his own battle with\nmyelodysplasia\"\r\n8076,8624,6433836,John Sandford,Rough Country,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441137633l/6433836._SY475_.jpg,4.15,12594,\"mystery, thriller\",\"Investigating the shooting murder of a kayaker at a women-only Minnesota\nresort, investigator Virgil Flowers finds more suspects than anticipated\nincluding the victim's fellow patrons and a talented local country singer,\na case that is further complicated by the discovery of other murders.\nReprint. A best-selling book.\"\r\n8077,8625,46917,John Updike,Rabbit Redux,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436228651l/46917._SY475_.jpg,3.79,11051,\"fiction, classics\",\"In this sequel to Rabbit, Run, it is 1969 and the times are changing in\nAmerica. Things just aren't as simple as they used to be for Rabbit\nAngstrom. His wife leaves him, and suddenly, into his confused life comes\nJill, a runaway who becomes his lover. But when she invites her friend to\nstay, a young black radical named Skeeter, the pair's fragile harmony soon\nbegins to fail.\"\r\n8078,8626,78408,Lemony Snicket,Lemony Snicket: The Unauthorized Autobiography,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390625414l/78408.jpg,3.72,14205,\"fiction, mystery\",\"A Warning from the Publisher: Many readers have questions about Lemony\nSnicket, author of the distressing serial concerning the trials of the\ncharming but unlucky Baudelaire orphans, published under the collective\ntitle A Series of Unfortunate Events. Before purchasing, borrowing, or\nstealing this book, you should be aware that it contains the answers to\nsome of those questions, such as the following: 1. Who is Lemony? 2. Is\nthere a secret organization I should know about? 3. Why does Lemony Snicket\nspend his time researching and writing distressing books concerning the\nBaudelaire orphans? 4. Why do all of Lemony Snicket's books contain a sad\ndedication to a woman named Beatrice? 5. If there's nothing out there, what\nwas that noise? Our advice to you is that you find a book that answers less\nupsetting questions than this one. Perhaps your librarian, bookseller, or\nparole officer can recommend a book that answers the question, \"\"Aren't\nponies adorable?\"\"\"\r\n8079,8627,194618,Winston Graham,Ross Poldark,https://images.gr-assets.com/books/1360785361l/194618.jpg,4.11,5990,\"fiction, romance\",Ross PoldarkWinston Graham\r\n8080,8628,25663888,Gregg Hurwitz,Orphan X,https://images.gr-assets.com/books/1435262799l/25663888.jpg,4.08,10320,\"fiction, thriller\",\"Evan Smoak, the Nowhere Man a protector of the truly desperate and\ndeserving, finds himself a target of someone with similar training and\nknowledge of his Orphan X identity.\"\r\n8081,8629,11757975,Bella Andre,The Look of Love,https://images.gr-assets.com/books/1398783845l/11757975.jpg,3.87,18776,\"romance, fiction\",\"Having been physically abused in a past relationship, Chloe Peterson has\nsworn off men, but then renowned photographer Chase Sullivan helps her get\nher car out of a ditch--and that chip of her shoulder. Original.\"\r\n8082,8630,7940591,Stephen King,Blockade Billy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347704033l/7940591.jpg,3.4,12179,\"horror, fiction\",Blockade BillyStephen King\r\n8083,8631,31271,Robert Ludlum,The Matlock Paper,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348897098l/31271.jpg,3.86,11118,\"thriller, fiction\",\"Following his brother's senseless death from an overdose of heroin, an\nEnglish professor agrees to help the Justice Department destroy the\norganization supplying drugs to students at Carlyle University\"\r\n8084,8632,736376,Roland Merullo,Breakfast with Buddha,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348360531l/736376.jpg,3.82,8634,\"fiction, spirituality\",\"At the behest of his sister, Otto Ringling finds himself reluctantly\naccompanying her guru, an enigmatic Mongolian monk, on a trip through\nMiddle America to their childhood home, introducing his passenger to some\nAmerican \"\"fun\"\" along the way.\"\r\n8085,8633,29022,\"Suetonius, Michael Grant, Robert Graves\",De vita Caesarum ,https://images.gr-assets.com/books/1347187766l/29022.jpg,4.05,11283,\"history, classics\",\"As private secretary to the Emporer Hadrian, Suetonius gained access to the\nimperial archives and used them (along with carefully gathered eye-witness\naccounts ) to produce one of the most colourful biographical works in\nhistory. The Twelve Caesars chronicles the lives of the men who wielded\nabsolute power over Rome, from the foundation of the empire under Julius\nCaesar and Augustus, to the decline into depravity and civil war under\nNero, and the recovery and stability that came with his successors. A\nmasterpiece of anecdote, wry observation and detailed physical description,\nthis text presents us with a gallery of vividly drawn - and all too human -\nindividuals.\"\r\n8086,8634,18039755,\"Ibraheem Abbas, إبراهيم عباس, Yasser Bahjatt\",حوجن,https://images.gr-assets.com/books/1370371939l/18039755.jpg,3.75,10203,\"fiction, fantasy\",\"حوجنIbraheem Abbas, إبراهيم عباس, Yasser Bahjatt\"\r\n8087,8635,360562,Bernard Cornwell,Sharpe's Rifles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234787l/360562.jpg,4.21,10342,\"fiction, history\",\"Stranded in Spain as the British army retreats, distrusted by his men and\nsurrounded by the enemy, Lieutenant Richard Sharpe finds an ally in Spanish\ncavalryman Blas Vivar, who possesses information that can change the course\nof the war and help them all escape through the enemy-held mountains of\nSpain. Reissue.\"\r\n8088,8636,192214,R.A. Salvatore,\"Vector Prime (Star Wars: The New Jedi Order, #1)\",https://images.gr-assets.com/books/1412181316l/192214.jpg,3.79,10769,\"fiction, fantasy\",\"Twenty-one years after the Rebel Alliance had destroyed the Death Star,\nunrest begins to break out, threatening the tenuous security of the\nRepublic.\"\r\n8089,8637,24767,Scott Westerfeld,\"Touching Darkness (Midnighters, #2)\",https://images.gr-assets.com/books/1315537376l/24767.jpg,3.89,16168,\"fantasy, paranormal\",\"This is the second book in New York Times bestselling author Scott\nWesterfeld’s Midnighters series. As the Midnighters search for the truth\nabout the secret hour, they uncover terrifying mysteries woven into the\nvery fabric of Bixby’s history, and a conspiracy that touches the world of\ndaylight. This time Jessica Day is not the only Midnighter in mortal\ndanger, and if the group can’t find a way to come together, they could lose\none of their own . . . forever. Touching Darkness is the second book in the\nMidnighters trilogy, from the New York Times bestselling author of the\nUglies series.\"\r\n8090,8638,3545387,Lisa Lutz,Revenge of the Spellmans,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440209570l/3545387._SY475_.jpg,4.14,14258,\"mystery, fiction\",Revenge of the SpellmansLisa Lutz\r\n8091,8640,93575,Dorothy L. Sayers,Gaudy Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197565l/93575.jpg,4.26,14750,\"mystery, fiction\",Gaudy NightDorothy L. Sayers\r\n8092,8641,17158532,C.S. Pacat,Kings Rising,https://images.gr-assets.com/books/1454160767l/17158532.jpg,4.5,14210,\"fantasy, romance\",\"His identity now revealed, Damen must face his master Prince Laurent as\nDamianos of Akielos, the man Laurent has sworn to kill. But with the future\nof both their countries hanging in the balance, Damen's only hope of\nreclaiming his throne is to fight together with Laurent against their\nusurpers. As the two princes journey deep into Akielos, where they face\ntheir most dangerous opposition yet, the fragile trust they have built must\nsurvive not only the revelation of Damen's identity but also the Regent's\nfinal, deadly play for the throne.\"\r\n8093,8642,18129852,\"Penelope Douglas, Abby Craden, Nelson Hobbs\",Rival,https://images.gr-assets.com/books/1394971101l/18129852.jpg,4.16,21940,\"romance, contemporary\",\"RivalPenelope Douglas, Abby Craden, Nelson Hobbs\"\r\n8094,8643,287861,Philip Reeve,Mortal Engines,https://images.gr-assets.com/books/1352173057l/287861.jpg,3.98,12868,\"fantasy, fiction\",\"\"\"The first book in the thrilling Predator Cities quartet\"\"--Cover.\"\r\n8095,8644,10399742,\"James Patterson, Mark Pearson\",Private London,https://images.gr-assets.com/books/1328415596l/10399742.jpg,3.75,9922,\"mystery, thriller\",\"SOMETIMES WHEN THE NIGHTMARE ENDS - THE TERROR IS ONLY JUST BEGINNING...\nFor Hannah Shapiro, a beautiful young American student, this particular\nnightmare began eight years ago in Los Angeles, when Jack Morgan, owner of\nPrivate - the world's most exclusive detective agency - saved her from a\nhorrific death. She has fled her country, but can't flee her past. The\nterror has followed her to London, and now it is down to former Royal\nMilitary Police Sergeant Dan Carter, head of Private London, to save her\nall over again. Carter draws on the global resources of Private in a\ndesperate race against the odds. But the clock is ticking... Private may be\nthe largest and most advanced detection agency in the world, but the only\nthing they don't have is the one thing they need - time.\"\r\n8096,8645,6659254,Faith Hunter,Blood Cross,https://images.gr-assets.com/books/1255066735l/6659254.jpg,4.13,16307,\"fantasy, paranormal\",Blood CrossFaith Hunter\r\n8097,8646,204479,Gemma Halliday,Spying in High Heels,https://images.gr-assets.com/books/1327885046l/204479.jpg,3.67,11034,\"mystery, romance\",Spying in High HeelsGemma Halliday\r\n8098,8647,776159,Raymond Chandler,The Lady in the Lake,https://images.gr-assets.com/books/1501530591l/776159.jpg,4.07,11613,\"mystery, fiction\",The Lady in the LakeRaymond Chandler\r\n8099,8648,232958,\"Bernadette Rossetti-Shustak, Caroline Jayne Church\",I Love You Through And Through,https://images.gr-assets.com/books/1328866587l/232958.jpg,4.39,10808,\"fiction, poetry\",\"I Love You Through And ThroughBernadette Rossetti-Shustak, Caroline Jayne Church\"\r\n8100,8651,10084,Tad Williams,River of Blue Fire,https://images.gr-assets.com/books/1309992269l/10084.jpg,4,12015,\"fantasy, fiction\",\"A group of unlikely heroes goes up against the ruthless Grail Brotherhood,\nwho are exploiting Earth's children\"\r\n8101,8652,295169,\"William Nicholson, Peter Sís\",The Wind Singer,https://images.gr-assets.com/books/1293635554l/295169.jpg,3.84,12654,\"fantasy, fiction\",\"The Wind SingerWilliam Nicholson, Peter Sís\"\r\n8102,8653,93436,Scarlett Thomas,The End of Mr. Y.,https://images.gr-assets.com/books/1389137862l/93436.jpg,3.79,7920,\"fantasy, fiction\",\"Discovering a copy of a mysterious book reputed to be unread by anyone\npresently alive, Ariel Manto finds herself transported into a wonderland\nwhere she can travel through time and space using the thoughts of others.\"\r\n8103,8654,587638,\"Michael Chabon, Gary Gianni\",Gentlemen of the Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388591921l/587638.jpg,3.42,10440,\"fiction, fantasy\",\"In the Kingdom of Aran, in the Caucasus Mountains, in 950 A.D., two\nadventurers wander the region, plying their trade as swords for hire, until\nthey become embroiled in a bloody coup in the medieval Jewish empire of the\nKhazars as bodyguards for a fugitive prince with a mysterious secret.\"\r\n8104,8655,9476510,\"James Andrew Miller, Tom Shales\",Those Guys Have All the Fun: Inside the World of ESPN,https://images.gr-assets.com/books/1344271458l/9476510.jpg,3.69,9413,\"sports, nonfiction\",\"Those Guys Have All the Fun: Inside the World of ESPNJames Andrew Miller, Tom Shales\"\r\n8105,8656,129984,Daniel Wallace,Big Fish: A Novel of Mythic Proportions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348134701l/129984.jpg,3.64,11526,\"fantasy, fiction\",\"When his attempts to get to know his dying father fail, William Bloom makes\nup stories that recreate his father's life in heroic proportions.\"\r\n8106,8657,17936925,Tammara Webber,Breakable,https://images.gr-assets.com/books/1384787127l/17936925.jpg,4.06,17319,\"romance, contemporary\",BreakableTammara Webber\r\n8107,8658,15818333,Lisa O'Donnell,The Death of Bees,https://images.gr-assets.com/books/1358353202l/15818333.jpg,3.81,11530,\"fiction, contemporary\",The Death of BeesLisa O'Donnell\r\n8108,8659,531421,Frances Mayes,Bella Tuscany,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427782211l/531421.jpg,3.74,10773,\"travel, memoir\",\"The author explores life in the idyllic Italian countryside, offering\nauthentic Tuscan recipes and intimately portraying the local people and the\nenvironment\"\r\n8109,8660,9526658,Rachel Caine,Black Dawn,https://images.gr-assets.com/books/1318112062l/9526658.jpg,4.26,14778,\"paranormal, fantasy\",\"Struggling with the turmoil of the vampire-hunting draug's ongoing\ndominance in Morganville, student Claire Danvers and her friends search for\na cure for town founder Amelie, who has been infected by the master draug's\nbite.\"\r\n8110,8662,60932,Octavia E. Butler,Parable of the Talents,https://images.gr-assets.com/books/1170553715l/60932.jpg,4.21,10500,\"fiction, fantasy\",\"\"\"Enthralling...compelling and truly original.\"\" - Denver Post Lauren\nOlamina's love is divided among her young daughter, her community, and the\nrevelation that led Lauren to found a new faith that teaches \"\"God Is\nChange\"\". But in the wake of environmental and economic chaos, the U.S.\ngovernment turns a blind eye to violent bigots who consider the mere\nexistence of a black female leader a threat. And soon Lauren must either\nsacrifice her child and her followers -- or forsake the religion that can\ntransform human destiny.\"\r\n8111,8663,16164271,\"Joe Hill, Gabriel Rodríguez\",\"Locke & Key, Vol. 6: Alpha & Omega\",https://images.gr-assets.com/books/1391443566l/16164271.jpg,4.5,14363,\"comics, horror\",\"On prom night in Lovecraft, Dodge, having taken over Bode's body and in\npossession of all the keys, prepares to release his fellow demons.\"\r\n8112,8664,56674,J.G. Ballard,Empire of the Sun,https://images.gr-assets.com/books/1338519188l/56674.jpg,3.98,11185,\"fiction, classics\",\"A young boy living in China at the outbreak of World War II is separated\nfrom his wealthy parents, forced to forage for survival in Shanghai's\nforeign quarter, interned in a Japanese prison camp, and, eventually,\nreunited with his family, in a new edition of the award-winning\nautobiographical novel. Reprint. 10,000 first printing.\"\r\n8113,8665,1034605,\"Patricia M. Scarry, Richard Scarry\",\"The Country Mouse and the City Mouse, The Dog and His Bone, The Fox and the Crow (A Little Golden Book)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425356980l/1034605.jpg,4.28,11493,\"fiction, classics\",\"The country mouse and the city mouse--The fox and the crow.-The dog and his\nbone.\"\r\n8114,8666,28239,Paul Theroux,Dark Star Safari ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441636831l/28239._SY475_.jpg,3.96,9662,\"travel, nonfiction\",\"The author recounts his odyssey down the length of Africa, from Cairo to\nSouth Africa, describing the bad food, many delays, discomforts, and\ndangers of his trip, along with the people and places of the real Africa.\"\r\n8115,8667,653711,Anne McCaffrey,Crystal Singer,https://images.gr-assets.com/books/1403186691l/653711.jpg,4.07,14864,\"fantasy, fiction\",\"An unsuccessful musician travels to the planet, Ballybran, to join the\nHeptite Guild and risk great dangers to mine a strange form of crystal in\nreturn for great wealth\"\r\n8116,8668,13546173,Sarah J. Maas,The Assassin and the Underworld,https://images.gr-assets.com/books/1336062984l/13546173.jpg,4.37,17008,\"fantasy, romance\",\"When the King of the Assassins gives Celaena Sardothien a special\nassignment that will help fight slavery in the kingdom, she jumps at the\nchance to strike a blow against an evil practice. The misson is a dark and\ndeadly affair which takes Celaena from the rooftops of the city to the\nbottom of the sewer--and she doesn't like what she finds there.\"\r\n8117,8669,2865944,\"Laura Joffe Numeroff, Felicia Bond\",If You Give a Cat a Cupcake,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347928619l/2865944.jpg,4.2,11948,\"fiction, fantasy\",\"If You Give a Cat a CupcakeLaura Joffe Numeroff, Felicia Bond\"\r\n8118,8670,11099729,James Luceno,Star Wars: Darth Plagueis,https://images.gr-assets.com/books/1405546262l/11099729.jpg,4.07,9052,\"fantasy, fiction\",\"Darth Plagueis, a Sith Lord who knows the Dark Side so well that he has\npower over life and death, joins forces with his apprentice, one-day\nemperor Darth Sidious, to try to dominate the whole galaxy. Reprint. Movie\ntie-in.\"\r\n8119,8671,26072609,\"Anderson Cooper, Gloria Vanderbilt\",\"The Rainbow Comes and Goes: A Mother and Son On Life, Love, and Loss\",https://images.gr-assets.com/books/1456162664l/26072609.jpg,3.79,10758,\"memoir, biography\",\"A charming and intimate collection of correspondence between #1 New York\nTimes bestselling author Anderson Cooper and his mother, Gloria Vanderbilt,\nthat offers timeless wisdom and a revealing glimpse into their lives.\nAnderson Cooper’s intensely busy career as a journalist for CNN and CBS’ 60\nMinutes affords him little time to spend with his ninety-one year old\nmother. After she briefly fell ill, he and Gloria began a conversation\nthrough e-mail unlike any they had ever had before—a correspondence of\nsurprising honesty and depth in which they discussed their lives, the\nthings that matter to them, and what they still want to learn about each\nother. Both a son’s love letter to his mother in her final years and an\nunconventional mother’s life lessons for her grown son, The Rainbow Comes\nand Goes offers a rare window into their close relationship and fascinating\nlives. In these often hilarious and touching exchanges, they share their\nmost private thoughts and the hard-earned truths they’ve learned along the\nway. Throughout, their distinctive personalities shine through—Anderson’s\ndarker outlook on the world is a brilliant contrast to his mother’s\nidealism and unwavering optimism. An appealing blend of memoir and\ninspirational advice, The Rainbow Comes and Goes is a beautiful and\naffectionate celebration of the profound and universal bond between a\nparent and child, and, like Tuesdays with Morrie, a thoughtful reflection\non life and love, reminding us of the precious knowledge and insight that\nremains to be shared, no matter what age we are.\"\r\n8120,8672,23208397,Ben H. Winters,Underground Airlines,https://images.gr-assets.com/books/1443732702l/23208397.jpg,3.88,9728,\"fiction, mystery\",Underground AirlinesBen H. Winters\r\n8121,8673,644655,Ann Cleeves,Raven Black,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437937604l/644655._SY475_.jpg,3.85,10617,\"mystery, crime\",Raven BlackAnn Cleeves\r\n8122,8674,12019355,Sherrilyn Kenyon,Infamous,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442858923l/12019355._SY475_.jpg,4.36,8185,\"paranormal, fantasy\",InfamousSherrilyn Kenyon\r\n8123,8675,792938,\"Sarah L. Delany, A. Elizabeth Delany, Amy Hill Hearth\",Having Our Say: The Delany Sisters' First 100 Years,https://images.gr-assets.com/books/1403192701l/792938.jpg,4.14,11668,\"memoir, biography\",\"Two sisters recall their lives together, discussing their success as\nAfrican-American professional women during the Harlem golden age\"\r\n8124,8676,1862313,Richard Price,Lush Life,https://images.gr-assets.com/books/1316137153l/1862313.jpg,3.69,9478,\"fiction, mystery\",\"Still living on the Lower East Side and waiting tables, thirty-five-year-\nold Eric Cash has every reason to be jealous of Ike Marcus, an ambitious\nyoung man on the way to the top, until he is supposedly gunned down by\nstreet thugs while walking one night with Eric.\"\r\n8125,8677,152662,Peter Hedges,What's Eating Gilbert Grape,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348880019l/152662.jpg,4.1,11352,\"fiction, classics\",What's Eating Gilbert GrapePeter Hedges\r\n8126,8678,15723286,Gail Carriger,Curtsies & Conspiracies,https://images.gr-assets.com/books/1359660588l/15723286.jpg,4.11,15078,\"fantasy, paranormal\",Curtsies & ConspiraciesGail Carriger\r\n8127,8681,16256,Armistead Maupin,More Tales of the City,https://images.gr-assets.com/books/1347443502l/16256.jpg,4.18,9799,\"fiction, contemporary\",\"The tenants of 28 Barbary Lane have fled their cozy nest for adventures far\nafield. Mary Ann Singleton finds love at sea with a forgetful stranger,\nMona Ramsey discovers her doppelgÄnger in a desert whorehouse, and Michael\nTolliver bumps into his favorite gynecologist in a Mexican bar. Meanwhile,\ntheir venerable landlady takes the biggest journey of all—without ever\nleaving home.\"\r\n8128,8682,110871,\"Émile Zola, Robin Buss\",Thérèse Raquin,https://images.gr-assets.com/books/1282318692l/110871.jpg,3.71,10734,\"classics, fiction\",\"When adulteress Therese and her lover Laurent murder her sickly husband\nCamille, the ghost of Camille haunts them after their marriage,\ntransforming their passion for each other into hatred.\"\r\n8129,8684,17557143,J.S. Scott,The Billionaire's Obsession ~ Simon,https://images.gr-assets.com/books/1362454880l/17557143.jpg,4,7492,\"romance, contemporary\",\"Down on her luck, nursing student and full-time waitress Kara Foster gets a\nmassive blow to her already desperate financial situation that will surely\nfind her living on the streets. Needing nothing less than a miracle to save\nher, Kara gets rescue from an unknown, unlikely and overwhelming source.\nBillionaire Simon Hudson makes her an offer that is impossible to refuse,\nbut terrifying to accept from a man that she's never met. Will the\nhandsome, alpha billionaire really be a solution to her problems, or will\nhe end up being a major complication and a danger to her emotional sanity?\nReclusive billionaire Simon Hudson would rather be behind a computer\ncreating computer games than rubbing elbows with the elite and he knows\nexactly what he wants...until he meets Kara Foster. Something about Kara\ntouches Simon in ways he's never experienced and definitely doesn't like.\nFor over a year, Simon watches over Kara, but stubbornly refuses to admit\nhis desire to possess her, not even to himself. But when she ends up in a\nsituation that could very well be her destruction, Simon steps up to help\nher, not realizing that in saving Kara, he might very well be salvaging his\nown soul. The Billionaire's Obsession Series: The Billionaire's Obsession -\nSimon Heart Of The Billionaire - Sam The Billionaire's Salvation - Max The\nBillionaire's Game - Kade Billionaire Undone - Travis Billionaire Unmasked\n- Jason Billionaire Untamed - Tate Billionaire Unbound - Chloe Billionaire\nUndaunted - Zane Billionaire Unknown - Blake Billionaire Unveiled - Marcus\nBillionaire Unloved - Jett Billionaire Unchallenged - Carter\"\r\n8130,8685,28965131,Sarah Pinborough,Behind Her Eyes,https://images.gr-assets.com/books/1485279813l/28965131.jpg,3.77,17944,\"thriller, mystery\",\"\"\"David and Adele seem like the ideal pair. He's a successful psychiatrist,\nshe is his picture-perfect wife who adores him. But why is he so\ncontrolling? And why is she keeping things hidden? As Louise, David's new\nsecretary, is drawn into their orbit, she uncovers more puzzling questions\nthan answers. The only thing that is crystal clear is that something in\nthis marriage is very, very wrong. But Louise can't guess how wrong--and\nhow far a person might go to protect their marriage's secrets\"\"--\"\r\n8131,8686,129798,\"Robert W. Chambers, E.F. Bleiler\",The King in Yellow,https://images.gr-assets.com/books/1416873291l/129798.jpg,3.57,5719,\"horror, fiction\",\"A milestone of American supernatural fiction, The King in Yellow created a\nsensation upon its 1895 publication. Since then, it has markedly influenced\nwriters in the genre, most famously, H. P. Lovecraft. Author Robert W.\nChambers has been hailed as a writer of remarkable imaginative powers and\nthe historic link between Edgar Allan Poe and Stephen King. This edition\nfeatures 12 of his gripping stories and was edited by a noted authority on\nsupernatural fiction, E. F. Bleiler, who provides an informative\nintroduction.\"\r\n8132,8687,77427,Patrick O'Brian,H.M.S. Surprise ,https://images.gr-assets.com/books/1453820127l/77427.jpg,4.42,10513,\"fiction, history\",\"After rescuing a friend from French torture chambers, Captain Aubrey\nattempts to save the British merchant fleet in the Indian Ocean\"\r\n8133,8688,665,\"Ayn Rand, Nathaniel Branden\",The Virtue of Selfishness: A New Concept of Egoism,https://images.gr-assets.com/books/1425001997l/665.jpg,3.47,10198,\"philosophy, nonfiction\",\"Review: \"\"Depth and breadth of coverage, clarity of presentation, impressive\nbibliographies, excellent use of cross references, and an extensive index\ncombine to make this an impressive reference work. The contributors have\naddressed both current and past scholarship on world philosophy and\nreligion and have produced a worthy successor to Macmillan's 1967\nEncyclopedia of Philosophy. It will be read and understood by the educated\npublic as well as scholars and will be a fine addition to academic and\nlarge public library reference collections.\"\"--\"\"Outstanding Reference\nSources : the 1999 Selection Sources Committee, RUSA, ALA.\"\r\n8134,8689,2449962,Debbie Macomber,Twenty Wishes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388218162l/2449962.jpg,4.16,12324,\"romance, fiction\",\"Thirty-eight-year-old widow Anne Marie Roche, the owner of a successful\nSeattle bookstore, creates a list of twenty wishes, and, while acting upon\nher wishes, encounters an eight-year-old girl named Ellen who helps her\ncomplete her list--with unexpected results.\"\r\n8135,8690,3479967,Joseph Boyden,Through Black Spruce,https://images.gr-assets.com/books/1480136683l/3479967.jpg,4.11,10305,\"fiction, contemporary\",Through Black SpruceJoseph Boyden\r\n8136,8691,6928893,Susan  Wilson,One Good Dog,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442535715l/6928893._SY475_.jpg,4.07,10379,\"fiction, contemporary\",One Good DogSusan  Wilson\r\n8137,8692,15050,Jeanette Winterson,Sexing the Cherry,https://images.gr-assets.com/books/1328824090l/15050.jpg,3.83,10450,\"fiction, fantasy\",\"Interweaving elements of fantasy and history, this novel chronicles the\nadventures of Jordan, who lives with his mother by the Thames during the\nreign of Charles II, as he follows his dreams to the end of the world, and\nbeyond\"\r\n8138,8693,6674372,Randy Susan Meyers,The Murderer's Daughters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437274492l/6674372._SY475_.jpg,3.68,10567,\"fiction, mystery\",The Murderer's DaughtersRandy Susan Meyers\r\n8139,8694,1158706,J.D. Robb,Strangers in Death ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436905661l/1158706._SY475_.jpg,4.29,15651,\"mystery, crime\",\"The death of a prominent businessman in 2060 New York prompts Lieutenant\nEve Dallas to seek assistance from her billionaire husband, an\ninvestigation that proves complicated when clues suggest that the killer\nhad been known by the victim's family.\"\r\n8140,8695,10929432,Victoria Schwab,The Archived,https://images.gr-assets.com/books/1338729878l/10929432.jpg,4.02,16580,\"fantasy, horror\",The ArchivedVictoria Schwab\r\n8141,8696,251446,David Mamet,Glengarry Glen Ross,https://images.gr-assets.com/books/1396078804l/251446.jpg,3.95,11636,\"fiction, classics\",\"A group of ruthless real estate salesmen try to sell worthless land in\nFlorida to innocent buyers\"\r\n8142,8697,10506,Umberto Eco,L'isola del giorno prima,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435151040l/10506._SY475_.jpg,3.43,9723,\"fantasy, fiction\",L'isola del giorno primaUmberto Eco\r\n8143,8698,25332115,Ruth Wariner,The Sound of Gravel,https://images.gr-assets.com/books/1436200674l/25332115.jpg,4.15,12045,\"memoir, nonfiction\",\"A riveting, deeply affecting true story of one girl’s coming-of-age in a\npolygamist family. RUTH WARINER was the thirty-ninth of her father’s forty-\ntwo children. Growing up on a farm in rural Mexico, where authorities turn\na blind eye to the practices of her community, Ruth lives in a ramshackle\nhouse without indoor plumbing or electricity. At church, preachers teach\nthat God will punish the wicked by destroying the world and that women can\nonly ascend to Heaven by entering into polygamous marriages and giving\nbirth to as many children as possible. After Ruth’s father—the man who had\nbeen the founding prophet of the colony—is brutally murdered by his brother\nin a bid for church power, her mother remarries, becoming the second wife\nof another faithful congregant. In need of government assistance and\nsupplemental income, Ruth and her siblings are carted back and forth\nbetween Mexico and the United States, where Ruth’s mother collects welfare\nand her stepfather works a variety of odd jobs. Ruth comes to love the time\nshe spends in the States, realizing that perhaps the community into which\nshe was born is not the right one for her. As she begins to doubt her\nfamily’s beliefs and question her mother’s choices, she struggles to\nbalance her fierce love for her siblings with her determination to forge a\nbetter life for herself. Recounted from the innocent and hopeful\nperspective of a child, The Sound of Gravel is the remarkable memoir of one\ngirl’s fight for peace and love. This is an intimate, gripping tale of\ntriumph, courage, and resilience.\"\r\n8144,8699,194870,Beatrix Potter,The Complete Adventures of Peter Rabbit,https://images.gr-assets.com/books/1309201736l/194870.jpg,4.46,13271,\"classics, fiction\",\"Brings together, along with Potter's original illustrations, the four\nstories that feature Peter Rabbit--\"\"The Tale of Peter Rabbit,\"\" \"\"The Tale of\nBenjamin Bunny,\"\" \"\"The Tale of the Flopsy Bunnies,\"\" and \"\"The Tale of Mr.\nTod.\"\"\"\r\n8145,8700,1275105,Charles M. Schulz,A Charlie Brown Christmas ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182437635l/1275105._SX318_.jpg,4.48,11639,\"classics, comics\",\"Surrounded by other kids with extremely commercial ideas about Christmas,\nCharlie Brown struggles to understand the true spirit of the holiday.\"\r\n8146,8702,3115070,Nalini Singh,Hostage to Pleasure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400085485l/3115070.jpg,4.22,19705,\"paranormal, romance\",\"Forced to create a neural implant that will enslave her psychically gifted\nrace in exchange for her son's life, Ashaya Aleine, a powerful Psy, finds\nan unlikely ally in a DarkRiver sniper who lost his sister to a Psy killer\nand hungers for revenge. Original.\"\r\n8147,8703,385255,Adrian Nicole LeBlanc,\"Random Family: Love, Drugs, Trouble, and Coming of Age in the Bronx\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442198039l/385255._SY475_.jpg,4.23,9053,\"nonfiction, memoir\",\"Follows two teenagers coming of age in the midst of the Bronx drug trade as\nthey experience budding sexuality, teen parenthood, and gang identity in a\nsocial examination of the challenges of family life in the face of\nviolence.\"\r\n8148,8704,42641,\"Leo Tolstoy, Louise Maude, Aylmer Maude\",Воскресение,https://images.gr-assets.com/books/1335874776l/42641.jpg,4.1,9482,\"classics, fiction\",\"Tolstoy's epic masterpiece intertwines the lives of private and public\nindividuals during the time of the Napoleonic wars and the French invasion\nof Russia. In this revised and updated version of the definitive and highly\nacclaimed Maude translation, Tolstoy's genius and the power of his prose\nare made newly available to the contemporary reader.\"\r\n8149,8705,8643407,Larry Correia,Hard Magic,https://images.gr-assets.com/books/1327951330l/8643407.jpg,4.13,10808,\"fantasy, fiction\",\"#1 in the hard-hitting Grimnoir Chronicles by the New York Times best-\nselling creator of Monster Hunter International. Jake Sullivan is\nhardboiled private eye at war with evil magical powers in a dark and gritty\nurban fantasy that’s a cross between the The Maltese Falcon and Twilight.\nTwilight meets The Maltese Falcon in the first entry of the hard-hitting\nGrimnoir Chronicles urban fantasy saga by the New York Times best-selling\ncreator of Monster Hunter International. Magical creeps dispatched in\nheaps! Jake Sullivan is a war vet, a licensed private eye, and the\npossessor of a seriously hardboiled attitude. He also happens to have the\nmagical ability to make anything in his vicinity light as a feather or as\nheavy as depleted uranium. While a range of enemies natural and\nsupernatural wants him deep-sixed, Jake likes living, and his days in the\ntrenches and his stint in the stir for manslaughter have only made him\nharder, leaner and meaner. The first entry in the new, hard-hitting\nGrimnoir Chronicles by the Larry Corriea, breakout best-selling author of\nMonster Hunter International. About Larry Correia’s Monster Hunter series\n“[A] no-holds-barred all-out page turner that is part science fiction, part\nhorror, and an absolute blast to read.” –Bookreporter.com “If you love\nmonsters and action, you’ll love this book. If you love guns, you’ll love\nthis book. If you love fantasy, and especially horror fantasy, you’ll love\nthis book.” –Knotclan.com “A gun person who likes science fiction—or, heck,\nanyone who likes science fiction—will enjoy [these books]…The plotting is\nexcellent, and Correia makes you care about the characters…I read both\nbooks without putting them down except for work…so whaddaya waitin’ for? Go\nand buy some…for yourself and for stocking stuffers.” –Massad Ayoob About\nLarry Correia’s Monster Hunter Vendetta: “This lighthearted, testosterone-\nsoaked sequel to 2009's Monster Hunter International will delight fans of\naction horror with elaborate weaponry, hand-to-hand combat, disgusting\nmonsters, and an endless stream of blood and body parts.” –Publishers\nWeekly\"\r\n8150,8706,6878614,John Sandford,Storm Prey,https://images.gr-assets.com/books/1272913373l/6878614.jpg,4.15,11566,\"fiction, thriller\",\"Witnessing a robbery gone wrong that has caused the death of a pharmacy\nemployee, Lucas Davenport's surgeon wife, Weather Karkinnen, is targeted by\nthe thieves when they become fearful that she can identify them. By the\nbest-selling author of Rough Country. Reprint. A best-selling novel.\n750,000 first printing.\"\r\n8151,8707,214333,Lee Strobel,The Case for a Creator: A Journalist Investigates Scientific Evidence That Points Toward God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438312193l/214333._SY475_.jpg,4.1,9216,\"christian, religion\",\"Lee Strobel investigates the latest scientific discoveries to see whether\nthey form a solid basis for believing in God.\"\r\n8152,8708,11737387,Benedict Jacka,Fated,https://images.gr-assets.com/books/1330906653l/11737387.jpg,3.89,12609,\"fantasy, paranormal\",\"When he is approached by multiple factions seeking his skills to unlock the\nmystery surrounding a relic from a long-ago mage war, magic shop owner Alex\nVerus, an oracle, forsees that his life will be in great danger if he takes\nthis job--and if he doesn't. Original. 75,000 first printing.\"\r\n8153,8709,16077150,Maggie O'Farrell,Instructions for a Heatwave,https://images.gr-assets.com/books/1349796972l/16077150.jpg,3.62,9071,\"fiction, contemporary\",\"When a recently retired family patriarch clears out his bank account and\ndisappears during the sweltering summer of 1976, his three children\nconverge on their mother's home and track clues to an ancestral village in\nIreland.\"\r\n8154,8710,12022496,Jonathan Kellerman,Victims,https://images.gr-assets.com/books/1313220531l/12022496.jpg,3.94,10482,\"mystery, fiction\",VictimsJonathan Kellerman\r\n8155,8712,25222064,Jeff Kinney,Old School,https://images.gr-assets.com/books/1430174375l/25222064.jpg,4.28,11836,\"fiction, comics\",Old SchoolJeff Kinney\r\n8156,8713,31194270,Victoria Helen Stone,\"Evelyn, After\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1469171173l/31194270._SY475_.jpg,3.64,9255,\"fiction, mystery\",\"Evelyn, AfterVictoria Helen Stone\"\r\n8157,8714,751635,Sharon G. Flake,The Skin I'm In,https://images.gr-assets.com/books/1305064345l/751635.jpg,4.13,9634,\"fiction, contemporary\",\"Thirteen-year-old Maleeka, uncomfortable because her skin is extremely\ndark, meets a new teacher with a birthmark on her face and makes some\ndiscoveries about how to love who she is and what she looks like.\"\r\n8158,8715,16065538,James Rollins,The Eye of God: A Sigma Force Novel,https://images.gr-assets.com/books/1359823174l/16065538.jpg,4.11,9389,\"thriller, fiction\",The Eye of God: A Sigma Force NovelJames Rollins\r\n8159,8716,28922,Kazuo Ishiguro,An Artist of the Floating World,https://images.gr-assets.com/books/1327786035l/28922.jpg,3.72,10430,\"fiction, contemporary\",\"Drifting without honor in Japan's post-World War II society, which indicts\nhim for its defeat and reviles him for his esthetics, aging painter Masuji\nOno recalls the events of his life.\"\r\n8160,8717,1528410,\"Pascal Mercier, Barbara Harshav\",Nachtzug nach Lissabon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388511706l/1528410.jpg,3.7,7838,\"fiction, philosophy\",\"Former Latin teacher Raimund Gregorius boards the night train to Lisbon,\ncarrying with him a book by Amadeu de Prado, with whose work he becomes\nobsessed, and journeys all over the city in search of the truth about the\nauthor.\"\r\n8161,8718,18052985,Tessa Dare,Romancing the Duke,https://images.gr-assets.com/books/1377311107l/18052985.jpg,3.91,15558,\"romance, fiction\",Romancing the DukeTessa Dare\r\n8162,8719,25176,Martha Grimes,\"The Man With a Load of Mischief (Richard Jury Mystery, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423070440l/25176.jpg,4.01,11947,\"mystery, fiction\",\"Long Piddleton had always been wary of newcomers. But the quiet town was\nstunned when the first stranger was found dead, upended in a butt of ale in\nthe cellar of the Men with a Load of Mischief. Then the second body\nappeared, swinging in place of the mechanical man above the door of the\nJack and Hammer. Suddenly Long Piddleton had good reason to be wary of\neveryone! Its cozy pubs and inns with their polished pewter and blazing\nhearths had become scenes of the most bizarre crimes. Who were the victims?\nAnd who was the murderer? A stranger? A maniac? Or the disarmingly friendly\nman next door?\"\r\n8163,8720,11714997,Jessica Sorensen,The Underworld,https://images.gr-assets.com/books/1417703488l/11714997.jpg,4.12,11604,\"paranormal, fantasy\",The UnderworldJessica Sorensen\r\n8164,8721,2372,David McCullough,\"The Path Between the Seas: The Creation of the Panama Canal, 1870-1914\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197198l/2372.jpg,4.19,9349,\"history, nonfiction\",\"The National Book Award–winning epic chronicle of the creation of the\nPanama Canal, a first-rate drama of the bold and brilliant engineering feat\nthat was filled with both tragedy and triumph, told by master historian\nDavid McCullough. From the Pulitzer Prize–winning author of Truman, here is\nthe national bestselling epic chronicle of the creation of the Panama\nCanal. In The Path Between the Seas, acclaimed historian David McCullough\ndelivers a first-rate drama of the sweeping human undertaking that led to\nthe creation of this grand enterprise. The Path Between the Seas tells the\nstory of the men and women who fought against all odds to fulfill the\n400-year-old dream of constructing an aquatic passageway between the\nAtlantic and Pacific oceans. It is a story of astonishing engineering\nfeats, tremendous medical accomplishments, political power plays, heroic\nsuccesses, and tragic failures. Applying his remarkable gift for writing\nlucid, lively exposition, McCullough weaves the many strands of the\nmomentous event into a comprehensive and captivating tale. Winner of the\nNational Book Award for history, the Francis Parkman Prize, the Samuel\nEliot Morison Award, and the Cornelius Ryan Award (for the best book of the\nyear on international affairs), The Path Between the Seas is a must-read\nfor anyone interested in American history, the history of technology,\ninternational intrigue, and human drama.\"\r\n8165,8722,26116430,Louise Erdrich,LaRose,https://images.gr-assets.com/books/1445606455l/26116430.jpg,3.86,9136,\"fiction, contemporary\",LaRoseLouise Erdrich\r\n8166,8723,17978144,Lucie Whitehouse,Before we met,https://images.gr-assets.com/books/1369569396l/17978144.jpg,3.43,7826,\"mystery, fiction\",\"When her husband disappears during a business trip to the U.S., Hannah, who\nbelieves she has married the perfect man, begins to have doubts when his\nco-workers tell a different story, prompting her to dig into his life,\nwhich unexpectedly leads her to a place of violence and fear.\"\r\n8167,8724,2187270,\"The Waiter, Steve Dublanica\",Waiter Rant: Thanks for the Tip-Confessions of a Cynical Waiter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348571120l/2187270.jpg,3.49,10341,\"memoir, nonfiction\",\"According to The Waiter, 80 percent of customers are nice people just\nlooking for something to eat. The remaining 20 percent, however, are\nsocially maladjusted psychopaths. Eye-opening, outrageous, and\nunabashed—replete with tales of customer stupidity, arrogant misbehavior,\nand unseen tidbits of human grace in the most unlikely places—Waiter Rant\npresents the server's unique point of view, revealing surefire secrets to\ngetting good service, proper tipping etiquette, and ways to ensure that\nyour waiter won't spit on your food.\"\r\n8168,8725,15728721,Kevin Hearne,Two Ravens and One Crow,https://images.gr-assets.com/books/1344336650l/15728721.jpg,4.2,11562,\"fantasy, fiction\",\"Atticus O’Sullivan is back in an action-packed, laugh-out-loud novella from\nthe author of The Iron Druid Chronicles. Two-thousand-year-old Atticus may\nhave outwitted and outfought everyone from Odin to Bacchus, but he’s about\nto discover that what comes around when you go around messing with gods.\nSix years into the training of his beautiful apprentice, Granuaile, a large\ncrow swoops down and transforms into none other than the Morrigan, a\ngoddess who insists that Atticus come with her at once. He must leave his\napprentice behind, along with his Irish wolfhound, Oberon—and he must also\nleave his sword. The Morrigan has always taken extreme pleasure in\npronouncing the Druid’s mortal danger and imminent doom, so the fact that\nshe won’t reveal the purpose of their journey makes him very nervous. Of\ncourse, any time the Celtic Chooser of the Slain drops in unannounced, it’s\nnever good. When she does let slip that she’ll be saving his life in the\nnear future, Atticus is left to wonder . . . will he soon be giving his\nlegions of enemies something to crow about? Includes an excerpt from Kevin\nHearne’s Iron Druid Chronicles novel Trapped! Praise for Kevin Hearne and\nThe Iron Druid Chronicles “Celtic mythology and an ancient Druid with\nmodern attitude mix it up in the Arizona desert in this witty new fantasy\nseries.”—Kelly Meding, author of Three Days to Dead “[Atticus is] a strong\nmodern hero with a long history and the wit to survive in the twenty-first\ncentury. . . . A snappy narrative voice . . . a savvy urban fantasy\nadventure.”—Library Journal, on Hounded\"\r\n8169,8726,296264,Robert Louis Stevenson,The Black Arrow: A Tale of the Two Roses,https://images.gr-assets.com/books/1328014614l/296264.jpg,3.81,12298,\"classics, fiction\",The Black Arrow: A Tale of the Two RosesRobert Louis Stevenson\r\n8170,8727,7997069,\"Tom Clancy, Grant Blackwood\",Dead or Alive,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391052641l/7997069.jpg,3.79,10644,\"fiction, thriller\",\"Receiving intelligence from the Campus that the world's most threatening\nterrorist has been tracked to a specific location, Jack Ryan, Jr., the\norganization's latest recruits and his cousins embark on a dangerous\nmission to capture him. By the best-selling author of The Hunt for Red\nOctober. 1.5 million first printing.\"\r\n8171,8728,563458,V.C. Andrews,\"Fallen Hearts (Casteel, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554313062l/563458._SY475_.jpg,3.89,12450,\"fiction, horror\",\"Now a major Lifetime movie event—the classic story of the Casteel family\nsaga continues with this third installment. Proud and beautiful, Heaven\ncame back to the hills—to rise at last above her family’s shame. As Logan’s\nbride, Heaven would savor now the love she had sought for so long. And free\nfrom her father’s clutches, she would live again in her backwoods town, a\nrespected teacher and cherished wife. But after a wedding trip to Boston’s\nFarthinggale Manor and a lavish, elegant party, Heaven and Logan are\npersuaded to stay…lured by Tony Tatterton’s guile to live amidst the\nTatterton wealth and privilege. Then the ghosts of Heaven’s past rise up\nonce more, writhing around her fragile happiness…threatening her precious\nlove with scandal and jealousy, sinister passions, and dangerous dreams.\"\r\n8172,8729,185289,Melanie Rawn,Dragon Prince,https://images.gr-assets.com/books/1309210730l/185289.jpg,3.94,12739,\"fantasy, fiction\",\"In this unsettled world, the death of the ruler of the desert princedom\nbecomes the catalyst for power games of magical treachery as rival factions\n- from the evil High Prince to the leader of the Sunrunners to the newly\ncrowned Prince of the Desert - seek to alter the course of their world.\"\r\n8173,8730,7099389,Jeffery Deaver,The Burning Wire,https://images.gr-assets.com/books/1441925165l/7099389.jpg,4.04,11376,\"mystery, thriller\",The Burning WireJeffery Deaver\r\n8174,8731,166101,Breena Clarke,\"River, Cross My Heart\",https://images.gr-assets.com/books/1344268600l/166101.jpg,3.47,11642,\"fiction, contemporary\",\"Five-year-old Clara Bynum is dead, drowned in the Potomac River in the\nshadow of a seemingly haunted rock outcropping known locally as the Three\nSisters. River, Cross My Heart, which marks the debut of a wonderfully\ngifted new storyteller, weighs the effect of Clara's absence on the people\nshe has left behind: her parents, Alice and Willie Bynum, torn between the\nold world of their rural North Carolina home and the new world of the city,\nto which they have moved in search of a better life for themselves and\ntheir children; the friends and relatives of the Bynum family in the\nGeorgetown neighborhood they now call home; and, most especially, Clara's\nsister, ten-year-old Johnnie Mae, who must come to terms with the powerful\nand confused emotions stirred by her sister's death as she struggles to\ndecide what kind of woman she will become. This highly accomplished first\nnovel resonates with ideas, impassioned lyricism, and poignant historical\ndetail as it captures an essential part of the African-American experience\nin our century.\"\r\n8175,8732,109499,\"Nancy Leigh DeMoss, Elisabeth Elliot\",Lies Women Believe: And the Truth that Sets Them Free,https://images.gr-assets.com/books/1328823111l/109499.jpg,4.1,9714,\"christian, nonfiction\",\"Lies Women Believe: And the Truth that Sets Them FreeNancy Leigh DeMoss, Elisabeth Elliot\"\r\n8176,8733,194808,Jack London,To Build a Fire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172591496l/194808._SX318_.jpg,3.92,12133,\"classics, fiction\",To Build a FireJack London\r\n8177,8734,95659,Lisi Harrison,Invasion of the Boy Snatchers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441654393l/95659._SX318_.jpg,3.79,13093,\"fiction, contemporary\",\"The holidays are over and Massie's room is chock-full of new things from\nSanta: jeans, sweater, and a new . . . roommate? Once Claire unpacks,\nMassie's room feels more crowded than a Zac Posen sample sale. But what's\nworse, Claire isn't the only person moving into Massie's territory --\nAlicia's hot cousin, Nina, shows up from Spain and starts edging in on all\nthe Briarwood boys, including Massie's crush! Will Nina, with her super-\ntight mall clothes, make every boy in Westchester fall in love with her? Or\nwill Massie toss her out faster than last season's Sevens jeans? The social\nminefields of Westchester County's most privileged middle school girls\ndrive the page-turning action of this addictive series, set in New York\nCity's most elite suburban county. The Clique . . . the only thing harder\nthan getting in is staying in.\"\r\n8178,8735,4660,John Irving,The 158-Pound Marriage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184362l/4660.jpg,3.22,10532,\"fiction, contemporary\",\"The darker vision and sexual ambiguities of this erotic, ironic tale about\na ménage a quatre in a New England university town foreshadow those of The\nWorld According to Garp; but this very trim and precise novel is a marked\ndeparture from the author's generally robust, boisterous style. Though Mr.\nIrving's cool eye spares none of his foursome, he writes with genuine\ncompassion for the sexual tests and illusions they perpetrate on each\nother; but the sexual intrigue between them demonstrates how even the kind\ncan be ungenerous, and even the well-intentioned, destructive.\"\r\n8179,8736,6150530,Chris Anderson,Free: The Future of a Radical Price,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442784976l/6150530._SY475_.jpg,3.83,10607,\"business, nonfiction\",\"Reveals how to run an online business profitably in spite of the Internet's\ninherently free culture, disseminating the principles of a \"\"priceless\neconomy\"\" in six categories that pertain to advertising, labor exchange, and\nadvanced-version fees.\"\r\n8180,8737,769712,\"Joe Sacco, Edward Said\",Palestine,https://images.gr-assets.com/books/1327884409l/769712.jpg,4.2,9823,\"comics, history\",\"Uses a comic book format to shed light on the complex and emotionally-\ncharged situation of Palestinian Arabs, exploring the lives of Israeli\nsoldiers, Palestinian refugees, and children in the Occupied Territories.\"\r\n8181,8738,198511,\"Vincent van Gogh, Irving Stone, Jean   Stone\",Dear Theo: The Letters of Vincent Van Gogh,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420843371l/198511.jpg,4.09,9121,\"art, biography\",\"A selection of the letters by Vincent van Gogh to his brother shares his\noutlook on life and art\"\r\n8182,8739,15732712,Cecelia Ahern,One Hundred Names,https://images.gr-assets.com/books/1421928433l/15732712.jpg,3.75,10994,\"fiction, romance\",One Hundred NamesCecelia Ahern\r\n8183,8740,78960,Louisa May Alcott,Good Wives,https://images.gr-assets.com/books/1282713827l/78960.jpg,3.92,13964,\"classics, fiction\",Good WivesLouisa May Alcott\r\n8184,8741,16248223,Yangsze Choo,The Ghost Bride,https://images.gr-assets.com/books/1356671808l/16248223.jpg,3.74,11645,\"fantasy, fiction\",\"Yangsze Choo’s stunning debut, The Ghost Bride, is a startlingly original\nnovel infused with Chinese folklore, romantic intrigue, and unexpected\nsupernatural twists. Li Lan, the daughter of a respectable Chinese family\nin colonial Malaysia, hopes for a favorable marriage, but her father has\nlost his fortune, and she has few suitors. Instead, the wealthy Lim family\nurges her to become a “ghost bride” for their son, who has recently died\nunder mysterious circumstances. Rarely practiced, a traditional ghost\nmarriage is used to placate a restless spirit. Such a union would guarantee\nLi Lan a home for the rest of her days, but at what price? Night after\nnight, Li Lan is drawn into the shadowy parallel world of the Chinese\nafterlife, where she must uncover the Lim family’s darkest secrets—and the\ntruth about her own family. Reminiscent of Lisa See’s Peony in Love and Amy\nTan’s The Bonesetter’s Daughter, The Ghost Bride is a wondrous coming-of-\nage story and from a remarkable new voice in fiction.\"\r\n8185,8742,34941,\"Terry Brooks, George Lucas\",The Phantom Menace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349115978l/34941.jpg,3.55,11602,\"fiction, fantasy\",\"Two Jedi peace ambassadors are sent to investigate the Trade Federation\nblockade of Naboo and later meet Anakin Skywalker, a young slave living on\nTatooine, whom they believe to be a good candidate for Jedi training\"\r\n8186,8745,266765,Jacqueline Wilson,Girls in Love,https://images.gr-assets.com/books/1438919442l/266765.jpg,3.53,11953,\"romance, fiction\",\"Ellie is planning to recreate herself in every way now that she is in ninth\ngrade, but in order to get a boyfriend, she realizes that she may have to\nsettle for just about anyone if she wants to get one quickly.\"\r\n8187,8746,294613,\"Else Holmelund Minarik, Maurice Sendak\",Little Bear's Friend,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347358232l/294613.jpg,4.3,12446,\"fiction, classics\",\"Little Bear meets Emily, a human girl, and her doll. 'Once again Little\nBear proves himself to be as wistful and tender a little creature as exists\nin the child's library.' -- K.\"\r\n8188,8747,254799,Twyla Tharp,The Creative Habit: Learn It and Use It for Life,https://images.gr-assets.com/books/1477230182l/254799.jpg,4,12838,\"nonfiction, art\",The Creative Habit: Learn It and Use It for LifeTwyla Tharp\r\n8189,8748,3243517,\"Mourid Barghouti, مريد البرغوثي\", رأيت رام الله,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1209267638l/3243517.jpg,4.15,8602,\"biography, fiction\",\" رأيت رام اللهMourid Barghouti, مريد البرغوثي\"\r\n8190,8749,10429025,Jocelyn Davies,A Beautiful Dark ,https://images.gr-assets.com/books/1327916579l/10429025.jpg,3.9,16529,\"paranormal, fantasy\",\"On the night of Skye’s seventeenth birthday, she meets two enigmatic\nstrangers. Complete opposites—like fire and ice—Asher is dark and wild,\nwhile Devin is fair and aloof. Their sudden appearance sends Skye’s life\ninto a tailspin. She has no idea what they want, or why they seem to follow\nher every move—only that their presence coincides with a flurry of strange\nevents. Soon she begins to doubt not just the identity of the two boys, but\nalso the truth about her own past. In the dead of a bitingly cold Colorado\nwinter, Skye finds herself coming to terms with the impossible secret that\nthreatens to shatter her world. Torn between Asher, who she can’t help\nfalling for, and Devin, who she can’t stay away from, the consequences of\nSkye’s choice will reach further than the three of them could ever imagine.\nA Beautiful Dark is the first book in a captivating trilogy by debut author\nJocelyn Davies.\"\r\n8191,8750,18889,\"Marion Zimmer Bradley, Diana L. Paxson\",Lady of Avalon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167118126l/18889.jpg,3.88,12663,\"fantasy, fiction\",\"A tale of the origins and history of Avalon and the prophecy of the birth\nof the great King Arthur is revealed through the successive lives of three\npowerful priestesses--Caillean, Dierna, and Viviane, the Lady of the Lake.\"\r\n8192,8751,15985392,\"Tom Clancy, Mark Greaney\",Threat Vector,https://images.gr-assets.com/books/1352225908l/15985392.jpg,4.1,8320,\"fiction, thriller\",\"Threat VectorTom Clancy, Mark Greaney\"\r\n8193,8752,829313,\"Miles Davis, Quincy Troupe\",Miles: The Autobiography,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348411049l/829313.jpg,4.18,8827,\"music, biography\",\"Miles discusses his life and music from playing trumpet in high school to\nthe new instruments and sounds from the Caribbean.\"\r\n8194,8753,816752,Elizabeth Winthrop,\"The Castle In The Attic (The Castle In The Attic, #1)\",https://images.gr-assets.com/books/1178654581l/816752.jpg,3.96,14611,\"fiction, fantasy\",\"A gift of a toy castle, complete with silver knight, introduces William to\nan adventure involving magic and a personal quest.\"\r\n8195,8754,6303704,Steven Tyler,Does the Noise in My Head Bother You?,https://images.gr-assets.com/books/1400065793l/6303704.jpg,3.47,9312,\"biography, music\",Does the Noise in My Head Bother You?Steven Tyler\r\n8196,8755,11985631,George R.R. Martin,The Sworn Sword,https://images.gr-assets.com/books/1397654143l/11985631.jpg,4.07,11291,\"fiction, fantasy\",\"A year after their initial meeting at the tournament in Ashford, Ser Duncan\nand his squire find themselves in the charge of Ser Eustace, an aged knight\nwho has accepted Dunk as his sworn sword. But Ser Eustace has another\nknight in his service who is nothing but trouble, and he will make Dunk's\nlife far more difficult when he rashly attacks a peasant and causes grief\nto a local noble, the Lady Rohanne Webber. But the Lady Rohanne has\nproblems of her own - and she knows the truth about Ser Eustace and the\nside he took in the battle of Redgrass Field.\"\r\n8197,8756,2230284,Jeffery Deaver,The Broken Window,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193324l/2230284.jpg,4.07,11706,\"mystery, thriller\",\"Bestselling master of suspense Jeffery Deaver is back with a brand-new\nLincoln Rhyme thriller. Lincoln Rhyme and partner/paramour Amelia Sachs\nreturn to face a criminal whose ingenious staging of crimes is enabled by a\nterrifying access to information.... When Lincoln's estranged cousin Arthur\nRhyme is arrested on murder charges, the case is perfect -- too perfect.\nForensic evidence from Arthur's home is found all over the scene of the\ncrime, and it looks like the fate of Lincoln's relative is sealed. At the\nbehest of Arthur's wife, Judy, Lincoln grudgingly agrees to investigate the\ncase. Soon Lincoln and Amelia uncover a string of similar murders and rapes\nwith perpetrators claiming innocence and ignorance -- despite ironclad\nevidence at the scenes of the crime. Rhyme's team realizes this \"\"perfect\"\"\nevidence may actually be the result of masterful identity theft and\nmanipulation. An information service company -- the huge data miner\nStrategic Systems Datacorp -- seems to have all the answers but is\nreluctant to help the police. Still, Rhyme and Sachs and their assembled\nteam begin uncovering a chilling pattern of vicious crimes and coverups,\nand their investigation points to one master criminal, whom they dub \"\"522.\"\"\nWhen \"\"522\"\" learns the identities of the crime-fighting team, the hunters\nbecome the hunted. Full of Deaver's trademark plot twists, The Broken\nWindow will put the partnership of Lincoln Rhyme and Amelia Sachs to the\nultimate test.\"\r\n8198,8758,22431039,Christina Lauren,Beautiful Secret,https://images.gr-assets.com/books/1416624825l/22431039.jpg,4.13,17215,\"romance, contemporary\",\"One of the brightest young engineers in London, Ruby Miller is sent to New\nYork City with Niall Stella, her firm's top urban planning executive—and\nthe hottest man alive—and, after a game-changing overnight flight, vows to\nmake this sexy Brit let loose and break the rules both in the boardroom and\nthe bedroom. Original.\"\r\n8199,8760,143513,Anton Chekhov,Три сестры,https://images.gr-assets.com/books/1416873197l/143513.jpg,3.76,10688,\"classics, fiction\",Три сестрыAnton Chekhov\r\n8200,8761,107670,Anthony Horowitz,Evil Star,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447187l/107670.jpg,3.98,12391,\"fantasy, horror\",\"Having locked the Raven's gate, fourteen-year-old Matt travels to Peru\nwhere he meets the second of the five gatekeepers and works with him to try\nto stop the opening of a second gate somehow related to the Nazca Lines.\nReprint.\"\r\n8201,8763,40313,\"Janet Evanovich, Charlotte Hughes\",Full Tilt,https://images.gr-assets.com/books/1479699860l/40313.jpg,3.7,14923,\"romance, mystery\",\"Jamie Swift's job running the local newspaper in Beaumont is complicated by\nthe arrival of her silent partner, Maximilian Holt, who is in town\nsupporting his brother-in-law, former wrestler Frankie Fontana, in his\ncampaign for mayor.\"\r\n8202,8764,3173125,Josh Bazell,Beat the Reaper,https://images.gr-assets.com/books/1316092271l/3173125.jpg,3.79,10987,\"fiction, thriller\",Beat the ReaperJosh Bazell\r\n8203,8765,284195,Elin Hilderbrand,Nantucket Nights,https://images.gr-assets.com/books/1317065229l/284195.jpg,3.64,9825,\"fiction, romance\",\"Participating in an annual tradition by which they drink champagne, skinny\ndip, and talk until morning, two women of a friendship trio are shattered\nwhen their third companion accidentally drowns, and in the aftermath, they\nrealize that their loss extends beyond grief as their layers of secrets and\nconnections are gradually revealed. Reprint.\"\r\n8204,8766,99218,\"Brian Herbert, Kevin J. Anderson\",Dune: The Machine Crusade ,https://images.gr-assets.com/books/1412547890l/99218.jpg,3.73,10126,\"fiction, fantasy\",\"Dune: The Machine Crusade Brian Herbert, Kevin J. Anderson\"\r\n8205,8767,99452,Piers Anthony,\"Ogre, Ogre (Xanth, #5)\",https://images.gr-assets.com/books/1350835009l/99452.jpg,3.73,13795,\"fantasy, fiction\",\"When Tandy and Nymph becomes lost in the magical land of Xanth, she is\nforced to rely on the ugly ogre, Smash, to rescue her\"\r\n8206,8768,892295,\"Arthur Conan Doyle, William S. Baring-Gould\",The Annotated Sherlock Holmes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437177008l/892295._SX318_.jpg,4.58,9551,\"mystery, classics\",\"The complete texts of the four novels and fifty-six short stories that made\nthe legendary detective famous are accompanied by an introduction, notes,\nmaps, diagrams, photographs, and drawings in this oversized edition--an\nindispensable possession for all mystery fans.\"\r\n8207,8769,18693621,Joanna Wylde,Devil's Game,https://images.gr-assets.com/books/1433115819l/18693621.jpg,4.3,20085,\"romance, contemporary\",Devil's GameJoanna Wylde\r\n8208,8770,8793878,Nicky Charles,The Keeping,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1281241537l/8793878.jpg,4.18,12852,\"paranormal, romance\",The KeepingNicky Charles\r\n8209,8771,760205,Mercer Mayer,There's a Nightmare in My Closet (Pied Piper Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348638074l/760205.jpg,4.22,13413,\"fiction, fantasy\",\"At bedtime a boy confronts the nightmare in his closet and finds him not so\nterrifying after all.\"\r\n8210,8772,20768868,Patricia Cornwell,Flesh and Blood,https://images.gr-assets.com/books/1403704254l/20768868.jpg,3.67,8447,\"mystery, fiction\",Flesh and BloodPatricia Cornwell\r\n8211,8773,441618,Beth Moore,Breaking Free,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428870880l/441618.jpg,4.43,9922,\"christian, religion\",\"Now available in paperback and one of Beth Moore's most popular writings to\ndate, Breaking Free is the breakthrough book on how to overcome the\nstrongholds of sin and discover a better life.\"\r\n8212,8774,132609,Eric Hill,Where's Spot? ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700896l/132609.jpg,4.05,13105,\"fiction, classics\",\"A mother dog finds eight other animals hiding around the house before\nfinding her lost puppy. Flaps conceal the animals.\"\r\n8213,8775,25772000,\"Penelope Ward, Vi Keeland\",Cocky Bastard,https://images.gr-assets.com/books/1436524506l/25772000.jpg,4.18,14964,\"contemporary, fiction\",\"First Published in 2002. Routledge is an imprint of Taylor & Francis, an\ninforma company.\"\r\n8214,8776,78674,Jan Karon,Out to Canaan (Mitford),https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,4.28,12491,\"fiction, christian\",\"In the small town of Mitford, recotr Father Tim and his lovely wife Cynthia\nponder their retirement plans, trying to raise their young charge, Dooley,\nand find Dooley's missing, abandoned siblings, while a brash mayoral\ncandidate is calling for development and \"\"progress.\"\" Reprint.\"\r\n8215,8777,2235597,\"James Patterson, Michael Ledwidge\",The Dangerous Days of Daniel X,https://images.gr-assets.com/books/1266659390l/2235597.jpg,3.57,14222,\"fantasy, fiction\",\"Yes, it's true: Daniel X is special. X-traordinarily special. He may be\njust a kid, but Daniel is strong enough to fight anything in the world. And\nit's a good thing, because not many guys you meet have a host of deadly\ncriminals hunting them to the ends of the Earth. And none of them are\nextraterrestrials. Daniel is the only one who might be able to eliminate\nevery last intergalactic evil on the List of Alien Outlaws on Terra Firma.\nBecause the greatest superpower isn't to be part spider and part man, or to\ncast magic spells - the ultimate gift is the power to create.\"\r\n8216,8778,10868182,\"Camilla Läckberg, Tiina Nunnally\",Tyskungen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349028349l/10868182.jpg,3.94,7998,\"mystery, crime\",\"Crime writer Erica Falck is shocked to discover a Nazi medal among her late\nmother's possessions. Haunted by a childhood of neglect, she resolves to\ndig deep into her family's past and finally uncover the reasons why. Her\nenquiries lead her to the home of a retired history teacher. He was among\nher mother's circle of friends during the Second World War but her\nquestions are met with bizarre and evasive answers. Two days later he meets\na violent death. Detective Patrik Hedstrm, Erica's husband, is on paternity\nleave but soon becomes embroiled in the murder investigation. Who would\nkill so ruthlessly to bury secrets so old? Reluctantly Erica must read her\nmother's wartime diaries. But within the pages is a painful revelation\nabout Erica's past. Could what little knowledge she has be enough to\nendanger her husband and newborn baby? The dark past is coming to light,\nand no one will escape the truth of how they came to be...\"\r\n8217,8779,122212,Terry McMillan,Waiting to Exhale,https://images.gr-assets.com/books/1309282766l/122212.jpg,3.94,11315,\"fiction, romance\",Waiting to ExhaleTerry McMillan\r\n8218,8780,8369681,Elizabeth Eulberg,Prom and Prejudice,https://images.gr-assets.com/books/1281991654l/8369681.jpg,3.82,16286,\"romance, contemporary\",\"For Lizzie Bennet, a music scholarship student at Connecticut's exclusive,\ngirls-only Longbourn Academy, the furor over prom is senseless, but even\nmore puzzling is her attraction to the pompous Will Darcy, best friend of\nher roommate's boyfriend.\"\r\n8219,8781,13074,Carl Hiaasen,Strip Tease,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428259144l/13074.jpg,3.82,11308,\"fiction, mystery\",\"A single mom turned stripper finds herself locking horns with a high-\npowered Congressman when a bachelor party gets out of hand in this\ninventive tale yet of savage appetites and sweet justice. Only in America\ncould an innocent, if drunken, guest of honor at a strip joint bachelor\nparty become a mortal threat against Big Money and Big Government. Only in\nsouth Florida, land of roadside honky-tonks and sinister pleasure boats --\nnot to mention blackmail and murder -- would a virtuous topless dancer join\nforces with a cool but clueless cop. And only in the fiction of Carl\nHiaasen do readers experience riveting suspense and razor-sharp characters\nalong with the most wicked humor imaginable. Don't miss Strip Tease,\nHiaasen's crazed romp through lust, murder, and government machinations.\"\r\n8220,8782,22175,Gabriel García Márquez,Doce cuentos peregrinos,https://images.gr-assets.com/books/1411334612l/22175.jpg,4.02,5911,\"fiction, classics\",\"Buen viaje, señor presidente - La santa - El avión de la bella durmiente -\nMe alquilo para soñar - Solo vine a hablar por teléfono - Espantos de\nagosto - María dos Prazeres - Diecisiete ingleses envenenados - Tramontana\n- El verano feliz de la señora Forbes - La luz es como el agua - El rastro\nde tu sangre en la nieve.\"\r\n8221,8783,760110,Kevin J. Anderson,\"Jedi Search (Star Wars: The Jedi Academy Trilogy, #1)\",https://images.gr-assets.com/books/1327958212l/760110.jpg,3.64,12686,\"fiction, fantasy\",\"As Luke Skywalker establishes a training program for Jedi Knights, he\nlearns that Han Solo and Chewbacca have been taken prisoner on another\nplanet.\"\r\n8222,8784,456057,Ted Dekker,Showdown by Ted Dekker Signature Edition,https://images.gr-assets.com/books/1329547365l/456057.jpg,3.93,11122,\"fiction, christian\",\"A stranger arrives in the small town of Paradise and becomes the center of\nattention when he reveals he has the power to grant any unfulfilled dream,\nbut his actions lead to a deadly showdown between good and evil that will\nchange the town and its residents forever.\"\r\n8223,8785,16299341,J.D. Robb,Thankless in Death ,https://images.gr-assets.com/books/1371102498l/16299341.jpg,4.28,11740,\"mystery, romance\",\"Lieutenant Eve Dallas investigates the holiday murder of her neighbors by\ntheir young adult son and must track him down before he strikes again in\nthis new novel written by New York Times best-selling author Nora Roberts\nunder a pseudonym. Reprint. 750,000 first printing.\"\r\n8224,8786,46460,John le Carré,Call for the Dead,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347597241l/46460.jpg,3.77,9611,\"fiction, mystery\",Call for the DeadJohn le Carré\r\n8225,8787,7999,Brian Jacques,Marlfox,https://images.gr-assets.com/books/1311702426l/7999.jpg,3.99,13426,\"fantasy, fiction\",\"When three young residents of Redwall Abbey go on a quest to recover the\ntapestry stolen by the Marlfoxes, their bravery removes the curse of these\nevil animals from a lost island. Illustrations.\"\r\n8226,8788,14028,\"Yasunari Kawabata, Edward G. Seidensticker\",雪国 ,https://images.gr-assets.com/books/1474272606l/14028.jpg,3.7,9942,\"fiction, classics\",\"Follows the story of a tragic affair between a wealthy dilettante and a\nmountain geisha who gives herself to him without illusions or regrets, in a\ntale of wasted love by the Nobel Prize-winning Japanese author. Reprint.\n10,000 first printing.\"\r\n8227,8789,122574,J. Maarten Troost,Getting Stoned with Savages: A Trip Through the Islands of Fiji and Vanuatu,https://images.gr-assets.com/books/1320524119l/122574.jpg,3.86,10292,\"travel, nonfiction\",\"Describes travel experiences in Vanuatu and Fiji, which include coping with\nMother Nature--typhoons, earthquakes, volcanoes--and observing the relaxed\nlifestyle of the islanders and their attitudes toward new parenthood.\"\r\n8228,8790,66470,Robin Cook,Chromosome 6,https://images.gr-assets.com/books/1290140777l/66470.jpg,3.89,11572,\"fiction, thriller\",\"The mutilated body of a notorious underworld figure leads forensic\npathologist Dr. Jack Stapleton to a mysterious group in Africa that uses\nstate-of-the-art medical technology for sinister purposes. Reissue.\"\r\n8229,8791,893731,Dave Barry,Big Trouble,https://images.gr-assets.com/books/1429999879l/893731.jpg,3.81,10954,\"fiction, mystery\",\"The humorist offers a fiction debut that describes the lives of the\ntroubled denizens of Coconut Grove, including a career-threatened adman, an\nalcoholic embezzler dodging a couple of hit men, and their dysfunctional\nfamilies.\"\r\n8230,8792,17877,\"Fyodor Dostoyevsky, Ergin Altay\",Записки из Мёртвого дома,https://images.gr-assets.com/books/1327908745l/17877.jpg,4.03,8354,\"classics, fiction\",\"Записки из Мёртвого домаFyodor Dostoyevsky, Ergin Altay\"\r\n8231,8793,342667,Kim Gruenenfelder,\"A Total Waste of Makeup (Charlize Edwards, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440631201l/342667._SY475_.jpg,3.69,10464,\"fiction, romance\",\"Charlize \"\"Charlie\"\" Edwards certainly knows, in theory, what it takes to\nlead a successful and happy life. She owns a nice house in Silverlake, LA's\ntrendiest neighborhood. She has glamorous and loyal friends who accompany\nher to the hottest clubs in town. And she works as the personal assistant\nto Drew Stanton, Hollywood's sexiest movie star. But she's also turning 30,\nchronically single, and faced with serving as maid of honor at her younger\nsister's wedding. Charlie finds herself struggling to juggle the chaos of\nwedding planning (while wondering if she'll ever wear the white dress\nherself), her all-consuming job for lunatic boss Stanton, and a serious\ncrush on Jordan, a photographer on the set of Drew's latest feature--a man\nwho might actually return her feelings. A page-turner from start to finish,\nA Total Waste of Makeup puts a fresh face on women's fiction.\"\r\n8232,8795,47922,Cecily von Ziegesar,Because I'm Worth It,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349055187l/47922.jpg,3.57,13443,\"fiction, contemporary\",\"The wickedly funny fourth book in the #1 New York Times bestselling series\nthat inspired the original hit CW show and the new series coming to HBO\nMax's Spring 2020 launch season (alongside hit series such as Pretty Little\nLiars and Friends). Everyone who's anyone in New York City is suffering\nfrom post-college-application cabin fever, and it's time to run a little\nwild! Could it be that Serena is smitten with Blair's stepbrother, or will\nthe Fashion Week parties pull her away from any attempt at true love? Dan\nand Vanessa are mad about each other and pursuing their creative\ndreams...but be careful of what you wish for. Nate hits an all-time low as\nBlair's Yale interview with a tall, handsome alum takes an unexpected turn,\nand Jenny makes a new friend who gets a little too close for comfort. And\njust who is going to get into college early acceptance? Wintertime has\nnever been hotter in NYC as things steam up all over Fifth Avenue.\"\r\n8233,8797,9893355,Sara Shepard,\"Stunning (Pretty Little Liars, #11)\",https://images.gr-assets.com/books/1320516289l/9893355.jpg,3.95,13636,\"mystery, fiction\",\"Now a hit ABC Family TV show, Sara Shepard’s #1 New York Times bestselling\nPretty Little Liars series continues with Stunning. In the eleventh novel,\nA is still out there, lurking in the shadows and digging up the liars’\nlatest secrets... Emily’s reconnecting with an old flame, one baby step at\na time. But is she headed toward true love or another bundle of heartache?\nSpencer’s learning about the highs and lows of campus life on a trip to\nPrinceton. Aria’s seeing a whole new side to Noel’s dad—and it could drive\na wedge between her and Noel. And, for better or worse, Hanna’s getting in\ntouch with her inner A. Secret by secret, lie by lie, the girls get tangled\nin A’s dangerous web. Soon A will have enough ammunition to pull the\ntrigger and end the pretty little liars, once and for all….\"\r\n8234,8798,481462,Gary Brandner,The Howling,https://images.gr-assets.com/books/1285664467l/481462.jpg,3.92,10414,\"horror, fiction\",\"Karyn and her husband Roy had come to the peaceful California village of\nDrago to escape the savagery of the city. On the surface Drago appeared to\nbe like most small rural towns. But it was not. The village had a most\nunsavory history. Unexplained disappearances, sudden deaths. People just\nvanished, never to be found.--From back cover.\"\r\n8235,8799,239917,Roger Zelazny,Sign of the Unicorn,https://images.gr-assets.com/books/1368213756l/239917.jpg,4.14,12510,\"fantasy, fiction\",\"Internecine warfare over succession to the throne and the evil forces of\nShadow threaten to destroy the royal family of the imaginary state of Amber\"\r\n8236,8800,3276072,Carl Hiaasen,Scat,https://images.gr-assets.com/books/1293763551l/3276072.jpg,3.94,13291,\"mystery, fiction\",\"Nick and his friend Marta decide to investigate when a mysterious fire\nstarts near a Florida wildlife preserve and an unpopular teacher goes\nmissing.\"\r\n8237,8801,22304,Douglas Coupland,Life after God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347568198l/22304.jpg,3.82,8659,\"fiction, contemporary\",\"We are the first generation raised without God. We are creatures with\nstrong religious impulses, yet they have nowhere to flow in this world of\nmalls and TV, Kraft dinners and jets. How do we cope with loneliness?\nAnxiety? The collapse of relationships? How do we reach the quiet, safe\nlayer of our lives? In this compellingly innovative collection of stories,\nbestselling author Douglas Coupland responds to these themes. Cutting\nthrough the hype of modern living to find a rare grace amid our lives, he\nuncovers a new kind of truth for a culture stuck on fast-forward. A culture\nseemingly beyond God.\"\r\n8238,8802,12786,John Berendt,The City of Falling Angels,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388406783l/12786.jpg,3.52,11333,\"nonfiction, travel\",\"Traces the aftermath of the 1996 Venice opera house fire, an event that\ndevastated Venetian society and was investigated by the author, who through\ninterviews with local figures learned about the region's rich cultural\nhistory.\"\r\n8239,8803,12598982,Rosamund Lupton,Afterwards,https://images.gr-assets.com/books/1330957613l/12598982.jpg,3.79,11041,\"mystery, fiction\",\"After a house fire leaves Grace and her daughter, Jenny, in the hospital,\nGrace must find the true culprit before Jenny's life is once again in\ndanger—and before her mute son is convicted for an arson he didn't commit.\nBy the author of Sister. Reprint.\"\r\n8240,8804,1667423,Ilana Tan,Autumn in Paris,https://images.gr-assets.com/books/1409579772l/1667423.jpg,4.07,9355,\"romance, fiction\",\"Tara Dupont menyukai Paris dan musim gugur. Ia mengira sudah memiliki\nsegalanya dalam hidup... sampai ia bertemu Tatsuya Fujisawa yang susah\nditebak dan selalu membangkitkan rasa penasarannya sejak awal. Tatsuya\nFujisawa benci Paris dan musim gugur. Ia datang ke Paris untuk mencari\norang yang menghancurkan hidupnya. Namun ia tidak menduga akan terpesona\npada Tara Dupont, gadis yang cerewet tapi bisa menenangkan jiwa dan\npikirannya... juga mengubah dunianya. Tara maupun Tatsuya sama sekali tidak\nmenyadari benang yang menghubungkan mereka dengan masa lalu, adanya rahasia\nyang menghancurkan segala harapan, perasaan, dan keyakinan. Ketika\nkebenaran terungkap, tersingkap pula arti putus asa... arti tak berdaya...\nKenyataan juga begitu menyakitkan hingga mendorong salah satu dari mereka\ningin mengakhiri hidup....\"\r\n8241,8805,50453,Charles Bukowski,Hot Water Music,https://images.gr-assets.com/books/1428126071l/50453.jpg,3.93,8815,\"fiction, poetry\",Hot Water MusicCharles Bukowski\r\n8242,8806,37619,Wilbur Smith,Warlock: A Novel of Ancient Egypt,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390193132l/37619.jpg,4.02,9718,\"fiction, fantasy\",Warlock: A Novel of Ancient EgyptWilbur Smith\r\n8243,8808,8575295,Amanda Hocking,Wisdom,https://images.gr-assets.com/books/1282281680l/8575295.jpg,4.04,12933,\"paranormal, romance\",WisdomAmanda Hocking\r\n8244,8809,13547234,Colm Tóibín,The Testament of Mary,https://images.gr-assets.com/books/1339797728l/13547234.jpg,3.61,9050,\"fiction, religion\",\"A provocative imagining of the later years of the mother of Jesus finds her\nliving a solitary existence in Ephesus years after her son's crucifixion\nand struggling with guilt, anger and feelings that her son is not the son\nof God and that His sacrifice was not for a worthy cause. By the award-\nwinning author of The Master. 25,000 first printing.\"\r\n8245,8810,17406847,Sara B. Larson,Defy,https://images.gr-assets.com/books/1371226819l/17406847.jpg,3.74,15160,\"fantasy, romance\",DefySara B. Larson\r\n8246,8812,817199,Mircea Eliade,Maitreyi,https://images.gr-assets.com/books/1303896468l/817199.jpg,3.92,11079,\"classics, romance\",MaitreyiMircea Eliade\r\n8247,8813,13051316,Christina McKenna,The Misremembered Man,https://images.gr-assets.com/books/1327875304l/13051316.jpg,3.72,5804,\"fiction, ebooks\",A cloth bag containing eight copies of the title and 1 discussion folder.\r\n8248,8814,4599,Glen David Gold, Carter Beats the Devil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428327514l/4599.jpg,4.09,10000,\"fiction, mystery\",\"A powerful and richly textured novel set in 1920 follows Charles Carter,\na.k.a. Carter the Great, who has become a master illusionist borne out of\nloneliness and desperation, as he creates the most outrageous stunt of all\ninvolving President Harding--one that could cause his downfall. Reprint.\n100,000 first printing.\"\r\n8249,8815,436806,\"Georges Bataille, Joachim Neugroschel, Dovid Bergelson\",Histoire de l'oeil,https://images.gr-assets.com/books/1490682356l/436806.jpg,3.71,9227,\"fiction, horror\",\"Histoire de l'oeilGeorges Bataille, Joachim Neugroschel, Dovid Bergelson\"\r\n8250,8816,4609710,Kate Jacobs,Knit Two,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442849190l/4609710._SY475_.jpg,3.47,11843,\"fiction, romance\",\"Five years after the death of her mother, Dakota is running their knitting\nstore part time with the help of members of the \"\"Friday Night Knitting\nClub,\"\" each of whom is seeking solace in their friendship from their own\nchallenges in life.\"\r\n8251,8817,95144,Maurice Sendak,In the Night Kitchen,https://images.gr-assets.com/books/1327934189l/95144.jpg,4.06,13263,\"fiction, fantasy\",\"1971 Caldecott Honor Book Notable Children's Books of 1940--1970 (ALA) Best\nBooks of 1970 (SLJ) Outstanding Children's Books of 1970 (NYT) Best\nIllustrated Children's Books of 1970 (NYT) Children's Books of 1970\n(Library of Congress) Carey-Thomas Award 1971--Honor Citation Brooklyn Art\nBooks for Children 1973, 1975\"\r\n8252,8818,11446,Raymond Carver,\"Will You Please Be Quiet, Please?\",https://images.gr-assets.com/books/1360355821l/11446.jpg,4.29,8568,\"fiction, classics\",\"Man's determination to endure and influence his destiny are the primary\nthemes of twenty-two introspective and poignant stories\"\r\n8253,8820,8843801,Larissa Ione,Eternal Rider,https://images.gr-assets.com/books/1305020644l/8843801.jpg,4.21,18214,\"paranormal, romance\",Eternal RiderLarissa Ione\r\n8254,8821,105189,\"Gabriel García Márquez, Randolph Hogan\",Relato de un náufrago,https://images.gr-assets.com/books/1450711004l/105189.jpg,3.73,5354,\"fiction, classics\",\"Translated by Randolph Hogan. In 1955, Garcia Marquez was working for El\nEspectador, a newspaper in Bogota, when in February of that year eight crew\nmembers of the Caldas, a Colombian destroyer, were washed overboard and\ndisappeared. Ten days later one of them turned up, barely alive, on a\ndeserted beach in northern Colombia. This book, which originally appeared\nas a series of newspaper articles, is Garcia Marquez's account of that\nsailor's ordeal. \"\"A luminous narrative that rivals the most remarkable\nstories of man's struggles against the sea.\"\"--Philadelphia Inquirer\"\r\n8255,8822,18079757,J.D. Robb,Concealed in Death,https://images.gr-assets.com/books/1457447121l/18079757.jpg,4.25,10444,\"mystery, romance\",Concealed in DeathJ.D. Robb\r\n8256,8823,131830,Christiane Northrup,\"Women's Bodies, Women's Wisdom: Creating Physical and Emotional Health and Healing\",https://images.gr-assets.com/books/1320512401l/131830.jpg,4.32,9867,\"nonfiction, spirituality\",\"Demonstrates the synergy of physical and spiritual healing through the use\nof herbal medicine and other alternative methods that complement a doctor's\ncare.\"\r\n8257,8824,37298,John Sandford,Mind Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435027890l/37298.jpg,4.19,12833,\"mystery, fiction\",Mind PreyJohn Sandford\r\n8258,8826,209966,\"Warren Ellis, John Cassaday\",\"Planetary, Volume 1: All Over the World and Other Stories\",https://images.gr-assets.com/books/1374683466l/209966.jpg,4.21,11808,\"comics, fiction\",\"Follows Jakita Wagner, Elijah Snow, and The Drummer, investigators for the\nunderground organization named Planetary, as they search to uncover the\nworld's secret and supernatural history.\"\r\n8259,8827,17926775,Danielle L. Jensen,Stolen Songbird,https://images.gr-assets.com/books/1386265289l/17926775.jpg,3.97,15026,\"fantasy, romance\",\"Trolls are said to love gold. They are said to live underground and hate\nhumans, perhaps even eat them. They are said to be evil. When Cécile de\nTroyes is kidnapped and sold to the trolls, she finds out that there is\ntruth in the rumors, but there is also so much more to trolls than she\ncould have imagined. Cécile has only one thing on her mind after she is\nbrought to Trollus, the city she hadn't even known existed under Forsaken\nMountain: escape. But the trolls are inhumanly strong. And fast. She will\nhave to bide her time, wait for the perfect opportunity. But something\nstrange happens while she's waiting--she begins to fall in love with the\nhandsome, thoughtful troll prince that she has been bonded and married to.\nShe begins to make friends. And she begins to see that she may be the only\nhope for the half-bloods--part troll/part human creatures who are slaves to\nthe full-blooded trolls. There is a rebellion brewing. And her prince,\nTristan, the future king, is its secret leader.\"\r\n8260,8829,228194,Stephen King,\"The Green Mile, Part 2: The Mouse on the Mile\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554913636l/228194._SY475_.jpg,4.47,11985,\"horror, fiction\",\"A mouse moves into Cold Mountain Penitentiary and breaks up the monotony\nfor the three death row inmates.\"\r\n8261,8830,43345,Mary Higgins Clark,A Cry in the Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348176757l/43345.jpg,3.84,12157,\"mystery, fiction\",\"Mary Higgins Clark, the New York Times bestselling \"\"Queen of Suspense\"\"\nshares another story filled with intrigue and mystery. When Jenny\nMacPartland meets the man of her dreams while working in a New York art\ngallery, she's ecstatic. Painter Erich Krueger -- whose exquisite\nlandscapes are making him a huge success -- is handsome, sensitive...and\nutterly in love with her. They marry quickly and Jenny plans a loving home\non Erich's vast Minnesota farm. But lonely days and eerie nights strain her\nnerves to the breaking point and test her sanity. Caught in a whirlpool of\nshattering events, Jenny soon unearths a past more terrifying than she\ndares imagine...tragic secrets that threaten her marriage, her children,\nher life.\"\r\n8262,8831,100322,\"Assata Shakur, Angela Y. Davis, Lennox S. Hinds\",Assata: An Autobiography,https://images.gr-assets.com/books/1328857268l/100322.jpg,4.48,10518,\"biography, nonfiction\",\"The author, formerly known as JoAnne Chesimard, relates the formative\nexperiences of her youth that led her to a life of activism in Black\nnationalist organizations and, eventually, to prison\"\r\n8263,8832,32636,Clive Barker,\"Days of Magic, Nights of War\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390436636l/32636.jpg,4.2,10755,\"fantasy, fiction\",\"Candy Quackenbush's adventures in the Abarat continue as she makes a\nstartling realization as to who she is, and the forces of Night begin plans\nfor war.\"\r\n8264,8833,789559,\"Paul Galdone, Peter Christen Asbjørnsen\",The Three Billy Goats Gruff,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347326047l/789559.jpg,4.14,12918,\"fiction, classics\",\"Retells the folktale about three billy goats who trick a troll that lives\nunder a bridge.\"\r\n8265,8834,17166702,Willow Aster,True Love Story,https://images.gr-assets.com/books/1358169338l/17166702.jpg,4.08,18327,\"romance, contemporary\",\"Growing up in an idealistic home, Sparrow Fisher is sheltered and innocent.\nWhen she meets Ian Sterling, a musician who is rising in popularity, she\ninstantly falls for his charm. They run into each other over the next few\nmonths and eventually begin an unconventional relationship. At different\nplaces in their lives, Sparrow is off to college in New York, and Ian is\ntraveling the country with the band. When they see each other, all seems\nwonderful and lighthearted, but when they're apart, Sparrow is left to\nwonder if Ian really cares about her the way he says he does, or if she's\njust another pretty face to him. Once their relationship steadies, they're\nboth happier than they've ever been, and it's hard to not get caught up in\nthe magic they have together. Until something so devastating comes to light\nthat threatens to shatter everything they've built with each other. True\nLove Story is a story about the real highs and lows that come with a\nrelationship-happiness, pain, angst, and finding out if love really is\nenough.\"\r\n8266,8835,27423283,\"Corina Bomann, Alison Layland\",Der Mondscheingarten,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1446600934l/27423283._SY475_.jpg,3.74,10944,\"fiction, mystery\",\"Der MondscheingartenCorina Bomann, Alison Layland\"\r\n8267,8836,6452806,Edward M. Kennedy,True Compass: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429825997l/6452806.jpg,3.99,10111,\"biography, memoir\",\"A memoir by the senator and youngest sibling of John F. Kennedy shares his\npersonal perspectives on the tragedies that have shaped his family, his\nlong political career, the major events of today's world, and his recent\nhealth battles.\"\r\n8268,8837,3760,Ian Fleming,Diamonds are Forever,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440633220l/3760._SY475_.jpg,3.59,10205,\"fiction, thriller\",Diamonds are ForeverIan Fleming\r\n8269,8838,2978,James Hilton,Lost Horizon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432440004l/2978._SY475_.jpg,3.9,10907,\"travel, philosophy\",Lost HorizonJames Hilton\r\n8270,8839,23492288,Caroline Kepnes,Hidden Bodies,https://images.gr-assets.com/books/1437414470l/23492288.jpg,3.87,11777,\"fiction, mystery\",\"Still mourning the loss of his girlfriend, bookstore employee Joe Goldberg\nfalls for a co-worker who mysteriously vanishes, prompting a cross-country\nmove to Los Angeles to search for her.\"\r\n8271,8840,349929,\"Nella Larsen, Ntozake Shange, Thadious M. Davis\",Passing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214730l/349929.jpg,3.8,10544,\"fiction, classics\",\"PassingNella Larsen, Ntozake Shange, Thadious M. Davis\"\r\n8272,8841,47701,\"Neil Gaiman, Michael Reaves\",InterWorld,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777301l/47701._SY475_.jpg,3.51,12419,\"fantasy, fiction\",\"An astounding tale of adventure, danger, magic, science, friendship,\nspaceships, and, oh yeah, the battle to save all the people in all the\nworlds in all possible dimensions. Joey Harker isn't a hero. In fact, he's\nthe kind of guy who gets lost in his own house. But one day, Joey gets\nreally lost. He walks straight out of his world and into another dimension.\nJoey's walk between worlds makes him prey to armies of magic and science,\nboth determined to harness Joey's power to travel between the dimensions.\nThe only thing standing in their way is Joey—or, more precisely, an army of\nJoeys, all from different dimensions and all determined to save the worlds.\nNow Joey must make a choice: return to the life he knows or join the battle\nto the end.\"\r\n8273,8842,23232,David Levithan,The Realm of Possibility,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407416385l/23232.jpg,3.94,13390,\"poetry, contemporary\",The Realm of PossibilityDavid Levithan\r\n8274,8843,428223,Harry Bernstein,The Invisible Wall: A Love Story That Broke Barriers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429978835l/428223.jpg,4.07,9715,\"memoir, nonfiction\",\"In a memoir set on the eve of World War I, the author describes growing up\nin a working-class town in northern England, where Jews and Christians were\nstrictly divided, and how his sister's love for a Christian boy broke down\nthe invisible social barrier.\"\r\n8275,8844,7507908,Brenna Yovanoff,The Replacement,https://images.gr-assets.com/books/1360176667l/7507908.jpg,3.56,15945,\"fantasy, horror\",The ReplacementBrenna Yovanoff\r\n8276,8846,8701960,James Gleick,\"The Information: A History, a Theory, a Flood\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348046486l/8701960.jpg,3.98,9874,\"science, history\",\"The best-selling author of Chaos analyzes how information has become a\ndefining quality of the modern era, tracing the evolutions of pivotal\ninformation technologies while profiling key contributors from Charles\nBabbage and Ada Byron to Samuel Morse and Claude Shannon.\"\r\n8277,8847,96642,Homer Hickam,Rocket Boys,https://images.gr-assets.com/books/1320533768l/96642.jpg,4.18,8768,\"science, memoir\",\"The author traces the boyhood enthusiasm for rockets that eventually led to\na career at NASA, describing how he built model rockets in the family\ngarage in West Virginia, inspired by the launch of the Soviet satellite\nSputnik. Reprint.\"\r\n8278,8849,19001,John le Carré,A Perfect Spy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348765215l/19001.jpg,3.99,10901,\"fiction, thriller\",A Perfect SpyJohn le Carré\r\n8279,8850,2049,Raymond Chandler,The High Window,https://images.gr-assets.com/books/1466754245l/2049.jpg,4.08,11080,\"mystery, fiction\",\"Crime fiction master Raymond Chandler's third novel featuring Philip\nMarlowe, the \"\"quintessential urban private eye\"\" (Los Angeles Times). A\nwealthy Pasadena widow with a mean streak, a missing daughter-in-law with a\npast, and a gold coin worth a small fortune—the elements don't quite add up\nuntil Marlowe discovers evidence of murder, rape, blackmail, and the worst\nkind of human exploitation. \"\"Raymond Chandler is a star of the first\nmagnitude.\"\" Erle Stanley Gardner \"\"Raymond Chandler has given us a detective\nwho is hard-boiled enough to be convincing . . . and that is no mean\nachievement.\"\" --The New York Times\"\r\n8280,8851,15985372,Laurell K. Hamilton,Affliction,https://images.gr-assets.com/books/1350942756l/15985372.jpg,4.01,13828,\"paranormal, fantasy\",\"Anita uses her familiarity with zombies to investigate why Micah's father\nis dying from an inexplicable flesh-rotting disease, in the latest novel of\nthe number one New York Times best-selling series following Kiss the Dead.\nReprint.\"\r\n8281,8852,12390650,Kristen Ashley,Wildest Dreams,https://images.gr-assets.com/books/1327913321l/12390650.jpg,4.19,19790,\"fantasy, romance\",\"Seoafin \"\"Finnie\"\" Wilde was taught by her parents that every breath was a\ntreasure and to seek every adventure she could find. And she learns this\nlesson the hard way when they perish in a plane crash. But she never\nforgets and when she discovers there is a parallel universe where every\nperson has a twin, she finds a witch who can send her there so she can have\nthe adventure of a lifetime.But upon arrival in the Winter Wonderland of\nLunwyn, she realizes she's been played by her twin and finds herself\nwalking down the aisle to be wed to The Drakkar.Thrown into inauspicious\ncircumstances, with years of practice, Finnie bests the challenges and digs\ninto her adventure. But as Frey Drakkar discovers the woman who is his new\nwife is not Princess Sjofn, a woman he dislikes but instead, his Finnie, a\nfree-spirit with a thirst for venture just like him, without her knowledge\nhe orders his new bride bound to his frozen world, everlasting. But at the\nsame time Frey plunges Finnie into a web of political intrigue that\nincludes assassination plots, poison, magic, mystery and... dragons.\"\r\n8282,8853,168569,John Sandford,Sudden Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204671l/168569.jpg,4.15,12408,\"fiction, mystery\",Sudden PreyJohn Sandford\r\n8283,8854,95602,Francine Rivers,Mark of the Lion Trilogy,https://images.gr-assets.com/books/1349032180l/95602.jpg,4.76,9081,\"christian, fiction\",\"A young Christian slave girl struggles to reconcile her love for a handsome\naristocrat with her deep faith, as she confronts the dark and decadent\nforces of imperial Rome\"\r\n8284,8855,198863,Richard Branson,\"Screw It, Let's Do It\",https://images.gr-assets.com/books/1312059228l/198863.jpg,3.93,7866,\"business, biography\",\"The renowned international entrepreneur shares the personal lessons and\nwisdom he has learned that have helped achieve success in his business and\npersonal life, including determination, loving what one does, and trying\nover and over until one accomplishes one's goal. Original.\"\r\n8285,8856,25052,\"Betty MacDonald, Alexandra Boiger\",Mrs. Piggle-Wiggle's Magic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924963l/25052.jpg,4.17,11756,\"fiction, fantasy\",\"From her upside-down house, the eccentric Mrs. Piggle-Wiggle issues to\nparents her marvelous cures for such common children's diseases as\nWon't-Put-Away-Toys-itis, Answerbackism, and Fighter-Quarrelitis.\"\r\n8286,8857,6328,\"Roald Dahl, Quentin Blake\",Revolting Rhymes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1312498117l/6328.jpg,4.13,12674,\"poetry, fiction\",\"Revolting RhymesRoald Dahl, Quentin Blake\"\r\n8287,8858,459386,Val McDermid,The Mermaids Singing ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389270695l/459386.jpg,3.98,11562,\"mystery, crime\",The Mermaids Singing Val McDermid\r\n8288,8859,121715,C.S. Lewis,The Weight of Glory,https://images.gr-assets.com/books/1381283728l/121715.jpg,4.41,9835,\"christian, religion\",\"Selected from sermons delivered by C. S. Lewis during World War II, these\nnine addresses offer guidance and inspiration in a time of great\ndoubt.These are ardent and lucid sermons that provide a compassionate\nvision of Christianity.\"\r\n8289,8860,114141,Nora Roberts,Sanctuary,https://images.gr-assets.com/books/1351342765l/114141.jpg,3.87,14219,\"romance, fiction\",\"Successful photographer Jo Ellen Hathaway realizes she must return to the\nSouthern resort run by her estranged family and, with the help of one man,\nsets out to discover who is stalking her and who killed her mother.\nReissue.\"\r\n8290,8861,241934,Robert Crais,Sunset Express,https://images.gr-assets.com/books/1344369358l/241934.jpg,4.17,10496,\"mystery, fiction\",\"When a wealthy WASP entrepreneur is arrested for the murder of his wife, a\nhot-shot defense attorney hires wise-cracking P.I. Elvis Cole to prove that\npolice detective Angela Rossi had monkeyed around with the evidence.\nReprint.\"\r\n8291,8862,23355896,J.R. Ward,The Bourbon Kings,https://images.gr-assets.com/books/1414595442l/23355896.jpg,3.87,11476,\"romance, contemporary\",\"\"\"For generations, the Bradford family has worn the mantle of kings of the\nbourbon capital of the world. Their sustained wealth has afforded them\nprestige and privilege--as well as a hard-won division of class on their\nsprawling estate, Easterly. Upstairs, a dynasty that by all appearances\nplays by the rules of good fortune and good taste. Downstairs, the staff\nwho work tirelessly to maintain the impeccable Bradford facade. And never\nthe twain shall meet. For Lizzie King, Easterly's head gardener, crossing\nthat divide nearly ruined her life. Falling in love with Tulane, the\nprodigal son of the bourbon dynasty, was nothing that she intended or\nwanted--and their bitter breakup only served to prove her instincts were\nright. Now, after two years of staying away, Tulane is finally coming home\nagain, and he is bringing the past with him. No one will be left unmarked:\nnot Tulane's beautiful and ruthless wife; not his older brother, whose\nbitterness and bad blood know no bounds; and especially not the ironfisted\nBradford patriarch, a man with few morals, fewer scruples, and many, many\nterrible secrets. As family tensions--professional and intimately private--\nignite, Easterly and all its inhabitants are thrown into the grips of an\nirrevocable transformation, and only the cunning will survive\"\"--\"\r\n8292,8863,296298,Alistair MacLean,The Guns of Navarone,https://images.gr-assets.com/books/1381683551l/296298.jpg,4.12,11501,\"fiction, thriller\",\"Twelve hundred British soldiers are isolated and waiting to die on the\nsmall island of Kheros, off the Turkish coast. all these lives could be\nsaved if only the vigilant, savage and catstrophically accurate guns of\nNavarone could be silenced. Navarone itself is a grim iron fortress, manned\nby a mixed garrison of Germans and Italians. To Captain Keith\nMallory,skilled saboteur and trained mountaineer, falls the task of leadig\nthe small party to scale the vast, impossible precipice of Navarone to blow\nup the guns.\"\r\n8293,8864,3762,Ian Fleming,On Her Majesty's Secret Service,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433986746l/3762._SY475_.jpg,3.94,11612,\"fiction, thriller\",On Her Majesty's Secret ServiceIan Fleming\r\n8294,8865,239509,Robin Norwood,Women Who Love Too Much,https://images.gr-assets.com/books/1173029153l/239509.jpg,3.98,7903,\"psychology, nonfiction\",\"Updated with a new foreword and revised text, a twentieth anniversary\nrelease of a top-selling reference counsels women on how to end destructive\ncycles of co-dependence and misogyny, in a guide that shares case histories\nof women who have ended or improved relationships with emotionally\nunavailable, addicted, or unfaithful partners. Reprint. 50,000 first\nprinting.\"\r\n8295,8867,41918,Alex Kotlowitz,There Are No Children Here: The Story of Two Boys Growing Up in the Other America,https://images.gr-assets.com/books/1320394274l/41918.jpg,4.25,10312,\"nonfiction, history\",\"Examines the lives of two inner-city brothers who live in a Chicago housing\nproject and their daily struggle for survival and enduring hope\"\r\n8296,8868,16333,Agatha Christie,At Bertram's Hotel,https://images.gr-assets.com/books/1375949033l/16333.jpg,3.7,14221,\"mystery, fiction\",\"When Miss Marple comes up from the country for a holiday in London, she\nfinds what she's looking for at Bertram's Hotel: traditional decor,\nimpeccable service and an unmistakable atmosphere of danger behind the\nhighly polished veneer. Yet not even Miss Marple can foresee the violent\nchain of events set in motion when an eccentric guest makes his way to the\nairport on the wrong day ...\"\r\n8297,8869,24465724,Kiera Cass,Happily Ever After,https://images.gr-assets.com/books/1427449095l/24465724.jpg,4.22,15230,\"romance, fantasy\",Happily Ever AfterKiera Cass\r\n8298,8870,119247,\"John D. Fitzgerald, Mercer Mayer\",The Great Brain,https://images.gr-assets.com/books/1311781413l/119247.jpg,4.16,13422,\"fiction, classics\",\"In a small town in turn-of-the-century Utah, a precocious ten-year-old boy\nhatches scheme after scheme to gain prestige and money. Reissue.\"\r\n8299,8871,1891296,Chris d'Lacey,The Fire Eternal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189873266l/1891296._SY475_.jpg,3.99,11259,\"fantasy, fiction\",\"As the weather grows wilder and the ice caps melt, Arctic bears starve,\ndragons awake, the earth goddess Gaia becomes restless, and Alexa Rain uses\nher special abilities in an attempt to save the world from the forces of\nevil.\"\r\n8300,8873,269795,Roddy Doyle,The Commitments,https://images.gr-assets.com/books/1173298169l/269795.jpg,3.95,11215,\"fiction, music\",\"Tells of the rise and fall of a British band, its members' lives and loves,\nand the tensions that led to their breakup\"\r\n8301,8874,6855294,Chuck Palahniuk,Tell-All,https://images.gr-assets.com/books/1320495064l/6855294.jpg,2.84,9733,\"fiction, contemporary\",\"Marinated in the world of vintage Hollywood, \"\"Tell-All\"\" is a \"\"Sunset\nBoulevard\"\"-inflected homage to Old Hollywood when Bette Davis and Joan\nCrawford ruled the roost; a veritable Tourette's syndrome of rat-tat-tat\nname-dropping, from the A-list to the Z-list; and is vintage Palahniuk.\"\r\n8302,8875,170529,Sonya Sones,What My Mother Doesn't Know,https://images.gr-assets.com/books/1355585638l/170529.jpg,3.83,12388,\"poetry, romance\",\"Sophie describes her relationships with a series of boys as she searches\nfor Mr. Right.\"\r\n8303,8876,6691426,Danielle Trussoni,Angelology,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178977l/6691426.jpg,3.41,12377,\"fantasy, fiction\",\"Having entered a convent at a young age, Sister Evangeline discovers a\nletter from famous philanthropist Abigail Rockefeller that reveals an\nancient conflict between an angel society Evangeline is destined to join\nand the human descendants of the Nephilim. By the author of Falling Through\nthe Earth. Reprint. A best-selling novel. 250,000 first printing.\"\r\n8304,8877,67657,\"Paula H. Deen, John Berendt\",The Lady & Sons Savannah Country Cookbook,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183684l/67657.jpg,4,10026,\"cookbooks, nonfiction\",\"A collection of traditional Southern family fare is presented by the owners\nof The Lady & Sons restaurant of Savannah\"\r\n8305,8878,23885,\"Gabriel García Márquez, J.S. Bernstein\",El coronel no tiene quién le escriba,https://images.gr-assets.com/books/1410130190l/23885.jpg,3.86,10480,\"fiction, classics\",\"El coronel no tiene quién le escribaGabriel García Márquez, J.S. Bernstein\"\r\n8306,8879,158141,Nicholas Pileggi,Wiseguy: Life in a Mafia Family,https://images.gr-assets.com/books/1223643389l/158141.jpg,4.14,8715,\"crime, biography\",\"Nicholas Pileggi’s vivid, unvarnished, journalistic chronicle of the life\nof Henry Hill—the working-class Brooklyn kid who knew from age twelve that\n“to be a wiseguy was to own the world,” who grew up to live the highs and\nlows of the mafia gangster’s life—has been hailed as “the best book ever\nwritten on organized crime” (Cosmopolitan). This is the true-crime\nbestseller that was the basis for Martin Scorsese’s film masterpiece\nGoodFellas, which brought to life the violence, the excess, the families,\nthe wives and girlfriends, the drugs, the payoffs, the paybacks, the jail\ntime, and the Feds…with Henry Hill’s crackling narration drawn straight out\nof Wiseguy and overseeing all the unforgettable action. Read it and\nexperience the secret life inside the mob—from one who’s lived it.\"\r\n8307,8880,22420,\"Warren Ellis, Darick Robertson, Rodney Ramos, Patrick Stewart\",\"Transmetropolitan, Vol. 5: Lonely City\",https://images.gr-assets.com/books/1374683445l/22420.jpg,4.4,10390,\"comics, fiction\",\"The City can be a lonely place - especially for famed journalist Spider\nJerusalem, despised and loved in equal measure (and with equal ferocity) by\nThe City's wealthy elite and its downtrodden rabble. But in a town where\nanything can bought, stolen, or manufactured, the truth is still in short\nsupply, and Jerusalem is the one man determined to keep it on the market -\nno matter what the price.\"\r\n8308,8881,15762186,Kent Haruf,Benediction,https://images.gr-assets.com/books/1344619032l/15762186.jpg,3.97,10214,\"fiction, contemporary\",BenedictionKent Haruf\r\n8309,8882,300905,عباس معروفی, سمفونی مردگان,https://images.gr-assets.com/books/1333982726l/300905.jpg,4.08,6980,\"fiction, mystery\",\"Canada is poised to reconcile its centuries-long fraught history with\nIndigenous peoples and to establish justice. What fundamental spiritual\nprinciples should guide this challenging process and bring together peoples\nwho have been separated for so long? In this part-memoir, part-scholarly\nwork, Patricia Verge records her decades-long friendship with the Stoney\nNakoda Nation in southern Alberta. She explores how her spiritual journey\nhas been intimately entwined with service among Indigenous people and\nconfronts her own ignorance of the true history of Canada, taking for her\nguidance this quote from the writings of the Bahá’í Faith: “a massive dose\nof truth must be administered to heal.” An engaging and timely work, Equals\nand Partners is ultimately a story of love and commitment to the principle\nof the oneness of humanity.\"\r\n8310,8883,420739,Linda Howard,After the Night,https://images.gr-assets.com/books/1337053790l/420739.jpg,4.1,17345,\"romance, contemporary\",After the NightLinda Howard\r\n8311,8884,6193923,Chelsea Cain, Evil at Heart,https://images.gr-assets.com/books/1328137862l/6193923.jpg,4.03,10884,\"mystery, thriller\", Evil at HeartChelsea Cain\r\n8312,8885,22635858,Cynthia Swanson,The Bookseller,https://images.gr-assets.com/books/1421854932l/22635858.jpg,3.66,9818,\"fiction, fantasy\",The BooksellerCynthia Swanson\r\n8313,8886,925367,\"Anatoli Boukreev, G. Weston DeWalt\",The Climb: Tragic Ambitions on Everest,https://images.gr-assets.com/books/1311995989l/925367.jpg,3.89,9584,\"nonfiction, travel\",\"A member of a climbing team that tried to take the summit of Everest in May\n1996 shares the gripping true story of what happened when another climbing\ngroup was overcome by snow, wind, and lack of oxygen. 25,000 first\nprinting. Tour.\"\r\n8314,8887,15810910,Django Wexler,The Thousand Names,https://images.gr-assets.com/books/1355441268l/15810910.jpg,4.04,9926,\"fantasy, fiction\",\"Winter Ihernglass poses as a man to enlist in the Vordanai Colonials and\nmust form an allegiance with a new colonel, appointed by the king to\nrestore order, after she is promoted to a command post.\"\r\n8315,8888,246546,Louisa May Alcott,An Old-Fashioned Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347469119l/246546.jpg,4.05,12818,\"classics, fiction\",An Old-Fashioned GirlLouisa May Alcott\r\n8316,8889,23714544,Jamie McGuire,Beautiful Burn,https://images.gr-assets.com/books/1452456357l/23714544.jpg,4.11,11884,\"romance, contemporary\",\"Fresh out of college, Ellison Edson has fallen through the cracks of rock\nbottom. While staying in her family's vacation home in Colorado, her\nbehavior has finally gained the attention of her parents-but not in the way\nshe hoped. Cut off from the millions she's always taken for granted, and\nleft alone to fend for herself, Ellie spirals further out of control,\nmaking a mistake she can't take back. Like his twin brother Taylor, Tyler\nMaddox is a member of the Alpine Hotshots, fighting wildland fires on the\nfrontline. As arrogant as he is charming, Tyler's nomadic lifestyle makes\nit easy to contain his relationships to one night. When he meets Ellie at a\nlocal party during off-season, her extreme personality and dismissive\nattitude fascinates him at first, but as his feelings deepen, Tyler\nrealizes that the crippling inner demons of the woman he loves might be the\nstrongest enemy any Maddox has ever faced.\"\r\n8317,8890,836606,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 2,https://images.gr-assets.com/books/1337807470l/836606.jpg,4.34,15859,\"manga, fantasy\",\"For use in schools and libraries only. Tohru Honda is an orphaned teenager\nwho comes to live with the Sohma family in exchange for housekeeping\nduties, but she soon comes to know the family secret.\"\r\n8318,8891,51364,Bart D. Ehrman,Misquoting Jesus: The Story Behind Who Changed the Bible and Why,https://images.gr-assets.com/books/1407109431l/51364.jpg,3.91,10075,\"history, nonfiction\",\"For almost 1,500 years, the New Testament manuscripts were copied by\nhand––and mistakes and intentional changes abound in the competing\nmanuscript versions. Religious and biblical scholar Bart Ehrman makes the\nprovocative case that many of our widely held beliefs concerning the\ndivinity of Jesus, the Trinity, and the divine origins of the Bible itself\nare the results of both intentional and accidental alterations by scribes.\nIn this compelling and fascinating book, Ehrman shows where and why changes\nwere made in our earliest surviving manuscripts, explaining for the first\ntime how the many variations of our cherished biblical stories came to be,\nand why only certain versions of the stories qualify for publication in the\nBibles we read today. Ehrman frames his account with personal reflections\non how his study of the Greek manuscripts made him abandon his once\nultra–conservative views of the Bible.\"\r\n8319,8892,33288638,Mariana Zapata,Wait for It,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1481172517l/33288638._SY475_.jpg,4.22,18371,\"romance, contemporary\",Wait for ItMariana Zapata\r\n8320,8893,13658,Ursula K. Le Guin,The Other Wind,https://images.gr-assets.com/books/1309285821l/13658.jpg,4.06,11325,\"fantasy, fiction\",The Other WindUrsula K. Le Guin\r\n8321,8894,6497645,\"Steve Berry, Scott Brick\",The Paris Vendetta,https://images.gr-assets.com/books/1320407237l/6497645.jpg,3.9,11263,\"thriller, fiction\",\"Awakened by a housebreaking stranger who is revealed to be a friend of\nHenrik Thorvaldsen and the father of a young man he once tried to save,\nCotton Malone flees with the intruder when they are pursued by a shadowy\norganization.\"\r\n8322,8895,22535533,Anthony Horowitz,Moriarty,https://images.gr-assets.com/books/1404412525l/22535533.jpg,3.74,8376,\"mystery, fiction\",MoriartyAnthony Horowitz\r\n8323,8896,82397,\"William Shakespeare, Roma Gill, Robert          Jackson\",The tragedie of King Richard the second,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347228947l/82397.jpg,3.76,10265,\"classics, fiction\",\"The tragedie of King Richard the secondWilliam Shakespeare, Roma Gill, Robert          Jackson\"\r\n8324,8897,774060,Johanna Lindsey,Prisoner of my desire ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348501614l/774060.jpg,4.06,13391,\"romance, fiction\",\"Destined to be yet another bestseller from the inimitable Johanna Lindsey.\nSpirited Rowena Belleme must produce an heir - or incur the dangerous wrath\nof a ruthless stepbrother who stands to forfeit his ill-gotten wealth. And\nthe magnificent Warrick deChaville is the perfect choice to sire her child\n- though it means imprisoning the handsome knight and forcing him to bend\nto her amorous whims. Vowing to resist but betrayed by his virility, noble\nWarrick is intoxicated by Rowena's sapphire eyes and voluptuous beauty. Yet\nall the while he plans a fitting revenge - eagerly awaiting the time when\nhis sensuous captor becomes his helpless captive. . .and is made to suffer\nthe same rapturous torment and exquisite ecstasy that he himself has\nendured.\"\r\n8325,8898,80631,Greg Iles,Blood Memory,https://images.gr-assets.com/books/1327877256l/80631.jpg,4.09,10938,\"mystery, fiction\",\"Experiencing panic attacks and blackouts at murder scenes, forensics expert\nCat Ferry is suspended from her task force and returns to her Mississippi\nhometown, where she discovers disturbing information about her father's\nmurder, which occurred when Cat had been eight years old. By the author of\nThe Footprints of God. Reprint.\"\r\n8326,8900,18089975,Laura Lippman,After I'm Gone,https://images.gr-assets.com/books/1383274696l/18089975.jpg,3.61,10905,\"mystery, fiction\",After I'm GoneLaura Lippman\r\n8327,8901,3925836,Jennifer Worth,Shadows of the Workhouse: The Drama of Life in Postwar London,https://images.gr-assets.com/books/1328216841l/3925836.jpg,4.12,8094,\"memoir, history\",Midwife.\r\n8328,8902,47780,\"Anna Gavalda, Alison Anderson\",\"Ensemble, c'est tout\",https://images.gr-assets.com/books/1327865734l/47780.jpg,4.1,7318,\"fiction, art\",\"Une histoire d'amour entre quatre éclopés de la vie : Camille Fauque a 26\nans et une enfance pourrie, Philibert Marquet de la Durbellière est un\nhéritier distingué, Franck Lestafier un cuisinier hors pair, un peu faraud,\ndont la grand-mère, Paulette, se laisse mourir dans une maison de retraite.\nOu comment ce qui n'aurait jamais dû arriver arriva.\"\r\n8329,8903,762462,\"Peter Lynch, John Rothchild\",One Up On Wall Street : How To Use What You Already Know To Make Money In The Market,https://images.gr-assets.com/books/1444850522l/762462.jpg,4.12,10563,\"business, nonfiction\",\"The manager of a top investment fund discusses how individuals can make a\nkilling in the market through research and investment techniques that\nconfound conventional market wisdom.\"\r\n8330,8904,422452,Iain M. Banks,Against a Dark Background,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174599757l/422452.jpg,4.09,10679,\"fiction, fantasy\",\"A former combat leader during a series of commercial wars orbiting the\nplanet Golter, Sharrow is targeted by a religious cult that believes she is\na final obstacle to the faith's apotheosis, a situation that forces her to\nseek out the last of the apocalyptically powerful Lazy Guns. Original.\"\r\n8331,8905,7897620,Fannie Flagg,I Still Dream About You,https://images.gr-assets.com/books/1320471793l/7897620.jpg,3.55,11230,\"fiction, mystery\",\"Hiding her unhappiness from those who believe she has a perfect life,\nformer beauty queen Maggie has an unexpected change of circumstances that\nleads to surprising discoveries and valuable lessons in friendship.\"\r\n8332,8906,2677,Jonathan Swift,A Modest Proposal and Other Satirical Works,https://images.gr-assets.com/books/1264316062l/2677.jpg,4.04,12499,\"fiction, philosophy\",\"Treasury of five shorter works by the author of Gulliver's Travels offers\nample evidence of the great satirist's inspired lampoonery. Title piece\nplus The Battle of the Books, A Meditation Upon a Broom-Stick, A Discourse\nConcerning the Mechanical Operation of the Spirit and The Abolishing of\nChristianity in England.\"\r\n8333,8907,60551,Alan W. Watts,The Book on the Taboo Against Knowing Who You Are,https://images.gr-assets.com/books/1403166178l/60551.jpg,4.28,9811,\"philosophy, spirituality\",\"A witty attack on the illusion that the self is a separate ego that\nconfronts a universe of alien physical objects.\"\r\n8334,8908,85679,\"Bertolt Brecht, David Hare\",Mutter Courage und ihre Kinder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348028154l/85679.jpg,3.66,9705,\"classics, fiction\",\"Mutter Courage und ihre KinderBertolt Brecht, David Hare\"\r\n8335,8909,10357792,Jeaniene Frost,Up From the Grave ,https://images.gr-assets.com/books/1367085937l/10357792.jpg,4.28,19059,\"paranormal, romance\",\"There's always one more grave to dig Lately, life has been unnaturally calm\nfor vampires Cat Crawfield and her husband, Bones. They should have known\nbetter than to relax their guard, because a shocking revelation sends them\nback into action to stop an all-out war . . . A rogue CIA agent is involved\nin horrifying secret activities that threaten to raise tensions between\nhumans and the undead to dangerous heights. Now Cat and Bones are in a race\nagainst time to save their friends from a fate worse than death . . .\nbecause the more secrets they unravel, the deadlier the consequences. And\nif they fail, their lives—and those of everyone they hold dear—will be\nhovering on the edge of the grave.\"\r\n8336,8910,1210754,Jessica Day George,\"Sun and Moon, Ice and Snow\",https://images.gr-assets.com/books/1317065700l/1210754.jpg,3.97,17095,\"fantasy, romance\",\"A girl travels east of the sun and west of the moon to free her beloved\nprince from a magic spell.\"\r\n8337,8911,17570538,Brent Weeks,The Blood Mirror,https://images.gr-assets.com/books/1458663265l/17570538.jpg,4.29,4528,\"fantasy, fiction\",The Blood MirrorBrent Weeks\r\n8338,8912,7203669,Nic Pizzolatto,Galveston,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1593570705l/7203669.jpg,3.72,7601,\"fiction, crime\",GalvestonNic Pizzolatto\r\n8339,8914,10306358,Justin Torres,We the Animals,https://images.gr-assets.com/books/1327900720l/10306358.jpg,3.61,10616,\"fiction, contemporary\",We the AnimalsJustin Torres\r\n8340,8915,2067,Daniel C. Dennett,Breaking the Spell: Religion as a Natural Phenomenon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406403613l/2067.jpg,3.89,8381,\"philosophy, religion\",Breaking the Spell: Religion as a Natural PhenomenonDaniel C. Dennett\r\n8341,8916,765427,\"Edmund Spenser, Thomas P. Roche, C. Patrick O'Donnell\",The Faerie Queene,https://images.gr-assets.com/books/1328308492l/765427.jpg,3.55,13239,\"poetry, classics\",\"Recounts the quests of certain knights as they struggled to achieve\nspecific virtues, including stories that involve dragons, witches, and\nenchanted mirrors, in a work that was dedicated to Elizabeth I.\"\r\n8342,8917,8142508,Francine Rivers,Her Daughter's Dream,https://images.gr-assets.com/books/1276207024l/8142508.jpg,4.34,10703,\"fiction, christian\",Her Daughter's DreamFrancine Rivers\r\n8343,8919,17225311,Alissa Nutting,Tampa,https://images.gr-assets.com/books/1393784199l/17225311.jpg,3.34,9662,\"fiction, contemporary\",TampaAlissa Nutting\r\n8344,8920,25148,Arthur Nersesian,The Fuck-Up,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420653419l/25148.jpg,3.56,8980,\"fiction, contemporary\",\"A dark comedy of urban life features an aspiring, but incompetent, writer,\nwho is dumped by his girlfriend, fired for asking for a raise, and stumbles\ninto a robbery\"\r\n8345,8921,105744,Steve Alten,MEG: A Novel of Deep Terror,https://images.gr-assets.com/books/1407870638l/105744.jpg,3.76,9946,\"horror, fiction\",\"Jonas Taylor, a paleontologist and ex-undersea submersible pilot, becomes a\nreluctant participant in a deep-water mission, an expedition that brings\nhim face to face with the Megalodon, a prehistoric, massive predator and\nancestor of the great white shark\"\r\n8346,8922,289695,Frank Beddor,Seeing Redd,https://images.gr-assets.com/books/1354846350l/289695.jpg,3.85,14540,\"fantasy, fiction\",Seeing ReddFrank Beddor\r\n8347,8923,126583,John O'Hara,Appointment in Samarra,https://images.gr-assets.com/books/1320446769l/126583.jpg,3.83,10663,\"fiction, classics\",\"\"\"In December 1930, just before Christmas, the Gibbsville social circuit is\nelectrified with parties and dances, where the music plays late into the\nnight and the liquor flows freely. At the center of the social elite stand\nJulian and Caroline English -- the envy of friends and strangers alike. But\nin one rash moment born inside a highball glass, Julian breaks with polite\nsociety and begins a rapid descent toward self-destruction\"\".\"\r\n8348,8924,833550,\"Janet Ahlberg, Allan Ahlberg\",Each Peach Pear Plum,https://images.gr-assets.com/books/1367225641l/833550.jpg,4.24,12747,\"fiction, poetry\",\"In this book with your little eye, take a look and play 'I spy' . . . This\ngift set commemorates the 40th anniversary of Each Peach Pear\nPlum,including a deluxe edition of the book, an exclusive and limited print\nand a beautiful presentation box. The perfect gift for any new baby or fan\nof this iconic and beloved children's classic.\"\r\n8349,8928,47304,\"Erin Gruwell, Zlata Filipović, The Freedom Writers\",The Freedom Writers Diary: How a Teacher and 150 Teens Used Writing to Change Themselves and the World Around Them,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403027481l/47304.jpg,4.09,10567,\"nonfiction, biography\",\"A true account of a teacher who confronted a room of \"\"at-risk\"\" students\ndetails their life-changing journey and includes diary excerpts\"\r\n8350,8929,2120783,Fareed Zakaria,The Post-American World 2.0,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347716469l/2120783.jpg,3.86,8753,\"nonfiction, history\",\"Describes the surging growth of the economies of China, India, and Brazil\nwhile the United States and other advanced economies have stalled.\"\r\n8351,8930,1823,Jon Ronson,Them: Adventures with Extremists,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400199696l/1823.jpg,3.94,9081,\"nonfiction, religion\",\"From the bestselling author of The Psychopath Test: A Journey Through the\nMadness Industry and So You’ve Been Publicly Shamed. A wide variety of\nextremist groups -- Islamic fundamentalists, neo-Nazis -- share the oddly\nsimilar belief that a tiny shadowy elite rule the world from a secret room.\nIn Them, journalist Jon Ronson has joined the extremists to track down the\nfabled secret room. As a journalist and a Jew, Ronson was often considered\none of \"\"Them\"\" but he had no idea if their meetings actually took place. Was\nhe just not invited? Them takes us across three continents and into the\nsecret room. Along the way he meets Omar Bakri Mohammed, considered one of\nthe most dangerous men in Great Britain, PR-savvy Ku Klux Klan Grand Wizard\nThom Robb, and the survivors of Ruby Ridge. He is chased by men in dark\nglasses and unmasked as a Jew in the middle of a Jihad training camp. In\nthe forests of northern California he even witnesses CEOs and leading\npoliticians -- like Dick Cheney and George Bush -- undertake a bizarre owl\nritual. Ronson's investigations, by turns creepy and comical, reveal some\nalarming things about the looking-glass world of \"\"us\"\" and \"\"them.\"\" Them is a\ndeep and fascinating look at the lives and minds of extremists. Are the\nextremists onto something? Or is Jon Ronson becoming one of them?\"\r\n8352,8931,15161,\"Susanna Clarke, Charles Vess\",The Ladies of Grace Adieu and Other Stories,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435241299l/15161._SX318_.jpg,3.85,12150,\"fantasy, fiction\",\"Presents an anthology of stories set in a mysterious, fantastical version\nof England populated by petulant princesses, vengeful owls, and endless\npaths in the dark woods, and features the Duke of Wellington and other\ncolorful characters.\"\r\n8353,8933,22609522,Bill Browder,\"Red Notice: A True Story of High Finance, Murder, and One Man’s Fight for Justice\",https://images.gr-assets.com/books/1422848658l/22609522.jpg,4.39,8729,\"nonfiction, biography\",\"Red Notice: A True Story of High Finance, Murder, and One Man’s Fight for JusticeBill Browder\"\r\n8354,8934,621,David Bach,The Automatic Millionaire: A Powerful One-Step Plan to Live and Finish Rich,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436792430l/621._SY475_.jpg,3.9,10091,\"business, nonfiction\",The Automatic Millionaire: A Powerful One-Step Plan to Live and Finish RichDavid Bach\r\n8355,8935,9415951,Cat Patrick,Forgotten,https://images.gr-assets.com/books/1327916264l/9415951.jpg,3.79,14045,\"romance, fantasy\",\"Each night at precisely 4:33 am, while sixteen-year-old London Lane is\nasleep, her memory of that day is erased. In the morning, all she can\n\"\"remember\"\" are events from her future. London is used to relying on\nreminder notes and a trusted friend to get through the day, but things get\ncomplicated when a new boy at school enters the picture. Luke Henry is not\nsomeone you'd easily forget, yet try as she might, London can't find him in\nher memories of things to come. When London starts experiencing disturbing\nflashbacks, or flash-forwards, as the case may be, she realizes it's time\nto learn about the past she keeps forgetting-before it destroys her future.\"\r\n8356,8936,13153693,Jill Leovy,Ghettoside: A True Story of Murder in America,https://images.gr-assets.com/books/1417410395l/13153693.jpg,4.12,8969,\"nonfiction, crime\",\"\"\"From the acclaimed Los Angeles Times reporter Jill Leovy, Ghettoside is\nthe devastatingly powerful story of the quintessential American murder and\na brilliant and driven cadre of homicide detectives whose creed is to\npursue justice for forgotten victims at all costs. Ghettoside is a\nkaleidoscopic, fast-paced narrative of crime and investigation, and\nintimate portrait of detectives and a community bonded in tragedy, and a\nsurprising new lens onto why murder happens in our cities--and how the\nepidemic of killings might yet be stopped.\"\"--Back cover.\"\r\n8357,8937,227570,\"Terry Jones, Brian Froud\",Lady Cottington's Pressed Fairy Book,https://images.gr-assets.com/books/1408938052l/227570.jpg,3.99,11518,\"fantasy, art\",\"This is a reproduction of the diary of Lady Angelica Cottingham, which\nfeatures pressed garden fairies. Or rather the psychic images of the\nfairies, who quickly turned it into a game, where they leapt between the\nclosing pages in an effort to outdo each other to produce the most\noutrageous poses.\"\r\n8358,8938,18404248,Chevy Stevens,That Night,https://images.gr-assets.com/books/1382569155l/18404248.jpg,3.92,11318,\"mystery, fiction\",That NightChevy Stevens\r\n8359,8939,1331653,Paul Torday,Salmon Fishing in the Yemen,https://images.gr-assets.com/books/1347617111l/1331653.jpg,3.51,9299,\"fiction, contemporary\",\"A meek, slightly pompous, middle-aged scientist working at London's\nNational Centre for Fisheries Excellence, Dr. Alfred Jones takes on the\noutlandish--and ill-fated--task of introducing the sport of salmon fishing\ninto the Yemen River at the behest of a mysterious sheikh, in a whimsical\nnovel of administrative bureaucracy, political spin, and government\ndysfunction. Reprint.\"\r\n8360,8940,392563,Alex  Ross,The Rest Is Noise: Listening to the Twentieth Century,https://images.gr-assets.com/books/1311973474l/392563.jpg,4.08,9316,\"music, history\",\"A history of modern music is set against the backdrop of the events and\ncultural movements of the twentieth century, chronicling the evolution of\nmass culture, technological innovation, revolution, and social experiments\nin terms of the music of the era.\"\r\n8361,8942,9403947,Trish Doller,Something Like Normal,https://images.gr-assets.com/books/1336837143l/9403947.jpg,3.81,15206,\"romance, contemporary\",Something Like NormalTrish Doller\r\n8362,8943,18213403,Glenn Greenwald,\"No Place to Hide: Edward Snowden, the NSA, and the U.S. Surveillance State\",https://images.gr-assets.com/books/1383352779l/18213403.jpg,4.08,8366,\"nonfiction, history\",\"No Place to Hide: Edward Snowden, the NSA, and the U.S. Surveillance StateGlenn Greenwald\"\r\n8363,8944,40293,Orson Scott Card,Pastwatch: The Redemption of Christopher Columbus,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431529811l/40293._SY475_.jpg,3.96,11922,\"fiction, fantasy\",\"In one of the most powerful and thought-provoking novels of his remarkable\ncareer, Orson Scott Card interweaves a compelling portrait of Christopher\nColumbus with the story of a future scientist who believes she can alter\nhuman history from a tragedy of bloodshed and brutality to a world filled\nwith hope and healing.\"\r\n8364,8945,32529,Lisa Gardner,The Next Accident,https://images.gr-assets.com/books/1348816896l/32529.jpg,4.16,11261,\"mystery, thriller\",\"When the daughter of FBI Special Agent Pierce Quincy dies suddenly, the\ndeath is ruled an accident, until investigator Rainie Conner uncovers\nevidence that points to a killer with the ability to unleash his victims'\ninnermost fears.\"\r\n8365,8946,46292,Hafez,دیوان‎‎ [Dīvān],https://images.gr-assets.com/books/1327770153l/46292.jpg,4.63,2773,\"poetry, classics\",دیوان‎‎ [Dīvān]Hafez\r\n8366,8947,98250,John L. Parker Jr.,Once a Runner,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171408273l/98250.jpg,4.05,8106,\"fiction, sports\",\"Originally self-published in 1978, Once a Runner captures the essence of\ncompetitive running—and of athletic competition in general—and has become\none of the most beloved sports novels ever published.. Inspired by the\nauthor’s experience as a collegiate champion, the story focuses on Quenton\nCassidy, a competitive runner at fictional Southeastern University whose\nlifelong dream is to run a four-minute mile. He is less than a second away\nwhen the turmoil of the Vietnam War era intrudes into the staid recesses of\nhis school’s athletic department. After he becomes involved in an athletes’\nprotest, Cassidy is suspended from his track team. Under the tutelage of\nhis friend and mentor, Bruce Denton, a graduate student and former Olympic\ngold medalist, Cassidy gives up his scholarship, his girlfriend, and\npossibly his future to withdraw to a monastic retreat in the countryside\nand begin training for the race of his life against the greatest miler in\nhistory. . A rare insider’s account of the incredibly intense lives of\nelite distance runners, Once a Runner is an inspiring, funny, and spot-on\ntale of one man’s quest to become a champion..\"\r\n8367,8948,8879121,Ben Hatke,Zita the Spacegirl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388260704l/8879121.jpg,4.04,10832,\"comics, fantasy\",Zita the SpacegirlBen Hatke\r\n8368,8949,32812,\"Dante Alighieri, Dorothy L. Sayers, Barbara Reynolds\",Paradiso,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347467591l/32812.jpg,3.94,9701,\"classics, fiction\",\"In Paradise, having plunged to the uttermost depths of Hell and climbed the\nMount of Purgatory, Dante ascends to Heaven, continuing his soul's search\nfor God, guided by his beloved Beatrice. As he progresses through the\nspheres of Paradise he grows in understanding, until he finally experiences\ndivine love in the radiant presence of the deity. Examining eternal\nquestions of faith, desire and enlightenment, Dante exercised all his\nlearning and wit, wrath and tenderness in his creation of one of the\ngreatest of all Christian allegories.\"\r\n8369,8950,72148,William  Boyd,Restless,https://images.gr-assets.com/books/1330951946l/72148.jpg,3.84,9308,\"fiction, mystery\",RestlessWilliam  Boyd\r\n8370,8951,633270,Nancy Farmer,\"The Ear, the Eye, and the Arm\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348531082l/633270.jpg,3.85,12389,\"fantasy, fiction\",\"The Ear, the Eye, and the ArmNancy Farmer\"\r\n8371,8952,11784281,\"Amy Lichtenhan, A.L. Jackson\",Pulled,https://images.gr-assets.com/books/1347389725l/11784281.jpg,4.06,19241,\"romance, contemporary\",\"PulledAmy Lichtenhan, A.L. Jackson\"\r\n8372,8953,125542,R.L. Stine,Stay Out of the Basement,https://images.gr-assets.com/books/1328867797l/125542.jpg,3.64,11685,\"horror, fiction\",Stay Out of the BasementR.L. Stine\r\n8373,8955,18071296,Belle Aurora,Willing Captive,https://images.gr-assets.com/books/1371600310l/18071296.jpg,4.11,18854,\"romance, contemporary\",\"Delilah “Lily” Flynn is used to her drab existence. Lily's been living it\nfor twenty two years. Her boring life is suddenly turned on its head when\nshe's rudely kidnapped from her bedroom. Or so she thinks. Nox Taylor is\nfar too high up in his field to be assigned a babysitting job. There's\nnothing more he wants than to complete his mission so he can be rid of the\nsmartass tomboy, Lily. Day after day, Nox watches Lily and her strange\nways. She's unlike any woman he's ever met. Getting close to the girl is\npurely for her own protection…right? Lily never imagined she'd make her\nfirst real friends in captivity. To what lengths would she go to keep them?\"\r\n8374,8956,125540,R.L. Stine,One Day at Horrorland,https://images.gr-assets.com/books/1328867794l/125540.jpg,3.87,11534,\"horror, fiction\",\"When they get lost on their way to Zoo Gardens Theme Park, the Morris\nfamily instead finds Horrorland, an amusement park with no crowds, no\nlines, and heart-stopping rides that go beyond creepy.\"\r\n8375,8957,6055063,David Lebovitz,The Sweet Life in Paris: A Recipe for Living in the World's Most Delicious City,https://images.gr-assets.com/books/1320533633l/6055063.jpg,3.85,9754,\"travel, memoir\",\"American pastry chef and cookbook author David Lebovitz offers a humorous\nand irreverent account of living as an expatriate in Paris. Includes over\nfifty recipes.\"\r\n8376,8958,17331828,Julie Kagawa,Talon,https://images.gr-assets.com/books/1397581124l/17331828.jpg,3.77,15818,\"fantasy, romance\",\"THE DRAGONS OF TALON: Once hunted nearly to extinction, they are now poised\nto take over the world. THE ORDER OF ST. GEORGE: The legendary\ndragonslayers will stop at nothing to wipe dragons from the face of the\nearth. These mortal enemies are locked in secret and deadly combat, with\nhumanity none the wiser. To take her rightful place in the Talon\norganization, young dragon Ember Hill must prove she can hide her true\nnature and blend in with humans. Her delight at the prospect of a summer of\n\"\"normal\"\" teen experiences is short-lived, however, once she discovers that\nshe's also expected to train for her destined career in Talon. But a chance\nmeeting with a rogue dragon will soon challenge everything Ember has been\ntaught. As Ember struggles to accept her future, St. George soldier Garret\nXavier Sebastian is tasked with hunting her down. But when faced with\nEmber's bravery, confidence and all-too-human desires, Garret begins to\nquestion everything the Order has ingrained in him--and what he might be\nwilling to give up to uncover the truth about dragons.\"\r\n8377,8959,24473763,Grace Draven,Radiance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422721500l/24473763.jpg,4.12,13105,\"fantasy, romance\",\"Ildiko has always known her only worth to the royal family lay in a\nstrategic marriage. Resigned to her fate, she is horrified to learn that\nher intended groom isn't just a foreign aristocrat but the younger prince\nof a people neither familiar nor human. Bound to her new husband, Ildiko\nwill leave behind all she's known to embrace a man shrouded in darkness but\nwith a soul forged by light. Two people brought together by the trappings\nof duty and politics will discover they are destined for each other, even\nas the powers of a hostile kingdom scheme to tear them apart.\"\r\n8378,8960,12878667,Mark Haddon,The Red House,https://images.gr-assets.com/books/1333578268l/12878667.jpg,2.93,10621,\"fiction, contemporary\",\"A tale told from rotating viewpoints traces seven days of bitterly comic\nfamily dynamics and confrontation when a wealthy doctor invites his\nestranged sister's family to join his newly blended one at a vacation home\nin the English countryside.\"\r\n8379,8961,116356,\"Larry Niven, Jerry Pournelle\",Footfall,https://images.gr-assets.com/books/1320440216l/116356.jpg,3.89,11054,\"fiction, science\",\"FootfallLarry Niven, Jerry Pournelle\"\r\n8380,8962,7818881,Heather Brewer,Twelfth Grade Kills,https://images.gr-assets.com/books/1268256304l/7818881.jpg,4.36,13282,\"fantasy, paranormal\",Twelfth Grade KillsHeather Brewer\r\n8381,8963,149621,Alistair MacLean,Ice Station Zebra,https://images.gr-assets.com/books/1364039405l/149621.jpg,3.95,12689,\"fiction, thriller\",\"A classic thriller from the bestselling master of action and suspense. The\natomic submarine Dolphin has impossible orders: to sail beneath the ice-\nfloes of the Arctic Ocean to locate and rescue the men of weather-station\nZebra, gutted by fire and drifting with the ice-pack somewhere north of the\nArctic Circle. But the orders do not say what the Dolphin will find if she\nsucceeds that the fire at Ice Station Zebra was sabotage, and that one of\nthe survivors is a killer \"\"\"\r\n8382,8964,4059448,Ronald C. White Jr.,A. Lincoln: A Biography,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425598216l/4059448.jpg,4.22,8890,\"history, biography\",A. Lincoln: A BiographyRonald C. White Jr.\r\n8383,8965,58033,\"William Shakespeare, Sylvan Barnet, Alvin Kernan, Russell Fraser\",\"Four Great Tragedies: Hamlet, Othello, King Lear, Macbeth (Signet Classics)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926911l/58033.jpg,4.41,12700,\"classics, fiction\",\"Hamlet, Macbeth, King Lear, Othello\"\r\n8384,8966,373606,Susan Elizabeth Phillips,Ain't She Sweet?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348293825l/373606.jpg,4.05,15890,\"romance, contemporary\",\"Sugar Beth Carey's come back to Parrish, Mississippi, and she's brought her\nreputation for wreaking havoc with her. She's broke, desperate, and too\nproud to show it, even with her old enemies lining up for a chance to get\neven. Her former girlfriends have their eyebrow pencils sharpened into\nlethal points. Winnie Davis, her longtime rival, is fully armed with the\nmoney, power, and prestige that had once been Sugar Beth's. But worst of\nall is Colin Byrne, the man whose career Sugar Beth had destroyed -- and\nnot exactly accidentally. Now Colin's a famous novelist living in Sugar\nBeth's old mansion, and this modern day dark prince is using his writer's\nimagination to figure out how to bring the town's beautiful former princess\nto her knees. But despite her sassy mouth, feisty spirit, and hardheaded\nways, Sugar Beth's no longer the spoiled rich girl they all remember. No,\nnow she's a woman to be reckoned with ... and a great big reckonin' is\nabout to happen, not least of all for one dark prince who might -- just\nmight -- be thinking about falling in love with the wickedest girl in town.\nAin't She Sweet? A funny, heartwarming, oh-so-spicy story of love,\nfriendship, and the possibility of happily-ever-after.\"\r\n8385,8968,1931915,Neal Shusterman,Bruiser,https://images.gr-assets.com/books/1318261800l/1931915.jpg,4.04,12499,\"fantasy, paranormal\",\"There's a reason why Brewster can't have friends—why he can’t care about\ntoo many people. Because when he cares about you, things start to happen.\nImpossible things that can’t be explained. I know, because they’re\nhappening to me. When BrontË starts dating Brewster “Bruiser” Rawlins—the\nguy voted Most Likely to Get the Death Penalty—her twin brother, Tennyson,\nisn’t surprised. But then strange things begin to occur. Tennyson and\nBrontË’s scrapes heal unnaturally fast, and cuts disappear before their\neyes. What at first seems like their good fortune turns out to be more than\nthey bargained for . . . much more.\"\r\n8386,8970,61915,Lois McMaster Bujold,Falling Free,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922931l/61915.jpg,3.82,12258,\"fiction, fantasy\",\"Leo Graf was just your average highly efficient engineer: min your own\nbusiness, fix what's wrong and move on to the next job. Everything neat and\naccording to spec, just the way he liked it. But all that changed on his\nassignment to the Cay Habitat. Could you just stand there and allow the\nexploitation of hundreds of helpless children merely to enhance the bottom\nline of a heartless mega-corporation? Leo Graf adopted a thousand quaddies\n-- now all he had to do was teach them to be free.\"\r\n8387,8972,93808,Jeffery Deaver,The Cold Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437226585l/93808._SY475_.jpg,4.05,11231,\"mystery, thriller\",The Cold MoonJeffery Deaver\r\n8388,8973,9865,Salman Rushdie,The Moor's Last Sigh,https://images.gr-assets.com/books/1359386233l/9865.jpg,3.92,9459,\"fiction, contemporary\",\"Moraes Zogoiby offers a revealing account of his family, their evolving\nfortunes, and the lost world of possibilities in twentieth-century India,\ndetailing a universe of family rifts, greed, dark passions, secrecy, power,\nand the mysteries of art. Reprint. 100,000 first printing.\"\r\n8389,8974,8584913,Gayle Tzemach Lemmon,\"The Dressmaker of Khair Khana: Five Sisters, One Remarkable Family, and the Woman Who Risked Everything to Keep Them Safe\",https://images.gr-assets.com/books/1279213493l/8584913.jpg,3.69,10365,\"memoir, history\",\"The Dressmaker of Khair Khana: Five Sisters, One Remarkable Family, and the Woman Who Risked Everything to Keep Them SafeGayle Tzemach Lemmon\"\r\n8390,8975,45760,David Foster Wallace,Girl with Curious Hair,https://images.gr-assets.com/books/1350027419l/45760.jpg,3.89,5434,\"fiction, contemporary\",\"A collection of short stories by David Foster Wallace that explore the\ndifferent ways people live their lives.\"\r\n8391,8976,39664,Stephen King,The Shawshank Redemption,https://images.gr-assets.com/books/1315100686l/39664.jpg,4.52,11499,\"fiction, horror\",A Stephen King novel telling of unfair imprisonment and escape.\r\n8392,8978,121792,Bill Watterson,The Revenge of the Baby-Sat: A Calvin and Hobbes Collection,https://images.gr-assets.com/books/1384734025l/121792.jpg,4.71,11503,\"fiction, comics\",\"The best of the popular comic strip collected in one volume follows the\nrambunctious adventures of six-year-old Calvin and his tiger Hobbes\"\r\n8393,8979,162823,Arthur Conan Doyle,The Case-Book of Sherlock Holmes,https://images.gr-assets.com/books/1316863480l/162823.jpg,4.2,11535,\"crime, ebooks\",The Case-Book of Sherlock HolmesArthur Conan Doyle\r\n8394,8980,2508164,Tonya Hurley,Ghostgirl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442759570l/2508164._SY475_.jpg,3.28,13779,\"paranormal, fantasy\",\"Now I lay me down to sleep, I pray the Lord my soul to keep. And if I\nshould die before I awake, I pray the popular attend my wake. Charlotte\nUsher feels practically invisible at school, and then one day she really is\ninvisible. Even worse: she's dead. And all because she choked on a gummy\nbear. But being dead doesn't stop Charlotte from wanting to be popular; it\njust makes her more creative about achieving her goal. If you thought high\nschool was a matter of life or death, wait till you see just how true that\nis. In this satirical, yet heartfelt novel, Hurley explores the\ninvisibility we all feel at some times and the lengths we'll go to be seen.\nPraise for ghostgirl: * Polished dark-and-deadpan humor, it's a natural fit\nwith Gen Y, too.\"\" --Publishers Weekly (starred review) * \"\"[Tonya] beats out\nwitty teen-speak like a punk-band drummer, keeping the narrative fast-paced\nand fun yet thought-provokingly heartwarming. Goofy, ghastly, intelligent,\nelectrifying.\"\" --Kirkus (starred review) *\"\"Tim Burton and Edgar Allan Poe\ndevotees will die for this fantastic, phantasmal read.\"\" --School Library\nJournal (starred review) * \"\"Readers with a taste for black humor and satire\nwill feast on Hurley's crisp, wise dialogue. Anticipate a well deserved\ncult following.\"\" --VOYA (starred review) \"\"Written with deadpan wit...this\nis a 'Wonderful Life'-like tale.\"\" -New York Post \"\"A sincere (and humorous)\nexploration of how we all feel invisible at one time or another...perfect\nread.\"\" -CosmoGirl\"\r\n8395,8981,18143968,\"Mary Higgins Clark, Alafair Burke\",I've Got You Under My Skin,https://images.gr-assets.com/books/1397768065l/18143968.jpg,3.75,8882,\"mystery, fiction\",\"I've Got You Under My SkinMary Higgins Clark, Alafair Burke\"\r\n8396,8982,2147714,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Aaron Alexovich, Andrew Pepoy\",\"Fables, Volume 10: The Good Prince\",https://images.gr-assets.com/books/1375393788l/2147714.jpg,4.37,13566,\"fantasy, comics\",\"Fables, Volume 10: The Good PrinceBill Willingham, Mark Buckingham, Steve Leialoha, Aaron Alexovich, Andrew Pepoy\"\r\n8397,8983,1268348,Barbara Delinsky,The Secret Between Us,https://images.gr-assets.com/books/1320407845l/1268348.jpg,3.71,12168,\"fiction, romance\",\"Picking up her sixteen-year-old daughter Grace after a party, Deborah\nMonroe accepts responsibility for hitting a man with the car on the way\nhome, even though Grace had been driving, a deception that takes on a life\nof its own, threatening their family and the bond between mother and\ndaughter. Reprint. 150,000 first printing.\"\r\n8398,8984,981161,\"Larry Bond, Patrick Larkin\",Red Phoenix,https://images.gr-assets.com/books/1298859399l/981161.jpg,3.98,10098,\"fiction, thriller\",\"This thundering geopolitical thriller dares reveal the military hardware,\nglobal upheavals, and raw combat that a second Korean War would unleash.\"\r\n8399,8985,6678884,Linwood Barclay,Never Look Away,https://images.gr-assets.com/books/1320510305l/6678884.jpg,3.99,10893,\"thriller, mystery\",Never Look AwayLinwood Barclay\r\n8400,8986,2983562,Dean Koontz,Your Heart Belongs to Me,https://images.gr-assets.com/books/1320422724l/2983562.jpg,3.34,12456,\"horror, mystery\",\"One year after the heart transplant that had saved him from certain death,\nRyan Perry receives strange messages saying, \"\"Your heart belongs to me,\"\"\nand discovers that he is being stalked by a woman who resembles his heart\ndonor.\"\r\n8401,8987,32428,\"Leigh Nichols, Dean Koontz\",Shadow Fires,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389299859l/32428.jpg,3.77,9490,\"horror, suspense\",\"Unable to convince anyone of the truth, Rachael must face the living corpse\nof her violent ex-husband, Eric\"\r\n8402,8988,891593,Naomi Novik,\"Victory of Eagles (Temeraire, #5)\",https://images.gr-assets.com/books/1327942237l/891593.jpg,4.01,11444,\"fantasy, fiction\",\"As Napoleon launches an attack on Britain, Captain Will Laurence, accused\nof treason, escapes from his prison ship and sets out on a desperate quest\nto reunite with his fighting dragon, Temeraire, who has been consigned to\nbreeding grounds in Wales.\"\r\n8403,8989,300044,Malorie Blackman,\"Knife Edge (Noughts and Crosses, #2)\",https://images.gr-assets.com/books/1364405912l/300044.jpg,4.06,11696,\"fiction, romance\",\"Continuing the story of Black & White, Sephy, a Cross, finds herself in a\nstruggle with Jude, the father of her baby and a Naught, as racial tensions\narise--forcing her to choose sides between the group to which she was born\na member and the family she has made.\"\r\n8404,8990,15818164,\"James Rollins, Rebecca Cantrell\",The Blood Gospel: The Order of the Sanguines Series,https://images.gr-assets.com/books/1357605320l/15818164.jpg,3.97,10424,\"thriller, fiction\",\"New York Times bestselling authorsJames Rollins and Rebecca Cantrell\ncombinetheir talents in a gothic tale about anancient order and the hunt\nfor a miraculous book known only as . . . The Blood Gospel. Some books\nshould never be found, never opened—until now. An earthquake in Masada,\nIsrael, reveals a tomb buriedin the heart of the mountain. A trio of\ninvestigators—Sergeant Jordan Stone, a military forensics expert;Father\nRhun Korza, a Vatican priest; and Dr. Erin Granger, a brilliant but\ndisillusioned archaeologist—are sent toexplore the macabre discovery, a\nsubterranean templeholding the crucified body of a mummified girl. But a\nbrutal attack at the site sets the three on the run, thrusting them into a\nrace to recover what was once preserved in the tomb's sarcophagus: a book\nrumored to have been written by Christ's own hand, a tome that is said to\nhold the secrets to His divinity. But the enemy who hounds them is a force\nof ancient evil directed by a leader of impossible ambitions and\nincalculable cunning.\"\r\n8405,8992,109520,Josh Kilmer-Purcell,I Am Not Myself These Days,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348668501l/109520.jpg,3.96,9963,\"memoir, nonfiction\",\"I Am Not Myself These Days follows a glittering journey through Manhattan's\ndark underbelly -- a shocking and surreal world where alter egos reign and\nsubsist (barely) on dark wit and chemicals...a tragic romantic comedy where\none begins by rooting for the survival of the relationship and ends by\nhoping someone simply survives. Kilmer-Purcell is a terrifically gifted new\nliterary voice who straddles the divide between absurdity and normalcy, and\nstitches them together with surprising humor and lonely poignancy. As\nBooklist raved \"\"as tart and funny as a Noel Coward play, for Kilmer-Purcell\nis especially good at dialogue, and, as in Coward's best plays, under the\ncomedy lies the sad truth that even at our best, we are all weak, fallible\nfools. Again and again in this rich, adventure-filled book, Kilmer-Purcell\nillustrates the truth of Blake's proverb, 'The road of excess leads to the\npalace of wisdom.'\"\"\"\r\n8406,8994,13030356,Kathy Reichs,Bones Are Forever,https://images.gr-assets.com/books/1333675935l/13030356.jpg,3.86,12132,\"mystery, crime\",\"Forensic anthropologist Tempe Brennan examines the bodies of three babies\nwhile Detective Ryan investigates their mother in a case with ties to the\nhigh-stakes world of diamond mining.\"\r\n8407,8995,8087,Robin McKinley,Deerskin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405919760l/8087.jpg,3.88,15982,\"fantasy, fiction\",\"As Princess Lissar reaches womanhood, it is clear to all the kingdom that\nin her breathtaking beauty she is the mirror image of her mother, the queen\n--but this seeming blessing forces her to flee from her father's wrath.\nWith her loyal dog, Lissar discovers a world of magic where she finds the\nkey to her own survival.\"\r\n8408,8996,4339,Michael Herr,Dispatches,https://images.gr-assets.com/books/1343099128l/4339.jpg,4.24,10383,\"history, nonfiction\",\"A documentation of the day-to-day realities of the war in Vietnam\nexperienced by men on patrol, under siege at Khe Sanh, strapped into\nhelicopters, and faced with continuing nightmares after their return to the\nUnited States\"\r\n8409,8997,8755555,\"Henning Mankell, Laurie Thompson\",Handen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190179l/8755555.jpg,3.98,9252,\"mystery, crime\",\"Reclusive surgeon Fredrik Welin's island solitude is disturbed by a visit\nfrom a former lover who forces him to confront his past.\"\r\n8410,8998,292740,Lorenzo Carcaterra,Sleepers,https://images.gr-assets.com/books/1327871596l/292740.jpg,4.18,9560,\"fiction, crime\",\"Years after a shared residence at the Wilkinson Home for Boys, four friends\nlaunch a deadly quest for vengeance against the brutal guards who had\nabused them there. Reissue. Movie tie-in.\"\r\n8411,8999,2474084,\"Walter Benjamin, Michael W. Jennings, Brigid Doherty, Edmund F.N. Jephcott, Rodney Livingstone, Howard Eiland, Thomas Y. Levin\",Das Kunstwerk im Zeitalter seiner technischen Reproduzierbarkeit,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198131l/2474084.jpg,4.05,9875,\"art, philosophy\",\"Das Kunstwerk im Zeitalter seiner technischen ReproduzierbarkeitWalter Benjamin, Michael W. Jennings, Brigid Doherty, Edmund F.N. Jephcott, Rodney Livingstone, Howard Eiland, Thomas Y. Levin\"\r\n8412,9000,43357,Mary Higgins Clark,Pretend You Don't See Her,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348174494l/43357.jpg,3.86,12508,\"mystery, fiction\",\"Placed in the federal witness protection program after seeing a murder,\nManhattan real-estate agent Lacey Farrell nevertheless must solve the case\nbefore she becomes the next victim\"\r\n8413,9001,6922622,\"Sarah Palin, Lynn Vincent, Dewey Whetsell\",Going Rogue: An American Life,https://images.gr-assets.com/books/1380033996l/6922622.jpg,3.28,10392,\"biography, nonfiction\",\"On September 3, 2008 Alaska Governor Sarah Palin gave a speech at the\nRepublican National Convention that electrified the nation and instantly\nmade her one of the most recognizable women in the world. As chief\nexecutive of America′s largest state, she had built a record as a reformer\nwho cast aside politics-as-usual and pushed through changes other\npoliticians only talked about: Energy independence. Ethics reform. And the\nbiggest private sector infrastructure project in U.S. history. While\nrevitalizing public school funding and ensuring the state met its\nresponsibilities to seniors and Alaska Native populations, Palin also beat\nthe political \"\"good ol′ boys club\"\" at their own game and brought Big Oil to\nheel. Like her GOP running mate, John McCain, Palin wasn′t a packaged and\nover-produced \"\"candidate.\"\" She was a Main Street American woman: a working\nmom, wife of a blue collar union man, and mother of five children, the\neldest of whom was serving his country in a yearlong deployment in Iraq and\nthe youngest, an infant with special needs. Palin′s hometown story touched\na populist nerve, rallying hundreds of thousands of ordinary Americans to\nthe GOP ticket. But as the campaign unfolded, Palin became a lightning rod\nfor both praise and criticism. Supporters called her \"\"refreshing,\"\"\n\"\"honest,\"\" a kitchen-table public servant they felt would fight for their\ninterests. Opponents derided her as a wide-eyed Pollyanna unprepared for\nnational leadership. But none of them knew the real Sarah Palin. In this\neagerly anticipated memoir, Palin paints an intimate portrait of growing up\nin the wilds of Alaska; meeting her lifelong love; her decision to enter\npolitics; the importance of faith and family; and the unique joys and\ntrials of life as a high-profile working mother. She also opens up for the\nfirst time about the 2008 presidential race, providing a rare, mom′s-eye\nview of high-stakes national politics - from patriots dedicated to \"\"Country\nFirst\"\" to slick politicos bent on winning at any cost. Going Rogue traces\none ordinary citizen′s extraordinary journey, and imparts Palin′s vision of\na way forward for America and her unfailing hope in the greatest nation on\nearth.\"\r\n8414,9002,402017,\"Anne Byrn, Anthony Loew\",The Cake Mix Doctor,https://images.gr-assets.com/books/1404582048l/402017.jpg,3.95,9660,\"cookbooks, nonfiction\",\"The Cake Mix Doctor is in! And the prescription is simple: By doctoring up\npackaged cake mix with just the right extras--a touch of sweet butter here,\ncocoa powder there, or poppy seeds, vanilla yogurt, sherry, eggs, and\ngrated lemon zest for the Charleston Poppy Seed Cake--even the least\nexperienced baker can turn out luscious signature desserts, time after\ntime. The proof is in the taste, and the taste never stops--from Toasted\nCoconut Sour Cream Cake to Devilishly Good Chocolate Cake; from a to-die-\nfor Caramel Cake and a Holiday Yule Log to cheesecakes, coffee cakes, sheet\ncakes, pound cakes, bars, brownies, and those all-important frostings, here\nare 175 fast, foolproof recipes that will transform the art of home baking\nin America. Who could believe these cakes came out of a box? Moist, tender,\nrich, deep, and complexly flavored, without a hint of artificiality, each\ncake stand up and delivers. But without any of the fuss of baking from\nscratch. Anne Byrn, an award-wining food writer and self-described purist,\ncreates recipes that employ a cake mix's strengths---convenience, ease-of-\nuse, dependability, and almost imperviousness to overbeating, underbeating,\noverbaking, and underbaking. In addition to the recipes are the Cake Mix\nDoctor's Q&A's, extensive \"\"Doctor Says\"\" tips, lists--15 Beautiful Birthday\nCakes, 15 Cakes That Will Cash in at a Bake Sale--and more, all illustrated\nin a full-color photographic insert.\"\r\n8415,9003,6457229,Rick Yancey,The Monstrumologist,https://images.gr-assets.com/books/1307409930l/6457229.jpg,3.89,12547,\"horror, fantasy\",\"In 1888, twelve-year-old Will Henry chronicles his apprenticeship with Dr.\nWarthrop, a New Escientist who hunts and studies real-life monsters, as\nthey discover and attempt to destroy a pod of Anthropophagi.\"\r\n8416,9004,86524,Robert A. Caro,The Path to Power,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349023045l/86524.jpg,4.42,10779,\"biography, history\",The Path to PowerRobert A. Caro\r\n8417,9005,24903919,Patricia Cornwell,Depraved Heart,https://images.gr-assets.com/books/1439833245l/24903919.jpg,3.58,6609,\"mystery, fiction\",Depraved HeartPatricia Cornwell\r\n8418,9006,116236,Forrest Carter,The Education of Little Tree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348789987l/116236.jpg,4.09,10632,\"fiction, classics\",\"Recounts the childhood remembrances of an orphaned Native American boy\nliving with his Cherokee grandparents in a mountain log cabin in eastern\nTennessee during the 1930s.\"\r\n8419,9007,6344423,Gena Showalter,Intertwined,https://images.gr-assets.com/books/1388656493l/6344423.jpg,3.87,16399,\"paranormal, fantasy\",IntertwinedGena Showalter\r\n8420,9008,46182,Richard Brautigan,In Watermelon Sugar,https://images.gr-assets.com/books/1482476781l/46182.jpg,4.02,8532,\"fiction, classics\",In Watermelon SugarRichard Brautigan\r\n8421,9009,13580846,\"Ali Novak, Fallzswimmer\",My Life with the Walter Boys,https://images.gr-assets.com/books/1486398662l/13580846.jpg,3.93,13515,\"contemporary, romance\",\"Devastated when her parents are killed in a car accident, sixteen-year old\nJackie moves from New York City to Colorado to live with her mother's best\nfriend, who has twelve children, including two boys who start to show an\ninterest in Jackie that goes beyond brotherly.\"\r\n8422,9010,71869,John Marsden,Burning For Revenge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214820l/71869.jpg,4.18,11616,\"fiction, thriller\",\"Having been separated from the New Zealand rescue troops they were guiding,\nfive Australian teenagers continue their resistance against the unknown\nenemy invading their homeland. Reprint.\"\r\n8423,9011,7967299,Crissy Calhoun,Love You to Death: The Unofficial Companion to The Vampire Diaries,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442393512l/7967299._SX318_.jpg,4.38,8458,\"fantasy, paranormal\",\"Presents an episode-by-episode look at the first season of \"\"The Vampire\nDiaries\"\" and includes the story of L.J. Smith, background on the shows\ncreators, and biographies of the actors.\"\r\n8424,9013,9182478,Myra McEntire,Hourglass,https://images.gr-assets.com/books/1360175970l/9182478.jpg,3.8,17572,\"paranormal, fantasy\",HourglassMyra McEntire\r\n8425,9014,760025,\"Al Ries, Jack Trout\",Positioning: The Battle for Your Mind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348023850l/760025.jpg,4.06,9344,\"business, nonfiction\",\"The first book to deal with the problems of communicating to a skeptical,\nmedia-blitzed public, Positioning describes a revolutionary approach to\ncreating a \"\"position\"\" in a prospective customer's mind-one that reflects a\ncompany's own strengths and weaknesses as well as those of its competitors.\nWriting in their trademark witty, fast-paced style, advertising gurus Ries\nand Trout explain how to: Make and position an industry leader so that its\nname and message wheedles its way into the collective subconscious of your\nmarket-and stays there Position a follower so that it can occupy a niche\nnot claimed by the leader Avoid letting a second product ride on the\ncoattails of an established one. Positioning also shows you how to: Use\nleading ad agency techniques to capture the biggest market share and become\na household name Build your strategy around your competition's weaknesses\nReposition a strong competitor and create a weak spot Use your present\nposition to its best advantage Choose the best name for your product\nDetermine when-and why-less is more Analyze recent trends that affect your\npositioning. Ries and Trout provide many valuable case histories and\npenetrating analyses of some of the most phenomenal successes and failures\nin advertising history. Revised to reflect significant developments in the\nfive years since its original publication, Positioning is required reading\nfor anyone in business today.\"\r\n8426,9018,2437710,Tracy Letts,August: Osage County,https://images.gr-assets.com/books/1354209733l/2437710.jpg,4.2,11023,\"contemporary, fiction\",August: Osage CountyTracy Letts\r\n8427,9019,10090,Tad Williams,Mountain of Black Glass,https://images.gr-assets.com/books/1309992323l/10090.jpg,4.04,11576,\"fantasy, fiction\",Mountain of Black GlassTad Williams\r\n8428,9021,24929,\"Gregory Maguire, Douglas Smith\",Lost,https://images.gr-assets.com/books/1407711681l/24929.jpg,2.8,12534,\"fantasy, fiction\",\"LostGregory Maguire, Douglas Smith\"\r\n8429,9022,239239,Christopher Priest,The Prestige,https://images.gr-assets.com/books/1414195709l/239239.jpg,3.87,11701,\"fiction, fantasy\",\"In 1878, two young stage magicians clash in a darkened salon during the\ncourse of a fraudulent seance, and from this moment they try to expose and\noutwit each other at every turn\"\r\n8430,9023,1503274,Donald McCaig,Rhett Butler's People,https://images.gr-assets.com/books/1327920861l/1503274.jpg,3.7,12299,\"fiction, romance\",Rhett Butler's PeopleDonald McCaig\r\n8431,9024,72003,Tony Kushner,Angels in America:  A Gay Fantasia on National Themes,https://images.gr-assets.com/books/1170797663l/72003.jpg,4.29,10271,\"fiction, classics\",\"A revised and complete edition of this modern classic, featuring a new\nforeword from author Tony Kushner.\"\r\n8432,9025,5942,Michael Ondaatje,Anil's Ghost,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924095l/5942.jpg,3.54,11184,\"fiction, contemporary\",\"A forensic pathologist returns to Sri Lanka--after 15 years abroad--to\nassist in identifying victims of the country's civil war.\"\r\n8433,9026,268559,Dean Koontz,Winter Moon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347808490l/268559.jpg,3.8,12843,\"horror, fiction\",\"Deepest night, Montana. An eerie light proclaims the arrival of a\nmysterious watcher in the woods. And one solitary man begins a desperate\nbattle against something unknown--and unknowable. Broad daylight, Los\nAngeles. An ordinary morning erupts in cataclysmic violence. A young family\nis shattered in a heartbeat. Fate will lead this family to an isolated\nMontana ranch, but their sanctuary will become their worst nightmare. For\nthere they will face a chillingly ruthless enemy, from which no one--living\nor dead--is safe.\"\r\n8434,9027,20603820,Kristen Ashley,The Will,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390276224l/20603820.jpg,4.3,11969,\"romance, contemporary\",\"Get the latest tools and trends in web marketing with this new edition of a\nbestseller The rapidly changing landscape of web marketing requires those\nin the field to quickly adopt new technologies as they emerge. This updated\nedition provides the basics that every web marketer needs to know,\nincluding how to create web properties, exploit search engine optimization\n(SEO), and create effective e-mail campaigns. This new edition offers a\nbroad revision in order for the content to catch up to the latest tools and\ntrends in web marketing. This fun-but-straightforward guide explores trends\nin search engine, mobile, location-based, and consumer site marketing and\nexamines ways to maximize success by analyzing results, avoiding legal\nissues, and keeping everything fresh and exciting. Reflects current\nmarketing trends Explores social media and mobile marketing and offers\ninsight into creating an effective landing page and retaining customers\nGuides you through creating a marketing plan, adjusting already-existing\nmarketing materials for the web, and building an online presence Details\nways to maximize the potential of SEO, e-mail campaigns, online\nadvertising, blogging, e-commerce tools, and more Provides valuable advice\nfor avoiding common mistakes and ways to liven up web marketing plans Web\nMarketing For Dummies, 3rd Edition has expanded its coverage so you can\nexpand your web marketing reach.\"\r\n8435,9028,20706320,\"Chris Colfer, Brandon Dorman\",A Grimm Warning,https://images.gr-assets.com/books/1391709728l/20706320.jpg,4.54,13695,\"fantasy, fiction\",\"A Grimm WarningChris Colfer, Brandon Dorman\"\r\n8436,9030,12583975,Melody Anne,The Billionaire Wins the Game,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328316441l/12583975.jpg,3.93,11562,\"romance, contemporary\",The Billionaire Wins the GameMelody Anne\r\n8437,9031,10378106,Maya Banks,Never Love a Highlander,https://images.gr-assets.com/books/1348707357l/10378106.jpg,4.25,17359,\"romance, fiction\",\"In order to salvage the uneasy alliance between two clans, Caelen McCabe\nmarries Rionna McDonald, his brother's jilted bride, and as they form a\ntentative--and passionate--bond, a battle for the McCabe legacy commences.\"\r\n8438,9032,4099,\"Andrew Hunt, Dave Thomas\",The Pragmatic Programmer: From Journeyman to Master,https://images.gr-assets.com/books/1401432508l/4099.jpg,4.31,9416,\"nonfiction, science\",\"The Pragmatic Programmer: From Journeyman to MasterAndrew Hunt, Dave Thomas\"\r\n8439,9033,1421046,Dee Lestari,Supernova: Petir,https://images.gr-assets.com/books/1404292897l/1421046.jpg,3.85,7068,\"fiction, fantasy\",\"\"\"Supernova: The Knight, The Princess and the Falling Star\"\" presents a\nseries of intertwined and unconventional love stories, straight and gay,\nwith a bit of science and spirituality added to the mix. The major\ncharacters are young, urban, and technologically highly aware. They are\ncaught up in major forms of contemporary social conflict. The work has been\nhighly acclaimed. The poet Taufiq Ismail has written: \"\"A renewal has taken\nplace in Indonesian literature over the past decade. \"\"Supernova\"\" is an\nintelligent, unique and truly exciting exploration of science, spirituality\nand the nature of love.\"\" The literary critic Jacob Soemardjo suggests:\n\"\"This is an attractive novel by a young writer. It is an intellectual work\nin the form of a work of pop art, set in the real world. It opposes old\nvalues with new ways of understanding, so that readers can see the world in\na different way.\"\"\"\r\n8440,9034,25877663,James S.A. Corey,Babylon's Ashes,https://images.gr-assets.com/books/1442247299l/25877663.jpg,4.18,8397,\"fiction, fantasy\",\"The sixth novel in James S.A. Corey's New York Times bestselling Expanse\nseries--now a new original series from the Syfy Channel, coming December\n14th 2015. The final war has started. The protomolecule, fairly quiescent\nsince the opening of the gates, has identified its enemy and is arming\nitself for battle. Humanity is at most a tool in its post-human arsenal.\nWhen people, ships, and even places begin to disappear, Holden and the crew\nof the Rocinante have to face the fact that the thing they've been hauling\nthrough the depths of space only appears to be Detective Miller. The time\nwhen the protomolecule's agenda and humanity's overlapped has passed. As\nthe protomolecule takes control of the ancient networks and relays, the\nfinal battle begins. Holden and his allies are faced with the decision of\nwhether to blow the gates, trapping humanity in beads of disconnected\nworlds, or engage in a battle that they can only lose no matter who wins.\"\r\n8441,9035,15762975,Katee Robert,\"Wrong Bed, Right Guy\",https://images.gr-assets.com/books/1345817565l/15762975.jpg,3.77,17710,\"romance, contemporary\",\"Wrong Bed, Right GuyKatee Robert\"\r\n8442,9036,24724,\"T.C. Boyle, Richard Poe\",Drop City,https://images.gr-assets.com/books/1327936131l/24724.jpg,3.83,9313,\"fiction, contemporary\",\"Drop CityT.C. Boyle, Richard Poe\"\r\n8443,9037,3710603,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr., Pamela Rambo, Clem Robins, J.G. Jones\",Y: The Last Man - The Deluxe Edition Book One,https://images.gr-assets.com/books/1288024278l/3710603.jpg,4.36,10368,\"comics, fiction\",\"Yorick Brown, an unemployed and unmotivated slacker, discovers that he is\nthe only male left in the world after a plague of unknown origin instantly\nkills every mammal with a Y chromosome.\"\r\n8444,9038,29486,Diablo Cody,Candy Girl,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425241907l/29486.jpg,3.54,10669,\"memoir, nonfiction\",Candy GirlDiablo Cody\r\n8445,9039,3491072,أنيس منصور,حول العالم في 200 يوم,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1213949039l/3491072.jpg,4.08,8630,\"travel, history\",\"«لقد كان العالم كتابًا عريضًا طويلًا غنيًّا بألفاظه ومعانيه، كنت أقرأ بعقلي\nوقلبي وأقلب الصفحات بيدي ورجلي وكنت أضع حقيبتي الوحيدة في مهب العواصف\nوالطائرات، ودخلت المستشفيات فى إندونسيا، وفي اليابان دخلت مستشفى الولادة،\nوفي أستراليا دخلت مستشفى الملكة، وفي أمريكا دخلت عيادة، كل أطبائها من\nالمصريين . كنت أكتب ليلًا ونهارًا وعندما أجد متسعًا من الوقت كنت أكتب\nمذكراتي......».هذه كلمات الكاتب الكبير أنيس منصور في مقدمة طبعته الأولى لــ\n«حول العالم في 200 يوم» تلك الدرة الثمينة في عالم أدب الرحلات والتي تفتخر\nدار نهضة مصر بأن تقدم أحدث طبعاتها وقد اختصها بها الكاتب الراحل أنيس منصور\nلتخرج إلى القارئ منقحة وجديرة بالاقتناء.إنها رحلات عبر مشارق الأرض\nومغاربها، معرفية أحيانًا .. فلسفية دائمًا، مدهشة فى كثير من الأحيان.\"\r\n8446,9040,24396884,\"James Patterson, Michael Ledwidge\",Alert,https://images.gr-assets.com/books/1424306640l/24396884.jpg,3.93,6976,\"thriller, crime\",\"\"\"This is not a test\"\"-every New Yorker's worst nightmare is about to become\na reality. New Yorkers aren't easily intimidated, but someone is doing\ntheir best to scare them, badly. Why? After two inexplicable high-tech\nattacks, the city that never sleeps is on edge. Detective Michael Bennett,\nalong with his old pal, the FBI's Emily Parker, have to catch the shadowy\ncriminals who claim responsibility-but they're as good at concealing their\nidentities as they are at wreaking havoc. In the wake of a shocking\nassassination, Bennett begins to suspect that these mysterious events are\njust the prelude to the biggest threat of all. Soon, he's racing against\nthe clock, and against the most destructive enemy he's faced yet, to save\nhis beloved city-before everyone's worst nightmare becomes a reality.\"\r\n8447,9042,18310201,Peter Heller,The Painter,https://images.gr-assets.com/books/1409595558l/18310201.jpg,3.76,8666,\"fiction, art\",\"Struggling with dark impulses after serving time for attempted murder, a\nsuccessful artist gives in to his obsessions to kill an abusive\ntroublemaker before fleeing the authorities and the man's vengeful clan.\"\r\n8448,9043,975119,Steven Spielberg,Close Encounters of the Third Kind,https://images.gr-assets.com/books/1396112231l/975119.jpg,4.09,10351,\"fiction, fantasy\",\"Humans make contact with aliens after witnessing the arrival of flying\nsaucers from another world.\"\r\n8449,9044,43780,\"Anne Rice, Robert O'Keefe, F. Murray Abraham, Michael York, Kate Nelligan, David Purdham\",The Vampire Chronicles,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700911l/43780.jpg,4.25,9592,\"horror, fiction\",\"The Vampire ChroniclesAnne Rice, Robert O'Keefe, F. Murray Abraham, Michael York, Kate Nelligan, David Purdham\"\r\n8450,9046,12710035,Olivia Cunning,Hot Ticket,https://images.gr-assets.com/books/1348005153l/12710035.jpg,4.28,20891,\"romance, contemporary\",Hot TicketOlivia Cunning\r\n8451,9049,395220,Audre Lorde,Zami: A New Spelling of My Name,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388344915l/395220.jpg,4.2,9549,\"memoir, nonfiction\",\"The poet, Audre Lorde, depicts her life and examines the influence of\nvarious women on her development\"\r\n8452,9051,1376220,Tere Liye,Hafalan Shalat Delisa,https://images.gr-assets.com/books/1303475676l/1376220.jpg,4.2,7737,\"fiction, religion\",Hafalan Shalat DelisaTere Liye\r\n8453,9052,16061295,Darynda Jones,Sixth Grave on the Edge,https://images.gr-assets.com/books/1396827029l/16061295.jpg,4.38,17022,\"paranormal, romance\",\"Wanting to learn more about Reyes Farrow's past after accepting his\nproposal, grim reaper Charley Davidson investigates his childhood abduction\nat the same time she is threatened by a crime syndicate to hunt down a\nwitness who is testifying against a mob moss. By the RITA Award-winning\nauthor of First Grave on the Right. 75,000 first printing.\"\r\n8454,9053,17465470,John Flanagan,\"The Royal Ranger (Ranger's Apprentice, #12)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389661638l/17465470.jpg,4.4,11359,\"fantasy, fiction\",\"The Royal Ranger (Ranger's Apprentice, #12)John Flanagan\"\r\n8455,9054,10364994,Amy Waldman,The Submission,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442936732l/10364994._SY475_.jpg,3.66,10096,\"fiction, contemporary\",The SubmissionAmy Waldman\r\n8456,9055,25790,\"Alan Lee, Ian McKellen\",The Lord of the Rings Sketchbook,https://images.gr-assets.com/books/1416453209l/25790.jpg,4.26,9067,\"art, fantasy\",\"In this large-format hardback Alan Lee, production designer on The Lord of\nthe Rings movie trilogy, discusses his approach to painting the pictures in\nthe authorized illustrated edition of The Lord of the Rings. The book\ncontains over 100 of his sketches and rejected pieces to show how the\nproject progressed from concept to finished art. The book also contains 25\ncolour paintings reproduced in full-page glory.\"\r\n8457,9056,7234828,Jenna Black,Glimmerglass,https://images.gr-assets.com/books/1408500427l/7234828.jpg,3.76,18605,\"fantasy, paranormal\",GlimmerglassJenna Black\r\n8458,9057,6987558,\"James Patterson, Howard Roughan\",Don't Blink,https://images.gr-assets.com/books/1328433484l/6987558.jpg,3.79,9689,\"mystery, fiction\",\"James Patterson delivers his most heart-pounding thriller yet, Don't\nBlink... you won't want to! Reporter Nick Daniels is conducting a once-in-\na-lifetime interview with an infamous celebrity recluse in a renowned New\nYork restaurant. But the interview is cut short by a horrific murder that\ntakes place just yards from their table. The assassin escapes as quickly as\nhe entered, leaving behind him a chaotic scene and a bloody corpse. While\nNick is reviewing the tapes from his interview, he stumbles upon a piece of\nevidence that could be crucial to the murder investigation. But something\nabout the whole scenario doesn't fit together. As Nick investigates the\nclues for himself, he realises that someone is watching his every move -\nand they will stop at nothing to prevent Nick from discovering the truth.\"\r\n8459,9058,320700,\"Stephen Jones, H.P. Lovecraft, Kim Newman, Brian Mooney, Nicholas Royle, David Langford, Michael Marshall Smith, Brian Lumley, Neil Gaiman, Basil Copper, Jack Yeovil, Guy N. Smith, Adrian Cole, D.F. Lewis, Ramsey Campbell, David Sutton, Peter Tremayne\",The Shadows Over Innsmouth,https://images.gr-assets.com/books/1293833116l/320700.jpg,4.43,10663,\"horror, fiction\",\"The Shadows Over InnsmouthStephen Jones, H.P. Lovecraft, Kim Newman, Brian Mooney, Nicholas Royle, David Langford, Michael Marshall Smith, Brian Lumley, Neil Gaiman, Basil Copper, Jack Yeovil, Guy N. Smith, Adrian Cole, D.F. Lewis, Ramsey Campbell, David Sutton, Peter Tremayne\"\r\n8460,9059,55018,James Lee Burke,The Tin Roof Blowdown,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749351l/55018.jpg,4.17,10432,\"mystery, fiction\",\"Follows the adventures of detective Dave Robicheaux, who struggles with\nalcoholism and rage while fighting to protect lives in Katrina-devastated\nNew Orleans.\"\r\n8461,9060,6389257,Nick Cave,The Death of Bunny Munro,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348052106l/6389257.jpg,3.43,9096,\"fiction, contemporary\",\"Struggling to maintain a grasp on reality after his wife's suicide, a soul-\nsearching and inebriated traveling salesman peddles beauty wares and\nquickies to lonely southern England housewives while his son waits in their\ncar.\"\r\n8462,9061,348564,\"Jeff Brown, Scott Nash, Macky Pamintuan\",Flat Stanley,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428077431l/348564.jpg,3.82,11078,\"fantasy, fiction\",\"Stanley Lambchop is an ordinary boy. At least he was, until the night his\nbulletin board fell off the wall and flattened him. At only half an inch\nthick, Stanley can slide under doors, mail himself across the country in an\nenvelope, and fly like a kite! And that's only the start of Stanley's\nadventures. In these four tales, Stanley also becomes invisible and helps\nnab some bank robbers, journeys to outer space to rescue aliens, and, after\nbeing rounded out, turns flat—again! One thing is for sure: There's nothing\nStanley Lambchop can't do!\"\r\n8463,9062,8070049,Julie Kagawa,\"Winter's Passage (Iron Fey, #1.5)\",https://images.gr-assets.com/books/1271790569l/8070049.jpg,3.96,20313,\"fantasy, paranormal\",\"A new novella from New York Times, USA TODAY and internationally\nbestselling author Julie Kagawa in the Iron Fey series. A Midsummer’s\nNightmare? Robin Goodfellow. Puck. Summer Court prankster, King Oberon’s\nright hand, bane of many a faery queen’s existence, and secret friend to\nPrince Ash of the Winter Court. Until one girl’s death came between them,\nand another girl stole both their hearts. Now Ash has granted one favor too\nmany, and someone’s come to collect, forcing the prince to a place he\ncannot go without Puck’s help - into the heart of the Summer Court. And\nPuck faces the ultimate choice: betray Ash and possibly win the girl they\nboth love, or help his former friend turned bitter enemy pull off a\ndeception that no true faery prankster could possibly resist. Don’t miss\nthe first book in Julie Kagawa’s highly anticipated new series, SHADOW OF\nTHE FOX, AVAILABLE OCTOBER 2, 2018\"\r\n8464,9063,734542,Donald Crews,Freight Train (Caldecott Collection),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348955169l/734542.jpg,4.04,13380,\"fiction, classics\",Freight Train (Caldecott Collection)Donald Crews\r\n8465,9064,23719479,Kate Clifford Larson,Rosemary: The Hidden Kennedy Daughter,https://images.gr-assets.com/books/1439253720l/23719479.jpg,3.78,9819,\"biography, history\",Rosemary: The Hidden Kennedy DaughterKate Clifford Larson\r\n8466,9065,9592213,Jennifer Haigh,Faith,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442288818l/9592213._SY475_.jpg,3.83,10610,\"fiction, religion\",FaithJennifer Haigh\r\n8467,9066,38529,Lynsay Sands,Bite Me If You Can,https://images.gr-assets.com/books/1351280801l/38529.jpg,4.27,16680,\"romance, paranormal\",Bite Me If You CanLynsay Sands\r\n8468,9068,237114,Mary Higgins Clark,Moonlight Becomes You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348165304l/237114.jpg,3.8,12657,\"mystery, fiction\",\"From Queen of Suspense Mary Higgins Clark, a thriller “that grabs you with\nthe first paragraph and never lets go” (USA TODAY) about a woman desperate\nto uncover the truth behind her beloved stepmother’s death. At a party in\nManhattan, Maggie Holloway—one of the fashion world’s most successful\nphotographers—is thrilled to be reunited with her beloved stepmother. A\nwidow now, Nuala Moore is equally delighted to see her long-lost\nstepdaughter, and she invites Maggie to spend a few weeks at her home in\nNewport, Rhode Island. But when Maggie arrives, she finds Nuala murdered,\napparently by a burglar. Heartbroken, Maggie is stunned to learn she had\ninherited Nuala’s stunning Victorian home...and horrified when she begins\nto suspect that Nuala’s death was not random, but part of a diabolical plot\nconceived by a twisted mind. When Nuala’s dear old friend, Greta Shipley,\ndies suddenly of supposedly natural causes, Maggie is convinced that there\nis a link between these two and other recent deaths among the older women\nof Newport. What she doesn’t realize is that she has now become a target\nfor the killer as well, and that each clue she uncovers brings her closer\nto an unimaginable fate.\"\r\n8469,9069,65070,Ann M. Martin,A Corner of the Universe,https://images.gr-assets.com/books/1400681323l/65070.jpg,4.06,11914,\"fiction, contemporary\",\"The summer that Hattie Owen turns twelve, she meets the childlike Uncle\nAdam she never knew and becomes friends with a girl who works at the\ncarnival that comes to Hattie's small town. A Newbery Honor Book. Reprint.\"\r\n8470,9070,177515,Alice Hoffman,The Ice Queen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684298l/177515._SY475_.jpg,3.51,12922,\"fiction, fantasy\",\"Be careful what you wish for. A small town librarian lives a quiet life\nwithout much excitement. One day, she mutters and idle wish and, while\nstanding in her house, is struck by lightning. But instead of ending her\nlife, this cataclysmic event sparks it into a new beginning. She goes in\nsearch of Lazarus Jones, a fellow survivor who was struck dead, then simply\ngot up and walked away. Perhaps this stranger who has seen death face to\nface can teach her to live without fear. When she finds himhe is opposite,\na burning man whose breath can boil water and whose touch scorches.\"\r\n8471,9071,473623,Enid Blyton,The Folk of Faraway Tree,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175048298l/473623.jpg,4.32,11693,\"classics, fantasy\",\"Encourage a new generation to be whisked away by Enid Blyton's magical\nstories!\"\r\n8472,9072,24189224,Garth Risk Hallberg,City on Fire,https://images.gr-assets.com/books/1422969880l/24189224.jpg,3.42,8553,\"fiction, contemporary\",City on FireGarth Risk Hallberg\r\n8473,9073,896623,Kathleen E. Woodiwiss,The Flame and the Flower,https://images.gr-assets.com/books/1305316569l/896623.jpg,4.09,12447,\"romance, fiction\",\"The Flower Doomed to a life of unending toil, Heather Simmons fears for her\ninnocence—until a shocking, desperate act forces her to flee. . . and to\nseek refuge in the arms of a virile and dangerous stranger. The Flame A\nlusty adventurer married to the sea, Captain Brandon Birmingham courts\nscorn and peril when he abducts the beautiful fugitive from the tumultuous\nLondon dockside. But no power on Earth can compel him to relinquish his\nexquisite prize. For he is determined to make the sapphire-eyed prize. For\nhe is determined to make the sapphire-eyed lovely his woman. . .and to\ncarry her off to far, uncharted realms of sensuous, passionate love.\"\r\n8474,9074,13809,Raymond E. Feist,Exile's Return,https://images.gr-assets.com/books/1409594776l/13809.jpg,4,10840,\"fantasy, fiction\",Exile's ReturnRaymond E. Feist\r\n8475,9075,7199667,Jessica Day George,Princess of Glass,https://images.gr-assets.com/books/1397878579l/7199667.jpg,4.03,17052,\"fantasy, romance\",Princess of GlassJessica Day George\r\n8476,9076,2350129,The Church of Jesus Christ of Latter-day Saints,Preach My Gospel (A Guide to Missionary Service),https://images.gr-assets.com/books/1399612262l/2350129.jpg,4.71,9891,\"religion, nonfiction\",Preach My Gospel (A Guide to Missionary Service)The Church of Jesus Christ of Latter-day Saints\r\n8477,9077,13316328,Jasper Fforde,The Last Dragonslayer,https://images.gr-assets.com/books/1346791460l/13316328.jpg,3.86,12033,\"fantasy, fiction\",The Last DragonslayerJasper Fforde\r\n8478,9078,355190,Edward Said,Orientalism,https://images.gr-assets.com/books/1409777781l/355190.jpg,4.07,10458,\"history, philosophy\",\"A provocative critique of Western attitudes about the Orient, this history\nexamines the ways in which the West has discovered, invented, and sought to\ncontrol the East from the 1700s to the present.\"\r\n8479,9079,450836,Gerald N. Lund,\"The Work and the Glory, Vol. 2: Like a Fire Burning\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1197031321l/450836.jpg,4.27,9944,\"fiction, religion\",\"The Work and the Glory, Vol. 2: Like a Fire BurningGerald N. Lund\"\r\n8480,9080,227492,Eric Jerome Dickey,Friends and Lovers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391936584l/227492.jpg,4.21,8944,\"fiction, romance\",\"The author of the number-one Blackboard best-seller, Sister, Sister,\nchronicles the love lives of four young African Americans, two men and two\nwomen, with humor and realism. Reprint.\"\r\n8481,9081,807968,Georgia Byng,Molly Moon's Incredible Book of Hypnotism,https://images.gr-assets.com/books/1330953305l/807968.jpg,3.87,16311,\"fantasy, fiction\",Molly Moon's Incredible Book of HypnotismGeorgia Byng\r\n8482,9082,144773,Matthew Reilly,Contest,https://images.gr-assets.com/books/1311984048l/144773.jpg,3.95,10113,\"thriller, fiction\",\"Unwittingly entered into a dangerous contest along with his young daughter,\ndoctor Stephen Swain is placed into the labyrinth of the New York Public\nLibrary from which only one of seven contestants will emerge alive.\nReprint.\"\r\n8483,9083,4261,Nick Hornby,31 Songs,https://images.gr-assets.com/books/1417984618l/4261.jpg,3.56,8999,\"music, nonfiction\",\"Celebrates thirty-one of the author's favorite songs in a collection of\nessays about such musical renditions as Bruce Springsteen's \"\"Thunder Road,\"\"\nLed Zeppelin's \"\"Heartbreaker,\"\" and Van Morrison's \"\"Caravan.\"\"\"\r\n8484,9084,32987,Tom Brokaw,The Greatest Generation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924595l/32987.jpg,3.99,12346,\"history, nonfiction\",\"Presents personal narratives from the generation of Americans who were born\nin the 1920s, came of age during the Depression, fought in World War II,\nand came home to build a new America during the postwar era.\"\r\n8485,9085,581125,Philip K. Dick,The Minority Report,https://images.gr-assets.com/books/1390719396l/581125.jpg,3.82,12245,\"fiction, classics\",The Minority ReportPhilip K. Dick\r\n8486,9086,74270,Lynn Flewelling,Luck in the Shadows,https://images.gr-assets.com/books/1486846979l/74270.jpg,4.08,13781,\"fiction, romance\",\"Seregil--thief, con artist, and spy in the employ of the queen's wizard--\ntakes an apprentice in his struggle against a surreal world of intrigue,\nmagic, and politics engineered by Plenimar, the queen's ancient foe.\nOriginal.\"\r\n8487,9087,1258121,Jacqueline Davies,The Lemonade War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347342013l/1258121.jpg,3.88,10293,\"fiction, business\",\"Evan Treski, who is people-smart, and his younger sister Jesse, who is\nmath-smart, battle it out through competing lemonade stands, each trying to\nbe the first to earn one hundred dollars. Reprint.\"\r\n8488,9088,948526,\"Mary Pope Osborne, Salvatore Murdocca\",\"The Knight at Dawn (Magic Tree House, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179389l/948526.jpg,3.86,13606,\"fantasy, fiction\",\"Eight-year-old Jack and his younger sister Annie use the magic treehouse to\ntravel back to the Middle Ages, where they explore a castle and are helped\nby a mysterious knight.\"\r\n8489,9090,4566934,Ilana Tan,Winter in Tokyo,https://images.gr-assets.com/books/1444921235l/4566934.jpg,4.06,8935,\"romance, fiction\",\"Tetangga baruku, Nishimura Kazuto, datang ke Tokyo untuk mencari suasana\nbaru. Itulah katanya, tapi menurutku alasannya lebih dari itu. Dia orang\nyang baik, menyenangkan, dan bisa diandalkan. Perlahan-lahan—mungkin sejak\nmalam Natal—aku mulai memandangnya dengan cara yang berbeda. Dan sejak itu\npula rasanya sulit membayangkan hidup tanpa dia. —Keiko tentang Kazuto\nSejak awal aku sudah merasa ada sesuatu yang menarik dari Ishida Keiko.\nSegalanya terasa menyenangkan bila dia ada. Segalanya terasa baik bila dia\nada. Saat ini di dalam hatinya masih ada seseorang yang ditunggunya. Cinta\npertamanya. Kuharap dia bisa berhenti memikirkan orang itu dan mulai\nmelihatku. Karena hidup tanpa dirinya sama sekali bukan hidup. —Kazuto\ntentang Keiko Mereka pertama kali bertemu pada awal musim dingin di Tokyo.\nSelama sebulan bersama, perasaan baru pun mulai terbentuk. Lalu segalanya\nberubah ketika suatu hari salah seorang dari mereka terbangun dan sama\nsekali tidak mengingat semua yang terjadi selama sebulan terakhir, termasuk\norang yang tadinya sudah menjadi bagian terpenting dalam hidupnya...\"\r\n8490,9092,13620,\"Tsugumi Ohba, Takeshi Obata\",デスノート #6 (Desu Nōto) Kōkan (交換),https://images.gr-assets.com/books/1485574610l/13620.jpg,4.39,14986,\"manga, comics\",\"When high school student Light Yagami finds the Death Note, a notebook\ndropped by a Shinigami death god, he discovers that any person whose name\nis written in it dies, so Light decides to use the notebook to rid the\nworld of evil.\"\r\n8491,9093,7736086,\"Rick Riordan, Robert Venditti, José Villarrubia, Attila Futaki\",The Lightning Thief: The Graphic Novel,https://images.gr-assets.com/books/1347899366l/7736086.jpg,3.95,12380,\"fantasy, comics\",\"You've read the book. You've seen the movie. Now submerge yourself in the\nthrilling, stunning, and action-packed graphic novel. Mythological monsters\nand the gods of Mount Olympus seem to be walking out of the pages of\ntwelve-year-old Percy Jackson's textbooks and into his life. And worse,\nhe's angered a few of them. Zeus's master lightning bolt has been stolen,\nand Percy is the prime suspect. Now, he and his friends have just ten days\nto find and return Zeus's stolen property and bring peace to a warring\nMount Olympus. Series creator Rick Riordan joins forces with some of the\nbiggest names in the comic book industry to tell the story of a boy who\nmust unravel a treachery more powerful than the gods themselves.\"\r\n8492,9095,57736,W.P. Kinsella,Shoeless Joe,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348958247l/57736.jpg,3.96,9315,\"fiction, sports\",\"Ray Kinsella's fanatic love of baseball drives him to build a baseball\nstadium in his corn field and kidnap the author, J.D. Salinger, and bring\nhim to a baseball game\"\r\n8493,9096,241387,Charles Martin,When Crickets Cry,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437617373l/241387._SY475_.jpg,4.23,9668,\"fiction, christian\",\"A man with a painful past. A child with a doubtful future. And a shared\njourney toward healing for both their hearts. It begins on the shaded town\nsquare in a sleepy Southern town. A spirited seven-year-old has a brisk\nbusiness at her lemonade stand. Her latest customer, a bearded stranger,\ndrains his cup and heads to his car, his mind on a boat he's restoring at a\nnearby lake. But the little girl's pretty yellow dress can't quite hide the\nugly scar on her chest. The stranger understands more about it than he\nwants to admit. And the beat-up bread truck careening around the corner\nwith its radio blaring is about to change the trajectory of both their\nlives. Before it's over, they'll both know there are painful reasons why\ncrickets cry...and that miracles lurk around unexpected corners.\"\r\n8494,9097,21913812,Naomi Klein,This Changes Everything: Capitalism vs. The Climate,https://images.gr-assets.com/books/1418103804l/21913812.jpg,4.17,7652,\"science, nonfiction\",\"The best-selling author of The Shock Doctor explains why the environmental\ncrisis challenges us to abandon \"\"free market\"\" ideologies and remake\npolitical systems, arguing that a massive reduction of greenhouse emissions\nmay offer a best chance for correcting economic challenges. 150,000 first\nprinting.\"\r\n8495,9098,10439703,Richard Kadrey,Aloha from Hell,https://images.gr-assets.com/books/1302271758l/10439703.jpg,4.01,10713,\"fantasy, horror\",Aloha from HellRichard Kadrey\r\n8496,9100,122781,Peter Jenkins,A Walk Across America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442192805l/122781._SY475_.jpg,4.02,9218,\"nonfiction, travel\",\"Twenty-five years ago, a disillusioned young man set out on a walk across\nAmerica. This is the book he wrote about that journey -- a classic account\nof the reawakening of his faith in himself and his country. \"\"I started out\nsearching for myself and my country,\"\" Peter Jenkins writes, \"\"and found\nboth.\"\" In this timeless classic, Jenkins describes how disillusionment with\nsociety in the 1970s drove him out onto the road on a walk across America.\nHis experiences remain as sharp and telling today as they were twenty-five\nyears ago -- from the timeless secrets of life, learned from a mountain-\ndwelling hermit, to the stir he caused by staying with a black family in\nNorth Carolina, to his hours of intense labor in Southern mills. Many, many\nmiles later, he learned lessons about his country and himself that resonate\nto this day -- and will inspire a new generation to get out, hit the road\nand explore.\"\r\n8497,9101,13649056,Olivia Cunning,Try Me,https://images.gr-assets.com/books/1347142317l/13649056.jpg,3.87,21524,\"romance, contemporary\",\"For the five rock gods of Sole Regret, finding love is easy, keeping it is\nhard. This anthology contains the first three novellas in the One Night\nwith Sole Regret serial series. In Try Me, Sole Regret's crafty drummer,\nGabe \"\"Force\"\" Banner, seduces a straight-laced accountant before she\nrealizes she's talking to a rock star. In Tempt Me, Sole Regret's troubled\nlead guitarist, Adam Taylor, might finally be ready to commit to the woman\nwho saved him from a life of despair and abuse. In Take Me, Sole Regret's\nenigmatic vocalist, Jacob \"\"Shade\"\" Silverton, tries to keep his cool around\none off-limits woman from his past, but she just might be too hot to\nresist.\"\r\n8498,9102,105687,Michael Patrick MacDonald,All Souls: A Family Story from Southie,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387743100l/105687.jpg,4.07,8344,\"memoir, nonfiction\",All Souls: A Family Story from SouthieMichael Patrick MacDonald\r\n8499,9103,15561,Terry Brooks,Wizard at Large ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673284l/15561.jpg,3.81,12580,\"fantasy, fiction\",\"When a spell to change the dog Abernathy into a human goes awry, Ben\nHoliday and his wife, Willow, journey to Earth to rescue their friend while\na mischievious imp is released into the Magic Kingdom.\"\r\n8500,9104,467032,\"William March, Elaine Showalter\",The Bad Seed ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348354741l/467032.jpg,4.05,10765,\"horror, fiction\",\"Now reissued – William March's 1954 classic thriller that's as chilling,\nintelligent and timely as ever before. This paperback reissue includes a\nnew P.S. section with author interviews, insights, features, suggested\nreading and more. What happens to ordinary families into whose midst a\nchild serial killer is born? This is the question at the center of William\nmarch's classic thriller. After its initial publication in 1954, the book\nwent on to become a million–copy bestseller, a wildly successful Broadway\nshow, and a Warner Brothers film. The spine–tingling tale of little Rhoda\nPenmark had a tremendous impact on the thriller genre and generated a whole\nperdurable crop of creepy kids. Today, The Bad Seed remains a masterpiece\nof suspense that's as chilling, intelligent, and timely as ever before.\"\r\n8501,9105,16279715,Kim Karr,Connected,https://images.gr-assets.com/books/1362012971l/16279715.jpg,4.11,10379,\"romance, contemporary\",\"What if a “Once in a Lifetime” could happen twice? In Dahlia London’s\nworld, happily ever after is a far cry from reality. Her soul has been left\ncompletely shattered by tragedy. But a surprising reunion with someone from\nher past is about to give her a reason to love again… When rock star River\nWilde comes back into Dahlia’s life, their super-charged connection runs\ndeeper than either of them ever expected. The more time they spend\ntogether, the more intense their relationship becomes, and Dahlia believes\nat last she has found her soul mate. But as old bonds fade and Dahlia’s\ngrief begins to lift, her guilt and confusion remain. River desperately\nwants to be the one who mends what’s been broken—but with a past that\nrefuses to stay buried, is it possible for their future to begin?\"\r\n8502,9106,9553503,L.A. Weatherly,Angel Fire,https://images.gr-assets.com/books/1329013097l/9553503.jpg,4.06,13765,\"fantasy, paranormal\",Angel FireL.A. Weatherly\r\n8503,9107,10870589,Ira Wagler,Growing up Amish,https://images.gr-assets.com/books/1406514526l/10870589.jpg,3.36,9085,\"memoir, nonfiction\",\"Describes the author's Amish childhood, his departure from his community at\nage sixteen, his struggles to return to the Amish way of life, and his\nfinal acceptance of his own identity and his past.\"\r\n8504,9109,22857396,J.  Daniels,Sweet Addiction,https://images.gr-assets.com/books/1407086989l/22857396.jpg,4.11,10294,\"romance, contemporary\",\"2014 GOODREADS CHOICE AWARDS NOMINEE FOR BEST DEBUT AUTHOR Wedding hookups\nnever amount to anything. Those who partake in this wicked little activity\nknow the rules. Get in. Get laid. Get out. There's no expectation of a\nrelationship. It is what it is.\"\r\n8505,9110,13170021,Steve Sheinkin,Bomb: The Race to Build—and Steal—the World's Most Dangerous Weapon,https://images.gr-assets.com/books/1424981656l/13170021.jpg,4.12,11164,\"nonfiction, history\",\"Recounts the scientific discoveries that enabled atom splitting, the\nmilitary intelligence operations that occurred in rival countries, and the\nwork of brilliant scientists hidden at Los Alamos.\"\r\n8506,9111,4364,Suketu Mehta,Maximum City: Bombay Lost and Found,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439218170l/4364._SY475_.jpg,3.91,7894,\"travel, nonfiction\",\"A portrait of Bombay, India, and its people chronicles the everday life of\nthe city and its inhabitants, from the criminal underworld of rival Muslim\nand Hindu gangs to the diverse people who come from the villages in search\nof a better life.\"\r\n8507,9113,10105,Carolly Erickson,The Last Wife of Henry VIII,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388632932l/10105.jpg,3.88,10172,\"fiction, history\",\"Courageous, romantic, intelligent: Catherine Parr became the sixth wife of\nHenry VIII and her story, as Carolly Erickson recreates it, is riveting\ndrama\"\r\n8508,9114,132314,Edgar Allan Poe,The Complete Tales and Poems of Edgar Allan Poe,https://images.gr-assets.com/books/1388017636l/132314.jpg,4.48,3427,\"classics, poetry\",\"Edgar Allan Poe was one of the earliest pioneers of the short story and\nperfected the tale of psychological horror. The entirety of Poe's body of\nimaginative work encompasses detective tales, satires, fables, fantasies,\nscience fiction, verse dramas and some of the most evocative poetry in the\nEnglish language. This leatherbound omnibus collects all of Poe's fiction\nand poetry in a single volume, including The Fall of the House of Usher,\nThe Tell-Tale Heart, The Pit and the Pendulum,. The Raven, Annabel Lee, and\nthe full-length novel The Narrative of Arthur Gordon Pym of Nantucket. The\nComplete Tales and Poems of Edgar Allan Poe is part of Barnes & Noble's\nseries of quality leatherbound volumes. Each title in the series presents a\nclassic work in an attractively designed edition bound in genuine bonded\nleather. These books make elegant additions to any home library.\"\r\n8509,9115,8286216,\"Douglas Preston, Lincoln Child\",Gideon's Sword,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442260873l/8286216._SY475_.jpg,3.58,11227,\"thriller, fiction\",\"Gideon's SwordDouglas Preston, Lincoln Child\"\r\n8510,9116,31300,Agatha Christie,A Caribbean Mystery,https://images.gr-assets.com/books/1309280346l/31300.jpg,3.77,14459,\"mystery, fiction\",A Caribbean MysteryAgatha Christie\r\n8511,9119,43841,Sharon Kay Penman,When Christ and His Saints Slept,https://images.gr-assets.com/books/1333577582l/43841.jpg,4.27,10761,\"fiction, history\",\"A novel depicting a dark period in English history follows the story of\nMaude, daughter of Henry I and England's uncrowned queen, and her cousin\nStephen, as their battles for the crown of England lead to twenty years of\nanarchy\"\r\n8512,9120,533675,\"Eugene Bradley Coco, Ron Dias\",Pinocchio (A Little Golden Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561373472l/533675._SX318_.jpg,4.33,10615,\"classics, fantasy\",\"The adventures of the wooden puppet boy whose nose grew whenever he told a\nlie.\"\r\n8513,9121,13573419,Peter F. Hamilton,Great North Road,https://images.gr-assets.com/books/1344371600l/13573419.jpg,4.06,8639,\"fiction, mystery\",Great North RoadPeter F. Hamilton\r\n8514,9125,502406,H.A. Rey,Curious George Takes a Job,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175292343l/502406.jpg,4.28,12254,\"fiction, classics\",\"A monkey runs away from the zoo and becomes a dishwasher, a window washer,\npainter, and finally a movie star\"\r\n8515,9126,106859,\"Jeph Loeb, Tim Sale, Bjarne Hansen\",Superman for All Seasons,https://images.gr-assets.com/books/1343797123l/106859.jpg,4.08,10331,\"comics, fiction\",\"Recounts some of Superman's earliest adventures including leaving\nSmallville for Metropolis and battling his enemy, Lex Luthor. Reprint.\"\r\n8516,9127,22995,\"Federico García Lorca, Antonio Sobejano-Moran, Paola Bianco\",La casa de Bernarda Alba,https://images.gr-assets.com/books/1328758570l/22995.jpg,3.77,9611,\"classics, fiction\",\"Focus student edition of Federico Garcia Lorca's 1945 modernist drama\ncenters on the events in a house in Andalusia during a period of mourning,\nin which Bernarda Alba wields total control over her five daughters.\nComplete Spanish text with notes, introduction and discussion questions.\"\r\n8517,9128,9065265,Sherrilyn Kenyon,Retribution,https://images.gr-assets.com/books/1315222730l/9065265.jpg,4.12,15771,\"paranormal, romance\",RetributionSherrilyn Kenyon\r\n8518,9129,23960,Irvine Welsh,Glue,https://images.gr-assets.com/books/1357448113l/23960.jpg,3.84,9184,\"fiction, contemporary\",\"Follows the lives of four boys growing up in the Edinburgh projects, bound\ntogether by loyalty and friendship as they struggle with class\nconditioning, peer pressure, and their parents' hopes for their future.\"\r\n8519,9130,17449197,A.G. Howard,Unhinged,https://images.gr-assets.com/books/1366994000l/17449197.jpg,4.25,14445,\"fantasy, romance\",\"Life gets complicated once again for teenaged Alyssa when her mother\nreturns home from an asylum and the mysterious Morpheus tempts Alyssa with\nanother dangerous quest in the dark, challenging Wonderland.\"\r\n8520,9131,18161265,Cecelia Ahern,How to Fall in Love,https://images.gr-assets.com/books/1373279911l/18161265.jpg,4.02,9486,\"romance, fiction\",\"An emotional, captivating and ultimately uplifting novel from this uniquely\ntalented author Christine Rose is crossing the Ha'penny Bridge in Dublin\nlate one night when she sees a stranger, Adam, poised to jump. Desperate to\nhelp, she talks him into a reckless deal: if he gives her two weeks -- till\nhis 35th birthday -- she'll prove that life is worth living. But as the\nclock ticks and the two of them embark on late-night escapades and romantic\nadventures, what Christine has really promised seems impossible... A novel\nto make you laugh, cry and appreciate life, this is Cecelia Ahern at her\nthoughtful and surprising best.\"\r\n8521,9134,132152,\"Lettie B. Cowman, James Reimann\",Streams in the Desert,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347233117l/132152.jpg,4.39,5953,\"christian, nonfiction\",\"I said, \"\"The desert is so wide!\"\"What springs to quench my thirst are there?\nWhere will I from the tempest hide? In a barren wilderness, L. B. Cowman\nlong ago discovered a fountain that sustained her, and she shared it with\nthe world. Streams in the Desert \"\"RM\"\" -- her collection of prayerful\nmeditations, Christian writings, and God's written promises -- has become\none of the most dearly loved, best-selling devotionals of all time since\nits first publication in 1925. Filled with insight into the richness of\nGod's provision and the purpose of His plan, this enduring classic has\nencouraged and inspired generations of Christians.Before me palms rose\ngreen and fair; The birds were singing; all the air Was filled and stirred\nwith angels' wings. Now James Reimann, editor of the highly acclaimed\nupdated edition of My Utmost for His Highest by Oswald Chambers, again\nbrings us the wisdom of the past in the language of today, by introducing\nthis updated edition of Streams in the Desert. With fresh, contemporary\nwording and precise NIV text, the timeless message of the original flows\nunhindered through these pages, lending guidance and hope to a new\ngeneration of believers. We never know where God has hidden His streams. We\nsee a large stone and have no idea that it covers the source of a spring.\nWe see a rocky area and never imagine that it is hiding a fountain. God\nleads me into hard and difficult places, and it is there I realize I am\nwhere eternal streams abide. Day by day, Streams in the Desert will lead\nyou from life's dry, desolate places to the waters of the River of Life --\nand beyond, to their verySource.\"\r\n8522,9136,13568619,\"Cassandra Clare, Joshua Lewis\",The Shadowhunter's Codex,https://images.gr-assets.com/books/1358696072l/13568619.jpg,4.06,15497,\"fantasy, paranormal\",\"\"\"A fictional guide to the Shadowhunter's universe\"\"--\"\r\n8523,9137,121809,Chris Heimerdinger,\"Tennis Shoes Among the Nephites (Tennis Shoes, #1)\",https://images.gr-assets.com/books/1442362440l/121809.jpg,4.01,13112,\"fantasy, fiction\",\"Tennis Shoes Among the Nephites (Tennis Shoes, #1)Chris Heimerdinger\"\r\n8524,9138,477338,Laurie Faria Stolarz,Blue Is for Nightmares,https://images.gr-assets.com/books/1350054787l/477338.jpg,3.81,15848,\"fantasy, paranormal\",\"Sixteen-year-old hereditary witch Stacey Brown has nightmares of her\nroommate being murdered and hopes that her magick will be enough to protect\nDrea--unlike the last person whose death Stacey dreamed.\"\r\n8525,9139,5417,Stephen King,Three Complete Novels: Carrie/Salem's Lot/The Shining,https://images.gr-assets.com/books/1376725117l/5417.jpg,4.52,11063,\"horror, fiction\",Three Complete Novels: Carrie/Salem's Lot/The ShiningStephen King\r\n8526,9140,1541884,Kelley Armstrong,Personal Demon,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388365750l/1541884.jpg,4.06,16371,\"paranormal, fantasy\",\"Reporter Hope Adams, a gorgeous half-demon determined to use her powerful\ngifts for good, undertakes a dangerous mission of infiltrating a Miami gang\nof bored, wealthy, and trouble-making supernaturals on behalf of the Cortez\nCabal.\"\r\n8527,9141,9329354,Brandon Sanderson,\"The Way of Kings, Part 1\",https://images.gr-assets.com/books/1357609842l/9329354.jpg,4.67,9792,\"fantasy, fiction\",\"A new epic series by the best-selling writer of Robert Jordan's final Wheel\nof Time® novels introduces the world of Roshar through the experiences of a\nwar-weary royal compelled by visions, a highborn youth condemned to\nmilitary slavery and a woman who would save her impoverished house.\nReprint. A best-selling novel.\"\r\n8528,9142,6517407,Richard Paul Evans,The Christmas List,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442785267l/6517407._SX318_.jpg,4.17,10544,\"fiction, romance\",The Christmas ListRichard Paul Evans\r\n8529,9143,7252,\"Jenna Jameson, Neil Strauss\",How to Make Love Like a Porn Star: A Cautionary Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924879l/7252.jpg,3.75,9531,\"biography, memoir\",\"In the underbelly of Las Vegas, a cesspool of warring biker gangs and seedy\nstrip clubs, gawky, brace-faced Jenna Massoli was transformed into the\nbombshell Jenna Jameson. Today, Jenna is the biggest star in the history of\nadult movies, consistently ranked as one of the most beautiful women alive.\nBut behind the glamour and the meteoric rise to fame was a path paved with\ntragedy and heartbreak. As a teenager—drawn into a dark and chaotic world\nwhere rape, abuse, and murder were commonplace—Jenna began her rapid\ndownward spiral of addiction and degradation . . . while at the same time\nbecoming the porn world's biggest crossover success story. Her intimate\nmemoir, How to Make Love Like a Porn Star, is a shocking sexual history, an\ninsider's guide to the secret workings of the billion-dollar adult film\nindustry, and a gripping thriller that probes deeply into Jenna's dark\npast. Mix in hilarious anecdotes, adrenaline-pumping triumphs, and photos\nfrom Jenna's private collection, and you have a tell-all autobiography\nunlike any other.\"\r\n8530,9144,85321,Brad Meltzer,The Tenth Justice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348482612l/85321.jpg,3.97,10037,\"fiction, mystery\",\"When Ben Addison, a new clerk for a Supreme Court justice, makes an error\nin judgement that leaves him open to blackmail, he turns for help to Lisa,\na fellow clerk, and his housemates, who work in the State Department, a\nsenator's office, and a Washington newspaper\"\r\n8531,9146,7261549,Derek Landy,Dark Days,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348429914l/7261549.jpg,4.45,12047,\"fantasy, mystery\",\"When the evil Baron Vengeous escapes from prison, Detective Skulduggery\nPleasant and his apprentice, Valkyrie Cain, have just two days to recapture\nhim or the Baron's creature, the Grotesquery, may summon the Faceless Ones\nback to their world.\"\r\n8532,9147,228198,Stephen King,\"The Green Mile, Part 3: Coffey's Hands\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640398l/228198.jpg,4.5,12232,\"horror, fiction\",\"Paul Coffey, the brutal killer of two girls, reveals something\nextraordinary, and life on the Green Mile will never be the same again.\"\r\n8533,9148,111306,Jacquelyn Frank,Jacob,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422991814l/111306.jpg,4.02,17448,\"paranormal, romance\",JacobJacquelyn Frank\r\n8534,9151,615233,Norman Bridwell,Clifford's Halloween (Clifford),https://images.gr-assets.com/books/1328835774l/615233.jpg,4.14,11164,\"fiction, classics\",\"Clifford, the big red dog, and his young master think of possible costumes\nfor the Halloween festivities.\"\r\n8535,9152,531197,\"Philip Pullman, John Lawrence\",Lyra's Oxford,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524742342l/531197.jpg,3.52,12665,\"fiction, fantasy\",\"Lyra and Pantalaimon (now a pine-marten) are back at Oxford, but their\npeace is shattered by Ragi, the daemon of the witch Yelena, who is\nsearching for a healing elixir to cure his witch.\"\r\n8536,9153,8803932,Rachel Vincent,\"If I Die (Soul Screamers, #5)\",https://images.gr-assets.com/books/1304024127l/8803932.jpg,4.32,14153,\"paranormal, fantasy\",\"The entire school's talking about the gorgeous new math teacher, Mr. Beck.\nEveryone except Kaylee Cavanaugh. After all, Kaylee's no ordinary high-\nschool junior. She's a banshee—she screams when someone dies. But the next\nscream might be for Kaylee. Yeah—it's a shock to her, too. So to distract\nherself, Kaylee's going to save every girl in school. Because that hot new\nteacher is really an incubus who feeds on the desire of unsuspecting\nstudents. The only girls immune to his lure are Kaylee and Sabine, her\nboyfriend's needy ex-girlfriend. Now the unlikely allies have to get rid of\nMr. Beck…before he discovers they aren't quite human, either. But Kaylee's\nborrowed lifeline is nearing its end. And those who care about her will do\nanything to save her life. Anything.\"\r\n8537,9154,14781219,\"James Patterson, Mark T. Sullivan\",Private Berlin,https://images.gr-assets.com/books/1340758912l/14781219.jpg,3.9,10043,\"mystery, fiction\",\"From the #1 bestselling PRIVATE series comes a novel with the extraordinary\npace and international sophistication of The Girl with the Dragon Tattoo IN\nEUROPE'S MOST DANGEROUS CITY Chris Schneider is a superstar agent at\nPrivate Berlin, Germany headquarters for the world's most powerful\ninvestigation firm. He keeps his methods secret as he tackles Private's\nmost high-profile cases-and when Chris suddenly disappears, he becomes\nPrivate Berlin's most dangerous investigation yet. AN INVESTIGATOR IS\nSEARCHING Mattie Engel is another top agent at Private Berlin, gorgeous and\nruthlessly determined-and she's also Chris's ex. Mattie throws herself\nheadfirst into finding Chris, following leads to the three people Chris was\ninvestigating when he vanished: a billionaire suspected of cheating on his\nwife, a soccer star accused of throwing games, and a nightclub owner with\nties to the Russian mob. Any one of them would surely want Chris gone-and\none of them is evil enough to want him dead. AND SHE'S AFTER MORE THAN THE\nTRUTH Mattie's chase takes her into Berlin's most guarded, hidden, and\ntreacherous places, revealing secrets from Chris's past that she'd never\ndreamed of in the time they were lovers. On the brink of a terrifying\ndiscovery, Mattie holds on to her belief in Chris-in the face of a horror\nthat could force all of Europe to the edge of destruction and chaos. James\nPatterson has taken the European thriller to a masterful new level with\nPrivate Berlin, an adrenaline-charged and sexy novel with unforgettable\ncharacters of dark and complex depths. Private Berlin proves why Patterson\nis truly the world's #1 bestselling author.\"\r\n8538,9155,227590,Lisa Gardner,The Other Daughter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925378l/227590.jpg,3.99,11649,\"mystery, suspense\",\"Twenty-nine-year-old Melanie Stokes' search for her true identity leads her\nto distrust the seemingly loving parents who adopted her\"\r\n8539,9156,765193,\"Mary Hoffman, Caroline Binch\",Amazing Grace,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347335253l/765193.jpg,4.33,10959,\"fiction, fantasy\",\"Although two classmates says that she cannot play Peter Pan in the school\nplay because she is a girl and black, Grace discovers that she can do\nanything she sets her mind to do.\"\r\n8540,9157,110692,\"David Eddings, Leigh Eddings\",The Redemption of Althalus,https://images.gr-assets.com/books/1403185455l/110692.jpg,3.82,11508,\"fantasy, fiction\",\"As the battle continues between the forces of good and evil, disreputable\nthief and rogue Althalus is forced into an uneasy alliance with powerful\ngoddess Dweia as they embark on a mission that could hold the key to the\nworld's salvation.\"\r\n8541,9158,44543,Emma Donoghue,Slammerkin,https://images.gr-assets.com/books/1315155075l/44543.jpg,3.69,11271,\"fiction, history\",\"Drawn into prostitution in mid-1700s London at an early age because of her\ndreams for a more affluent lifestyle, Mary Saunders takes refuge as a\nseamstress in the middle-class household of Mrs. Jones but mistakenly comes\nto believe that fashionable clothing can enable her to win respect and\nfreedom. Reprint. 50,000 first printing.\"\r\n8542,9160,11235783,Julie James,About That Night,https://images.gr-assets.com/books/1342553249l/11235783.jpg,4.07,18193,\"romance, contemporary\",About That NightJulie James\r\n8543,9161,1087205,Bisco Hatori,桜蘭高校ホスト部 3,https://images.gr-assets.com/books/1393731667l/1087205.jpg,4.44,12788,\"manga, romance\",桜蘭高校ホスト部 3Bisco Hatori\r\n8544,9162,37377,Nancy Tillman,On the Night You Were Born,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925359l/37377.jpg,4.35,11125,\"fiction, poetry\",\"On the night you were born, you brought wonder and magic to the world. The\nmoon stayed up till morning. Polar bears danced. Here is a book that\ncelebrates the one and only ever you! Now available in its entirety in\nboard book format, Nancy Tillman’s masterpiece is perfect for acknowledging\nthe special people in our lives that they are loved.\"\r\n8545,9164,20886354,\"Brandon Sanderson, Jon Foster\",Legion: Skin Deep,https://images.gr-assets.com/books/1404932663l/20886354.jpg,4.11,8317,\"fantasy, fiction\",\"Following the success of Legion, Legion: Skin Deep charts another fast\nmoving and gripping adventure for Stephen Leeds, AKA Legion. Leeds is a\ngenius, his mind contains too much information. And to cope it has split\nhis skills off into individual personalities. They crowd his head and he\nlives with them in a vast empty mansion. While he can call on any one of\nthem to solve a problem he also walks a line across an all-consuming\nmadness. In development for television Brandon Sanderson's Legion stories\nare gripping psychological thrillers, perfect for any fan of speculative\nfiction. They will resonate particularly strongly with fans of stories\nabout that other tortured crime-fighting genius: Sherlock Holmes. Legion:\nSkin Deep is an all-new, action-packed novella starring one of the most\nfascinating and charismatic heroes ever. Read by Oliver Wyman\"\r\n8546,9166,6953500,Meg Cabot,Insatiable,https://images.gr-assets.com/books/1479654144l/6953500.jpg,3.44,18463,\"romance, paranormal\",InsatiableMeg Cabot\r\n8547,9167,22600903,J.  Daniels,Where I Belong,https://images.gr-assets.com/books/1404019520l/22600903.jpg,4.05,13110,\"romance, contemporary\",\"A New York Times bestselling enemies to lovers STANDALONE romance. When Mia\nCorelli returns to Alabama for a summer of fun with her childhood best\nfriend, Tessa, there's only one thing keeping her on edge.\"\r\n8548,9168,366337,Debbie Macomber,Back on Blossom Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388527774l/366337.jpg,4.14,11757,\"romance, fiction\",Back on Blossom StreetDebbie Macomber\r\n8549,9169,8257435,\"François Lelord, Lorenza García\",Le Voyage d’Hector ou la recherche du bonheur,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347471539l/8257435.jpg,3.47,8084,\"fiction, psychology\",\"Hector, a young French psychiatrist, confronts the inevitable progression\nof time while helping his patients resolve their fears and becomes\nincreasingly aware of his own evolving adulthood, observations he addresses\nwhile traveling the world.\"\r\n8550,9170,241969,Joshilyn Jackson,\"Between, Georgia\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428466106l/241969.jpg,3.87,11098,\"fiction, contemporary\",\"Between, GeorgiaJoshilyn Jackson\"\r\n8551,9171,33729,Jennifer Crusie,Faking It ,https://images.gr-assets.com/books/1311973997l/33729.jpg,3.9,15216,\"romance, fiction\",Faking It Jennifer Crusie\r\n8552,9172,17801,\"Haruki Murakami, Alfred Birnbaum, Philip Gabriel\",アンダーグラウンド [Andāguraundo],https://images.gr-assets.com/books/1443692668l/17801.jpg,3.89,8405,\"nonfiction, history\",\"Covers the 1995 Tokyo Gas Attack, during which agents of a Japanese cult\nreleased a gas deadlier than cyanide into the subway system, as documented\nin interviews with its survivors, perpetrators, and victim family members.\nOriginal. 15,000 first printing.\"\r\n8553,9173,27298,Indu Sundaresan,The Twentieth Wife,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441836224l/27298._SY475_.jpg,4.03,9873,\"fiction, romance\",\"The story of Mehrunnisa, the daughter of servents who became the an\nempresses of the Mughal empire.\"\r\n8554,9175,99461,Piers Anthony,\"Split Infinity (Apprentice Adept, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1530219700l/99461._SY475_.jpg,3.94,13299,\"fantasy, fiction\",\"Soon after escaping assassination on the highly technical, science-oriented\nplanet of Proton, Stile finds himself in a world of sorcery and magic where\nanother power seeks his destruction.\"\r\n8555,9176,44360,Rob Bell,Sex God: Exploring the Endless Connections Between Sexuality And Spirituality,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,3.82,8999,\"christian, religion\",\"\"\"You can't talk about sexuality without talking about how we were made. And\nthat will inevitably lead you to who made us. At some point you have to\ntalk about God. Sex. God. They're connected. And they can't be separated.\nWhere the one is, you will always find the other.\"\" —from Sex God\"\r\n8556,9177,5556595,Isabel Wolff,A Vintage Affair,https://images.gr-assets.com/books/1327878847l/5556595.jpg,3.8,11104,\"fiction, romance\",\"Opening a vintage clothing shop in London where she restores classic gowns,\nPhoebe Swift works to keep up with her unexpected immediate success while\nstruggling with her best friend's death, a rivalry between two suitors, and\nher mother's cosmetic surgery fixation.\"\r\n8557,9178,302998,Hanif Kureishi,The Buddha of Suburbia,https://images.gr-assets.com/books/1344618639l/302998.jpg,3.72,8683,\"fiction, contemporary\",\"A love story for at least two generstions, a high-spirited comedy of sexual\nmanners and social turmoil, The Buddha of Suburbia is one of the most\nenchanting, provocative, and original books to appear in years. \"\"A wickedly\nfunny novel that's at once a traditional comedy of manners and a scathing\nsatire on race relations in Britain\"\".--The New York Times.\"\r\n8558,9180,64949,\"Brian Coffey, Dean Koontz\",The Voice of the Night ,https://images.gr-assets.com/books/1308461608l/64949.jpg,3.91,12897,\"suspense, horror\",\"The Voice of the Night Brian Coffey, Dean Koontz\"\r\n8559,9181,25837338,Alex Rosenberg,The Girl from Krakow,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441786470l/25837338._SY475_.jpg,3.79,9585,\"fiction, history\",\"It's 1935. Rita Feuerstahl comes to the university in Krakow intent on\nenjoying her freedom. But life has other things in store--marriage, a love\naffair, a child, all in the shadows of the oncoming war. When the war\narrives, Rita is armed with a secret so enormous that it could cost the\nAllies everything, even as it gives her the will to live. She must find a\nway both to keep her secret and to survive amid the chaos of Europe at war.\nLiving by her wits among the Germans as their conquests turn to defeat, she\nseeks a way to prevent the inevitable doom of Nazism from making her one of\nits last victims. Can her passion and resolve outlast the most powerful\nevil that Europe has ever seen? In an epic saga that spans from Paris in\nthe '30s and Spain's Civil War to Moscow, Warsaw, and the heart of Nazi\nGermany, The Girl from Krakow follows one woman's battle for survival as\nentire nations are torn apart, never to be the same.\"\r\n8560,9182,6452731,Michael J. Sandel,Justice: What's the Right Thing to Do?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441517195l/6452731._SY475_.jpg,4.25,8060,\"nonfiction, philosophy\",\"A Harvard professor assesses the role of justice in today's society as well\nas the moral responsibilities faced by everyday citizens, weighing a range\nof issues from euthanasia and abortion to affirmative action and tax\nstructuring. Reprint. A best-selling book.\"\r\n8561,9183,22608582,Mitchell Zuckoff,13 Hours: The Inside Account of What Really Happened In Benghazi,https://images.gr-assets.com/books/1411493281l/22608582.jpg,4.26,8692,\"history, nonfiction\",13 Hours: The Inside Account of What Really Happened In BenghaziMitchell Zuckoff\r\n8562,9184,6916963,Richelle Mead,Succubus Shadows ,https://images.gr-assets.com/books/1315977677l/6916963.jpg,4.18,18822,\"paranormal, fantasy\",\"From the author of the hugely popular Vampire Academy series comes this\nsexy, suspenseful, and witty urban fantasy that features Seattle-based\nsuccubus Georgina Kinkaid who discovers that her dreams are not what they\nseem.\"\r\n8563,9185,6505109,Leila Meacham,Roses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442881426l/6505109._SY475_.jpg,4.02,10837,\"romance, fiction\",RosesLeila Meacham\r\n8564,9186,33726,Jennifer Crusie,Crazy For You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391554147l/33726.jpg,3.78,14318,\"romance, contemporary\",\"On Wednesday, Quinn McKenzie changes her life. On Thursday, she tries to\nget somebody to notice. On Thursday night, somebody does. Quinn McKenzie is\ndating the world’s nicest guy, she has a good job as a high school art\nteacher, she’s surrounded by family and friends who rely on her, and she’s\nbored to the point of insanity. But when Quinn decides to change her life\nby adopting a stray dog over everyone’s objections, everything begins to\nspiral out of control. Now she’s coping with dognapping, breaking and\nentering, seduction, sabotage, stalking, more secrets than she really wants\nto know, and two men who are suddenly crazy . . . for her.\"\r\n8565,9187,4016515,Maya Angelou,Letter to My Daughter,https://images.gr-assets.com/books/1320448534l/4016515.jpg,4.08,9933,\"nonfiction, poetry\",\"A collection of short essays includes personal reminiscences, hard-won\nwisdom, and inspirational ideas.\"\r\n8566,9188,393060,Lionel Shriver,The Post-Birthday World ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348752137l/393060.jpg,3.52,10415,\"fiction, contemporary\",The Post-Birthday World Lionel Shriver\r\n8567,9189,349129,Mordicai Gerstein,The Man Who Walked Between the Towers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173973951l/349129._SX318_.jpg,4.14,12022,\"biography, nonfiction\",\"A lyrical evocation of Philippe Petit's 1974 tightrope walk between the\nWorld Trade Center towers.\"\r\n8568,9191,54120,\"José Saramago, Margaret Jull Costa\",O Homem Duplicado,https://images.gr-assets.com/books/1328876706l/54120.jpg,3.84,6430,\"fiction, contemporary\",\"Renting a recommended video to ease his depression, divorced history\nteacher Tertuliano Maximo Afonso is unsettled to see a man in the video who\nlooks exactly the way he looked five years earlier, and when he decides to\nfind his double, he learns a difficult lesson about the impact of\nexperience on one's identity. 60,000 first printing.\"\r\n8569,9192,5996209,Richelle Mead,Thorn Queen,https://images.gr-assets.com/books/1304053865l/5996209.jpg,4.12,17026,\"fantasy, paranormal\",Thorn QueenRichelle Mead\r\n8570,9193,697210,Jacqueline Sheehan,Lost & Found,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348899583l/697210.jpg,3.71,9474,\"fiction, romance\",Lost & FoundJacqueline Sheehan\r\n8571,9194,543505,Beatrix Potter,The Tale of Mrs. Tiggy-Winkle,https://images.gr-assets.com/books/1311281900l/543505.jpg,4.19,12873,\"fiction, fantasy\",\"Lucie visits the laundry of Mrs. Tiggy-Winkle, a hedgehog, and finds her\nlost handkerchiefs.\"\r\n8572,9195,76668,Piers Anthony,For Love of Evil,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438276309l/76668._SY475_.jpg,4.1,12399,\"fiction, fantasy\",\"The Man Who Would Be Satan Parry was a gifted musician and an apprentice in\nthe arts of White Magic. But his life of sweet promise went disastrously\nawry following the sudden, violent death of his beloved Jolie. Led down the\ntwisted path of wickedness and depravity by Lilah the harlot demoness,\nParry thrived -- first as a sorceror, then as a monk, and finally as a\nfeared inquisitor. But it wasn't until his mortal flame was extinguished\nthat Parry found his true calling -- as the Incarnation of Evil. And, at\nthe gates of Hell, he prepared to wage war on the master himself --\nLucifer, the dark lord -- with dominion over the infernal realms the\nultimate prize!\"\r\n8573,9196,13543138,Sarah Jio,Blackberry Winter,https://images.gr-assets.com/books/1382760152l/13543138.jpg,3.96,10907,\"fiction, mystery\",\"From an acclaimed novelist comes a new mystery-slash-love story that will\nhave readers racing to the end. (This book was previously listed in\nForecast.) Original. 100,000 first printing.\"\r\n8574,9197,11318,Raymond Chandler,Trouble Is My Business,https://images.gr-assets.com/books/1388189902l/11318.jpg,4.05,9020,\"mystery, fiction\",\"A private detective is hired to break up an unsuitable romance, find a\nmissing dog, solve a murder, search for an ex-con's lost girlfriend, ransom\na necklace, and investigate a wife's mysterious disappearance\"\r\n8575,9198,24761,Madeleine L'Engle,\"An Acceptable Time (Time Quintet, #5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388764061l/24761.jpg,3.86,13596,\"fantasy, fiction\",\"An Acceptable Time (Time Quintet, #5)Madeleine L'Engle\"\r\n8576,9199,127249,Steve Berry,The Third Secret,https://images.gr-assets.com/books/1320437464l/127249.jpg,3.84,10809,\"fiction, thriller\",\"Haunted by the secrets revealed in 1917 in Fatima, Portugal, the obsession\nof Pope Clement XV leads to intrigue at the Vatican as Alberto Cardinal\nValendrea, the Vatican's Secretary of State, plots to bring down the\ntroubled pontiff.\"\r\n8577,9200,2854962,Jenny Nimmo,\"Charlie Bone and the Shadow (The Children of the Red King, # 7)\",https://images.gr-assets.com/books/1328843031l/2854962.jpg,4.02,13322,\"fantasy, fiction\",\"When Charlie is trapped in a magical painting he must battle an evil count\nthirsty for revenge. Will he be able to save himself and his friends? Find\nout in Book 7 of Jenny Nimmo's bestselling series! The enchanter Count\nHarken is back to take his revenge on the Red King's heirs, starting with\nCharlie Bone's family! Charlie's ancestor has been kidnapped and imprisoned\nin the dark, forbidding land of Badlock, and it's up to Charlie to save\nhim. Traveling through a painting to the terrifying countryside, Charlie\nand his best friend's dog, Runner Bean, take up the quest. But when Runner\nBean gets trapped, Charlie needs the help of his friends. Can they get past\nan army of trolls, rescue Runner Bean and Charlie's ancestor, and get out\nbefore it's too late?\"\r\n8578,9201,38548,Lynsay Sands,Love Bites,https://images.gr-assets.com/books/1354343261l/38548.jpg,4.12,17118,\"romance, paranormal\",\"True love: good from the first bite . . . Etienne Argeneau's three hundred\nyears of bach- elorhood were at an end. Either that, or he'd be forever\nalone. He could turn only one human in his lifetime, and most of his kind\ncreated a life mate. If he turned this stranger . . . But what choice did\nhe have? He had to help Rachel Garrett. The beautiful coroner had saved his\nlife. To save hers, he would make her immortal. . . . to the last Rachel\nGarrett awoke surprised. All she'd wanted was to get off the night shift in\nthe morgue; now here she was staggering to her feet naked and in a strange\nplace. But everything would be all right. She'd just make like a bat out\nof— Then she saw the man of her dreams emerging from his . . . coffin? And\nthe look in his bright silver eyes said they'd be spending a lot of time\ntogether. She just hoped he tasted as good as he looked.\"\r\n8579,9202,17727276,Hillary Rodham Clinton,Hard Choices,https://images.gr-assets.com/books/1402198745l/17727276.jpg,3.57,8724,\"biography, nonfiction\",Hard ChoicesHillary Rodham Clinton\r\n8580,9203,137894,\"Bob Gale, Devin Grayson, Alex Maleev, Dale Eaglesham\",\"Batman: No Man's Land, Vol. 1\",https://images.gr-assets.com/books/1377876110l/137894.jpg,4.11,9269,\"comics, fiction\",\"Written by Bob Gale And Devin K. Grayson; Art by Alex Maleev, Dale\nEaglesham and others After suffering a cataclysmic earthquake, the U.S.\ngovernment has deemed Gotham City as uninhabitable and ordered all citizens\nto leave. It is now months later and those that have refused to vacate \"\"No\nMan's Land\"\" live amidst a citywide turf war in which the strongest prey on\nthe weak. As gangs terrorize the ravaged populace, the Scarecrow uses a\nchurch relief project as a real life lab to test his experiments in fear.\nBut with the return of the vigilante, Batman, and the appearance of an\nenigmatic new Batgirl, justice returns to Gotham. This volume is the first\nof five that recounts the NO MAN'S LAND storyline.\"\r\n8581,9205,11076123,Esi Edugyan,Half Blood Blues,https://images.gr-assets.com/books/1309737674l/11076123.jpg,3.63,8911,\"fiction, music\",\"Berlin, 1939. The Hot-Time Swingers, a popular German American jazz band,\nhave been forbidden to play live because the Nazis have banned their\n\"\"degenerate\"\" music. After escaping to Paris, where they meet Louis\nArmstrong, the band's brilliant young trumpet player, Hieronymus Falk, is\narrested in a cafe by the Gestapo. It is June 1940. He is never heard from\nagain. He is twenty years old, a German citizen. And he is black. Berlin,\n1992. Falk, now a jazz legend, is the subject of a celebratory documentary.\nTwo of the original Hot-Time Swingers American band members, Sid Griffiths\nand Chip Jones, are invited to attend the film's premier in Berlin. As they\nreturn to the landscape of their past friendships, rivalries, loves, and\nbetrayals, Sid - the only witness to Falk's disappearance who has always\nrefused to speak about what happened - is forced to break his silence. Sid\nre-creates the lost world of Berlin's prewar smoky bars, and the salons of\nParis, telling his vibrant and suspenseful story in German American slang.\nHalf-Blood Bluesis a novel about music and race, love and loyalty, and\nmarks the arrival of an extraordinarily \"\"gifted storyteller\"\" (Toronto\nStar).\"\r\n8582,9206,15655,Katrina Kittle,The Kindness of Strangers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442941672l/15655._SY475_.jpg,4,10627,\"fiction, contemporary\",\"A young widow raising two boys, Sarah Laden is struggling to keep her\nfamily together. But when a shocking revelation rips apart the family of\nher closest friend, Sarah finds herself welcoming yet another troubled\nyoung boy into her already tumultuous life. Jordan, a quiet, reclusive\nelementary school classmate of Sarah's son Danny, has survived a terrible\nordeal. By agreeing to become Jordan's foster mother, Sarah will be forced\nto question the things she has long believed. And as the delicate threads\nthat bind their family begin to unravel, all the Ladens will have to face\ndifficult truths about themselves and one another—and discover the power of\nlove necessary to forgive and to heal.\"\r\n8583,9207,13132816,Robin Benway,Emmy & Oliver,https://images.gr-assets.com/books/1414589813l/13132816.jpg,3.91,13260,\"contemporary, romance\",Emmy & OliverRobin Benway\r\n8584,9208,22040598,Scott McCloud,The Sculptor,https://images.gr-assets.com/books/1418629570l/22040598.jpg,4,10038,\"comics, fiction\",The SculptorScott McCloud\r\n8585,9209,22504701,Victoria Jamieson,Roller Girl,https://images.gr-assets.com/books/1447914095l/22504701.jpg,4.27,18014,\"sports, comics\",\"\"\"A graphic novel adventure about a girl who discovers roller derby right as\nshe and her best friend are growing apart\"\"--\"\r\n8586,9210,160988,P.D. Eastman,The Best Nest,https://images.gr-assets.com/books/1320398047l/160988.jpg,4.19,11906,\"fiction, classics\",\"Mr. and Mrs. Bird search for a place to build a new nest only to discover\ntheir old one is better.\"\r\n8587,9211,7296271,J.L. Bourne,Day By Day Armageddon: Beyond Exile ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348699328l/7296271.jpg,4.08,8923,\"horror, fiction\",Day By Day Armageddon: Beyond Exile J.L. Bourne\r\n8588,9212,1105093,Randall Wallace,Braveheart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387712208l/1105093.jpg,4.19,10729,\"fiction, classics\",\"A fictional recreation of the life and times of William Wallace follows the\nepic struggle of the thirteenth-century Scottish patriot to free his\ncountry and his people from the tyranny of the English king. Original.\nMovie tie-in.\"\r\n8589,9213,21327,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Jim Fern, Jimmy Palmiotti, Andrew Pepoy\",\"Fables, Volume 7: Arabian Nights (and Days)\",https://images.gr-assets.com/books/1327962799l/21327.jpg,4.1,13772,\"comics, fantasy\",\"Follows the adventures of storybook and nursery rhyme characters who live\nside-by-side with humans.\"\r\n8590,9214,98687,André Aciman,Call Me by Your Name,https://images.gr-assets.com/books/1283737003l/98687.jpg,4.13,10154,\"fiction, romance\",\"The sudden and powerful attraction between a teenage boy and a summer guest\nat his parents' house on the Italian Riviera has a profund and lasting\ninfluence that will mark them both for a lifetime, in a novel of obsession,\npassion, fear, and desire. By the author of False Papers. Reprint. 25,000\nfirst printing.\"\r\n8591,9215,15836,Anne Michaels,Fugitive Pieces,https://images.gr-assets.com/books/1327866798l/15836.jpg,3.95,10642,\"fiction, history\",\"A young orphan smuggled out of Poland during World War II, poet Jakob Beer,\ncomes to understand the extraordinary power of language to destroy,\nrestore, and witness as he struggles to cope with both grief and the\nhealing of memory\"\r\n8592,9216,15549,Terry Brooks,Armageddon's Children,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198012l/15549.jpg,4.09,11107,\"fantasy, fiction\",\"In a futuristic world in which civilization is near total collapse, evil\nforces control the ruins of the former United States, killing and enslaving\nthe survivors, until Logan Tom embarks on a mission to find a child who\nbears a powerful magic that couldsave the world.\"\r\n8593,9217,376613,Richard   Preston,The Cobra Event,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251409l/376613.jpg,4,10505,\"fiction, thriller\",\"A novel based on real-life events and situations focuses on top-secret\noperations by a U.S. government organization preparing for a mind-boggling,\nhorrifying threat to civilian populations\"\r\n8594,9218,13115995,Brodi Ashton,Everbound,https://images.gr-assets.com/books/1359138201l/13115995.jpg,4.06,15865,\"fantasy, paranormal\",EverboundBrodi Ashton\r\n8595,9219,5291189,Richard Stearns,The Hole in Our Gospel: What does God expect of Us?  The Answer that Changed my Life and Might Just Change the World,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441163281l/5291189._SY475_.jpg,4.18,9512,\"christian, religion\",The Hole in Our Gospel: What does God expect of Us?  The Answer that Changed my Life and Might Just Change the WorldRichard Stearns\r\n8596,9220,300650,Gary Ezzo,On Becoming Baby Wise: Giving Your Infant the Gift of Nighttime Sleep,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442952647l/300650.jpg,3.58,5939,\"nonfiction, psychology\",\"Teaches parents about synchronized feedings so their baby will establish\ncycles for wake time and nighttime, giving both parent and child the rest\nthey need.\"\r\n8597,9222,71984,Steve Coll,\"Ghost Wars: The Secret History of the CIA, Afghanistan, and Bin Laden, from the Soviet Invasion to September 10, 2001\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924074l/71984.jpg,4.28,9066,\"history, nonfiction\",\"Provides an overview of CIA and other covert operations in Afghanistan,\nfrom the Soviet invasion in 1979 through the summer of 2001, detailing\nefforts to capture or kill bin Laden and the failure to stop the events of\nSeptember 11th.\"\r\n8598,9223,61794,Anonymous,La vida del Lazarillo de Tormes y sus fortunas y adversidades ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170593015l/61794._SY475_.jpg,3.49,7748,\"classics, fiction\",La vida del Lazarillo de Tormes y sus fortunas y adversidades Anonymous\r\n8599,9225,161846,John Wyndham,The Midwich Cuckoos,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172294996l/161846.jpg,3.93,10841,\"fiction, horror\",The Midwich CuckoosJohn Wyndham\r\n8600,9227,2306910,Sandra Brown,Smoke Screen,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347853263l/2306910.jpg,3.98,11245,\"mystery, romance\",\"From the #1 New York Times bestsellng author of Seeing Red comes a\n\"\"scorching...action-filled\"\" (Publishers Weekly) tale of corruption and\nbetrayal, revenge, and reversal. When newswoman Britt Shelley wakes up to\nfind herself in bed with Jay Burgess, a star detective in the Charleston\nPD, she remembers nothing of how she got there—or how Jay wound up dead.\nHandsome, hard-partying Jay was one of four heroic city officials who\nrisked their lives five years earlier to lead others to safety from a\ncatastrophic fire. His lifelong friend, Raley Gannon, was later assigned to\ninvestigate the blaze. But Raley never finished the inquiry because one\ncalamitous night his career was destroyed by scandal. Now, the newswoman\nwhose biased reporting helped bring about Raley's downfall might be his\nonly chance to vindicate himself and get justice for the fire's victims.\nBut the more Raley and Britt discover about that fateful day, the more\nperilous the situation becomes, until they're not only chasing the truth\nbut running for their lives.\"\r\n8601,9229,19156898,\"Jennifer L. Holm, Tad Carpenter\",The Fourteenth Goldfish,https://images.gr-assets.com/books/1386092727l/19156898.jpg,3.87,9532,\"science, fantasy\",\"From a three-time Newbery Honoree. Ellie's scientist grandfather has\ndiscovered a way to reverse aging, and consequently has turned into a\nteenagerNwhich makes for complicated relationships when he moves in with\nEllie and her mother, his daughter.\"\r\n8602,9230,988170,\"Kathryn Jackson, Gustav Tenggren\",Tawny Scrawny Lion (Little Golden Book),https://images.gr-assets.com/books/1395619387l/988170.jpg,4.16,12407,\"fiction, classics\",\"Tawny Scrawny Lion (Little Golden Book)Kathryn Jackson, Gustav Tenggren\"\r\n8603,9231,298816,Don Richardson,Peace Child,https://images.gr-assets.com/books/1328779463l/298816.jpg,4.31,8832,\"biography, christian\",\"In 1962, Don and Carol Richardson risked their lives to share the gospel\nwith the Sawi people of New Guinea. Peace Child told their unforgettable\nstory of living among these headhunting cannibals who valued treachery\nthrough fattening victims with friendship before the slaughter. God gave\nDon and Carol the key to the Sawi hearts via a redemptive analogy from\ntheir own mythology. The peace child became the secret to unlocking a value\nsystem that existed through generations over centuries, possibly\nmillenniums, of time. This new edition of Peace Child will inspire a new\ngeneration of readers who need to hear this unforgettable story and the\nlessons it teaches us about communicating Christ in a meaningful way to\nthose around us.\"\r\n8604,9232,400,Don DeLillo,Libra ,https://images.gr-assets.com/books/1327935630l/400.jpg,3.98,10195,\"fiction, contemporary\",\"The scheme of two disgruntled CIA agents to stage an unsuccessful attempt\non the life of President Kennedy and link it to Cuba backfires when the\nerratic Lee Harvey Oswald goes too far\"\r\n8605,9233,18990,John le Carré,The Honourable Schoolboy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348762526l/18990.jpg,3.94,9346,\"fiction, thriller\",\"George Smiley, of England's Secret Service, goes onto the attack,\nmanipulating old Asian hand Jerry Westerby through the Far East and a\ntangle of money, defection, passion, loyalty and love that severely tests\nWesterby's hitherto unfaltering allegiances. By best-selling the author of\nTinker, Tailor, Soldier, Spy. Reissue.\"\r\n8606,9234,1593623,Robin Hobb,Renegade's Magic,https://images.gr-assets.com/books/1290919036l/1593623.jpg,3.46,10164,\"fantasy, fiction\",\"Nevare Burvelle, wrongfully convicted of murder, surrenders himself to the\nSpeck magic with which he has been cursed, a decision that renders him\nsubject to a violent alter ego.\"\r\n8607,9236,13105,James Redfield,The Tenth Insight ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436971752l/13105._SY475_.jpg,3.61,8795,\"spirituality, philosophy\",The Tenth Insight James Redfield\r\n8608,9237,820394,Jed Rubenfeld,The Interpretation of Murder,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428789639l/820394.jpg,3.51,9781,\"fiction, mystery\",\"In 1909, as a sadistic killer stalks Manhattan's wealthiest heiresses,\nSigmund Freud is called in by American analyst Dr. Stratham Younger to\nassist him in interviewing Nora Acton, a hysterical survivor of the killer\nwho can recall nothing about the attack. A first novel. Reader's Guide\nincluded. Reprint. 100,000 first printing.\"\r\n8609,9238,8172,\"Mark Waid, Alfred Gough, Miles Millar, Dave McCaig, Gerry Alanguilan, Leinil Francis Yu\",Superman: Birthright 1-12,https://images.gr-assets.com/books/1343584198l/8172.jpg,4.12,9253,\"comics, fiction\",\"Superman: Birthright 1-12Mark Waid, Alfred Gough, Miles Millar, Dave McCaig, Gerry Alanguilan, Leinil Francis Yu\"\r\n8610,9239,141935,\"Margret Rey, H.A. Rey, Martha Weston\",Curious George Visits the Library,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348385224l/141935.jpg,4.25,10561,\"fiction, classics\",\"When Curious George visits the library he becomes impatient waiting for the\nlibrarian to read the dinosaur book, and proceeds to gather all the books\nhe wants to read and tries to leave.\"\r\n8611,9240,45369,Julian Barnes,Arthur & George,https://images.gr-assets.com/books/1419234701l/45369.jpg,3.7,10131,\"mystery, fiction\",\"Chronicles the lives of two boys--the son of a Midlands vicar and the\ncreator of the world's most famous detective--as they pursue separate\ndestinies until meeting and forming a remarkable alliance.\"\r\n8612,9241,381787,Gerald N. Lund,\"The Work and the Glory, Vol. 3: Truth Will Prevail\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1206406250l/381787.jpg,4.3,9081,\"fiction, religion\",\"The Work and the Glory, Vol. 3: Truth Will PrevailGerald N. Lund\"\r\n8613,9242,16029994,Karina Halle,Sins & Needles,https://images.gr-assets.com/books/1347859611l/16029994.jpg,3.98,18391,\"romance, contemporary\",Sins & NeedlesKarina Halle\r\n8614,9243,61505,\"E.H. Gombrich, Caroline Mustill, Clifford Harper\",Eine kurze Weltgeschichte für junge Leser: Von der Urzeit bis zur Gegenwart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179842l/61505.jpg,4.1,8297,\"history, nonfiction\",\"Presents a brief, narrative history of the world for young readers, from\nthe Stone Age up to the end of World War II.\"\r\n8615,9244,8542839,H.P. Mallory,Fire Burn and Cauldron Bubble,https://images.gr-assets.com/books/1329352960l/8542839.jpg,3.85,10228,\"paranormal, romance\",Fire Burn and Cauldron BubbleH.P. Mallory\r\n8616,9245,836611,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 4,https://images.gr-assets.com/books/1480179107l/836611.jpg,4.39,15336,\"manga, fantasy\",\"フルーツバスケット 4Natsuki Takaya, Alethea Nibley, Athena Nibley\"\r\n8617,9247,762134,\"Naguib Mahfouz, William M. Hutchins, Olive E. Kenny\",بين القصرين,https://images.gr-assets.com/books/1327882172l/762134.jpg,4.14,6423,\"fiction, classics\",\"بين القصرينNaguib Mahfouz, William M. Hutchins, Olive E. Kenny\"\r\n8618,9248,6630751,Andrew  Peterson,First to Kill ,https://images.gr-assets.com/books/1356545953l/6630751.jpg,4.03,7849,\"thriller, fiction\",\"When a deep-cover FBI agent disappears along with a ton of Semtex\nexplosive, the government turns to Nathan McBride, former Marine sniper and\ncovert CIA operative, to recover them.\"\r\n8619,9249,109515,Frank Bettger,How I Raised Myself from Failure to Success in Selling,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348184877l/109515.jpg,4.25,9438,\"business, nonfiction\",\"A business classic endorsed by Dale Carnegie, How I Raised Myself from\nFailure to Success in Selling is for anyone whose job it is to sell.\nWhether you are selling houses or mutual funds, advertisements or ideas—or\nanything else—this book is for you. When Frank Bettger was twenty-nine he\nwas a failed insurance salesman. By the time he was forty he owned a\ncountry estate and could have retired. What are the selling secrets that\nturned Bettger’s life around from defeat to unparalleled success and fame\nas one of the highest paid salesmen in America? The answer is inside How I\nRaised Myself from Failure to Success in Selling. Bettger reveals his\npersonal experiences and explains the foolproof principles that he\ndeveloped and perfected. He shares instructive anecdotes and step-by-step\nguidelines on how to develop the style, spirit, and presence of a winning\nsalesperson. No matter what you sell, you will be more efficient and\nprofitable—and more valuable to your company—when you apply Bettger’s keen\ninsights on: • The power of enthusiasm • How to conquer fear • The key word\nfor turning a skeptical client into an enthusiastic buyer • The quickest\nway to win confidence • Seven golden rules for closing a sale\"\r\n8620,9252,24938,\"Stephen Schwartz, Gregory Maguire\",Wicked - Piano/Vocal Arrangement,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198250l/24938.jpg,4.45,10729,\"music, fantasy\",Based on the novel Wicked by Gregory Maguire.\r\n8621,9253,432283,Erma Bombeck,If Life Is a Bowl of Cherries—What Am I Doing in the Pits?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348835773l/432283.jpg,4.07,10861,\"fiction, memoir\",\"Explores domestic dilemmas ranging from husbands and honeymoons to tennis\nelbow and the national anthem\"\r\n8622,9254,68530,Bernard Cornwell,Vagabond,https://images.gr-assets.com/books/1407707722l/68530.jpg,4.09,9680,\"fiction, fantasy\",VagabondBernard Cornwell\r\n8623,9255,275247,Frances Hodgson Burnett,Little Lord Fauntleroy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386745618l/275247.jpg,3.81,12712,\"classics, fiction\",\"Cedric, a poor American boy, is summoned to England when he becomes the\nheir to the Earl of Dorincourt, his ill-tempered grandfather\"\r\n8624,9256,16762211,Cheryl McIntyre,Sometimes Never,https://images.gr-assets.com/books/1361989778l/16762211.jpg,3.94,15306,\"romance, contemporary\",\"Hope didn't have the best role model when it came to relationships. She’s\ncontent with her current no-strings-attached extracurricular activity with\nthe lead singer of her band. She’s never believed in love and commitment.\nMason starts his eighth school in five years anticipating nothing more than\nthe usual—boring classes, fighting more than making friends, and girls\nhappily willing to succumb to his easy smile. He’s never put much stock\ninto love at first sight—until he sees her. Regardless of their painful\npasts, Hope and Mason discover that sometimes never can become forever.\"\r\n8625,9257,11350430,George R.R. Martin,The Mystery Knight,https://images.gr-assets.com/books/1397654538l/11350430.jpg,4.2,11058,\"fantasy, fiction\",\"A full-color graphic rendering of the novella set a century before the\nevents of the Game of Thrones series continues the adventures of noble but\nimpoverished hedge knight Duncan and his bold squire and Daenerys's great-\ngrandfather, the future King Aegon V.\"\r\n8626,9258,12710106,Olivia Cunning,Double Time,https://images.gr-assets.com/books/1352579615l/12710106.jpg,4.14,20484,\"romance, contemporary\",Double TimeOlivia Cunning\r\n8627,9260,13237327,Rhonda Byrne,The Magic (The Secret #3),https://images.gr-assets.com/books/1358271749l/13237327.jpg,4.14,8066,\"spirituality, psychology\",\"ONE WORD CHANGES EVERYTHING For more than twenty centuries, words within a\nsacred text have mystified, confused, and been misunderstood by almost all\nwho read them. Only a very few people through history have realized that\nthe words are a riddle, and that once you solve the riddle—once you uncover\nthe mystery—a new world will appear before your eyes. In The Magic, Rhonda\nByrne reveals this life-changing knowledge to the world. Then, on an\nincredible 28-day journey, she teaches you how to apply this knowledge in\nyour everyday life. No matter who you are, no matter where you are, no\nmatter what your current circumstances, The Magic is going to change your\nentire life!\"\r\n8628,9262,44399,\"Bill Hybels, Lavonne Neff\",Too Busy Not to Pray: Slowing Down to Be With God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388242367l/44399.jpg,4.14,8422,\"christian, religion\",\"Guide to making prayer a part of everyday life and finding time to pray in\na busy schedule.\"\r\n8629,9263,3015764,Philip Roth,Indignation,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348256144l/3015764.jpg,3.69,8585,\"fiction, contemporary\",\"In 1951 America, during the second year of the Korean War, Marcus Messner,\na studious young man from Newark, New Jersey, escapes his butcher father's\nfears about the potential dangers facing his beloved son, by attending\ncollege at Ohio's pastoral, conservative Winesburg College, where he\nconfronts the confusing customs and constrictions of a different world.\"\r\n8630,9264,8526694,Teju Cole,Open City,https://images.gr-assets.com/books/1327935192l/8526694.jpg,3.5,9132,\"fiction, contemporary\",\"Feeling adrift after ending a relationship, Julius, a young Nigerian doctor\nliving in New York, takes long walks through the city while listening to\nthe stories of fellow immigrants until a shattering truth is revealed. A\nfirst novel. 25,000 first printing.\"\r\n8631,9265,822989,Dave Pelzer,\"My Story: \"\"A Child Called It\"\", \"\"The Lost Boy\"\", \"\"A Man Named Dave\"\"\",https://images.gr-assets.com/books/1408928892l/822989.jpg,4.18,8201,\"biography, memoir\",\"A CHILD CALLED 'IT': Dave Pelzer's story is of a child beaten and starved\nby his emotionally unstable, alcoholic mother: a mother who played\ntortuous, unpredictable games that left one of her three sons nearly dead.\nNo longer considered a son, or a boy, but an 'it', Dave had to learn how to\nplay these games in order to survive. His bed was an old army cot in the\nbasement and when he was allowed food it was scraps from the dogs' bowl.\nThroughout, Dave kept alive the dream of finding a family who would love\nand care for him. This is an inspirational look at the horrors of child\nabuse and the steadfast determination of one child to survive despite the\nodds. THE LOST BOY: The harrowing but ultimately uplifting true story of\nDave's journey through the foster-care system in search of a family who\nwill love him. A MAN NAMED DAVE: The gripping conclusion to this\ninspirational trilogy. With extraordinary generosity of spirit, Dave takes\nus on a journey into his past. At last he confronts his father and\nultimately his mother. Finally, Dave finds the courage to break the chains\nof the past and learn to love, trust and live for the future.\"\r\n8632,9266,8113940,Melissa de la Cruz,Witches of East End,https://images.gr-assets.com/books/1294433454l/8113940.jpg,3.51,13806,\"fantasy, paranormal\",Witches of East EndMelissa de la Cruz\r\n8633,9267,443540,Anita Shreve,All He Ever Wanted,https://images.gr-assets.com/books/1358594609l/443540.jpg,3.18,11514,\"fiction, romance\",\"\"\"A marriage is always two intersecting stories.\"\" This realization comes\nperhaps too late to the husband of Etna Bliss-a man whose obsession with\nhis young wife begins at the moment of their first meeting, as he helps\nEtna and her companions escape from a fire in a hotel restaurant, and\nculminates in a marriage doomed by secrets and betrayal. Written with the\nintelligence and grace that are the hallmarks of Anita Shreve's bestselling\nnovels, this gripping tale of desire, jealousy, and loss is peopled by\nunforgettable characters as real as the emotions that bring them together.\"\r\n8634,9269,18080889,Vi Keeland,Worth the Fight,https://images.gr-assets.com/books/1376730892l/18080889.jpg,4.06,20451,\"romance, sports\",\"From New York Times & USA Today Bestseller, Vi Keeland, comes a sexy new\nstandalone novel. It didn’t matter that the ref called it a clean hit. Nico\nHunter would never be the same. Elle has a good life. A job she loves, a\ngreat apartment, and the guy she’s been dating for more than two years is a\ncatch and a half. But it’s boring...and she strives to keep it that way.\nToo many emotions are dangerous. Her own past is living proof of what can\nhappen when you lose control. Then Nico walks into Elle’s office and\neverything changes...for both of them. But what can the tattooed, hard-\nbodied MMA fighter and the beautiful and always steady attorney have in\ncommon? A lot more than they bargained for. ***Author's note*** THIS IS A\nSTAND-ALONE NOVEL. Due to strong language and sexual content, this book is\nnot intended for readers under the age of 18.\"\r\n8635,9270,8089,Robin McKinley,Rose Daughter,https://images.gr-assets.com/books/1398552029l/8089.jpg,3.77,15696,\"fantasy, romance\",\"The winner of the Newbery Award for The Hero and the Crown returns to the\nfairy tale of the Beauty and the Beast to create a haunting portrayal of\nthe transformative power of love. Reprint. PW.\"\r\n8636,9271,6433344,Janice  Thompson,\"Fools Rush In (Weddings by Bella, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441264484l/6433344._SY475_.jpg,3.59,8692,\"romance, christian\",\"Fools Rush In (Weddings by Bella, #1)Janice  Thompson\"\r\n8637,9272,712807,Sharon Creech,Ruby Holler,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347257250l/712807.jpg,4.01,12438,\"fiction, contemporary\",\"\"\"You are now entering Ruby Holler, the one and only Ruby Holler! Your lives\nare never going to be the same—\"\" \"\"Trouble twins\"\" Dallas and Florida are\norphans who have given up believing there is such a thing as a loving home.\nTiller and Sairy are an eccentric older couple who live in the beautiful,\nmysterious Ruby Holler, but they’re restless for one more big adventure.\nWhen they invite the twins to join them on their journeys, they first must\nall stay together in the Holler, and the magic of the place takes over. Two\npairs of lives grow closer and are changed forever.\"\r\n8638,9274,17853024,Bernard Cornwell,The Pagan Lord,https://images.gr-assets.com/books/1370529803l/17853024.jpg,4.34,8218,\"fiction, history\",\"Bernard Cornwell—\"\"the most prolific and successful historical novelist in\nthe world today\"\" (Wall Street Journal)—returns to his Saxon Tales saga with\nthe epic story of divided loyalties, bloody battles, and the struggle to\nunite Britain. At the onset of the tenth century, England is in turmoil.\nAlfred the Great is dead and his son Edward reigns as king. Wessex survives\nbut peace cannot hold: the Danes in the north, led by Viking Cnut\nLongsword, stand ready to invade and will never rest until the emerald\ncrown is theirs. Uhtred, once Alfred's great warrior but now out of favor\nwith the new king, must lead a band of outcasts north to recapture his old\nfamily home, the impregnable Northumbrian fortress Bebbanburg. Loyalties\nwill be divided and men will fall as each Saxon kingdom is drawn into the\nbloodiest battle yet with the Danes—a war that will decide the fate of\nevery king, and the entire English nation. With The Pagan Lord, New York\nTimes bestselling author Bernard Cornwell, \"\"the reigning king of historical\nfiction\"\" (USA Today), continues his magnificent epic of the making of\nEngland during the Middle Ages, vividly bringing to life the uneasy\nalliances, violent combat, and deadly intrigue that gave birth to the\nBritish nation.\"\r\n8639,9275,161415,\"Zig Ziglar, Al Mayton\",See You at the Top: 25th Anniversary Edition,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348628729l/161415.jpg,4.25,8888,\"business, nonfiction\",\"The 25th anniversary edition of the classic motivational and self-\nimprovement book that has sold more than 1.6 million copies in hardcover.\nFor more than three decades, Zig Ziglar, one of the great motivators of our\nage, has traveled the world, encouraging, uplifting, and inspiring\naudiences. His groundbreaking best-seller, See You at the Top, remains an\nauthentic American classic. This revised and updated edition stresses the\nimportance of honesty, loyalty, faith, integrity, and strong personal\ncharacter.\"\r\n8640,9276,25666046,Ian McGuire,The North Water,https://images.gr-assets.com/books/1456351800l/25666046.jpg,4.01,8732,\"fiction, thriller\",\"A 19th-century whaling ship sets sail for the Arctic with a killer aboard\nin this dark, sharp and highly original tale that grips like a thriller.\nBehold the man: stinking, drunk, brutal and bloodthirsty, Henry Drax is a\nharpooner on the Volunteer, a Yorkshire whaling ship bound for the hunting\nwaters of the Arctic Circle. Also aboard is Patrick Sumner, an ex-army\nsurgeon with a shattered reputation, no money and no better option than to\nembark as ship's medic on this ill-fated voyage. In India during the Siege\nof Delhi, Sumner thought he had experienced the depths to which a man can\nstoop and imagined he'd find respite on the Volunteer, but now, trapped in\nthe wooden belly of the ship with Drax, he encounters pure evil and is\nforced to act. As the true purposes of the expedition become clear, the\nconfrontation between the two men plays out in the freezing darkness of an\nArctic winter\"\r\n8641,9277,64732,Greg Bear,The Forge of God,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388465357l/64732.jpg,3.86,10085,\"fiction, science\",\"Earth is threatened by the invasion of an interstellar research probe gone\nmad, in an imaginative study of the complex interactions, and their\nramifications, between human passions and the inflexible equations of\nscience. Reprint. 15,000 first printing.\"\r\n8642,9279,16130723,Brad Thor,Hidden Order,https://images.gr-assets.com/books/1362517340l/16130723.jpg,4.1,7857,\"thriller, fiction\",Hidden OrderBrad Thor\r\n8643,9281,1524,\"Aeschylus, Judith Affleck, Philip de May, Patricia E. Easterling, John     Harrison\",Ἀγαμέμνων,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347406392l/1524.jpg,3.82,11515,\"classics, fiction\",\"ἈγαμέμνωνAeschylus, Judith Affleck, Philip de May, Patricia E. Easterling, John     Harrison\"\r\n8644,9282,16280689,Kevin Hearne,Staked,https://images.gr-assets.com/books/1434745650l/16280689.jpg,4.23,9082,\"fantasy, fiction\",\"Atticus O'Sullivan is a Druid who has walked the earth for over 2,000 years\n--and had many adventures along the way. Besieged gives us a never-before-\nseen look into the life and back story of this popular series hero in a\ncollection of new short stories.\"\r\n8645,9283,31819,\"David Baggett, Shawn E. Klein\",Harry Potter and Philosophy: If Aristotle Ran Hogwarts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749170l/31819.jpg,4.45,9264,\"philosophy, nonfiction\",\"Urging readers of the Harry Potter series to dig deeper than wizards,\nboggarts, and dementors, the authors of this unique guide collect the\nmusings of seventeen philosophers on the series, who cover a wide range of\nPotter-related philosophical issues, including the difference between good\nand evil, the ethics of sorcery, and Aristotle's own school for wizards.\nOriginal.\"\r\n8646,9284,4800764,Maya Banks,\"Sweet Persuasion (Sweet Series, #2)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390878386l/4800764.jpg,4.09,16437,\"romance, contemporary\",\"Sweet Persuasion (Sweet Series, #2)Maya Banks\"\r\n8647,9285,16136599,\"P.C. Cast, Kristin Cast\",Redeemed,https://images.gr-assets.com/books/1403302625l/16136599.jpg,3.95,11604,\"fantasy, paranormal\",\"The final electrifying installment in the #1 New York Times bestselling\nvampyre series Zoey Redbird is in trouble. Having released the Seer Stone\nto Aphrodite, and surrendered herself to the Tulsa Police, she has isolated\nherself from her friends and mentors, determined to face the punishment she\ndeserves—even if that means her body will reject the change, and begin to\ndie. Only the love of those closest to her can save her from the Darkness\nin her spirit; but a terrible evil has emerged from the shadows, more\npowerful than ever... Neferet has finally made herself known to mortals.\nCrowning herself a Dark Goddess, she is evil unleashed and is enslaving the\ncitizens of Tulsa. The vampyres of the House of Night have banded with the\npolice, and are gathering every last resource they have, but they know that\nno single vampyre is strong enough to vanquish her—unless that vampyre has\nthe power to summon the elements as well as the ability to wield Old\nMagick. Only Zoey is heir to such power...but because of the consequences\nof using Old Magick, she is unable to help. In the final novel in the House\nof Night series, an epic battle of Light versus Darkness will decide who is\nredeemed...and who is forever lost. The House of Night series by P.C. Cast\nand Kristin Cast is an international phenomenon, reaching #1 on U.S.,\nGerman, and UK bestseller lists, and remaining a fixture on The New York\nTimes Children's Series bestseller list for nearly 160 weeks and counting,\nwith more than 12 million copies in print and rights sold in thirty–eight\ncountries to date.\"\r\n8648,9286,21086818,Henry Marsh,\"Do No Harm: Stories of Life, Death and Brain Surgery\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424398117l/21086818.jpg,4.22,7978,\"science, nonfiction\",\"Named a Notable Book of the Year by The New York Times Book Review and The\nWashington Post What is it like to be a brain surgeon? How does it feel to\nhold someone’s life in your hands, to cut into the stuff that creates\nthought, feeling and reason? How do you live with the consequences of\nperforming a potentially lifesaving operation when it all goes wrong? With\nastonishing compassion and candor, leading neurosurgeon Henry Marsh reveals\nthe fierce joy of operating, the profoundly moving triumphs, the harrowing\ndisasters, the haunting regrets and the moments of black humor that\ncharacterize a brain surgeon’s life. Do No Harm provides unforgettable\ninsight into the countless human dramas that take place in a busy modern\nhospital. Above all, it is a lesson in the need for hope when faced with\nlife’s most difficult decisions.\"\r\n8649,9287,33356,Max Barry,Jennifer Government,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919578l/33356.jpg,3.65,9722,\"fiction, thriller\",\"In a corporate-governed future world where people take the last names of\nthe companies they work for, Hack Nike tries to get out of a contract that\nrequires him to shoot teenagers and finds himself pursued by a government\nagent.\"\r\n8650,9288,126185,David Baldacci,The Christmas Train,https://images.gr-assets.com/books/1354941481l/126185.jpg,3.56,11424,\"fiction, mystery\",The Christmas TrainDavid Baldacci\r\n8651,9289,313267,Christine Feehan,\"Dark Destiny (Carpathians, #13)\",https://images.gr-assets.com/books/1327896698l/313267.jpg,4.29,14613,\"paranormal, romance\",\"Dark Destiny (Carpathians, #13)Christine Feehan\"\r\n8652,9290,52367,\"Frank Miller, Lynn Varley\",Batman: The Dark Knight Strikes Again,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506374653l/52367._SY475_.jpg,3.21,11065,\"comics, fiction\",\"Batman reemerges from his underworld civilization to battle the evils of\nGotham, including power-hungry Lex Luther and Brainiac, and turns against\nother superheroes as he drifts closer and closer towards insanity.\"\r\n8653,9291,145397,Katharine Hepburn,Me: Stories of My Life,https://images.gr-assets.com/books/1403186270l/145397.jpg,3.87,9312,\"biography, memoir\",\"With the publication of The Making of the African Queen in 1987, Katharine\nHepburn proved that she can number writing among her many talents, and that\nher humor and intelligence, and the inimitable cadences of her voice\ntranslate vividly to the printed page. Now, with characteristic gusto and\ncandor, she delivers her eagerly awaited memoir. 75 photographs.\"\r\n8654,9292,95708,Neil A. Fiore,The Now Habit: A Strategic Program for Overcoming Procrastination and Enjoying Guilt-Free Play,https://images.gr-assets.com/books/1421795425l/95708.jpg,3.88,9396,\"psychology, nonfiction\",\"This revised, redesigned edition offers strategies to help the reader\nunderstand & deal with the complex role played by technology in promoting\nprocastination in the modern world.\"\r\n8655,9293,23214408,Anna Todd,After Ever Happy,https://images.gr-assets.com/books/1417454456l/23214408.jpg,4.08,12671,\"romance, contemporary\",\"The romance between Tessa and Harry continues as forces try to tear them\napart. By the author of After Ever Happy and After We Fell. Original.\"\r\n8656,9294,18232495,Joel C. Rosenberg,The Auschwitz Escape,https://images.gr-assets.com/books/1415118326l/18232495.jpg,4.32,7844,\"fiction, history\",\"A terrible darkness has fallen upon Jacob Weisz’s beloved Germany. The Nazi\nregime, under the leadership of Adolf Hitler, has surged to power and now\nhold Germany by the throat. All non-Aryans—especially Jews like Jacob and\nhis family—are treated like dogs. When tragedy strikes during one terrible\nnight of violence, Jacob flees and joins rebel forces working to undermine\nthe regime. But after a raid goes horribly wrong, Jacob finds himself in a\nliving nightmare—trapped in a crowded, stinking car on the train to the\nAuschwitz death camp. As World War II rages and Hitler begins implementing\nhis “final solution” to systematically and ruthlessly exterminate the\nJewish people, Jacob must rely on his wits and a God he’s not sure he\nbelieves in to somehow escape from Auschwitz and alert the world to the\nNazi’s atrocities before Fascism overtakes all of Europe. The fate of\nmillions hangs in the balance.\"\r\n8657,9295,10541,Bill Bryson,Made in America: An Informal History of the English Language in the United States,https://images.gr-assets.com/books/1388209927l/10541.jpg,3.89,9638,\"history, nonfiction\",\"Bill Bryson, who gave glorious voice to The Mother Tongue, now celebrates\nher magnificent offspring in the book that reveals once and for all how a\ndusty western hamlet with neither woods nor holly came to be known as\nHollywood...and exactly why Mr. Yankee Doodle call his befeathered cap\n\"\"Macaroni.\"\"\"\r\n8658,9296,4887,\"Alice  Miller, Ruth Ward\",Das Drama des begabten Kindes und die Suche nach dem wahren Selbst: eine Um- und Fortschreibung,https://images.gr-assets.com/books/1339395245l/4887.jpg,4.09,9563,\"psychology, nonfiction\",\"Why are many of the most successful people plagued by feelings of emptiness\nand alienation? This wise and profound book has provided thousands of\nreaders with an answer—and has helped them to apply it to their own\nlives.Far too many of us had to learn as children to hide our own feelings,\nneeds, and memories skillfully in order to meet our parents’ expectations\nand win their ”love.” Alice Miller writes, ”When I used the word ’gifted’\nin the title, I had in mind neither children who receive high grades in\nschool nor children talented in a special way. I simply meant all of us who\nhave survived an abusive childhood thanks to an ability to adapt even to\nunspeakable cruelty by becoming numb… Without this ’gift’ offered us by\nnature, we would not have survived.” But merely surviving is not enough.\nThe Drama of the Gifted Child helps us to reclaim our life by discovering\nour own crucial needs and our own truth.\"\r\n8659,9297,827497,Dale Wasserman,One Flew Over the Cuckoo's Nest (script),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347988688l/827497.jpg,4.28,11142,\"classics, fiction\",One Flew Over the Cuckoo's Nest (script)Dale Wasserman\r\n8660,9298,129327,H.P. Lovecraft,The Case of Charles Dexter Ward,https://images.gr-assets.com/books/1385837737l/129327.jpg,4.2,10153,\"horror, fiction\",\"The only full-length work of fiction by HP Lovecraft, the master of 20th\ncentury horror, which inspired Roger Cormans The Haunted Palace and Lucio\nFulcis The Beyond. This new edition also includes Lovecrafts rare History\nof the Necronomicon, and a challenging new introduction by D. M. Mitchell,\nan acknowledged authority on Lovecraft. A nameless terror surges through\ncenturies to engulf the soul of Charles Dexter Ward, a brilliant New\nEngland antiquarian. Evil spirits, malefic gods whose memories live on in\nwhispered legends and fear-stricken superstitions, still lurk in vile\ncatacombs beneath the surface of a blighted land. Ward is driven to unleash\nthese loathsome horrors upon a defenseless world, possessed by the demonic\nshade of his ancestor Joseph Curwen, a warlock steeped in the blackest arts\nof magic. Now Ward, too, must master these obscene rituals, and pay the\nprice in blood. Human blood.\"\r\n8661,9299,645180,Austin Grossman,Soon I Will Be Invincible,https://images.gr-assets.com/books/1320554514l/645180.jpg,3.68,9878,\"fiction, fantasy\",\"When Doctor Impossible, an evil genius, mad scientist, time-traveler, and\nambitious wannabe world dominator, escapes from prison and launches a new\nplot to seize control of the world, Fatale, a woman built by the NSA to be\nthe next generation of weaponry, joins a group of misfit superheroes in\ntheir quest to destroy Doctor Impossible. A first novel. Reprint. 35,000\nfirst printing.\"\r\n8662,9300,33144,Janet Fitch,Paint It Black,https://images.gr-assets.com/books/1288972477l/33144.jpg,3.47,9092,\"fiction, contemporary\",\"\"\"A dark, crooked beauty that fulfills all the promise of White Oleander and\nconfirms that Janet Fitch is an artist of the very highest order.\"\"--Los\nAngeles Times Book Review Josie Tyrell, art model, runaway, and denizen of\nLA's rock scene finds a chance at real love with Michael Faraday, a Harvard\ndropout and son of a renowned pianist. But when she receives a call from\nthe coroner, asking her to identify her lover's body, her bright dreams all\nturn to black. As Josie struggles to understand Michael's death and to hold\nonto the world they shared, she is both attracted to and repelled by his\npianist mother, Meredith, who blames Josie for her son's torment. Soon the\ntwo women are drawn into a twisted relationship that reflects equal parts\ndistrust and blind need. With the luxurious prose and fever pitch intensity\nthat are her hallmarks, Janet Fitch weaves a spellbinding tale of love,\nbetrayal, and the possibility of transcendence. \"\"Lushly written,\ndramatically plotted. . . Fitch's Los Angeles is so real it breathes.\"\"\n-Atlantic Monthly \"\"There is nothing less than a stellar sentence in this\nnovel. Fitch's emotional honesty recalls the work of Joyce Carol Oates, her\nstrychnine sentences the prose of Paula Fox.\"\" -Cleveland Plain Dealer \"\"A\npage-turning psychodrama. . . . Fitch's prose penetrates the inner lives of\n[her characters] with immediacy and bite.\"\" -Publishers Weekly (starred\nreview) \"\"Fitch wonderfully captures the abrasive appeal of punk music, the\nbohemian, sometimes squalid lifestyle, the performers, the drugs, the\nalienation. This is crackling fresh stuff you don't read every day.\"\" -USA\nToday \"\"In dysfunctional family narratives, Fitch is to fiction what Eugene\nO'Neill is to drama.\"\" -Chicago Sun-Times \"\"Riveting. . . . An uncommonly\naccomplished page-turner.\"\" -Elle\"\r\n8663,9301,11429,Karen Kingsbury,Ever After,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404966508l/11429.jpg,4.31,9685,\"christian, fiction\",Ever AfterKaren Kingsbury\r\n8664,9302,5068,Graham Swift,Last Orders,https://images.gr-assets.com/books/1457623323l/5068.jpg,3.68,9349,\"fiction, contemporary\",\"Long-time friends examine their lives while on a trip from London to the\nseaside to scatter the ashes of their late companion\"\r\n8665,9303,51715,\"Roland Barthes, Annette Lavers\",Mythologies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440640494l/51715._SY475_.jpg,4.11,9325,\"philosophy, nonfiction\",\"\"\"[Mythologies] illustrates the beautiful generosity of Barthes's\nprogressive interest in the meaning (his word is signification) of\npractically everything around him, not only the books and paintings of high\nart, but also the slogans, trivia, toys, food, and popular rituals\n(cruises, striptease, eating, wrestling matches) of contemporary life . . .\nFor Barthes, words and objects have in common the organized capacity to say\nsomething; at the same time, since they are signs, words and objects have\nthe bad faith always to appear natural to their consumer, as if what they\nsay is eternal, true, necessary, instead of arbitrary, made, contingent.\nMythologies finds Barthes revealing the fashioned systems of ideas that\nmake it possible, for example, for 'Einstein's brain' to stand for, be the\nmyth of, 'a genius so lacking in magic that one speaks about his thought as\na functional labor analogous to the mechanical making of sausages.' Each of\nthe little essays in this book wrenches a definition out of a common but\nconstructed object, making the object speak its hidden, but ever-so-\npresent, reservoir of manufactured sense.\"\"--Edward W. Said\"\r\n8666,9304,13270,\"Aristotle, Malcolm Heath\",Περὶ ποιητικῆς,https://images.gr-assets.com/books/1348161995l/13270.jpg,3.81,10347,\"philosophy, classics\",\"Provides a translation of Aristotle's classic study of the nature of\npoetry.\"\r\n8667,9305,12737118,Melanie Gideon,Wife 22,https://images.gr-assets.com/books/1333577694l/12737118.jpg,3.51,10793,\"fiction, romance\",\"Baring her soul in an anonymous survey for a marital happiness study, Alice\ncatalogues her stale marriage, unsatisfying job and unfavorable prospects\nand begins to question virtually every aspect of her life. A first adult\nnovel by the best-selling author of The Slippery Year. 75,000 first\nprinting.\"\r\n8668,9307,394841,Mike Lupica,Travel Team,https://images.gr-assets.com/books/1309210198l/394841.jpg,4.06,8356,\"sports, fiction\",\"After he is cut from his travel basketball team, the very same team that\nhis father once led to national prominence, twelve-year-old Danny Walker\nforms his own team of cast-offs that might have a shot at victory.\"\r\n8669,9308,11306,Susan Cooper,\"The Dark Is Rising Sequence (The Dark Is Rising, #1-5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921699l/11306.jpg,4.29,11988,\"fantasy, fiction\",\"The Dark Is Rising Sequence (The Dark Is Rising, #1-5)Susan Cooper\"\r\n8670,9310,125959,Ted Dekker,Saint,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439004991l/125959._SY475_.jpg,4.04,10594,\"fiction, christian\",SaintTed Dekker\r\n8671,9311,60080,\"Immanuel Kant, Mary J. Gregor, Christine M. Korsgaard\",Grundlegung zur Metaphysik der Sitten,https://images.gr-assets.com/books/1398209445l/60080.jpg,3.78,9104,\"nonfiction, philosophy\",\"Grundlegung zur Metaphysik der SittenImmanuel Kant, Mary J. Gregor, Christine M. Korsgaard\"\r\n8672,9312,25614598,\"Douglas Preston, Lincoln Child\",Crimson Shore,https://images.gr-assets.com/books/1435611577l/25614598.jpg,4,7174,\"mystery, thriller\",\"Crimson ShoreDouglas Preston, Lincoln Child\"\r\n8673,9313,541024,Theodore Sturgeon,More Than Human,https://images.gr-assets.com/books/1403192694l/541024.jpg,3.98,10733,\"fiction, fantasy\",\"A company of unusual, nearly monstrous people, each of whom possesses a\nparticular extraordinary talent or faculty, acts in concert as a single\nsuperhuman, realizing a power that cannot corrupt. Winner of the\nInternational Fantasy Award. Reprint. 12,500 first printing.\"\r\n8674,9316,426030,Dee Henderson,The Healer,https://images.gr-assets.com/books/1406510508l/426030.jpg,4.4,11245,\"christian, fiction\",\"Trauma psychologist Rachel O'Malley must work against her fatigue and grief\nas she helps refugees after an Illinois flood and copes with her sister\nJennifer's cancer while building a relationship with Captain Cole Parker.\"\r\n8675,9317,4633,Ernest Hemingway,Islands in the Stream,https://images.gr-assets.com/books/1400891142l/4633.jpg,3.86,9608,\"fiction, classics\",\"A later, posthumously published classic following the adventures of a\npainter in the midst of World War II. First published in 1970, nine years\nafter Hemingway's death, this is the story of an artist and adventurer—a\nman much like Hemingway himself. Beginning in the 1930s, Islands in the\nStream follows the fortunes of Thomas Hudson, from his experiences as a\npainter on the Gulf Stream island of Bimini through his antisubmarine\nactivities off the coast of Cuba during World War II. Hemingway is at his\nmature best in this beguiling tale.\"\r\n8676,9319,8163161,Bisco Hatori,桜蘭高校ホスト部 15,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348574192l/8163161.jpg,4.54,10743,\"manga, romance\",桜蘭高校ホスト部 15Bisco Hatori\r\n8677,9320,604635,\"Erlend Loe, Tor Ketil Solberg\",Naiv.Super.,https://images.gr-assets.com/books/1328731029l/604635.jpg,3.89,8642,\"fiction, contemporary\",\"Troubled by an inability to find any meaning in his life, the 25-year-old\nnarrator of Naive. Super quits university in an attempt to discover a\nraison d'etre. He recounts a series of anecdotes, which culminate in a trip\nto stay with his brother in New York. He writes lists. He becomes obsessed\nby time and whether it actually matters. He befriends a small boy who lives\nnext door. He yearns to get to the bottom of life and how best to live it.\"\r\n8678,9321,8110748,\"Meca Tanaka, 田中メカ\",キスよりも早く1,https://images.gr-assets.com/books/1272593631l/8110748.jpg,4.23,11232,\"romance, manga\",\"キスよりも早く1Meca Tanaka, 田中メカ\"\r\n8679,9322,6261270,Andy Andrews,\"The Noticer: Sometimes, all a person needs is a little perspective.\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1572401261l/6261270._SY475_.jpg,4.17,8335,\"fiction, philosophy\",\"Explains the perspective of looking at hardships and situations from\ndifferent, positive viewpoints, using the fictional characters of an\nAlabama town and a mysterious drifter to present the perspective.\"\r\n8680,9323,11324,Iris Murdoch,Under The Net,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388423609l/11324.jpg,3.76,9506,\"fiction, classics\",\"Jake, a hack writer and broke, seeks out an old girlfriend, and assumes an\nacquaintance with Hugo \"\"a philosopher\"\". His meetings with Hugo involve Jake\nand his companion Finn in a series of adventures.\"\r\n8681,9324,12039943,John Lanchester,Capital,https://images.gr-assets.com/books/1336769492l/12039943.jpg,3.68,4961,\"fiction, contemporary\",CapitalJohn Lanchester\r\n8682,9325,11551045,\"P.C. Cast, Kristin Cast\",Lenobia's Vow,https://images.gr-assets.com/books/1317849415l/11551045.jpg,4.16,12649,\"fantasy, paranormal\",\"When young Lenobia is Marked as a fledgling vampyre, her world turns upside\ndown and she is drawn to the musical streets of New Orleans where she\nlearns of the city's dark underbelly, ruled by powerful black magic.\"\r\n8683,9327,2358870,Eoin Colfer,\"Artemis Fowl Boxed Set (Artemis Fowl, #1-5)\",https://images.gr-assets.com/books/1279206196l/2358870.jpg,4.29,10692,\"fantasy, fiction\",\"When twelve-year-old evil genius Artemis Fowl tries to restore his family\nfortune by capturing a fairy and demanding a ransom in gold, the fairies\nfight back with magic, technology, and a particularly nasty troll.\"\r\n8684,9329,12782865,Peter  May,The Lewis Man,https://images.gr-assets.com/books/1328645011l/12782865.jpg,4.2,7870,\"mystery, crime\",\"THE SPELL-BINDING SECOND NOVEL IN PETER MAY'S INTERNATIONALLY BESTSELLING\nLEWIS TRILOGY' \"\"HAUNTING.\"\" --PUBLISHERS WEEKLY (STARRED REVIEW) \"\"STUNNING.\"\"\n--LIBRARY JOURNAL (STARRED REVIEW) \"\"MAY IS SUPERB.\"\" --THE TORONTO STAR Fin\nMacleod has returned to the Isle of Lewis, the storm-tossed, wind-scoured\nouter Hebridean island where he was born and raised. Having left behind his\nadult life in Edinburgh--including his wife and his career in the police\nforce--the former Detective Inspector is intent on repairing past\nrelationships and restoring his parents' derelict cottage. His plans are\ninterrupted when an unidentified corpse is recovered from a Lewis peat bog.\nThe only clue to its identity is a DNA match to a local farmer, the now-\nsenile Tormod Macdonald--the father of Fin's childhood sweetheart, Marsaili\n--a man who has claimed throughout his life to be an only child,\npractically an orphan. Reluctantly drawn into the investigation, Fin\nuncovers deep family secrets even as he draws closer to the killer who\nwishes to keep them hidden.\"\r\n8685,9330,62233,Terry Brooks,The Elves of Cintra ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406940629l/62233.jpg,4.09,10663,\"fantasy, fiction\",\"The \"\"New York Times\"\"-bestselling sequel to \"\"Armageddon's Children\"\" in the\nthrilling Genesis of Shannara trilogy reveals the origins of the Shannara\nworld. ORiveting . . . a thrilling adventure.O--\"\"Booklist.\"\"\"\r\n8686,9331,28248,Trudi Canavan,Priestess of the White,https://images.gr-assets.com/books/1410130842l/28248.jpg,3.84,10552,\"fantasy, fiction\",\"In a land on the brink of peace—watched jealously by a ruthless cult from\nacross the sea and beset by hidden enemies—five extraordinary humans must\nserve as sword and shield of the Gods. Auraya is one. Her heroism saved a\nvillage from destruction; now Auraya has been named Priestess of the White.\nThe limits of her unique talents must be tested in order to prove her\nworthy of the honor and grave responsibility awarded to her. But a perilous\nroad lies ahead, fraught with pitfalls that will challenge the newest\nservant of the gods. An enduring friendship with a Dreamweaver—a member of\nan ancient outcast sect of sorcerer-healers—could destroy Auraya's future.\nAnd her destiny has set her in conflict with a powerful and mysterious,\nblack-clad sorcerer with but a single purpose: the total annihilation of\nthe White. And he is not alone . . .\"\r\n8687,9333,763594,Robert Ludlum,The Gemini Contenders,https://images.gr-assets.com/books/1320401784l/763594.jpg,3.87,10428,\"fiction, thriller\",\"Andrew and Adrian Fontine, antagonistic twin sons of Vittorio Fontine-\nCristi, search separately for the small Greek monastery vault and its\npriceless ancient documents, hidden high in the Italian Alps\"\r\n8688,9334,330944,Conn Iggulden,\"The Field of Swords (Emperor, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388213205l/330944.jpg,4.26,9293,\"fiction, history\",\"The Field of Swords (Emperor, #3)Conn Iggulden\"\r\n8689,9336,85425,Linda Fairstein,Final Jeopardy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388337674l/85425.jpg,3.9,11250,\"mystery, fiction\",\"This critically acclaimed, explosive thriller is a book only prosecutor\nLinda Fairstein could write. Patricia Cornwall knows the morgue; John\nGrisham knows the courtroom; but no one knows the inner workings of the\nD.A.'s office like Linda Fairstein, renowned for two decades as head of\nManhattan Sex Crimes Unit. Now that world comes vividly to life in a\nbrilliant debut novel of shocking realism, powerful insight, and searing\nsuspense. Alexandra Cooper, Manhattan's top sex crimes prosecutor, awakens\none morning to shoking news: a tabloid headline announcing her own brutal\nmurder. But the actual victim was Isabella Lascar, the Hollywood film star\nwho sought refuge at Alex's Martha's Vineyard retreat. Was Isabella\ntargeted by a stalker or -- mistaken for Alex -- was she in the wrong place\nat the wrong time? In an investigation that twists from the back alleys of\nlower Manhattan to the chic salons of the Upper East Side. Alex knows\nshe'sin final jeopardy...and time is running out. She has to get into the\nkiller's head before the killer gets to her.\"\r\n8690,9337,55229,Jay Winik,April 1865: The Month That Saved America (P.S.),https://images.gr-assets.com/books/1407706523l/55229.jpg,4.15,8850,\"history, nonfiction\",\"One month in 1865 witnessed the frenzied fall of Richmond, a daring last-\nditch Southern plan for guerrilla warfare, Lee's harrowing retreat, and\nthen, Appomattox. It saw Lincoln's assassination just five days later and a\nnear-successful plot to decapitate the Union government, followed by chaos\nand coup fears in the North, collapsed negotiations and continued bloodshed\nin the South, and finally, the start of national reconciliation. In the\nend, April 1865 emerged as not just the tale of the war's denouement, but\nthe story of the making of our nation. Jay Winik offers a brilliant new\nlook at the Civil War's final days that will forever change the way we see\nthe war's end and the nation's new beginning. Uniquely set within the\nlarger sweep of history and filled with rich profiles of outsize figures,\nfresh iconoclastic scholarship, and a gripping narrative, this is a\nmasterful account of the thirty most pivotal days in the life of the United\nStates.\"\r\n8691,9338,7159016,Jessica Verday,The Haunted,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388458635l/7159016.jpg,4.15,12890,\"paranormal, romance\",The HauntedJessica Verday\r\n8692,9340,25893582,Julie Buxbaum,Tell Me Three Things,https://images.gr-assets.com/books/1448596179l/25893582.jpg,4.1,15565,\"contemporary, romance\",Includes an excerpt from What to say next.\r\n8693,9341,561403,Cecily von Ziegesar,\"The It Girl (It Girl, Book 1)\",https://images.gr-assets.com/books/1344263385l/561403.jpg,3.66,11929,\"romance, contemporary\",\"Having left her elite Manhattan private school to attend an equally\nexclusive New York State boarding school, sophomore Jenny Humphrey sets out\nto become the most alluring girl on campus.\"\r\n8694,9342,263149,Lynsay Sands,Single White Vampire,https://images.gr-assets.com/books/1354343077l/263149.jpg,4.16,16618,\"romance, paranormal\",\"Roundhouse Publishing editor Kate C. Leever's first letter to her newest\nlegacy author was intended to impress upon him the growing demand for his\n\"\"vampire romances.\"\" Though he'd expressed little to no desire for\npublicity, book tours or the like, it was clear that this was a writer\nwaiting to be broken out. Correspondence with Mr. Lucern Argeneau tended to\nbe oddly delayed, but this time his response was quick and succinct. \"\"No.\"\"\nBut Kate was adamant: Luc will attend a romance convention to meet his\nfans. By hook or by crook, despite his reclusive nature, odd sleep schedule\nand avoidance of the sun, the surly yet handsome Luc was going to be\nrecognized as the real charmer a nationally bestselling author should be.\nBut soon Kate would learn that his novels were more biographies than bodice\nrippers, and it'd be her neck on the line. A sweeter surrender, or more\nheartwarming a love story—his own—Luc has yet to write.\"\r\n8695,9343,1111600,Robert Jordan,\"The Wheel of Time: Boxed Set  (Wheel of Time, #1-8)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223631389l/1111600.jpg,4.37,9031,\"fantasy, fiction\",\"The #1 Internationally Bestselling Series The Wheel of Time The Wheel of\nTime turns and Ages come and pass. What was, what will be, and what is, may\nyet fall under the Shadow. Let the dragon ride again on the winds of time.\nThis boxed set contains: Book One:The Eye of the World Book Two:The Great\nHunt Book Three:The Dragon Reborn\"\r\n8696,9344,26324,Daniel Goleman,Social Intelligence: The New Science of Human Relationships,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441586645l/26324._SY475_.jpg,3.97,8670,\"psychology, nonfiction\",\"Redefines the nature of human relationships and its impact on nearly every\naspect of daily life, combining the latest research in biology and brain\nscience to reveal how daily encounters shape the brain and affect the body.\"\r\n8697,9346,8437379,Susan Elizabeth Phillips,Call Me Irresistible,https://images.gr-assets.com/books/1327880626l/8437379.jpg,4.07,15449,\"romance, contemporary\",\"Lucy Jorik's the daughter of a former U.S. President . . . Meg Koranda's\nthe offspring of legends . . . One of them is about to marry Mr.\nIrresistible—Ted Beaudine—the favorite son of Wynette, Texas . . . The\nother is determined to save her friend from a mess of heartache. Meg knows\nbreaking up her best friend's wedding is the right thing to do, but no one\nelse agrees. Faster than Lucy can say “I don't,” Meg's the most hated woman\nin town—and stuck there with a dead car, an empty wallet, and a very angry\nbridegroom. Broke, stranded, without her famous parents watching her back,\nMeg believes she can survive by her own wits. After all, what's the worst\nthat can happen? She'll lose her heart to Mr. Irresistible? Not likely. Not\nlikely at all.\"\r\n8698,9347,289029,Robin S. Sharma,Who Will Cry When You Die? Life Lessons from the Monk Who Sold His Ferrari,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173447069l/289029._SX318_.jpg,3.93,7174,\"philosophy, nonfiction\",\"“When you were born, you cried while the world rejoiced. Live your life in\nsuch a way that when you die, the world cries while you rejoice.”— Ancient\nSanskrit saying Does the gem of wisdom quoted above strike a chord deep\nwithin you? Do you feel that life is slipping by so fast that you just\nmight never get the chance to live with the meaning, happiness and joy you\nknow you deserve? If so, then this very special book by leadership guru\nRobin S. Sharma, the author whose Monk Who Sold His Ferrari series has\ntransformed the lives of thousands, will be the guiding light that leads\nyou to a brilliant new way of living. In this easy-to-read yet wisdom-rich\nmanual, Robin S. Sharma offers 101 simple solutions to life’s most complex\nproblems, ranging from a little-known method for beating stress and worry\nto a powerful way to enjoy the journey while you create a legacy that\nlasts. Other lessons include “Honor Your Past,” “Start Your Day Well,” “See\nTroubles as Blessings” and “Discover Your Calling.” If you are finally\nready to move beyond a life spent chasing success to one of deep\nsignificance, this is the ideal book for you.\"\r\n8699,9348,659546,Jennifer McMahon,Promise Not to Tell,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684006l/659546._SY475_.jpg,3.62,11775,\"mystery, fiction\",Promise Not to TellJennifer McMahon\r\n8700,9349,10790376,Debora Geary,A Modern Witch,https://images.gr-assets.com/books/1334346928l/10790376.jpg,3.73,11264,\"fantasy, paranormal\",\"\"\"Can you live 28 years without discovering you're a witch? Lauren is\ndowntown Chicago's youngest elite realtor. She's also a witch. She must be\n- the fetching spell for Witches' Chat isn't supposed to make mistakes. So\nsays the woman who coded the spell, at least. The tall, dark, and handsome\nguy sent to assess her is a witch too (and no, that doesn't end the way you\nmight think). What he finds in Lauren will change lives, mess with a\nperfectly good career, and require lots of ice cream therapy.\"\" -- Back\ncover.\"\r\n8701,9350,56466,Andy Andrews,The Traveler's Gift: Seven Decisions that Determine Personal Success,https://images.gr-assets.com/books/1380857528l/56466.jpg,4.1,8055,\"fiction, christian\",The Traveler's Gift: Seven Decisions that Determine Personal SuccessAndy Andrews\r\n8702,9351,17973653,Elle Casey,Shine Not Burn,https://images.gr-assets.com/books/1369392331l/17973653.jpg,4.07,14739,\"romance, contemporary\",\"Revised edition: This edition of Shine Not Burn includes editorial\nrevisions.\"\r\n8703,9352,155370,Margaret Peterson Haddix,Double Identity,https://images.gr-assets.com/books/1344394478l/155370.jpg,4.01,12978,\"fiction, fantasy\",\"When Bethany's parents suddenly drop out of sight with no explanation,\nleaving her with an aunt, Bethany uncovers shocking secrets that make her\nquestion everything she thought she knew about herself and her family.\"\r\n8704,9354,10803806,Tom Angleberger,Darth Paper Strikes Back,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189866l/10803806.jpg,4.12,10798,\"fiction, fantasy\",\"Angleberger delivers the hilarious, clever, and much-anticipated follow-up\nto his breakout bestseller, \"\"The Strange Case of Origami Yoda.\"\"\nIllustrations.\"\r\n8705,9355,9166877,Kady Cross,The Girl in the Steel Corset,https://images.gr-assets.com/books/1297987541l/9166877.jpg,3.81,17825,\"romance, paranormal\",\"Finley, who has a beastly alter ego inside of her, joins Duke Griffin's\narmy of misfits to help stop the Machinist, the criminal behind a series of\nautomaton crimes, from carrying out a plan to kill Queen Victoria during\nthe Jubilee.\"\r\n8706,9356,1820716,Daniel Glattauer,Gut gegen Nordwind,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1188801960l/1820716._SY475_.jpg,3.88,6874,\"romance, contemporary\",\"Gibt es in einer vom Alltag besetzten Wirklichkeit einen besseren Raum für\ngelebte Sehnsüchte als den virtuellen? Bei Leo Leike landen irrtümlich\nE-Mails einer ihm unbekannten Emmi Rothner. Aus Höflichkeit antwortet er\nihr. Und weil sich Emmi angezogen fühlt, schreibt sie zurück. Ein reger\nAustausch entsteht, schnell spielen Gefühle mit. Vor einem Treffen aber\nschrecken beide zurück. Denn Emmi ist verheiratet und Leo laboriert noch an\neiner gescheiterten Beziehung. Und überhaupt: Werden die elektronisch\nüberbrachten Liebesgefühle einer Begegnung standhalten? Und wenn ja: Lohnt\nes sich, alles auf eine Karte zu setzen - für eine Liebe, die aus nichts\nals einem Zufall entstanden ist?\"\r\n8707,9357,122756,\"James Lincoln Collier, Christopher Collier\",My Brother Sam Is Dead,https://images.gr-assets.com/books/1328867125l/122756.jpg,3.39,12817,\"fiction, classics\",\"When Sam Meeker leaves his home in Redding, Connecticut, a town loyal to\nthe king, to fight with the rebel army, he places his family in a very\ndifficult position.\"\r\n8708,9358,72623,Linda Howard,Dream Man,https://images.gr-assets.com/books/1349066255l/72623.jpg,4.04,14604,\"romance, suspense\",\"Had she finally met the man she longed for...or was she dreaming? Marlie\nKeen was trying to lead a quiet, ordinary life. She thought the knowing --\nthe clairvoyance that allowed her to witness crimes as they happened -- had\nbeen destroyed in the nightmare of her past. Then one night it returned\nwith a vengeance, and she desperately needed to find someone to make it\nstop. Detective Dane Hollister of the Orlando police department had never\nmet anyone like Marlie. He had doubts about her clairvoyance, but there was\nno doubt how much he desired her. Her soft, sweet scent set his blood\nafire, and he wanted to wrap her in his arms and chase the sadness from her\neyes. To Marlie, Dane was all heat and hard muscle, and he made her body\ncome alive as it never had before. But not even she could foresee where\ntheir passion would lead: a hungry quest for the elusive, dreamy ecstasies\nof love...and a dangerous journey into the twisted mind of a madman who\nwould threaten their happiness and their lives....\"\r\n8709,9359,91017,Tom Holland,Rubicon: The Last Years of the Roman Republic,https://images.gr-assets.com/books/1320470983l/91017.jpg,4.17,9224,\"history, nonfiction\",\"A suspenseful popular history of the fall of the Roman Republic traces the\nevents and generation that marked the final century B.C., discussing such\ntopics as the drama-spurred personality of Julius Caesar, the rise of\nAlexandria, the rule of Augustus, and the contributions of such figures as\nCaesar, Cleopatra, and Brutus. Reprint. 20,000 first printing.\"\r\n8710,9360,71823,Stephen King,\"The Green Mile, Part 6: Coffey on the Mile\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557066721l/71823.jpg,4.55,11936,\"horror, fiction\",Serial novel about a convicted killer on death row. Green Mile.\r\n8711,9362,5618698,Molly Harper,\"Nice Girls Don't Have Fangs (Jane Jameson, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194048l/5618698.jpg,3.92,18122,\"paranormal, romance\",\"Nice Girls Don't Have Fangs (Jane Jameson, #1)Molly Harper\"\r\n8712,9363,31334,\"Anne Rice, Anne Rampling\",Belinda,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442192796l/31334._SY475_.jpg,3.6,10018,\"fiction, romance\",\"Obsessed with the mystery surrounding Belinda, his precocious sixteen-year-\nold lover, Jeremy Walker, a middle-aged illustrator of children's books, is\nswept into Belinda's world of Hollywood money, lust, and dark family\nsecrets\"\r\n8713,9364,8449698,Eloisa James,When Beauty Tamed the Beast,https://images.gr-assets.com/books/1282320694l/8449698.jpg,4.06,16245,\"romance, fiction\",\"Linnet Berry Thynne thinks that she will easily be able to make her\nfiancâe, Piers Yelverton, the Earl of Marchant, who is rumored to be immune\nto the womanly charms, fall in love with her, but she loses her heart to\nhim instead.\"\r\n8714,9365,8720415,Richard Paul Evans,Miles to Go,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442185783l/8720415._SY475_.jpg,4.27,9654,\"fiction, christian\",\"Continues the walking journey of Alan Christoffersen and recounts more of\nthe experiences of betrayal and tragic loss that motivated his travels.\"\r\n8715,9367,12959045,Derf Backderf,My Friend Dahmer,https://images.gr-assets.com/books/1325285515l/12959045.jpg,3.88,11563,\"comics, nonfiction\",\"Includes eBook exclusive bonus material! You only think you know this\nstory. In 1991, Jeffrey Dahmer, the most notorious serial killer since Jack\nthe Ripper, seared himself into the American consciousness. To the public,\nDahmer was a monster who committed unthinkable atrocities. To Derf\nBackderf, ôJeffö was a much more complex figure: a high school friend with\nwhom he had shared classrooms, hallways, and car rides. In My Friend\nDahmer, a haunting and original graphic novel, writer-artist Backderf\ncreates a surprisingly sympathetic portrait of a disturbed young man\nstruggling against the morbid urges emanating from the deep recesses of his\npsyche; a shy kid, a teenage alcoholic, and a goofball who never quite fit\nin with his classmates. With profound insight, what emerges is a Jeffrey\nDahmer that few ever really knew, and one readers will never forget.\"\r\n8716,9368,107783,Julie Garwood,The Lion's Lady,https://images.gr-assets.com/books/1348750925l/107783.jpg,4.16,15614,\"romance, fiction\",\"Discover the first romance in New York Times bestselling author Julie\nGarwood’s beloved Crown’s Spies series! Christina Bennett has taken London\nsociety by storm but the ravishing beauty has kept her mysterious past\nshrouded in secrecy. When the arrogant nobleman, Lyon, Marquis of Lyonwood,\nsteals a sensuous kiss, however, he believes he tastes the wild fire\nsmoldering beneath Christina’s cool charm and swears to possess her. But\nthe feisty and defiant Christina cannot be so easily conquered. Mistress of\nher own heart and fortune, she resists Lyon’s passionate caresses and\nrefuses to surrender to his desire for if she does, she must also forsake\nher precious secret and her promised destiny. With her “straightforward\nstyle and brisk pacing” (Kirkus Reviews), Julie Garwood’s classic romantic\nseries is perfect for fans of Jude Deveraux and Julia Quinn.\"\r\n8717,9370,10295484,Cindy C. Bennett,Heart on a Chain,https://images.gr-assets.com/books/1326962009l/10295484.jpg,4.04,16007,\"romance, contemporary\",Heart on a ChainCindy C. Bennett\r\n8718,9371,7987,Brian Jacques,The Legend of Luke,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442546166l/7987._SY475_.jpg,3.99,12658,\"fantasy, fiction\",\"When Martin the Warrior leaves Redwall Abbey and embarks upon a journey to\nthe place of his birth, he learns about the brave and noble deeds of his\nfather Luke, a real Warrior Chieftain.\"\r\n8719,9372,646195,\"Dick King-Smith, Maggie Kneen\",The Sheep-Pig,https://images.gr-assets.com/books/1320498616l/646195.jpg,4.05,11229,\"fiction, classics\",\"A piglet comes to Farmer Hogget's farm, where he is adopted by an old\nsheepdog and accomplishes amazing things.\"\r\n8720,9373,8152697,Wally Lamb,Wishin' and Hopin': A Christmas Story,https://images.gr-assets.com/books/1328017040l/8152697.jpg,3.52,10966,\"fiction, ebooks\",Wishin' and Hopin': A Christmas StoryWally Lamb\r\n8721,9374,13152668,Jack McCallum,Dream Team,https://images.gr-assets.com/books/1344619142l/13152668.jpg,4.16,8000,\"sports, nonfiction\",\"Documents the story of the Olympic squad that won the gold at the 1992\nBarcelona Games, assessing the achievements and legacy of some of the NBA's\ngreatest players, including Magic Johnson, Michael Jordan, and Charles\nBarkley.\"\r\n8722,9375,914211,\"Kerry Patterson, Joseph Grenny, David Maxfield, Ron McMillan, Al Switzler\",Influencer: The Power to Change Anything,https://images.gr-assets.com/books/1393217540l/914211.jpg,3.98,8036,\"business, psychology\",\"Influencer: The Power to Change AnythingKerry Patterson, Joseph Grenny, David Maxfield, Ron McMillan, Al Switzler\"\r\n8723,9376,116982,Roger Zelazny,The Hand of Oberon - The Courts of Chaos ,https://images.gr-assets.com/books/1417644788l/116982.jpg,4.19,12627,\"fantasy, fiction\",\"Corwin, one of the princes of the mystical kingdom of Amber, discovers a\nflaw in the Pattern which gives Amber its substance and sets out to learn\nwho among his rival siblings is trying to destroy the Pattern and Amber\nalong with it.\"\r\n8724,9377,7828781,Maya Banks,No Place to Run,https://images.gr-assets.com/books/1390878373l/7828781.jpg,4.29,16649,\"romance, suspense\",\"When he unexpectedly encounters Sophie Lundgren, the one woman he has been\nunable to forget, and discovers that she is carrying his child, secret\nagent Sam Kelly refuses to let her disappear from his life again and will\ndo anything to keep her safe from harm. Original.\"\r\n8725,9378,106124,\"Jeff Smith, Steve Hamaker\",\"The Dragonslayer (Bone, #4)\",https://images.gr-assets.com/books/1497684403l/106124.jpg,4.33,11044,\"comics, fantasy\",\"As Barrelhaven prepares for war, Fone Bone, Thorn, and Gran'ma Ben have an\nencounter with the leader of the rat creatures, Kindgok. To make things\nworse, Phoney convinces the townspeople that he's a dragonslayer and that\ndragons are their biggest threat.\"\r\n8726,9379,34451,Joel Fuhrman,Eat to Live,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441067692l/34451._SY475_.jpg,4.12,7274,\"nonfiction, cookbooks\",Eat to LiveJoel Fuhrman\r\n8727,9380,11738128,Tessa Dare,A Week to Be Wicked,https://images.gr-assets.com/books/1321335382l/11738128.jpg,4.12,14615,\"romance, fiction\",\"When a devilish lord and a bluestocking set off on the road to ruin . . .\ntime is not on their side. Minerva Highwood, one of Spindle Cove's\nconfirmed spinsters, needs to be in Scotland. Colin Sandhurst, Lord Payne,\na rake of the first order, needs to be . . . anywhere but Spindle Cove.\nThese unlikely partners have one week: to fake an elopement to convince\nfamily and friends they're \"\"in love\"\" to outrun armed robbers to survive\ntheir worst nightmares to travel four hundred miles without killing each\nother All while sharing a very small carriage by day and an even smaller\nbed by night. What they don't have time for is their growing attraction.\nMuch less wild passion. And heaven forbid they spend precious hours baring\ntheir hearts and souls. Suddenly one week seems like exactly enough time to\nfind a world of trouble. And maybe . . . just maybe . . . everlasting love.\"\r\n8728,9382,207365,Karen Chance,Claimed By Shadow,https://images.gr-assets.com/books/1307391261l/207365.jpg,3.98,18318,\"paranormal, fantasy\",\"A powerful clairvoyant, Cassandra Palmer, while warding off her enemies,\ndiscovers that an arrogant master vampire has put a spell on her that warns\noff any would-be suitors and wonders if the intense attraction between them\nis real or the result of magic. Original.\"\r\n8729,9383,200963,\"Susan S. Adler, Renée Graef, Nancy Niles\",\"Meet Samantha: An American Girl (American Girls: Samantha, #1)\",https://images.gr-assets.com/books/1424726132l/200963.jpg,3.95,15460,\"fiction, history\",\"Meet Samantha: An American Girl (American Girls: Samantha, #1)Susan S. Adler, Renée Graef, Nancy Niles\"\r\n8730,9384,3419808,Sebastian Barry,The Secret Scripture,https://images.gr-assets.com/books/1325714117l/3419808.jpg,3.75,9565,\"fiction, mystery\",\"Recording the events of her life from a mental hospital as her hundredth\nbirthday approaches, Roseanne McNulty considers returning to society when\nshe learns that the hospital is about to close.\"\r\n8731,9385,6911529,\"Greg Rucka, J.H. Williams III, Rachel Maddow\",Batwoman: Elegy,https://images.gr-assets.com/books/1492568441l/6911529.jpg,4.16,11001,\"comics, fiction\",\"Batwoman: ElegyGreg Rucka, J.H. Williams III, Rachel Maddow\"\r\n8732,9386,764073,Julie Otsuka,When the Emperor Was Divine,https://images.gr-assets.com/books/1368314069l/764073.jpg,3.7,11529,\"fiction, history\",\"A story told from five different points of view chronicles the experiences\nof Japanese Americans caught up in the nightmare of the World War II\ninternment camps.\"\r\n8733,9387,17254035,Sophie Jordan,Foreplay,https://images.gr-assets.com/books/1367338814l/17254035.jpg,3.94,14461,\"romance, contemporary\",ForeplaySophie Jordan\r\n8734,9388,37296,John Sandford,Night Prey,https://images.gr-assets.com/books/1341920902l/37296.jpg,4.14,11975,\"mystery, fiction\",\"Lucas Davenport is asked to investigate a mysterious murder in a Minnesota\nwildlife refuge by a female game warden, in a case that leads to a\nconfrontation with a skillful and elusive killer. Large first printing.\"\r\n8735,9389,192888,Dorothy L. Sayers,Clouds of Witness,https://images.gr-assets.com/books/1287510321l/192888.jpg,4.04,12013,\"mystery, fiction\",\"When his future brother-in-law is murdered during a country retreat, Lord\nPeter Wimsey is shocked when his brother is accused and seeks the truth in\na letter from Egypt, a suitcase-bearing fiance+a7e, and a second murder\nattempt. Reissue.\"\r\n8736,9390,1176884,Stephanie Bond,Body Movers ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204391l/1176884.jpg,3.84,10719,\"mystery, romance\",\"When life knocks you down.... Atlanta debutante Carlotta Wren was raised\nwith a silver spoon in her mouth. So at 18, when her parents skip town\nafter being accused of a white-collar crime and leave her to raise her\nyounger brother Wesley, her entire world is upended. Her blueblood fiance\ndumps her, her high-society friends turn their backs on her, and her dreams\nof college fizzle into a career in retail just to get by.... Get up and get\nmoving! Fast forward ten years, and Carlotta and Wesley are still kicking-\neach other. After sacrificing her twenties to be a mother to Wesley, she\nfeels like a failure when the lovable genius slacker, who's up to his neck\nin gambling debt to loan sharks, is arrested for hacking into the city\ncourthouse records-a move that puts their fugitive parents' case back in\nthe spotlight. An exasperated Carlotta gives Wesley an ultimatum to get a\nreal job...but she doesn't expect him to become a body mover for the\nmorgue...or to be drawn into body moving herself...or for the experience to\nreunite her with an old love.... \"\"Bond has successfully switched to the\ncrime genre, bringing along her trademark humor and panache.\"\" -Booklist\n\"\"This is a series the reader will want to jump on in the very beginning.\"\"\n-Writers Unlimited \"\"A fun and exciting romp from beginning to end. Body\nMovers is signature Stephanie Bond, with witty dialogue, brilliant\ncharacterization, and a wonderful well-plotted storyline.\"\" -Contemporary\nRomance Writers \"\"This series is simply splendid. Vivid, quirky, flawed\nwonderful people fill its pages and you care about what happens to them.\"\"\nHuntress Reviews\"\r\n8737,9391,40136,Anthony Bourdain,\"The Nasty Bits: Collected Varietal Cuts, Useable Trim, Scraps, and Bones\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442020661l/40136._SY475_.jpg,3.75,8021,\"nonfiction, memoir\",\"The best-selling author of Kitchen Confidential and A Cook's Tour shares a\ncandid and outrageous collection of his worldwide culinary misadventures,\nfrom scrounging for eel in backstreet Hanoi, to quarreling with raw-food\nactivist Woody Harrelson, to revealing the less than glamorous aspects of\nmaking television. Reprint.\"\r\n8738,9392,29906980,George Saunders,Lincoln in the Bardo,https://images.gr-assets.com/books/1492130850l/29906980.jpg,3.93,20373,\"fiction, fantasy\",\"#1 NEW YORK TIMES BESTSELLER * The long-awaited first novel from the author\nof Tenth of December: a moving and original father-son story featuring none\nother than Abraham Lincoln, as well as an unforgettable cast of supporting\ncharacters, living and dead, historical and invented February 1862. The\nCivil War is less than one year old. The fighting has begun in earnest, and\nthe nation has begun to realize it is in for a long, bloody struggle.\nMeanwhile, President Lincoln's beloved eleven-year-old son, Willie, lies\nupstairs in the White House, gravely ill. In a matter of days, despite\npredictions of a recovery, Willie dies and is laid to rest in a Georgetown\ncemetery. \"\"My poor boy, he was too good for this earth,\"\" the president says\nat the time. \"\"God has called him home.\"\" Newspapers report that a grief-\nstricken Lincoln returns, alone, to the crypt several times to hold his\nboy's body. From that seed of historical truth, George Saunders spins an\nunforgettable story of familial love and loss that breaks free of its\nrealistic, historical framework into a supernatural realm both hilarious\nand terrifying. Willie Lincoln finds himself in a strange purgatory where\nghosts mingle, gripe, commiserate, quarrel, and enact bizarre acts of\npenance. Within this transitional state--called, in the Tibetan tradition,\nthe bardo--a monumental struggle erupts over young Willie's soul. Lincoln\nin the Bardo is an astonishing feat of imagination and a bold step forward\nfrom one of the most important and influential writers of his generation.\nFormally daring, generous in spirit, deeply concerned with matters of the\nheart, it is a testament to fiction's ability to speak honestly and\npowerfully to the things that really matter to us. Saunders has invented a\nthrilling new form that deploys a kaleidoscopic, theatrical panorama of\nvoices to ask a timeless, profound question: How do we live and love when\nwe know that everything we love must end? Praise for Lincoln in the Bardo\n\"\"A luminous feat of generosity and humanism.\"\"--Colson Whitehead, The New\nYork Times Book Review \"\"A masterpiece.\"\"--Zadie Smith \"\"Ingenious . . .\nSaunders--well on his way toward becoming a twenty-first-century Twain--\ncrafts an American patchwork of love and loss, giving shape to our\nfoundational sorrows.\"\"--Vogue \"\"Saunders is the most humane American writer\nworking today.\"\"--Harper's Magazine \"\"The novel beats with a present-day\nurgency--a nation at war with itself, the unbearable grief of a father who\nhas lost a child, and a howling congregation of ghosts, as divided in death\nas in life, unwilling to move on.\"\"--Vanity Fair \"\"A brilliant, Buddhist\nreimagining of an American story of great loss and great love.\"\"--Elle\n\"\"Wildly imaginative\"\"--Marie Claire \"\"Mesmerizing . . . Dantesque . . . A\nhaunting American ballad.\"\"--Publishers Weekly (starred review)\n\"\"Exhilarating . . . Ruthless and relentless in its evocation not only of\nLincoln and his quandary, but also of the tenuous existential state shared\nby all of us.\"\" --Kirkus Reviews (starred review) \"\"It's unlike anything\nyou've ever read, except that the grotesque humor, pathos, and, ultimately,\nhuman kindness at its core mark it as a work that could come only from\nSaunders.\"\"--The National\"\r\n8739,9393,7745031,William Gibson,Zero History,https://images.gr-assets.com/books/1282769471l/7745031.jpg,3.93,10394,\"fiction, thriller\",\"Former rock singer Hollis Henry has lost a lot of money in the crash, which\nmeans she can't turn down the offer of a job from Hubertus Bigend, sinister\nBelgian proprietor of mysterious ad agency Blue Ant. Milgrim is working for\nBigend too.\"\r\n8740,9394,12021559,Chelsea Fine,Sophie & Carter,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349021443l/12021559.jpg,3.83,11849,\"romance, contemporary\",Sophie & CarterChelsea Fine\r\n8741,9395,38703,Louis Sachar,Small Steps,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390281380l/38703.jpg,3.69,11837,\"fiction, contemporary\",Small StepsLouis Sachar\r\n8742,9396,11940384,Alex Marwood,The Wicked Girls,https://images.gr-assets.com/books/1340853882l/11940384.jpg,3.48,9180,\"mystery, fiction\",\"When her investigation into a series of sickening attacks on young female\ntourists leads to an interview with a carnival cleaner, reporter Kirsty\nLindsay is reunited with a woman whom she shares a wicked secret. Original.\"\r\n8743,9397,155291,Simon R. Green,Agents of Light and Darkness,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212740l/155291.jpg,4,12827,\"fantasy, mystery\",\"While working in Nightside, John searches for the Unholy Grail, a cup used\nduring the Last Supper that corrupts the owner and gives him power, before\nit falls into the wrong hands.\"\r\n8744,9398,41069,John Brunner,Stand on Zanzibar,https://images.gr-assets.com/books/1360613921l/41069.jpg,3.96,11021,\"fiction, classics\",\"Norman Niblock House is a rising executive at General Technics, one of a\nfew all-powerful corporations. His work is leading General Technics to the\nforefront of global domination, both in the marketplace and politically---\nit's about to take over a country in Africa. Donald Hogan is his roommate,\na seemingly sheepish bookworm. But Hogan is a spy, and he's about to\ndiscover a breakthrough in genetic engineering that will change the\nworld...and kill him. These two men's lives weave through one of science\nfiction's most praised novels. Written in a way that echoes John Dos\nPassos' U.S.A. Trilogy, Stand on Zanzibar is a cross-section of a world\noverpopulated by the billions. Where society is squeezed into hive-living\nmadness by god-like mega computers, mass-marketed psychedelic drugs, and\nmundane uses of genetic engineering. Though written in 1968, it speaks of\n2010, and is frighteningly prescient and intensely powerful.\"\r\n8745,9399,6261477,Gwen Cooper,Homer's Odyssey ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442887803l/6261477._SY475_.jpg,4.18,9907,\"nonfiction, memoir\",\"A pet rescue volunteer and literacy outreach coordinator describes her\nrelationship with a three-pound blind cat whose daredevil character and\naffectionate personality saw the author through six moves, a burglary and\nthe healing of her broken heart. Reprint. A best-selling book.\"\r\n8746,9400,433035,Agatha Christie,Sad Cypress,https://images.gr-assets.com/books/1396229541l/433035.jpg,3.83,12538,\"mystery, fiction\",\"Beautiful young Elinor Carlisle stood serenely in the dock, accused of the\nmurder of Mary Gerrard, her rival in love. The evidence was damning: only\nElinor had the motive, the opportunity, and the means to administer the\nfatal poison. Yet, inside the hostile courtroom, only one man still\npresumed Elinor was innocent until proven guilty. Hercule Poirot was all\nthat stood between Elinor and the gallows.…\"\r\n8747,9401,1070527,\"Michael Dante DiMartino, Bryan Konietzko\",Avatar: Last Airbender v. 1 (Avatar (Graphic Novels)),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391088764l/1070527.jpg,4.52,8261,\"manga, comics\",\"When Katara and her brother Sokka from the Souther water tribe find a\nmysterious young boy in a glacier, they are shocked to discover that he is\nan airbender, a tribe that was thought to have disappeared over a century\nago.\"\r\n8748,9402,17478,Enid Blyton,Five Go to Smuggler's Top,https://images.gr-assets.com/books/1408924745l/17478.jpg,4.03,10441,\"fiction, classics\",Five Go to Smuggler's TopEnid Blyton\r\n8749,9403,643988,Sara Paretsky,Indemnity Only,https://images.gr-assets.com/books/1388939553l/643988.jpg,3.89,11954,\"mystery, fiction\",\"America's \"\"most convincing and engaging\"\" (Entertainment Weekly) female\nprivate-eye, V.I. Warshawski, is looking for a missing coed, but finds a\nlarge scam involving big business executives, notorious underworld figures\nand murder.I. Warshawski novel.\"\r\n8750,9404,74997,Enid Blyton,Five Run Away Together,https://images.gr-assets.com/books/1319213384l/74997.jpg,4.03,10698,\"mystery, fiction\",\"Emma Chichester Clark joins Quentin Blake, Oliver Jeffers, Chris Riddell\nand Helen Oxenbury, who have all reimagined Blyton's characters for today's\nreaders. These anniversary editions of the classic texts of Enid Blyton's\nbest-known series benefit the House of Illustration, the world's first\ndedicated home for the art of illustration.\n(www.houseofillustration.org.uk) Who's been on George's island? And what is\nlocked in the mysterious trunk hidden on Kirrin Island? The Famous Five\nthink they're on the trail of smugglers - until they hear a child scream\n...\"\r\n8751,9405,59887,Danielle Steel,The Promise,https://images.gr-assets.com/books/1408930765l/59887.jpg,3.93,9836,\"romance, fiction\",\"The promise of undying love made by a young architect and a beautiful,\ntalented artist is tested by a devastating event on their wedding day\"\r\n8752,9406,199532,Fannie Flagg,A Redbird Christmas,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388886661l/199532.jpg,3.86,11101,\"fiction, contemporary\",\"In a tiny and remote Alabama town, an unexpected, unusual, and life-\ntransforming event that occurs on one Christmas morning changes a family\nand a town forever.\"\r\n8753,9407,42691,Leon Uris,The Haj,https://images.gr-assets.com/books/1359743182l/42691.jpg,3.99,10060,\"fiction, history\",\"Examines the tragic history of the Middle East in an epic tale that\nrecreates the turbulent era from World War I to the early decades of the\nexistence of the state of Israel\"\r\n8754,9408,290628,Guy Gavriel Kay,The Darkest Road,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388894721l/290628.jpg,4.18,11755,\"fantasy, fiction\",\"As the Unraveller's armies march to battle and a plague-filled rain\ndevastates the planet, the warriors of Light call upon one of the most\nancient powers of evil to aid them in their struggle. Reprint.\"\r\n8755,9409,18580,Bette Greene,Summer of My German Soldier,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166975959l/18580.jpg,3.66,12108,\"fiction, romance\",Summer of My German SoldierBette Greene\r\n8756,9410,20168816,\"George R.R. Martin, Gardner R. Dozois, Joe Abercrombie, Gillian Flynn, Matthew Hughes, Joe R. Lansdale, Michael Swanwick, David  Ball, Carrie Vaughn, Scott Lynch, Bradley Denton, Cherie Priest, Daniel Abraham, Paul Cornell, Steven Saylor, Garth Nix, Walter Jon Williams, Phyllis Eisenstein, Lisa Tuttle, Neil Gaiman, Connie Willis, Patrick Rothfuss\",Rogues,https://images.gr-assets.com/books/1404616147l/20168816.jpg,3.86,10135,\"fiction, fantasy\",\"A collection of 21 original stories by an all-star list of\ncontributors—including a new Game of Thrones story by George R. R.\nMartin—looks at the more shady denizens of the fantasy world, in an array\nof tales with contributions from Gillian Flynn, Joe Abercrombie, Neil\nGaiman and many more.\"\r\n8757,9412,23357188,Cora Reilly,Bound by Honor,https://images.gr-assets.com/books/1418481477l/23357188.jpg,4.14,15138,\"romance, contemporary\",\"Born into one of the leading Mob families in Chicago, Aria Scuderi\nstruggles to find her own path in a world where no choices are given. Aria\nwas only fifteen when her parents betrothed her to Luca - The Vice -\nVitiello, the oldest son of the head of the New York Cosa Nostra to ensure\npeace between the two families. Now with eighteen, the day Aria has been\ndreading for years is looming dangerously: her wedding to Luca. Aria is\nterrified of marrying a man she hardly knows, especially someone like Luca\nwho got his nickname 'the Vice' for crushing a man's throat with his bare\nhands. Luca might be one of the most sought after men in New York thanks to\nhis good looks, wealth and predator-like charisma that radiates power, but\nthe society girls throwing themselves at him don't know what Aria does:\nthat the bad boy aura isn't just a game; blood and death lurk beneath\nLuca's striking gray eyes and arrogant smile.In her world a handsome\nexterior often hides the monster within; a monster who can just as easily\nkill as kiss you.The only way to escape the marriage to Luca would be to\nrun away and leave everything she's ever known behind but Aria can't bear\nthe thought of never seeing her family again. Despite her fear, she decides\nto go through with the marriage; Aria has grown up among predators like\nLuca and knows that even most cold-hearted bastards have a heart and she\nhas every intention of working her way into Luca's.!Mature content!Books in\nthe Born in Blood Mafia Chronicles:Bound By Honor Bound By DutyBound By\nHatred\"\r\n8758,9414,8150317,Lara Adrian,Deeper than Midnight,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433194408l/8150317._SY475_.jpg,4.29,16679,\"paranormal, romance\",\"Stolen away from her life of wealth and privilege by the evil vampire\nDragos, and subjected to many years of captivity and torment, Corrine\nBishop, rescued by the Order, finds safety in the arms of Hunter, a\nformidable warrior who is now hell-bent on making Dragos pay for his sins.\nOriginal.\"\r\n8759,9415,8100979,Faith Hunter,Mercy Blade,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388337237l/8100979.jpg,4.21,14856,\"fantasy, paranormal\",\"Caught in the war between werewolves and vampires, Jane Yellowrock, a\nshape-shifting skinwalker and vampire killer for hire, is rescued by a\nmysterious stranger who claims to be a Mercy Blade - a sacred position\ncharged with killing vampires who have gone insane. Original.\"\r\n8760,9416,227280,Cara Lockwood,I Do (But I Don't),https://images.gr-assets.com/books/1480111926l/227280.jpg,3.66,9151,\"romance, fiction\",\"She creates perfect days. In spite of her incorrigible curly hair, Lauren\nCrandell is a neat-freak and organizational guru, qualities that make her\nthe perfect wedding planner. But when two weddings in one day go haywire,\nand hunky firefighter Nick Corona comes to the rescue -- twice -- Lauren\nrealizes there are a few important details in her own life she hasn't been\ntending to since her divorce. Namely, her sex life. She lives lonely\nnights. Sweet and sexy Nick seems hell-bent on fanning the flames between\nthem, and Lauren definitely feels sparks flying. But she's scrambling to\nplan nuptials for her most challenging client yet -- a beautiful, cunning,\nand certifiable Psycho Bride. With the big day rapidly approaching, a\nseries of misunderstandings, mishaps, and mistaken identities threatens to\nruin not one, but two happily ever afters. But with her career and her love\nlife on the line, the wedding planner just might learn that you can't plan\neverything, least of all true love.\"\r\n8761,9417,244115,Judy Schachner,Skippyjon Jones in Mummy Trouble (Skippyjon Jones),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435812618l/244115._SX318_.jpg,4.25,11076,\"fiction, fantasy\",\"Skippyjon Jones, a Siamese kitten who thinks he's a Chihuahua, dreams of\ntraveling to ancient Egypt with his gang of Chihuahua amigos, but must\nfirst solve the riddle of the Finx to enter into the mummito's tomb.\nReprint.\"\r\n8762,9418,15799151,Mason Currey,Daily Rituals: How Artists Work,https://images.gr-assets.com/books/1344618847l/15799151.jpg,3.66,8565,\"nonfiction, art\",\"From Beethoven and Kafka to George Sand, Picasso and Agatha Christie, this\ncompilation of letters, diaries and interviews reveals the profound fusion\nof discipline and dissipation through which the artistic temperament is\nallowed to evolve, recharge and emerge. 20,000 first printing.\"\r\n8763,9419,8100288,\"Kevin Malarkey, Alex Malarkey\",The Boy Who Came Back from Heaven,https://images.gr-assets.com/books/1406510843l/8100288.jpg,3.89,8945,\"christian, religion\",\"The Boy Who Came Back from HeavenKevin Malarkey, Alex Malarkey\"\r\n8764,9421,1468706,Jacqueline Winspear,An Incomplete Revenge,https://images.gr-assets.com/books/1329547507l/1468706.jpg,4.09,11579,\"mystery, fiction\",An Incomplete RevengeJacqueline Winspear\r\n8765,9422,24040551,Jennifer McMahon,The Night Sister,https://images.gr-assets.com/books/1427845722l/24040551.jpg,3.67,10219,\"horror, mystery\",The Night SisterJennifer McMahon\r\n8766,9424,13659,Ursula K. Le Guin,Tales from Earthsea,https://images.gr-assets.com/books/1309202073l/13659.jpg,4,11530,\"fantasy, fiction\",Tales from EarthseaUrsula K. Le Guin\r\n8767,9425,16171259,\"Juan Gabriel Vásquez, Anne McLean\",El ruido de las cosas al caer,https://images.gr-assets.com/books/1356199047l/16171259.jpg,3.74,6113,\"fiction, contemporary\",\"El ruido de las cosas al caerJuan Gabriel Vásquez, Anne McLean\"\r\n8768,9427,25241477,Dean Koontz,Ashley Bell,https://images.gr-assets.com/books/1428081712l/25241477.jpg,3.59,8118,\"thriller, mystery\",\"\"\"Who is Ashley Bell? From #1 New York Times bestselling author Dean Koontz\ncomes the must-read thriller of the year, perfect for readers of dark\npsychological suspense and modern classics of mystery and adventure.\nBrilliantly paced, with an exhilarating heroine and a twisting, ingenious\nstoryline, Ashley Bell is a new milestone in literary suspense from the\nlong-acclaimed master\"\"--\"\r\n8769,9428,313998,\"William Gibson, Terry Bisson\",Johnny Mnemonic,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922726l/313998.jpg,3.75,9564,\"fiction, science\",\"Using a data-storage chip embedded in his brain, Johnny smuggles\ninformation, but things go wrong when his employers are murdered, the\ndownload code is missing, and gangsters working for the stolen data's\nowners are in pursuit\"\r\n8770,9429,513176,Michael A. Stackpole,Rogue Squadron,https://images.gr-assets.com/books/1327860341l/513176.jpg,4.02,11405,\"fiction, fantasy\",\"Henry is generally well-behaved, but he is occasionally arrogant and vain.\nHenry is at heart a hard worker, but his frequent bouts of illness hinder\nhis work.\"\r\n8771,9430,457457,Danielle Steel,Fine Things,https://images.gr-assets.com/books/1320501112l/457457.jpg,3.92,10519,\"romance, fiction\",\"The story of a man who learns that one's capacity to love is not reached\nuntil it is tested.\"\r\n8772,9432,74034,\"Neil Postman, Andrew Postman\",Amusing Ourselves to Death: Public Discourse in the Age of Show Business,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1568871230l/74034.jpg,4.14,9736,\"nonfiction, philosophy\",\"Examines the ways in which television has transformed public discourse--in\npolitics, education, religion, science, and elsewhere--into a form of\nentertainment that undermines exposition, explanation and knowledge, in a\nspecial anniversary edition of the classic critique of the influence of the\nmass media on a democratic society. Reprint.\"\r\n8773,9433,61974,Anne McCaffrey,\"Nerilka's Story (Pern: Dragonriders of Pern, #5)\",https://images.gr-assets.com/books/1296104206l/61974.jpg,3.78,12936,\"fantasy, fiction\",\"Ashamed of her father's refusal to help the others of Fort Hold, Nerilka\nhelps Lord Alessan prepare a serum to combat a dreaded plague\"\r\n8774,9434,153175,Raymond E. Feist,King of Foxes,https://images.gr-assets.com/books/1409600307l/153175.jpg,3.95,10684,\"fantasy, fiction\",\"In the mountains of Midkemia, a boy came brutally of age in blood and in\nterror. And now he lives for one purpose alone ... revenge! An\nexceptionally skilled swordsman, young Tal Hawkins was the only survivor of\nthe massacre of his village -- rescued, recruited, and trained by the\nmysterious order of magicians and spies, the Conclave of Shadows. Now one\nof the secret society's most valuable agents, he gains entrance into the\ncourt of Duke Olasko, the bloodthirsty and powerful despot whose armies put\nTal's village to the sword, by posing as a nobleman from the distant\nKingdom of the Isles. But the enemy is cunning and well protected -- in\nleague with the foul necromancer Leso Varen, dark master of death-magic --\nand to gain the Duke's trust and confidence, Tal Hawkins must first sell\nhis soul.\"\r\n8775,9435,1153709,Lynley Dodd,Hairy Maclary from Donaldson's Dairy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348010249l/1153709.jpg,4.28,11051,\"fiction, poetry\",Hairy Maclary from Donaldson's DairyLynley Dodd\r\n8776,9436,764063,\"Pattie Boyd, Penny Junor\",Wonderful Tonight: An Autobiography,https://images.gr-assets.com/books/1320426628l/764063.jpg,3.65,8254,\"music, biography\",\"The former wife of George Harrison and Eric Clapton describes her intimate\nrelationship with two of the icons of rock music and her memories of the\ndynamic, often turbulent world of rock music during the 1960s and 1970s.\"\r\n8777,9437,17573684,Ann Hood,The Obituary Writer,https://images.gr-assets.com/books/1364851286l/17573684.jpg,3.7,5178,\"fiction, mystery\",The Obituary WriterAnn Hood\r\n8778,9438,1175893,\"Roderick Gordon, Brian  Williams\",Tunnels,https://images.gr-assets.com/books/1320969639l/1175893.jpg,3.57,11678,\"fantasy, fiction\",\"TunnelsRoderick Gordon, Brian  Williams\"\r\n8779,9439,35539,Bob Spitz,The Beatles: The Biography,https://images.gr-assets.com/books/1327951066l/35539.jpg,4.13,8120,\"music, biography\",\"As soon as The Beatles became famous, the spin machine began to construct a\nmyth--one that has continued to this day. But the truth is much more\ninteresting, much more exciting, and much more moving. In this bestselling\nbook, Bob Spitz has written the biography for which Beatles fans have long\nwaited. 32 pages of b/w photos.\"\r\n8780,9440,92371,Ken Follett,Lie Down With Lions,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347348567l/92371.jpg,3.78,9822,\"fiction, thriller\",\"The intrigue surrounding Russian efforts to assassinate Masud, the leader\nof the Afghan guerrilla forces battling the Russians, sweeps a young\nEnglishwoman, a French physician, and a roving American into its maelstrom.\nBy the author of The Hammer of Eden. Reissue.\"\r\n8781,9441,630621,\"Greg Pak, Aaron Lopresti, Carlo Pagulayan, Juan Santacruz, Gary Frank, Takeshi Miyazawa\",Hulk: Planet Hulk,https://images.gr-assets.com/books/1312315970l/630621.jpg,4.23,8680,\"comics, fiction\",\"When the Illuminati decide that the Hulk is too dangerous to stay on Earth\nand trick him into exile in outer space, his spaceship accidentally veers\noff course and the Hulk ends up on the dangerous planet of Sakaar.\"\r\n8782,9442,134958,David Starkey,Elizabeth: The Struggle for the Throne,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402027586l/134958.jpg,4.06,11163,\"history, biography\",\"An abused child, yet confident of her destiny to reign, a woman in a man's\nworld, passionately sexual—though, as she maintained, a virgin—Elizabeth I\nis famed as England's most successful ruler. David Starkey's brilliant new\nbiography concentrates on Elizabeth's formative years—from her birth in\n1533 to her accession in 1558—and shows how the experiences of danger and\nadventure formed her remarkable character and shaped her opinions and\nbeliefs. From princess and heir-apparent to bastardized and disinherited\nroyal, accused traitor to head of the princely household, Elizabeth\nexperienced every vicissitude of fortune and extreme of condition—and rose\nabove it all to reign during a watershed moment in history. A uniquely\nabsorbing tale of one young woman's turbulent, courageous, and seemingly\nimpossible journey toward the throne, Elizabeth is the exhilarating story\nof the making of a queen.\"\r\n8783,9443,571508,Dean Hughes,\"Rumors of War (Children of the Promise, Vol 1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388973926l/571508.jpg,4.25,9995,\"fiction, history\",\"The elders could see nothing but smoke until they turned the corner onto\nthe street where the fire was. And then, both of them stopped. ?The\nsynagogue!? Elder Thomas said. It had never occurred to him that anyone ?\neven the Nazis ? would do such a thing.Elder Thomas got his camera out. He\nsnapped the shot but then heard someone say, in German, ?What are you doing\nthere??He tucked the camera inside his coat, under his arm. He tried to\nappear normal, but his heart was suddenly beating hard. A man was crossing\nthe narrow street and coming toward them.?Making pictures?? the man asked\nas he walked closer. Elder Thomas took a better look. He saw what he\nfeared: the black uniform with silver trim and braided hat. Gestapo.Elder\nAlex Thomas wants only to teach the gospel to the people of Germany. But it\nsoon becomes obvious that he will never complete his mission. War is\ncoming, and that will affect not only Elder Thomas but also his family back\nhome in Salt Lake City.In the family is Wally, Elder Thomas?s younger\nbrother, who usually just wants ot have a good time, but lately doesn?t\nseem to care much about anything. There?s his sister Bobbi, who is supposed\nto marry Phil Clark, the most eligible bachelor in the Salt Lake Valley.\nThe problem is, she can?t ignore her attraction to Dr. Stinson, a\nUniversity of Utah professor who?s not a member of the Church. And there\nare Elder Thomas?s parents, D. Alexander Thomas, stake president and his\nwife, Bea, who want their children to be true to the values and ideals\nthey?ve taught them. But President and Sister Thomas are finding they can?t\njust tell their children what to do anymore, and they?re worried about what\nwill happen when the United States enters a war that no one seems able to\nstop.In Rumors of War, the first volume of the series Children of the\nPromise, author Dean Hughes recreates the era of World War II in stunning\ndetail. But more than that, he shows how the war affects an ordinary family\nof Latter-day Saints. If you?re interested in Church or world history, or\nif you?re simply looking for a powerful LDS novel, you won?t want to miss\nRumors of War.\"\r\n8784,9444,10008056,Jussi Adler-Olsen,Journal 64,https://images.gr-assets.com/books/1424299324l/10008056.jpg,4.04,5044,\"crime, mystery\",Journal 64Jussi Adler-Olsen\r\n8785,9445,13151283,محمد صادق,بضع ساعات في يوم ما,https://images.gr-assets.com/books/1410703596l/13151283.jpg,3.14,7806,\"romance, fiction\",بضع ساعات في يوم مامحمد صادق\r\n8786,9446,10049436,Lindsey Kelk,The Single Girl's To-Do List,https://images.gr-assets.com/books/1327955203l/10049436.jpg,3.94,9829,\"romance, contemporary\",\"\"\"The Single Girl′s To-Do List gives Rachel the perfect heartbreak cure -\nand proves love is out there if you′re willing to take a chance.\"\"--Back\ncover.\"\r\n8787,9447,112517,\"Arthur C. Clarke, Gentry Lee\",Rama Revealed: The Ultimate Encounter,https://images.gr-assets.com/books/1375814909l/112517.jpg,3.72,9015,\"fiction, science\",\"A massive alien starship carries its human passengers to the end of a\ngenerations-long odyssey\"\r\n8788,9448,9399336,Alice Clayton,The Redhead Revealed,https://images.gr-assets.com/books/1285470017l/9399336.jpg,4.2,15464,\"romance, contemporary\",\"The sexy follow-up to Unidentified Redhead from USA TODAY bestselling\nauthor Alice Clayton is a magical mix of humor and heat—so cuddle up under\nthe sheets; Grace and Jack are at it again! LONG-DISTANCE LOVE JUST GOT\nHOTTER! Life is sweet. Grace Sheridan has just won her dream role in a new\noff-Broadway play, and the talented hunk flooding her phone with\nscintillating texts and scandalous photos is Jack Hamilton, the twenty-\nfour-year-old “it” Brit whose Hollywood career is about to climax faster\nthan . . . you know. So what if their steamy relationship is bicoastal and\nunder wraps, or that L.A. fangirls are grabbing Jack’s ass? Absence does\nmake the heart grow fonder and the libido hotter, but their few weekend\nvisits feel more more like fast food than the five-course dinner they\ncrave. And then—the creator of Grace’s new show is the man who broke her\nheart back in college, and he seems to have written the play just to make\namends with his leading lady. As rumors spread that Jack and his lovely,\nleggy ex-girlfriend have gotten back together, Grace starts to wonder about\nher own feelings. Can lust alone keep our favorite, feisty duo together, or\nwill Grace find herself back in safer, more familiar arms?\"\r\n8789,9449,125958,Ted Dekker,Skin,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441147725l/125958._SY475_.jpg,3.8,10590,\"fiction, christian\",\"Ex-cult member Wendy Davidson seeks to recover from her traumatic past in a\nsmall Nevada town, but finds herself threatened by a serial killer known as\nRed.\"\r\n8790,9450,20662728,Garth Nix,Clariel: The Lost Abhorsen,https://images.gr-assets.com/books/1393877442l/20662728.jpg,3.79,10616,\"fantasy, fiction\",Clariel: The Lost AbhorsenGarth Nix\r\n8791,9451,68099,Donna Leon,Death at La Fenice,https://images.gr-assets.com/books/1441466744l/68099.jpg,3.81,11705,\"mystery, fiction\",\"Beautiful and serene Venice is a city almost devoid of crime. But that is\nlittle comfort to Maestro Helmut Wellauer, a world-renowned conductor whose\nintermission refreshment comes one night with a little something extra in\nit-cyanide. For Guido Brunetti, vice-commissario of police and detective\ngenius, finding a suspect isn't a problem; narrowing the large and\nunconventional group of enemies down to one is. As the suave and pithy\nBrunetti pieces together clues, a shocking picture of depravity and revenge\nemerges, leaving him torn between what is and what should be right -- and\nquestioning what the law can do, and what needs to be done.\"\r\n8792,9452,36058,James Ellroy,The Big Nowhere,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348561244l/36058.jpg,4.11,9249,\"crime, fiction\",The Big NowhereJames Ellroy\r\n8793,9453,71787,Jan Karon,In This Mountain (Mitford),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388629068l/71787.jpg,4.32,11015,\"fiction, christian\",In This Mountain (Mitford)Jan Karon\r\n8794,9454,5052,Ken Follett,Code to Zero,https://images.gr-assets.com/books/1309209804l/5052.jpg,3.64,9071,\"fiction, thriller\",\"A suspenseful tale set during the height of the Cold War follows one man's\njourney to uncover family secrets on a quest that leads him into the heart\nof the nation's burgeoning space program. Reprint.\"\r\n8795,9455,429024,\"Charles Dickens, Norman Page\",The Old Curiosity Shop,https://images.gr-assets.com/books/1332523435l/429024.jpg,3.75,11092,\"classics, fiction\",\"Little Nell and her grandfather are left destitute when the evil Quilp\nseizes their Old Curiosity Shop in payment for their overdue debts.\"\r\n8796,9456,73860,Virginia M. Axline,Dibs in Search of Self: Personality Development in Play Therapy,https://images.gr-assets.com/books/1403187565l/73860.jpg,4.13,8905,\"nonfiction, psychology\",\"Account of a deeply disturbed five-year-old's attempt to find his identity\nand of his emergence from psychotherapy as a whole human being\"\r\n8797,9457,46908,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 14,https://images.gr-assets.com/books/1393736589l/46908.jpg,4.46,13072,\"manga, fantasy\",\"Tohru Honda is an orphaned teenager who comes to live with the Sohma family\nin exchange for housekeeping duties, but she soon comes to know the family\nsecret.\"\r\n8798,9458,17277800,\"Matt Fraction, David Aja, Francesco Francavilla, Steve Lieber, Jesse Hamm, Annie Wu, Matt Hollingsworth, Chris Eliopoulos\",\"Hawkeye, Volume 2: Little Hits\",https://images.gr-assets.com/books/1384620904l/17277800.jpg,4.27,15547,\"crime, fantasy\",\"Artist David Aja returns to the most critically acclaimed comic of 2012, as\nace archer Clint Barton faces the digital doomsday of - DVR-Mageddon! Then:\nCherry's got a gun. And she looks good in it. And Hawkeye gets very, very\ndistracted. Plus: Valentine's Day with the heartthrob of the Marvel\nUniverse? This will be...confusing. Marvel architect Matt Fraction\ncontinues his exciting, adventurous reinvention of the arrowed Avenger!\nCOLLECTING: Hawkeye 6-11\"\r\n8799,9459,18420,\"Barbara Ann Brennan, Jos. A. Smith\",Hands of Light: A Guide to Healing Through the Human Energy Field,https://images.gr-assets.com/books/1320544153l/18420.jpg,4.27,9016,\"spirituality, nonfiction\",\"Building on the ideas of holistic medicine, this book develops the idea of\nthe human energy field, exploring how this can be tapped into to promote\nhealing\"\r\n8800,9460,87280,Bohumil Hrabal,Příliš hlučná samota,https://images.gr-assets.com/books/1359996651l/87280.jpg,4.17,5468,\"fiction, classics\",Příliš hlučná samotaBohumil Hrabal\r\n8801,9461,65113,\"Lemony Snicket, Brett Helquist\",\"The Complete Wreck (A Series of Unfortunate Events, Books 1-13)\",https://images.gr-assets.com/books/1307655939l/65113.jpg,4.28,11240,\"fiction, fantasy\",\"Some boxes should never be opened. For the first time, the complete A\nSeries of Unfortunate Events – including the highly feared #13: The End –\nis available in one awful package! We can't keep you from succumbing to\nthis international bestselling phenomenon, but we can hide all thirteen\nbooks in a huge, elaborately illustrated, shrink–wrapped box, perfect for\nfilling an empty shelf or deep hole. From The Bad Beginning to The End,\nthis box set, adorned with Brett Helquist art from front to back, is the\nonly choice for people who simply cannot get enough of a bad thing! Ages\n10+\"\r\n8802,9463,41820,Isaac Asimov,Pebble in the Sky,https://images.gr-assets.com/books/1335782053l/41820.jpg,3.85,11335,\"science, classics\",\"Hurtled through time from 1949 Chicago to an Earth during the heyday of the\nfirst Galactic Empire, retired tailor Joseph Schwartz finds himself on a\nbackwater, insignificant planet with much of its land ruined by\nradioactivity and so poor that its inhabitants are sentenced to death at\nthe age of 60--and Joseph is 62--in a new edition of the author's first\nnovel. Reprint.\"\r\n8803,9464,5024334,Kristan Higgins,Too Good To Be True,https://images.gr-assets.com/books/1388920769l/5024334.jpg,3.9,14745,\"romance, contemporary\",Too Good To Be TrueKristan Higgins\r\n8804,9465,105920,\"Brian Michael Bendis, Mark Bagley\",\"Ultimate Spider-Man, Volume 1: Power and Responsibility\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273050l/105920.jpg,4.06,10462,\"comics, fiction\",\"\"\"With great power comes great responsibility.\"\" In 1963, these prophetic\nwords launched one of the most successful and recognizable characters of\nthe 20th century... Spider-Man! The powers granted bookish Peter Parker by\nradioactive spider have fueled the imaginations of fans worldwide for\nnearly 40 years. With the dawning of a new age, however, comes a hero for a\nnew millennium... Ultimate Spider-Man! Updating Spider-Man for the 21st\ncentiry was no easy task, and it took the brilliant minds of Bill Jemas and\nBrian Michael Bendis to do just that. With the artistic talents of Mark\nBagley and Art Thhibert breathing new life into this legendary mythos,\nSpider-Man has reasserted himself as one of the most popular characters in\nthe world!\"\r\n8805,9468,85310,John Sandford,Mortal Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421292490l/85310.jpg,4.2,11272,\"mystery, fiction\",\"Nearly killed in a hit attempt, retired top hitwoman Clara Rinker goes into\nhiding, prompting Lucas Davenport, a one-time target of Clara's, to assist\nthe FBI and DEA in tracking her down before her old bosses in the St. Louis\nmob and a Mexican drug lord get to her first. 500,000 first printing.\"\r\n8806,9469,16312,\"Agatha Christie, Hugh Fraser\",\"One, Two, Buckle My Shoe\",https://images.gr-assets.com/books/1328750172l/16312.jpg,3.74,11285,\"mystery, crime\",\"One, Two, Buckle My ShoeAgatha Christie, Hugh Fraser\"\r\n8807,9470,29236299,\"Amie Kaufman, Jay Kristoff, Marie Lu\",Gemina,https://images.gr-assets.com/books/1480097137l/29236299.jpg,4.56,10960,\"romance, fantasy\",\"\"\"When the space station Heimdall is invaded, Hannah and Nik must work\ntogether to defeat the enemy\"\"--\"\r\n8808,9471,51740,Chris Crutcher,Staying Fat for Sarah Byrnes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435028275l/51740._SX318_.jpg,3.94,11544,\"fiction, sports\",Staying Fat for Sarah ByrnesChris Crutcher\r\n8809,9472,73960,\"R.D. Blackmore, Michelle Allen\",Lorna Doone: A Romance of Exmoor,https://images.gr-assets.com/books/1299346797l/73960.jpg,3.71,11716,\"classics, fiction\",\"First published in 1869, Lorna Doone is the story of John Ridd, a farmer\nwho finds love amid the religious and social turmoil of seventeenth-century\nEngland. He is just a boy when his father is slain by the Doones, a lawless\nclan inhabiting wild Exmoor on the border of Somerset and Devon. Seized by\ncuriosity and a sense of adventure, he makes his way to the valley of the\nDoones, where he is discovered by the beautiful Lorna. In time their\nchildish fantasies blossom into mature love—a bond that will inspire John\nto rescue his beloved from the ravages of a stormy winter, rekindling a\nconflict with his archrival, Carver Doone, that climaxes in heartrending\nviolence. Beloved for its portrait of star-crossed lovers and its\nsurpassing descriptions of the English countryside, Lorna Doone is R. D.\nBlackmore’s enduring masterpiece. For more than seventy years, Penguin has\nbeen the leading publisher of classic literature in the English-speaking\nworld. With more than 1,700 titles, Penguin Classics represents a global\nbookshelf of the best works throughout history and across genres and\ndisciplines. Readers trust the series to provide authoritative texts\nenhanced by introductions and notes by distinguished scholars and\ncontemporary authors, as well as up-to-date translations by award-winning\ntranslators.\"\r\n8810,9473,53809,Paulo Coelho,Maktub,https://images.gr-assets.com/books/1361293164l/53809.jpg,3.41,5902,\"philosophy, ebooks\",MaktubPaulo Coelho\r\n8811,9474,10599302,Jill Shalvis,\"Head Over Heels (Lucky Harbor, #3)\",https://images.gr-assets.com/books/1302052809l/10599302.jpg,4.16,16560,\"romance, contemporary\",\"Head Over Heels (Lucky Harbor, #3)Jill Shalvis\"\r\n8812,9475,1866046,Ted Dekker,Adam,https://images.gr-assets.com/books/1364953816l/1866046.jpg,3.93,9903,\"fiction, thriller\",AdamTed Dekker\r\n8813,9476,388018,\"Agatha Christie, Robin Bailey\",The Clocks,https://images.gr-assets.com/books/1375949009l/388018.jpg,3.71,12335,\"mystery, fiction\",\"The ClocksAgatha Christie, Robin Bailey\"\r\n8814,9477,15818278,Jennifer McMahon,The one I left behind,https://images.gr-assets.com/books/1348689472l/15818278.jpg,3.76,10266,\"mystery, fiction\",The one I left behindJennifer McMahon\r\n8815,9478,89370,Benjamin Hoff,Tao of Pooh and Te of Piglet Boxed Set,https://images.gr-assets.com/books/1444316923l/89370.jpg,4.15,8206,\"spirituality, philosophy\",Tao of Pooh and Te of Piglet Boxed SetBenjamin Hoff\r\n8816,9479,21433251,\"Stacy King, SunNeko Lee, Crystal S. Chan, Victor Hugo\",Manga Classics: Les Misérables,https://images.gr-assets.com/books/1421108133l/21433251.jpg,4.1,6691,\"manga, classics\",\"In graphic novel format, tells the story of Jean Valjean, an ex-convict\nwho, trying to forget his past and live an honest life, risks his freedom\nto take care of a motherless young girl during a period of political unrest\nin Paris.\"\r\n8817,9480,280125,R.A. Salvatore,The Orc King,https://images.gr-assets.com/books/1474922224l/280125.jpg,4.11,9012,\"fantasy, fiction\",\"The uneasy peace between the dwarves of Mithral Hall and the orcs of the\nKingdom of Many Arrows begins to falter as the tribes of orcs under the\ncommand of Obould begin to battle one another, and Bruenor becomes\ndetermined to finish the war that had nearly destroyed him, in a new volume\nin the saga of dark elf Drizzt Do'Urden and his companions. Reprint.\"\r\n8818,9481,127567,Anne McCaffrey,The Dolphins of Pern,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1204646934l/127567.jpg,3.94,12938,\"fantasy, fiction\",\"Two boys, one of them a dragonrider, re-establish crucial contact with the\nwise dolphins, the legendary \"\"shipfish\"\" of Pern.\"\r\n8819,9482,164836,S.A.R.K.,Succulent Wild Woman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441651299l/164836._SX318_.jpg,4.12,9365,\"nonfiction, art\",\"This book is my glowing invitation to you—to live a rich, succulent life! I\nexplore love, sexuality, romance, money, fat, fear and creativity. It's a\nlittle bit like reading my diary -- with permission. Succulence is\npowerFull! and so are we as women.\"\r\n8820,9483,77866,William  Boyd,Any Human Heart,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912980l/77866.jpg,4.26,8365,\"fiction, contemporary\",\"William Boyd’s masterful new novel tells, in a series of intimate journals,\nthe story of Logan Mountstuart—writer, lover, art dealer, spy—as he makes\nhis often precarious way through the twentieth century.\"\r\n8821,9484,10720733,John Grisham,The Abduction,https://images.gr-assets.com/books/1328093951l/10720733.jpg,3.76,9346,\"mystery, fiction\",\"When his best friend disappears from her bedroom in the middle of the\nnight, thirteen-year-old Theo uses his legal knowledge and investigative\nskills to chase down the truth and save April.\"\r\n8822,9485,15776904,\"Oliver Pötzsch, Lee Chadeayne\",\"Die Henkerstochter und der König der Bettler (Band 3 aus der Reihe \"\"Die Henkerstochter-Saga\"\")\",https://images.gr-assets.com/books/1346669999l/15776904.jpg,3.95,10271,\"mystery, fiction\",\"Die Henkerstochter und der König der Bettler (Band 3 aus der Reihe \"\"Die Henkerstochter-Saga\"\")Oliver Pötzsch, Lee Chadeayne\"\r\n8823,9487,8710484,Michel Houellebecq,La Carte et le territoire,https://images.gr-assets.com/books/1498812783l/8710484.jpg,3.93,5631,\"fiction, contemporary\",\"Si Jed Martin, le personnage principal de ce roman, devait vous en raconter\nl’histoire, il commencerait peut-être par vous parler d’une panne de\nchauffe-eau, un certain 15 décembre. Ou de son père, architecte connu et\nengagé, avec qui il passe seul de nombreux réveillons de Noël. Il\névoquerait certainement Olga, une très jolie Russe rencontrée au début de\nsa carrière, lors d’une première exposition de son travail photographique à\npartir de cartes routières Michelin. C’était avant que le succès mondial\nn’arrive avec la série des « métiers », ces portraits de personnalités de\ntous milieux (dont l’écrivain Michel Houellebecq), saisis dans l’exercice\nde leur profession. Il devrait dire aussi comment il aida le commissaire\nJasselin à élucider une atroce affaire criminelle, dont la terrifiante mise\nen scène marqua durablement les équipes de police. Sur la fin de sa vie il\naccèdera à une certaine sérénité, et n’émettra plus que des murmures.\nL’art, l’argent, l’amour, le rapport au père, la mort, le travail, la\nFrance devenue un paradis touristique sont quelques-uns des thèmes de ce\nroman, résolument classique et ouvertement moderne.\"\r\n8824,9488,20821249,J.D. Robb,Festive in Death,https://images.gr-assets.com/books/1458263204l/20821249.jpg,4.26,9784,\"mystery, romance\",Festive in DeathJ.D. Robb\r\n8825,9489,94064,Alex   Sanchez,Rainbow Boys,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388281942l/94064.jpg,3.85,11146,\"fiction, romance\",\"Jason Carrillo is a jock with a steady girlfriend, but he can't stop\ndreaming about sex...with other guys. Kyle Meeks doesn't look gay, but he\nis. And he hopes he never has to tell anyone -- especially his parents.\nNelson Glassman is \"\"out\"\" to the entire world, but he can't tell the boy he\nloves that he wants to be more than just friends. Three teenage boys,\ncoming of age and out of the closet. In a revealing debut novel that\npercolates with passion and wit, Alex Sanchez follows these very different\nhigh-school seniors as their struggles with sexuality and intolerance draw\nthem into a triangle of love, betrayal, and ultimately, friendship.\"\r\n8826,9490,1838166,Jeanne Birdsall,The Penderwicks on Gardam Street,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538403953l/1838166._SX318_.jpg,4.23,13423,\"fiction, contemporary\",\"The four Penderwick sisters are faced with the unimaginable prospect of\ntheir widowed father dating, and so they hatch a plot to stop him.\"\r\n8827,9491,38562,Lynsay Sands,A Bite to Remember,https://images.gr-assets.com/books/1351280715l/38562.jpg,4.23,16516,\"romance, paranormal\",\"Rule #1: Never get involved with someone who won't be there for you when\nthe sun comes up. Once bitten, twice shy, and sexy PI Jackie Morrisey\nwasn't going there again. Vincent Argeneau may be the hottest guy she's\never met, living or dead, but she's here to stop a killer from turning this\nvampire into dust, not to jump into bed with him. Rule #2: Never kiss a\nvampire . . . it can be a pain in the neck. Okay, so Vincent's had four\nhundred years to perfect his kissing skills, and he does look rather\ntempting when he runs around the house shirtless. He's also charming,\nprotective . . . did we mention he can kiss? Jackie needs to be on her\nguard, or else she'll have to come up with a new rule: If you're going to\nfall in love with a vampire, make sure it's a bite to remember.\"\r\n8828,9492,13722526,\"Lars Kepler, Laura A. Wideburg\",Paganinikontraktet,https://images.gr-assets.com/books/1340909323l/13722526.jpg,3.78,6917,\"crime, thriller\",\"PaganinikontraktetLars Kepler, Laura A. Wideburg\"\r\n8829,9493,114143,Nora Roberts,The Reef,https://images.gr-assets.com/books/1309201310l/114143.jpg,3.89,13932,\"romance, fiction\",\"Searching for a sunken treasure, a beautiful marine biologist and a sexy\nsalvager form an uneasy alliance--and danger and desire rise to the\nsurface.\"\r\n8830,9494,68930,Agatha Christie,They Do it with Mirrors,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760572l/68930.jpg,3.74,13214,\"mystery, crime\",They Do it with MirrorsAgatha Christie\r\n8831,9495,9260507,Matthew Inman,5 Very Good Reasons to Punch a Dolphin in the Mouth (and Other Useful Guides),https://images.gr-assets.com/books/1309685137l/9260507.jpg,4.11,9469,\"comics, fiction\",\"Prepare to laugh your ass off.The hilarity of TheOatmeal.com is now\npresented in book form with 35 never-before-seen pieces and 25 classic\nfavorites from the Web site, including 6 Types of Crappy Hugs and 17 Things\nWorth Knowing about Your Cat. In Matthew Inman's 5 Very Good Reasons to\nPunch a Dolphin in the Mouth (And Other Useful Guides), samurai sword-\nwielding kittens and hamsters that love .50-caliber machine guns commingle\nwith a cracked out Tyrannosaur that is extremely hard to potty train. Bacon\nis better than true love and you may awake in the middle of the night to\nfind your nephew nibbling on your toes. Inman creates these quirky scenes\nfor theoatmeal.com, which launched in July 2009 and already has more than\n82 million page views. In fact, every 15 to 30 seconds, someone Googles one\nof theoatmeal.com's creations. Now, 60 of Inman's comic illustrations and\nlife-bending guides are presented in full-color inside 5 Very Good Reasons\nto Punch a Dolphin in the Mouth (And Other Useful Guides). Consider such\nhandy advice as: * 4 Reasons to Carry a Shovel at All Times * 6 Types of\nCrappy Hugs * 8 Ways to Tell if Your Loved One Plans to Eat You * 17 Things\nWorth Knowing About Your Cat * 20 Things Worth Knowing About Beer\"\r\n8832,9496,239381,Mercer Mayer,Just a Mess (Look-Look),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273675l/239381.jpg,4.23,10772,fiction,A boy cleans up his messy room to try to find his baseball mitt.\r\n8833,9497,835155,Melissa Senate,See Jane Date,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328049767l/835155.jpg,3.49,9292,\"fiction, romance\",See Jane DateMelissa Senate\r\n8834,9498,221298,Conn Iggulden,The Gods of War,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388851086l/221298.jpg,4.29,8984,\"fiction, history\",The Gods of WarConn Iggulden\r\n8835,9499,89186,Alastair Reynolds,Pushing Ice,https://images.gr-assets.com/books/1309197028l/89186.jpg,4.02,9365,\"fiction, science\",Pushing IceAlastair Reynolds\r\n8836,9501,17285330,Cynthia Hand,The Last Time We Say Goodbye,https://images.gr-assets.com/books/1403710453l/17285330.jpg,4.11,11063,\"contemporary, fiction\",The Last Time We Say GoodbyeCynthia Hand\r\n8837,9502,7780,\"Dr. Seuss, Maurice Sendak, Audrey Geisel\",The Secret Art of Dr. Seuss,https://images.gr-assets.com/books/1320429156l/7780.jpg,4.05,8461,\"art, nonfiction\",\"A collection of private works by the late Theodor Geisel, otherwise known\nas Dr. Seuss, encompasses the highly creative and often whimsical paintings\nthat he created for his own pleasure, as provided by his wife Audrey.\n40,000 first printing.\"\r\n8838,9503,25347,Anne Rice,Christ the Lord: Out of Egypt,https://images.gr-assets.com/books/1381744119l/25347.jpg,3.56,10729,\"religion, history\",Christ the Lord: Out of EgyptAnne Rice\r\n8839,9504,26228034,N.K. Jemisin,The Obelisk Gate,https://images.gr-assets.com/books/1441406262l/26228034.jpg,4.36,9481,\"fantasy, fiction\",\"\"\"Intricate and extraordinary.\"\" - New York Times on The Fifth Season\nContinuing the trilogy that began with the award-winning The Fifth Season\nWinner of the Hugo Award Shortlisted for the Nebula, Audie, and Locus\nAwards The inaugural Wired.com book club book New York Times Notable Book\nof 2015 This is the way the world ends, for the last time. The season of\nendings grows darker, as civilization fades into the long cold night. Essun\n-- once Damaya, once Syenite, now avenger -- has found shelter, but not her\ndaughter. Instead there is Alabaster Tenring, destroyer of the world, with\na request. But if Essun does what he asks, it would seal the fate of the\nStillness forever. Far away, her daughter Nassun is growing in power - and\nher choices will break the world. For more from N. K. Jemisin, check out:\nThe Inheritance Trilogy The Hundred Thousand Kingdoms The Broken Kingdoms\nThe Kingdom of Gods The Inheritance Trilogy (omnibus edition) Shades in\nShadow: An Inheritance Triptych (e-only short fiction) The Awakened Kingdom\n(e-only novella) Dreamblood Duology The Killing Moon The Shadowed Sun The\nBroken Earth The Fifth SeasonThe Obelisk GateThe Stone Sky\"\r\n8840,9505,23363874,Matt Haig,Reasons To Stay Alive ,https://images.gr-assets.com/books/1418674667l/23363874.jpg,4.17,11307,\"nonfiction, memoir\",\"WHAT DOES IT MEAN TO FEEL TRULY ALIVE?Aged 24, Matt Haig's world caved in.\nHe could see no way to go on living. This is the true story of how he came\nthrough crisis, triumphed over an illness that almost destroyed him and\nlearned to live again.A moving, funny and joyous exploration of how to live\nbetter, love better and feel more alive, Reasons to Stay Alive is more than\na memoir. It is a book about making the most of your time on earth.'I wrote\nthis book because the oldest clichés remain the truest. Time heals. The\nbottom of the valley never provides the clearest view. The tunnel does have\nlight at the end of it, even if we haven't been able to see it . . . Words,\njust sometimes, really can set you free.'\"\r\n8841,9506,6280379,A.S. Byatt,The Children's Book,https://images.gr-assets.com/books/1320548114l/6280379.jpg,3.66,10985,\"fiction, contemporary\",\"A tale spanning the end of the Victorian era through World War I finds\nfamous children's book author Olive Wellwood taking in a runaway and\nexposing the boy to dark truths about her family's summer bacchanals at\ntheir rambling country house.\"\r\n8842,9508,961831,Susanna Kearsley,The Shadowy Horses,https://images.gr-assets.com/books/1428617658l/961831.jpg,3.92,10640,\"romance, fiction\",\"Archaeologist Verity Grey travels to the Scottish Borderlands to search for\nthe resting place of the Ninth Roman Legion after a local boy spots what he\nclaims was a Roman soldier walking in the fields.\"\r\n8843,9509,820517,Jack Gantos,Joey Pigza Swallowed the Key (Joey Pigza Books),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348826578l/820517.jpg,3.74,12985,\"fiction, contemporary\",\"\"\"They say I'm wired bad, or wired sad, but there's no doubt about it—I'm\nwired.\"\" Joey Pigza's got heart, he's got a mom who loves him, and he's got\n\"\"dud meds,\"\" which is what he calls the Ritalin pills that are supposed to\neven out his wild mood swings. Sometimes Joey makes bad choices. He learns\nthe hard way that he shouldn't stick his finger in the pencil sharpener, or\nswallow his house key, or run with scissors. Joey ends up bouncing around a\nlot - and eventually he bounces himself all the way downtown, into the\ndistrict special-ed program, which could be the end of the line. As Joey\nknows, if he keeps making bad choices, he could just fall between the\ncracks for good. But he is determined not to let that happen. In this antic\nyet poignant new novel, Jack Gantos has perfect pitch in capturing the\nhumor, the off-the-wall intensity, and the serious challenges that life\npresents to a kid dealing with hyper-activity and related disorders. This\ntitle has Common Core connections. Joey Pigza Swallowed the Key is a 1998\nNational Book Award Finalist for Young People's Literature.\"\r\n8844,9510,3690427,\"Jacqueline Winspear, Orlagh Cassidy\",Among the Mad,https://images.gr-assets.com/books/1422084387l/3690427.jpg,4.1,11363,\"mystery, fiction\",\"Among the MadJacqueline Winspear, Orlagh Cassidy\"\r\n8845,9512,3692151,عمر طاهر,شكلها باظت,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215585555l/3692151.jpg,3.52,8257,\"ebooks, comics\",شكلها باظتعمر طاهر\r\n8846,9513,4530,Helen Fielding,Olivia Joules And The Overactive Imagination,https://images.gr-assets.com/books/1408588694l/4530.jpg,3.1,10687,\"fiction, romance\",Olivia Joules And The Overactive ImaginationHelen Fielding\r\n8847,9514,8857310,Sarah Vowell,Unfamiliar Fishes,https://images.gr-assets.com/books/1311706005l/8857310.jpg,3.6,10389,\"nonfiction, travel\",Unfamiliar FishesSarah Vowell\r\n8848,9515,5750628,Jonathan L. Howard,Johannes Cabal the Necromancer,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442673488l/5750628._SY475_.jpg,3.94,10603,\"fantasy, fiction\",Johannes Cabal the NecromancerJonathan L. Howard\r\n8849,9516,7199,Ann-Marie MacDonald,The Way the Crow Flies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433037834l/7199._SY475_.jpg,4.08,10227,\"fiction, mystery\",The Way the Crow FliesAnn-Marie MacDonald\r\n8850,9517,17810,\"Ryū Murakami, Ralph McCarthy\",イン ザ・ミソスープ,https://images.gr-assets.com/books/1309282509l/17810.jpg,3.61,9285,\"fiction, horror\",\"When tour guide Kenji is hired by Frank, an American with bizarre habits,\nto show him the seamier side of Tokyo's nightlife, the man's strange\nbehavior leads Kenji to suspect that he is the serial killer that has been\nterrorizing the area.\"\r\n8851,9518,6403690,Timothy J. Keller,\"Counterfeit Gods: The Empty Promises of Money, Sex, and Power, and the Only Hope That Matters\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347522118l/6403690.jpg,4.32,8783,\"christian, religion\",\"Arguing that happiness can only be obtained through God, the best-selling\nauthor of The Prodigal God explains how people are preconditioned to pursue\n\"\"false idols\"\" in the form of relationships, money, and careers, outlining a\nbiblically based path to lasting fulfillment. Reprint. A best-selling book.\"\r\n8852,9519,167216,Elizabeth Strout,Amy & Isabelle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348311763l/167216.jpg,3.73,10602,\"fiction, contemporary\",\"Explores the dark secret that jeopardizes the love between a mother and her\ndaughter in a small mill town.\"\r\n8853,9520,15803037,Jason  Matthews,Red Sparrow,https://images.gr-assets.com/books/1361806944l/15803037.jpg,4.02,6998,\"fiction, thriller\",\"Drafted against her will to serve the regime of Vladimir Putin as an\nintelligence seductress, Dominika Egorova engages in a charged effort of\ndeception and tradecraft with first-tour CIA officer Nathaniel Nash before\na forbidden attraction threatens their careers.\"\r\n8854,9521,7632329,Ben Macintyre,Operation Mincemeat: The True Spy Story That Changed the Course of World War II,https://images.gr-assets.com/books/1327448835l/7632329.jpg,3.95,8112,\"history, nonfiction\",\"From the bestselling author of Agent Zigzag. The thrilling true story of\nthe greatest and most successful wartime deception ever attempted A Richard\n& Judy Book Club selection\"\r\n8855,9522,487666,\"Dick Winters, Cole C. Kingseed\",Beyond Band of Brothers: The War Memoirs of Major Dick Winters,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442890529l/487666._SY475_.jpg,4.24,9712,\"history, biography\",\"The commander of Easy Company provides a firsthand memoir of combat during\nWorld War II, describing the role of the \"\"Band of Brothers\"\" during the\nD-Day invasion, the march into Germany, and the liberation of an S.S. death\ncamp.\"\r\n8856,9523,19523454,Chuck Palahniuk,Beautiful You,https://images.gr-assets.com/books/1399667103l/19523454.jpg,2.98,8507,\"fiction, contemporary\",Beautiful YouChuck Palahniuk\r\n8857,9524,232268,Richard Paul Evans,The Locket,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437616427l/232268._SY475_.jpg,4.1,10147,\"fiction, romance\",\"Working at a rest home after caring for his mother during her terminal\nillness, Michael accepts the deathbed request of an elderly woman to return\nher cherished locket--given to her by a long-lost love--to her old hometown\"\r\n8858,9525,400881,Glen Cook,Shadows Linger,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436464351l/400881._SY475_.jpg,4.15,10975,\"fantasy, fiction\",\"The Black Company, courageous mercenaries serving the Lady, battles the\nevil rebel forces falsely professing to follow the White Rose, a long-dead\nheroine, and discovers the mute girl they rescued is the true White Rose\nreborn\"\r\n8859,9526,77739,David Weber,Honor Among Enemies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923993l/77739.jpg,4.24,12506,\"fiction, ebooks\",\"Offered a chance to reclaim her career with the Royal Manticoran Navy,\nexiled officer Honor Harrington is charged with stopping a band of pirates,\na mission that soon has her questioning who are her friends and who are her\nenemies\"\r\n8860,9527,10859509,Jennifer Rush,Altered,https://images.gr-assets.com/books/1344445982l/10859509.jpg,4.04,15692,\"romance, paranormal\",AlteredJennifer Rush\r\n8861,9528,22571696,J.D. Robb,Obsession in Death,https://images.gr-assets.com/books/1406509523l/22571696.jpg,4.33,9565,\"mystery, romance\",Obsession in DeathJ.D. Robb\r\n8862,9530,139176,M.C. Beaton,Agatha Raisin and the Quiche of Death,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271281l/139176.jpg,3.75,10925,\"mystery, fiction\",Agatha Raisin and the Quiche of DeathM.C. Beaton\r\n8863,9532,179565,\"L. Frank Baum, David McKee\",\"Marvelous Land of Oz, The\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172470286l/179565._SY475_.jpg,3.82,11402,\"classics, fantasy\",\"Second Oz book; Scarecrow and Tin Woodman are back with hero named Tip. 120\nblack-and-white, 16 full-color illustrations.\"\r\n8864,9533,6159,Sherman Alexie,Reservation Blues,https://images.gr-assets.com/books/1398195783l/6159.jpg,3.98,9919,\"fiction, music\",\"When Robert Johnson passes his enchanted guitar to Thomas-Builds-the-Fire,\nan epic journey of redemption begins that will take the storyteller and\nmusician from the reservation, to Seattle, to Manhattan, and all points in\nbetween. Reader's Guide included. Reprint.\"\r\n8865,9536,46906,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 15,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441381006l/46906._SX318_.jpg,4.45,12888,\"manga, fantasy\",\"Tohru Honda was an orphan when one day fate kicked her out of the house and\nonto land belonging to the mysterious Sohma family. Everything goes well\nuntil she discovers the Sohma family's secret, when hugged by members of\nthe opposite sex, they turn into their Chinese zodiac animal!\"\r\n8866,9537,8086216,Yotam Ottolenghi,Plenty,https://images.gr-assets.com/books/1327921381l/8086216.jpg,4.32,8023,\"cookbooks, nonfiction\",\"With his fabulous restaurants and bestselling Ottolenghi Cookbook, Yotam\nOttolenghi has established himself as one of the most exciting talents in\nthe world of cookery and food writing. This exclusive collection of\nvegetarian recipes is drawn from his column 'The New Vegetarian' for the\nGuardian's Weekend magazine, and features both brand-new recipes and dishes\nfirst devised for that column. Yotam's food inspiration comes from his\nstrong Mediterranean background and his unapologetic love of ingredients.\nNot a vegetarian himself, his approach to vegetable dishes is wholly\noriginal and innovative, based on strong flavours and stunning, fresh\ncombinations. With sections devoted to cooking greens, aubergines,\nbrassicas, rice and cereals, pasta and couscous, pulses, roots, squashes,\nonions, fruit, mushrooms and tomatoes, the breadth of colours, tastes and\ntextures is extraordinary. Featuring vibrant, evocative food photography\nfrom acclaimed photographer Jonathan Lovekin, and with Yotam's voice and\npersonality shining through, Plenty is a must-have for meat-eaters and\nvegetarians alike.\"\r\n8867,9538,88072,John Scalzi,Agent to the stars,https://images.gr-assets.com/books/1303914309l/88072.jpg,3.91,10086,\"fiction, fantasy\",\"Hot Hollywood agent Thomas Stein advocates on behalf of the peace-seeking\nYherajk race, but finds his considerable negotiating talents challenged by\nhis efforts to win humanity's trust in the ugly, bad-smelling aliens.\"\r\n8868,9539,15707526,Terry Goodkind,The First Confessor,https://images.gr-assets.com/books/1340889153l/15707526.jpg,4.19,9311,\"fantasy, fiction\",\"In a time before legends had yet been born... Married to the powerful\nleader of her people, safe among those gifted with great ability, Magda\nSearus is protected from a distant world descending into war. But when her\nhusband unexpectedly commits suicide, she suddenly finds herself alone.\nThough she is not gifted, Magda begins to discover that there may be more\nto her husband's suicide than anyone knew. She knows that she must embark\non a mission to find a mysterious spiritist so that she may speak with the\ndead. This quest may also be Magda's last chance to unravel what is really\nbehind the mysterious events befalling her people. It seems the war is\ngoing far worse than she had known, and that the consequences of defeat\nwill be more terrifying for her and her people than she could have\nimagined. As mortal peril begin to close in around her, Magda learns that\nshe is somehow the key to her people's salvation.\"\r\n8869,9540,581552,Franz Kafka,In der Strafkolonie,https://images.gr-assets.com/books/1480867517l/581552.jpg,4,8974,\"classics, fiction\",In der StrafkolonieFranz Kafka\r\n8870,9541,6344534,Richard   Phillips,The Second Ship,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348493301l/6344534.jpg,3.73,4281,\"fiction, thriller\",\"\"\"In 1948, an alien starship crash-landed in the New Mexico desert and\nbrought with it the key to mankind's future. Code-named the Rho Project,\nthe landing was shrouded in secrecy, and only the highest-ranking US\ngovernment and military personnel knew it existed. Until now. The US\npresident is preparing to unveil one of the nation's greatest secrets when\nthree students stumble across the wreckage of a second ship outside of Los\nAlamos. With a single touch, the alien technology the government has spent\nuntold resources trying to unlock is uploaded into the minds of three\nteenagers - teenagers who now know the frightening truth about the Rho\nProject. The battle for humanity has begun\"\"--P. [4] of cover.\"\r\n8871,9542,91439,Louise Erdrich,The Beet Queen,https://images.gr-assets.com/books/1358758806l/91439.jpg,3.89,10495,\"fiction, contemporary\",\"On a spring morning in 1932, young Karl and Mary Adare arrive by boxcar in\nArgus, North Dakota. After being orphaned in a most peculiar way, they seek\nrefuge in the butcher shop of their aunt Fritzie and her husband, Pete;\nordinary Mary, who will cause a miracle, and seductive Karl, who lacks his\nsister's gift for survival, embark upon an exhilarating life-journey\ncrowded with colorful, unforgettable characters and marked by the\nextraordinary magic of natural events. The bestselling, award-winning\nauthor of The Painted Drum, Louise Erdrich dazzles in this vibrant and\nheartfelt tale of abandonment and sexual obsession, jealousy and unstinting\nlove that explores with empathy, humor, and power the eternal mystery of\nthe human condition.\"\r\n8872,9544,481743,\"Morton Rhue, Todd Strasser\",The Wave,https://images.gr-assets.com/books/1320402950l/481743.jpg,3.54,9392,\"fiction, classics\",\"Tells the story of a high school history class experiment that\nfrighteningly demonstrated the power of fascism.\"\r\n8873,9545,576666,Helen Hooven Santmyer,\"\"\"...And Ladies of the Club\"\"\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388243144l/576666.jpg,4.12,10177,\"fiction, classics\",\"A saga of the lives of two families in a small southwestern Ohio town\nchronicles the town's political, cultural, and social transformation,\nbetween 1868 and 1932, as seen through the eyes of members of the local\nwomen's literary club. Reprint.\"\r\n8874,9546,23460830,Christopher Moore,Secondhand Souls,https://images.gr-assets.com/books/1434397134l/23460830.jpg,3.92,7925,\"fiction, fantasy\",Secondhand SoulsChristopher Moore\r\n8875,9547,21535784,\"Mary Higgins Clark, Alafair Burke\",The Cinderella Murder ,https://images.gr-assets.com/books/1403544444l/21535784.jpg,3.81,8641,\"mystery, fiction\",\"The Cinderella Murder Mary Higgins Clark, Alafair Burke\"\r\n8876,9549,18266,\"François Rabelais, M.A. Screech\",La vie de Gargantua et de Pantagruel,https://images.gr-assets.com/books/1336964698l/18266.jpg,3.71,10379,\"classics, fiction\",\"A masterly new translation of Rabelais s robust scatalogical comedy\nParodying everyone from classic authors to his own contemporaries, the\ndazzling and exuberant stories of Rabelais expose human follies with\nmischievous and often obscene humor. Gargantua depicts a young giant who\nbecomes a cultured Christian knight. Pantagruel portrays Gargantua s\nbookish son who becomes a Renaissance Socrates, divinely guided by wisdom\nand by his idiotic, self-loving companion, Panurge.\"\r\n8877,9550,93453,George Carlin,When Will Jesus Bring the Pork Chops?,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442702106l/93453._SX318_.jpg,3.84,9139,\"nonfiction, fiction\",\"Now in paperback, the New York Times bestseller that takes readers on a\nriotous journey through the mind of one of America's premier comics George\nCarlin's legendary irreverence and iconoclasm are on full display in When\nWill Jesus Bring the Pork Chops as he vainly scours the American landscape\nfor signs of intelligence in his third national bestseller. Ranging from\nhis absurdist side (Message from a Cockroach; TV News: The Death of Humpty\nDumpty; Tips for Serial Killers) to his unerring ear for American speech\n(Politician Talk; Societal Clichs; Euphemisms: 13 sections) to his\nunsparing views on America and its values (War, God, Stuff Like That; Zero\nTolerance; Tired of the Handi-crap), Carlin delivers everything that his\nfans expect, and then adds a few surprises. Carlin on the battle of the\nsexes: Here's all you have to know about men and women: Women are crazy,\nmen are stupid. And the main reason women are crazy is that men are stupid.\"\r\n8878,9552,9532302,Glen Duncan,The Last Werewolf,https://images.gr-assets.com/books/1287572224l/9532302.jpg,3.47,10986,\"fantasy, horror\",\"Rendered the last of his kind after a colleague's death, 200-year-old\nwerewolf Jake struggles with depression and contemplates suicide until\npowerful forces that have personal agendas and the power to keep him alive\ntake over his life. By the author of A Day and a Night and a Day. Reprint.\"\r\n8879,9553,19138879,\"Hajime Isayama, Hikaru Suruga, Gan Sunaaku\",進撃の巨人 悔いなき選択 1,https://images.gr-assets.com/books/1398033046l/19138879.jpg,4.52,9032,\"manga, fantasy\",\"進撃の巨人 悔いなき選択 1Hajime Isayama, Hikaru Suruga, Gan Sunaaku\"\r\n8880,9554,54666,Thomas Frank,What's the Matter with Kansas? How Conservatives Won the Heart of America,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440704979l/54666._SY475_.jpg,3.83,9003,\"nonfiction, history\",\"With a New Afterword by the Author The New York Times bestseller, praised\nas \"\"hilariously funny . . . the only way to understand why so many\nAmericans have decided to vote against their own economic and political\ninterests\"\" (Molly Ivins) Hailed as \"\"dazzlingly insightful and wonderfully\nsardonic\"\" (Chicago Tribune), \"\"very funny and very painful\"\" (San Francisco\nChronicle), and \"\"in a different league from most political books\"\" (The New\nYork Observer), What's the Matter with Kansas? unravels the great political\nmystery of our day: Why do so many Americans vote against their economic\nand social interests? With his acclaimed wit and acuity, Thomas Frank\nanswers the riddle by examining his home state, Kansas-a place once famous\nfor its radicalism that now ranks among the nation's most eager\nparticipants in the culture wars. Charting what he calls the \"\"thirty-year\nbacklash\"\"-the popular revolt against a supposedly liberal establishment-\nFrank reveals how conservatism, once a marker of class privilege, became\nthe creed of millions of ordinary Americans. A brilliant analysis-and funny\nto boot-What's the Matter with Kansas? is a vivid portrait of an upside-\ndown world where blue-collar patriots recite the Pledge while they strangle\ntheir life chances; where small farmers cast their votes for a Wall Street\norder that will eventually push them off their land; and where a group of\nfrat boys, lawyers, and CEOs has managed to convince the country that it\nspeaks on behalf of the People.\"\r\n8881,9555,11942408,عمرو سلامة,شاب كشك في رحلة البحث عن الجادون,https://images.gr-assets.com/books/1309784315l/11942408.jpg,3.66,8128,\"philosophy, ebooks\",شاب كشك في رحلة البحث عن الجادونعمرو سلامة\r\n8882,9556,14460,Carrie Vaughn,Kitty Goes to Washington,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420989109l/14460.jpg,3.87,16725,\"paranormal, fantasy\",Kitty Goes to WashingtonCarrie Vaughn\r\n8883,9557,857418,\"Ruth Krauss, Crockett Johnson\",The Carrot Seed,https://images.gr-assets.com/books/1394411446l/857418.jpg,4.07,12420,\"fiction, classics\",\"When a little boy plants a carrot seed, everyone tells him it won't grow.\nBut when you are very young, there are some things that you just know, and\nthe little boy knows that one day a carrot will come up. So he waters his\nseed, and pulls the weeds, and he waits ... First published in 1945 and\nnever out of print, this timeless combination of Ruth Krauss's simple text\nand Crockett Johnson's eloquent illustrations creates a triumphant and\ndeeply satisfying story for readers of all ages.\"\r\n8884,9558,21857294,Whitney G.,Reasonable Doubt: Volume 3,https://images.gr-assets.com/books/1407412246l/21857294.jpg,4.19,19933,\"romance, contemporary\",\"I hate him... I hate that I fell in love with him, I hate that he didn't\nlove me back, and I hate the fact that I just made a life-altering decision\njust so I could get the hell away from him. He'd always said that he was\nunchangeable, heartless, and cold... I really should've believed him...\n**Final book in the Reasonable Doubt series**\"\r\n8885,9559,11605,\"Stephen King, Josh Hamilton\",Riding the Bullet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348419476l/11605.jpg,3.6,9809,\"fiction, horror\",\"Riding the BulletStephen King, Josh Hamilton\"\r\n8886,9560,5292173,Jack Campbell,\"Relentless (The Lost Fleet, #5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348632822l/5292173.jpg,4.05,10864,\"fiction, ebooks\",\"After rescuing POWs from a labor camp in the Heradao Star System, Captain\nJohn \"\"Black Jack\"\" Geary discovers that the Syndics plan to ambush his\nfleet, forcing him to jump from one star system to the next in an effort to\navoid the enemy.\"\r\n8887,9561,19106,\"Nikolai Gogol, Kevin Hawkes\",Нос,https://images.gr-assets.com/books/1360321953l/19106.jpg,3.92,10202,\"classics, fiction\",\"НосNikolai Gogol, Kevin Hawkes\"\r\n8888,9562,1624920,Carrie Vaughn,Kitty and the Silver Bullet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429677880l/1624920.jpg,3.99,15300,\"paranormal, fantasy\",Kitty and the Silver BulletCarrie Vaughn\r\n8889,9563,381440,\"Guy Debord, Donald Nicholson-Smith\",La Société du Spectacle,https://images.gr-assets.com/books/1370746722l/381440.jpg,4.04,9309,\"philosophy, art\",\"Analyzes the relationship of power, bureaucracy, and change in modern\nsociety\"\r\n8890,9564,603911,Charlie Higson,SilverFin,https://images.gr-assets.com/books/1404538648l/603911.jpg,3.8,10189,\"mystery, fiction\",SilverFinCharlie Higson\r\n8891,9565,24819476,Elin Hilderbrand,Winter Stroll,https://images.gr-assets.com/books/1431957489l/24819476.jpg,3.7,8397,\"fiction, romance\",\"The Quinn family celebrates their most dramatic Christmas yet in this\nenchanting sequel to Elin Hilderbrand's bestselling Winter Street.\nChristmas on Nantucket finds Winter Street Inn owner Kelley Quinn and his\nfamily busily preparing for the holiday season. Though the year has brought\ntragedy, the Quinns have much to celebrate: Kelley has reunited with his\nfirst wife Margaret, Kevin and Isabelle have a new baby; and Ava is finally\ndating a nice guy. But when Kelley's wife Mitzi shows up on the island,\nalong with Kevin's devious ex-wife Norah and a dangerously irresistible old\nfling of Ava's, the Inn is suddenly overrun with romantic feuds, not to\nmention guests. With jealousy, passion, and eggnog consumption at an all-\ntime high, it's going to take a whole lot more than a Christmas miracle to\nget the Quinns--and the Inn--through the holidays intact.\"\r\n8892,9566,70487,Bill Watterson,Attack of the Deranged Mutant Killer Monster Snow Goons: A Calvin and Hobbes Collection,https://images.gr-assets.com/books/1384735429l/70487.jpg,4.72,9713,\"comics, fiction\",Online: gocomics.com/calvinandhobbes/\r\n8893,9567,11556960,Gennifer Albin,Crewel,https://images.gr-assets.com/books/1376228331l/11556960.jpg,3.74,14101,\"fantasy, romance\",CrewelGennifer Albin\r\n8894,9568,1207980,Robert Leckie,Helmet For My Pillow (Military History (Ibooks)),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1181874286l/1207980.jpg,4.13,7907,\"history, nonfiction\",Helmet For My Pillow (Military History (Ibooks))Robert Leckie\r\n8895,9569,32075671,Angie Thomas,The Hate U Give,https://images.gr-assets.com/books/1476284759l/32075671.jpg,4.62,32610,\"contemporary, fiction\",\"8 starred reviews ∙ William C. Morris Award Winner ∙ National Book Award\nLonglist ∙ Printz Honor Book ∙ Coretta Scott King Honor Book ∙ #1 New York\nTimes Bestseller! \"\"Absolutely riveting!\"\" —Jason Reynolds \"\"Stunning.\"\" —John\nGreen \"\"This story is necessary. This story is important.\"\" —Kirkus (starred\nreview) \"\"Heartbreakingly topical.\"\" —Publishers Weekly (starred review) \"\"A\nmarvel of verisimilitude.\"\" —Booklist (starred review) \"\"A powerful, in-your-\nface novel.\"\" —Horn Book (starred review) Sixteen-year-old Starr Carter\nmoves between two worlds: the poor neighborhood where she lives and the\nfancy suburban prep school she attends. The uneasy balance between these\nworlds is shattered when Starr witnesses the fatal shooting of her\nchildhood best friend Khalil at the hands of a police officer. Khalil was\nunarmed. Soon afterward, his death is a national headline. Some are calling\nhim a thug, maybe even a drug dealer and a gangbanger. Protesters are\ntaking to the streets in Khalil’s name. Some cops and the local drug lord\ntry to intimidate Starr and her family. What everyone wants to know is:\nwhat really went down that night? And the only person alive who can answer\nthat is Starr. But what Starr does—or does not—say could upend her\ncommunity. It could also endanger her life. And don't miss On the Come Up,\nAngie Thomas's powerful follow-up to The Hate U Give.\"\r\n8896,9570,16170625,مصطفى إبراهيم,المانيفستو,https://images.gr-assets.com/books/1356926142l/16170625.jpg,4.21,7943,\"poetry, history\",\"This is the highly anticipated second volume of poetry by rising Egyptian\nstar Mostafa Ibrahim, the voice of the revolution!\"\r\n8897,9573,12075886,Susane Colasanti,Keep Holding On,https://images.gr-assets.com/books/1319236713l/12075886.jpg,3.85,11397,\"contemporary, romance\",\"Bullied at school and neglected by her poor, self-absorbed, single mother\nat home, high school junior Noelle finally reaches the breaking point after\na classmate commits suicide.\"\r\n8898,9574,4162673,P.D. James,The Private Patient,https://images.gr-assets.com/books/1409269308l/4162673.jpg,3.78,10461,\"mystery, fiction\",\"When investigative journalist Rhoda Gradwyn turns up dead after seeing\nrenowned plastic surgeon George Chandler-Powell for a routine surgical\nprocedure, Commander Adam Dalgliesh is called in to investigate.\"\r\n8899,9575,77738,David Weber,Flag in Exile,https://images.gr-assets.com/books/1321561696l/77738.jpg,4.22,11587,\"fiction, ebooks\",\"Struggling to deal with her lover's murder and a forced retirement, Captain\nHonor Harrington assumes the role of Steadholder on the planet Grayson, but\na threatening uprising calls her back into duty as head of the Grayson\nNavy.\"\r\n8900,9576,25955,\"Marshall McLuhan, Quentin Fiore, Jerome Agel\",The medium is the massage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1598544928l/25955._SY475_.jpg,3.95,8351,\"art, psychology\",\"The Medium is the Massage remains Marshall McLuhan's most popular book,\nperhaps as influential as Understanding Media. With every technological and\nsocial advance, McLuhan's theories reveal how prescient his insights\nactually proved to be. McLuhan's proclamation that 'the media work us over\ncompletely' becomes more evident every day. In his words, 'so pervasive are\nthey in their personal, political, economic, aesthetic, psychological,\nmoral, ethical and social consequences that they leave no part of us\nuntouched, unaffected, or unaltered.'\"\r\n8901,9577,96463,Anne McCaffrey,The Chronicles of Pern: First Fall,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348975559l/96463.jpg,4.02,11762,\"fantasy, fiction\",\"The survey: P.E.R.N. -- The dolphins' bell -- The ford of Red Hanrahan --\nThe second weyr -- Rescue run.\"\r\n8902,9578,248871,\"Kentaro Miura, Jason DeAngelis\",ベルセルク 1,https://images.gr-assets.com/books/1501000017l/248871.jpg,4.37,10362,\"manga, fantasy\",\"Volume 1: His name is Guts, the Black Swordsman, a feared warrior spoken of\nonly in whispers. Bearer of a gigantic sword, an iron hand, and the scars\nof countless battles and tortures, his flesh is also indelibly marked with\nThe Brand, an unholy symbol that draws the forces of darkness to him and\ndooms him as their sacrifice. But Guts won't take his fate lying down;\nhe'll cut a crimson swath of carnage through the ranks of the damned - and\nanyone else foolish enough to oppose him! Volume 2: The evil Count uses his\ndark powers to transform a defeated guard captain into an inhuman horror to\ncombat Guts, the Black Swordsman. Puck, Guts' pint-sized fairy sidekick, is\ncaptured when he attempts to stop an old doctor's execution, and he is\ngiven as a gift to the count's daughter, a sweet girl in a gilded cage,\nimprisoned by her father in her own room. Guts, determined to make\nmincemeat of the Count, assaults the castle and carves a swath of blood-\nsoaked destruction through the Count's minions. Volume 3: Guts, the feared\nBlack Swordsman, finishes his desperate battle with the monstrous Count,\ncutting and blasting him to gory scraps when the presence of the Count's\ndaughter makes the monster hesitate. But Guts won't even have the time to\nclean his gigantic sword when the Count's dying pleas activate the Behelit,\nsummoning the five God Hands, demon lords of immeasurable power. Guts'\njourney so far has been a long road of pain and death, but that's a walk in\nthe park compared to fighting his way out of Hell itself!\"\r\n8903,9579,3710,Zadie Smith,The Autograph Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388292766l/3710.jpg,3.14,8317,\"fiction, contemporary\",\"Autograph trader Alex-Li Tandem embarks on an odyssey that takes him from\nLondon to New York in pursuit of the only autograph that has ever really\nmattered to him, dealing with con men and fellow collectors who would\nhinder his quest.\"\r\n8904,9581,1372055,Jack Campbell,\"Courageous (Lost Fleet Series, #3)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348383516l/1372055.jpg,3.96,10933,\"fiction, ebooks\",CAMPBELL/LOST FLEET COURAGEOUS\r\n8905,9582,24902492,Cynthia Bond,Ruby,https://images.gr-assets.com/books/1423586473l/24902492.jpg,3.63,6749,\"fiction, contemporary\",\"Loving the beautiful but damaged Ruby all of his life, Ephram is torn\nbetween his sister and a chance for a life with Ruby when the latter\nreturns to their small hometown and confronts the forces that traumatized\nher early years.\"\r\n8906,9583,8487363,Rachel Vincent,My Soul to Steal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388801616l/8487363.jpg,4.13,14593,\"paranormal, fantasy\",\"Trying to work things out with Nash—her maybe boyfriend—is hard enough for\nKaylee Cavanaugh. She can't just pretend nothing happened. But\n\"\"complicated\"\" doesn't even begin to describe their relationship when his\nex-girlfriend transfers to their school, determined to take Nash back. See,\nSabine isn't just an ordinary girl. She's a mara, the living\npersonification of a nightmare. She can read people's fears—and craft them\ninto nightmares while her victims sleep. Feeding from human fear is how she\nsurvives. And Sabine isn't above scaring Kaylee and the entire school to\ndeath to get whatever—and whoever—she wants.\"\r\n8907,9584,110388,Julia Quinn,On the Way to Wedding,https://images.gr-assets.com/books/1368840197l/110388.jpg,3.83,16310,\"romance, fiction\",\"A funny thing happened ... Unlike most men of his acquaintance, Gregory\nBridgerton believes in true love. And he is convinced that when he finds\nthe woman of his dreams, he will know in an instant that she is the one.\nAnd that is exactly what happened. Except ... She wasn’t the one. In fact,\nthe ravishing Miss Hermione Watson is in love with another. But her best\nfriend, the ever-practical Lady Lucinda Abernathy, wants to save Hermione\nfrom a disastrous alliance, so she offers to help Gregory win her over. But\nin the process, Lucy falls in love. With Gregory! Except ... Lucy is\nengaged. And her uncle is not inclined to let her back out of the\nbetrothal, even once Gregory comes to his senses and realizes that it is\nLucy, with her sharp wit and sunny smile, who makes his heart sing. And\nnow, on the way to the wedding, Gregory must risk everything to ensure that\nwhen it comes time to kiss the bride, he is the only man standing at the\naltar ...\"\r\n8908,9585,7433,Jacqueline Winspear,Messenger of Truth,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442323066l/7433._SY475_.jpg,3.99,12454,\"mystery, fiction\",\"In 1931 London, when artist Nick Bassington-Hope falls to his death before\nthe opening of an exhibition of his work and police refuse to investigate,\nhis journalist sister Georgina enlists the aid of psychologist Maisie Dobbs\nto uncover the truth.\"\r\n8909,9586,8411749,Trudi Canavan,The Rogue,https://images.gr-assets.com/books/1328375255l/8411749.jpg,4.02,9739,\"fantasy, fiction\",The RogueTrudi Canavan\r\n8910,9587,175078,\"Thomas Merton, Robert Giroux, William H. Shannon\",The Seven Storey Mountain,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347432281l/175078.jpg,4.16,9232,\"religion, memoir\",\"A celebration of Merton's spiritual autobiography is accompanied by an\nintroduction from the editor and a note from Merton's biographer\"\r\n8911,9588,86655,Jennifer Egan,The Keep,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171075825l/86655._SX318_.jpg,3.43,9113,\"fiction, mystery\",\"Two decades after taking part in a childhood prank with devastating\nconsequences, two cousins are reunited at a remote medieval castle in\nEastern Europe, where they are cut off from the outside world and doomed to\nreenact the horrific event from their past.\"\r\n8912,9589,562763,Mélanie Watt,Scaredy Squirrel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1515376032l/562763._SX318_.jpg,4.25,11638,\"fiction, fantasy\",Scaredy SquirrelMélanie Watt\r\n8913,9590,97084,Paul Neilan,Apathy and Other Small Victories,https://images.gr-assets.com/books/1311996129l/97084.jpg,3.83,7171,\"fiction, contemporary\",\"Following a pattern of disconnectedness and flight throughout his life,\nShane finds his latest attempt to withdraw complicated by his sadistic\ncorporate climber would-be girlfriend, a rent-subsidized affair with his\nlandlord's wife, the hearing-impaired assistant to Shane's unstable\ndentist, and an untimely murder. Reprint. 20,000 first printing.\"\r\n8914,9591,17342700,\"Morgan Rhodes, Michelle Rowen\",Gathering Darkness,https://images.gr-assets.com/books/1419103977l/17342700.jpg,4.33,13072,\"fantasy, romance\",\"When the evil King Gaius announces that a road is to be built into the\nForbidden Mountains, he sets off a chain of events that will forever change\nthe face of the land.\"\r\n8915,9592,51362,Lisa Gardner,The Survivors Club,https://images.gr-assets.com/books/1298426240l/51362.jpg,4.05,11458,\"mystery, thriller\",\"Detective Roan Griffin investigates the execution of a suspected rapist.\nHis three victims, who call themselves the Survivors Club, are the prime\nsuspects.\"\r\n8916,9595,25387202,\"Alan Dean Foster, Lawrence Kasdan, J.J. Abrams, Michael Arndt\",Star Wars: The Force Awakens,https://images.gr-assets.com/books/1450520344l/25387202.jpg,3.73,7514,\"fiction, fantasy\",\"The official novelization of Star Wars: The Force Awakens, the highly\nanticipated blockbuster film directed by JJ Abrams, hitting cinemas in\nDecember 2015. Includes full colour section of movie stills to bring the\nstory to life.\"\r\n8917,9596,7707538,Lauren Conrad,Sugar and Spice (L.A. Candy #3),https://images.gr-assets.com/books/1277830544l/7707538.jpg,3.54,10488,\"fiction, romance\",\"Sugar and Spice . . . Not everyone's nice. Fresh from being betrayed by one\nof her closest friends, new reality-television celebrity Jane Roberts has\nlearned a few lessons. Most important: know who to trust. And inHollywood,\nthat list is short. Although the press is intent on creating a tabloid war\nbetween her and ex-friend/current-costar Madison Parker, Jane just wants to\ntake control of her life. She’s started by swearing off guys and the drama\nthat comes with them. But when her high school sweetheart Caleb and her\nunrequited L.A. crush Braden show up, both acting sweeter than ever, Jane\nhas a hard timeremembering her no-boys rule. . . . Her best friend,\nScarlett, has only one guy on her mind: her new boyfriend, Liam. The girl\nwho once thought love was a four-letter word is now head over heels. The\nproblem is, being ona hit reality show means hanging out with other guys\non-camera, and Liam isn’t too happy with pretending to play a bit part in\nher love life. Just when everything feels out of control, Jane makes a\nshocking discovery—one that changes everyone’s definition of “reality”\nforever. In her deliciously entertaining novel, television star Lauren\nConrad pulls back the curtain on young Hollywood and shows that sometimes\nthe real drama is behind the scenes.\"\r\n8918,9597,9565574,Kalayna Price,Grave Dance,https://images.gr-assets.com/books/1327953315l/9565574.jpg,4.11,16435,\"paranormal, fantasy\",\"While raising the dead to solve murders, grave witch Alex Craft is\nchallenged by a new case that takes her to a nature preserve south of\nNekros City where only fragments of corpses are left behind by a serial\nkiller born of the darkest magic. Original. 32,500 first printing.\"\r\n8919,9598,6448482,Atsushi Ohkubo, ソウルイーター 2,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262830l/6448482.jpg,4.47,9443,\"manga, fantasy\", ソウルイーター 2Atsushi Ohkubo\r\n8920,9599,69477,Robert C. O'Brien,Z for Zachariah,https://images.gr-assets.com/books/1420324231l/69477.jpg,3.64,9332,\"fiction, classics\",\"Believing herself to be the only survivor of a nuclear war, Ann Burden\ngreets a wandering stranger with excitement and suspicion. An ALA Notable\nBook & ALA Best Book for Young Adults. Reprint.\"\r\n8921,9600,6251222,Dan Chaon,Await Your Reply,https://images.gr-assets.com/books/1320525555l/6251222.jpg,3.54,10598,\"fiction, mystery\",\"While Miles pursues elusive letters and clues in a perpetual search for his\nmissing twin, Ryan struggles with the discovery that he is adopted, and\nLucy finds her daring escape from her hometown posing unexpectedly\ndangerous consequences. By a National Book Award-nominated author. Reprint.\"\r\n8922,9601,161275,\"Alan Moore, Curt Swan, George Pérez, Kurt Schaffenberger\",Superman: Whatever Happened to the Man of Tomorrow?,https://images.gr-assets.com/books/1308365122l/161275.jpg,4.14,10472,\"comics, fiction\",\"Presents a collection of classic comic book stories about superheroes by\nAlan Moore.\"\r\n8923,9602,76706,Nevada Barr,Track of the Cat,https://images.gr-assets.com/books/1326365792l/76706.jpg,3.86,12113,\"mystery, fiction\",\"Fleeing New York to find refuge as a ranger in the remote backcountry of\nWest Texas, Anna Pigeon stumbles into a web of violence and murder when\nfellow park ranger Sheila Drury is mysteriously killed and another ranger\nvanishes. Reprint.\"\r\n8924,9603,341027,Shelly Laurenston,The Mane Event,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388627011l/341027.jpg,3.96,17968,\"paranormal, romance\",The Mane EventShelly Laurenston\r\n8925,9604,17262206,Scott Anderson,Lawrence in Arabia,https://images.gr-assets.com/books/1363837257l/17262206.jpg,4.12,7654,\"history, biography\",\"Finalist for the 2014 National Book Critics Circle Award in Biography One\nof the Best Books of the Year: The Christian Science Monitor NPR The\nSeattle Times St. Louis Post-Dispatch Chicago Tribune A New York Times\nNotable Book The Arab Revolt against the Turks in World War I was, in the\nwords of T. E. Lawrence, \"\"a sideshow of a sideshow.\"\" As a result, the\nconflict was shaped to a remarkable degree by a small handful of\nadventurers and low-level officers far removed from the corridors of power.\nAt the center of it all was Lawrence himself. In early 1914 he was an\narchaeologist excavating ruins in Syria; by 1917 he was riding into legend\nat the head of an Arab army as he fought a rearguard action against his own\ngovernment and its imperial ambitions. Based on four years of intensive\nprimary document research, Lawrence in Arabia definitively overturns\nreceived wisdom on how the modern Middle East was formed.\"\r\n8926,9605,139004,\"Ralph Waldo Emerson, Peter Norberg\",Essays and Poems,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388761686l/139004.jpg,3.98,11864,\"poetry, classics\",\"\"\"The present texts of Emerson's essays and poems all derive from The\ncomplete works of Ralph Waldo Emerson (1903-1904), prepared by his son,\nEdward Waldo Emerson\"\"--Title page verso.\"\r\n8927,9606,31741,\"Gabriel García Márquez, Gregory Rabassa\",La increíble y triste historia de la cándida Eréndira y de su abuela desalmada,https://images.gr-assets.com/books/1410129032l/31741.jpg,3.89,5497,\"fiction, classics\",\"Collected here are twenty-six of Gabriel Garcia Marquez's most brilliant\nand enchanting short stories, presented in the chronological order of their\npublication in Spanish from three volumes: Eyes of a Blue Dog,Big Mama's\nFuneral, and The Incredible and Sad Tale of lnnocent Eréndira and Her\nHeartless Grandmother. Combining mysticism, history, and humor, the stories\nin this collection span more than two decades, illuminating the development\nof Marquez's prose and exhibiting the themes of family, poverty, and death\nthat resound throughout his fiction.\"\r\n8928,9607,81992,Charles Stross,Singularity Sky,https://images.gr-assets.com/books/1446324638l/81992.jpg,3.81,9887,\"fiction, science\",\"In a world transformed by the Eschaton, a sentient artificial intelligence,\nthe colony of New Republic, founded by people who wanted no part of the\ntechnological revolution, is threatened by an information plague of\nadvanced technology. Reprint.\"\r\n8929,9608,404562,Cynthia J. McGean,Henry & Ramona,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266545191l/404562.jpg,4.14,11106,\"classics, fiction\",\"Henry's most memorable adventures are retold in this play based on Beverly\nCleary's popular series of books.\"\r\n8930,9609,400906,Glen Cook,The White Rose,https://images.gr-assets.com/books/1327901074l/400906.jpg,4.19,11501,\"fantasy, fiction\",The White RoseGlen Cook\r\n8931,9610,17339590,حسن الجندي,\"\"\"حكايات فرغلي المستكاوي \"\"حكايتى مع كفر السحلاوية\",https://images.gr-assets.com/books/1360260051l/17339590.jpg,3.57,7443,\"horror, fiction\",\"\"\"حكايات فرغلي المستكاوي \"\"حكايتى مع كفر السحلاويةحسن الجندي\"\r\n8932,9611,22571275,Ally Carter,All Fall Down,https://images.gr-assets.com/books/1411070285l/22571275.jpg,3.82,13821,\"mystery, contemporary\",\"Inside every secret, there's a world of trouble. Get ready for the second\nbook in this new series of global proportions Grace Blakely is absolutely\ncertain of three things: 1. She is not crazy. 2. Her mother was murdered.\n3. Someday she is going to find the killer and make him pay. As certain as\nGrace is about these facts, nobody else believes her -- so there's no one\nshe can completely trust. Not her grandfather, a powerful ambassador. Not\nher new friends, who all live on Embassy Row. Not Alexei, the Russian boy\nnext door, who is keeping his eye on Grace for reasons she neither likes\nnor understands. Everybody wants Grace to put on a pretty dress and a\npretty smile, blocking out all her unpretty thoughts. But they can't\ncontrol Grace -- no more than Grace can control what she knows or what she\nneeds to do. Her past has come back to hunt her . . . and if she doesn't\nstop it, Grace isn't the only one who will get hurt. Because on Embassy\nRow, the countries of the world stand like dominoes, and one wrong move can\nmake them all fall down.\"\r\n8933,9612,14680,\"Stendhal, Richard Howard, Robert Andrew Parker\",La Chartreuse de Parme,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390088245l/14680.jpg,3.83,9252,\"classics, fiction\",\"Follows the adventures of young Fabrizio del Dongo as he joins Napoleon's\narmy just before the Battle of Waterloo, and struggles to keep hidden his\nlove for Clelia amid the intrigues and secrets of the small court of Parma.\"\r\n8934,9613,18722887,Heather Gudenkauf,Little Mercies,https://images.gr-assets.com/books/1399313845l/18722887.jpg,3.99,10268,\"fiction, contemporary\",\"Veteran social worker Ellen Moore is a fiercely dedicated children's\nadvocate and a devoted mother and wife. But one blistering summer day, a\nsimple moment of distraction will have repercussions that Ellen could never\nhave imagined, threatening to shatter everything she holds dear, and\ntrapping her between the gears of the system she works for. Meanwhile, ten-\nyear-old Jenny Briard suddenly finds herself on her own, forced to survive\nwith nothing but a few dollars and her street smarts. The last thing she\nwants is a social worker, but when Ellen's and Jenny's lives collide,\nlittle do they know just how much they can help one another.\"\r\n8935,9614,341553,Alex Berenson,The Faithful Spy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431174843l/341553.jpg,3.97,9316,\"thriller, fiction\",\"John Wells, an undercover operative who has infiltrated al Qaeda, is\ntrapped between his terrorist associates and the CIA, which no longer\ntrusts his loyalty, when he becomes a prime suspect in two bombings in Los\nAngeles.\"\r\n8936,9615,348489,\"Jacqueline Briggs Martin, Mary Azarian\",Snowflake Bentley (Caldecott Medal Book),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428451682l/348489.jpg,4.16,11362,\"biography, nonfiction\",\"A biography of a self-taught scientist who photographed thousands of\nindividual snowflakes in order to study their unique formations.\"\r\n8937,9616,562930,Jenny O'Connell,The Book of Luke,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438632292l/562930._SX318_.jpg,3.73,12623,\"romance, contemporary\",The Book of LukeJenny O'Connell\r\n8938,9617,182683,Karen Kingsbury,Fame,https://images.gr-assets.com/books/1406506537l/182683.jpg,4.34,10509,\"christian, fiction\",\"Hollywood hunk Dayne Matthews persuades his casting agent to hire an\nunknown woman from Bloomington, Indiana to co-star in his new romantic\ncomedy.\"\r\n8939,9618,3295695,G.A. Aiken,To Challenge a Dragon,https://images.gr-assets.com/books/1317852862l/3295695.jpg,3.96,18622,\"fantasy, romance\",To Challenge a DragonG.A. Aiken\r\n8940,9619,21411058,Leisa Rayven,Bad Romeo,https://images.gr-assets.com/books/1413547825l/21411058.jpg,4.1,14286,\"romance, contemporary\",Bad RomeoLeisa Rayven\r\n8941,9621,6330323,Anita Diamant,Day After Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442372776l/6330323._SY475_.jpg,3.65,10587,\"fiction, history\",\"A tale inspired by the post-Holocaust experience is set in an immigrant\nholding camp in 1945 Palestine, where four women, refugees from Nazi\nEurope, find healing in the bonds of friendship that are forged while\nrecounting their losses.\"\r\n8942,9622,15557,Terry Brooks,\"High Druid of Shannara, vol. 1: Jarka Ruus\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390718941l/15557.jpg,3.96,11017,\"fantasy, fiction\",\"Twenty years after Grianne Ohmsford abandoned her life as the evil Ilse\nWitch to lead the Druid Council protecting the Four Lands, she disappears,\nand it is up to her nephew Pen and his comrades to go to her rescue.\"\r\n8943,9623,12448,Thomas Wolfe,\"Look Homeward, Angel\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247436l/12448.jpg,3.94,9630,\"fiction, classics\",\"A Southern family with a great appetite for living is dominated by the\nfather until an older son, Eugene, is able to free himself from his rural\nNorth Carolina hometown to seek the challenges of an Ivy League education\nand big city life. Reissue. 75,000 first printing.\"\r\n8944,9624,5571,\"William McDonough, Michael Braungart\",Cradle to Cradle: Remaking the Way We Make Things,https://images.gr-assets.com/books/1417605547l/5571.jpg,4.1,7625,\"science, nonfiction\",\"Cradle to Cradle: Remaking the Way We Make ThingsWilliam McDonough, Michael Braungart\"\r\n8945,9625,831635,Marc Weissbluth,\"Healthy Sleep Habits, Happy Child\",https://images.gr-assets.com/books/1380493934l/831635.jpg,3.9,7742,\"nonfiction, psychology\",\"The latest research on the best course of action for sleep problems:\nprevention and treatment common mistakes parents make to get their children\nto sleep different sleep needs for different temperaments stopping the\ncrybaby syndrome, nightmares, bedwetting, and more ways to get your baby to\nfall asleep according to her internal clock.\"\r\n8946,9626,22421,\"Warren Ellis, Darick Robertson, Rodney Ramos, Keith Akin\",Transmetropolitan Vol. 4: The New Scum,https://images.gr-assets.com/books/1452027299l/22421.jpg,4.41,11094,\"comics, fiction\",\"Chronicles the battles of Spider Jerusalem, infamous renegade journalist of\nthe future. Spider dedicates himself to fighting the corruption and abuse\nof power of two successive United States presidents; he and his assistants\nstrive to keep their world from becoming worse than it already is while\ndealing with the struggles of fame and power, brought about due to the\npopularity of Spider via his articles.\"\r\n8947,9627,6939939,Maggie O'Farrell,The Hand That First Held Mine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441937443l/6939939._SY475_.jpg,3.87,8513,\"fiction, contemporary\",The Hand That First Held MineMaggie O'Farrell\r\n8948,9628,78972,Jeffrey Archer,The Fourth Estate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347661492l/78972.jpg,3.72,8829,\"fiction, thriller\",\"The ambitions of two men--Keith Townsend, the son of a millionaire\nnewspaper owner, and Richard Armstrong, son of an illiterate Jewish\npeasant, who escapes the Nazis, changes his name, and embarks on a ruthless\ncampaign for power--collide on a global scale\"\r\n8949,9629,8515,\"Monty Roberts, Lucy Grealy, Lawrence Scanlan\",The Man Who Listens to Horses,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388300266l/8515.jpg,4.1,9021,\"biography, nonfiction\",\"The Man Who Listens to HorsesMonty Roberts, Lucy Grealy, Lawrence Scanlan\"\r\n8950,9630,6749,David Foster Wallace,Oblivion,https://images.gr-assets.com/books/1311905400l/6749.jpg,4.07,9196,\"fiction, contemporary\",OblivionDavid Foster Wallace\r\n8951,9631,606818,\"Michael Baigent, Richard Leigh, Henry Lincoln\",The Holy Blood and the Holy Grail,https://images.gr-assets.com/books/1320394892l/606818.jpg,3.47,8450,\"religion, nonfiction\",\"Revised edition. The book's conclusions, and the new material are\npersuasive, shocking and even dangerous.\"\r\n8952,9632,28700,\"Don DeLillo, محمدصادق رئیسی\",Falling Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441139502l/28700._SX318_.jpg,3.2,9081,\"fiction, contemporary\",\"Escaping from the World Trade Center during the September 11 attacks, Keith\nNeudecker makes his way to the uptown apartment where his ex-wife and young\nson are living and considers the ways in which the day's events have\nirrevocably changed his perception of the world. 150,000 first printing.\"\r\n8953,9633,20510241,\"James Frey, Nils Johnson-Shelton\",Endgame: The Calling,https://images.gr-assets.com/books/1411272821l/20510241.jpg,3.77,10900,\"fantasy, fiction\",\"The New York Times bestseller and international multimedia phenomenon! In\neach generation, for thousands of years, twelve Players have been ready.\nBut they never thought Endgame would happen. Until now. Omaha, Nebraska.\nSarah Alopay stands at her graduation ceremony—class valedictorian, star\nathlete, a full life on the horizon. But when a meteor strikes the school,\nshe survives. Because she is the Cahokian Player. Endgame has begun.\nJuliaca, Peru. At the same moment, thousands of miles away, another meteor\nstrikes. But Jago Tlaloc is safe. He has a secret, and his secret makes him\nbrave. Strong. Certain. He is the Olmec Player. He's ready. Ready for\nEndgame. Across the globe, twelve meteors slam into Earth. Cities burn. But\nSarah and Jago and the ten others Players know the truth. The meteors carry\na message. The Players have been summoned to The Calling. And now they must\nfight one another in order to survive. All but one will fail. But that one\nwill save the world. This is Endgame.\"\r\n8954,9634,15820492,Lauren Oliver,Annabel,https://images.gr-assets.com/books/1348079378l/15820492.jpg,3.78,13619,\"romance, ebooks\",\"Lena's mother, Annabel, has always been a mystery—a ghost in Lena's past.\nUntil now. Discover her secrets in Lauren Oliver's brilliant original\ndigital story set in the world of New York Times bestsellers Delirium and\nPandemonium. Lena Halloway's mother, Annabel, supposedly committed suicide\nwhen Lena was only six years old. That's the lie that Lena grew up\nbelieving, but the truth is very different. As a rebellious teenager,\nAnnabel ran away from home and straight into the man she knew she was\ndestined to marry. The world was different then—the regulations not as\nstringent, the cure only a decade old. Fast forward to the present, and\nAnnabel is consigned to a dirty prison cell, where she nurtures her hope of\nescape and scratches one word over and over into the walls: Love. But\nAnnabel, like Lena, is a fighter. Through chapters that alternate between\nher past and present, Annabel reveals the story behind her failed cures,\nher marriage, the births of her children, her imprisonment, and,\nultimately, her daring escape.\"\r\n8955,9635,8765012,Jonathan Kellerman,Mystery,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391389001l/8765012.jpg,3.87,9396,\"fiction, mystery\",\"Investigating the brutal murder of a woman seen at a restaurant closing two\nnights earlier, LAPD homicide detective Milo Sturgis and psychologist Alex\nDelaware identify links between the victim and high-level secrets before\nthe case is shattered by a stunning revelation. Reprint.\"\r\n8956,9636,100476,Nancy Farmer, The Sea of Trolls,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389840959l/100476.jpg,4,12069,\"fantasy, fiction\",\"After Jack becomes apprenticed to a Druid bard, he and his little sister\nLucy are captured by Viking Berserkers and taken to the home of King Ivar\nthe Boneless and his half-troll queen, leading Jack to undertake a vital\nquest to Jotunheim, home of the trolls.\"\r\n8957,9637,6596542,\"Henning Mankell, Laurie Thompson\",Kinesen,https://images.gr-assets.com/books/1320494101l/6596542.jpg,3.47,9106,\"mystery, fiction\",\"KinesenHenning Mankell, Laurie Thompson\"\r\n8958,9638,20454076,Kass Morgan,Day 21,https://images.gr-assets.com/books/1403530593l/20454076.jpg,3.75,11860,\"romance, fiction\",Day 21Kass Morgan\r\n8959,9639,199531,Fannie Flagg,Daisy Fay and the Miracle Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196924l/199531.jpg,3.94,10292,\"fiction, contemporary\",\"A coming-of-age story set on the Gulf Coast follows the adventures and\nmisadventures of Daisy Fay, a straight-shooting girl with an eye for the\nbizarre, from a lonely eleven-year-old girl to the unlikely winner of the\nMiss Mississippi contest six years later. By the author of Fried Green\nTomatoes at the Whistle Stop Cafe. Reader's Guide included. Reprint 10,000\nfirst printing.\"\r\n8960,9640,10931321,\"Tom Clancy, Peter Telep\",Against All Enemies,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393635550l/10931321.jpg,3.95,8471,\"fiction, thriller\",\"Tom Clancy, the master of international intrigue and explosive action,\nintroduces a new hero for a new era of warfare-against a new kind of\nthreat.\"\r\n8961,9641,23289469,Kate Hamer,The Girl in the Red Coat,https://images.gr-assets.com/books/1412251739l/23289469.jpg,3.53,8027,\"fiction, mystery\",The Girl in the Red CoatKate Hamer\r\n8962,9642,9648,George Orwell,Keep the Aspidistra Flying,https://images.gr-assets.com/books/1331244097l/9648.jpg,3.87,9599,\"fiction, classics\",\"A poor young Londoner who disdains conventional lifestyles and goals works\nby day in a bookstore and writes by night in a cold rented room\"\r\n8963,9643,15793068,Orson Scott Card,The Gate Thief,https://images.gr-assets.com/books/1360823446l/15793068.jpg,3.77,9209,\"fantasy, fiction\",The Gate ThiefOrson Scott Card\r\n8964,9644,22840421,\"Cynthia Hand, Brodi Ashton, Jodi Meadows\",My Lady Jane,https://images.gr-assets.com/books/1444923765l/22840421.jpg,4.12,12794,\"fantasy, romance\",\"My Lady JaneCynthia Hand, Brodi Ashton, Jodi Meadows\"\r\n8965,9645,23031,Martin Amis,Time’s Arrow,https://images.gr-assets.com/books/1353213337l/23031.jpg,3.78,9400,\"fiction, fantasy\",\"Escaping from the body of a dying doctor who had worked in Nazi\nconcentration camps, the doctor's consciousness begins living the doctor's\nlife backward, aware only that he is living the life of a horrible man at a\nhorrible place in time\"\r\n8966,9647,48974,Robert Cormier,I Am the Cheese,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170356988l/48974.jpg,3.74,11099,\"fiction, mystery\",\"Through his doctor's questions, Adam struggles out of a world of medicated\noblivion and begins a desperate bicycle journey in search of a truth that\nwill destroy him. An ALA Notable Book. Reissue.\"\r\n8967,9648,75162,Eldridge Cleaver,Soul On Ice,https://images.gr-assets.com/books/1417410878l/75162.jpg,3.95,10123,\"biography, history\",\"By turns shocking and lyrical, unblinking and raw, the searingly honest\nmemoirs of Eldridge Cleaver are a testament to his unique place in American\nhistory.\"\r\n8968,9649,205218,\"Baruch Spinoza, Edwin M. Curley, Stuart Hampshire, Edwin Curley\",Ethica: Ordine geometrico demonstrata,https://images.gr-assets.com/books/1462223700l/205218.jpg,4.01,9342,\"philosophy, classics\",\"Published shortly after his death in 1677, Ethics is undoubtedly Spinoza's\ngreatest work—a fully cohesive philosophical system that strives to provide\na coherent picture of reality and to comprehend the meaning of an ethical\nlife. Following a logical step-by-step format, it defines in turn the\nnature of God, the mind, human bondage to the emotions, and the power of\nunderstanding, moving from a consideration of the eternal to speculate upon\nhumanity's place in the natural order, freedom, and the path to attainable\nhappiness. A powerful work of elegant simplicity, Ethics is a brilliantly\ninsightful consideration of the possibility of redemption through intense\nthought and philosophical reflection. First time in Penguin Classics Edwin\nCurley's translation is considered definitive Inlcudes an introduction\noutlining Spinoza's philosophy and placing it in context\"\r\n8969,9650,337615,Geraldine Brooks,Nine Parts of Desire: The Hidden World of Islamic Women,https://images.gr-assets.com/books/1403182793l/337615.jpg,4.04,10308,\"nonfiction, religion\",\"An intimate portrait of the lives of modern Muslim women reveals how male\npride and power have distorted the message of Islam to justify the\nsubjugation of women and how a feminism of sorts has flowered in spite of\nrepression\"\r\n8970,9651,27170141,Jessi Klein,You'll Grow Out of It,https://images.gr-assets.com/books/1462261735l/27170141.jpg,3.83,9480,\"memoir, nonfiction\",You'll Grow Out of ItJessi Klein\r\n8971,9652,17352874,R.L. Mathewson,Truce,https://images.gr-assets.com/books/1378997763l/17352874.jpg,4.34,18854,\"romance, contemporary\",TruceR.L. Mathewson\r\n8972,9653,176892,\"Andre Norton, Mercedes Lackey\",\"The Elvenbane (Halfblood Chronicles, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562450703l/176892.jpg,3.94,13092,\"fantasy, fiction\",\"The Elvenbane (Halfblood Chronicles, #1)Andre Norton, Mercedes Lackey\"\r\n8973,9654,9440324,\"Carlos Ruiz Zafón, Lucia Graves\",El palacio de la medianoche,https://images.gr-assets.com/books/1290459336l/9440324.jpg,3.58,7784,\"fantasy, mystery\",\"El palacio de la medianocheCarlos Ruiz Zafón, Lucia Graves\"\r\n8974,9655,85737,Clive Cussler,Treasure,https://images.gr-assets.com/books/1314486012l/85737.jpg,3.92,10784,\"fiction, thriller\",\"Clive Cussler's bestselling Treasure will now be published in our popular\npremium format with an exciting new cover.\"\r\n8975,9656,1422252,Lynsay Sands,\"Vampire, Interrupted\",https://images.gr-assets.com/books/1410758592l/1422252.jpg,4.32,15899,\"paranormal, romance\",\"Vampire, InterruptedLynsay Sands\"\r\n8976,9657,22411,John Sandford,Invisible Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442274826l/22411._SY475_.jpg,4.11,11162,\"mystery, thriller\",\"Investigating the seemingly open-and-shut double homicide case involving a\npair of wealthy elderly women, Lucas Davenport begins to suspect that the\nhandful of small items that were stolen from the crime scene may have had\nmore significant values. Reprint.\"\r\n8977,9658,89195,Alastair Reynolds,The Prefect,https://images.gr-assets.com/books/1327988786l/89195.jpg,4.15,9946,\"fiction, mystery\",The PrefectAlastair Reynolds\r\n8978,9659,20505127,Jane Shemilt,Daughter,https://images.gr-assets.com/books/1403779092l/20505127.jpg,3.51,7462,\"fiction, mystery\",\"Jenny is a successful family doctor, the mother of three great teenagers,\nmarried to a celebrated neurosurgeon. But when her youngest child, fifteen-\nyear-old Naomi, doesn't come home after her school play, Jenny's seemingly\nideal life begins to crumble. The authorities launch a nationwide search\nwith no success. Naomi has vanished, and her family is broken. As the\nmonths pass, the worst-case scenarios—kidnapping, murder—seem less\nplausible. The trail has gone cold. Yet, for a desperate Jenny, the search\nhas barely begun. More than a year after her daughter's disappearance,\nshe's still digging for answers—and what she finds disturbs her. Everyone\nshe's trusted, everyone she thought she knew, has been keeping secrets,\nespecially Naomi. Piecing together the traces her daughter left behind,\nJenny discovers a very different Naomi from the girl she thought she'd\nraised. Jenny knows she'll never be able to find Naomi unless she uncovers\nthe whole truth about her daughter—a twisting, painful journey into the\npast that will lead to an almost unthinkable revelation. . . .\"\r\n8979,9660,107172,\"Darwyn Cooke, Dave Stewart, Jared K. Fletcher\",\"DC: The New Frontier, Volume 1\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348010421l/107172.jpg,4.17,9601,\"comics, fiction\",\"Batman, Superman, and Wonder Woman fight for truth and justice in a world\nfilled with violence, greed, and uncertainty.\"\r\n8980,9661,25053,\"Betty MacDonald, Alexandra Boiger\",\"Hello, Mrs. Piggle-Wiggle\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924054l/25053.jpg,4.24,13000,\"fiction, fantasy\",\"The incomparable Mrs. Piggle-Wiggle loves children good or bad and never\nscolds but has positive cures for Answer-Backers, Never-Want-to-Go-to-\nBedders, and other boys and girls with strange habits. ‘[Now] in paperback\n. . . for a new generation of children to enjoy.’ —San Francisco Examiner\nChronicle.\"\r\n8981,9662,6933152,Jennifer Estep,Web of Lies,https://images.gr-assets.com/books/1262902266l/6933152.jpg,4.1,17312,\"fantasy, paranormal\",\"Curiosity is definitely going to get me dead one of these days. Probably\nreal soon. I'm Gin Blanco. You might know me as the Spider, the most feared\nassassin in the South. I’m retired now, but trouble still has a way of\nfinding me. Like the other day when two punks tried to rob my popular\nbarbecue joint, the Pork Pit. Then there was the barrage of gunfire on the\nrestaurant. Only, for once, those kill shots weren’t aimed at me. They were\nmeant for Violet Fox. Ever since I agreed to help Violet and her\ngrandfather protect their property from an evil coalmining tycoon, I’m\nbeginning to wonder if I’m really retired. So is Detective Donovan Caine.\nThe only honest cop in Ashland is having a real hard time reconciling his\nattraction to me with his Boy Scout mentality. And I can barely keep my\nhands off his sexy body. What can I say? I’m a Stone elemental with a\nlittle Ice magic thrown in, but my heart isn’t made of solid rock. Luckily,\nGin Blanco always gets her man . . . dead or alive.\"\r\n8982,9663,137792,Rebecca Wells,Ya-Yas in Bloom,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172090848l/137792.jpg,3.6,10200,\"fiction, contemporary\",Ya-Yas in BloomRebecca Wells\r\n8983,9664,179174,Hergé,Le secret de la Licorne,https://images.gr-assets.com/books/1344263637l/179174.jpg,4.26,8925,\"fiction, comics\",Le secret de la LicorneHergé\r\n8984,9665,930612,\"Megan McDonald, Peter H. Reynolds\",Judy Moody,https://images.gr-assets.com/books/1320540601l/930612.jpg,3.92,11289,\"fiction, contemporary\",\"Third grader Judy Moody is in a first day of school bad mood until she gets\nan assignment to create a collage all about herself and begins creating her\nmasterpiece, the Me collage.\"\r\n8985,9666,21480734,Christian Rudder,Dataclysm: Who We Are (When We Think No One's Looking),https://images.gr-assets.com/books/1407763834l/21480734.jpg,3.72,7204,\"nonfiction, science\",Dataclysm: Who We Are (When We Think No One's Looking)Christian Rudder\r\n8986,9667,94578,\"Friedrich Nietzsche, Walter Kaufmann\",Die fröhliche Wissenschaft,https://images.gr-assets.com/books/1374735026l/94578.jpg,4.26,8655,\"philosophy, classics\",\"Die fröhliche WissenschaftFriedrich Nietzsche, Walter Kaufmann\"\r\n8987,9668,7904453,N.K. Jemisin,The Broken Kingdoms,https://images.gr-assets.com/books/1282522268l/7904453.jpg,4.04,12259,\"fantasy, fiction\",\"In the city of Shadow, beneath the World Tree, alleyways shimmer with magic\nand godlings live hidden among mortalkind. Oree Shoth, a blind artist,\ntakes in a strange homeless man on an impulse. This act of kindness engulfs\nOree in a nightmarish conspiracy. Someone, somehow, is murdering godlings,\nleaving their desecrated bodies all over the city. And Oree's guest is at\nthe heart of it. . .\"\r\n8988,9669,18453110,Sarah Lotz,The Three,https://images.gr-assets.com/books/1379897631l/18453110.jpg,3.32,7990,\"fiction, horror\",The ThreeSarah Lotz\r\n8989,9670,1032,\"Donald J. Trump, Tony Schwartz\",Trump: The Art of the Deal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442705949l/1032._SY475_.jpg,3.66,8768,\"business, biography\",\"An overview of a week in the entrepreneur's life and opinions on everything\nfrom football to New York mayors accompany stories of Trump's best real\nestate deals and a discussion of the deal maker's art.\"\r\n8990,9671,190344,Enid Blyton,First Term at Malory Towers,https://images.gr-assets.com/books/1300285044l/190344.jpg,4.07,10274,\"fiction, classics\",\"A classic children’s story from the world’s best-loved children’s author,\nEnid Blyton. Malory Towers is about everything school should stand for –\nfriendships, lessons, sports, plays and especially mischief. Second Form at\nMalory Towers's Darrell Rivers is back at school, and she’s brought her\nfriend Sally Hope with her. But when Sally is made head girl instead of\nAlicia, trouble is afoot – and Darrell is caught in the middle of things .\n. . Enid Blyton is arguably the most famous children’s author of all time,\nthanks to series such as The Wishing-Chair, The Faraway Tree­, The\nMysteries, The Famous Five and The Secret Seven. Her school series –\nincluding St Clare’s and Malory Towers are the perfect books for girls who\nare experiencing their own adventures at school.\"\r\n8991,9672,82553,John Marsden,The Night is for Hunting,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390021601l/82553.jpg,4.15,10908,\"fiction, ebooks\",\"While trying to care for a group of abandoned young children, five\nAustralian teenagers continue their struggle for survival and their\nresistance against the enemy invading their homeland.\"\r\n8992,9673,836607,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",フルーツバスケット 3,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438768062l/836607._SX318_.jpg,4.38,14593,\"manga, fantasy\",\"フルーツバスケット 3Natsuki Takaya, Alethea Nibley, Athena Nibley\"\r\n8993,9674,25801299,Alex Lake,After Anna,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437545761l/25801299._SY475_.jpg,3.7,11029,\"fiction, mystery\",\"No.1 EBOOK BESTSELLER. A SUNDAY TIMES TOP 10 PAPERBACK BESTSELLER. A USA\nTODAY BESTSELLER The real nightmare starts when her daughter is returned A\nbone-chilling psychological thriller that will suit fans of Gone Girl, by\nGillian Flynn, Daughter, by Jane Shemilt, and The Girl on the Train, by\nPaula Hawkins. A girl is missing. Five years old, taken from outside her\nschool. She has vanished, traceless. The police are at a loss; her parents\nare beyond grief. Their daughter is lost forever, perhaps dead, perhaps\nenslaved. But the biggest mystery is yet to come: one week after she was\nabducted, their daughter is returned. She has no memory of where she has\nbeen. And this, for her mother, is just the beginning of the nightmare.\"\"\"\r\n8994,9675,20252,\"Brian Herbert, Kevin J. Anderson\",Dune: House Corrino,https://images.gr-assets.com/books/1298689043l/20252.jpg,3.64,10682,\"fiction, fantasy\",\"Chronicles the origins of the rivalry between Duke Leto and Baron Vladimir\nHarkonnen, the actions that transformed Duncan Idaho and Gurney Halleck\ninto heroes, the birth of Paul Atreides, and the creation of the tyrannical\nPadishah Emperor Shaddam Corrino\"\r\n8995,9676,6542645,J.D. Robb,Fantasy In Death,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441757879l/6542645._SY475_.jpg,4.25,14244,\"mystery, romance\",Fantasy In DeathJ.D. Robb\r\n8996,9677,663098,Mike Carey,The Devil You Know,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442602181l/663098._SY475_.jpg,3.8,11375,\"fantasy, horror\",\"Felix Castor is a freelance exorcist, and London is his stamping ground. It\nmay seem like a good ghostbuster can charge what he likes and enjoy a hell\nof a lifestyle--but there's a risk: Sooner or later he's going to take on a\nspirit that's too strong for him. While trying to back out of this ill-\nconceived career, Castor accepts a seemingly simple ghost-hunting case at a\nmuseum in the shadowy heart of London--just to pay the bills, you\nunderstand. But what should have been a perfectly straightforward exorcism\nis rapidly turning into the Who Can Kill Castor First Show, with demons and\nghosts all keen to claim the big prize. That's OK: Castor knows how to deal\nwith the dead. It's the living who piss him off...\"\r\n8997,9678,16031679,\"J. Lynn, Jennifer L. Armentrout\",Tempting the Player,https://images.gr-assets.com/books/1351035223l/16031679.jpg,4.06,16997,\"contemporary, romance\",\"Chad Gamble, all-star pitcher for the Nationals, is one of the best players\non-and off-the field. And right now, the notorious bad boy wants Bridget\nRodgers. But with her lush curves and snappy comebacks, the feisty redhead\nis the kind of woman a man wants to settle down with...and that's the last\nthing Chad needs. When the paparazzi catch them in a compromising position,\nChad's manager issues an ultimatum: clean up his act or kiss his multi-\nmillion dollar contract goodbye. To save his career, his meddling publicist\nsays he'll have to convince everyone Bridget isn't just his flavor of the\nweek, but his girlfriend. Being blackmailed into a fake relationship with\nChad Gamble isn't easy, especially when the sizzling physical attraction\nbetween them is undeniable. With a month to go on their arranged pretense,\nit's going to take every ounce of willpower they have not to fall into bed\ntogether...or in love.\"\r\n8998,9679,290882,\"Anonymous, Juan Mascaró\",उपनिषद [Upaniṣad],https://images.gr-assets.com/books/1327881361l/290882.jpg,4.2,7365,\"philosophy, classics\",\"The Upanishads, The Earliest Of Which Were Composed In Sanskrit Between 8\nAnd 4 Bce By Sages And Poets, Form Part Of The Vedas - The Sacred And\nAncient Scriptures That Are The Basis Of The Hindu Religion. Each\nUpanishad, Or Lesson, Takes Up A Theme Ranging From The Attainment Of\nSpiritual Bliss To Karma And Rebirth, And Collectively They Are Meditations\nOn Life, Death And Immortality. The Essence Of Their Teachings Is That\nTruth Can By Reached By Faith Rather Than By Thought, And That The Spirit\nOf God Is Within Each Of Us - We Need Not Fear Death As We Carry Within Us\nThe Promise Of Eternal Life.\"\r\n8999,9680,18594634,Arianna Huffington,\"Thrive: The Third Metric to Redefining Success and Creating a Life of Well-Being, Wisdom, and Wonder\",https://images.gr-assets.com/books/1400873884l/18594634.jpg,3.68,8261,\"business, nonfiction\",\"Looks beyond power and money, the traditionally accepted measures of\nsuccess, to elaborate on the importance of a third metric--the nurturing of\nwell-being, wisdom, and compassion to create a healthy work-life balance.\"\r\n9000,9682,1008231,Mark Walden,H.I.V.E.: Higher Institute of Villainous Education,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348389331l/1008231.jpg,4.06,10881,\"fantasy, fiction\",\"Swept away to a hidden academy for training budding evil geniuses, Otto, a\nbrilliant orphan, Wing, a sensitive warrior, Laura, a shy computer\nspecialist, and Shelby, an infamous jewel thief, plot to beat the odds and\nescape the prison known as H.I.V.E.\"\r\n9001,9683,16170522,تامر إبراهيم,صانع الظلام,https://images.gr-assets.com/books/1353871855l/16170522.jpg,3.81,8825,\"horror, fantasy\",صانع الظلامتامر إبراهيم\r\n9002,9684,6311614,Terry Goodkind,The Law of Nines,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348444602l/6311614.jpg,3.6,9421,\"fantasy, fiction\",The Law of NinesTerry Goodkind\r\n9003,9685,434229,John D. MacDonald,The Executioners,https://images.gr-assets.com/books/1396110398l/434229.jpg,4.07,10006,\"fiction, thriller\",\"Sam Bowden's teenage daughter becomes the target of Max Cady's obsessive\nscheme to destroy the man who sent him to prison for rape\"\r\n9004,9686,17487,Enid Blyton,Five Go Adventuring Again,https://images.gr-assets.com/books/1408923873l/17487.jpg,3.99,10362,\"mystery, fiction\",\"A thief at Kirrin Cottage! Who can it be? The Famous Five think they know -\nbut they need proof! Then they find an old map and an unusual hiding\nplace...\"\r\n9005,9687,8534899,Jana Oliver,The Demon Trapper's Daughter,https://images.gr-assets.com/books/1282919119l/8534899.jpg,4,13585,\"fantasy, paranormal\",\"The Demon Trapper's Daughter is the first novel in Jana Oliver's Demon\nTrappers—a spellbinding young adult fantasy series. Riley Blackthorne just\nneeds a chance to prove herself—and that's exactly what the demons are\ncounting on… Seventeen-year-old Riley, the only daughter of legendary Demon\nTrapper Paul Blackthorne, has always dreamed of following in her father's\nfootsteps. The good news is, with human society seriously disrupted by\neconomic upheaval and Lucifer increasing the number of demons in all major\ncities, Atlanta's local Trappers' Guild needs all the help they can\nget—even from a girl. When she's not keeping up with her homework or trying\nto manage her growing crush on fellow apprentice, Simon, Riley's out saving\ndistressed citizens from foul-mouthed little devils—Grade One Hellspawn\nonly, of course, per the strict rules of the Guild. Life's about as normal\nas can be for the average demon-trapping teen. But then a Grade Five Geo-\nFiend crashes Riley's routine assignment at a library, jeopardizing her\nlife and her chosen livelihood. And, as if that wasn't bad enough, sudden\ntragedy strikes the Trappers' Guild, spinning Riley down a more dangerous\npath than she ever could have imagined. As her whole world crashes down\naround her, who can Riley trust with her heart—and her life?\"\r\n9006,9688,136977,Pema Chödrön,The Places That Scare You: A Guide to Fearlessness in Difficult Times,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172087249l/136977._SY475_.jpg,4.3,8344,\"spirituality, nonfiction\",\"Offers advice on uncovering inner wisdom and opening one's heart while\nrefusing to allow resentfulness and fear to block one's inner light.\"\r\n9007,9689,113091,James Agee,A Death in the Family,https://images.gr-assets.com/books/1327885315l/113091.jpg,3.92,10900,\"fiction, classics\",\"Agee's portrayal of the sweetness of day-to-day familial relations are\npowerful and poignant. His masterfully drawn characters take on a haunting\nreality in this vivid recreation of life -- and sudden death.\"\r\n9008,9690,772976,Andrea Kettenmann,Frida Kahlo 1907-1954: Pain and Passion ,https://images.gr-assets.com/books/1365526293l/772976.jpg,4.15,8260,\"art, biography\",Frida Kahlo 1907-1954: Pain and Passion Andrea Kettenmann\r\n9009,9691,94669,Chitra Banerjee Divakaruni,The Mistress of Spices,https://images.gr-assets.com/books/1488839181l/94669.jpg,3.48,9263,\"fiction, fantasy\",\"Tilo, an Indian clairvoyant, becomes queen of the pirates who kidnapped her\nfor her powers, and she gains immortality and the skills of a mistress of\nspices, which she uses to help mortals before falling in love with Raven\"\r\n9010,9692,7948945,Gwen Hayes,Falling Under,https://images.gr-assets.com/books/1326079906l/7948945.jpg,3.78,15637,\"paranormal, fantasy\",Falling UnderGwen Hayes\r\n9011,9694,4505161,Karen   White,The House On Tradd Street,https://images.gr-assets.com/books/1344586077l/4505161.jpg,3.96,12311,\"mystery, fiction\",\"Inheriting an historic home from an elderly man she had recently met,\nMelanie Middleton, a Charleston real-estate agent who possesses the ability\nto see ghosts, finds herself dealing with an entire family of haunts and\njoins forces with Jack Trenholm, a handsome writer, to unravel the house's\ndark history and find some long-missing diamonds. Original.\"\r\n9012,9695,2309720,Kiyo Fujiwara,アラクレ 1,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390594067l/2309720.jpg,4.03,10738,\"manga, romance\",アラクレ 1Kiyo Fujiwara\r\n9013,9696,10843036,Brent Weeks,Perfect Shadow,https://images.gr-assets.com/books/1360569222l/10843036.jpg,4.18,9029,\"fiction, fantasy\",\"For the first time as an Orbit special edition, Brent Weeks's blockbuster\nnovella Perfect Shadow tells the origin story of the Night Angel trilogy's\nmost enigmatic character: Durzo Blint. Also includes the short story, I,\nNightangel. Gaelan Starfire is a farmer, happy to be a husband and a\nfather; a careful, quiet, simple man. He's also an immortal, peerless in\nthe arts of war. Over the centuries, he's worn many faces to hide his gift,\nbut he is a man ill-fit for obscurity, and all too often he's become a\nhero, his very names passing into legend: Acaelus Thorne, Yric the Black,\nHrothan Steelbender, Tal Drakkan, Rebus Nimble. But when Gaelan must take a\njob hunting down the world's finest assassins for the beautiful courtesan-\nand-crimelord Gwinvere Kirena, what he finds may destroy everything he's\never believed in. Find out how it all started in this brilliant Night Angel\nnovella! Night AngelThe Way of ShadowsShadow's EdgeBeyond the Shadows Night\nAngel: The Complete Trilogy (omnibus)Perfect Shadow: A Night Angel\nNovellaThe Way of Shadows: The Graphic Novel LightbringerThe Black PrismThe\nBlinding KnifeThe Broken EyeThe Blood Mirror\"\r\n9014,9697,10468258,Nicky Charles,The Finding,https://images.gr-assets.com/books/1344881680l/10468258.jpg,4.18,11174,\"paranormal, romance\",The FindingNicky Charles\r\n9015,9698,7785,Dr. Seuss,I Can Read with My Eyes Shut!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348870328l/7785.jpg,4.17,13821,\"fiction, classics\",I Can Read with My Eyes Shut!Dr. Seuss\r\n9016,9700,15824358,Michael D. Watkins,The First 90 Days: Critical Success Strategies for New Leaders at All Levels,https://images.gr-assets.com/books/1354903827l/15824358.jpg,3.81,5490,\"business, nonfiction\",\"The international bestseller and globally acknowledged bible on leadership\nand career transitions Fully a quarter of all managers in major\ncorporations enter new leadership roles each year. Whether their\nassignments involve starting a new job, being promoted internally, or\nembarking on an international assignment, how new leaders manage their\ntransitions can mean the difference between success and failure. In The\nFirst 90 Days, Michael D. Watkins, a noted expert on leadership\ntransitions, offers proven strategies for moving successfully into a new\nrole at any point in one's career. Concise and practical, The First 90 Days\nwalks managers through every aspect of the transition, from mental\npreparation to forging the right alliances to securing critical early wins.\nThrough vivid examples of successes and failures at all levels, Michael\nWatkins identifies the most common pitfalls new leaders encounter and\nprovides tools and strategies for how to avoid them. As hundreds of\nthousands of readers already know, The First 90 Days is your roadmap for\ntaking charge quickly and effectively during critical career transition\nperiods—whether you’re a first-time manager, a midcareer professional on\nyour way up, or a newly minted CEO. Published by Harvard Business Review\nPress.\"\r\n9017,9701,25067046,Claudia Gray,Star Wars: Lost Stars,https://images.gr-assets.com/books/1462731623l/25067046.jpg,4.25,8861,\"fiction, fantasy\",\"The reign of the Galactic Empire has reached the Outer Rim planet of\nJelucan, where aristocratic Thane Kyrell and rural villager Ciena Ree bond\nover their love of flying. Enrolling at the Imperial Academy is nothing\nless than a dream come true for both of them. But Thane sours on the dream\nwhen he sees firsthand the horrific tactics the Empire uses to maintain its\nironclad rule. Bitter and disillusioned, he joins the fledgling Rebellion--\nputting Ciena in an unbearable position between her loyalty to the Empire\nand her love for the man she's known since childhood. Now on opposite sides\nof the war, will these friends turned foes ever find a way to be together,\nor will duty tear them--and the galaxy--apart?\"\r\n9018,9702,128048,Jean Lee Latham,\"Carry On, Mr. Bowditch\",https://images.gr-assets.com/books/1480110382l/128048.jpg,4.11,11933,\"biography, fiction\",\"After finding a way to teach the ship's crew members to understand\nnavigation, Nat, a self-taught mathematician and astronomer in eighteenth-\ncentury Salem, Massachusetts, writes down his explanations and compiles\nthem into \"\"The American Practical Navigator,\"\" also known as the \"\"Sailors'\nBible.\"\"\"\r\n9019,9703,22474626,Meredith Wild,Hard Limit,https://images.gr-assets.com/books/1414594976l/22474626.jpg,4.34,4754,\"romance, contemporary\",\"Blake Landon is a man who has everything-wealth, good looks, and the love\nof Erica Hathaway. The power couple has been through hell and back, and\nwhen life has torn them apart, somehow they have always found their way\nback to each other, more in love and stronger than ever. Erica has never\nbeen more ready to say I do. On the verge of making the ultimate\ncommitment, she uncovers an unsettling chapter of Blake's history. As she\nmakes peace with her own past and the family who left her behind, she\npresses Blake to tear down the last walls between them. Determined to know\nthe man he once was, she opens a door to a world beyond her wildest\nimagination-a world that has her questioning the limits of her own desires.\nAs danger lurks and dark secrets come to light, will the past destroy their\npromise of forever?\"\r\n9020,9704,95660,Lisi Harrison,\"The Pretty Committee Strikes Back (The Clique, #5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442262429l/95660._SY475_.jpg,3.84,12307,\"fiction, contemporary\",\"While on a seventh-grade school trip, Claire attempts to mend her\nrelationship with Cam while Massie seeks to maintain her high social\nstanding and receive her first kiss. Original.\"\r\n9021,9707,171201,Margaret Edson,Wit : A Play,https://images.gr-assets.com/books/1327908183l/171201.jpg,4.2,10601,\"fiction, contemporary\",\"Winner of the 1999 Pulitzer Prize for Drama, the New York Drama Critics\nCircle Award, the Drama Desk Award, the Outer Critics Circle Award, the\nLucille Lortel Award, and the Oppenheimer Award Margaret Edson's powerfully\nimagined Pulitzer Prize–winning play examines what makes life worth living\nthrough her exploration of one of existence's unifying\nexperiences—mortality—while she also probes the vital importance of human\nrelationships. What we as her audience take away from this remarkable drama\nis a keener sense that, while death is real and unavoidable, our lives are\nours to cherish or throw away—a lesson that can be both uplifting and\nredemptive. As the playwright herself puts it, \"\"The play is not about\ndoctors or even about cancer. It's about kindness, but it shows arrogance.\nIt's about compassion, but it shows insensitivity.\"\" In Wit, Edson delves\ninto timeless questions with no final answers: How should we live our lives\nknowing that we will die? Is the way we live our lives and interact with\nothers more important than what we achieve materially, professionally, or\nintellectually? How does language figure into our lives? Can science and\nart help us conquer death, or our fear of it? What will seem most important\nto each of us about life as that life comes to an end? The immediacy of the\npresentation, and the clarity and elegance of Edson's writing, make this\nsophisticated, multilayered play accessible to almost any interested\nreader. As the play begins, Vivian Bearing, a renowned professor of English\nwho has spent years studying and teaching the intricate, difficult Holy\nSonnets of the seventeenth-century poet John Donne, is diagnosed with\nadvanced ovarian cancer. Confident of her ability to stay in control of\nevents, she brings to her illness the same intensely rational and\npainstakingly methodical approach that has guided her stellar academic\ncareer. But as her disease and its excruciatingly painful treatment\ninexorably progress, she begins to question the single-minded values and\nstandards that have always directed her, finally coming to understand the\naspects of life that make it truly worth living.\"\r\n9022,9708,261161,Lisi Harrison,\"Dial L for Loser (The Clique, #6)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441395661l/261161._SY475_.jpg,3.8,11736,\"fiction, contemporary\",\"The girls from Octavian Country Day School return for their sixth juicy\nstory of back-stabbing, sucking up, and looking good while frequenting\nWestchester County's elite social circles. Original. 125,000 first\nprinting.\"\r\n9023,9710,397867,James Herbert,The Rats,https://images.gr-assets.com/books/1356454885l/397867.jpg,3.92,10517,\"horror, fiction\",The RatsJames Herbert\r\n9024,9711,104088,Guy Gavriel Kay,The Wandering Fire,https://images.gr-assets.com/books/1389962006l/104088.jpg,4.11,11935,\"fantasy, fiction\",\"After a millennium of imprisonment, the Unravellor has broken free and is\nthreatening mortals, immortals, mages, warriors, dwarves, and Children of\nLight alike. Reprint.\"\r\n9025,9712,17333174,Ilona Andrews,Magic Binds,https://images.gr-assets.com/books/1454609590l/17333174.jpg,4.57,10983,\"fantasy, paranormal\",\"Mercenary Kate Daniels knows all too well that magic in post-Shift Atlanta\nis a dangerous business. But nothing she's faced could have prepared her\nfor what's to come in this heart-stopping novel in the #1 New York Times\nbestselling series. Kate and the former Beast Lord Curran Lennart are\nfinally making their relationship official. But there are some steep\nobstacles standing in the way of their walk to the altar. Kate's father,\nRoland, has kidnapped the demigod Saiman and is slowly bleeding him dry in\na never-ending bid for power. A Witch Oracle has predicted that if Kate\nmarries the man she loves, Atlanta will burn and she will lose him forever.\nAnd the only person Kate can ask for help is long dead. The odds are\nimpossible. The future is grim. But Kate Daniels has never been one to play\nby the rules...\"\r\n9026,9713,15761241,M. Leighton,The Wild Ones,https://images.gr-assets.com/books/1343215803l/15761241.jpg,3.94,16160,\"romance, contemporary\",The Wild OnesM. Leighton\r\n9027,9714,23196,David James Duncan,The River Why,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385086992l/23196.jpg,4.24,7735,\"fiction, philosophy\",The River WhyDavid James Duncan\r\n9028,9716,586516,Stephen Davis,Hammer of the Gods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388429932l/586516.jpg,3.83,8226,\"music, biography\",\"Tells the story of the popular hard rock band, Led Zeppelin, examines each\nof their recordings, and discusses their tours and private lives\"\r\n9029,9717,891671,C.J. Sansom,Winter in Madrid,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347651080l/891671.jpg,3.79,8629,\"fiction, mystery\",Winter in MadridC.J. Sansom\r\n9030,9718,13414599,\"Gretchen Rubin, Käthe Mazur\",\"Happier at Home: Kiss More, Jump More, Abandon a Project, Read Samuel Johnson, and My Other Experiments in the Practice of Everyday Life\",https://images.gr-assets.com/books/1344014249l/13414599.jpg,3.48,6058,\"nonfiction, memoir\",\"Happier at Home: Kiss More, Jump More, Abandon a Project, Read Samuel Johnson, and My Other Experiments in the Practice of Everyday LifeGretchen Rubin, Käthe Mazur\"\r\n9031,9719,2895896,Jojo Moyes,Silver Bay,https://images.gr-assets.com/books/1415583591l/2895896.jpg,3.62,9008,\"fiction, romance\",\"The stunning, RNA shortlisted novel by Jojo Moyes, internationally\nbestselling author of Me Before You, After You and the new bestseller Still\nMe. 'Compelling tale' - Heat Liza McCullen will never escape her past. But\nthe unspoilt beaches and tight-knit community of Silver Bay offer the\nfreedom and safety she craves - if not for herself, then for her young\ndaughter, Hannah. Until Mike Dormer arrives as a guest in her aunt's hotel,\nand the peace of Silver Bay is shattered. The mild-mannered Englishman with\nhis too-smart clothes and disturbing eyes could destroy everything Liza has\nworked so hard to protect: not only the family business and the bay that\nharbours her beloved whales, but also her conviction that she will never\nlove - never deserve to love - again.\"\r\n9032,9720,94486,\"Adolfo Bioy Casares, Suzanne Jill Levine, Jorge Luis Borges, Ruth L.C. Simms, Norah Borges de Torre\",La invención de Morel,https://images.gr-assets.com/books/1327960951l/94486.jpg,4.05,8669,\"fiction, classics\",\"La invención de MorelAdolfo Bioy Casares, Suzanne Jill Levine, Jorge Luis Borges, Ruth L.C. Simms, Norah Borges de Torre\"\r\n9033,9721,42661,Antony Beevor,Berlin: The Downfall 1945,https://images.gr-assets.com/books/1312049741l/42661.jpg,4.27,8443,\"history, nonfiction\",\"Chronicles the horror of Berlin's fall to the Soviets in 1945, recalling\nthe starvation, exposure, artillery fire, rape, and mass destruction that\nmarked the Red Army's final push on Germany's capital.\"\r\n9034,9722,4657,John Irving,The Water-Method Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925069l/4657.jpg,3.34,9725,\"fiction, contemporary\",\"The main character of John Irving's second novel, written when the author\nwas twenty-nine, is a perpetual graduate student with a birth defect in his\nurinary tract--and a man on the threshold of committing himself to a second\nmarriage that bears remarkable resemblance to his first.... \"\"Three or four\ntimes as funny as most novels.\"\" THE NEW YORKER\"\r\n9035,9723,552987,Orson Scott Card,\"A War of Gifts (The Ender Quintet, #1.5)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442969720l/552987._SX318_.jpg,3.66,11643,\"fiction, fantasy\",\"A standalone holiday story set during Ender's time at Battle School from\nthe #1New York Times bestselling author, Orson Scott Card. At the Battle\nSchool, there is only one course of study: the strategy and tactics of war.\nHumanity is fighting an alien race, and we fight as one. Students are drawn\nfrom all nations, all races, all religions, taken from their families as\nchildren. There is no room for cultural differences, no room for religious\nobservances, and there is certainly no room for Santa Claus. But the young\nwarriors disagree. When Dink Meeker leaves a Sinterklaaus Day gift in\nanother Dutch student's shoe, that quiet act of rebellion becomes the first\nshot in a war of wills that the staff of the Battle School never bargained\nfor. Orson Scott Card's novelEnder's Gameis the basis of the hit movie of\nthe same name.\"\r\n9036,9724,153866,Dav Pilkey,Captain Underpants and the Perilous Plot of Professor Poopypants (Captain Underpants),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348805751l/153866.jpg,4.12,9566,\"fiction, comics\",\"When Professor Pippy P. Poopypantsthe world's greatest scientific\ngeniusdecides he's been made fun of long enough, he plans revenge, and it\nis up to Captain Underpants to save the world from this dirty villain!\nSimultaneous.\"\r\n9037,9725,17950614,Neal Shusterman,UnDivided,https://images.gr-assets.com/books/1392097377l/17950614.jpg,4.48,11403,\"fiction, fantasy\",UnDividedNeal Shusterman\r\n9038,9726,17934655,Leslie Jamison,The Empathy Exams: Essays,https://images.gr-assets.com/books/1405924561l/17934655.jpg,3.62,9280,\"nonfiction, psychology\",The Empathy Exams: EssaysLeslie Jamison\r\n9039,9727,261083,Bernard Cornwell,Heretic,https://images.gr-assets.com/books/1382119406l/261083.jpg,4.11,8916,\"fiction, history\",HereticBernard Cornwell\r\n9040,9728,27209407,Nora Roberts,Bay of Sighs,https://images.gr-assets.com/books/1458263001l/27209407.jpg,4.15,6822,\"romance, fantasy\",Bay of SighsNora Roberts\r\n9041,9729,13489919,Courtney Milan,The Duchess War,https://images.gr-assets.com/books/1363009176l/13489919.jpg,3.82,12494,\"romance, fiction\",\"Miss Minerva Lane is a quiet, bespectacled wallflower, and she wants to\nkeep it that way. After all, the last time she was the center of attention,\nit ended badly-so badly that she changed her name to escape her scandalous\npast. Wallflowers may not be the prettiest of blooms, but at least they\ndon't get trampled. So when a handsome duke comes to town, the last thing\nshe wants is his attention.But that is precisely what she gets.Because\nRobert Blaisdell, the Duke of Clermont, is not fooled. When Minnie figures\nout what he's up to, he realizes there is more to her than her spectacles\nand her quiet ways. And he's determined to lay her every secret bare before\nshe can discover his. But this time, one shy miss may prove to be more than\nhis match...\"\r\n9042,9730,484167,Bisco Hatori,\"千年の雪, 1\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347658110l/484167.jpg,4.04,11293,\"manga, romance\",\"千年の雪, 1Bisco Hatori\"\r\n9043,9731,13068,Carl Hiaasen,Double Whammy,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434472587l/13068._SY475_.jpg,3.92,9622,\"mystery, fiction\",\"\"\"Twists and turns with breathtaking speed...You're gonna like this ride.\"\" -\nWashington Post Book World R.J. Decker, star tenant of the local trailer\npark and neophyte private eye is fishing for a killer. Thanks to a\nsportsman's scam that's anything but sportsmanlike, there's a body floating\nin Coon Bog, Florida -- and a lot that's rotten in the murky waters of big-\nstakes, large-mouth bass tournaments. Here Decker will team up with a half-\nblind, half-mad hermit with an appetite for road kill; dare to kiss his ex-\nwife while she's in bed with her new husband; and face deadly TV\nevangelists, dangerously seductive women, and a pistol-toting redneck with\na pit bull on his arm. And here his own life becomes part of the stakes.\nFor while the \"\"double whammy\"\" is the lure, first prize is for the most\ningenious murder.\"\r\n9044,9732,3028,Henry Hazlitt,Economics in One Lesson,https://images.gr-assets.com/books/1320423284l/3028.jpg,4.22,9028,\"business, nonfiction\",Economics in One LessonHenry Hazlitt\r\n9045,9733,12042279,Lara Adrian,Darker After Midnight,https://images.gr-assets.com/books/1313987798l/12042279.jpg,4.37,14264,\"paranormal, romance\",\"Troubled Order member Sterling Chase finds himself drawn to the mysterious\nTavia Fairchild, who seems to be more than merely human, as they and the\nrest of the Order try to find a way to finally defeat the evil Dragos.\"\r\n9046,9734,2025787,Robert Muchamore,Mad Dogs,https://images.gr-assets.com/books/1417330634l/2025787.jpg,4.25,10258,\"fiction, thriller\",Mad DogsRobert Muchamore\r\n9047,9735,20329634,Marko Kloos,Lines of Departure,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438779556l/20329634._SX318_.jpg,4.08,5110,\"fiction, ebooks\",\"Humanity is on the ropes, and after years of fighting a two-front war with\nlosing odds, so is North American Defense Corps officer Andrew Grayson. He\ndreams of dropping out of the service one day, alongside his pilot\ngirlfriend, but as warfare consumes entire planets and conditions on Earth\ndeteriorate, he wonders if there will be anywhere left for them to go.\"\r\n9048,9736,25817528,Julia Claiborne Johnson,Be Frank With Me,https://images.gr-assets.com/books/1449425543l/25817528.jpg,3.9,9044,\"fiction, contemporary\",Be Frank With MeJulia Claiborne Johnson\r\n9049,9737,73051,Grant Naylor,Better Than Life,https://images.gr-assets.com/books/1301794541l/73051.jpg,4.05,9213,\"fiction, fantasy\",\"When Holly, the Red Dwarf's computer, suddenly goes dumb, David Lister, the\nholographic Arnold Rimmer, Cat, and Kryten, the cleaning robot, become\ntrapped in a game called \"\"Better Than Life,\"\" and it is up to a talking\nToaster to save them all. Original.\"\r\n9050,9738,25671827,Kylie Scott,Dirty,https://images.gr-assets.com/books/1444317627l/25671827.jpg,3.92,13948,\"romance, contemporary\",\"He’s an ex-musician turned bartender who’s a bit rough around the edges;\nshe’s a brokenhearted bride who ran from a disaster at the altar; can this\nsexy bad boy be the Mr. Right she was looking for all along?\"\r\n9051,9739,94798,Eric S. Nylund,Ghosts of Onyx,https://images.gr-assets.com/books/1317792529l/94798.jpg,4.15,7997,\"fiction, fantasy\",\"Continuing the saga of the award-winning XboxTM game! The Spartan-II\nprogram has gone public. Tales of super-soldiers fending off thousands of\nCovenant attacks have become the stuff of legend. But just how many\nSpartans are left? While the Master Chief defends a besieged Earth, and the\nmyriad factions of the Covenant continue their crusade to eliminate\nhumanity, an ultrasecret cell of the Office of Naval Intelligence known as\n\"\"Section Three\"\" devises a plan to buy the UNSC vital time. They're going to\nneed hundreds of willing soldiers, though . . . and one more Spartan to get\nthe job done. The planet Onyx is virtually abandoned and the perfect place\nto set this new plan in motion. But when the Master Chief destroys Halo,\nsomething is triggered deep within Onyx: Ancient Forerunner technology\nstirs, and fleets of UNSC and Covenant race to claim it to change the\ncourse of the Human-Covenant War. But this reawakened and ancient force may\nhave plans of its own . . . This novel is based on a mature-rated game.\nMicrosoft, the Microsoft Game Studios Logo, Bungie, the Bungie Logo, Halo,\nthe Halo logo, Xbox, and the Xbox logos are either registered trademarks or\ntrademarks of Microsoft Corporation in the United States and/or other\ncountries and are used under license from owner.\"\r\n9052,9740,4837112,Rick Riordan,Percy Jackson and the Sword of Hades,https://images.gr-assets.com/books/1327349413l/4837112.jpg,4.28,14502,\"fantasy, fiction\",\"A brilliant Percy Jackson mini adventure plus Horrible Histories Groovy\nGreeks - a winning combo for World Book Day!The goddess Persephone has\nsummoned Percy, Thalia and Nico to the Underworld in order to retrieve\nHades' powerful sword before it falls into the wrong hands. Easier said\nthan done in a world full of evil daimons, ghosts and ghouls. Not to\nmention Iapetos - brother of the powerful Titan lord, Kronos. This time the\nyoung demigods are really up against it - will Percy manage to return the\nsword before it's too late?Flip the book over for lots more ancient Greek\nfun with Terry Deary's brilliant Groovy Greeks:It's history with the nasty\nbits left in! Want to know: Why some groovy Greek girls ran about naked\npretending to be bears? Who had the world's first flushing toilet? Why\ndedicated doctors tasted their patients' ear wax? Discover all the foul\nfacts about the Groovy Greeks - all the gore and more!\"\r\n9053,9741,9018370,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",\"The Walking Dead, Vol. 13: Too Far Gone\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393479579l/9018370.jpg,4.23,11521,\"horror, comics\",\"Police officer Rick Grimes and a few human survivors battle hordes of\ndecomposing zombies.\"\r\n9054,9742,710969,Cathy Hopkins,\"Mates, Dates, and Inflatable Bras\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388982559l/710969.jpg,3.73,10270,\"fiction, contemporary\",\"Mates, Dates, and Inflatable BrasCathy Hopkins\"\r\n9055,9743,3446,Tim O'Brien,Going After Cacciato,https://images.gr-assets.com/books/1399498199l/3446.jpg,3.9,9188,\"fiction, classics\",\"Cacciato gathers compass, fresh water, and maps and walks out of the mire\nand fury of Vietnam, bound for the gaiety and life of Paris.\"\r\n9056,9744,854252,\"Roger Lea MacBride, David Gilleece\",Little House on Rocky Ridge,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348247752l/854252.jpg,3.83,14135,\"fiction, classics\",\"From the time of the first publication of the Little House books in the\n1930's and 40's, millions of readers have grown up with Laura In galls and\nher sisters as Pa led the family from the Big Woods of Wisconsin across the\nplains and Indian country to South Dakota. There Laura marries Almanzo\nWilder, and after years of drought and fire destroy their farm, the Wilders\nmust now look for a new future. When Rose Wilder is seven years old, she\nand her mama - Laura - and her papa - Almanzo - set off on a journey that\nwill take them across a landscape Laura hasn't seen since she traveled it\nas a child: back through the Dakota territory, Nebraska, and Kansas and\nfinally to Missouri, the land of the Big Red Apple.\"\r\n9057,9745,15954546,Catherine Bybee,Not Quite Dating,https://images.gr-assets.com/books/1350588787l/15954546.jpg,3.88,7880,\"romance, contemporary\",\"Waitress and single mom Jessica \"\"Jessie\"\" Mann doubts a carefree dreamer\nlike Jack can provide the financial stability she needs. But she doesn't\nknow that he is heir to the Morrison luxury hotel empire--and Jack's daring\ncharade may rob him of the holiday wish he wants most of all.\"\r\n9058,9746,934700,\"Dr. Seuss, Theo LeSieg, Roy McKie\",In a People House,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348082534l/934700.jpg,4.13,11977,\"fiction, classics\",\"In a People HouseDr. Seuss, Theo LeSieg, Roy McKie\"\r\n9059,9747,5943970,J.D. Robb,Kindred in Death ,https://images.gr-assets.com/books/1348954491l/5943970.jpg,4.31,13207,\"mystery, romance\",Kindred in Death J.D. Robb\r\n9060,9748,294430,Carl Hiaasen,Lucky You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348961015l/294430.jpg,3.84,9144,\"fiction, mystery\",Lucky YouCarl Hiaasen\r\n9061,9749,20249,\"Brian Herbert, Kevin J. Anderson\",Hunters of Dune,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429681489l/20249.jpg,3.62,9121,\"fiction, fantasy\",\"Hunters of Dune and the concluding volume, Sandworms of Dune, bring\ntogether the great story lines and beloved characters in Frank Herbert's\nclassic Dune universe, ranging from the time of the Butlerian Jihad to the\noriginal Dune series and beyond. Based directly on Frank Herbert's final\noutline, which lay hidden in a safe-deposit box for a decade, these two\nvolumes will finally answer the urgent questions Dune fans have been\ndebating for two decades. At the end of Chapterhouse: Dune--Frank Herbert's\nfinal novel--a ship carrying the ghola of Duncan Idaho, Sheeana (a young\nwoman who can control sandworms), and a crew of various refugees escapes\ninto the uncharted galaxy, fleeing from the monstrous Honored Matres, dark\ncounterparts to the Bene Gesserit Sisterhood. The nearly invincible Honored\nMatres have swarmed into the known universe, driven from their home by a\nterrifying, mysterious Enemy. As designed by the creative genius of Frank\nHerbert, the primary story of Hunters and Sandworms is the exotic odyssey\nof Duncan's no-ship as it is forced to elude the diabolical traps set by\nthe ferocious, unknown Enemy. To strengthen their forces, the fugitives\nhave used genetic technology from Scytale, the last Tleilaxu Master, to\nrevive key figures from Dune's past--including Paul Muad'Dib and his\nbeloved Chani, Lady Jessica, Stilgar, Thufir Hawat, and even Dr. Wellington\nYueh. Each of these characters will use their special talents to meet the\nchallenges thrown at them. Failure is unthinkable--not only is their\nsurvival at stake, but they hold the fate of the entire human race in their\nhands.\"\r\n9062,9750,20575440,Héctor Tobar,\"Deep Down Dark: The Untold Stories of 33 Men Buried in a Chilean Mine, and the Miracle That Set Them Free\",https://images.gr-assets.com/books/1398199578l/20575440.jpg,3.9,6123,\"nonfiction, history\",\"Includes New Material Exclusive to the Paperback A Finalist for a National\nBook Critics Circle Award A Finalist for a Los Angeles Times Book Prize A\nNew York Times Book Review Notable Book When the San José mine collapsed\noutside of Copiapó, Chile, in August 2010, it trapped thirty-three miners\nbeneath thousands of feet of rock for a record-breaking sixty-nine days.\nAfter the disaster, Pulitzer Prize-winning journalist Héctor Tobar received\nexclusive access to the miners and their tales, and in Deep Down Dark, he\nbrings them to haunting, visceral life. We learn what it was like to be\nimprisoned inside a mountain, understand the horror of being slowly\nconsumed by hunger, and experience the awe of working in such a place-one\nfilled with danger and that often felt alive. A masterwork of narrative\njournalism and a stirring testament to the power of the human spirit, Deep\nDown Dark captures the profound ways in which the lives of everyone\ninvolved in the catastrophe were forever changed.\"\r\n9063,9751,535494,Francis A. Schaeffer,How Should We Then Live? The Rise and Decline of Western Thought and Culture,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387666014l/535494.jpg,4.16,9124,\"christian, philosophy\",\"Special 50th anniversary L'Abri Fellowship edition. Schaeffer's seminal\nwork which analyzed the reasons for modern society's state of affairs and\npresented living a Christ-centered life as the only viable alternative\"\r\n9064,9753,14403,\"Robert Coles, George Ford\",The Story of Ruby Bridges,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389666928l/14403.jpg,4.41,9703,\"biography, history\",\"For months six-year-old Ruby Bridges must confront the hostility of white\nparents when she becomes the first African American girl to integrate\nWilliam Frantz Elementary School in New Orleans in 1960.\"\r\n9065,9754,376561,Vladimir Nabokov,Приглашение на казнь,https://images.gr-assets.com/books/1405182507l/376561.jpg,3.94,8812,\"fiction, classics\",Приглашение на казньVladimir Nabokov\r\n9066,9755,21400356,Pepper Winters,Debt Inheritance,https://images.gr-assets.com/books/1395175825l/21400356.jpg,3.79,14713,\"romance, contemporary\",\"A New York Times, Wall Street Journal, & USA Today Bestselling Dark Romance\nSeries. \"\"I own you. I have the piece of paper to prove it. It's undeniable\nand unbreakable. You belong to me until you've paid off your debts.\"\" Nila\nWeaver's family is indebted. Being the first born daughter, her life is\nforfeit to the first born son of the Hawks to pay for sins of ancestors\npast. The dark ages might have come and gone, but debts never leave. She\nhas no choice in the matter. She is no longer free. Jethro Hawk receives\nNila as an inheritance present on his twenty-ninth birthday. Her life is\nhis until she's paid off a debt that's centuries old. He can do what he\nlikes with her-nothing is out of bounds-she has to obey. There are no\nrules. Only payments.\"\r\n9067,9756,13508021,Patricia Harman,The Midwife of Hope River ,https://images.gr-assets.com/books/1344449564l/13508021.jpg,4,7736,\"fiction, history\",\"Midwife Patience Murphy has a gift: a talent for escorting mothers through\nthe challenges of bringing children into the world. Working in the\nhardscrabble conditions of Appalachia during the Depression, Patience takes\nthe jobs that no one else wants, helping those most in need—and least\nlikely to pay. She knows a successful midwifery practice must be built on a\nfoundation of openness and trust—but the secrets Patience is keeping are\nfar too intimate and fragile for her to ever let anyone in. Honest, moving,\nand beautifully detailed, Patricia Harman's The Midwife of Hope River rings\nwith authenticity as Patience faces nearly insurmountable difficulties.\nFrom the dangerous mines of West Virginia to the terrifying attentions of\nthe Ku Klux Klan, Patience must strive to bring new light and life into an\notherwise hard world.\"\r\n9068,9757,1145862,\"Patty Lovell, David Catrow\",\"Stand Tall, Molly Lou Melon\",https://images.gr-assets.com/books/1314105738l/1145862.jpg,4.39,11397,fiction,\"Even when the class bully at her new school makes fun of her, Molly\nremembers what her grandmother told her and she feels good about herself.\"\r\n9069,9758,50091,Isaac Asimov,The Complete Robot,https://images.gr-assets.com/books/1405467461l/50091.jpg,4.34,10362,\"fiction, classics\",Science fiction-noveller.\r\n9070,9759,386,Nick Flynn,Another Bullshit Night in Suck City: A Memoir,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177754l/386.jpg,3.77,8441,\"memoir, nonfiction\",\"The son of a convicted bank robber and con artist describes their\ncomplicated relationship, relating how his father, while in jail, sent the\nauthor letters throughout his childhood and turned up in a Boston homeless\nshelter where the author was a caseworker. 35,000 first printing.\"\r\n9071,9761,40496,Richard Llewellyn,How Green Was My Valley,https://images.gr-assets.com/books/1440708862l/40496.jpg,4.16,10648,\"classics, fiction\",\"How Green Was My Valley is Richard Llewellyn's bestselling -- and timeless\n-- classic and the basis of a beloved film. As Huw Morgan is about to leave\nhome forever, he reminisces about the golden days of his youth when South\nWales still prospered, when coal dust had not yet blackened the valley.\nDrawn simply and lovingly, with a crisp Welsh humor, Llewellyn's characters\nfight, love, laugh and cry, creating an indelible portrait of a people.\"\r\n9072,9762,142108,\"Robert T. Kiyosaki, Sharon L. Lechter\",\"Rich Dad's Guide to Investing: What the Rich Invest in, That the Poor and the Middle Class Do Not!\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183306l/142108.jpg,3.94,7950,\"business, nonfiction\",\"From the author of \"\"Rich Dad, Poor Dad\"\" comes a guide to achieving\nfinancial freedom. Kiyosaki shows readers how to determine where they are\nfinancially today; how to decide financial goals for five years in the\nfuture; and how to identify paths to achieve these goals.\"\r\n9073,9763,5303373,Carol Lynch Williams,The Chosen One,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440277077l/5303373._SY475_.jpg,3.85,12865,\"fiction, contemporary\",\"Carol Lynch Willams' The Chosen One is a dazzling novel about a young\nteenager's rebellion from the polygamist cult that would have her become\nthe seventh wife to her 60-year-old uncle Thirteen-year-old Kyra has grown\nup in an isolated community without questioning the fact that her father\nhas three wives and she has twenty brothers and sisters, with two more on\nthe way. That is, without questioning them much---if you don't count her\nsecret visits to the Mobile Library on Wheels to read forbidden books, or\nher meetings with Joshua, the boy she hopes to choose for herself instead\nof having a man chosen for her. But when the Prophet decrees that she must\nmarry her sixty-year-old uncle---who already has six wives---Kyra must make\na desperate choice in the face of violence and her own fears of losing her\nfamily forever.\"\r\n9074,9765,68985,\"Jim Loehr, Tony Schwartz\",\"The Power of Full Engagement: Managing Energy, Not Time, Is the Key to High Performance and Personal Renewal\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431760957l/68985._SY475_.jpg,4.03,8437,\"business, psychology\",\"A personal energy training program outlines strategies on how to prevent\nburnout and improve productivity, discussing such areas as how to work with\nfour key sources of energy, balancing stress and recovery, expanding\ncapacity, and implementing positive routines. Reprint. 60,000 first\nprinting.\"\r\n9075,9766,19400,\"Edward Gibbon, Daniel J. Boorstin, Gian Battista Piranesi, Hans-Friedrich Mueller\",The History of the Decline and Fall of the Roman Empire,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435759367l/19400._SY475_.jpg,3.96,8182,\"history, classics\",\"Recounts the events that led to the fall of the Roman Empire, from the\nsecond century A.D. to the fifteenth century A.D.\"\r\n9076,9767,608601,\"Donald Hall, Barbara Cooney\",Ox-Cart Man,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348191605l/608601.jpg,4.03,12019,\"fiction, history\",\"Describes the day-to-day life of an early nineteenth-century New England\nfamily throughout the changing seasons.\"\r\n9077,9768,52318,Octavia E. Butler,\"Wild Seed (Patternmaster, #1)\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462753l/52318.jpg,4.22,9711,\"fantasy, fiction\",\"Wild Seed (Patternmaster, #1)Octavia E. Butler\"\r\n9078,9769,11410104,Jenny Han,The summer I turned pretty,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1309117333l/11410104.jpg,4.46,9308,\"contemporary, fiction\",\"Belly spends the summer she turns sixteen at the beach just like every\nother summer of her life, but this time things are very different.\"\r\n9079,9770,10088913,حسن الجندي,مخطوطة بن إسحاق: مدينة الموتى,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1293877585l/10088913.jpg,3.76,8103,\"horror, fiction\",مخطوطة بن إسحاق: مدينة الموتىحسن الجندي\r\n9080,9772,15764,Anne Tyler,The Amateur Marriage,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389486880l/15764.jpg,3.59,11527,\"fiction, contemporary\",\"Marrying quickly during World War II after falling in love at first sight,\na mismatched couple discovers that their very different personalities and\napproaches to life are taking a toll on their lives, their relationship,\nand their family, in a compelling novel spanning three generations.\nReader's Guide included. Reprint. 300,000 first printing.\"\r\n9081,9773,325416,\"Hugh Lofting, Michael Hague\",The Voyages of Doctor Dolittle,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173762814l/325416._SX318_.jpg,4,11534,\"fiction, fantasy\",\"When his colleague Long Arrow disappears, Dr. Dolittle sets off with his\nassistant, Tommy Stubbins, his dog, Jip, and Polynesia the parrot on an\nadventurous voyage over tropical seas to floating Spidermonkey Island.\"\r\n9082,9774,8113344,Derek Landy,Mortal Coil,https://images.gr-assets.com/books/1442456495l/8113344.jpg,4.48,10972,\"fantasy, mystery\",\"Following the shocking revelations of DARK DAYS, get ready for the fifth\ninstalment of the bestselling Skulduggery Pleasant series -- guaranteed to\ncontain at least 40% humour, 50% action, and 100% thrills!\"\r\n9083,9775,6954438,\"Jeff Lemire, José Villarrubia, Carlos M. Mangual\",\"Sweet Tooth, Volume 1: Out of the Deep Woods\",https://images.gr-assets.com/books/1406510539l/6954438.jpg,3.9,11306,\"comics, fantasy\",\"Following on the heels of THE NOBODY, his Vertigo graphic novel debut,\nwriter/artist Jeff Lemire pens his very first ongoing series SWEET TOOTH. A\ncross between Bambi and Cormac McCarthy's The Road, SWEET TOOTH tells the\nstory of Gus, a rare new breed of human/animal hybrid children, has been\nraised in isolation following an inexplicable pandemic that struck a decade\nearlier. Now, with the death of his father he's left to fend for himself .\n. . until he meets a hulking drifter named Jepperd who promises to help\nhim. Jepperd and Gus set out on a post-apocalyptic journey into the\ndevastated American landscape to find 'The Preserve' a refuge for hybrids.\nThis unique and haunting new series is written and illustrated by Eisner-\nnominated creator Lemire (The Essex County Trilogy) and colored by fellow\nEisner nominee Jose Villarubia.\"\r\n9084,9778,158446,Rafael Sabatini,Captain Blood: His Odyssey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347258939l/158446.jpg,4.16,9714,\"classics, fiction\",Captain Blood: His OdysseyRafael Sabatini\r\n9085,9779,43739,\"Warren Ellis, Adi Granov\",Iron Man: Extremis,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503693014l/43739._SY475_.jpg,4.08,9338,\"comics, fiction\",\"Iron Man: ExtremisWarren Ellis, Adi Granov\"\r\n9086,9780,1335019,\"H.P. Lovecraft, Les Edwards, Stephen Jones\",The Necronomicon,https://images.gr-assets.com/books/1264059645l/1335019.jpg,4.29,8344,\"horror, fantasy\",\"A collection of 36 horror tales by the early twentieth-century writer H.P.\nLovecraft.\"\r\n9087,9781,6081686,Hiro Fujiwara,会長はメイド様! 2,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452778l/6081686.jpg,4.53,9843,\"manga, romance\",会長はメイド様! 2Hiro Fujiwara\r\n9088,9783,17671913,\"Scott Snyder, Greg Capullo, Jonathan Glapion\",\"Batman, Volume 3: Death of the Family\",https://images.gr-assets.com/books/1376507913l/17671913.jpg,4.33,8229,\"comics, horror\",\"Following his groundbreaking, critically acclaimed run on Detective Comics,\nSnyder begins a new era of The Dark Knight alongside artist Capullo when a\nseries of brutal murders rocks Gotham City and Batman to the core.\"\r\n9089,9785,2133827,Mathias Malzieu,La Mécanique du cœur,https://images.gr-assets.com/books/1327407179l/2133827.jpg,3.6,5497,\"fantasy, romance\",\"Edimbourg, 1874 : le jour le plus froid du monde. Lorsque Jack naît, son\ncœur gelé se brise immédiatement. La sage-femme le remplace par une horloge\net le sauve. Depuis lors, il doit prendre soin d'en remonter chaque matin\nle mécanisme. Mais gare aux passions ! Le regard de braise d'une petite\nchanteuse andalouse va mettre le cœur de Jack à rude épreuve...\"\r\n9090,9786,13035050,Diane Chamberlain,The Good Father,https://images.gr-assets.com/books/1328218551l/13035050.jpg,3.94,10068,\"fiction, contemporary\",\"After losing his construction job and his home, 23-year-old single father\nTravis Brown, who will do anything for his daughter Bella, gets an offer to\nparticipate in a onetime criminal act that promises quick money and no\nrepercussions, which forces him to make a difficult decision for his\ndaughter's sake. Original. 52,000 first printing.\"\r\n9091,9787,18271235,Laura  McBride,We Are Called to Rise,https://images.gr-assets.com/books/1403347563l/18271235.jpg,3.94,5687,\"fiction, contemporary\",\"An immigrant youth struggling to assimilate, a middle-aged housewife with a\ntroubled marriage, a Vegas social worker and a wounded soldier connect with\neach other and rescue themselves in the wake of an unthinkable incident. A\nfirst novel.\"\r\n9092,9788,23399022,\"Amanda Berry, Gina DeJesus, Mary Jordan, Kevin Sullivan\",Hope,https://images.gr-assets.com/books/1421708177l/23399022.jpg,4.27,3799,\"memoir, nonfiction\",\"The #1 New York Times Bestseller A bestselling book that is inspiring the\nnation: \"\"We have written here about terrible things that we never wanted to\nthink about again . . . Now we want the world to know: we survived, we are\nfree, we love life.\"\" Two women kidnapped by infamous Cleveland school-bus\ndriver Ariel Castro share the stories of their abductions, captivity, and\ndramatic escape On May 6, 2013, Amanda Berry made headlines around the\nworld when she fled a Cleveland home and called 911, saying: \"\"Help me, I'm\nAmanda Berry. . . . I've been kidnapped, and I've been missing for ten\nyears.\"\" A horrifying story rapidly unfolded. Ariel Castro, a local school\nbus driver, had separately lured Berry, Gina DeJesus, and Michelle Knight\nto his home, where he kept them chained. In the decade that followed, the\nthree were raped, psychologically abused, and threatened with death. Berry\nhad a daughter--Jocelyn--by their captor. Drawing upon their recollections\nand the diary kept by Amanda Berry, Berry and Gina DeJesus describe a tale\nof unimaginable torment, and Pulitzer Prize-winning Washington Post\nreporters Mary Jordan and Kevin Sullivan interweave the events within\nCastro's house with original reporting on efforts to find the missing\ngirls. The full story behind the headlines--including details never\npreviously released on Castro's life and motivations--Hope is a harrowing\nyet inspiring chronicle of two women whose courage, ingenuity, and\nresourcefulness ultimately delivered them back to their lives and families.\"\r\n9093,9789,818372,Clive Cussler,Night Probe!,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388278191l/818372.jpg,3.89,10705,\"fiction, thriller\",\"American agent Dirk Pitt's deep-sea mission to recover a lost treaty by\nwhich Canada was sold to the United States is countered by the British and\nthe Soviets.\"\r\n9094,9790,214579,Daniel Quinn,The Story of B: An Adventure of the Mind and Spirit,https://images.gr-assets.com/books/1403169485l/214579.jpg,4.11,7730,\"fiction, philosophy\",The Story of B: An Adventure of the Mind and SpiritDaniel Quinn\r\n9095,9791,23569783,Elisabeth Egan,A Window Opens,https://images.gr-assets.com/books/1440378428l/23569783.jpg,3.53,8544,\"fiction, contemporary\",\"\"\"From the beloved books editor at Glamour magazine comes a heartfelt and\npainfully funny debut about what happens when a wife and mother of three\nleaps at the chance to fulfill her professional destiny--only to learn\nevery opportunity comes at a price. In A Window Opens, Elisabeth Egan\nbrings us Alice Pearse, a compulsively honest, longing-to-have-it-all,\nsandwich generation heroine for our social-media-obsessed, lean in (or opt\nout) age. Like her fictional forebears Kate Reddy and Bridget Jones, Alice\nplays many roles (which she never refers to as \"\"wearing many hats\"\" and\nwishes you wouldn't, either). She is a mostly-happily married mother of\nthree, an attentive daughter, an ambivalent dog-owner, a part-time editor,\na loyal neighbor, and a Zen commuter. She is not: a cook, a craftswoman, a\ndecorator, an active PTA member, a natural caretaker, or the breadwinner.\nBut when her husband makes a radical career change, Alice is ready to lean\nin--and she knows exactly how lucky she is to land a job at Scroll, a hip\nyoung start-up which promises to be the future of reading, with its chain\nof chic literary lounges and dedication to beloved classics. The Holy Grail\nof working mothers--an intellectually satisfying job and a happy personal\nlife--seems suddenly within reach. Despite the disapproval of her best\nfriend, who owns the local bookstore, Alice is proud of her new \"\"balancing\nact\"\" (which is more like a three-ring circus) until her dad gets sick, her\nmarriage flounders, her babysitter gets fed up, her kids start to grow up,\nand her work takes an unexpected turn. Fans of I Don't Know How She Does\nIt, Where'd You Go Bernadette, and The Storied Life of A.J. Fikry will\ncheer as Alice realizes the question is not whether it's possible to have\nit all, but what does she--Alice Pearse--really want?\"\"--\"\r\n9096,9793,15677,Patricia Highsmith,Strangers on a Train,https://images.gr-assets.com/books/1331234879l/15677.jpg,3.82,9788,\"fiction, classics\",\"Guy Haines loses his own identity after he is drawn into a plot to commit\nmurder, in a new edition of the first novel by the author of The Talented\nMr. Ripley. Reprint.\"\r\n9097,9794,74462,Carol Shields,Unless,https://images.gr-assets.com/books/1327970989l/74462.jpg,3.63,9822,\"fiction, contemporary\",UnlessCarol Shields\r\n9098,9795,267869,Deanna Raybourn,Silent in the Grave,https://images.gr-assets.com/books/1483424891l/267869.jpg,3.91,13731,\"mystery, romance\",Silent in the GraveDeanna Raybourn\r\n9099,9796,201145,\"Else Holmelund Minarik, Maurice Sendak\",A Kiss for Little Bear,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252472l/201145.jpg,4.31,11063,\"fiction, classics\",\"A Kiss for Little BearElse Holmelund Minarik, Maurice Sendak\"\r\n9100,9797,18342283,\"Tom Clancy, Mark Greaney\",Command Authority,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194682l/18342283.jpg,4.08,6805,\"fiction, thriller\",\"There is a new strong man in Russia, but his rise to power is based on a\ndark secret hidden decades in the past, and the solution to that mystery\nlies with a most unexpected source, President Jack Ryan.\"\r\n9101,9798,271264,Tite Kubo,BLEACH―ブリーチ―　3,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428789642l/271264.jpg,4.31,11365,\"manga, fantasy\",BLEACH―ブリーチ―　3Tite Kubo\r\n9102,9800,209631,\"Loek Koopmans, Charles Perrault, Anthea Bell\",Cinderella,https://images.gr-assets.com/books/1393792231l/209631.jpg,4.22,9836,\"classics, fantasy\",\"With the help of her fairy godmother, a beautiful young woman mistreated by\nher stepmother and stepsisters attends the palace ball where she meets the\nprince whom she marries. Reprint.\"\r\n9103,9801,82817,Danielle Steel,Zoya,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171026179l/82817._SY475_.jpg,3.95,10358,\"romance, fiction\",\"In exile from her native Russia, Zoya, a cousin to the czar, survives the\ncentury's disasters as she moves from fortune to fortune and from love to\nnew love\"\r\n9104,9803,201138,\"Stan Berenstain, Jan Berenstain\",The Berenstain Bears and Too Much TV,https://images.gr-assets.com/books/1457297865l/201138.jpg,4,11036,\"fiction, classics\",\"Concerned that the family is spending too much time in front of the\ntelevision and neglecting other activities, Mama Bear decides that there\nwill be no television watching for one week.\"\r\n9105,9804,7027569,C.J. Sansom,Heartstone,https://images.gr-assets.com/books/1272182205l/7027569.jpg,4.31,8297,\"mystery, fiction\",\"Asked by an old servant of Queen Catherine Parr to investigate claims of\nwrongs committed against a young ward of the court, Matthew Shardlake\nembarks on the most politically dangerous case of his career against a\nbackdrop of war between England and France. Reprint. A best-selling novel.\"\r\n9106,9806,6801614,Eiichirō Oda,ONE PIECE 38,https://images.gr-assets.com/books/1397155647l/6801614.jpg,4.63,8441,\"manga, fantasy\",\"Join Monkey D. Luffy and his swashbuckling crew in their search for the\nultimate treasure, One Piece! As a child, Monkey D. Luffy dreamed of\nbecoming King of the Pirates. But his life changed when he accidentally\ngained the power to stretch like rubber…at the cost of never being able to\nswim again! Years, later, Luffy sets off in search of the “One Piece,” said\nto be the greatest treasure in the world... After finding out the real\nreason for Robin's betrayal, the Straw Hats are in a madcap race to rescue\nher from CP9, the Navy's elite assassin group. But first they'll have to\nfind a way to sail through the tidal wave known as Aqua Laguna. Will the\nRocketman be seaworthy for the task at hand, or will it be a runaway train\nto catastrophe?!\"\r\n9107,9808,1098486,Elyn R. Saks,The Center Cannot Hold,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347528604l/1098486.jpg,4.22,7533,\"psychology, memoir\",\"A memoir of paranoid schizophrenia by an accomplished professor recounts\nher first symptoms at the age of eight, her efforts to hide the severity of\nher condition, and the obstacles she has overcome in the course of her\ntreatment and marriage.\"\r\n9108,9810,109509,Frederick Forsyth,The Afghan,https://images.gr-assets.com/books/1309198395l/109509.jpg,3.64,7792,\"thriller, fiction\",\"When British and American intelligence uncover rumors of a major Al Qaeda\noperation, they enlist the assistance of Colonel Mike Martin to assume the\nidentity of Afghan terrorist Izmat Khan in order to infiltrate the\nterrorist organization.\"\r\n9109,9811,10518110,\"Lynsay Sands, Jeaniene Frost\",The Bite Before Christmas,https://images.gr-assets.com/books/1328313295l/10518110.jpg,4.16,14209,\"paranormal, romance\",\"This holiday season, two of today’s most popular paranormal authors invite\nyou into their worlds—where creatures are always stirring . . . and no one\nsleeps through the night.\"\r\n9110,9812,311196,Georgette Heyer,Frederica,https://images.gr-assets.com/books/1395082866l/311196.jpg,4.15,12198,\"romance, fiction\",\"Best-known and best-loved of all historical novelists who made the Regency\nperiod her own, Georgette Heyer is unbeatable. Rich, handsome, darling of\nthe ton, the hope of ambitious mothers and despair of his sisters - the\nMarquis of Alverstoke sees no reason to put himself out for anyone. Until a\ndistant connection, ignorant of his selfishness, applies to him for help.\nPlunged headlong into one drama after another by the large and\nirrepressible Merriville family, Alverstoke is surprised to find himself\nfar from bored. The lovely Charis may be as hen-witted as she is beautiful\nbut Jessamy is an interesting boy, and Felix an engaging scamp. And, most\nintriguing of all, their strong-minded sister Frederica, who seems more\nconcerned with her family's welfare than his own distinguished attentions\n...\"\r\n9111,9814,513207,Kevin J. Anderson,\"Star Wars: The Jedi Academy Trilogy, Volume III - Champions of the Force\",https://images.gr-assets.com/books/1327008722l/513207.jpg,3.67,10605,\"fiction, fantasy\",\"Kyp Durron, Luke Skywalker's rebellious and most talented student, steals\nthe design for the Sun Crusher, a heavily-armored spaceship with the\ncapability of destroying suns, and begins a vendetta against the Empire\"\r\n9112,9815,5103512,Martha Stewart,Martha Stewart's Cupcakes: 175 Inspired Ideas for Everyone's Favorite Treats,https://images.gr-assets.com/books/1320443899l/5103512.jpg,4.11,8317,\"cookbooks, nonfiction\",\"Features recipes for cupcakes, from classics such as devil's food to\nsurprises like peanut butter and jelly, as well as frostings, fillings,\ntoppings, and a wide selection of decorating and embellishment ideas,\nincluding stencil templates, and an equipment glossary. Original.\"\r\n9113,9817,1422250,Lynsay Sands,Vampires are Forever,https://images.gr-assets.com/books/1351280934l/1422250.jpg,4.25,15403,\"paranormal, romance\",\"Inez Urso is beginning to have her doubts. Her business associate Thomas\nArgeneau has some interesting traits, like an allergic reaction to the sun,\nexcellent night vision, and not much of an appetite for food. And to top it\nall off, he just tried to bite her neck . . . but maybe that was a sign of\npassion. If so, she'd be happy to experience more, despite her\ndetermination not to mix business with pleasure. Well, if not forever, at\nleast two hundred years. Inez is the most beautiful woman he's seen in\ncenturies. Those luscious lips, seductive curves, and her elegant neck . .\n. he just couldn't resist the temptation of one little bite. Now Thomas\nwill do anything to convince her that only an immortal like him can satisfy\nher all night long . . .\"\r\n9114,9819,335397,Richard Henry Dana Jr.,Two Years Before the Mast,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173843539l/335397._SY475_.jpg,3.96,8492,\"classics, history\",Two Years Before the MastRichard Henry Dana Jr.\r\n9115,9820,7078265,Lisa Scottoline,Think Twice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441689787l/7078265._SY475_.jpg,3.62,10211,\"mystery, fiction\",Think TwiceLisa Scottoline\r\n9116,9821,245700,\"Amy Brown, Charles  de Lint\",The Art of Amy Brown,https://images.gr-assets.com/books/1328765892l/245700.jpg,4.04,8637,\"art, fantasy\",\"The Art of Amy BrownAmy Brown, Charles  de Lint\"\r\n9117,9822,716944,\"Martin Waddell, Patrick Benson\",Owl Babies,https://images.gr-assets.com/books/1408930554l/716944.jpg,4.19,11299,\"fiction, classics\",\"Owl BabiesMartin Waddell, Patrick Benson\"\r\n9118,9823,22749750,Angela Flournoy,The Turner House,https://images.gr-assets.com/books/1408469614l/22749750.jpg,3.64,8645,\"fiction, contemporary\",\"NATIONAL BOOK AWARD FINALIST A powerful, timely debut, The Turner House\nmarks a major new contribution to the story of the American family. The\nTurners have lived on Yarrow Street for over fifty years. Their house has\nseen thirteen children grown and gone—and some returned; it has seen the\narrival of grandchildren, the fall of Detroit’s East Side, and the loss of\na father. The house still stands despite abandoned lots, an embattled city,\nand the inevitable shift outward to the suburbs. But now, as ailing\nmatriarch Viola finds herself forced to leave her home and move in with her\neldest son, the family discovers that the house is worth just a tenth of\nits mortgage. The Turner children are called home to decide its fate and to\nreckon with how each of their pasts haunts—and shapes—their family’s\nfuture. Praised by Ayana Mathis as “utterly moving” and “un-putdownable,”\nThe Turner House brings us a colorful, complicated brood full of love and\npride, sacrifice and unlikely inheritances. It’s a striking examination of\nthe price we pay for our dreams and futures, and the ways in which our\nfamilies bring us home.\"\r\n9119,9824,359463,Dee Henderson,Danger in the Shadows,https://images.gr-assets.com/books/1406507237l/359463.jpg,4.33,10333,\"christian, romance\",\"Under FBI protection, Sara Welsh is falling in love with a former pro\nfootball player, Adam Black, and soon they are both caught in a chain of\nevents that brings Sara face to face with terror that has stalked her since\nchildhood.\"\r\n9120,9825,17257484,Samantha Towle,Trouble,https://images.gr-assets.com/books/1363602953l/17257484.jpg,4,13959,\"romance, contemporary\",\"Mia Monroe is running from a past she doesn't ever want anyone to know.\nJordan Matthews likes easy women and an easy life. He can see that Mia is\ndamaged, troubled and has more baggage than any person can carry. As Jordan\ngets to know Mia, he finds himself wanting to try hard for someone for the\nfirst time in his life. Then the past Mia was running from starts to catch\nup with her....\"\r\n9121,9826,67863,\"Ted Andrews, Winston Allen, Margaret K. Andrews\",Animal Speak: The Spiritual & Magical Powers of Creatures Great & Small,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347311507l/67863.jpg,4.25,8581,\"spirituality, nonfiction\",\"This book reveals how to learn the techniques for reading signs and omens\nin nature so one can be opened to higher perceptions, even prophecy.\nIncludes a dictionary of animal, bird, insect, and reptile symbolism.\"\r\n9122,9827,5981415,Debbie Macomber,Summer On Blossom Street (Blossom Street #6),https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442703061l/5981415._SY475_.jpg,4.19,10681,\"romance, fiction\",Summer On Blossom Street (Blossom Street #6)Debbie Macomber\r\n9123,9828,34295,Maeve Binchy,Whitethorn Woods,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388347440l/34295.jpg,3.59,10409,\"fiction, romance\",Whitethorn WoodsMaeve Binchy\r\n9124,9829,13151637,محمد صادق,\"رواية \"\" طه الغريب \"\"\",https://images.gr-assets.com/books/1421427887l/13151637.jpg,3.67,7662,\"romance, fiction\",\"رواية \"\" طه الغريب \"\"محمد صادق\"\r\n9125,9830,96702,Stephanie Kallos,Broken for You,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442278943l/96702._SX318_.jpg,3.8,10014,\"fiction, contemporary\",Broken for YouStephanie Kallos\r\n9126,9832,130260,Mo Hayder,Birdman,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388725583l/130260.jpg,3.88,9726,\"mystery, thriller\",\"Now in Grove Press paperback for the first time, Birdman showcases Hayder\nat her spine-tingling best as beloved series character Jack Caffery tracks\ndown a terrifying serial killer. In his first case as lead investigator\nwith London’s crack murder squad, Detective Inspector Jack Caffery is\ncalled on to investigate the murder of a young woman whose body has been\ndiscovered near the Millennium Dome in Greenwich, south-east London.\nBrutalized, mutilated beyond recognition, the victim is soon joined by four\nothers discovered in the same area--all female and all ritualistically\nmurdered. And when the post-mortem examination reveals a gruesome signature\nconnecting the victims, Caffery realizes exactly what he’s dealing with--a\ndangerous serial killer.\"\r\n9127,9834,25014,Simon Winchester,The Map That Changed the World: William Smith and the Birth of Modern Geology,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436981852l/25014._SY475_.jpg,3.81,9131,\"history, science\",The Map That Changed the World: William Smith and the Birth of Modern GeologySimon Winchester\r\n9128,9835,72855,Sara Donati,Lake in the Clouds,https://images.gr-assets.com/books/1367533032l/72855.jpg,4.31,9223,\"romance, fiction\",\"The questions, topics, and author biography that follow are intended to\nenhance your reading of Sara Donati’s Lake in the Clouds . We hope they\nwill enrich your experience of this adventure-filled novel.\"\r\n9129,9837,18079719,Andrew  Smith,Grasshopper Jungle,https://images.gr-assets.com/books/1373059909l/18079719.jpg,3.66,11890,\"fiction, fantasy\",Grasshopper JungleAndrew  Smith\r\n9130,9838,65633,\"Perry Moore, Andrew Adamson, C.S. Lewis\",\"The Chronicles of Narnia - The Lion, the Witch, and the Wardrobe Official Illustrated Movie Companion\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441420339l/65633._SX318_.jpg,4.48,7328,\"fantasy, nonfiction\",\"The ultimate visual companion and keepsake to the making of the stunning\nfantasy film The Chronicles of Narnia: The Lion, the Witch, and the\nWardrobe based on the beloved children's classic by C.S. Lewis. C.S. Lewis\nwrote the classic children's series over 50 years ago, and the amazing land\nof Narnia is finally coming to the big screen. This beautiful book captures\nthe creative energy behind this film and offers the official inside story\non how the magic was made. Includes selections from the script, still shots\nfrom the film, photos of the production, an introduction and stories\nthroughout from the producer, Perry Moore, reflections and anecdotes from\ncast and crew, and much more. By going beyond the usual soundbites which\nmake up traditional 'Making Of' books, this insider's account allows for\nthe real personality of the project and its people to shine through its\npages.\"\r\n9131,9839,352383,Jean Anouilh,Antigone,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174001536l/352383.jpg,3.8,10449,\"classics, fiction\",AntigoneJean Anouilh\r\n9132,9841,15101,Joanne Harris,Blackberry Wine,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442203288l/15101._SY475_.jpg,3.78,9558,\"fiction, contemporary\",\"As a boy, writer Jay Mackintosh spent three golden summers in the\nramshackle home of \"\"Jackapple Joe\"\" Cox. A lonely child, he found solace in\nOld Joe's simple wisdom and folk charms. The magic was lost, however, when\nJoe disappeared without warning one fall. Years later, Jay's life is\nstalled with regret and ennui. His bestselling novel, Jackapple Joe, was\npublished ten years earlier and he has written nothing since. Impulsively,\nhe decides to leave his urban life in London and, sight unseen, purchases a\nfarmhouse in the remote French village of Lansquenet. There, in that\nstrange and yet strangely familiar place, Jay hopes to re-create the magic\nof those golden childhood summers. And while the spirit of Joe is calling\nto him, it is actually a similarly haunted, reclusive woman who will\nultimately help Jay find himself again.\"\r\n9133,9842,24019187,Brandon Stanton,Humans of New York: Stories,https://images.gr-assets.com/books/1430176879l/24019187.jpg,4.5,12527,\"nonfiction, art\",\"In the summer of 2010, photographer Brandon Stanton began an ambitious\nproject -to single-handedly create a photographic census of New York City.\nThe photos he took and the accompanying interviews became the blog Humans\nof New York. In the first three years, his audience steadily grew from a\nfew hundred to over one million. In 2013, his book Humans of New York,\nbased on that blog, was published and immediately catapulted to the top of\nthe NY Times Bestseller List. It has appeared on that list for over twenty-\nfive weeks to date. The appeal of HONY has been so great that in the course\nof the next year Brandon's following increased tenfold to, now, over 12\nmillion followers on Facebook. In the summer of 2014, the UN chose him to\ntravel around the world on a goodwill mission that had followers meeting\npeople from Iraq to the Ukraine to Mexico City via the photos he took. Now,\nBrandon is back with the follow up to Humans of New York that his loyal\nfollowers have been waiting for: Humans of New York: Stories. Ever since\nBrandon began interviewing people on the streets of NY, the dialogue he's\nhad with them has increasingly become as in-depth, intriguing and moving as\nthe photos themselves. Humans of New York: Stories presents a whole new\ngroup of humans, complete with stories that delve deeper and surprise with\ngreater candor. Let Brandon Stanton and the people he's photographed\nastonish you all over again.\"\r\n9134,9843,71867,John Marsden,The Other Side of Dawn,https://images.gr-assets.com/books/1331588583l/71867.jpg,4.21,10443,\"fiction, thriller\",\"In the thrilling conclusion of the author's Tomorrow series, Ellie and her\nfriends, five Australian teenagers who survived the enemy invasion of their\ncountry, use guerrilla tactics to support a major counterattack by New\nZealand troops. Reprint.\"\r\n9135,9844,17235347,Marie Lu,Life Before Legend,https://images.gr-assets.com/books/1358952957l/17235347.jpg,4.02,13933,\"ebooks, fantasy\",\"Find out more about June and Day in this never-before-seen glimpse into\ntheir daily lives before they met in Marie Lu’s New York Times bestselling\nLEGEND series. As twelve-year-olds struggling to survive in two very\ndifferent worlds within the Republic’s stronghold, June was starting her\nfirst day of school at Drake University as the youngest cadet ever\nadmitted, and Day was fighting for food on the streets of the Lake sector.\nLIFE BEFORE LEGEND contains two original stories written by Marie Lu that\ngive readers a sneak peek into the lives of their favorite characters in a\nthrilling new context.\"\r\n9136,9845,13360101,Maya Banks,Never Seduce a Scot,https://images.gr-assets.com/books/1328116176l/13360101.jpg,4.19,15968,\"romance, fiction\",\"When Eveline Armstrong, who never speaks, is forced into an arranged\nmarriage with Graeme Montgomery, a warrior from a rival clan, love grows\nbetween them as clan rivalries and dark forces conspire to keep them apart.\"\r\n9137,9846,1099097,Judith Kerr,The Tiger Who Came to Tea,https://images.gr-assets.com/books/1369858732l/1099097.jpg,4.23,10229,\"fiction, classics\",\"Share in fifty years of magic... This classic story of Sophie and her\nextraordinary teatime guest has been loved by millions of children since it\nwas first published fifty years ago. The Tiger has been coming to Tea for\n50 glorious years! Celebrate this incredible anniversary with this special\ncelebration edition of the classic story in paperback. The doorbell rings\njust as Sophie and her mummy are sitting down to tea. Who could it possibly\nbe? What they certainly don't expect to see at the door is a big furry,\nstripy tiger! This inimitable picture book is perfect for reading aloud, or\nfor small children to read to themselves time and again. First published in\n1968 and never out of print, it has become a timeless classic enjoyed and\nbeloved by generations of children. The magic begins at teatime!\"\r\n9138,9847,20685373,Suki Kim,\"Without You, There Is No Us: My Time with the Sons of North Korea's Elite\",https://images.gr-assets.com/books/1405292426l/20685373.jpg,3.85,8164,\"nonfiction, memoir\",\"The award-winning author of The Interpreter traces her experiences as an\nEnglish teacher to the sons of North Korea's elite during the last six\nmonths of Kim Jong Il's reign, an effort complicated by oppressive regime\nenforcers, propaganda and evangelical missionaries. 40,000 first printing.\"\r\n9139,9848,61899,Lois McMaster Bujold,A Civil Campaign,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924032l/61899.jpg,4.43,11823,\"romance, fiction\",\"Spring in Vorbarr Sultana sends its inhabitants looking for love, which too\noften proves to be unrequited.\"\r\n9140,9849,36638,\"Joan Aiken, Pat Marriott\",The Wolves of Willoughby Chase ,https://images.gr-assets.com/books/1441688212l/36638.jpg,4.08,13463,\"fantasy, fiction\",\"Three children become involved in a series of adventures when left under\nthe care of a detestable governess in a rural English manor.\"\r\n9141,9850,17563539,Andy Weir,The Egg,https://images.gr-assets.com/books/1431492647l/17563539.jpg,4.13,10238,\"fiction, philosophy\",The EggAndy Weir\r\n9142,9851,784222,\"Matsuri Hino, Tomo Kimura\",ヴァンパイア騎士 3 ,https://images.gr-assets.com/books/1317879553l/784222.jpg,4.27,13327,\"manga, fantasy\",\"ヴァンパイア騎士 3 Matsuri Hino, Tomo Kimura\"\r\n9143,9852,31266,Robert Ludlum,The Scarlatti Inheritance,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168273131l/31266.jpg,3.82,9934,\"fiction, thriller\",\"The Third Reich is in its death struggle... A brilliant international\nthriller from the No.1 bestselling author\"\r\n9144,9853,690955,Nick Bruel,Bad Kitty,https://images.gr-assets.com/books/1403422027l/690955.jpg,4.18,10884,\"fiction, fantasy\",\"When a kitty discovers that none of her favorite foods are in the house,\nshe decides to become very, very bad, in a clever alphabet book by the\nauthor of Boing!\"\r\n9145,9854,15398,Anita Diamant,The Last Days of Dogtown,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442805466l/15398._SY475_.jpg,3.39,8216,\"fiction, history\",The Last Days of DogtownAnita Diamant\r\n9146,9855,5266667,Alex Flinn,A Kiss in Time,https://images.gr-assets.com/books/1355870076l/5266667.jpg,3.77,15684,\"fantasy, romance\",\"Talia fell under a spell. . . . Jack broke the curse. I was told to beware\nthe accursed spindle, but it was so enchanting, so hypnotic. . . . I was\nlooking for a little adventure the day I ditched my tour group. But finding\na comatose town, with a hot-looking chick asleep in it, was so not what I\nhad in mind. I awakened in the same place but in another time—to a\nstranger's soft kiss. I couldn't help kissing her. Sometimes you just have\nto kiss someone. I didn't know this would happen. Now I am in dire trouble\nbecause my father, the king, says I have brought ruin upon our country. I\nhave no choice but to run away with this commoner! Now I'm stuck with a\nbratty princess and a trunk full of her jewels. . . . The good news: My\nparents will freak! Think you have dating issues? Try locking lips with a\nsnoozing stunner who turns out to be 316 years old. Can a kiss transcend\nall—even time?\"\r\n9147,9857,10461,\"Jack Kerouac, Joyce Johnson\",Desolation Angels,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924204l/10461.jpg,3.92,8861,\"fiction, classics\",\"With the publication of On the Road in 1957, Jack Kerouac became at once\nthe spokesman and hero of the Beat Generation. Along with such visionaries\nas William S. Burroughs, Neal Cassady, and Allen Ginsberg, Kerouac changed\nthe face of American literature, igniting a counterculture revolution that\neven now, decades later, burns brighter than ever in Desolation Angels. In\none of the major cinematic events of 2012, Jack Kerouac's legendary Beat\nclassic, On the Road, finally hits the big screen. Directed by Walter\nSalles (The Motorcycle Diaries; Paris, Je T'Aime) and with a cast of some\nof Hollywood's biggest young stars, including Kristen Stewart (The Twilight\nSaga), Sam Riley, Garrett Hedlund, Kirsten Dunst, Amy Adams (Julie & Julia,\nThe Fighter), Tom Sturridge, and Viggo Mortensen (the Lord of the Rings\ntrilogy, The Road), the film will attract new fans who will be inspired by\nKerouac's revolutionary writing.\"\r\n9148,9858,383196,سهراب سپهری,هشت کتاب: مرگِ رنگ. زندگیِ خواب‌ه. آوارِ آفتاب. شرقِ اندوه. صدای پای آب. مسافر. حجمِ سبز. ما هیچ، ما نگاه,https://images.gr-assets.com/books/1485890816l/383196.jpg,4.08,4769,\"poetry, contemporary\",هشت کتاب: مرگِ رنگ. زندگیِ خواب‌ه. آوارِ آفتاب. شرقِ اندوه. صدای پای آب. مسافر. حجمِ سبز. ما هیچ، ما نگاهسهراب سپهری\r\n9149,9859,26771521,Hugh Howey,Beacon 23: The Complete Novel,https://images.gr-assets.com/books/1444683708l/26771521.jpg,3.9,5140,\"fiction, ebooks\",\"For centuries, men and women have manned lighthouses to ensure the safe\npassage of ships. It is a lonely job, and a thankless one for the most\npart. Until something goes wrong. Until a ship is in distress. In the\ntwenty-third century, this job has moved into outer space. A network of\nbeacons allows ships to travel across the Milky Way at many times the speed\nof light. These beacons are built to be robust. They never break down. They\nnever fail. At least, they aren't supposed to.\"\r\n9150,9860,50051,Larry McMurtry,The Last Picture Show,https://images.gr-assets.com/books/1344275927l/50051.jpg,3.95,9727,\"fiction, classics\",The Last Picture ShowLarry McMurtry\r\n9151,9861,714569,Eva Ibbotson,A Countess Below Stairs,https://images.gr-assets.com/books/1311649247l/714569.jpg,3.88,14422,\"fiction, romance\",\"A young earl cancels his original wedding plans when he falls in love with\nthe new housemaid, Anna, a penniless Russian countess exiled to England.\nReissue.\"\r\n9152,9862,4772110,Kazuo Ishiguro,Nocturnes: Five Stories of Music and Nightfall,https://images.gr-assets.com/books/1320430211l/4772110.jpg,3.4,8729,\"fiction, music\",\"Five interconnected stories in which music is an intrinsic theme follow the\nstruggles of such protagonists as a once-popular singer desperate for a\ncomeback, a songwriter who is unwittingly involved in a failing marriage,\nand a jazz musician who wrongly believes that plastic surgery will secure\nhis career. By the Booker Prize-winning author of The Remains of the Day.\nReprint. A New York Times Notable Book.\"\r\n9153,9863,64394,Harry Harrison,The Stainless Steel Rat,https://images.gr-assets.com/books/1328073906l/64394.jpg,3.93,10285,\"fiction, fantasy\",\"In the vastness of space, the crimes just get bigger and Slippery Jim\ndiGriz, the Stainless Steel Rat, is the biggest criminal of them all. He\ncan con humans, aliens and any number of robots time after time. Jim is so\nslippery that all the inter-galactic cops can do is make him one of their\nown.\"\r\n9154,9864,88442,\"W.G. Sebald, Anthea Bell\",Austerlitz,https://images.gr-assets.com/books/1327920142l/88442.jpg,4.04,8267,\"fiction, history\",\"Jacques Austerlitz, an orphan refugee child who arrived in London in 1939\nand was raised by a Methodist minister, struggles to understand who he is\nas he moves through his life. 35,000 first printing.\"\r\n9155,9865,2505836,\"Esther Hicks, Jerry Hicks\",\"Money, and the Law of Attraction: Learning to Attract Wealth, Health, and Happiness\",https://images.gr-assets.com/books/1418105485l/2505836.jpg,4.24,8099,\"nonfiction, spirituality\",\"Offers guidance in using the principles of the \"\"law of attraction\"\" to\nattain physical and financial well-being.\"\r\n9156,9866,78976,Jeffrey Archer,A Twist in the Tale,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922973l/78976.jpg,3.85,8978,\"fiction, thriller\",A Twist in the TaleJeffrey Archer\r\n9157,9867,90420,Sharon M. Draper,Copper Sun,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347621809l/90420.jpg,4.3,9795,\"fiction, history\",\"Two fifteen-year-old girls--one a slave and the other an indentured servant\n--escape their Carolina plantation and try to make their way to Fort Moses,\nFlorida, a Spanish colony that gives sanctuary to slaves.\"\r\n9158,9871,55019,James Lee Burke,Black Cherry Blues,https://images.gr-assets.com/books/1314479487l/55019.jpg,4.17,9658,\"mystery, fiction\",\"Winner of the Edgar award for best novel Evil crept into Dave Robicheaux's\nbayou world one night and destroyed the woman he loved. Now it's\nthreatening the life of his innocent child. Framed for murder, the Cajun\nex-cop is traveling far from his Louisiana home to clear his name, to help\na friend, to save what remains of his family—seeking justice and revenge in\nthe Big Sky Country of Montana.\"\r\n9159,9872,24480276,Laura  Barnett,The Versions of Us,https://images.gr-assets.com/books/1423155390l/24480276.jpg,3.57,8477,\"fiction, romance\",The Versions of UsLaura  Barnett\r\n9160,9874,64794,Gary Zukav,The Dancing Wu Li Masters: An Overview of the New Physics,https://images.gr-assets.com/books/1410138626l/64794.jpg,4.02,7739,\"science, philosophy\",\"With its unique combination of depth, clarity, and humor that has enchanted\nmillions, this beloved classic by bestselling author Gary Zukav opens the\nfascinating world of quantum physics to readers with no mathematical or\ntechnical background. \"\"Wu Li\"\" is the Chinese phrase for physics. It means\n\"\"patterns of organic energy,\"\" but it also means \"\"nonsense,\"\" \"\"my way,\"\" \"\"I\nclutch my ideas,\"\" and \"\"enlightenment.\"\" These captivating ideas frame\nZukav's evocative exploration of quantum mechanics and relativity theory.\nDelightfully easy to read, The Dancing Wu Li Masters illuminates the\ncompelling powers at the core of all we know.\"\r\n9161,9875,226315,Johanna Edwards,The Next Big Thing,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442602425l/226315._SY475_.jpg,3.68,8907,\"fiction, romance\",\"Hoping to lose those extra pounds in order to arrange a face-to-face\nmeeting with the British hunk she met online and to win a big cash prize to\npay for the slinky new clothes she yearns to wear, Kat Larson signs up to\nbecome a contestant on the new reality show, From Fat to Fabulous. A first\nnovel. Original.\"\r\n9162,9876,10165727,Melina Marchetta,Froi of the Exiles,https://images.gr-assets.com/books/1306866851l/10165727.jpg,4.3,12775,\"fantasy, romance\",\"Fiercely loyal to the Queen and Finnikin, Froi has been taken roughly and\nlovingly in hand by the Guard sworn to protect the royal family but is soon\nsent on a secretive mission to the kingdom of Charyn where he must unravel\nboth the dark bonds of kinship and the mysteries of a half-mad princess.\"\r\n9163,9877,536790,Roger Zelazny,Trumps of Doom,https://images.gr-assets.com/books/1418027077l/536790.jpg,4.06,11282,\"fantasy, fiction\",\"In the continuation of the Amber chronicles, Corwin, Prince of Amber,\nexiled to Earth because of an ancient feud with his brothers, must battle\nhis way back to the perfect world of Amber, the center of reality\"\r\n9164,9878,13426114,Dan Ariely,The Honest Truth About Dishonesty: How We Lie to Everyone - Especially Ourselves,https://images.gr-assets.com/books/1331070373l/13426114.jpg,3.91,8423,\"psychology, business\",\"The New York Times bestselling author of Predictably Irrational and The\nUpside of Irrationality returns with a thought-provoking work that\nchallenges our preconceptions about dishonesty and urges us to take an\nhonest look at ourselves. Does the chance of getting caught affect how\nlikely we are to cheat? How do companies pave the way for dishonesty? Does\ncollaboration make us more or less honest? Does religion improve our\nhonesty? Most of us think of ourselves as honest, but, in fact, we all\ncheat. From Washington to Wall Street, the classroom to the workplace,\nunethical behavior is everywhere. None of us is immune, whether it's a\nwhite lie to head off trouble or padding our expense reports. In The\n(Honest) Truth About Dishonesty, award-winning, bestselling author Dan\nAriely shows why some things are easier to lie about than others; how\ngetting caught matters less than we think in whether we cheat; and how\nbusiness practices pave the way for unethical behavior, both intentionally\nand unintentionally. Ariely explores how unethical behavior works in the\npersonal, professional, and political worlds, and how it affects all of us,\neven as we think of ourselves as having high moral standards. But all is\nnot lost. Ariely also identifies what keeps us honest, pointing the way for\nachieving higher ethics in our everyday lives. With compelling personal and\nacademic findings, The (Honest) Truth About Dishonesty will change the way\nwe see ourselves, our actions, and others.\"\r\n9165,9879,12687461,\"Tom Clancy, Mark Greaney\",Locked On,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390233962l/12687461.jpg,3.99,7974,\"fiction, thriller\",\"Coming out of retirement to run for president, Jack Ryan finds himself in\nthe middle of a high-stakes attack from his opponent as his close comrade,\nJohn Clark, is the subject of treacherous charges, at the same time Jack\nRyan, Jr. and other members of Campus struggle to stop terrorists.\"\r\n9166,9880,11721314,Lauren Morrill,Meant to Be,https://images.gr-assets.com/books/1331322901l/11721314.jpg,3.72,13803,\"contemporary, romance\",Meant to BeLauren Morrill\r\n9167,9881,511684,\"Jacqueline Wilson, Nick Sharratt\",The Illustrated Mum,https://images.gr-assets.com/books/1320392229l/511684.jpg,3.74,10763,\"fiction, contemporary\",\"\"\"Dolphin adores her mother: she's got wonderful clothes, bright hair and\nvivid tattoos all over her body. She definitely lives a colourful life.\nDolphin's older sister, Star, also loves her but is beginning to wonder if\nstaying with a mum whose temper can be as flashy as her body-art is the\nbest thing for the girls\"\r\n9168,9882,18367581,Scott Westerfeld,Afterworlds,https://images.gr-assets.com/books/1396118779l/18367581.jpg,3.72,13813,\"fantasy, contemporary\",AfterworldsScott Westerfeld\r\n9169,9883,16158563,Charlie Lovett,The Bookman’s Tale,https://images.gr-assets.com/books/1360573276l/16158563.jpg,3.74,10154,\"mystery, fiction\",\"Relocating to the English countryside after the death of his wife,\nantiquarian book enthusiast Peter Byerly discovers an 18th-century study of\nShakespeare forgeries that contains a Victorian portrait strongly\nresembling his late wife, a finding that sparks an obsessive search through\nthe bard's historical period. Reprint.\"\r\n9170,9884,97390,\"Aleksandr Griboyedov, Александр Сергеевич Грибоедов\",Горе от ума ,https://images.gr-assets.com/books/1342993233l/97390.jpg,4.13,9287,\"classics, fiction\",\"Горе от ума Aleksandr Griboyedov, Александр Сергеевич Грибоедов\"\r\n9171,9885,8682579,Mary Higgins Clark,I'll Walk Alone,https://images.gr-assets.com/books/1327879369l/8682579.jpg,3.78,9794,\"mystery, fiction\",\"Struggling with unending heartache for the toddler son who went missing in\nCentral Park two years earlier, interior designer Alexandra is wrongly\naccused of identity theft and implicated in the murder of a stranger. By\nthe best-selling author of The Shadow of Your Smile. Reprint.\"\r\n9172,9887,503248,\"Howard Dully, Charles Fleming\",My Lobotomy,https://images.gr-assets.com/books/1320449273l/503248.jpg,3.7,8068,\"memoir, nonfiction\",\"The author describes his victimization at the hands of Dr. Walter Freeman,\nwho popularized the transorbital lobotomy and who performed the procedure\non the author at the age of twelve; the abandoment by his family; his\nexperiences with institutions, jail, homelessness, and alcoholism; and his\ncourageous determination to find out why he was forced to undergo a\nlobotomy. Reprint. 40,000 first printing.\"\r\n9173,9888,31087,Karen Harper,Passion's Reign,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388255167l/31087.jpg,4.04,8514,\"fiction, history\",\"Mary Bullen's romance with William Stafford is endangered when King Henry\nVIII is attracted to her and seeks to make her his mistress\"\r\n9174,9889,22923997,Emma Chase,Overruled,https://images.gr-assets.com/books/1417712844l/22923997.jpg,3.83,16931,\"romance, contemporary\",\"A Washington, DC, defence attorney, Stanton Shaw keeps his head cool, his\nquestions sharp, and his arguments irrefutable. They don't call him the\nJury Charmer for nothing. Men want to be him, and women want to be\nthoroughly cross examined by him. Stanton's a man with a plan. And for a\nwhile, life was going according to that plan. Until the day he receives an\ninvitation to the wedding of his high school sweetheart, the mother of his\nbeloved ten-year-old daughter. Jenny is getting married-to someone who\nisn't him. Sofia Santos is a city-raised, no-nonsense litigator who plans\nto become the most revered criminal defence attorney in the country. She\ndoesn't have time for relationships or distractions. But when Stanton, her\n\"\"friend with mind-blowing benefits,\"\" begs her for help, she finds herself\nout of her element, out of her depth, and obviously out of her mind.\nBecause she agrees to go with him to The-Middle-Of-Nowhere, Mississippi, to\ndo all she can to help Stanton win back the woman he loves. Her head tells\nher she's crazy...and her heart says something else entirely. What happens\nwhen you mix a one-stop-light town, two professional arguers, a homecoming\nqueen, four big brothers, some Jimmy Dean sausage, and a gun-toting Nana?\"\r\n9175,9890,481335,Dean Koontz,The Vision,https://images.gr-assets.com/books/1350747881l/481335.jpg,3.79,10682,\"horror, fiction\",\"Mary Bergen's talents as a clairvoyant help to track down a serial killer\nwith ties to her own past.\"\r\n9176,9891,1365225,José Emilio Pacheco,Las batallas en el desierto,https://images.gr-assets.com/books/1304602212l/1365225.jpg,4.1,8509,\"fiction, classics\",\"Una ciudad y un niño crecen, se transforman y se deforman juntos,\narrastrados sin posibilidad de resistencia inmediata por la fuerza de un\nproceso histórico aparentemente ciego y sin sentido: vidas individuales y\nexistencia colectiva dominadas por la frustración y la impotencia que el\nescritor descubre en su propia ciudad de México. A lo largo de un relato\nejemplar, el autor lleva a cabo un implacable y lúcido ajuste de cuentas\ncon la realidad que le tocó vivir a toda una generación. Y ya sea porque su\nobra aborda los grandes temas de la literatura (el amor, la muerte, el paso\ndel tiempo) o porque incorpora problemáticas de gran actualidad (la\ndiscriminación, las consecuencias de la modernización para México y\nLatinoamérica, la ecología, la globalización), el autor logra lo que todos\nlos escritores buscan pero pocos consiguen: ser leído.\"\r\n9177,9892,2494204,J.D. Robb,Salvation in Death,https://images.gr-assets.com/books/1328026886l/2494204.jpg,4.26,14153,\"mystery, romance\",\"When a Catholic priest is fatally poisoned during a funeral mass, NYPD\nDetective Lieutenant Eve Dallas pursues an uneasy investigation involving a\nhidden religious medal, underlined Bible passages, and clues suggesting\nthat the victim was not who he appeared to be. Reprint.\"\r\n9178,9893,16081202,Emery Lord,Open Road Summer,https://images.gr-assets.com/books/1405104324l/16081202.jpg,3.91,5017,\"contemporary, romance\",\"Taylor Swift meets Sarah Dessen in this emotional summer story of love and\ntrue friendship\"\r\n9179,9894,12017,Iain M. Banks,Inversions,https://images.gr-assets.com/books/1288930844l/12017.jpg,3.9,9068,\"fiction, fantasy\",\"Originally published: London: Orbit, 1998.\"\r\n9180,9895,27152124,Ilsa Madden-Mills,Dirty English,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1444604859l/27152124._SY475_.jpg,3.95,16115,\"romance, contemporary\",Dirty EnglishIlsa Madden-Mills\r\n9181,9896,9639197,Alice LaPlante,Turn of Mind,https://images.gr-assets.com/books/1320547877l/9639197.jpg,3.65,10954,\"fiction, mystery\",Turn of MindAlice LaPlante\r\n9182,9897,655601,Robert Muchamore,Divine Madness,https://images.gr-assets.com/books/1283561989l/655601.jpg,4.17,9640,\"fiction, thriller\",\"When a link is discovered between the eco-terrorist group Help Earth and a\nreligious cult known as The Survivors, James is sent to their isolated\nheadquarters on an infiltration mission and ends up battling their\nbrainwashing techniques.\"\r\n9183,9898,12977172,Brigid Kemmerer,Spark,https://images.gr-assets.com/books/1329524396l/12977172.jpg,4.16,13537,\"paranormal, fantasy\",\"Gabriel Merrick plays with fire. Literally. Sometimes he can even control\nit. And sometimes he can't. Gabriel has always had his brothers to rely on,\nespecially his twin, Nick. But when an arsonist starts wreaking havoc on\ntheir town, all the signs point to Gabriel. Only he's not doing it. And no\none seems to believe him. Except a shy sophomore named Layne, a brainiac\nwho dresses in turtlenecks and jeans and keeps him totally off balance.\nLayne understands family problems, and she understands secrets. She has a\nfew of her own. Gabriel can't let her guess about his brothers, about his\nabilities, about the danger that's right at his heels. But there are some\nrisks he can't help taking. The fuse is lit. . . Praise for Brigid Kemmerer\nand The Elemental Series \"\"Five hot guys, one tough heroine, plenty of\nromance and non-stop action. . . Elemental is the new series to watch.\"\"\n--Inara Scott, author of The Marked \"\"Overflowing with action, snappy\ndialog, and hot guys--The Elemental Series will take your breath away.\"\"\n--Kim Harrington, author of Clarity\"\r\n9184,9899,25813921,Angela Duckworth,\"Grit: Passion, Perseverance, and the Science of Success\",https://images.gr-assets.com/books/1458533580l/25813921.jpg,4.08,7971,\"psychology, nonfiction\",\"\"\"In this must-read book for anyone striving to succeed, pioneering\npsychologist Angela Duckworth shows parents, educators, athletes, students,\nand business people--both seasoned and new--that the secret to outstanding\nachievement is not talent but a focused persistence called \"\"grit.\"\" Why do\nsome people succeed and others fail? Sharing new insights from her landmark\nresearch on grit, MacArthur \"\"genius\"\" Angela Duckworth explains why talent\nis hardly a guarantor of success. Rather, other factors can be even more\ncrucial such as identifying our passions and following through on our\ncommitments. Drawing on her own powerful story as the daughter of a\nscientist who frequently bemoaned her lack of smarts, Duckworth describes\nher winding path through teaching, business consulting, and neuroscience,\nwhich led to the hypothesis that what really drives success is not \"\"genius\"\"\nbut a special blend of passion and long-term perseverance. As a professor\nat the University of Pennsylvania, Duckworth created her own \"\"character\nlab\"\" and set out to test her theory. Here, she takes readers into the field\nto visit teachers working in some of the toughest schools, cadets\nstruggling through their first days at West Point, and young finalists in\nthe National Spelling Bee. She also mines fascinating insights from history\nand shows what can be gleaned from modern experiments in peak performance.\nFinally, she shares what she's learned from interviewing dozens of high\nachievers--from JP Morgan CEO Jamie Dimon to the cartoon editor of The New\nYorker to Seattle Seahawks Coach Pete Carroll. Winningly personal,\ninsightful, and even life-changing, Grit is a book about what goes through\nyour head when you fall down, and how that--not talent or luck--makes all\nthe difference\"\"--\"\r\n9185,9900,6395833,Chuck Palahniuk,Guts,https://images.gr-assets.com/books/1273235556l/6395833.jpg,3.93,10300,\"fiction, horror\",\"Twenty-three stories chronicle the experiences of people who have answered\nan ad for an artist's retreat, believing that they will find a peaceful\nrefuge, only to find themselves isolated and trapped in a cavernous old\ntheater.\"\r\n9186,9901,7257982,Scott Turow,Innocent,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441429707l/7257982._SY475_.jpg,3.9,9827,\"mystery, fiction\",\"The sequel to the genre-defining, landmark bestseller Presumed Innocent,\nINNOCENT continues the story of Rusty Sabich and Tommy Molto who are, once\nagain, twenty years later, pitted against each other in a riveting\npsychological match after the mysterious death of Rusty's wife.\"\r\n9187,9902,236862,Craig Johnson,Death Without Company,https://images.gr-assets.com/books/1349807862l/236862.jpg,4.23,9114,\"mystery, fiction\",\"When a resident at the Durant Home for Assisted Living is found poisoned,\nSheriff Longmire finds her death proving as dramatic as her life, which was\nmarked by connections to the coal-bed methane industry, a relationship with\nLongmire's predecessor, and an abusive husband. By the author of The Cold\nDish. Reader's Guide available. Reprint. 25,000 first printing.\"\r\n9188,9903,625603,Dan Abnett,Horus Rising,https://images.gr-assets.com/books/1414166935l/625603.jpg,4.17,9152,\"fantasy, fiction\",\"Re-release of the mass market edition of the first novel in the best\nselling Horus Heresy series Under the benevolent leadership of the Immortal\nEmperor the Imperium of Man has stretched out across the galaxy. On the eve\nof victory, the Emperor leaves the front lines, entrusting the great\ncrusade to his favorite son, Horus. Promoted to Warmaster, the idealistic\nHorus tries to carry out the Emperor'sgrand design, all the while the seeds\nof heresy and rebellion have been sowed amongst his brothers.\"\r\n9189,9904,18680106,Laura Kaye,Hard As It Gets,https://images.gr-assets.com/books/1381840319l/18680106.jpg,4.01,12205,\"romance, contemporary\",\"Five dishonored soldiers. Former Special Forces. One last mission. These\nare the men of Hard Ink. Trouble just walked into Nicholas Rixey's tattoo\nparlor. Becca Merritt is warm, sexy, wholesome—pure temptation to a very\njaded Nick. He's left his military life behind to become co-owner of Hard\nInk Tattoo, but Becca is his ex-commander's daughter. Loyalty won't let him\nturn her away. Lust has plenty to do with it too. With her brother presumed\nkidnapped, Becca needs Nick. She just wasn't expecting to want him so much.\nAs their investigation turns into all-out war with an organized crime ring,\nonly Nick can protect her. And only Becca can heal the scars no one else\nsees. Desire is the easy part. Love is as hard as it gets. Good thing Nick\nis always up for a challenge . . .\"\r\n9190,9905,449,Paul Auster,Timbuktu,https://images.gr-assets.com/books/1355142497l/449.jpg,3.66,8272,\"fiction, contemporary\",TimbuktuPaul Auster\r\n9191,9906,1087207,Bisco Hatori,桜蘭高校ホスト部 4,https://images.gr-assets.com/books/1416398307l/1087207.jpg,4.45,11280,\"manga, romance\",桜蘭高校ホスト部 4Bisco Hatori\r\n9192,9907,7914058,Anita Shreve,Rescue,https://images.gr-assets.com/books/1289520228l/7914058.jpg,3.3,10993,\"fiction, romance\",\"Peter Webster is a rookie paramedic when he pulls a young woman out of a\ncar wreck that should have killed her. Sheila Arsenault haunts his\nthoughts, and despite his misgivings Peter is soon embroiled in an intense\nlove affair--and in Sheila's troubled world. Eighteen years later, Sheila\nis long gone and Peter is raising their daughter, Rowan, alone. But Rowan\nis veering dangerously off course, and for the first time in their quiet\nlife together Peter fears for her future. He seeks out the only person who\nmay be able to help Rowan, although Sheila's return is sure to unleash all\nthe questions he has carefully been keeping at bay: Why did a mother leave\nher family? How did the marriage of two people so deeply in love unravel? A\nstory about trespass and forgiveness, secrets and the seismic force of the\ntruth, Rescue is a masterful portrayal of a family trying to understand its\nfractured past and begin again.\"\r\n9193,9908,10009,Max Frisch,Homo faber: Ein Bericht,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399843869l/10009.jpg,3.75,9401,\"classics, fiction\",\"Der rationalitätsgläubige Techniker Faber muß kurz vor seinem Tod erfahren,\ndaß seine Weltorientierung nicht ausreicht, um menschliche Schuld und\nschicksalshaftem Zufall zu entgehen.\"\r\n9194,9909,24612624,Alex Gino,George,https://images.gr-assets.com/books/1423358952l/24612624.jpg,4.01,13093,\"contemporary, fiction\",GeorgeAlex Gino\r\n9195,9910,714380,Daniel J. Boorstin,The Discoverers: A History of Man's Search to Know His World and Himself,https://images.gr-assets.com/books/1321817832l/714380.jpg,4.12,9117,\"history, science\",\"Examines the human quest for knowledge and discoveries as it discusses such\nmen as Galileo, Adam Smith, Columbus, Marx, Napoleon, Magellan, Faraday,\nFreud, Marco Polo, and St. Augustine\"\r\n9196,9911,420496,Terry Brooks,A Knight of the Word ,https://images.gr-assets.com/books/1403811542l/420496.jpg,4.04,10745,\"fantasy, fiction\",\"Continues the time-travel, good-versus-evil story of Welshman John Ross,\npossessor of the black runestaff, as he confronts a supernatural evil\"\r\n9197,9913,25912358,Tillie Cole,A Thousand Boy Kisses,https://images.gr-assets.com/books/1453299050l/25912358.jpg,4.29,10586,\"romance, contemporary\",\"One kiss lasts a moment. But a thousand kisses can last a lifetime. One\nboy. One girl. A bond that is forged in an instant and cherished for a\ndecade. A bond that neither time nor distance can break. A bond that will\nlast forever. Or so they believe. When seventeen-year-old Rune Kristiansen\nreturns from his native Norway to the sleepy town of Blossom Grove,\nGeorgia, where he befriended Poppy Litchfield as a child, he has just one\nthing on his mind. Why did the girl who was one half of his soul, who\npromised to wait faithfully for his return, cut him off without a word of\nexplanation? Rune's heart was broken two years ago when Poppy fell silent.\nWhen he discovers the truth, he finds that the greatest heartache is yet to\ncome. Standalone Young Adult Tearjerker Romance. For ages 14 and up.\"\r\n9198,9915,10196362,Linwood Barclay,The Accident,https://images.gr-assets.com/books/1320390347l/10196362.jpg,3.93,9638,\"mystery, thriller\",The AccidentLinwood Barclay\r\n9199,9916,25809756,Sophie Kinsella,Shopaholic to the Rescue,https://images.gr-assets.com/books/1439942710l/25809756.jpg,3.55,8168,\"fiction, contemporary\",Shopaholic to the RescueSophie Kinsella\r\n9200,9917,12989112,Jennifer Echols,Such a Rush,https://images.gr-assets.com/books/1345851913l/12989112.jpg,3.84,13370,\"romance, contemporary\",Such a RushJennifer Echols\r\n9201,9918,5053547,Jana Deleon,Trouble in Mudbug,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389664517l/5053547.jpg,3.92,6249,\"mystery, romance\",\"Scientist Maryse Robicheaux thought that a lot of her problems had gone\naway with her mother-in-law's death. The woman was rude, pushy,\nmanipulative and used her considerable wealth to run herd over the entire\nbayou town of Mudbug, Louisiana. Unfortunately, death doesn't slow Helena\none bit. DEA agent Luc LeJeune has a new undercover assignment\ninvestigating the sexy scientist, and he's wondering what his job has\ngotten him into, especially as it seems that someone wants her dead. But\nkeeping his secrets while protecting Maryse proves to be easier than\nfighting his attraction to the brainy beauty. -- back cover\"\r\n9202,9919,762288,Barthe DeClements,Nothing's Fair in Fifth Grade,https://images.gr-assets.com/books/1458976419l/762288.jpg,3.94,10276,\"fiction, contemporary\",\"A fifth grade class, repelled by the overweight new student who has serious\nhome problems, finally learns to accept her.\"\r\n9203,9920,11568316,\"Kami Garcia, Margaret Stohl\",Dream Dark,https://images.gr-assets.com/books/1307480317l/11568316.jpg,3.76,12142,\"fantasy, paranormal\",\"When Link joined his best friend, Ethan Wate, on a quest through a\nmysterious network of underground passageways endlessly crisscrossing the\nSouth, he knew the journey would be dangerous. But returning home to\nGatlin, South Carolina was just the beginning... Wounded during a climactic\nbattle, Link discovers that tending his injuries won't be as simple as\nvisiting a doctor and that healing his arm should be the least of his\nworries. For being bitten by a Supernatural does more than break the skin\n-- it changes a person, inside and out, turning Link into someone more and\nmore like the dark creature who injured him. In this never-before-seen\nshort story by New York Times bestselling authors Kami Garcia and Margaret\nStohl, listeners witness Link's heart-racing transformation. Dream Dark is\nset before the much-anticipated third Beautiful Creatures novel, Beautiful\nChaos, and as a special bonus includes an exclusive sneak peek at the first\nfive chapters. Dream Dark word count: ~10,000\"\r\n9204,9921,99713,Lawrence Ferlinghetti,A Coney Island of the Mind: Poems,https://images.gr-assets.com/books/1327958248l/99713.jpg,4.16,9376,\"poetry, fiction\",\"Includes 29 poems revolving around the title, selections written for oral\nreadings with jazz accompaniment, and 13 previously published poems\"\r\n9205,9922,10092,Tad Williams,Sea of Silver Light,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587631380l/10092._SX318_.jpg,4.11,9758,\"fantasy, fiction\",Sea of Silver LightTad Williams\r\n9206,9923,228200,Stephen King,\"The Green Mile, Part 5: Night Journey\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640401l/228200.jpg,4.51,11442,\"horror, fiction\",Part 5 of 6.\r\n9207,9924,24769,Scott Westerfeld,\"Blue Noon (Midnighters, #3)\",https://images.gr-assets.com/books/1315537301l/24769.jpg,3.85,14053,\"fantasy, paranormal\",\"The third and final book in New York Times bestselling author Scott\nWesterfeld’s Midnighters series. The five teenage Midnighters of Bixby,\nOklahoma, thought they understood the secret midnight hour—until one\nmorning when time freezes in the middle of the day. As they scramble for\nanswers, the Midnighters discover that the walls between the secret hour\nand real time are crumbling. Soon the dark creatures will break through to\nfeed at last . . . unless the Midnighters can find a way to stop them. Blue\nNoon is the third and final book in the Midnighters trilogy, from the New\nYork Times bestselling author of the Uglies series.\"\r\n9208,9925,86737,Mary Hoffman,City of Masks,https://images.gr-assets.com/books/1294870497l/86737.jpg,3.9,12048,\"fantasy, fiction\",\"The first gripping book in the series, taking the reader into two vivid\nworlds - one our own, one parallel to ours and very similar to 16th-century\nItaly. Passion, intrigue, drama and adventure - enter the world of\nStravaganza.\"\r\n9209,9927,40465,Christopher Buckley,Thank You for Smoking,https://images.gr-assets.com/books/1350349077l/40465.jpg,3.92,9054,\"fiction, contemporary\",\"Nick Naylor, chief spokesman for the Academy of Tobacco Studies, undertakes\na media blitz to defend the rights of smokers, a job that has unexpected\nrepercussions when he is targeted by someone out to prove just how\nhazardous smoking can be. 50,000 first printing. $50,000 ad/promo. Tour.\"\r\n9210,9928,33896,Charles Frazier,Thirteen Moons,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440046095l/33896._SX318_.jpg,3.64,9028,\"fiction, history\",\"From the age of twelve when he is sent to run an Indian trading post,\nWill's life becomes intertwined with the destiny of the Cherokee Nation, as\nhe falls in love with Claire and builds a friendship with a chief named\nBear.\"\r\n9211,9930,16128105,Lionel Shriver,Big Brother,https://images.gr-assets.com/books/1359981310l/16128105.jpg,3.4,8795,\"fiction, contemporary\",Big BrotherLionel Shriver\r\n9212,9931,10940958,Nicci French,Blue Monday,https://images.gr-assets.com/books/1377323978l/10940958.jpg,3.77,8535,\"mystery, thriller\",\"Living an existence of austere control and personal integrity borne from\nher views about what she can control in an uncontrollable world,\npsychotherapist Frieda Klein is placed at the center of a national\ninvestigation involving the abduction of a 5-year-old child and a client\nwho harbors an obsessive longing for a child with the missing boy's\nphysical appearance. 50,000 first printing.\"\r\n9213,9933,1197646,Tedd Arnold,Parts,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348332418l/1197646.jpg,4.25,10608,\"fiction, science\",PartsTedd Arnold\r\n9214,9934,117835,Sally Fallon Morell,Nourishing Traditions:  The Cookbook that Challenges Politically Correct Nutrition and the Diet Dictocrats,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349063789l/117835.jpg,4.23,9534,\"cookbooks, nonfiction\",\"Draws on traditional eating patterns to endorse a diet that contains animal\nfats and foods preserved in ways that actually increase their nutritional\nvalue.\"\r\n9215,9935,37300,John Sandford,Broken Prey,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245666l/37300.jpg,4.15,10827,\"mystery, fiction\",\"After a series of killings that disturbingly emulate the works of a trio of\ninmates currently being held at the Minnesota Security Hospital, Lucas\nDavenport investigates a missing man who was released from the hospital\nweeks earlier. Reprint.\"\r\n9216,9936,29948,Richard Bach,The Bridge Across Forever: A True Love Story,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427935854l/29948.jpg,3.88,8239,\"fiction, romance\",\"More than one year on the New York Times bestseller list! Richard Bach's\ntimeless and uplifting classic of hope and love \"\"We're the bridge across\nforever, arching above the sea, adventuring for our pleasure, living\nmysteries for the fun of it, choosing disasters triumphs challenges\nimpossible odds, testing ourselves over and again, learning love and love\nand love!\"\" \"\"The opposite of loneliness, it's not togetherness. It is\nintimacy.\"\" \"\"Look in a mirror and one thing's sure: what we see is not who\nwe are.\"\" \"\"Next to God, love is the word most mangled in every language. The\nhighest form of regard between two people is friendship, and when love\nenters, friendship dies.\"\" \"\"There are no mistakes. The events we bring upon\nourselves, no matter how unpleasant, are necessary in order to learn what\nwe need to learn; whatever steps we take, they're necessary to reach the\nplaces we've chosen to go.\"\"\"\r\n9217,9937,13010211,Caragh M. O'Brien,Promised,https://images.gr-assets.com/books/1330546217l/13010211.jpg,3.77,11766,\"romance, fiction\",\"Gaia succeeds in leading her people to Wharfton and the Enclave, but\nrebellion there threatens them all just when everything they have dreamed\nof seems to be at hand.\"\r\n9218,9938,18089900,Christopher Moore,The Serpent of Venice,https://images.gr-assets.com/books/1376934009l/18089900.jpg,3.86,8573,\"fiction, fantasy\",The Serpent of VeniceChristopher Moore\r\n9219,9940,53168,Darren Shan,Demon Thief,https://images.gr-assets.com/books/1344268460l/53168.jpg,4.14,10535,\"horror, fantasy\",\"The second novel in this bonechilling series by Darren Shan, author of the\nNew York Times bestselling Cirque Du Freak series is sure to give you\ngoosebumps. Kernel Fleck has always known he's weird. He sees lights.\nStrange, multi-colored patches of light, swirling through the air. But it's\nnot until a window opens into a demon world, with horrific consequences,\nthat Kernel discovers his powers. As a Disciple, his mission is to hunt\nvicious, powerful demons to the death...\"\r\n9220,9941,61266,Alessandro Baricco,Novecento,https://images.gr-assets.com/books/1346326152l/61266.jpg,4.19,9991,\"classics, fiction\",NovecentoAlessandro Baricco\r\n9221,9942,16074758,\"Abigail Haas, Abby McDonald\",Dangerous Girls,https://images.gr-assets.com/books/1356513050l/16074758.jpg,4.14,10439,\"mystery, contemporary\",\"While on spring break in Aruba, Anna is accused of her best friend's death\nand must stand trial for murder in a foreign country.\"\r\n9222,9944,16158498,Adam M. Grant,Give and Take: A Revolutionary Approach to Success,https://images.gr-assets.com/books/1356136579l/16158498.jpg,4.06,9918,\"business, psychology\",\"Explains how networking and leadership skills are subject to the\nprofessional interaction styles of takers, matchers, and givers, and how\nthese personalities dramatically shape success rates.\"\r\n9223,9946,3559,Thomas L. Friedman,From Beirut to Jerusalem,https://images.gr-assets.com/books/1328295618l/3559.jpg,4.1,8057,\"history, nonfiction\",From Beirut to JerusalemThomas L. Friedman\r\n9224,9947,21393526,Maria Dahvana Headley,Magonia,https://images.gr-assets.com/books/1413479866l/21393526.jpg,3.6,12510,\"fantasy, romance\",\"#1 New York Times bestseller Maria Dahvana Headley’s soaring sky fantasy\nMagonia is now in paperback! Since she was a baby, Aza Ray Boyle has\nsuffered from a mysterious lung disease that makes it ever harder for her\nto breathe, to speak—to live. So when Aza catches a glimpse of a ship in\nthe sky, her family chalks it up to a cruel side effect of her medication.\nBut Aza doesn’t think this is a hallucination. She can hear someone on the\nship calling her name. Only her best friend, Jason, listens. Jason, who’s\nalways been there. Jason, for whom she might have more-than-friendly\nfeelings. But before Aza can consider that thrilling idea, something goes\nterribly wrong. Aza is lost to our world—and found by another. Magonia.\nAbove the clouds, in a land of trading ships, Aza is not the weak and dying\nthing she was. In Magonia, she can breathe for the first time. Better, she\nhas immense power—but as she navigates her new life, she discovers that war\nbetween Magonia and Earth is coming. In Aza’s hands lies the fate of the\nwhole of humanity—including the boy who loves her. Where do her loyalties\nlie?\"\r\n9225,9948,263173,\"Matsuri Hino, Tomo Kimura\",ヴァンパイア騎士 2,https://images.gr-assets.com/books/1329259095l/263173.jpg,4.25,13455,\"manga, fantasy\",\"ヴァンパイア騎士 2Matsuri Hino, Tomo Kimura\"\r\n9226,9949,1824,Jon Ronson,The Men Who Stare at Goats,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437183381l/1824._SY475_.jpg,3.58,8245,\"nonfiction, history\",\"A humorous and cautionary account of the U.S. military's use of psychic\ntactics in the War on Terror and other political agendas discusses the\nmethods employed by the First Earth Battalion, questioning its soldiers'\nabilities to perform such feats as invisibility, walking through walls, and\nkilling goats with their minds.\"\r\n9227,9950,23341855,Kristen Ashley,Ride Steady,https://images.gr-assets.com/books/1424262600l/23341855.jpg,4.45,15388,\"romance, contemporary\",Ride SteadyKristen Ashley\r\n9228,9951,2227371,Joanne Harris,The Lollipop Shoes,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437862062l/2227371._SY475_.jpg,3.8,8565,\"fiction, fantasy\",The sequel to Chocolat.\r\n9229,9952,76248,William S. Baring-Gould,\"Sherlock Holmes of Baker Street, the life of the world’s first consulting detective.\",https://images.gr-assets.com/books/1355676228l/76248.jpg,4.4,8642,\"mystery, fiction\",\"Although millions know of Sherlock Holmes through the chronicles of his\nexploits written by Dr. Watson, it is now that the full biography and facts\nof his life can be brought before the public. This volume brings together\nfor the first time every known fact that can be fully authenticated about\nthe life of one of the world's most extraordinary men, and reveals much\nmore about him that has not been heretofore generally known. From twenty\nyears' research into every possible source, the author has written as\ndefinitive an account as could ever be assembled.\"\r\n9230,9953,22062202,Anne Bishop,Marked in Flesh,https://images.gr-assets.com/books/1438874868l/22062202.jpg,4.31,11056,\"fantasy, paranormal\",Marked in FleshAnne Bishop\r\n9231,9954,13129925,\"Grady Hendrix, Michael Rogalski\",Horrorstör,https://images.gr-assets.com/books/1414314217l/13129925.jpg,3.59,10313,\"fiction, horror\",\"HorrorstörGrady Hendrix, Michael Rogalski\"\r\n9232,9955,13065327,Simone Elkeles,Wild Cards,https://images.gr-assets.com/books/1420836321l/13065327.jpg,3.95,13954,\"romance, contemporary\",\"The launch of a new series with a Friday Night Lights flavor, from best-\nselling author, Simone Elkeles\"\r\n9233,9956,31975,\"Joss Whedon, John Cassaday\",\"Astonishing X-Men, Volume 2: Dangerous\",https://images.gr-assets.com/books/1500464823l/31975.jpg,4.19,9796,\"comics, fiction\",\"Cyclops and Emma Frost want to reunite the X-Men in order to astonish the\nworld, but as the demand for a \"\"mutant cure\"\" escalates, they find some\nunexpected allies and adversaries.\"\r\n9234,9959,13178410,Hugh Howey,Wool 2: Proper Gauge,https://images.gr-assets.com/books/1323761382l/13178410.jpg,4.15,10140,\"fiction, fantasy\",\"A good man lies dead.The silo is now in need of a sheriff.And there's only\none woman for the job.But what if she refuses to take it?\"\r\n9235,9960,127970,Terry Ryan,\"The Prize Winner of Defiance, Ohio: How My Mother Raised 10 Kids on 25 Words or Less\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561961260l/127970.jpg,3.9,9380,\"memoir, biography\",\"The Prize Winner of Defiance, Ohio introduces Evelyn Ryan, an enterprising\nwoman who kept poverty at bay with wit, poetry, and perfect prose during\nthe \"\"contest era\"\" of the 1950s and 1960s. Evelyn's winning ways defied the\nchurch, her alcoholic husband, and antiquated views of housewives. To her,\nflouting convention was a small price to pay when it came to raising her\nsix sons and four daughters. Graced with a rare appreciation for life's\ninherent hilarity, Evelyn turned every financial challenge into an\nopportunity for fun and profit. The story of this irrepressible woman,\nwhose clever entries are worthy of Erma Bombeck, Dorothy Parker, and Ogden\nNash, is told by her daughter Terry with an infectious joy that shows how a\nwinning spirit will always triumph over poverty.\"\r\n9236,9961,6872,Ian McEwan,The Comfort of Strangers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197584l/6872.jpg,3.44,8843,\"fiction, contemporary\",\"While on holiday, a young couple meets the son of the local gentry and his\nwife and are drawn by sexual obsession into a nightmare of violence\"\r\n9237,9962,52588,\"Inga Muscio, Betty Dodson\",Cunt: A Declaration of Independence,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388333495l/52588.jpg,3.88,8203,\"nonfiction, memoir\",\"An ancient title of respect for women, the word “cunt” long ago veered off\nthis noble path. Inga Muscio traces the road from honor to expletive,\ngiving women the motivation and tools to claim “cunt” as a positive and\npowerful force in their lives. In this fully revised edition, she explores,\nwith candidness and humor, such traditional feminist issues as birth\ncontrol, sexuality, jealousy between women, and prostitution with a fresh\nattitude for a new generation of women. Sending out a call for every woman\nto be the Cuntlovin' Ruler of Her Sexual Universe, Muscio stands convention\non its head by embracing all things cunt-related. This edition is fully\nrevised with updated resources, a new foreword from sexual pioneer Betty\nDodson, and a new afterword by the author. “Bright, sharp, empowering,\nlong-lasting, useful, sexy....”—San Francisco Chronicle “... Cunt provides\nfertile ground for psychological growth.”—San Francisco Bay Guardian “Cunt\ndoes for feminism what smoothies did for high-fiber diets—it reinvents the\noft-indigestible into something sweet and delicious.”—Bust Magazine\"\r\n9238,9963,92918,Raymond E. Feist,Krondor: The Betrayal,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923712l/92918.jpg,3.81,10631,\"fantasy, fiction\",Krondor: The BetrayalRaymond E. Feist\r\n9239,9964,17901125,Samantha Shannon,The Mime Order,https://images.gr-assets.com/books/1421696237l/17901125.jpg,4.2,11042,\"fantasy, paranormal\",The Mime OrderSamantha Shannon\r\n9240,9965,1011632,Clive Barker,Mister B. Gone,https://images.gr-assets.com/books/1429998358l/1011632.jpg,3.32,9535,\"horror, fantasy\",Mister B. GoneClive Barker\r\n9241,9966,9864,Salman Rushdie,The Ground Beneath Her Feet,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923893l/9864.jpg,3.77,8673,\"fiction, music\",\"Photographer Rai narrates the epic romance between his childhood friend,\nOrmus Cama, and singer Vina Apsara, Rai's sometime lover, revealingwith\nwisdom and humora world of passions, truths, death, and rock 'n' roll.\nReprint. 75,000 first printing.\"\r\n9242,9967,5295735,\"Naguib Mahfouz, نجيب محفوظ\",ملحمة الحرافيش,https://images.gr-assets.com/books/1347915841l/5295735.jpg,4.34,8572,\"fiction, classics\",\"The epic story begins with the tale of Ashur al-Nagi, a man who grows from\nhumble roots to become a great leader and a legend among his people. The\nname of Ashur epitomizes a time of glory for the harafish, or the common\npeople, when they were led by one of their own. Generation after\ngeneration, however, Ashur's descendants stray further from his legendary\nexample. They lose touch with their origins as they amass and then lose\nlarge fortunes, marry prostitutes when they marry at all, and develop\nrivalries that end in death. Finally, a Nagi appears who restores the\nfamily name to its former distinction. The Harafish is a mythic tale, a\ncompelling portrait of human weaknesses--pride, dishonesty, lust, and greed\n--and of the greatness of which we are capable when we overcome them.\"\r\n9243,9968,554674,Maria Augusta von Trapp,The Story of the Trapp Family Singers,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348398085l/554674.jpg,3.94,9027,\"biography, nonfiction\",\"With nearly 1,500 Broadway performances, six Tony Awards, more than three\nmillion albums sold, and five Academy Awards, The Sound of Music, based on\nthe lives of Maria, the baron, and their singing children, is as familiar\nto most of us as our own family history. But much about the real-life woman\nand her family was left untold. Here, Baroness Maria Augusta Trapp tells in\nher own beautiful, simple words the extraordinary story of her romance with\nthe baron, their escape from Nazi-occupied Austria, and their life in\nAmerica. Now with photographs from the original edition.\"\r\n9244,9969,23013953,\"Giulia Enders, Jill Enders\",Darm mit Charme,https://images.gr-assets.com/books/1435168687l/23013953.jpg,3.99,5973,\"science, nonfiction\",\"Our gut is almost as important to us as our brain and yet we know very\nlittle about how it works.Gut: The Inside Story is an entertaining,\ninformative tour of the digestive system from the moment we raise a tasty\nmorsel to our lips until the moment our body surrenders the remnants to the\ntoilet bowl. No topic is too lowly for the author's wonder and admiration,\nfrom the careful choreography of breaking wind to the precise internal\ncommunication required for a cleansing vomit. Along the way, the author\nprovides practical advice such as the best ways to sit on the toilet to\nhave a comfortable bowel movement, how clean your kitchen should be for\noptimum gut health, and how different laxatives work. She tells stories of\ngut bacteria that can lead to obesity, autoimmune diseases, or even\nsuicide, and she discusses the benefits of dietary supplements such as\nprobiotics. This book is a fascinating primer for anyone interested in how\nour ideas about the gut are changing in the light of cutting-edge\nscientific research. In the words of the author, We live in an era in which\nwe are just beginning to understand just how complex the connections are\nbetween us, our food, our pets and the microscopic world in, on, and around\nus. We are gradually decoding processes that we used to believe were part\nof our inescapable destiny.”\"\r\n9245,9970,6131786,Ami McKay,The Virgin Cure,https://images.gr-assets.com/books/1320443329l/6131786.jpg,3.74,9635,\"fiction, history\",\"One summer night in Lower Manhattan in 1871, twelve-year-old Moth is pulled\nfrom her bed and sold as a servant to a finely dressed woman. Knowing that\nher mother is so close while she is locked away in servitude, Moth bides\nher time until she can escape, only to find her old home deserted and her\nmother gone without a trace. Moth must struggle to survive alone in the\nmurky world of the Bowery, a wild and lawless enclave filled with thieves,\nbeggars, sideshow freaks, and prostitutes. She eventually meets Miss\nEverett, the proprietress of an \"\"Infant School,\"\" a brothel that caters to\ngentlemen who pay dearly for \"\"willing and clean\"\" companions—desirable young\nvirgins like Moth. She also finds friendship with Dr. Sadie, a female\nphysician struggling against the powerful forces of injustice. The doctor\nhopes to protect Moth from falling prey to a terrible myth known as the\n\"\"virgin cure\"\"—the tragic belief that deflowering a \"\"fresh maid\"\" can cleanse\nthe blood and heal men afflicted with syphilis—which has destroyed the\nlives of other Bowery girls. Ignored by society and unprotected by the law,\nMoth dreams of independence. But there's a high price to pay for freedom,\nand no one knows that better than a girl from Chrystie Street.\"\r\n9246,9972,4984,Kurt Vonnegut Jr.,Bagombo Snuff Box,https://images.gr-assets.com/books/1327353727l/4984.jpg,3.72,7407,\"fiction, classics\",\"A collection of previously unpublished short fiction from America's\npremiere satirist.\"\r\n9247,9973,849380,\"John M. Gottman, Nan Silver\",The Seven Principles for Making Marriage Work: A Practical Guide from the Country's Foremost Relationship Expert,https://images.gr-assets.com/books/1320521960l/849380.jpg,4.19,8868,\"nonfiction, psychology\",\"Drawing on research into the dynamics of healthy relationships, a study of\nthe basic principles that make up a long-lasting marriage shares advice on\nhow to cope with such issues as work, children, money, sex, and stress.\"\r\n9248,9974,116494,Lois Lowry,Anastasia Krupnik,https://images.gr-assets.com/books/1476942137l/116494.jpg,3.89,11914,\"fiction, classics\",\"Anastasia's 10th year has some good things like falling in love and really\ngetting to know her grandmother and some bad things like finding out about\nan impending baby brother.\"\r\n9249,9975,613991,David Gemmell,The King Beyond the Gate,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348566494l/613991.jpg,4.12,9305,\"fiction, fantasy\",The King Beyond the GateDavid Gemmell\r\n9250,9977,202948,Anne Tyler,Ladder of Years,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388451272l/202948.jpg,3.72,11209,\"fiction, contemporary\",Ladder of YearsAnne Tyler\r\n9251,9978,162332,\"Yukio Mishima, John Nathan\",午後の曳航 [Gogo no eikō],https://images.gr-assets.com/books/1327629352l/162332.jpg,3.89,8810,\"fiction, classics\",\"Explores an adolescent's response to his mother's love affair with a\nhandsome visitor to Yokohama\"\r\n9252,9979,16951,Wilbur Smith,When the Lion Feeds,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388892414l/16951.jpg,4.16,8440,\"fiction, thriller\",When the Lion FeedsWilbur Smith\r\n9253,9980,946899,Deeanne Gist,The Measure of a Lady,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441841061l/946899._SY475_.jpg,3.94,9583,\"romance, christian\",The Measure of a LadyDeeanne Gist\r\n9254,9981,106312,Jeffery Deaver,The Twelfth Card,https://images.gr-assets.com/books/1328407138l/106312.jpg,3.98,10188,\"mystery, thriller\",The Twelfth CardJeffery Deaver\r\n9255,9982,12444298,Karen Marie Moning,Feverborn,https://images.gr-assets.com/books/1435195536l/12444298.jpg,4.18,11570,\"fantasy, paranormal\",FeverbornKaren Marie Moning\r\n9256,9983,8539798,Kazue Kato,青の祓魔師 2,https://images.gr-assets.com/books/1278403940l/8539798.jpg,4.48,8972,\"manga, fantasy\",\"小学生の頃の燐は、獅郎から重大な『にんむ』を託された...!!風邪で倒れた雪男や教会のみんなを、たった一人で看病しなくてはならないのだ!!燐の奮闘がは\nじまる...!!その他、幼い頃の勝呂たちがクリスマスをめぐって起こす騒動、正十字学園の学生だった頃の柔造と蝮が、藤堂の課題に挑むエピソードなどを収録し\nた、小説第2弾。\"\r\n9257,9984,764165,Peter Matthiessen,The Snow Leopard,https://images.gr-assets.com/books/1309211772l/764165.jpg,4.12,8502,\"travel, nonfiction\",The Snow LeopardPeter Matthiessen\r\n9258,9985,19688,\"Steve Perry, Tom Clancy, Steve Pieczenik\",Tom Clancy's Net Force: Breaking Point,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390174862l/19688.jpg,3.69,7693,\"fiction, thriller\",\"In the year 2000, computers are the new superpowers. Those who control them\ncontrol the world. To enforce the Net Laws, Congress creates the ultimate\ncomputer security agency within the FBI: the Net Force. Reeling from a\nshattered personal life, Net Force Commander Alex Michaels is informed that\ntop secret information from a joint Air Force--Navy venture has been\naccessed and downloaded. The research involves an atmospheric weapon with\nthe capability to drive half a country into madness using low frequency\nwave generation. Now the technology has fallen into the wrong hands--and\ntesting has begun...\"\r\n9259,9986,183092,Terri Blackstock,Night Light: A Restoration Novel,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433648319l/183092._SY475_.jpg,4.35,8471,\"christian, fiction\",Night Light: A Restoration NovelTerri Blackstock\r\n9260,9987,8087038,Iris Johansen,Chasing The Night,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439520031l/8087038._SY475_.jpg,4.12,10129,\"mystery, suspense\",\"Eight years after her toddler is abducted in a cruel act of vengeance, CIA\nagent Catherine is unable to accept that she will never find her son and\ntaps forensic sculptor and fellow victim of a lost child Eve Duncan for\nassistance in establishing her son's age-progressed appearance. Reprint. 1\nmillion first printing.\"\r\n9261,9988,129237,John Rawls,A Theory of Justice,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348730096l/129237.jpg,3.91,8472,\"philosophy, classics\",\"Previous edition, 1st, published in 1971.\"\r\n9262,9989,13489518,Quinn Loftis,Out of the Dark ,https://images.gr-assets.com/books/1334785691l/13489518.jpg,4.5,11994,\"paranormal, romance\",Book 4 of the Grey Wolves' Series\r\n9263,9990,294081,Oscar Hijuelos,The Mambo Kings Play Songs of Love,https://images.gr-assets.com/books/1330072994l/294081.jpg,3.68,9107,\"fiction, music\",The Mambo Kings Play Songs of LoveOscar Hijuelos\r\n9264,9991,101094,Ben Okri,The Famished Road,https://images.gr-assets.com/books/1344396715l/101094.jpg,3.73,8251,\"fiction, fantasy\",\"As his parents struggle to put food on the table, Azaro, a little boy\nliving in the ghetto of an African city during British colonial rule,\nbattles the evil spirits who are tempting him. Reprint.\"\r\n9265,9992,13616278,Miles  Cameron,The Red Knight,https://images.gr-assets.com/books/1348037761l/13616278.jpg,4.12,8556,\"fantasy, fiction\",The Red KnightMiles  Cameron\r\n9266,9993,4936457,Ian Mortimer,The Time-Traveller's Guide to Medieval England: A Handbook for Visitors to the Fourteenth Century,https://images.gr-assets.com/books/1328167619l/4936457.jpg,3.99,9824,\"history, nonfiction\",\"The past is a foreign country: this is your guidebook. Take a step back\ninto Ian Mortimer's guide and experience the middle ages like never before.\"\r\n9267,9994,4769651,\"Michael Buckley, Peter Ferguson\",\"The Everafter War (The Sisters Grimm, #7)\",https://images.gr-assets.com/books/1388278230l/4769651.jpg,4.32,12493,\"fantasy, mystery\",\"The Everafter War (The Sisters Grimm, #7)Michael Buckley, Peter Ferguson\"\r\n9268,9995,15613,Herman Melville,\"Billy Budd, Sailor\",https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441739909l/15613._SY475_.jpg,3.09,10866,\"classics, fiction\",\"Definitive text of Billy Budd, Sailor, is presented with extensive notes\nand commentary enabling the reader to trace the genesis and growth of\nMelville's masterpiece\"\r\n9269,9996,7130616,Ilona Andrews,Bayou Moon,https://images.gr-assets.com/books/1307445460l/7130616.jpg,4.09,17204,\"fantasy, romance\",\"When her parents vanish, Cerise Mar becomes trapped in a war between two\nnations of the Weird and finds an unexpected ally in a changeling soldier\nwho has been forced back into service to track down a rival nation's\nspymaster.\"\r\n9270,9997,208324,Robert A. Caro,Means of Ascent ,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561669087l/208324.jpg,4.25,12582,\"biography, history\",\"Traces Johnson's life from his Texas childhood through his rise to\npolitical power and his successful 1948 senatorial campaign and eventual\npresidency.\"\r\n9271,9998,77431,Patrick O'Brian,The Mauritius Command,https://images.gr-assets.com/books/1455373531l/77431.jpg,4.35,9421,\"fiction, history\",\"During the Napoleonic wars, British naval captain Jack Aubrey, charged with\ncapturing the French islands of Reunion and Mauritius, must first cope with\nhis fellow commanders\"\r\n9272,9999,8565083,Peggy Orenstein,Cinderella Ate My Daughter: Dispatches from the Frontlines of the New Girlie-Girl Culture,https://images.gr-assets.com/books/1279214118l/8565083.jpg,3.65,11279,\"nonfiction, psychology\",\"The acclaimed author of the groundbreaking bestseller Schoolgirls reveals\nthe dark side of pink and pretty: the rise of the girlie-girl, she warns,\nis not that innocent. Sweet and sassy or predatory and hardened, sexualized\ngirlhood influences our daughters from infancy onward, telling them that\nhow a girl looks matters more than who she is. Somewhere between the\nexhilarating rise of Girl Power in the 1990s and today, the pursuit of\nphysical perfection has been recast as the source of female empowerment.\nAnd commercialization has spread the message faster and farther, reaching\ngirls at ever-younger ages. But how dangerous is pink and pretty, anyway?\nBeing a princess is just make-believe; eventually they grow out of it . . .\nor do they? In search of answers, Peggy Orenstein visited Disneyland,\ntrolled American Girl Place, and met parents of beauty-pageant preschoolers\ntricked out like Vegas showgirls. The stakes turn out to be higher than she\never imagined. From premature sexualization to the risk of depression to\nrising rates of narcissism, the potential negative impact of this new\ngirlie-girl culture is undeniable—yet armed with awareness and recognition,\nparents can effectively counterbalance its influence in their daughters'\nlives.\"\r\n9273,10000,8914,John Keegan,The First World War,https://images.gr-assets.com/books/1403194704l/8914.jpg,4,9162,\"history, nonfiction\",\"A history of the Great War chronicles the events of the conflict from early\ndiplomatic efforts to avert war, through the nightmarish campaigns and\nbattles, to the end of the war and its repercussions.\"\r\n"
  },
  {
    "path": "static/mainapp/dataset/books_cleaned.csv",
    "content": ",Unnamed: 0,book_id,isbn13,authors,original_title,average_rating,ratings_count,image_url\n1,1,3,9780439554930.0,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Philosopher's Stone,4.44,4602479,https://images.gr-assets.com/books/1474154022m/3.jpg\n2,2,2657,9780061120080.0,Harper Lee,To Kill a Mockingbird,4.25,3198671,https://images.gr-assets.com/books/1361975680m/2657.jpg\n3,3,4671,9780743273560.0,F. Scott Fitzgerald,The Great Gatsby,3.89,2683664,https://images.gr-assets.com/books/1490528560m/4671.jpg\n5,5,5907,9780618260300.0,J.R.R. Tolkien,The Hobbit or There and Back Again,4.25,2071616,https://images.gr-assets.com/books/1372847500m/5907.jpg\n6,6,5107,9780316769170.0,J.D. Salinger,The Catcher in the Rye,3.79,2044241,https://images.gr-assets.com/books/1398034300m/5107.jpg\n7,7,960,9781416524790.0,Dan Brown,Angels & Demons,3.85,2001311,https://images.gr-assets.com/books/1303390735m/960.jpg\n8,8,1885,9780679783270.0,Jane Austen,Pride and Prejudice,4.24,2035490,https://images.gr-assets.com/books/1320399351m/1885.jpg\n11,11,5470,9780451524940.0,\"George Orwell, Erich Fromm, Celâl Üster\",Nineteen Eighty-Four,4.14,1956832,https://images.gr-assets.com/books/1348990566m/5470.jpg\n12,12,7613,9780452284240.0,George Orwell,Animal Farm: A Fairy Story,3.87,1881700,https://images.gr-assets.com/books/1424037542m/7613.jpg\n16,16,5,9780439655480.0,\"J.K. Rowling, Mary GrandPré, Rufus Beck\",Harry Potter and the Prisoner of Azkaban,4.53,1832823,https://images.gr-assets.com/books/1499277281m/5.jpg\n17,17,34,9780618346260.0,J.R.R. Tolkien,The Fellowship of the Ring,4.34,1766803,https://images.gr-assets.com/books/1298411339m/34.jpg\n19,19,2,9780439358070.0,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Order of the Phoenix,4.46,1735368,https://images.gr-assets.com/books/1387141547m/2.jpg\n22,22,6,9780439139600.0,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Goblet of Fire,4.53,1753043,https://images.gr-assets.com/books/1361482611m/6.jpg\n24,24,968,9780307277670.0,Dan Brown,The Da Vinci Code,3.79,1447148,https://images.gr-assets.com/books/1303252999m/968.jpg\n25,25,1,9780439785970.0,\"J.K. Rowling, Mary GrandPré\",Harry Potter and the Half-Blood Prince,4.54,1678823,https://images.gr-assets.com/books/1361039191m/1.jpg\n26,26,7624,9780140283330.0,William Golding,Lord of the Flies,3.64,1605019,https://images.gr-assets.com/books/1327869409m/7624.jpg\n30,30,890,9780142000670.0,John Steinbeck,Of Mice and Men,3.84,1467496,https://images.gr-assets.com/books/1437235233m/890.jpg\n31,31,930,9780739326220.0,Arthur Golden,Memoirs of a Geisha,4.08,1300209,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n33,33,865,9780061122420.0,\"Paulo Coelho, Alan R. Clarke\",O Alquimista,3.82,1299566,https://images.gr-assets.com/books/1483412266m/865.jpg\n34,34,3636,9780385732550.0,Lois Lowry,The Giver,4.12,1296825,https://images.gr-assets.com/books/1342493368m/3636.jpg\n40,40,1934,9780451529300.0,Louisa May Alcott,Little Women,4.04,1257121,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n43,43,4214,9780770430080.0,Yann Martel,Life of Pi,3.88,1003228,https://images.gr-assets.com/books/1320562005m/4214.jpg\n46,46,4381,9780307347980.0,Ray Bradbury,Fahrenheit 451,3.97,570498,https://images.gr-assets.com/books/1351643740m/4381.jpg\n51,51,11,9780345391800.0,Douglas Adams,The Hitchhiker's Guide to the Galaxy,4.2,936782,https://images.gr-assets.com/books/1327656754m/11.jpg\n52,52,5129,9780060929880.0,Aldous Huxley,Brave New World,3.97,1022601,https://images.gr-assets.com/books/1487389574m/5129.jpg\n55,55,2956,9780142437180.0,\"Mark Twain, John Seelye, Guy Cardwell\",The Adventures of Huckleberry Finn,3.8,953758,https://images.gr-assets.com/books/1405973850m/2956.jpg\n57,57,1618,9781400032720.0,Mark Haddon,The Curious Incident of the Dog in the Night-Time,3.85,867553,https://images.gr-assets.com/books/1479863624m/1618.jpg\n59,59,6185,9780393978900.0,\"Emily Brontë, Richard J. Dunn\",Wuthering Heights,3.82,899195,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n61,61,4981,9780385333850.0,Kurt Vonnegut Jr.,\"Slaughterhouse-Five, or The Children's Crusade: A Duty-Dance with Death \",4.06,846488,https://images.gr-assets.com/books/1440319389m/4981.jpg\n73,73,5139,9780307275550.0,Lauren Weisberger,The Devil Wears Prada,3.7,665930,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n74,74,1381,9780143039950.0,\"Homer, Robert Fagles, E.V. Rieu, Frédéric Mugler, Bernard Knox\",Ὀδύσσεια,3.73,670326,https://images.gr-assets.com/books/1390173285m/1381.jpg\n76,76,7445,9780743247540.0,Jeannette Walls,The Glass Castle,4.24,621099,https://images.gr-assets.com/books/1400930557m/7445.jpg\n77,77,1953,9780141439600.0,\"Charles Dickens, Richard Maxwell, Hablot Knight Browne\",A Tale of Two Cities,3.81,637412,https://images.gr-assets.com/books/1344922523m/1953.jpg\n78,78,7677,9780307348140.0,Michael Crichton,Jurassic Park,3.96,447833,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n81,81,1617,9780374500020.0,\"Elie Wiesel, Marion Wiesel\",Un di Velt Hot Geshvign,4.3,691231,https://images.gr-assets.com/books/1473495285m/1617.jpg\n86,86,1202,9780061234000.0,\"Steven D. Levitt, Stephen J. Dubner\",Freakonomics: A Rogue Economist Explores the Hidden Side of Everything,3.93,524191,https://images.gr-assets.com/books/1327909092m/1202.jpg\n87,87,2998,9780517189600.0,Frances Hodgson Burnett,The Secret Garden,4.12,639357,https://images.gr-assets.com/books/1327873635m/2998.jpg\n88,88,320,9780060531040.0,\"Gabriel García Márquez, Gregory Rabassa\",Cien años de soledad,4.04,490565,https://images.gr-assets.com/books/1327881361m/320.jpg\n89,89,5297,9780375751520.0,\"Oscar Wilde, Jeffrey Eugenides\",The Picture of Dorian Gray,4.06,590014,https://images.gr-assets.com/books/1424596966m/5297.jpg\n94,94,7244,9780060786500.0,Barbara Kingsolver,The Poisonwood Bible,4.02,546502,https://images.gr-assets.com/books/1412242487m/7244.jpg\n95,95,4137,9780349113910.0,David Sedaris,Me Talk Pretty One Day,3.97,495736,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n97,97,7126,9780140449270.0,\"Alexandre Dumas, Robin Buss\",Le Comte de Monte-Cristo,4.21,555822,https://images.gr-assets.com/books/1309203605m/7126.jpg\n98,98,6288,9780307265430.0,Cormac McCarthy,The Road,3.95,504793,https://images.gr-assets.com/books/1439197219m/6288.jpg\n100,101,3473,9780446693810.0,Nicholas Sparks,A Walk to Remember,4.15,546948,https://images.gr-assets.com/books/1385738968m/3473.jpg\n101,102,9416,9780440241420.0,Sophie Kinsella,Confessions of a Shopaholic,3.61,543658,https://images.gr-assets.com/books/1327872404m/9416.jpg\n106,107,6900,9780751529810.0,\"Mitch Albom, Saulius Dagys\",Tuesdays with Morrie,4.06,556518,https://images.gr-assets.com/books/1423763749m/6900.jpg\n107,108,2187,9780312422160.0,Jeffrey Eugenides,Middlesex,3.98,488243,https://images.gr-assets.com/books/1437029776m/2187.jpg\n110,111,7763,9780143038090.0,Amy Tan,The Joy Luck Club,3.9,515090,https://images.gr-assets.com/books/1304978653m/7763.jpg\n115,117,1420,9780521618750.0,\"William Shakespeare, Richard Andrews, Rex Gibson\",\"The Tragicall Historie of Hamlet, Prince of Denmark\",4.0,515820,https://images.gr-assets.com/books/1351051208m/1420.jpg\n117,119,2612,9780316346630.0,Malcolm Gladwell,The Tipping Point: How Little Things Can Make a Big Difference,3.92,490504,https://images.gr-assets.com/books/1473396980m/2612.jpg\n120,122,2165,9780684830490.0,Ernest Hemingway,The Old Man and the Sea,3.73,520630,https://images.gr-assets.com/books/1329189714m/2165.jpg\n121,123,4395,9780142000660.0,John Steinbeck,The Grapes of Wrath,3.92,322321,https://images.gr-assets.com/books/1352912927m/4395.jpg\n122,124,3431,9781401308580.0,Mitch Albom,The Five People You Meet in Heaven,3.9,449501,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n123,125,8127,9780451528830.0,L.M. Montgomery,Anne of Green Gables,4.23,502247,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n131,133,5043,9780451207140.0,Ken Follett,The Pillars of the Earth,4.29,462517,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n133,135,976,9780671027380.0,Dan Brown,Deception Point,3.67,455610,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n136,138,2865,9780452287020.0,Tracy Chevalier,Girl with a Pearl Earring,3.85,467577,https://images.gr-assets.com/books/1327197580m/2865.jpg\n138,140,4989,9780312353770.0,Anita Diamant,The Red Tent,4.16,424981,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n140,142,5526,9780446528050.0,Nicholas Sparks,Dear John,4.01,441062,https://images.gr-assets.com/books/1397749854m/5526.jpg\n142,144,8852,9780743477110.0,William Shakespeare,The Tragedy of Macbeth,3.88,496018,https://images.gr-assets.com/books/1459795224m/8852.jpg\n146,148,6310,9780142403880.0,\"Roald Dahl, Quentin Blake\",Charlie and the Chocolate Factory,4.1,453959,https://images.gr-assets.com/books/1309211401m/6310.jpg\n148,150,2623,9780192833590.0,Charles Dickens,Great Expectations,3.75,459247,https://images.gr-assets.com/books/1327920219m/2623.jpg\n154,157,4407,9780747263750.0,Neil Gaiman,American Gods,4.11,378019,https://images.gr-assets.com/books/1258417001m/4407.jpg\n158,161,6969,9780141439590.0,\"Jane Austen, Fiona Stafford\",Emma,3.99,459826,https://images.gr-assets.com/books/1373627931m/6969.jpg\n164,167,7144,9780143058140.0,\"Fyodor Dostoyevsky, David McDuff\",Преступление и наказание,4.18,380903,https://images.gr-assets.com/books/1382846449m/7144.jpg\n165,168,6514,9780061148510.0,Sylvia Plath,The Bell Jar,3.98,401605,https://images.gr-assets.com/books/1473890514m/6514.jpg\n175,179,33,9780618640160.0,J.R.R. Tolkien,The Lord of the Rings,4.47,389054,https://images.gr-assets.com/books/1411114164m/33.jpg\n182,186,5759,9780393327340.0,Chuck Palahniuk,Fight Club,4.2,365349,https://images.gr-assets.com/books/1357128997m/5759.jpg\n189,194,5326,9781561797460.0,Charles Dickens,A Christmas Carol,4.02,394540,https://images.gr-assets.com/books/1406512317m/5326.jpg\n192,197,6853,9780312362090.0,Janet Evanovich,One for the Money,4.03,391007,https://images.gr-assets.com/books/1316730230m/6853.jpg\n196,201,6867,9780385721790.0,Ian McEwan,Atonement,3.88,347006,https://images.gr-assets.com/books/1320449708m/6867.jpg\n205,210,7869,9780752864330.0,Robert Ludlum,The Bourne Identity,3.98,327122,https://images.gr-assets.com/books/1335860740m/7869.jpg\n207,212,4406,9780142000660.0,John Steinbeck,East of Eden,4.35,320919,https://images.gr-assets.com/books/1441547516m/4406.jpg\n209,214,5359,9780385339090.0,John Grisham,The Client,3.97,320083,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n212,217,2156,9780192802640.0,\"Jane Austen, James Kinsley, Deidre Shauna Lynch\",Persuasion,4.13,365425,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n215,220,9712,9781400034680.0,\"Gabriel García Márquez, Edith Grossman\",El amor en los tiempos del cólera,3.89,283806,https://images.gr-assets.com/books/1327124987m/9712.jpg\n218,223,1898,9780385494790.0,Jon Krakauer,Into Thin Air: A Personal Account of the Mt. Everest Disaster,4.11,291258,https://images.gr-assets.com/books/1463384482m/1898.jpg\n221,226,8908,9780307346600.0,Max Brooks,World War Z: An Oral History of the Zombie War,4.01,312969,https://images.gr-assets.com/books/1386328204m/8908.jpg\n226,231,2839,9780439366780.0,Katherine Paterson,Bridge to Terabithia,3.98,337644,https://images.gr-assets.com/books/1327880087m/2839.jpg\n229,234,1622,9780743477540.0,\"William Shakespeare, Barbara A. Mowat, Paul Werstine, Catherine Belsey\",A Midsummer Night's Dream,3.94,334241,https://images.gr-assets.com/books/1327874534m/1622.jpg\n230,235,4588,9780618711660.0,Jonathan Safran Foer,Extremely Loud and Incredibly Close,3.97,294726,https://images.gr-assets.com/books/1327879967m/4588.jpg\n236,241,662,9780452011880.0,\"Ayn Rand, Leonard Peikoff\",Atlas Shrugged,3.68,283295,https://images.gr-assets.com/books/1405868167m/662.jpg\n238,243,1232,9780143034900.0,\"Carlos Ruiz Zafón, Lucia Graves\",La sombra del viento,4.24,263685,https://images.gr-assets.com/books/1344545047m/1232.jpg\n240,245,4865,9780671723650.0,Dale Carnegie,How to Win Friends and Influence People,4.13,282623,https://images.gr-assets.com/books/1442726934m/4865.jpg\n244,249,3876,9780743297330.0,Ernest Hemingway,The Sun Also Rises,3.83,284988,https://images.gr-assets.com/books/1331828228m/3876.jpg\n248,253,6334,9781400078780.0,Kazuo Ishiguro,Never Let Me Go,3.8,294123,https://images.gr-assets.com/books/1353048590m/6334.jpg\n252,257,6952,9780552995870.0,\"Laura Esquivel, Thomas  Christensen, Carol Christensen\",Como agua para chocolate,3.94,263199,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n253,258,1103,9780812968060.0,Lisa See,Snow Flower and the Secret Fan,4.05,280475,https://images.gr-assets.com/books/1327880508m/1103.jpg\n266,271,2122,9780451191150.0,\"Ayn Rand, Leonard Peikoff\",The Fountainhead,3.85,244545,https://images.gr-assets.com/books/1491163636m/2122.jpg\n272,277,295,9780753453800.0,Robert Louis Stevenson,Treasure Island,3.82,268012,https://images.gr-assets.com/books/1485248909m/295.jpg\n275,280,4948,9780241003010.0,Eric Carle,The Very Hungry Caterpillar,4.29,296952,https://images.gr-assets.com/books/1327878225m/4948.jpg\n277,282,2493,9780451528550.0,\"H.G. Wells, Greg Bear, Carlo Pagetti\",The Time Machine,3.87,276076,https://images.gr-assets.com/books/1327942880m/2493.jpg\n282,287,5203,9780671021010.0,Wally Lamb,She's Come Undone,3.84,259576,https://images.gr-assets.com/books/1408313457m/5203.jpg\n287,292,3412,9780380018180.0,Colleen McCullough,The Thorn Birds,4.22,255651,https://images.gr-assets.com/books/1391416796m/3412.jpg\n291,296,4894,9780091883770.0,\"Spencer Johnson, Kenneth H. Blanchard\",Who Moved My Cheese?,3.74,237272,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n292,297,9791,9780307279460.0,Bill Bryson,A Walk in the Woods,4.05,250192,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n299,304,9717,9780571224390.0,\"Milan Kundera, Michael Henry Heim\",Nesnesitelná lehkost bytí,4.08,205279,https://images.gr-assets.com/books/1265401884m/9717.jpg\n300,305,4473,9780552135400.0,John Irving,A Prayer for Owen Meany,4.22,226964,https://images.gr-assets.com/books/1260470010m/4473.jpg\n310,315,6689,9780375814240.0,\"Roald Dahl, Quentin Blake\",James and the Giant Peach,3.99,270402,https://images.gr-assets.com/books/1320412586m/6689.jpg\n312,317,13,9780345453750.0,Douglas Adams,The Ultimate Hitchhiker's Guide: Five Complete Novels and One Story,4.37,222842,https://images.gr-assets.com/books/1404613595m/13.jpg\n315,320,1371,9780140275360.0,\"Homer, Robert Fagles, Frédéric Mugler, Bernard Knox\",Ἰλιάς,3.83,241088,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n322,328,7745,9780679785900.0,\"Hunter S. Thompson, Ralph Steadman\",Fear and Loathing in Las Vegas: A Savage Journey to the Heart of the American Dream,4.08,232489,https://images.gr-assets.com/books/1394204569m/7745.jpg\n326,332,6149,9781400033420.0,Toni Morrison,Beloved,3.77,233825,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n332,338,7082,9780345404470.0,\"Philip K. Dick, Roger Zelazny\",Do Androids Dream of Electric Sheep?,4.08,223828,https://images.gr-assets.com/books/1435458683m/7082.jpg\n336,342,5805,9781401207920.0,\"Alan Moore, David   Lloyd\",V for Vendetta,4.25,210682,https://images.gr-assets.com/books/1343668985m/5805.jpg\n337,343,2203,9780743223130.0,David McCullough,John Adams,4.05,215780,https://images.gr-assets.com/books/1478144278m/2203.jpg\n342,348,350,9780441788380.0,Robert A. Heinlein,Stranger in a Strange Land,3.91,220301,https://images.gr-assets.com/books/1156897088m/350.jpg\n344,350,6319,9780141311370.0,\"Roald Dahl, Quentin Blake\",The BFG,4.22,245855,https://images.gr-assets.com/books/1327872673m/6319.jpg\n345,351,21,9780767908180.0,Bill Bryson,A Short History of Nearly Everything,4.19,191535,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n346,352,1852,9780439227150.0,Jack London,The Call of the Wild,3.83,223932,https://images.gr-assets.com/books/1452291694m/1852.jpg\n352,358,5168,9780446672210.0,Billie Letts,Where the Heart Is,4.0,208333,https://images.gr-assets.com/books/1327959469m/5168.jpg\n354,360,1241,9780307276900.0,James Frey,A Million Little Pieces,3.62,184241,https://images.gr-assets.com/books/1483206985m/1241.jpg\n359,365,50,9780689840920.0,Gary Paulsen,Hatchet,3.68,222553,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n362,368,7784,9780679889110.0,Dr. Seuss,The Lorax,4.35,226564,https://images.gr-assets.com/books/1327879938m/7784.jpg\n368,374,343,9780140120840.0,\"Patrick Süskind, John E. Woods\",Das Parfum. Die Geschichte eines Mörders,4.0,178135,https://images.gr-assets.com/books/1409112276m/343.jpg\n369,375,1097,9780060838580.0,Eric Schlosser,Fast Food Nation : The Dark Side of the All-American Meal,3.73,179347,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n375,381,4980,9780385334200.0,Kurt Vonnegut Jr.,Breakfast of Champions,4.08,178154,https://images.gr-assets.com/books/1327934446m/4980.jpg\n377,383,5826,9780060838720.0,Ann Patchett,Bel Canto,3.92,192330,https://images.gr-assets.com/books/1352997328m/5826.jpg\n378,384,1842,9780739467350.0,Jared Diamond,\"Guns, Germs, and Steel: The Fates of Human Societies\",4.0,171558,https://images.gr-assets.com/books/1453215833m/1842.jpg\n379,385,9375,9780375508420.0,Fannie Flagg,Fried Green Tomatoes at the Whistle Stop Cafe,4.26,207508,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n385,392,6327,9780590032490.0,\"Roald Dahl, Quentin Blake\",The Witches,4.17,221431,https://images.gr-assets.com/books/1351707720m/6327.jpg\n389,396,3478,9780446676080.0,Nicholas Sparks,Message in a Bottle,3.95,185116,https://images.gr-assets.com/books/1163789140m/3478.jpg\n399,406,4929,9781400079280.0,\"Haruki Murakami, Philip Gabriel\",海辺のカフカ [Umibe no Kafuka],4.13,167593,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n405,412,9777,9780679457310.0,Arundhati Roy,The God of Small Things,3.91,165378,https://images.gr-assets.com/books/1436217001m/9777.jpg\n408,415,3869,9780553380160.0,\"Stephen Hawking, Cao Chi, Phạm Văn Thiều\",A Brief History of Time: From the Big Bang to Black Holes,4.12,165628,https://images.gr-assets.com/books/1333578746m/3869.jpg\n411,418,830,9780553380960.0,Neal Stephenson,Snow Crash,4.02,175883,https://images.gr-assets.com/books/1477624625m/830.jpg\n430,437,1078,9781416500190.0,Pearl S. Buck,The Good Earth,3.97,182220,https://images.gr-assets.com/books/1312497600m/1078.jpg\n431,438,2784,9780140135150.0,John Berger,Ways of Seeing,3.75,155658,https://images.gr-assets.com/books/1464018308m/2784.jpg\n432,439,5364,9780385335970.0,Diana Gabaldon,Dragonfly in Amber,4.31,178110,https://images.gr-assets.com/books/1456114344m/5364.jpg\n440,447,4069,9780807014300.0,Viktor E. Frankl,…trotzdem Ja zum Leben sagen: Ein Psychologe erlebt das Konzentrationslager,4.33,171281,https://images.gr-assets.com/books/1467136625m/4069.jpg\n444,451,7069,9780345915600.0,John Irving,The World According to Garp,4.07,167106,https://images.gr-assets.com/books/1447234581m/7069.jpg\n446,453,2932,9780375757330.0,\"Daniel Defoe, Gerald McCann, Virginia Woolf\",\"The Life and Strange Surprising Adventures of Robinson Crusoe of York, Mariner\",3.66,178188,https://images.gr-assets.com/books/1403180114m/2932.jpg\n451,458,5113,9780316769020.0,J.D. Salinger,Franny and Zooey,3.98,152906,https://images.gr-assets.com/books/1355037988m/5113.jpg\n453,460,4934,9780374528380.0,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",Братья Карамазовы,4.3,155838,https://images.gr-assets.com/books/1427728126m/4934.jpg\n455,462,7670,9780060541810.0,Michael Crichton,The Andromeda Strain,3.87,173186,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n457,464,2547,9780001000390.0,Kahlil Gibran,The Prophet,4.22,142641,https://images.gr-assets.com/books/1355046521m/2547.jpg\n460,467,7967,9780812550760.0,Orson Scott Card,Speaker for the Dead,4.04,164287,https://images.gr-assets.com/books/1295660894m/7967.jpg\n463,470,4953,9780375725780.0,Dave Eggers,A Heartbreaking Work of Staggering Genius,3.68,145459,https://images.gr-assets.com/books/1327714834m/4953.jpg\n464,471,1295,9780553381670.0,Jean M. Auel,The Clan of the Cave Bear,4.02,176062,https://images.gr-assets.com/books/1385331302m/1295.jpg\n465,472,3685,9780439228910.0,Anna Sewell,Black Beauty,3.94,183255,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n466,473,656,9780192833980.0,\"Leo Tolstoy, Henry Gifford, Aylmer Maude, Louise Maude\",Война и миръ,4.11,168037,https://images.gr-assets.com/books/1413215930m/656.jpg\n469,476,7061,9781400034770.0,Alexander McCall Smith,The No. 1 Ladies' Detective Agency,3.75,180320,https://images.gr-assets.com/books/1459953654m/7061.jpg\n475,482,1869,9780805063900.0,Barbara Ehrenreich,Nickel and Dimed: On (Not) Getting By in America,3.6,152786,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n478,485,6534,9780743477150.0,Patricia Cornwell,Post-Mortem:  A Mystery Introducing Dr. Kay Scarpetta,4.01,167379,https://images.gr-assets.com/books/1341835831m/6534.jpg\n481,488,3590,9780192835090.0,Arthur Conan Doyle,The Adventures of Sherlock Holmes,4.29,139816,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n483,490,3985,9780312283000.0,Michael Chabon,The Amazing Adventures of Kavalier & Clay,4.17,147717,https://images.gr-assets.com/books/1479660066m/3985.jpg\n496,503,7733,9780141439500.0,\"Jonathan Swift, Robert DeMaria Jr.\",Gulliver’s Travels,3.55,168727,https://images.gr-assets.com/books/1427829692m/7733.jpg\n507,514,3008,9780142437020.0,\"Frances Hodgson Burnett, Nancy Bond\",A Little Princess,4.2,199872,https://images.gr-assets.com/books/1327868556m/3008.jpg\n513,520,629,9780060589460.0,Robert M. Pirsig,Zen and the Art of Motorcycle Maintenance,3.76,139411,https://images.gr-assets.com/books/1410136019m/629.jpg\n514,521,8909,9780375759240.0,\"H.G. Wells, Arthur C. Clarke\",The War of the Worlds,3.8,159752,https://images.gr-assets.com/books/1320391644m/8909.jpg\n517,524,3109,9781594200820.0,Michael Pollan,The Omnivore's Dilemma,4.17,133271,https://images.gr-assets.com/books/1393804353m/3109.jpg\n519,526,3462,9780446696130.0,Nicholas Sparks,The Rescue,4.1,142092,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n526,533,2175,9780192840390.0,\"Gustave Flaubert, Margaret Mauldon, Malcolm Bowie, Mark Overstall\",Madame Bovary,3.64,158877,https://images.gr-assets.com/books/1335676143m/2175.jpg\n527,534,378,9780394820380.0,\"Norton Juster, Jules Feiffer\",The Phantom Tollbooth,4.22,178432,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n536,544,1274,9780060574220.0,John Gray,\"Men Are from Mars, Women Are from Venus Book of Days: 365 Inspirations to Enrich Your Relationships\",3.52,113915,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n538,546,7669,9780099244720.0,Michael Crichton,Timeline,3.83,148563,https://images.gr-assets.com/books/1405420745m/7669.jpg\n548,556,3682,9780689875340.0,Libba Bray,A Great and Terrible Beauty,3.79,173613,https://images.gr-assets.com/books/1284558475m/3682.jpg\n557,565,5148,9780743253970.0,John Knowles,A Separate Peace,3.56,155901,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n558,566,5349,9780385339600.0,John Grisham,The Rainmaker,3.91,137412,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n559,567,3836,9780142437230.0,\"Miguel de Cervantes Saavedra, Roberto González Echevarría, John Rutherford\",Don Quijote de La Mancha,3.85,134931,https://images.gr-assets.com/books/1364958765m/3836.jpg\n561,569,8695,9780345418920.0,Douglas Adams,The Restaurant at the End of the Universe,4.22,153838,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n573,581,7332,9780618391110.0,\"J.R.R. Tolkien, Christopher Tolkien, Ted Nasmith\",The Silmarillion,3.87,134106,https://images.gr-assets.com/books/1336502583m/7332.jpg\n574,582,5094,9780451210850.0,Stephen King,The Drawing of the Three,4.23,139052,https://images.gr-assets.com/books/1370918050m/5094.jpg\n580,588,8921,9780451528020.0,\"Arthur Conan Doyle, Anne Perry\",The Hound of the Baskervilles,4.09,154517,https://images.gr-assets.com/books/1355929358m/8921.jpg\n587,595,5166,9780375706780.0,Chris Bohjalian,Midwives,3.97,133155,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n591,599,1431,9780061124270.0,\"Paulo Coelho, Margaret Jull Costa\",Veronika decide morrer,3.69,111856,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n600,608,93,9780753454950.0,\"Johanna Spyri, Angelo  Rinaldi, Beverly Cleary\",Heidi,3.97,144497,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n603,611,5064,9780525950070.0,Ken Follett,World Without End,4.23,128715,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n606,615,2696,9780140424390.0,\"Geoffrey Chaucer, Nevill Coghill\",Tales of Caunterbury,3.48,148480,https://images.gr-assets.com/books/1261208589m/2696.jpg\n613,622,2526,9780156007760.0,\"José Saramago, Giovanni Pontiero\",Ensaio Sobre a Cegueira,4.08,98738,https://images.gr-assets.com/books/1327866409m/2526.jpg\n618,627,3805,9781841156740.0,Jonathan Franzen,The Corrections,3.78,117657,https://images.gr-assets.com/books/1355011305m/3805.jpg\n620,629,7672,9780060541840.0,Michael Crichton,Congo,3.55,129811,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n622,631,5439,9780618101370.0,Jhumpa Lahiri,Interpreter of Maladies,4.12,110651,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n623,632,2767,9780060838650.0,Howard Zinn,A People's History of the United States: 1492 to Present,4.07,137372,https://images.gr-assets.com/books/1494279423m/2767.jpg\n626,635,2744,9780060515200.0,Neil Gaiman,Anansi Boys,4.0,137639,https://images.gr-assets.com/books/1479778049m/2744.jpg\n629,638,9328,9780553383800.0,\"Isabel Allende, Magda Bogin\",La casa de los espíritus,4.2,119930,https://images.gr-assets.com/books/1358615501m/9328.jpg\n634,643,7494,9780446611080.0,James Patterson,Suzanne's Diary for Nicholas,4.16,121398,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n640,649,1005,9781585424340.0,Napoleon Hill,Think and Grow Rich,4.17,87445,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n641,650,8337,9780060885370.0,\"Laura Ingalls Wilder, Garth Williams\",Little House In The Big Woods,4.16,165127,https://images.gr-assets.com/books/1475195170m/8337.jpg\n643,652,3463,9780446696140.0,Nicholas Sparks,A Bend in the Road,4.02,116800,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n645,654,1067,9780743226720.0,David McCullough,1776,4.06,130293,https://images.gr-assets.com/books/1306787560m/1067.jpg\n648,657,9742,9780307237700.0,Barack Obama,The Audacity of Hope: Thoughts on Reclaiming the American Dream,3.69,110873,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n662,671,4687,9780786226740.0,John Irving,The Cider House Rules,4.1,124876,https://images.gr-assets.com/books/1327962519m/4687.jpg\n666,675,1430,9780060589290.0,\"Paulo Coelho, Margaret Jull Costa\",Onze minutos,3.69,102206,https://images.gr-assets.com/books/1358266987m/1430.jpg\n667,676,4009,9780316767730.0,J.D. Salinger,Nine Stories,4.19,105138,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n676,686,2880,9781591164420.0,Tite Kubo,BLEACH―ブリーチ―　1,4.21,120004,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n677,687,9539,9780812513740.0,Robert Jordan,The Shadow Rising,4.21,122524,https://images.gr-assets.com/books/1470841890m/9539.jpg\n681,691,2373,9780451188460.0,Jeffery Deaver,The Bone Collector,4.18,120541,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n685,695,5308,9780142000690.0,John Steinbeck,The Pearl of the World,3.41,133264,https://images.gr-assets.com/books/1437234939m/5308.jpg\n693,703,9822,9780689862200.0,Robert C. O'Brien,Mrs. Frisby and the Rats of NIMH,4.13,135978,https://images.gr-assets.com/books/1351191064m/9822.jpg\n697,708,6708,9781577314810.0,Eckhart Tolle,The Power of Now,4.1,104549,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n704,715,8694,9780345418910.0,Douglas Adams,\"Life, the Universe and Everything\",4.19,131562,https://images.gr-assets.com/books/1333577589m/8694.jpg\n713,724,9532,9780765342410.0,Orson Scott Card,Ender's Shadow,4.3,115521,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n731,742,5211,9781400030650.0,Rohinton Mistry,A Fine Balance,4.34,99252,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n740,751,6596,9781878424500.0,Miguel Ruiz,\"The Four Agreements: A Practical Guide to Personal Freedom, A Toltec Wisdom Book\",4.12,97016,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n743,754,3980,9780744583270.0,E.L. Konigsburg,From the Mixed-Up Files of Mrs. Basil E. Frankweiler,4.15,134537,https://images.gr-assets.com/books/1327784751m/3980.jpg\n745,756,4271,9780140285670.0,Nick Hornby,About a Boy,3.79,101999,https://images.gr-assets.com/books/1382004144m/4271.jpg\n747,759,7770,9780007173690.0,Dr. Seuss,\"One Fish, Two Fish, Red Fish, Blue Fish\",4.12,117582,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n755,767,5096,9780340829780.0,\"Stephen King, Dave McKean\",Wizard and Glass,4.24,105026,https://images.gr-assets.com/books/1327946510m/5096.jpg\n758,770,5479,9780060776090.0,\"Aldous Huxley, Christopher Hitchens\",Brave New World/Brave New World Revisited,4.16,108124,https://images.gr-assets.com/books/1331315450m/5479.jpg\n765,778,6294,9780064410340.0,Diana Wynne Jones,Howl's Moving Castle,4.3,123945,https://images.gr-assets.com/books/1407450489m/6294.jpg\n772,785,1554,9781580495940.0,\"Sophocles, J.E. Thomas\",Οἰδίπους Τύραννος,3.67,119496,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n774,787,5659,9780143039100.0,\"Kenneth Grahame, Gillian Avery\",The Wind in the Willows,3.98,124612,https://images.gr-assets.com/books/1423183570m/5659.jpg\n775,789,3087,9781420925430.0,E.M. Forster,A Room with a View,3.91,109994,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n779,793,5355,9780385339670.0,John Grisham,The Chamber,3.76,102715,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n783,798,8648,9780312861870.0,Orson Scott Card,Xenocide,3.77,104467,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n790,805,5472,9780151010260.0,\"George Orwell, Christopher Hitchens\",Animal Farm & 1984,4.26,116197,https://images.gr-assets.com/books/1327959366m/5472.jpg\n791,806,5161,9780140286270.0,Jacquelyn Mitchard,The Deep End of the Ocean,3.84,102733,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n798,814,1625,9780743482780.0,William Shakespeare,\"Twelfth Night; or, What You Will\",3.97,119607,https://images.gr-assets.com/books/1416628008m/1625.jpg\n800,816,902,9780142401200.0,Ellen Raskin,The Westing Game,4.03,117108,https://images.gr-assets.com/books/1356850909m/902.jpg\n810,826,3867,9780393328620.0,Nicole Krauss,The History of Love,3.91,98379,https://images.gr-assets.com/books/1327911009m/3867.jpg\n813,829,2199,9780743270760.0,\"Doris Kearns Goodwin, Suzanne Toren\",Team of Rivals: The Political Genius of Abraham Lincoln,4.3,102923,https://images.gr-assets.com/books/1347278868m/2199.jpg\n835,851,870,9781591169210.0,\"Hiromu Arakawa, Akira Watanabe\",鋼の錬金術師 1,4.49,93990,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n837,853,7815,9781400078430.0,Joan Didion,The Year of Magical Thinking,3.86,94590,https://images.gr-assets.com/books/1327878638m/7815.jpg\n843,859,4965,9780142001430.0,Geraldine Brooks,Year of Wonders: A Novel of the Plague,4.0,104283,https://images.gr-assets.com/books/1327936622m/4965.jpg\n845,861,667,9780452281260.0,Ayn Rand,Anthem,3.62,95620,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n847,863,8073,9780689707490.0,\"Judi Barrett, Ron Barrett\",Cloudy with a Chance of Meatballs,4.15,104677,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n854,870,6427,9780140255550.0,Janet Evanovich,Two for the Dough,4.11,116171,https://images.gr-assets.com/books/1330926461m/6427.jpg\n858,874,7603,9780812971060.0,Azar Nafisi,Reading Lolita in Tehran: A Memoir in Books,3.57,94696,https://images.gr-assets.com/books/1397751318m/7603.jpg\n861,877,7354,9780743225430.0,Annie Proulx,The Shipping News,3.83,103151,https://images.gr-assets.com/books/1469036074m/7354.jpg\n877,894,4978,9781416516930.0,\"Stephen King, Bernie Wrightson\",Wolves of the Calla,4.17,98182,https://images.gr-assets.com/books/1419360231m/4978.jpg\n884,901,4136,9780316191300.0,David Sedaris,Holidays on Ice,3.95,82591,https://images.gr-assets.com/books/1328330843m/4136.jpg\n893,910,9420,9780385338710.0,Sophie Kinsella,Shopaholic and Baby,3.77,98130,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n894,911,5091,9781416524530.0,Stephen King,The Dark Tower,4.27,93296,https://images.gr-assets.com/books/1372296329m/5091.jpg\n896,913,9418,9780440241810.0,Sophie Kinsella,Shopaholic Abroad,3.75,93498,https://images.gr-assets.com/books/1266449959m/9418.jpg\n897,914,5544,9780393316050.0,Richard Feynman,\"Surely You're Joking, Mr. Feynman! Adventures of a Curious Character\",4.29,91625,https://images.gr-assets.com/books/1348445281m/5544.jpg\n899,916,3579,76783609419.0,L.M. Montgomery,The Complete Anne of Green Gables Boxed Set,4.42,92142,https://images.gr-assets.com/books/1267721500m/3579.jpg\n900,917,7588,9780142437350.0,\"James Joyce, Seamus Deane\",A Portrait of the Artist as a Young Man,3.6,92569,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n903,921,5350,9780385339100.0,John Grisham,The Partner,3.89,86870,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n904,922,30,9780345538380.0,J.R.R. Tolkien,The Hobbit and The Lord of the Rings,4.59,90907,https://images.gr-assets.com/books/1346072396m/30.jpg\n909,927,1911,9780374292800.0,Thomas L. Friedman,The World Is Flat: A Brief History of the Twenty-first Century,3.66,78271,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n932,951,6854,9780312966100.0,Janet Evanovich,Three to Get Deadly,4.14,113400,https://images.gr-assets.com/books/1311727539m/6854.jpg\n941,960,3711,9780375703870.0,Zadie Smith,White Teeth,3.75,82474,https://images.gr-assets.com/books/1374739885m/3711.jpg\n949,969,8698,9780330491240.0,Douglas Adams,\"So Long, and Thanks for All the Fish\",4.08,93774,https://images.gr-assets.com/books/1369563116m/8698.jpg\n959,979,7214,9780785263710.0,Donald Miller,Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality,3.92,82090,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n965,985,4631,9780099285040.0,Ernest Hemingway,A Moveable Feast,4.04,69992,https://images.gr-assets.com/books/1427463201m/4631.jpg\n971,991,5351,9780385339090.0,John Grisham,The Street Lawyer,3.81,80577,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n976,996,365,9780671746730.0,Douglas Adams,Dirk Gently's Holistic Detective Agency,3.97,89569,https://images.gr-assets.com/books/1404697381m/365.jpg\n987,1007,5093,9781416521500.0,\"Stephen King, Darrel Anderson\",Song of Susannah,3.98,84957,https://images.gr-assets.com/books/1372296326m/5093.jpg\n991,1011,5348,9780440234750.0,John Grisham,The Testament,3.83,80377,https://images.gr-assets.com/books/1403174228m/5348.jpg\n996,1017,9419,9780440241900.0,Sophie Kinsella,Shopaholic Ties the Knot,3.77,88139,https://images.gr-assets.com/books/1371383294m/9419.jpg\n997,1018,5890,9780141439620.0,\"Wilkie Collins, Matthew Sweet\",The Woman in White,3.98,93134,https://images.gr-assets.com/books/1295661017m/5890.jpg\n1000,1021,6422,9780312966970.0,Janet Evanovich,Four to Score,4.17,106871,https://images.gr-assets.com/books/1311983211m/6422.jpg\n1006,1027,5797,9780141439840.0,\"William Makepeace Thackeray, John Carey\",Vanity Fair: A Novel Without a Hero,3.76,91323,https://images.gr-assets.com/books/1344386439m/5797.jpg\n1007,1028,4982,9781857988840.0,Kurt Vonnegut Jr.,The Sirens of Titan,4.16,72493,https://images.gr-assets.com/books/1419363185m/4982.jpg\n1011,1032,1633,9780142000280.0,David    Allen,Getting Things Done: How To Achieve Stress-free Productivity,3.98,75665,https://images.gr-assets.com/books/1312474060m/1633.jpg\n1026,1048,706,9780713998950.0,\"Jon Stewart, Ben Karlin, David Javerbaum, Rich Bloomquist, Steve Bodow, Tim Carvell, Eric Drysdale, J.R. Havlan, Scott Jacobson, Tom Johnson, Rob Kutner, Chris Regan, Jason Reich, Jason Ross, Stephen Colbert, Samantha Bee, Rob Corddry, Brendan Hay, Ed Helms\",America (The Book): A Citizen's Guide to Democracy Inaction,4.02,74511,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1035,1057,106,9780441172700.0,Frank Herbert,Dune Messiah,3.86,82580,https://images.gr-assets.com/books/1392528394m/106.jpg\n1044,1068,8650,9780752224410.0,Michael Crichton,The Lost World,3.72,83389,https://images.gr-assets.com/books/1386864575m/8650.jpg\n1067,1093,816,9780060512800.0,Neal Stephenson,Cryptonomicon,4.25,72683,https://images.gr-assets.com/books/1327931476m/816.jpg\n1070,1096,5204,9780452282830.0,Joyce Carol Oates,We Were the Mulvaneys,3.7,77251,https://images.gr-assets.com/books/1309282868m/5204.jpg\n1076,1102,6858,9780312976280.0,Janet Evanovich,Hot Six,4.18,99329,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1079,1105,1301,9780393324820.0,Michael   Lewis,Moneyball: The Art of Winning an Unfair Game,4.24,66406,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1085,1111,2052,9780394758280.0,Raymond Chandler,The Big Sleep,4.04,84489,https://images.gr-assets.com/books/1371584712m/2052.jpg\n1086,1112,4799,9780142000690.0,John Steinbeck,Cannery Row,4.02,81598,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1092,1118,6656,9780679433130.0,\"Dante Alighieri, Allen Mandelbaum, Eugenio Montale\",La Divina Commedia,4.06,74130,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1105,1131,6423,9780330371230.0,Janet Evanovich,High Five,4.17,92737,https://images.gr-assets.com/books/1270849101m/6423.jpg\n1128,1156,1428,9780061122100.0,\"Paulo Coelho, Alan R. Clarke\",Na margem do rio Piedra eu sentei e chorei,3.57,62106,https://images.gr-assets.com/books/1466877798m/1428.jpg\n1137,1165,3273,9780312304360.0,Alan Brennert,Moloka'i,4.15,75307,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1144,1173,771,9780375708110.0,Brian Greene,\"The Elegant Universe: Superstrings, Hidden Dimensions, and the Quest for the Ultimate Theory\",4.06,32626,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1146,1175,6424,9780312980150.0,Janet Evanovich,Seven Up,4.15,94506,https://images.gr-assets.com/books/1311720512m/6424.jpg\n1151,1180,6425,9780312983860.0,\"Janet Evanovich, Lorelei King\",Hard Eight,4.17,93057,https://images.gr-assets.com/books/1479699438m/6425.jpg\n1157,1186,4952,9781932416640.0,Dave Eggers,What Is the What: The Autobiography of Valentino Achak Deng,4.16,59333,https://images.gr-assets.com/books/1328837457m/4952.jpg\n1164,1193,5354,9780385339670.0,John Grisham,The Brethren,3.71,69351,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1180,1209,112,9780441104020.0,Frank Herbert,Children of Dune,3.9,74133,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1188,1217,9557,9780099448470.0,\"Haruki Murakami, Philip Gabriel\",スプートニクの恋人 [Supūtoniku no Koibito],3.82,62229,https://images.gr-assets.com/books/1486764070m/9557.jpg\n1190,1219,8600,9781592402040.0,Lynne Truss,\"Eats, Shoots and Leaves\",3.86,79117,https://images.gr-assets.com/books/1473392595m/8600.jpg\n1205,1234,9014,9780451196710.0,\"Richard Bachman, Stephen King\",The Long Walk,4.11,71775,https://images.gr-assets.com/books/1309212400m/9014.jpg\n1209,1238,5413,9780385516490.0,\"Stephen King, Jerry N. Uelsmann\",Salem's Lot The Illustrated Edition,4.25,72797,https://images.gr-assets.com/books/1320478491m/5413.jpg\n1216,1245,9566,9781842430220.0,Tom Robbins,Still Life with Woodpecker,4.04,56802,https://images.gr-assets.com/books/1308749778m/9566.jpg\n1218,1247,1110,9780385340540.0,John Grisham,The Broker,3.77,65428,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1227,1257,5191,9780316601960.0,Anita Shreve,The Pilot's Wife,3.5,71777,https://images.gr-assets.com/books/1435011220m/5191.jpg\n1233,1263,5171,9780345439110.0,Christina Schwarz,Drowning Ruth,3.73,67768,https://images.gr-assets.com/books/1390180160m/5171.jpg\n1236,1266,3586,9781593082050.0,\"Arthur Conan Doyle, Kyle Freeman\",\"Sherlock Holmes: The Complete Novels and Stories, Vol 2\",4.46,66857,https://images.gr-assets.com/books/1347663158m/3586.jpg\n1245,1275,6295,9780872863100.0,\"Allen Ginsberg, William Carlos Williams\",Howl and Other Poems,4.14,71968,https://images.gr-assets.com/books/1327870926m/6295.jpg\n1248,1278,360,9780345418780.0,Douglas Adams,Mostly Harmless,3.96,72426,https://images.gr-assets.com/books/1320725132m/360.jpg\n1264,1294,7779,9780679800030.0,Dr. Seuss,Horton Hears a Who!,4.16,80883,https://images.gr-assets.com/books/1327924655m/7779.jpg\n1296,1327,5157,9780385333140.0,Anna Quindlen,Black and Blue,3.86,67753,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1297,1328,5346,9780385339680.0,John Grisham,The Last Juror,3.85,63114,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1301,1332,599,9780743236010.0,Chuck Klosterman,\"Sex, Drugs, and Cocoa Puffs: A Low Culture Manifesto\",3.75,56548,https://images.gr-assets.com/books/1380742001m/599.jpg\n1316,1347,5356,9780385339650.0,John Grisham,The King of Torts,3.67,61835,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1323,1354,3464,9780446696520.0,Nicholas Sparks,True Believer,3.8,62840,https://images.gr-assets.com/books/1385739017m/3464.jpg\n1338,1369,7996,9781862301380.0,Brian Jacques,Redwall,4.11,73918,https://images.gr-assets.com/books/1327877368m/7996.jpg\n1343,1374,9417,9780440241910.0,Sophie Kinsella,Shopaholic and Sister,3.64,69007,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1348,1379,5084,9781400043460.0,\"Julia Child, Alex Prud'Homme\",My Life in France,4.16,63100,https://images.gr-assets.com/books/1395564378m/5084.jpg\n1356,1387,28,9780380727510.0,Bill Bryson,Notes from a Small Island,3.91,66947,https://images.gr-assets.com/books/1479653223m/28.jpg\n1361,1392,7714,9780486282220.0,George Bernard Shaw,Pygmalion,3.9,70079,https://images.gr-assets.com/books/1453757285m/7714.jpg\n1365,1396,3388,9780679763970.0,Louis de Bernières,Captain Corelli's Mandolin,3.95,57583,https://images.gr-assets.com/books/1479680795m/3388.jpg\n1367,1398,24,9780767903870.0,Bill Bryson,Down Under,4.05,58688,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1392,1424,1848,9780743246990.0,Jung Chang,Wild Swans: Three Daughters of China,4.23,60193,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1406,1438,8682,9781842430350.0,Tom Robbins,Jitterbug Perfume,4.24,48277,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1409,1441,1427,9780060832810.0,\"Paulo Coelho, Margaret Jull Costa\",O Zahir,3.56,50921,https://images.gr-assets.com/books/1493044059m/1427.jpg\n1422,1454,827,9780553380960.0,Neal Stephenson,The Diamond Age,4.19,61836,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1424,1456,7728,9781580493890.0,\"Sophocles, J.E. Thomas\",Ἀντιγόνη,3.6,67608,https://images.gr-assets.com/books/1486701308m/7728.jpg\n1446,1478,6192,9780143036370.0,J.M. Coetzee,Disgrace,3.83,50422,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1449,1481,6976,9780143036690.0,Sue Monk Kidd,The Mermaid Chair,3.1,62760,https://images.gr-assets.com/books/1388259308m/6976.jpg\n1464,1497,7675,9780099303750.0,Michael Crichton,Disclosure,3.76,57818,https://images.gr-assets.com/books/1398678136m/7675.jpg\n1466,1499,5246,9780142437800.0,Edith Wharton,Ethan Frome,3.35,72421,https://images.gr-assets.com/books/1389822254m/5246.jpg\n1467,1500,5205,9780385720110.0,\"Jane Hamilton, Frank  Muller, C.J. Critt\",A Map of the World,3.78,61347,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1469,1503,7442,9780553380640.0,Tom Wolfe,The Electric Kool-Aid Acid Test,3.92,54848,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1470,1504,7437,9780802140180.0,\"William S. Burroughs, James Grauerholz, Barry  Miles\",The Naked Lunch,3.46,55473,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1472,1506,5360,9780385337940.0,John Grisham,A Painted House,3.67,59974,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1491,1525,7667,9780099556310.0,Michael Crichton,Airframe,3.66,59229,https://images.gr-assets.com/books/1405420599m/7667.jpg\n1495,1529,122,9780345410050.0,Bryce Courtenay,The Power of One,4.34,57312,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1503,1537,6440,9780140436590.0,Walter Scott,Ivanhoe,3.75,65828,https://images.gr-assets.com/books/1405336818m/6440.jpg\n1523,1557,3507,9780312349490.0,Janet Evanovich,Twelve Sharp,4.14,74747,https://images.gr-assets.com/books/1316727699m/3507.jpg\n1541,1576,9534,9780812565960.0,Orson Scott Card,Shadow of the Hegemon,3.93,58991,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1543,1579,5196,9780440235590.0,Maeve Binchy,Tara Road,3.88,60154,https://images.gr-assets.com/books/1403194637m/5196.jpg\n1550,1587,6759,9780316921180.0,David Foster Wallace,Infinite Jest,4.31,46742,https://images.gr-assets.com/books/1446876799m/6759.jpg\n1554,1592,6693,9780375822070.0,\"Roald Dahl, Quentin Blake\",Fantastic Mr Fox,4.03,66015,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1565,1605,5187,9780385265710.0,Jane Hamilton,The Book of Ruth,3.82,56842,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1566,1606,9593,9780385333870.0,Kurt Vonnegut Jr.,Galápagos,3.87,48330,https://images.gr-assets.com/books/1355012643m/9593.jpg\n1567,1607,7661,9780060872980.0,Michael Crichton,Next,3.48,53487,https://images.gr-assets.com/books/1358010468m/7661.jpg\n1572,1612,1171,9780140143450.0,Michael   Lewis,Liar's Poker: Rising Through the Wreckage on Wall Street,4.16,22315,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1586,1626,9010,9780806527280.0,Tucker Max,I Hope They Serve Beer in Hell,3.51,46092,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1588,1629,9592,9780385334140.0,Kurt Vonnegut Jr.,Mother Night,4.21,52249,https://images.gr-assets.com/books/1344621657m/9592.jpg\n1597,1638,9300,9780099489990.0,Marian Keyes,Watermelon,3.79,55841,https://images.gr-assets.com/books/1345767584m/9300.jpg\n1601,1642,5454,9780385731060.0,Ann Brashares,The Second Summer of the Sisterhood,3.78,67357,https://images.gr-assets.com/books/1467700995m/5454.jpg\n1608,1649,357,9780671742520.0,Douglas Adams,The Long Dark Tea-Time of the Soul,4.05,59276,https://images.gr-assets.com/books/1388257271m/357.jpg\n1613,1655,5352,9780385339600.0,John Grisham,The Summons,3.68,53304,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1619,1661,2666,9780553381340.0,Tom Wolfe,The Bonfire of the Vanities,3.81,52062,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1628,1670,4866,9780671035980.0,Dale Carnegie,How to Stop Worrying and Start Living,4.08,46797,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1635,1678,6259,9780679776820.0,Sebastian Faulks,Birdsong,4.07,49930,https://images.gr-assets.com/books/1349952101m/6259.jpg\n1639,1682,5176,9780345443280.0,Sue Miller,While I Was Gone,3.67,52244,https://images.gr-assets.com/books/1495632082m/5176.jpg\n1659,1703,264,9780141439630.0,\"Henry James, Patricia Crick\",The Portrait of a Lady,3.76,55019,https://images.gr-assets.com/books/1502148606m/264.jpg\n1664,1709,4325,9780142401750.0,Sarah Dessen,Dreamland,3.91,64082,https://images.gr-assets.com/books/1385861832m/4325.jpg\n1672,1717,2794,9780060913080.0,Thomas Pynchon,The Crying of Lot 49,3.7,48692,https://images.gr-assets.com/books/1375727632m/2794.jpg\n1681,1726,5174,9780743466520.0,Ann-Marie MacDonald,Fall on Your Knees,3.95,50446,https://images.gr-assets.com/books/1481449709m/5174.jpg\n1686,1731,6420,9780312986350.0,Janet Evanovich,Visions of Sugar Plums,3.68,62726,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1690,1735,5509,9780671662350.0,\"Miep Gies, Alison Leslie Gold\",Anne Frank Remembered,4.26,50412,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1709,1754,4008,9780060527990.0,\"Paulo Coelho, Amanda Hopkinson, Nick Caistor\",O Demônio e a Srta. Prym,3.59,42286,https://images.gr-assets.com/books/1359082264m/4008.jpg\n1716,1762,9844,9780812972350.0,Curtis Sittenfeld,Prep,3.36,50598,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1726,1772,760,9780307278490.0,\"Gabriel García Márquez, Edith Grossman\",Memoria de mis putas tristes,3.59,33534,https://images.gr-assets.com/books/1327484658m/760.jpg\n1776,1824,9915,9780679781490.0,Bret Easton Ellis,Less Than Zero,3.58,45978,https://images.gr-assets.com/books/1443060100m/9915.jpg\n1781,1829,9301,9780060090390.0,Marian Keyes,Rachel's Holiday,3.93,48663,https://images.gr-assets.com/books/1407709261m/9301.jpg\n1790,1838,4143,9780316779420.0,David Sedaris,Barrel Fever: Stories and Essays,3.78,44679,https://images.gr-assets.com/books/1453273003m/4143.jpg\n1795,1843,3679,9780143037740.0,Zadie Smith,On Beauty,3.68,44317,https://images.gr-assets.com/books/1495961870m/3679.jpg\n1802,1851,4659,9780345469010.0,John Irving,A Widow for One Year,3.74,45051,https://images.gr-assets.com/books/1375776653m/4659.jpg\n1804,1853,6687,9780142404130.0,\"Roald Dahl, Quentin Blake\",\"Charlie and the Great Glass Elevator: The Further Adventures of Charlie Bucket and Willy Wonka, Chocolate-Maker Extraordinaire\",3.64,62359,https://images.gr-assets.com/books/1309211607m/6687.jpg\n1813,1863,3102,9780486424540.0,E.M. Forster,Howards End,3.95,52006,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1819,1870,8253,9780060885430.0,\"Laura Ingalls Wilder, Garth Williams\",Little Town on the Prairie,4.18,63615,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1830,1881,475,9780143036560.0,Jared Diamond,Collapse: How Societies Chose to Fail or Succeed,3.92,44238,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1836,1887,25,9780767903820.0,Bill Bryson,Notes from a Big Country,3.89,44610,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1844,1895,5345,9780385517230.0,John Grisham,The Innocent Man,3.79,43793,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1856,1908,249,9780802131780.0,Henry Miller,Tropic of Cancer,3.71,45518,https://images.gr-assets.com/books/1408753140m/249.jpg\n1861,1913,5306,9780142000700.0,John Steinbeck,Travels with Charley: In Search of America,4.07,45856,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1869,1921,5015,9781400076190.0,Ian McEwan,Saturday,3.61,45567,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1881,1933,7572,9781842430250.0,Tom Robbins,Even Cowgirls Get the Blues,3.74,40840,https://images.gr-assets.com/books/1336172455m/7572.jpg\n1882,1934,6138,9780375757850.0,\"Wilkie Collins, Carolyn G. Heilbrun\",The Moonstone,3.9,50322,https://images.gr-assets.com/books/1403192382m/6138.jpg\n1887,1939,6531,9780751530480.0,Patricia Cornwell,Point of Origin,4.02,48683,https://images.gr-assets.com/books/1399629118m/6531.jpg\n1905,1959,5527,9780156004800.0,Robert Penn Warren,All the King’s Men,4.08,42821,https://images.gr-assets.com/books/1342193852m/5527.jpg\n1906,1960,5452,9780553375930.0,Ann Brashares,Girls in Pants: The Third Summer of the Sisterhood,3.82,56485,https://images.gr-assets.com/books/1320473346m/5452.jpg\n1926,1980,6539,9780425201440.0,Patricia Cornwell,The Body Farm,4.04,51115,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1938,1993,5190,9780345435160.0,Elizabeth Berg,Open House,3.68,48639,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1948,2003,9590,9780385333470.0,Kurt Vonnegut Jr.,\"God Bless You, Mr Rosewater or Pearls before Swine\",3.94,40353,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1983,2040,2152,9780452286540.0,Karen Joy Fowler,The Jane Austen Book Club,3.07,53128,https://images.gr-assets.com/books/1309282966m/2152.jpg\n1988,2046,1375,9780147712550.0,\"Homer, Robert Fagles, Bernard Knox\",Ἰλιάς ; Ὀδύσσεια,4.03,47825,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n1990,2048,6882,9780061120660.0,Henri Charrière,Papillon,4.23,39073,https://images.gr-assets.com/books/1327865561m/6882.jpg\n2012,2071,4985,9780385333500.0,Kurt Vonnegut Jr.,Welcome to the Monkey House,4.13,40071,https://images.gr-assets.com/books/1381107552m/4985.jpg\n2014,2073,2279,9780671869200.0,David McCullough,Truman,4.15,53088,https://images.gr-assets.com/books/1364681969m/2279.jpg\n2016,2075,7788,9780807218730.0,\"Dr. Seuss, Various\",The Cat in the Hat and Other Dr. Seuss Favorites,4.41,46279,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2028,2089,6150,9780743261950.0,Alan Paton,\"Cry, The Beloved Country\",3.87,47389,https://images.gr-assets.com/books/1344182368m/6150.jpg\n2030,2092,4268,9783426615360.0,Nick Hornby,How to Be Good,3.18,37497,https://images.gr-assets.com/books/1327935893m/4268.jpg\n2053,2116,5038,9780765340740.0,Terry Goodkind,The Pillars of Creation,3.67,43424,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2054,2117,4122,9780060566100.0,\"James C. Collins, Jerry I. Porras\",Built to Last: Successful Habits of Visionary Companies,3.98,39618,https://images.gr-assets.com/books/1412047084m/4122.jpg\n2073,2137,5517,9780375508330.0,Lorraine Hansberry,A Raisin in the Sun,3.72,44237,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2082,2146,4912,9780006551810.0,Frank McCourt,Tis: A Memoir,3.66,40726,https://images.gr-assets.com/books/1375947803m/4912.jpg\n2097,2161,5453,9780385729370.0,Ann Brashares,Forever in Blue: The Fourth Summer of the Sisterhood,3.8,56113,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2100,2165,9370,9781842430350.0,Tom Robbins,Skinny Legs and All,4.03,32991,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2104,2170,27,9780380713810.0,Bill Bryson,Neither Here Nor There: Travels in Europe,3.88,42170,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2120,2186,4806,9780802714630.0,\"Dava Sobel, Neil Armstrong\",Longitude,3.95,38151,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2142,2209,998,9780671015210.0,\"Thomas J. Stanley, William D. Danko\",The Millionaire Next Door: The Surprising Secrets of America's Wealthy,4.0,43937,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2145,2212,26,9780060920080.0,Bill Bryson,The Lost Continent: Travels in Small-Town America,3.83,40254,https://images.gr-assets.com/books/1404042682m/26.jpg\n2148,2215,8248,9780060885410.0,\"Laura Ingalls Wilder, Garth Williams\",By the Shores of Silver Lake,4.16,51640,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2157,2227,431,9780143039840.0,\"Paul Auster, Art Spiegelman\",The New York Trilogy,3.92,34730,https://images.gr-assets.com/books/1386924429m/431.jpg\n2159,2229,5114,9780316766940.0,J.D. Salinger,\"Raise High the Roof Beam, Carpenters / Seymour: An Introduction\",4.11,36751,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2160,2230,7455,9780446617680.0,Candace Bushnell,Sex and the City,3.37,39710,https://images.gr-assets.com/books/1344270731m/7455.jpg\n2183,2254,1715,9780140447900.0,\"Ovid, David Raeburn, Denis Feeney\",Metamorphoses,4.03,42590,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2195,2266,6520,9781594481960.0,James Frey,My Friend Leonard,3.83,34996,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2248,2323,2255,9781932073200.0,Dan Millman,Way of the Peaceful Warrior: A Book That Changes Lives,4.13,34136,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2258,2335,9517,9780375714660.0,\"Marjane Satrapi, Anjali Singh\",Persepolis 2,4.23,45718,https://images.gr-assets.com/books/1327865598m/9517.jpg\n2280,2357,1303,9780140280200.0,\"Robert Greene, Joost Elffers\",The 48 Laws of Power,4.18,37613,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2294,2371,2442,9780061020610.0,Terry Pratchett,Witches Abroad,4.2,47875,https://images.gr-assets.com/books/1403326937m/2442.jpg\n2296,2373,117,9780441328000.0,Frank Herbert,Heretics of Dune,3.83,40415,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2303,2380,2715,9780142001620.0,Mark Kurlansky,Salt: A World History,3.73,39402,https://images.gr-assets.com/books/1414608893m/2715.jpg\n2310,2388,3758,9780142002020.0,Ian Fleming,Casino Royale,3.73,39150,https://images.gr-assets.com/books/1497801490m/3758.jpg\n2324,2403,4004,9780722534880.0,\"Paulo Coelho, Alan R. Clarke\",O Diário de um Mago,3.64,28283,https://images.gr-assets.com/books/1307909268m/4004.jpg\n2349,2428,6614,9780786887070.0,Candace Bushnell,Lipstick Jungle,3.39,35792,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2355,2434,9597,9780385333790.0,Kurt Vonnegut Jr.,Player Piano,3.85,34362,https://images.gr-assets.com/books/1488041609m/9597.jpg\n2358,2438,8282,9780060885430.0,\"Laura Ingalls Wilder, Garth Williams\",\"The Long Winter (Little House, #6)\",4.16,54443,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2365,2446,8647,9781841492060.0,Orson Scott Card,Shadow of the Giant,3.98,37479,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2374,2455,5357,9780099481680.0,John Grisham,Skipping Christmas,3.47,39486,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2378,2459,5197,9780375702710.0,Ernest J. Gaines,A Lesson Before Dying,3.93,40651,https://images.gr-assets.com/books/1405866945m/5197.jpg\n2391,2473,7668,9780606298230.0,Michael Crichton,Rising Sun,3.61,38179,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2398,2480,8732,9780141962820.0,John Steinbeck,The Red Pony,3.42,37535,https://images.gr-assets.com/books/1391231816m/8732.jpg\n2400,2482,5159,9780425169700.0,Alice Hoffman,Here on Earth,3.68,38954,https://images.gr-assets.com/books/1388299278m/5159.jpg\n2407,2489,9303,9780060090370.0,Marian Keyes,Lucy Sullivan is Getting Married,3.74,38473,https://images.gr-assets.com/books/1407707569m/9303.jpg\n2411,2494,4135,9780446578840.0,Amy Sedaris,I Like You: Hospitality Under the Influence,3.87,34212,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2416,2499,6667,9780141311400.0,\"Roald Dahl, Quentin Blake\",Boy: Tales of Childhood,4.09,38240,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2436,2520,5167,9780446678450.0,Lalita Tademy,Cane River,4.04,38013,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2442,2526,2265,9780425179610.0,\"Lance Armstrong, Sally Jenkins\",It's Not About the Bike: My Journey Back to Life,3.72,31963,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2462,2547,5720,9780425170340.0,Tom Clancy,Rainbow Six,4.07,35278,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2473,2558,4898,9781591396190.0,\"W. Chan Kim, Renée Mauborgne\",Blue Ocean Strategy: How to Create Uncontested Market Space and Make Competition Irrelevant,3.86,30665,https://images.gr-assets.com/books/1416445924m/4898.jpg\n2479,2565,6709,9781577311960.0,Eckhart Tolle,\"Practicing the Power of Now: Essential Teachings, Meditations, and Exercises from The Power of Now\",4.25,29256,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2483,2569,9809,9780156453810.0,\"Italo Calvino, William Weaver\",Le città invisibili,4.19,32253,https://images.gr-assets.com/books/1468623303m/9809.jpg\n2507,2594,3873,9780517223120.0,Karen Armstrong,\"A History of God: The 4,000-Year Quest of Judaism, Christianity, and Islam\",3.85,32506,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2509,2596,5932,9780143039970.0,\"Pablo Neruda, W.S. Merwin, Cristina García\",Veinte poemas de amor y una canción desesperada,4.33,31606,https://images.gr-assets.com/books/1447622711m/5932.jpg\n2517,2604,6588,9780446610220.0,James Patterson,The Big Bad Wolf,3.97,37060,https://images.gr-assets.com/books/1388328154m/6588.jpg\n2521,2608,6690,9780375814260.0,\"Roald Dahl, Quentin Blake\",Danny: The Champion of the World,4.07,39802,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2522,2610,1192,9781400052580.0,Giada De Laurentiis,Everyday Italian: 125 Simple and Delicious Recipes,3.97,32751,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2523,2611,6537,9780425204700.0,Patricia Cornwell,From Potter's Field,4.02,41377,https://images.gr-assets.com/books/1309209800m/6537.jpg\n2533,2623,8962,9780316905720.0,Darren Shan,\"Cirque Du Freak (Cirque du Freak, #1) \",4.07,38753,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2542,2632,4979,9780812977360.0,Kurt Vonnegut Jr.,A Man Without a Country,4.07,29859,https://images.gr-assets.com/books/1330997432m/4979.jpg\n2572,2667,9912,9780679781490.0,Bret Easton Ellis,The Rules of Attraction,3.71,29456,https://images.gr-assets.com/books/1468426907m/9912.jpg\n2583,2678,105,9780441102680.0,Frank Herbert,Chapterhouse: Dune,3.89,34822,https://images.gr-assets.com/books/1260954505m/105.jpg\n2585,2680,3476,9780142000200.0,Gwyn Hyman Rubio,Icy Sparks,3.68,34128,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2609,2705,5344,9780321107210.0,Charles Dickens,Hard Times: For These Times,3.5,34675,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2629,2725,1319,9780446691440.0,\"Steven Pressfield, Robert McKee\",The War of Art: Break Through the Blocks and Win Your Inner Creative Battles,4.07,31399,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2653,2749,3110,9780743260050.0,Sarah Vowell,Assassination Vacation,3.98,32176,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2658,2754,4005,9780722536540.0,Paulo Coelho,O Monte Cinco,3.61,26060,https://images.gr-assets.com/books/1358268472m/4005.jpg\n2669,2765,3483,9780670037770.0,Marisha Pessl,Special Topics in Calamity Physics,3.7,29369,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2691,2787,9302,9780060731490.0,Marian Keyes,The Other Side of the Story,3.77,32185,https://images.gr-assets.com/books/1407107814m/9302.jpg\n2707,2804,8953,9780439286060.0,Rodman Philbrick,Freak the Mighty,3.98,34587,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2713,2810,9838,9780316159420.0,\"Åsne Seierstad, Ingrid Christopherson\",Bokhandleren i Kabul,3.76,30531,https://images.gr-assets.com/books/1388611939m/9838.jpg\n2721,2818,4983,9780791071690.0,\"Harold Bloom, Terry Southern, David H. Goldsmith, James Lundquist, Lawrence R. Broer, Peter J. Reed, Loree Rackstraw, William S. Doxey, Jerome Klinkowitz, Richard Giannone, John L. Simons, Leonard Mustazza, Zoltan Ab di-Nagy, Peter Freese, Wendy B. Faris\",Kurt Vonnegut's Cat Cradle,4.35,27519,https://images.gr-assets.com/books/1297118346m/4983.jpg\n2731,2828,4538,9780689862210.0,E.L. Konigsburg,The View from Saturday,3.74,36803,https://images.gr-assets.com/books/1476944774m/4538.jpg\n2747,2844,8155,9780312353260.0,Barbara Taylor Bradford,A Woman of Substance,4.16,31309,https://images.gr-assets.com/books/1330029941m/8155.jpg\n2757,2854,9298,9780060086240.0,Marian Keyes,Last Chance Saloon,3.78,32255,https://images.gr-assets.com/books/1407708818m/9298.jpg\n2760,2857,7723,9781593080300.0,\"Franz Kafka, Jason Baker, Donna Freed\",Die Verwandlung und andere Erzählungen,4.01,29817,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2762,2859,3049,9780451528190.0,\"Unknown, Burton Raffel, Neil D. Isaacs\",Gawayn and þe Grene Knyȝt,3.68,36477,https://images.gr-assets.com/books/1309282183m/3049.jpg\n2763,2860,4921,9780140621330.0,Jerome K. Jerome,Three Men in a Boat (To Say Nothing of the Dog),3.9,30250,https://images.gr-assets.com/books/1392791656m/4921.jpg\n2765,2862,6419,9780312306340.0,Janet Evanovich,Plum Lovin',3.7,43643,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2767,2864,9570,9781842431290.0,Tom Robbins,Another Roadside Attraction,3.97,25777,https://images.gr-assets.com/books/1327866271m/9570.jpg\n2782,2880,2517,9780375706850.0,\"Orhan Pamuk, Erdağ M. Göknar\",Benim Adım Kırmızı,3.83,27314,https://images.gr-assets.com/books/1374015288m/2517.jpg\n2801,2899,9595,9780385334240.0,Kurt Vonnegut Jr.,Slapstick,3.87,27371,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2804,2902,7493,9780375705240.0,Joseph J. Ellis,Founding Brothers: The Revolutionary Generation,3.92,31610,https://images.gr-assets.com/books/1388791106m/7493.jpg\n2816,2915,3467,9780375828260.0,Jeanne DuPrau,The People of Sparks,3.65,40859,https://images.gr-assets.com/books/1397931991m/3467.jpg\n2817,2916,5954,9780374506840.0,\"Hermann Hesse, Ursule Molinaro\",Narziß und Goldmund,4.19,25544,https://images.gr-assets.com/books/1374680750m/5954.jpg\n2824,2923,4954,9781400033550.0,Dave Eggers,You Shall Know Our Velocity!,3.62,23985,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2836,2936,3698,9780143039020.0,\"Graham Greene, Robert  Stone\",The Quiet American,3.96,30395,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2838,2938,6541,9780425213380.0,Patricia Cornwell,Cause of Death,3.93,35742,https://images.gr-assets.com/books/1327632787m/6541.jpg\n2848,2948,3465,9780446694860.0,\"Nicholas Sparks, Micah Sparks\",Three Weeks with My Brother,4.01,32208,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2852,2952,2159,9780452287080.0,John Perkins,Confessions of an Economic Hit Man,3.83,19726,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2855,2955,4625,9780684843320.0,Ernest Hemingway,The Complete Short Stories of Ernest Hemingway,4.28,28129,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2859,2960,9594,9780099267550.0,Kurt Vonnegut Jr.,Timequake,3.71,23562,https://images.gr-assets.com/books/1405784951m/9594.jpg\n2866,2967,9943,9780842300520.0,Francine Rivers,The Atonement Child,4.26,29250,https://images.gr-assets.com/books/1406513472m/9943.jpg\n2867,2968,6862,9780385494240.0,Ian McEwan,Amsterdam,3.41,30469,https://images.gr-assets.com/books/1403191209m/6862.jpg\n2919,3022,7039,9780349116660.0,Alexander McCall Smith,Tears of the Giraffe,3.95,35205,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2922,3026,9601,9780385333510.0,Kurt Vonnegut Jr.,Bluebeard,4.02,27011,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2948,3053,119,9780618212900.0,Gary Russell,The Lord of the Rings: The Art of The Fellowship of the Ring,4.59,24340,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2952,3057,8252,9780060885380.0,\"Laura Ingalls Wilder, Garth Williams\",Farmer Boy,4.05,39863,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2958,3063,4035,9780446677130.0,Scott Turow,The Burden of Proof,4.05,29103,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2963,3069,3977,9780553572940.0,Dan Simmons,Endymion,4.14,30664,https://images.gr-assets.com/books/1329611385m/3977.jpg\n2970,3076,4708,9780743451500.0,F. Scott Fitzgerald,The Beautiful and Damned,3.75,26597,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2986,3094,5347,9780099468200.0,John Grisham,Bleachers,3.46,27719,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n2996,3104,5181,9780671042580.0,Bret Lott,Jewel (Oprah's Book Club),3.64,31851,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3019,3127,4477,9780312421700.0,\"Atul Gawande, Susanne Kuhlmann-Krieg\",Complications: A Surgeon's Notes on an Imperfect Science,4.23,26267,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3025,3133,823,9780060593090.0,Neal Stephenson,Quicksilver,3.92,27675,https://images.gr-assets.com/books/1377095669m/823.jpg\n3031,3139,7805,9780141185260.0,Vladimir Nabokov,Pale Fire,4.19,26377,https://images.gr-assets.com/books/1388155863m/7805.jpg\n3033,3141,5338,9780140439050.0,\"Charles Dickens, Michael Slater\",A Christmas Carol and Other Christmas Writings,4.13,28675,https://images.gr-assets.com/books/1388952779m/5338.jpg\n3046,3154,6751,9780316156110.0,David Foster Wallace,Consider the Lobster,4.25,26551,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3056,3165,6174,9780684826810.0,\"Primo Levi, Stuart J. Woolf, Philip Roth\",Se questo è un uomo,4.28,25625,https://images.gr-assets.com/books/1414374949m/6174.jpg\n3090,3200,4796,9780143039490.0,\"John Steinbeck, Susan Shillinglaw\",The Winter of our Discontent,3.99,28050,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3105,3215,1362,9780140449080.0,\"Herodotus, Aubrey de Sélincourt, John M. Marincola\",Ἰστορίαι,3.97,28870,https://images.gr-assets.com/books/1399225547m/1362.jpg\n3112,3223,6870,9780099481250.0,Ian McEwan,Enduring Love,3.62,26390,https://images.gr-assets.com/books/1313656531m/6870.jpg\n3126,3238,8680,9780553379330.0,Tom Robbins,Fierce Invalids Home From Hot Climates,4.01,22847,https://images.gr-assets.com/books/1327866336m/8680.jpg\n3141,3253,6538,9780425192730.0,Patricia Cornwell,Portrait of a Killer: Jack The Ripper - Case Closed,3.44,28506,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3159,3271,5128,9780060595180.0,Aldous Huxley,The Doors of Perception & Heaven and Hell,3.96,24213,https://images.gr-assets.com/books/1375947566m/5128.jpg\n3163,3275,5180,9780425162450.0,Sheri Reynolds,The Rapture of Canaan,3.8,30267,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3170,3282,4264,9781573226880.0,Nick Hornby,Fever Pitch,3.72,25374,https://images.gr-assets.com/books/1426114203m/4264.jpg\n3193,3305,3061,9780395530080.0,\"Kimon Nicolaides, Mamie Harmon\",The Natural Way to Draw,3.88,30880,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3198,3310,67,9780061159180.0,Edward P. Jones,The Known World,3.82,26550,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3231,3346,9555,9780679750540.0,\"Haruki Murakami, Jay Rubin, Alfred Birnbaum\",象の消滅 [Zō no shōmetsu],3.88,23950,https://images.gr-assets.com/books/1391384346m/9555.jpg\n3248,3364,703,9781400079490.0,Philip Roth,The Plot Against America,3.71,26262,https://images.gr-assets.com/books/1327711853m/703.jpg\n3258,3374,4820,9780670037600.0,Nathaniel Philbrick,\"Mayflower: A Story of Courage, Community, and War\",3.86,25752,https://images.gr-assets.com/books/1474488130m/4820.jpg\n3260,3376,6462,9781400032530.0,Joseph J. Ellis,His Excellency: George Washington,3.9,27178,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3264,3381,8965,9780316905720.0,Darren Shan,\"The Vampire's Assistant (Cirque du Freak, #2) \",4.12,29943,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3266,3383,8765,9780307264560.0,Nora Ephron,I Feel Bad About My Neck: And Other Thoughts on Being a Woman,3.65,29749,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3268,3385,415,9780143039940.0,Thomas Pynchon,Gravity's Rainbow,4.03,24990,https://images.gr-assets.com/books/1414969925m/415.jpg\n3275,3392,3686,9780060572150.0,Ann Patchett,Truth & Beauty: A Friendship,3.94,26344,https://images.gr-assets.com/books/1410140355m/3686.jpg\n3283,3401,597,9780743264460.0,Chuck Klosterman,Killing Yourself to Live: 85% of a True Story,3.85,23015,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3285,3403,9589,9780425161300.0,Kurt Vonnegut Jr.,Hocus Pocus,3.81,23046,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3330,3449,6748,9780316925280.0,David Foster Wallace,A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments,4.28,23272,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3341,3460,2615,9780060522000.0,Clayton M. Christensen,The Innovator's Dilemma: The Revolutionary Book that Will Change the Way You Do Business (Collins Business Essentials),4.0,21997,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3367,3490,9820,9780375759310.0,Wallace Stegner,Crossing to Safety,4.16,25578,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3371,3494,2095,9780553802020.0,Stephen Hawking,The Universe in a Nutshell,4.13,23596,https://images.gr-assets.com/books/1159814395m/2095.jpg\n3374,3497,5296,9780486414230.0,Oscar Wilde,An Ideal Husband,4.03,29952,https://images.gr-assets.com/books/1417045098m/5296.jpg\n3422,3549,10,9780439827610.0,J.K. Rowling,\"Harry Potter Collection (Harry Potter, #1-6)\",4.73,24618,https://images.gr-assets.com/books/1328867351m/10.jpg\n3430,3557,7797,9780007169980.0,\"Theo LeSieg, Roy McKie\",Ten Apples Up on Top,4.11,28034,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3432,3559,4645,9780684862220.0,Ernest Hemingway,The Snows of Kilimanjaro and Other Stories,3.88,21365,https://images.gr-assets.com/books/1400889884m/4645.jpg\n3436,3563,9475,9780439474290.0,Jenny Nimmo,Midnight for Charlie Bone,3.79,32917,https://images.gr-assets.com/books/1328868798m/9475.jpg\n3442,3569,9827,9780385333760.0,James Clavell,King Rat,4.1,25071,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3452,3579,5182,9780140244820.0,Mary McGarry Morris,Songs in Ordinary Time,3.68,27034,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3457,3584,4701,9780385520520.0,Mark Haddon,A Spot of Bother,3.46,23676,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3462,3589,7673,9780060891560.0,Michael Crichton,Eaters of the Dead,3.64,24885,https://images.gr-assets.com/books/1388369310m/7673.jpg\n3543,3675,9282,9780440235160.0,Nicholas Evans,The Smoke Jumper,4.05,25668,https://images.gr-assets.com/books/1403193693m/9282.jpg\n3559,3691,9531,9780786837880.0,\"Dave Barry, Ridley Pearson, Greg Call\",Peter and the Shadow Thieves,4.15,29555,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3567,3699,4692,9780751503890.0,Noah Gordon,The Physician,4.35,19310,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3610,3743,4909,9780743243780.0,Frank McCourt,Teacher Man,3.73,23736,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3634,3771,6697,9780060759960.0,Rebecca Wells,Little Altars Everywhere,3.55,25045,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3641,3778,9646,9780156421170.0,\"George Orwell, Lionel Trilling\",Homage to Catalonia,4.14,22227,https://images.gr-assets.com/books/1394868278m/9646.jpg\n3646,3783,6613,9780802138260.0,Candace Bushnell,Four Blondes,2.8,22278,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3649,3787,3562,9780553233700.0,L.M. Montgomery,Emily of New Moon,4.09,33317,https://images.gr-assets.com/books/1327883976m/3562.jpg\n3661,3799,7035,9781400031370.0,Alexander McCall Smith,Morality for Beautiful Girls,3.97,29574,https://images.gr-assets.com/books/1379303019m/7035.jpg\n3668,3807,3895,9780609602200.0,\"Ina Garten, Melanie Acevedo\",The Barefoot Contessa Cookbook,4.21,22497,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3674,3814,5508,9780140369270.0,\"Ruud van der Rol, Rian Verhoeven, Anna Quindlen, Anne Frank, Tony Langham, Plym Peters\",Anne Frank: Beyond the Diary - A Photographic Remembrance,4.25,22725,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3688,3828,9503,9780345464020.0,Amy Tan,Saving Fish from Drowning: A Novel,3.41,24579,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3708,3850,29,9780380715440.0,Bill Bryson,The Mother Tongue: English and How It Got That Way,3.95,24133,https://images.gr-assets.com/books/1388209925m/29.jpg\n3722,3865,5575,9780446609400.0,James Patterson,Virgin,3.87,25426,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3730,3874,5695,9780679734510.0,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",Бесы,4.26,20615,https://images.gr-assets.com/books/1386958613m/5695.jpg\n3741,3885,2094,9780553804360.0,\"Stephen Hawking, Leonard Mlodinow\",A Briefer History of Time,4.19,19838,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3751,3896,4656,9780345463160.0,John Irving,The Fourth Hand,3.3,23277,https://images.gr-assets.com/books/1375776688m/4656.jpg\n3753,3898,8957,9780316905730.0,Darren Shan,\"Tunnels of Blood (Cirque du Freak, #3) \",4.14,26287,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3757,3902,3882,9781400082540.0,Rachael Ray,Rachael Ray 365: No Repeats--A Year of Deliciously Different Dinners (A 30-Minute Meal Cookbook),3.68,21573,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3769,3915,1519,9780140443330.0,\"Aeschylus, Robert Fagles, William Bedell Stanford\",Ὀρέστεια,3.99,24588,https://images.gr-assets.com/books/1391822282m/1519.jpg\n3780,3926,1426,9780060527980.0,Paulo Coelho,Manual do guerreiro da luz,3.69,19063,https://images.gr-assets.com/books/1359135200m/1426.jpg\n3803,3952,6572,9780440182930.0,John Saul,Suffer the Children,3.9,24533,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3842,3992,36,9780618391000.0,\"Chris   Smith, Christopher Lee, Richard Taylor\",The Lord of the Rings: Weapons and Warfare,4.53,18788,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3845,3995,7194,9780156032830.0,\"Arturo Pérez-Reverte, Sonia Soto\",El club Dumas,3.82,24090,https://images.gr-assets.com/books/1327896341m/7194.jpg\n3849,3999,3378,9780349108390.0,Douglas Coupland,Generation X: Tales for an Accelerated Culture,3.73,20030,https://images.gr-assets.com/books/1485623844m/3378.jpg\n3862,4013,7036,9780349117040.0,Alexander McCall Smith,The Kalahari Typing School for Men,3.99,26837,https://images.gr-assets.com/books/1380393680m/7036.jpg\n3870,4021,4600,9780689861130.0,Sandra Boynton,\"Moo, Baa, La La La!\",4.19,26065,https://images.gr-assets.com/books/1451996462m/4600.jpg\n3877,4028,880,9780812974610.0,Robert   Harris,Pompeii,3.79,22734,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3893,4044,5693,9780553381010.0,\"Anton Chekhov, Richard Pevear, Larissa Volokhonsky\",Рассказы и Повести,4.36,23027,https://images.gr-assets.com/books/1491936310m/5693.jpg\n3906,4057,668,9780451187840.0,\"Ayn Rand, Leonard Peikoff\",We the Living,3.89,20994,https://images.gr-assets.com/books/1306188481m/668.jpg\n3922,4074,9567,9781842430360.0,Tom Robbins,Half Asleep in Frog Pajamas,3.73,17053,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3961,4113,9784,9780486424580.0,D.H. Lawrence,Women in Love,3.66,22372,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3969,4123,3717,9780385722220.0,Chuck Palahniuk,Stranger Than Fiction: True Stories,3.56,18091,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3985,4141,9833,9781400044610.0,\"Haruki Murakami, Philip Gabriel, Jay Rubin\",\" めくらやなぎと、眠る女 [Mekurayanagi to, nemuru onna]\",3.83,19216,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n3989,4145,9355,9780345479720.0,John Irving,Until I Find You,3.61,20784,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4033,4190,5787,9780142437890.0,\"Jorge Luis Borges, Andrew Hurley\",El Aleph,4.39,16590,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4034,4192,2054,9780394757680.0,Raymond Chandler,The Long Goodbye,4.23,22503,https://images.gr-assets.com/books/1388225584m/2054.jpg\n4035,4193,2050,9780394758280.0,Raymond Chandler,\"Farewell, My Lovely\",4.17,21864,https://images.gr-assets.com/books/1465778099m/2050.jpg\n4056,4216,4835,9780670886590.0,\"Salman Rushdie, Paul Birkbeck\",Haroun and the Sea of Stories,4.01,19221,https://images.gr-assets.com/books/1419913148m/4835.jpg\n4091,4251,2748,9780060987050.0,Douglas Coupland,Microserfs,3.88,19516,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4095,4255,8960,9780316905750.0,Darren Shan,\"Vampire Mountain (Cirque du Freak, #4) \",4.16,23847,https://images.gr-assets.com/books/1255813254m/8960.jpg\n4098,4258,9598,9780385334170.0,Kurt Vonnegut Jr.,Deadeye Dick,3.8,19212,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4116,4277,1591,9780872206040.0,\"Aristophanes, Sarah Ruden\",Λυσιστράτη,3.84,25758,https://images.gr-assets.com/books/1335892524m/1591.jpg\n4135,4297,3764,9780142002070.0,Ian Fleming,\"From Russia, with Love\",3.88,19802,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4151,4315,7983,9780142501530.0,\"Brian Jacques, Gary Chalk\",Salamandastron,4.05,23723,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4159,4323,3832,9780743219570.0,P.D. James,Cover Her Face,3.94,22941,https://images.gr-assets.com/books/1298412294m/3832.jpg\n4173,4338,275,9780375700520.0,\"Marguerite Duras, Barbara Bray, Maxine Hong Kingston\",L'Amant,3.76,18947,https://images.gr-assets.com/books/1423329337m/275.jpg\n4175,4340,3690,9780142437310.0,\"Graham Greene, John Updike\",The Power and the Glory,3.99,21315,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4183,4348,3648,9780307264190.0,Claire Messud,The Emperor's Children,2.93,15362,https://images.gr-assets.com/books/1320497348m/3648.jpg\n4230,4400,5186,9780375705040.0,Edwidge Danticat,\"Breath, Eyes, Memory \",3.86,22123,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4243,4414,6628,9780143037230.0,Jasper Fforde,The Big Over Easy,3.92,24870,https://images.gr-assets.com/books/1432412758m/6628.jpg\n4248,4419,1624,9780865471180.0,Beryl Markham,West with the Night,4.18,19738,https://images.gr-assets.com/books/1368204688m/1624.jpg\n4259,4430,8676,9780684845780.0,\"Anthony Robbins, Kenneth H. Blanchard, Jason Winters\",Unlimited Power : The New Science Of Personal Achievement,4.21,18588,https://images.gr-assets.com/books/1419212761m/8676.jpg\n4285,4456,1305,9780553383680.0,Steven Pressfield,Gates of Fire: An Epic Novel of the Battle of Thermopylae,4.4,17952,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4296,4468,7186,9780192836380.0,\"Alexandre Dumas fils, David Coward\",La Dame aux camélias,3.97,13562,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4332,4508,9799,9780571219350.0,Jonathan Lethem,The Fortress of Solitude,3.87,15100,https://images.gr-assets.com/books/1418677318m/9799.jpg\n4340,4516,6530,9780425204210.0,Patricia Cornwell,Trace,3.76,23287,https://images.gr-assets.com/books/1310723816m/6530.jpg\n4365,4543,6819,9780375724500.0,David Mitchell,Ghostwritten,4.06,17900,https://images.gr-assets.com/books/1320415093m/6819.jpg\n4375,4555,2873,9780452284450.0,Tracy Chevalier,The Virgin Blue,3.65,23484,https://images.gr-assets.com/books/1395581883m/2873.jpg\n4402,4583,9569,9781842431020.0,Tom Robbins,Villa Incognito,3.65,14206,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4414,4595,3974,9780316017440.0,Dan Simmons,The Terror,4.0,21225,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4433,4615,900,9780060554740.0,Neil Strauss,The Game,3.73,16698,https://images.gr-assets.com/books/1410129471m/900.jpg\n4441,4623,8967,9780316000960.0,Darren Shan,\"Trials of Death (Cirque du Freak, #5) \",4.25,22157,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4458,4643,903,9780808553040.0,Zilpha Keatley Snyder,The Egypt Game,3.81,26657,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4494,4679,7329,9780261102160.0,\"J.R.R. Tolkien, Christopher Tolkien\",Unfinished Tales of Númenor and Middle-Earth,3.93,18402,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4501,4686,3692,9780099478420.0,Graham Greene,The Heart of the Matter,3.98,19149,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4521,4706,6528,9780425210280.0,Patricia Cornwell,Predator,3.67,21668,https://images.gr-assets.com/books/1310552145m/6528.jpg\n4527,4712,1849,9780446579670.0,Nelson DeMille,Wild Fire,3.99,18529,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4535,4721,4516,9788423648990.0,Carlos Ruiz Zafón,Marina,3.99,18260,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4539,4725,4591,9780060894080.0,Matt Ridley,Genome: The Autobiography of a Species in 23 Chapters,4.02,17684,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4547,4733,9530,9780965925080.0,Robert Kurson,Shadow Divers: The True Adventure of Two Americans Who Risked Everything to Solve One of the Last Mysteries of World War II,4.26,16917,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4555,4741,3304,9780060535030.0,\"Isabel Allende, Margaret Sayers Peden\",La ciudad de las bestias,3.69,15497,https://images.gr-assets.com/books/1331488122m/3304.jpg\n4578,4766,359,9780345455290.0,Douglas Adams,The Salmon of Doubt: Hitchhiking the Galaxy One Last Time,3.92,20177,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4582,4770,6753,9780349111890.0,David Foster Wallace,Brief Interviews with Hideous Men,3.88,15555,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4619,4807,647,9780312421430.0,Naomi Klein,No Logo,3.86,18792,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4621,4809,7748,9780446698220.0,Hunter S. Thompson,Fear and Loathing on the Campaign Trail '72,4.1,15306,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4627,4815,4031,9780375727280.0,Bret Easton Ellis,Lunar Park,3.6,16431,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4643,4833,424,9780374521720.0,Joan Didion,Slouching Towards Bethlehem: Essays,4.24,17787,https://images.gr-assets.com/books/1327952074m/424.jpg\n4647,4837,446,9780312426230.0,Paul Auster,The Brooklyn Follies,3.81,15635,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4654,4844,5158,9780375703060.0,Kaye Gibbons,A Virtuous Woman,3.67,21311,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4656,4846,8968,9780316000970.0,Darren Shan,\"The Vampire Prince (Cirque Du Freak, #6)\",4.23,20877,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4670,4860,8088,9780515138820.0,Robin McKinley,Sunshine,3.85,27918,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4674,4865,2368,9780671447540.0,David McCullough,Mornings on Horseback,4.1,18321,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4726,4920,9913,9780375703840.0,Bret Easton Ellis,Glamorama,3.47,14947,https://images.gr-assets.com/books/1403179508m/9913.jpg\n4732,4926,9804,9780156106800.0,\"Italo Calvino, Archibald Colquhoun\",Il barone rampante,4.06,13221,https://images.gr-assets.com/books/1344432724m/9804.jpg\n4735,4929,5367,9780380809070.0,Roger Zelazny,The Great Book of Amber,4.31,20748,https://images.gr-assets.com/books/1165519096m/5367.jpg\n4765,4962,6526,9780399153940.0,Patricia Cornwell,Book of the Dead,3.63,20962,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4768,4965,8964,9781577780720.0,\"D.C. Talk, The Voice of the Martyrs\",\"Jesus Freaks: DC Talk and The Voice of the Martyrs - Stories of Those Who Stood for Jesus, the Ultimate Jesus Freaks\",4.2,17602,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4785,4983,822,9780060733350.0,Neal Stephenson,The Confusion,4.24,17381,https://images.gr-assets.com/books/1407706997m/822.jpg\n4794,4992,428,9780374529950.0,\"Joan Didion, David Thomson\",Play It as It Lays,3.86,17411,https://images.gr-assets.com/books/1327935636m/428.jpg\n4797,4995,4006,9780722533950.0,\"Paulo Coelho, Alan R. Clarke\",As Valkírias,3.3,14364,https://images.gr-assets.com/books/1414013931m/4006.jpg\n4808,5006,4987,9780385333900.0,Kurt Vonnegut Jr.,Jailbird,3.81,15643,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4810,5008,3973,9780380817920.0,Dan Simmons,Ilium,4.01,19242,https://images.gr-assets.com/books/1390894862m/3973.jpg\n4819,5017,7679,9780060092570.0,Michael Crichton,The Terminal Man,3.34,19072,https://images.gr-assets.com/books/1461056182m/7679.jpg\n4860,5059,7973,9780345482400.0,Orson Scott Card,Enchantment,3.89,21889,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4864,5063,5872,9780140236230.0,Pat Barker,Regeneration,4.03,17126,https://images.gr-assets.com/books/1365925619m/5872.jpg\n4958,5162,8963,9780316000990.0,Darren Shan,\"Hunters of the Dusk (Cirque Du Freak, #7)\",4.17,19326,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n4968,5173,3581,9780553212420.0,Arthur Conan Doyle,\"Sherlock Holmes: The Complete Novels and Stories, Volume I\",4.45,17950,https://images.gr-assets.com/books/1320490450m/3581.jpg\n4980,5186,2879,9781421506140.0,Tite Kubo,Bleach―ブリーチ― 15,4.41,17078,https://images.gr-assets.com/books/1417981626m/2879.jpg\n4992,5198,7993,9780142302390.0,\"Brian Jacques, Gary Chalk\",Mariel of Redwall,3.96,21214,https://images.gr-assets.com/books/1299761476m/7993.jpg\n4993,5199,5752,9780142003340.0,Steven Pinker,The Blank Slate: The Modern Denial of Human Nature,4.07,15647,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5010,5217,3656,9781400097030.0,John Banville,The Sea,3.49,16558,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5018,5225,8966,9780316106540.0,Darren Shan,\"Allies of the Night (Cirque Du Freak, Book 8)\",4.19,18649,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5022,5229,6554,9780553297260.0,John Saul,Darkness,3.92,17338,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5104,5316,5175,9780380794870.0,Pearl Cleage,What Looks Like Crazy on an Ordinary Day,3.7,17853,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5117,5329,8952,9780316016670.0,Darren Shan,\"Killers of the Dawn (Cirque Du Freak, #9)\",4.22,18194,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5135,5347,6194,9780140283360.0,J.M. Coetzee,Waiting for the Barbarians,3.94,14830,https://images.gr-assets.com/books/1330879044m/6194.jpg\n5139,5351,4630,9780684859230.0,Ernest Hemingway,To Have and Have Not,3.57,16074,https://images.gr-assets.com/books/1400886825m/4630.jpg\n5140,5352,5062,9780451219600.0,Ken Follett,Jackdaws,3.91,17489,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5167,5379,5179,9780671774680.0,Melinda Haynes,Mother of Pearl,3.67,17378,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5169,5381,7682,9780553129200.0,Michael Crichton,The Great Train Robbery,3.84,17309,https://images.gr-assets.com/books/1328309104m/7682.jpg\n5199,5412,3300,9780061161540.0,\"Isabel Allende, Margaret Sayers Peden\",Inés del alma mía,3.9,13539,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5206,5419,5130,9780060085490.0,Aldous Huxley,Island,3.87,14440,https://images.gr-assets.com/books/1375947541m/5130.jpg\n5216,5429,4373,9780060856270.0,Loung Ung,First They Killed My Father: A Daughter of Cambodia Remembers,4.29,17459,https://images.gr-assets.com/books/1407105580m/4373.jpg\n5229,5443,3381,9781582344160.0,Douglas Coupland,Hey Nostradamus!,3.72,14645,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5244,5458,7053,9780375422710.0,Alexander McCall Smith,In the Company of Cheerful Ladies,4.07,19839,https://images.gr-assets.com/books/1422951731m/7053.jpg\n5245,5459,8296,9780060885460.0,\"Laura Ingalls Wilder, Garth Williams\",The First Four Years,3.88,24180,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5254,5469,5289,9780007144360.0,\"Oscar Wilde, Merlin Holland\",Collected Works,4.45,10835,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5321,5540,304,9780375760140.0,\"George Eliot, Edmund White\",Daniel Deronda,3.82,17723,https://images.gr-assets.com/books/1320432000m/304.jpg\n5350,5569,6820,9780812966920.0,David Mitchell,number9dream,3.92,13726,https://images.gr-assets.com/books/1320540682m/6820.jpg\n5351,5570,3384,9780060987330.0,Douglas Coupland,Girlfriend in a Coma,3.61,14576,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5374,5594,9914,9780330339190.0,Bret Easton Ellis,The Informers,3.39,12898,https://images.gr-assets.com/books/1374684746m/9914.jpg\n5388,5608,7911,9781416916180.0,Margaret Sidney,Five Little Peppers and How They Grew,4.03,19780,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5407,5629,5548,9780393320920.0,Richard Feynman,What Do You Care What Other People Think? Further Adventures of a Curious Character,4.28,14948,https://images.gr-assets.com/books/1297913068m/5548.jpg\n5416,5639,8725,9780375758740.0,Ruth Reichl,Comfort Me with Apples: More Adventures at the Table,4.02,16021,https://images.gr-assets.com/books/1339885200m/8725.jpg\n5451,5675,5160,9780375500720.0,Maya Angelou,The Heart of a Woman,4.19,15962,https://images.gr-assets.com/books/1417404078m/5160.jpg\n5459,5684,1627,9780743271320.0,Annie Proulx,Brokeback Mountain,3.93,19871,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5491,5723,7663,9780451210630.0,\"Jeffery Hudson, Michael Crichton\",A Case of Need,3.6,14109,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5499,5732,348,9780345413990.0,Robert A. Heinlein,The Door into Summer,4.0,15298,https://images.gr-assets.com/books/1342241886m/348.jpg\n5503,5737,3103,9780393310320.0,E.M. Forster,Maurice,4.02,16301,https://images.gr-assets.com/books/1361934128m/3103.jpg\n5507,5741,6426,9780060584030.0,Janet Evanovich,Motor Mouth,3.66,20983,https://images.gr-assets.com/books/1479699584m/6426.jpg\n5525,5760,5809,9782020418780.0,Thomas Pynchon,V.,3.97,13485,https://images.gr-assets.com/books/1328110787m/5809.jpg\n5543,5778,8951,9780316016650.0,Darren Shan,\"The Lake of Souls (Cirque Du Freak, #10)\",4.19,16803,https://images.gr-assets.com/books/1255988654m/8951.jpg\n5583,5821,3763,9780142003240.0,Ian Fleming,Live and Let Die,3.62,14230,https://images.gr-assets.com/books/1327953982m/3763.jpg\n5608,5848,1897,9780385488180.0,Jon Krakauer,Eiger Dreams: Ventures Among Men and Mountains,3.97,14010,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5626,5866,4652,9780684822770.0,Ernest Hemingway,In Our Time,3.8,14912,https://images.gr-assets.com/books/1369859426m/4652.jpg\n5628,5868,7201,9780312997110.0,Jeffrey Archer,As The Crow Flies,4.05,14415,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5633,5874,9957,9780099468390.0,Ian McEwan,The Cement Garden,3.57,14418,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5646,5888,5936,9780374529600.0,\"Pablo Neruda, Ilan Stavans\",The Poetry of Pablo Neruda,4.44,14596,https://images.gr-assets.com/books/1417605511m/5936.jpg\n5647,5889,2872,9780452283210.0,Tracy Chevalier,Falling Angels,3.55,18465,https://images.gr-assets.com/books/1327995250m/2872.jpg\n5668,5910,7073,9780345915630.0,John Irving,A Son of the Circus,3.61,14878,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5681,5923,7058,9780375422740.0,Alexander McCall Smith,The Good Husband of Zebra Drive,4.06,18329,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5695,5937,3858,9780767915750.0,Sarah Macdonald,Holy Cow: An Indian Adventure,3.51,13627,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5759,6002,9762,9781400045370.0,\"Byron Katie, Stephen Mitchell\",Loving What Is: Four Questions That Can Change Your Life,4.15,12568,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5802,6046,6750,9780142002420.0,David Foster Wallace,The Broom of the System,3.84,13011,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5812,6057,3368,9780321344760.0,Steve Krug,Don't Make Me Think! A common sense approach to web usability,4.24,7296,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5866,6116,7628,9781551113810.0,\"Ford Madox Ford, Kenneth Womack, William Baker\",The Good Soldier,3.72,14471,https://images.gr-assets.com/books/1389213508m/7628.jpg\n5920,6171,6551,9780142437290.0,\"Saul Bellow, Philip Roth\",Herzog,3.79,14324,https://images.gr-assets.com/books/1386924221m/6551.jpg\n5925,6176,5755,9780060958340.0,Steven Pinker,The Language Instinct: How the Mind Creates Language,4.05,12870,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5932,6183,7432,9780312426220.0,Jacqueline Winspear,Pardonable Lies,4.09,17947,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5953,6205,8949,9780316156290.0,Darren Shan,\"Lord of the Shadows (Cirque Du Freak, #11)\",4.22,15794,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5961,6213,3885,9780898214970.0,\"Janet Briggs, Beth Wittlinger\",The Taste of Home Cookbook,4.25,14469,https://images.gr-assets.com/books/1309198140m/3885.jpg\n5969,6221,7520,9781416516320.0,Brad Thor,Path of the Assassin,4.17,12652,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n5991,6245,7968,9780812524260.0,Orson Scott Card,\"Red Prophet (Tales of Alvin Maker, #2)\",3.78,16704,https://images.gr-assets.com/books/1379147136m/7968.jpg\n6013,6267,9650,9781421808310.0,George Orwell,Burmese Days,3.84,12119,https://images.gr-assets.com/books/1415573403m/9650.jpg\n6038,6292,2915,9780440227500.0,Gary Paulsen,The River,3.77,14198,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6042,6296,5053,9780451208700.0,Ken Follett,The Man from St. Petersburg,3.84,13193,https://images.gr-assets.com/books/1411331808m/5053.jpg\n6063,6319,250,9780802151830.0,Henry Miller,Tropic of Capricorn,3.85,12082,https://images.gr-assets.com/books/1417652073m/250.jpg\n6093,6350,1875,9780679724700.0,\"Michel Foucault, Robert Hurley\",Histoire de la sexualité 1. La Volonté de savoir,4.03,12565,https://images.gr-assets.com/books/1486236798m/1875.jpg\n6101,6358,7531,9780375760910.0,Laurie Notaro,The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life,3.89,15198,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6111,6368,7184,9780192838440.0,\"Alexandre Dumas, David Coward, Auguste Maquet\",Vingt ans après,4.01,14539,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6113,6370,447,9780140115860.0,Paul Auster,Moon Palace,3.99,12170,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6137,6394,698,9780307263940.0,Anne Tyler,Digging to America,3.53,15484,https://images.gr-assets.com/books/1327901292m/698.jpg\n6140,6397,7979,9780142400300.0,Brian Jacques,The Bellmaker,3.95,17476,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6142,6399,5849,9780330487190.0,V.S. Naipaul,A House for Mr. Biswas,3.82,13073,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6153,6411,2137,9780312424080.0,Michael Cunningham,A Home at the End of the World,3.89,13228,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6159,6417,4955,9781400095570.0,Dave Eggers,How We Are Hungry,3.75,11282,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6193,6455,840,9780465067110.0,Donald A. Norman,The Psychology of Everyday Things,4.18,11838,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6213,6475,2142,9780849945110.0,Ted Dekker,Blink,4.17,12037,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6287,6555,8948,9780316156300.0,Darren Shan,\"Sons of Destiny (Cirque Du Freak, Book 12)\",4.22,14997,https://images.gr-assets.com/books/1344270002m/8948.jpg\n6316,6587,3759,9780142002050.0,Ian Fleming,Goldfinger,3.8,13267,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6328,6600,6678,9780141311420.0,\"Roald Dahl, Quentin Blake\",Going Solo,4.04,14086,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6373,6647,3447,9780618709860.0,Tim O'Brien,In the Lake of the Woods,3.78,12441,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6399,6674,8696,9780345371980.0,\"Douglas Adams, Mark Carwardine\",Last Chance to See,4.33,13860,https://images.gr-assets.com/books/1327867839m/8696.jpg\n6433,6712,7926,9780385732960.0,Sydney Taylor,All-of-a-Kind Family,4.23,18383,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6438,6718,291,9780806501900.0,\"Kahlil Gibran, Anthony R. Ferris\",الأجنحة المتكسرة,3.93,5611,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6459,6741,6671,9780375814240.0,Roald Dahl,The Wonderful Story Of Henry Sugar And Six More,4.15,13419,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6465,6748,1307,9780553295410.0,\"Margaret Weis, Tracy Hickman\",Fire Sea,4.05,14707,https://images.gr-assets.com/books/1325422748m/1307.jpg\n6474,6757,7909,9780064400960.0,\"Maud Hart Lovelace, Lois Lenski\",Betsy-Tacy,4.07,18024,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6523,6808,4986,9780743422000.0,Kurt Vonnegut Jr.,\"God Bless You, Dr. Kevorkian\",3.83,11543,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6541,6826,5368,9780141009830.0,Kathleen Winsor,Forever Amber,3.98,13286,https://images.gr-assets.com/books/1350464965m/5368.jpg\n6563,6849,7998,9780142401420.0,Brian Jacques,Outcast of Redwall,3.9,15874,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6565,6851,1191,9780307238280.0,\"Giada De Laurentiis, Victoria Pearson\",Giada's Family Dinners,3.99,12061,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6586,6873,4662,9780684842510.0,\"F. Scott Fitzgerald, Matthew J. Bruccoli\",The Short Stories of F. Scott Fitzgerald,4.23,11525,https://images.gr-assets.com/books/1400891315m/4662.jpg\n6599,6889,3750,9780142002060.0,Ian Fleming,Moonraker,3.7,12016,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6613,6906,9454,9780198245970.0,\"Georg Wilhelm Friedrich Hegel, A.V. Miller, John Niemeyer Findlay\",Phänomenologie des Geistes,3.91,11744,https://images.gr-assets.com/books/1425522818m/9454.jpg\n6620,6913,4507,9780553803080.0,Julie Gregory,Sickened,3.72,11860,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6643,6936,7981,9780142402450.0,\"Brian Jacques, Allan Curless\",The Long Patrol,4.1,15343,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6678,6973,5553,9780465023930.0,Richard Feynman,Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant Teacher,4.19,11867,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6692,6988,8492,9781581345260.0,Frank E. Peretti,Prophet,3.92,11708,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6701,6997,5055,9780451211480.0,Ken Follett,Night over Water,3.78,12329,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6744,7041,5552,9780691024170.0,Richard Feynman,QED: The Strange Theory of Light and Matter,4.23,10438,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6774,7072,9013,9781592289450.0,Slavomir Rawicz,The Long Walk: The True Story of a Trek to Freedom,4.18,10188,https://images.gr-assets.com/books/1417980460m/9013.jpg\n6792,7091,2528,9780156010600.0,\"José Saramago, Margaret Jull Costa\",Todos os Nomes,3.88,9520,https://images.gr-assets.com/books/1327955213m/2528.jpg\n6817,7117,98,9780761129580.0,\"Heidi Murkoff, Sharon Mazel, Heidi Murkoff, Arlene Eisenberg, Sandee Hathaway, Mark D. Widome\",What to Expect the First Year,3.86,10807,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6859,7165,2371,9780844662920.0,David McCullough,The Johnstown Flood,4.11,11691,https://images.gr-assets.com/books/1313667349m/2371.jpg\n6869,7175,3379,9781582342150.0,Douglas Coupland,All Families Are Psychotic,3.69,10461,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6990,7304,3888,9781933615010.0,\"America's Test Kitchen, Carl Tremblay, Daniel J. Van Ackere\",The America's Test Kitchen Family Cookbook,4.31,12081,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n6999,7313,355,9780345316510.0,Robert A. Heinlein,Job: A Comedy of Justice,3.77,14592,https://images.gr-assets.com/books/1438043968m/355.jpg\n7035,7353,2183,9780140447970.0,\"Gustave Flaubert, Robert Baldick, Geoffrey Wall\",L'Éducation sentimentale,3.83,11642,https://images.gr-assets.com/books/1327788473m/2183.jpg\n7068,7391,952,9781881273650.0,\"Gary Chapman, D. Ross Campbell\",The Five Love Languages of Children,4.21,9744,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7085,7408,4950,9780618711670.0,Amitav Ghosh,The Hungry Tide,3.91,9722,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7086,7409,8646,9780385337630.0,Mary Lawson,Crow Lake,3.85,12220,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7167,7494,9998,9780679733780.0,\"Kōbō Abe, E. Dale Saunders\",砂の女 [Suna no onna],3.91,11467,https://images.gr-assets.com/books/1361254930m/9998.jpg\n7176,7504,6193,9780099479150.0,J.M. Coetzee,Life & Times of Michael K.,3.85,10647,https://images.gr-assets.com/books/1327203650m/6193.jpg\n7186,7514,5481,9780060898530.0,Aldous Huxley,Brave New World Revisited,3.93,11073,https://images.gr-assets.com/books/1410136964m/5481.jpg\n7192,7523,7707,9780451530100.0,\"George Bernard Shaw, Alan Jay Lerner\",Pygmalion and My Fair Lady (50th Anniversary Edition) (Signet Classics (Paperback)),4.24,13318,https://images.gr-assets.com/books/1327891970m/7707.jpg\n7213,7545,4830,9780679783480.0,Salman Rushdie,Shalimar the Clown,3.86,10396,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7214,7546,8745,9780688172370.0,\"Waris Dirie, Cathleen Miller\",Desert Flower: The Extraordinary Journey of a Desert Nomad,4.09,9609,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7216,7549,4076,9781861977170.0,\"Tom Peters, Robert H. Waterman Jr.\",In Search of Excellence,3.91,9469,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7225,7558,9654,9780451209440.0,Erica Jong,Fear of Flying,3.44,13061,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7228,7561,6694,9780140568200.0,\"Roald Dahl, Quentin Blake\",The Giraffe and the Pelly and Me,3.8,14180,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7314,7653,7081,9780765309420.0,John Scalzi,The Android's Dream,3.97,11476,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7315,7654,3291,9780743217190.0,Isabel Allende,Cuentos de Eva Luna,3.96,10862,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7316,7655,7579,9780767901570.0,Lama Surya Das,Awakening the Buddha Within : Tibetan Wisdom for the Western World,4.18,9912,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7344,7687,7062,9780375758230.0,Adam Gopnik,Paris to the Moon,3.75,11065,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7349,7692,3757,9780142002030.0,Ian Fleming,Dr. No,3.76,10569,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7368,7712,1990,9780140436140.0,\"Charles Dickens, Patricia Ingham, Hablot Knight Browne\",The Life and Adventures of Martin Chuzzlewit,3.82,11784,https://images.gr-assets.com/books/1334392783m/1990.jpg\n7371,7716,5845,9780330487150.0,V.S. Naipaul,A Bend in the River,3.77,11011,https://images.gr-assets.com/books/1353691563m/5845.jpg\n7382,7729,2068,9780684824710.0,Daniel C. Dennett,Darwin's Dangerous Idea: Evolution and the Meanings of Life,4.03,11090,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7387,7735,4813,9780060540940.0,Gavin Menzies,1421: The Year China Discovered America,3.58,10200,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7430,7781,3972,9780380817930.0,Dan Simmons,Olympos,3.93,11393,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7431,7782,3872,9780802715520.0,Tom Standage,A History of the World in 6 Glasses,3.74,10473,https://images.gr-assets.com/books/1415681601m/3872.jpg\n7444,7797,5946,9780679772670.0,Michael Ondaatje,In the Skin of a Lion,3.88,11289,https://images.gr-assets.com/books/1405864361m/5946.jpg\n7445,7799,5559,9785559608470.0,\"Jack Welch, John A. Byrne, Mike Barnicle\",Jack: Straight from the Gut,3.79,9781,https://images.gr-assets.com/books/1297699934m/5559.jpg\n7470,7825,7980,9780142401450.0,Brian Jacques,The Pearls of Lutra,3.99,15605,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7477,7832,676,9780375755190.0,Billy Collins,Sailing Alone Around the Room: New and Selected Poems,4.24,10999,https://images.gr-assets.com/books/1403183272m/676.jpg\n7508,7868,2530,9780156005200.0,\"José Saramago, Giovanni Pontiero\",Memorial do Convento,3.9,5321,https://images.gr-assets.com/books/1483229660m/2530.jpg\n7637,8010,665,9780451163940.0,\"Ayn Rand, Nathaniel Branden\",The Virtue of Selfishness: A New Concept of Egoism,3.47,10198,https://images.gr-assets.com/books/1425001997m/665.jpg\n7667,8041,2372,9780743262130.0,David McCullough,\"The Path Between the Seas: The Creation of the Panama Canal, 1870-1914\",4.19,9349,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7681,8055,4660,9780345417960.0,John Irving,The 158-Pound Marriage,3.22,10532,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7726,8102,7999,9780142501080.0,Brian Jacques,Marlfox,3.99,13426,https://images.gr-assets.com/books/1311702426m/7999.jpg\n7745,8125,4599,9780786886330.0,Glen David Gold,Carter Beats the Devil,4.09,10000,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7763,8145,3760,9780142002060.0,Ian Fleming,Diamonds are Forever,3.59,10205,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7764,8146,2978,9780060594530.0,James Hilton,Lost Horizon,3.9,10907,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7773,8156,2049,9780394758270.0,Raymond Chandler,The High Window,4.08,11080,https://images.gr-assets.com/books/1466754245m/2049.jpg\n7779,8163,6328,9780142302260.0,\"Roald Dahl, Quentin Blake\",Revolting Rhymes,4.13,12674,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7786,8170,3762,9780142003250.0,Ian Fleming,On Her Majesty's Secret Service,3.94,11612,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7823,8209,2677,9780486287590.0,Jonathan Swift,A Modest Proposal and Other Satirical Works,4.04,12499,https://images.gr-assets.com/books/1264316062m/2677.jpg\n7830,8217,2067,9780670034730.0,Daniel C. Dennett,Breaking the Spell: Religion as a Natural Phenomenon,3.89,8381,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7841,8228,1823,9780743233220.0,Jon Ronson,Them: Adventures with Extremists,3.94,9081,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7844,8231,621,9780767923830.0,David Bach,The Automatic Millionaire: A Powerful One-Step Plan to Live and Finish Rich,3.9,10091,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7875,8265,9865,9780099592420.0,Salman Rushdie,The Moor's Last Sigh,3.92,9459,https://images.gr-assets.com/books/1359386233m/9865.jpg\n7894,8284,8087,9780441012400.0,Robin McKinley,Deerskin,3.88,15982,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7895,8285,4339,9780679735250.0,Michael Herr,Dispatches,4.24,10383,https://images.gr-assets.com/books/1343099128m/4339.jpg\n7918,8309,5942,9780375724370.0,Michael Ondaatje,Anil's Ghost,3.54,11184,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n7922,8315,4099,9780201616220.0,\"Andrew Hunt, Dave Thomas\",The Pragmatic Programmer: From Journeyman to Master,4.31,9416,https://images.gr-assets.com/books/1401432508m/4099.jpg\n7963,8360,4261,9781573223560.0,Nick Hornby,31 Songs,3.56,8999,https://images.gr-assets.com/books/1417984618m/4261.jpg\n7985,8383,4364,9780375703410.0,Suketu Mehta,Maximum City: Bombay Lost and Found,3.91,7894,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8003,8402,5417,9780517219030.0,Stephen King,Three Complete Novels: Carrie/Salem's Lot/The Shining,4.52,11063,https://images.gr-assets.com/books/1376725117m/5417.jpg\n8007,8406,7252,9780060539090.0,\"Jenna Jameson, Neil Strauss\",How to Make Love Like a Porn Star: A Cautionary Tale,3.75,9531,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8078,8481,400,9780140156040.0,Don DeLillo,Libra,3.98,10195,https://images.gr-assets.com/books/1327935630m/400.jpg\n8083,8486,8172,9781401202520.0,\"Mark Waid, Alfred Gough, Miles Millar, Dave McCaig, Gerry Alanguilan, Leinil Francis Yu\",Superman: Birthright 1-12,4.12,9253,https://images.gr-assets.com/books/1343584198m/8172.jpg\n8105,8512,8089,9780441005830.0,Robin McKinley,Rose Daughter,3.77,15696,https://images.gr-assets.com/books/1398552029m/8089.jpg\n8113,8520,1524,9780521010760.0,\"Aeschylus, Judith Affleck, Philip de May, Patricia E. Easterling, John     Harrison\",Ἀγαμέμνων,3.82,11515,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8128,8535,4887,9780465016910.0,\"Alice  Miller, Ruth Ward\",Das Drama des begabten Kindes und die Suche nach dem wahren Selbst: eine Um- und Fortschreibung,4.09,9563,https://images.gr-assets.com/books/1339395245m/4887.jpg\n8134,8541,5068,9780330489680.0,Graham Swift,Last Orders,3.68,9349,https://images.gr-assets.com/books/1457623323m/5068.jpg\n8145,8552,4633,9780743253420.0,Ernest Hemingway,Islands in the Stream,3.86,9608,https://images.gr-assets.com/books/1400891142m/4633.jpg\n8185,8595,7987,9780142501090.0,Brian Jacques,The Legend of Luke,3.99,12658,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8259,8671,5052,9780451216720.0,Ken Follett,Code to Zero,3.64,9071,https://images.gr-assets.com/books/1309209804m/5052.jpg\n8300,8714,7780,9780679434480.0,\"Dr. Seuss, Maurice Sendak, Audrey Geisel\",The Secret Art of Dr. Seuss,4.05,8461,https://images.gr-assets.com/books/1320429156m/7780.jpg\n8308,8723,4530,9780143035370.0,Helen Fielding,Olivia Joules And The Overactive Imagination,3.1,10687,https://images.gr-assets.com/books/1408588694m/4530.jpg\n8311,8726,7199,9780060586380.0,Ann-Marie MacDonald,The Way the Crow Flies,4.08,10227,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8326,8741,6159,9780802141900.0,Sherman Alexie,Reservation Blues,3.98,9919,https://images.gr-assets.com/books/1398195783m/6159.jpg\n8363,8780,3710,9780375703870.0,Zadie Smith,The Autograph Man,3.14,8317,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8368,8785,7433,9780805078980.0,Jacqueline Winspear,Messenger of Truth,3.99,12454,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8403,8821,5571,9780865475880.0,\"William McDonough, Michael Braungart\",Cradle to Cradle: Remaking the Way We Make Things,4.1,7625,https://images.gr-assets.com/books/1417605547m/5571.jpg\n8408,8826,8515,9780345427050.0,\"Monty Roberts, Lucy Grealy, Lawrence Scanlan\",The Man Who Listens to Horses,4.1,9021,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8409,8827,6749,9780316010760.0,David Foster Wallace,Oblivion,4.07,9196,https://images.gr-assets.com/books/1311905400m/6749.jpg\n8420,8839,9648,9780141183720.0,George Orwell,Keep the Aspidistra Flying,3.87,9599,https://images.gr-assets.com/books/1331244097m/9648.jpg\n8446,8866,1032,9780345479170.0,\"Donald J. Trump, Tony Schwartz\",Trump: The Art of the Deal,3.66,8768,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8470,8892,7785,9780007158520.0,Dr. Seuss,I Can Read with My Eyes Shut!,4.17,13821,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8487,8911,4657,9780345418000.0,John Irving,The Water-Method Man,3.34,9725,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8496,8921,3028,9780517548230.0,Henry Hazlitt,Economics in One Lesson,4.22,9028,https://images.gr-assets.com/books/1320423284m/3028.jpg\n8506,8932,3446,9780767904420.0,Tim O'Brien,Going After Cacciato,3.9,9188,https://images.gr-assets.com/books/1399498199m/3446.jpg\n8521,8947,386,9780393329410.0,Nick Flynn,Another Bullshit Night in Suck City: A Memoir,3.77,8441,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8630,9067,449,9780312264000.0,Paul Auster,Timbuktu,3.66,8272,https://images.gr-assets.com/books/1355142497m/449.jpg\n8662,9100,3559,9780385413720.0,Thomas L. Friedman,From Beirut to Jerusalem,4.1,8057,https://images.gr-assets.com/books/1328295618m/3559.jpg\n8665,9103,1824,9780743270600.0,Jon Ronson,The Men Who Stare at Goats,3.58,8245,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8674,9113,6872,9780679749840.0,Ian McEwan,The Comfort of Strangers,3.44,8843,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8679,9118,9864,9780312255000.0,Salman Rushdie,The Ground Beneath Her Feet,3.77,8673,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png\n8683,9123,4984,9780099282970.0,Kurt Vonnegut Jr.,Bagombo Snuff Box,3.72,7407,https://images.gr-assets.com/books/1327353727m/4984.jpg\n8710,9150,8914,9780375700450.0,John Keegan,The First World War,4.0,9162,https://images.gr-assets.com/books/1403194704m/8914.jpg\n"
  },
  {
    "path": "static/mainapp/dataset/full_book.csv",
    "content": "r_index,book_id,best_book_id,work_id,books_count,isbn,isbn13,authors,original_publication_year,original_title,title,language_code,average_rating,ratings_count,work_ratings_count,work_text_reviews_count,ratings_1,ratings_2,ratings_3,ratings_4,ratings_5,image_url,small_image_url\n1,2767052,2767052,2792775,272,439023483,9780439023480.0,Suzanne Collins,2008.0,The Hunger Games,\"The Hunger Games (The Hunger Games, #1)\",eng,4.34,4780653,4942365,155254,66715,127936,560092,1481305,2706317,https://images.gr-assets.com/books/1447303603l/2767052.jpg,https://images.gr-assets.com/books/1447303603s/2767052.jpg\n2,3,3,4640799,491,439554934,9780439554930.0,\"J.K. Rowling, Mary GrandPré\",1997.0,Harry Potter and the Philosopher's Stone,\"Harry Potter and the Sorcerer's Stone (Harry Potter, #1)\",eng,4.44,4602479,4800065,75867,75504,101676,455024,1156318,3011543,https://images.gr-assets.com/books/1474154022l/3.jpg,https://images.gr-assets.com/books/1474154022s/3.jpg\n3,41865,41865,3212258,226,316015849,9780316015840.0,Stephenie Meyer,2005.0,Twilight,\"Twilight (Twilight, #1)\",en-US,3.57,3866839,3916824,95009,456191,436802,793319,875073,1355439,https://images.gr-assets.com/books/1361039443l/41865.jpg,https://images.gr-assets.com/books/1361039443s/41865.jpg\n4,2657,2657,3275794,487,61120081,9780061120080.0,Harper Lee,1960.0,To Kill a Mockingbird,To Kill a Mockingbird,eng,4.25,3198671,3340896,72586,60427,117415,446835,1001952,1714267,https://images.gr-assets.com/books/1361975680l/2657.jpg,https://images.gr-assets.com/books/1361975680s/2657.jpg\n5,4671,4671,245494,1356,743273567,9780743273560.0,F. Scott Fitzgerald,1925.0,The Great Gatsby,The Great Gatsby,eng,3.89,2683664,2773745,51992,86236,197621,606158,936012,947718,https://images.gr-assets.com/books/1490528560l/4671.jpg,https://images.gr-assets.com/books/1490528560s/4671.jpg\n6,11870085,11870085,16827462,226,525478817,9780525478810.0,John Green,2012.0,The Fault in Our Stars,The Fault in Our Stars,eng,4.26,2346404,2478609,140739,47994,92723,327550,698471,1311871,https://images.gr-assets.com/books/1360206420l/11870085.jpg,https://images.gr-assets.com/books/1360206420s/11870085.jpg\n7,5907,5907,1540236,969,618260307,9780618260300.0,J.R.R. Tolkien,1937.0,The Hobbit or There and Back Again,The Hobbit,en-US,4.25,2071616,2196809,37653,46023,76784,288649,665635,1119718,https://images.gr-assets.com/books/1372847500l/5907.jpg,https://images.gr-assets.com/books/1372847500s/5907.jpg\n8,5107,5107,3036731,360,316769177,9780316769170.0,J.D. Salinger,1951.0,The Catcher in the Rye,The Catcher in the Rye,eng,3.79,2044241,2120637,44920,109383,185520,455042,661516,709176,https://images.gr-assets.com/books/1398034300l/5107.jpg,https://images.gr-assets.com/books/1398034300s/5107.jpg\n9,960,960,3338963,311,1416524797,9781416524790.0,Dan Brown,2000.0,Angels & Demons ,\"Angels & Demons  (Robert Langdon, #1)\",en-CA,3.85,2001311,2078754,25112,77841,145740,458429,716569,680175,https://images.gr-assets.com/books/1303390735l/960.jpg,https://images.gr-assets.com/books/1303390735s/960.jpg\n10,1885,1885,3060926,3455,679783261,9780679783270.0,Jane Austen,1813.0,Pride and Prejudice,Pride and Prejudice,eng,4.24,2035490,2191465,49152,54700,86485,284852,609755,1155673,https://images.gr-assets.com/books/1320399351l/1885.jpg,https://images.gr-assets.com/books/1320399351s/1885.jpg\n11,77203,77203,3295919,283,1594480001,9781594480000.0,Khaled Hosseini,2003.0,The Kite Runner ,The Kite Runner,eng,4.26,1813044,1878095,59730,34288,59980,226062,628174,929591,https://images.gr-assets.com/books/1484565687l/77203.jpg,https://images.gr-assets.com/books/1484565687s/77203.jpg\n12,13335037,13335037,13155899,210,62024035,9780062024040.0,Veronica Roth,2011.0,Divergent,\"Divergent (Divergent, #1)\",eng,4.24,1903563,2216814,101023,36315,82870,310297,673028,1114304,https://images.gr-assets.com/books/1328559506l/13335037.jpg,https://images.gr-assets.com/books/1328559506s/13335037.jpg\n13,5470,5470,153313,995,451524934,9780451524940.0,\"George Orwell, Erich Fromm, Celâl Üster\",1949.0,Nineteen Eighty-Four,1984,eng,4.14,1956832,2053394,45518,41845,86425,324874,692021,908229,https://images.gr-assets.com/books/1348990566l/5470.jpg,https://images.gr-assets.com/books/1348990566s/5470.jpg\n14,7613,7613,2207778,896,452284244,9780452284240.0,George Orwell,1945.0,Animal Farm: A Fairy Story,Animal Farm,eng,3.87,1881700,1982987,35472,66854,135147,433432,698642,648912,https://images.gr-assets.com/books/1424037542l/7613.jpg,https://images.gr-assets.com/books/1424037542s/7613.jpg\n15,48855,48855,3532896,710,553296981,9780553296980.0,\"Anne Frank, Eleanor Roosevelt, B.M. Mooyaart-Doubleday\",1947.0,Het Achterhuis: Dagboekbrieven 14 juni 1942 - 1 augustus 1944,The Diary of a Young Girl,eng,4.1,1972666,2024493,20825,45225,91270,355756,656870,875372,https://images.gr-assets.com/books/1358276407l/48855.jpg,https://images.gr-assets.com/books/1358276407s/48855.jpg\n16,2429135,2429135,1708725,274,307269752,9780307269750.0,\"Stieg Larsson, Reg Keeland\",2005.0,Män som hatar kvinnor,\"The Girl with the Dragon Tattoo (Millennium, #1)\",eng,4.11,1808403,1929834,62543,54835,86051,285413,667485,836050,https://images.gr-assets.com/books/1327868566l/2429135.jpg,https://images.gr-assets.com/books/1327868566s/2429135.jpg\n17,6148028,6148028,6171458,201,439023491,9780439023500.0,Suzanne Collins,2009.0,Catching Fire,\"Catching Fire (The Hunger Games, #2)\",eng,4.3,1831039,1988079,88538,10492,48030,262010,687238,980309,https://images.gr-assets.com/books/1358273780l/6148028.jpg,https://images.gr-assets.com/books/1358273780s/6148028.jpg\n18,5,5,2402163,376,043965548X,9780439655480.0,\"J.K. Rowling, Mary GrandPré, Rufus Beck\",1999.0,Harry Potter and the Prisoner of Azkaban,\"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)\",eng,4.53,1832823,1969375,36099,6716,20413,166129,509447,1266670,https://images.gr-assets.com/books/1499277281l/5.jpg,https://images.gr-assets.com/books/1499277281s/5.jpg\n19,34,34,3204327,566,618346252,9780618346260.0,J.R.R. Tolkien,1954.0, The Fellowship of the Ring,\"The Fellowship of the Ring (The Lord of the Rings, #1)\",eng,4.34,1766803,1832541,15333,38031,55862,202332,493922,1042394,https://images.gr-assets.com/books/1298411339l/34.jpg,https://images.gr-assets.com/books/1298411339s/34.jpg\n20,7260188,7260188,8812783,239,439023513,9780439023510.0,Suzanne Collins,2010.0,Mockingjay,\"Mockingjay (The Hunger Games, #3)\",eng,4.03,1719760,1870748,96274,30144,110498,373060,618271,738775,https://images.gr-assets.com/books/1358275419l/7260188.jpg,https://images.gr-assets.com/books/1358275419s/7260188.jpg\n21,2,2,2809203,307,439358078,9780439358070.0,\"J.K. Rowling, Mary GrandPré\",2003.0,Harry Potter and the Order of the Phoenix,\"Harry Potter and the Order of the Phoenix (Harry Potter, #5)\",eng,4.46,1735368,1840548,28685,9528,31577,180210,494427,1124806,https://images.gr-assets.com/books/1387141547l/2.jpg,https://images.gr-assets.com/books/1387141547s/2.jpg\n22,12232938,12232938,1145090,183,316166685,9780316166680.0,Alice Sebold,2002.0,The Lovely Bones,The Lovely Bones,eng,3.77,1605173,1661562,36642,62777,131188,404699,583575,479323,https://images.gr-assets.com/books/1457810586l/12232938.jpg,https://images.gr-assets.com/books/1457810586s/12232938.jpg\n23,15881,15881,6231171,398,439064864,9780439064870.0,\"J.K. Rowling, Mary GrandPré\",1998.0,Harry Potter and the Chamber of Secrets,\"Harry Potter and the Chamber of Secrets (Harry Potter, #2)\",eng,4.37,1779331,1906199,34172,8253,42251,242345,548266,1065084,https://images.gr-assets.com/books/1474169725l/15881.jpg,https://images.gr-assets.com/books/1474169725s/15881.jpg\n24,6,6,3046572,332,439139600,9780439139600.0,\"J.K. Rowling, Mary GrandPré\",2000.0,Harry Potter and the Goblet of Fire,\"Harry Potter and the Goblet of Fire (Harry Potter, #4)\",eng,4.53,1753043,1868642,31084,6676,20210,151785,494926,1195045,https://images.gr-assets.com/books/1361482611l/6.jpg,https://images.gr-assets.com/books/1361482611s/6.jpg\n25,136251,136251,2963218,263,545010225,9780545010220.0,\"J.K. Rowling, Mary GrandPré\",2007.0,Harry Potter and the Deathly Hallows,\"Harry Potter and the Deathly Hallows (Harry Potter, #7)\",eng,4.61,1746574,1847395,51942,9363,22245,113646,383914,1318227,https://images.gr-assets.com/books/1474171184l/136251.jpg,https://images.gr-assets.com/books/1474171184s/136251.jpg\n26,968,968,2982101,350,307277674,9780307277670.0,Dan Brown,2003.0,The Da Vinci Code,\"The Da Vinci Code (Robert Langdon, #2)\",eng,3.79,1447148,1557292,41560,71345,126493,340790,539277,479387,https://images.gr-assets.com/books/1303252999l/968.jpg,https://images.gr-assets.com/books/1303252999s/968.jpg\n27,1,1,41335427,275,439785960,9780439785970.0,\"J.K. Rowling, Mary GrandPré\",2005.0,Harry Potter and the Half-Blood Prince,\"Harry Potter and the Half-Blood Prince (Harry Potter, #6)\",eng,4.54,1678823,1785676,27520,7308,21516,136333,459028,1161491,https://images.gr-assets.com/books/1361039191l/1.jpg,https://images.gr-assets.com/books/1361039191s/1.jpg\n28,7624,7624,2766512,458,140283331,9780140283330.0,William Golding,1954.0,Lord of the Flies ,Lord of the Flies,eng,3.64,1605019,1671484,26886,92779,160295,425648,564916,427846,https://images.gr-assets.com/books/1327869409l/7624.jpg,https://images.gr-assets.com/books/1327869409s/7624.jpg\n29,18135,18135,3349450,1937,743477111,9780743477120.0,\"William Shakespeare, Robert           Jackson\",1595.0,An Excellent conceited Tragedie of Romeo and Juliet,Romeo and Juliet,eng,3.73,1628519,1672889,14778,57980,153179,452673,519822,489235,https://images.gr-assets.com/books/1327872146l/18135.jpg,https://images.gr-assets.com/books/1327872146s/18135.jpg\n30,8442457,19288043,13306276,196,297859382,9780297859380.0,Gillian Flynn,2012.0,Gone Girl,Gone Girl,eng,4.03,512475,1626519,121614,38874,80807,280331,616031,610476,https://images.gr-assets.com/books/1339602131l/8442457.jpg,https://images.gr-assets.com/books/1339602131s/8442457.jpg\n31,4667024,4667024,4717423,183,399155341,9780399155340.0,Kathryn Stockett,2009.0,The Help,The Help,eng,4.45,1531753,1603545,78204,10235,25117,134887,490754,942552,https://images.gr-assets.com/books/1346100365l/4667024.jpg,https://images.gr-assets.com/books/1346100365s/4667024.jpg\n32,890,890,40283,373,142000671,9780142000670.0,John Steinbeck,1937.0,Of Mice and Men ,Of Mice and Men,eng,3.84,1467496,1518741,24642,46630,110856,355169,532291,473795,https://images.gr-assets.com/books/1437235233l/890.jpg,https://images.gr-assets.com/books/1437235233s/890.jpg\n33,930,929,1558965,220,739326228,9780739326220.0,Arthur Golden,1997.0,Memoirs of a Geisha,Memoirs of a Geisha,eng,4.08,1300209,1418172,25605,23500,59033,258700,517157,559782,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388367666l/930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n34,10818853,10818853,15732562,169,1612130291,9781612130290.0,E.L. James,2011.0,Fifty Shades of Grey,\"Fifty Shades of Grey (Fifty Shades, #1)\",eng,3.67,1338493,1436818,75437,165455,152293,252185,294976,571909,https://images.gr-assets.com/books/1385207843l/10818853.jpg,https://images.gr-assets.com/books/1385207843s/10818853.jpg\n35,865,865,4835472,458,61122416,9780061122420.0,\"Paulo Coelho, Alan R. Clarke\",1988.0,O Alquimista,The Alchemist,eng,3.82,1299566,1403995,55781,74846,123614,289143,412180,504212,https://images.gr-assets.com/books/1483412266l/865.jpg,https://images.gr-assets.com/books/1483412266s/865.jpg\n36,3636,3636,2543234,192,385732554,9780385732550.0,Lois Lowry,1993.0,The Giver,\"The Giver (The Giver, #1)\",eng,4.12,1296825,1345445,54084,26497,59652,225326,448691,585279,https://images.gr-assets.com/books/1342493368l/3636.jpg,https://images.gr-assets.com/books/1342493368s/3636.jpg\n37,100915,100915,4790821,474,60764899,9780060764890.0,C.S. Lewis,1950.0,\"The Lion, the Witch and the Wardrobe\",\"The Lion, the Witch, and the Wardrobe (Chronicles of Narnia, #1)\",eng,4.19,1531800,1584884,15186,19309,55542,262038,513366,734629,https://images.gr-assets.com/books/1353029077l/100915.jpg,https://images.gr-assets.com/books/1353029077s/100915.jpg\n38,14050,18619684,2153746,167,965818675,9780965818670.0,Audrey Niffenegger,2003.0,The Time Traveler's Wife,The Time Traveler's Wife,eng,3.95,746287,1308667,43382,44339,85429,257805,427210,493884,https://images.gr-assets.com/books/1437728815l/14050.jpg,https://images.gr-assets.com/books/1437728815s/14050.jpg\n39,13496,13496,1466917,101,553588486,9780553588480.0,George R.R. Martin,1996.0,A Game of Thrones,\"A Game of Thrones (A Song of Ice and Fire, #1)\",eng,4.45,1319204,1442220,46205,19988,28983,114092,404583,874574,https://images.gr-assets.com/books/1436732693l/13496.jpg,https://images.gr-assets.com/books/1436732693s/13496.jpg\n40,19501,19501,3352398,185,143038419,9780143038410.0,Elizabeth Gilbert,2006.0,\"Eat, pray, love: one woman's search for everything across Italy, India and Indonesia\",\"Eat, Pray, Love\",eng,3.51,1181647,1206597,49714,100373,149549,310212,332191,314272,https://images.gr-assets.com/books/1503066414l/19501.jpg,https://images.gr-assets.com/books/1503066414s/19501.jpg\n41,28187,28187,3346751,159,786838655,9780786838650.0,Rick Riordan,2005.0,The Lightning Thief,\"The Lightning Thief (Percy Jackson and the Olympians, #1)\",eng,4.23,1366265,1411114,46006,18303,48294,219638,435514,689365,https://images.gr-assets.com/books/1400602609l/28187.jpg,https://images.gr-assets.com/books/1400602609s/28187.jpg\n42,1934,1934,3244642,1707,451529308,9780451529300.0,Louisa May Alcott,1868.0,Little Women,\"Little Women (Little Women, #1)\",en-US,4.04,1257121,1314293,17090,31645,70011,250794,426280,535563,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562690475l/1934._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n43,10210,10210,2977639,2568,142437204,9780142437210.0,\"Charlotte Brontë, Michael Mason\",1847.0,Jane Eyre,Jane Eyre,eng,4.1,1198557,1286135,31212,35132,64274,212294,400214,574221,https://images.gr-assets.com/books/1327867269l/10210.jpg,https://images.gr-assets.com/books/1327867269s/10210.jpg\n44,15931,15931,1498135,190,553816713,9780553816720.0,Nicholas Sparks,1996.0,The Notebook,\"The Notebook (The Notebook, #1)\",eng,4.06,1053403,1076749,17279,41395,63432,176469,298259,497194,https://images.gr-assets.com/books/1385738917l/15931.jpg,https://images.gr-assets.com/books/1385738917s/15931.jpg\n45,4214,4214,1392700,264,770430074,9780770430080.0,Yann Martel,2001.0,Life of Pi,Life of Pi,,3.88,1003228,1077431,42962,39768,74331,218702,384164,360466,https://images.gr-assets.com/books/1320562005l/4214.jpg,https://images.gr-assets.com/books/1320562005s/4214.jpg\n46,43641,43641,3441236,128,1565125606,9781565125600.0,Sara Gruen,2006.0,Water for Elephants,Water for Elephants,eng,4.07,1068146,1108839,55732,16705,49832,200154,417328,424820,https://images.gr-assets.com/books/1494428973l/43641.jpg,https://images.gr-assets.com/books/1494428973s/43641.jpg\n47,19063,19063,878368,251,375831002,9780375831000.0,Markus Zusak,2005.0,The Book Thief,The Book Thief,eng,4.36,1159741,1287798,93611,17892,35360,135272,377218,722056,https://images.gr-assets.com/books/1390053681l/19063.jpg,https://images.gr-assets.com/books/1390053681s/19063.jpg\n48,4381,4381,1272463,507,307347974,9780307347980.0,Ray Bradbury,1953.0,Fahrenheit 451,Fahrenheit 451,spa,3.97,570498,1176240,30694,28366,64289,238242,426292,419051,https://images.gr-assets.com/books/1351643740l/4381.jpg,https://images.gr-assets.com/books/1351643740s/4381.jpg\n49,49041,49041,3203964,194,316160199,9780316160190.0,Stephenie Meyer,2006.0,\"New Moon (Twilight, #2)\",\"New Moon (Twilight, #2)\",eng,3.52,1149630,1199000,44020,102837,160660,294207,290612,350684,https://images.gr-assets.com/books/1361039440l/49041.jpg,https://images.gr-assets.com/books/1361039440s/49041.jpg\n50,30119,30119,30518,45,60513039,9780060513030.0,Shel Silverstein,1974.0,Where the Sidewalk Ends: The Poems and Drawings of Shel Silverstein,Where the Sidewalk Ends,eng,4.29,1016888,1023781,9234,16590,30792,139024,293222,544153,https://images.gr-assets.com/books/1168052448l/30119.jpg,https://images.gr-assets.com/books/1168052448s/30119.jpg\n51,256683,256683,2267189,178,1416914285,9781416914280.0,Cassandra Clare,2007.0,City of Bones,\"City of Bones (The Mortal Instruments, #1)\",eng,4.12,1154031,1241799,51589,34122,65349,203466,356048,582814,https://images.gr-assets.com/books/1432730315l/256683.jpg,https://images.gr-assets.com/books/1432730315s/256683.jpg\n52,428263,428263,2675454,185,316160202,9780316160210.0,Stephenie Meyer,2007.0,Eclipse,\"Eclipse (Twilight, #3)\",en-US,3.69,1134511,1176642,35216,83094,124293,260763,309358,399134,https://images.gr-assets.com/books/1361038355l/428263.jpg,https://images.gr-assets.com/books/1361038355s/428263.jpg\n53,113436,113436,3178011,217,375826696,9780375826700.0,Christopher Paolini,2002.0,Eragon,\"Eragon (The Inheritance Cycle, #1)\",en-US,3.86,1104021,1125231,18280,50563,88536,240157,337943,408032,https://images.gr-assets.com/books/1366212852l/113436.jpg,https://images.gr-assets.com/books/1366212852s/113436.jpg\n54,11,386162,3078186,257,345391802,9780345391800.0,Douglas Adams,1979.0,The Hitchhiker's Guide to the Galaxy,\"The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy, #1)\",en-US,4.2,936782,1006479,20345,21764,41962,145173,299579,498001,https://images.gr-assets.com/books/1327656754l/11.jpg,https://images.gr-assets.com/books/1327656754s/11.jpg\n55,5129,5129,3204877,515,60929871,9780060929880.0,Aldous Huxley,1932.0,Brave New World,Brave New World,eng,3.97,1022601,1079135,20095,26367,60328,219895,389379,383166,https://images.gr-assets.com/books/1487389574l/5129.jpg,https://images.gr-assets.com/books/1487389574s/5129.jpg\n56,1162543,1162543,2960529,183,031606792X,9780316067930.0,Stephenie Meyer,2008.0,Breaking Dawn,\"Breaking Dawn (Twilight, #4)\",en-US,3.7,1070245,1107709,44550,100994,114893,213402,267706,410714,https://images.gr-assets.com/books/1361039438l/1162543.jpg,https://images.gr-assets.com/books/1361039438s/1162543.jpg\n57,37435,37435,3275013,125,142001740,9780142001740.0,Sue Monk Kidd,2001.0,The Secret Life of Bees,The Secret Life of Bees,en-US,4.01,916189,937393,26522,17500,45455,185631,347540,341267,https://images.gr-assets.com/books/1473454532l/37435.jpg,https://images.gr-assets.com/books/1473454532s/37435.jpg\n58,2956,2956,1835605,2277,142437174,9780142437180.0,\"Mark Twain, John Seelye, Guy Cardwell\",1884.0,The Adventures of Huckleberry Finn,The Adventures of Huckleberry Finn,eng,3.8,953758,1001491,12448,28467,76630,255722,344356,296316,https://images.gr-assets.com/books/1405973850l/2956.jpg,https://images.gr-assets.com/books/1405973850s/2956.jpg\n59,24178,24178,987048,180,64410935,9780064410940.0,\"E.B. White, Garth Williams, Rosemary Wells\",1952.0,Charlotte's Web,Charlotte's Web,eng,4.15,1064521,1084842,13044,18450,41124,191415,346090,487763,https://images.gr-assets.com/books/1439632243l/24178.jpg,https://images.gr-assets.com/books/1439632243s/24178.jpg\n60,1618,1618,4259809,183,1400032717,9781400032720.0,Mark Haddon,2003.0,The Curious Incident of the Dog in the Night-Time,The Curious Incident of the Dog in the Night-Time,eng,3.85,867553,915790,35796,21049,58117,218218,355925,262481,https://images.gr-assets.com/books/1479863624l/1618.jpg,https://images.gr-assets.com/books/1479863624s/1618.jpg\n61,22557272,22557272,41107568,14,1594633665,9781594633670.0,Paula Hawkins,2015.0,The Girl on the Train,The Girl on the Train,eng,3.88,1008778,1226485,93600,27773,73897,273817,488447,362551,https://images.gr-assets.com/books/1490903702l/22557272.jpg,https://images.gr-assets.com/books/1490903702s/22557272.jpg\n62,119322,119322,1536771,287,679879242,9780679879240.0,Philip Pullman,1995.0,Northern Lights,\"The Golden Compass (His Dark Materials, #1)\",eng,3.94,953970,994914,14915,38382,64591,198764,313147,380030,https://images.gr-assets.com/books/1451271747l/119322.jpg,https://images.gr-assets.com/books/1451271747s/119322.jpg\n63,6185,6185,1565818,2498,393978893,9780393978900.0,\"Emily Brontë, Richard J. Dunn\",1847.0,Wuthering Heights,Wuthering Heights,eng,3.82,899195,1001135,26157,46469,84084,215320,309180,346082,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587655304l/6185._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n64,10917,10917,1639903,125,743454537,9780743454540.0,Jodi Picoult,2004.0,My Sister's Keeper,My Sister's Keeper,eng,4.06,863879,887880,30719,17547,42763,162573,314003,350994,https://images.gr-assets.com/books/1369504683l/10917.jpg,https://images.gr-assets.com/books/1369504683s/10917.jpg\n65,4981,4981,1683562,241,385333846,9780385333850.0,Kurt Vonnegut Jr.,1969.0,\"Slaughterhouse-Five, or The Children's Crusade: A Duty-Dance with Death \",Slaughterhouse-Five,eng,4.06,846488,891762,19646,24964,45518,152442,300948,367890,https://images.gr-assets.com/books/1440319389l/4981.jpg,https://images.gr-assets.com/books/1440319389s/4981.jpg\n66,18405,18405,3358283,409,446675539,9780446675540.0,Margaret Mitchell,1936.0,Gone with the Wind,Gone with the Wind,eng,4.28,873981,897303,16050,19996,33136,116160,234290,493721,https://images.gr-assets.com/books/1328025229l/18405.jpg,https://images.gr-assets.com/books/1328025229s/18405.jpg\n67,128029,128029,3271379,197,1594489505,9781594489500.0,Khaled Hosseini,2007.0,A Thousand Splendid Suns,A Thousand Splendid Suns,eng,4.34,818742,866065,43645,6509,18015,99030,295817,446694,https://images.gr-assets.com/books/1345958969l/128029.jpg,https://images.gr-assets.com/books/1345958969s/128029.jpg\n68,22628,22628,2236198,128,671027344,9780671027350.0,Stephen Chbosky,1999.0,The Perks of Being a Wallflower,The Perks of Being a Wallflower,eng,4.21,888806,954905,47116,14286,38658,143440,297501,461020,https://images.gr-assets.com/books/1167352178l/22628.jpg,https://images.gr-assets.com/books/1167352178s/22628.jpg\n69,11735983,11735983,15524542,164,7442912,9780007442910.0,Veronica Roth,2012.0,Insurgent,\"Insurgent (Divergent, #2)\",eng,4.07,836362,947338,55873,10641,44620,182131,339977,369969,https://images.gr-assets.com/books/1325667729l/11735983.jpg,https://images.gr-assets.com/books/1325667729s/11735983.jpg\n70,375802,375802,2422333,224,812550706,9780812550700.0,Orson Scott Card,1985.0,Ender's Game,\"Ender's Game (Ender's Saga, #1)\",eng,4.3,813439,873417,38054,15330,27612,103439,264207,462829,https://images.gr-assets.com/books/1408303130l/375802.jpg,https://images.gr-assets.com/books/1408303130s/375802.jpg\n71,18490,18490,4836639,2618,141439475,9780141439470.0,\"Mary Wollstonecraft Shelley, Percy Bysshe Shelley, Maurice Hindle\",1818.0,\"Frankenstein; or, The Modern Prometheus\",Frankenstein,eng,3.75,808589,883563,19993,29366,74142,231022,300495,248538,https://images.gr-assets.com/books/1381512375l/18490.jpg,https://images.gr-assets.com/books/1381512375s/18490.jpg\n72,11588,11588,849585,289,450040186,9780450040180.0,Stephen King,1977.0,The Shining,The Shining (The Shining #1),eng,4.17,791850,830881,14936,18487,28981,123862,277393,382158,https://images.gr-assets.com/books/1353277730l/11588.jpg,https://images.gr-assets.com/books/1353277730s/11588.jpg\n73,1656001,1656001,3328799,161,316068047,9780316068050.0,Stephenie Meyer,2008.0,The Host,\"The Host (The Host, #1)\",en-US,3.84,749780,777560,39778,44215,62501,154906,227180,288758,https://images.gr-assets.com/books/1318009171l/1656001.jpg,https://images.gr-assets.com/books/1318009171s/1656001.jpg\n74,99561,99561,919292,187,142402516,9780142402510.0,John Green,2005.0,Looking for Alaska,Looking for Alaska,eng,4.09,783470,831285,47128,16940,44232,147324,262932,359857,https://images.gr-assets.com/books/1394798630l/99561.jpg,https://images.gr-assets.com/books/1394798630s/99561.jpg\n76,14935,14935,2809709,1969,141439661,9780141439660.0,\"Jane Austen, Tony Tanner, Ros Ballaster\",1811.0,Sense and Sensibility,Sense and Sensibility,eng,4.06,738894,779382,11526,18430,34699,141987,272512,311754,https://images.gr-assets.com/books/1397245675l/14935.jpg,https://images.gr-assets.com/books/1397245675s/14935.jpg\n77,38709,38709,1679789,138,439244196,9780439244190.0,\"Louis Sachar, Louis Sachar\",1998.0,Holes,\"Holes (Holes, #1)\",eng,3.93,747445,764637,15832,15495,43786,176946,269153,259257,https://images.gr-assets.com/books/1327781893l/38709.jpg,https://images.gr-assets.com/books/1327781893s/38709.jpg\n78,5139,5139,38765,129,307275558,9780307275550.0,Lauren Weisberger,2003.0,The Devil Wears Prada,\"The Devil Wears Prada (The Devil Wears Prada, #1)\",eng,3.7,665930,679845,8024,24231,58323,192366,226675,178250,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179604l/5139.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n79,1381,1381,3356006,1703,143039954,9780143039950.0,\"Homer, Robert Fagles, E.V. Rieu, Frédéric Mugler, Bernard Knox\",-720.0,Ὀδύσσεια,The Odyssey,eng,3.73,670326,710757,8101,29703,65629,183082,224120,208223,https://images.gr-assets.com/books/1390173285l/1381.jpg,https://images.gr-assets.com/books/1390173285s/1381.jpg\n80,157993,157993,2180358,1708,156012197,9780156012200.0,\"Antoine de Saint-Exupéry, Richard Howard, Dom Marcos Barbosa, Melina Karakosta\",1946.0,Le Petit Prince,The Little Prince,eng,4.28,738757,859286,24537,15039,32866,114714,228440,468227,https://images.gr-assets.com/books/1367545443l/157993.jpg,https://images.gr-assets.com/books/1367545443s/157993.jpg\n81,7445,7445,2944133,92,074324754X,9780743247540.0,Jeannette Walls,2005.0,The Glass Castle,The Glass Castle,eng,4.24,621099,637866,40777,7901,18922,85191,227750,298102,https://images.gr-assets.com/books/1400930557l/7445.jpg,https://images.gr-assets.com/books/1400930557s/7445.jpg\n82,1845,1845,3284484,108,385486804,9780385486800.0,Jon Krakauer,1996.0,Into the Wild,Into the Wild,eng,3.94,647684,665377,17299,19229,35567,135199,248287,227095,https://images.gr-assets.com/books/1403173986l/1845.jpg,https://images.gr-assets.com/books/1403173986s/1845.jpg\n83,1953,1953,2956372,525,141439602,9780141439600.0,\"Charles Dickens, Richard Maxwell, Hablot Knight Browne\",1859.0,A Tale of Two Cities,A Tale of Two Cities,eng,3.81,637412,677713,13093,28904,55555,153305,216378,223571,https://images.gr-assets.com/books/1344922523l/1953.jpg,https://images.gr-assets.com/books/1344922523s/1953.jpg\n84,7677,6424171,3376836,176,030734813X,9780307348140.0,Michael Crichton,1990.0,Jurassic Park,\"Jurassic Park (Jurassic Park, #1)\",spa,3.96,447833,650483,8143,15736,34222,138327,231583,230615,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348796998l/7677.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n85,370493,370493,30530,81,60256656,9780060256650.0,Shel Silverstein,1964.0,The Giving Tree,The Giving Tree,eng,4.38,702332,708287,14368,15345,20408,76071,167542,428921,https://images.gr-assets.com/books/1174210942l/370493.jpg,https://images.gr-assets.com/books/1174210942s/370493.jpg\n86,32542,32542,1804929,158,385338600,9780385338610.0,John Grisham,1989.0,A Time to Kill,A Time to Kill,eng,4.03,597775,608824,4239,12106,25938,122675,218617,229488,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554303029l/32542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n87,1617,1617,265616,109,374500010,9780374500020.0,\"Elie Wiesel, Marion Wiesel\",1958.0,Un di Velt Hot Geshvign,Night (The Night Trilogy #1),eng,4.3,691231,707879,22001,7761,18539,90575,230227,360777,https://images.gr-assets.com/books/1473495285l/1617.jpg,https://images.gr-assets.com/books/1473495285s/1617.jpg\n88,6442769,6442769,3364505,178,014241493X,9780142414930.0,John Green,2008.0,Paper Towns,Paper Towns,en-US,3.88,461311,655271,42717,14105,47183,154479,223895,215609,https://images.gr-assets.com/books/1349013610l/6442769.jpg,https://images.gr-assets.com/books/1349013610s/6442769.jpg\n89,21787,21787,992628,129,345418263,9780345418260.0,William Goldman,1973.0,The Princess Bride,The Princess Bride ,en-US,4.25,628637,658042,15630,12883,21641,89236,196047,338235,https://images.gr-assets.com/books/1327903636l/21787.jpg,https://images.gr-assets.com/books/1327903636s/21787.jpg\n90,231804,231804,1426690,156,014038572X,9780140385720.0,S.E. Hinton,1967.0,The Outsiders,The Outsiders,en-US,4.06,659248,680437,22662,10178,34346,134244,227250,274419,https://images.gr-assets.com/books/1442129426l/231804.jpg,https://images.gr-assets.com/books/1442129426s/231804.jpg\n91,6186357,6186357,6366642,147,385737947,9780385737940.0,James Dashner,2009.0,The Maze Runner,\"The Maze Runner (Maze Runner, #1)\",eng,4.02,719925,777956,48942,15291,43370,150488,266698,302109,https://images.gr-assets.com/books/1375596592l/6186357.jpg,https://images.gr-assets.com/books/1375596592s/6186357.jpg\n92,1202,1202,5397,124,61234001,9780061234000.0,\"Steven D. Levitt, Stephen J. Dubner\",2005.0,Freakonomics: A Rogue Economist Explores the Hidden Side of Everything,\"Freakonomics: A Rogue Economist Explores the Hidden Side of Everything (Freakonomics, #1)\",en-US,3.93,524191,549301,13668,14586,26538,115789,216316,176072,https://images.gr-assets.com/books/1327909092l/1202.jpg,https://images.gr-assets.com/books/1327909092s/1202.jpg\n93,2998,2998,3186437,1350,517189607,9780517189600.0,Frances Hodgson Burnett,1911.0,The Secret Garden,The Secret Garden,eng,4.12,639357,692249,13054,8005,25207,129646,243821,285570,https://images.gr-assets.com/books/1327873635l/2998.jpg,https://images.gr-assets.com/books/1327873635s/2998.jpg\n94,320,320,3295655,555,60531045,9780060531040.0,\"Gabriel García Márquez, Gregory Rabassa\",1967.0,Cien años de soledad,One Hundred Years of Solitude,eng,4.04,490565,575667,21671,27340,37646,87675,155809,267197,https://images.gr-assets.com/books/1327881361l/320.jpg,https://images.gr-assets.com/books/1327881361s/320.jpg\n95,5297,5297,1858012,2303,375751513,9780375751520.0,\"Oscar Wilde, Jeffrey Eugenides\",1891.0,The Picture of Dorian Gray,The Picture of Dorian Gray,eng,4.06,590014,674551,19647,9825,30735,129420,246892,257679,https://images.gr-assets.com/books/1424596966l/5297.jpg,https://images.gr-assets.com/books/1424596966s/5297.jpg\n96,13536860,13536860,18034963,133,345803507,9780345803500.0,E.L. James,2012.0,Fifty Shades Freed,\"Fifty Shades Freed (Fifty Shades, #3)\",eng,3.88,387290,610116,25287,39079,55691,109963,140304,265079,https://images.gr-assets.com/books/1336418837l/13536860.jpg,https://images.gr-assets.com/books/1336418837s/13536860.jpg\n97,17245,17245,3165724,2207,393970124,9780393970130.0,\"Bram Stoker, Nina Auerbach, David J. Skal\",1897.0,Dracula,Dracula,eng,3.98,618973,689739,17263,11756,36719,151396,246043,243825,https://images.gr-assets.com/books/1387151694l/17245.jpg,https://images.gr-assets.com/books/1387151694s/17245.jpg\n98,5060378,5060378,6976108,209,307269981,9780307269980.0,\"Stieg Larsson, Reg Keeland\",2006.0,Flickan som lekte med elden,\"The Girl Who Played with Fire (Millennium, #2)\",eng,4.22,563994,649253,31423,4623,15781,91021,258236,279592,https://images.gr-assets.com/books/1351778881l/5060378.jpg,https://images.gr-assets.com/books/1351778881s/5060378.jpg\n99,11857408,11857408,16813814,147,1612130585,9781612130580.0,E.L. James,2011.0,Fifty Shades Darker,\"Fifty Shades Darker (Fifty Shades, #2)\",eng,3.87,552059,623340,28052,37245,58935,114203,150906,262051,https://images.gr-assets.com/books/1358266080l/11857408.jpg,https://images.gr-assets.com/books/1358266080s/11857408.jpg\n100,7244,7244,810663,39,60786507,9780060786500.0,Barbara Kingsolver,1998.0,The Poisonwood Bible,The Poisonwood Bible,eng,4.02,546502,562787,19941,21699,33702,92590,175725,239071,https://images.gr-assets.com/books/1412242487l/7244.jpg,https://images.gr-assets.com/books/1412242487s/7244.jpg\n101,4137,4137,1030767,59,349113912,9780349113910.0,David Sedaris,2000.0,Me Talk Pretty One Day,Me Talk Pretty One Day,eng,3.97,495736,514276,14982,19718,29034,93427,178021,194076,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431013639l/4137.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n102,19543,19543,3020535,110,99408392,9780099408390.0,Maurice Sendak,1963.0,Where the Wild Things Are,Where the Wild Things Are,eng,4.22,620618,636061,9102,15392,27532,93700,167043,332394,https://images.gr-assets.com/books/1384434560l/19543.jpg,https://images.gr-assets.com/books/1384434560s/19543.jpg\n103,7126,7126,391568,1310,140449264,9780140449270.0,\"Alexandre Dumas, Robin Buss\",1844.0,Le Comte de Monte-Cristo,The Count of Monte Cristo,eng,4.21,555822,601220,15925,10381,22482,89980,183142,295235,https://images.gr-assets.com/books/1309203605l/7126.jpg,https://images.gr-assets.com/books/1309203605s/7126.jpg\n104,6288,6288,3355573,181,307265439,9780307265430.0,Cormac McCarthy,2006.0,The Road,The Road,eng,3.95,504793,555787,38980,20086,36561,100989,190823,207328,https://images.gr-assets.com/books/1439197219l/6288.jpg,https://images.gr-assets.com/books/1439197219s/6288.jpg\n105,18710190,18710190,15524549,153,7524277,9780007524270.0,Veronica Roth,2013.0,Allegiant,\"Allegiant (Divergent, #3)\",eng,3.63,463257,663226,62536,31626,78366,176061,192785,184388,https://images.gr-assets.com/books/1395582745l/18710190.jpg,https://images.gr-assets.com/books/1395582745s/18710190.jpg\n106,9418327,9418327,14302659,48,,,Tina Fey,2011.0,Bossypants,Bossypants,eng,3.94,506250,609260,35142,14842,31761,129390,230080,203187,https://images.gr-assets.com/books/1481509554l/9418327.jpg,https://images.gr-assets.com/books/1481509554s/9418327.jpg\n107,3473,3473,3143497,131,446693804,9780446693810.0,Nicholas Sparks,1999.0,A Walk to Remember,A Walk to Remember,en-US,4.15,546948,559581,11071,10640,24094,94327,169650,260870,https://images.gr-assets.com/books/1385738968l/3473.jpg,https://images.gr-assets.com/books/1385738968s/3473.jpg\n108,9416,9416,3237433,144,440241413,9780440241420.0,Sophie Kinsella,2000.0,Confessions of a Shopaholic,\"Confessions of a Shopaholic (Shopaholic, #1)\",eng,3.61,543658,558004,11170,30705,56949,156636,166927,146787,https://images.gr-assets.com/books/1327872404l/9416.jpg,https://images.gr-assets.com/books/1327872404s/9416.jpg\n109,24280,24280,3208463,1319,451525264,9780451525260.0,\"Victor Hugo, Lee Fahnestock, Norman MacAfee\",1862.0,Les Misérables,Les Misérables,eng,4.14,513407,560132,12505,15225,25914,87461,167385,264147,https://images.gr-assets.com/books/1411852091l/24280.jpg,https://images.gr-assets.com/books/1411852091s/24280.jpg\n110,10572,10572,3272005,202,553381695,9780553381700.0,George R.R. Martin,1998.0,A Clash of Kings,\"A Clash of Kings  (A Song of Ice and Fire, #2)\",eng,4.4,523303,606765,20325,1788,7104,56167,221706,320000,https://images.gr-assets.com/books/1358254974l/10572.jpg,https://images.gr-assets.com/books/1358254974s/10572.jpg\n111,10441,10441,2868431,98,143037145,9780143037150.0,Kim Edwards,2005.0,The Memory Keeper's Daughter,The Memory Keeper's Daughter,eng,3.64,501430,510582,18027,19453,47004,145437,183150,115538,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1552112312l/10441._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n112,15507958,15507958,17763198,168,670026603,9780670026610.0,Jojo Moyes,2012.0,Me Before You,\"Me Before You (Me Before You, #1)\",eng,4.27,587647,741133,71412,10346,21880,91517,249474,367916,https://images.gr-assets.com/books/1357108762l/15507958.jpg,https://images.gr-assets.com/books/1357108762s/15507958.jpg\n113,168668,168668,814330,251,684833395,9780684833390.0,Joseph Heller,1961.0,Catch-22,Catch-22,en-US,3.98,563265,582515,13734,20639,37912,106269,186745,230950,https://images.gr-assets.com/books/1463157317l/168668.jpg,https://images.gr-assets.com/books/1463157317s/168668.jpg\n114,6900,6900,1995335,172,751529818,9780751529810.0,\"Mitch Albom, Saulius Dagys\",1997.0,Tuesdays with Morrie,Tuesdays with Morrie,eng,4.06,556518,584397,19272,11507,30534,107446,194448,240462,https://images.gr-assets.com/books/1423763749l/6900.jpg,https://images.gr-assets.com/books/1423763749s/6900.jpg\n115,2187,2187,1352495,125,312422156,9780312422160.0,Jeffrey Eugenides,2002.0,Middlesex,Middlesex,en-US,3.98,488243,507998,20880,19329,30503,89740,171099,197327,https://images.gr-assets.com/books/1437029776l/2187.jpg,https://images.gr-assets.com/books/1437029776s/2187.jpg\n116,24583,24583,41326609,2448,143039563,9780143039560.0,\"Mark Twain, Guy Cardwell, John Seelye\",1876.0,The Adventures of Tom Sawyer,The Adventures of Tom Sawyer,eng,3.89,555359,594226,7165,12130,34349,143659,217896,186192,https://images.gr-assets.com/books/1404811979l/24583.jpg,https://images.gr-assets.com/books/1404811979s/24583.jpg\n117,18131,18131,948387,165,440498058,9780440498060.0,Madeleine L'Engle,1962.0,A Wrinkle in Time,\"A Wrinkle in Time (A Wrinkle in Time Quintet, #1)\",en-US,4.04,615907,650094,19413,17313,34988,119115,209745,268933,https://images.gr-assets.com/books/1329061522l/18131.jpg,https://images.gr-assets.com/books/1329061522s/18131.jpg\n118,7763,7763,1955658,126,143038095,9780143038090.0,Amy Tan,1989.0,The Joy Luck Club,The Joy Luck Club,eng,3.9,515090,525243,6708,14802,30197,116748,195930,167566,https://images.gr-assets.com/books/1304978653l/7763.jpg,https://images.gr-assets.com/books/1304978653s/7763.jpg\n119,38447,38447,1119185,236,038549081X,9780385490820.0,Margaret Atwood,1985.0,The Handmaid's Tale,The Handmaid's Tale,eng,4.06,607889,683564,35925,13998,32561,116975,252942,267088,https://images.gr-assets.com/books/1498057733l/38447.jpg,https://images.gr-assets.com/books/1498057733s/38447.jpg\n120,452306,452306,1058370,93,385729332,9780385729340.0,Ann Brashares,2001.0,The Sisterhood of the Traveling Pants,\"The Sisterhood of the Traveling Pants (Sisterhood, #1)\",eng,3.75,525706,536604,6477,14996,42396,152024,177404,149784,https://images.gr-assets.com/books/1461611233l/452306.jpg,https://images.gr-assets.com/books/1461611233s/452306.jpg\n121,7604,7604,1268631,370,,,\"Vladimir Nabokov, Craig Raine\",1955.0,Lolita,Lolita,eng,3.88,469836,517990,18107,21091,37205,108664,165477,185553,https://images.gr-assets.com/books/1377756377l/7604.jpg,https://images.gr-assets.com/books/1377756377s/7604.jpg\n122,37442,37442,1479280,80,60987103,9780060987110.0,\"Gregory Maguire, Douglas Smith\",1995.0,Wicked: The Life and Times of the Wicked Witch of the West,\"Wicked: The Life and Times of the Wicked Witch of the West (The Wicked Years, #1)\",eng,3.52,506900,525498,22926,40802,65835,132061,153583,133217,https://images.gr-assets.com/books/1437733293l/37442.jpg,https://images.gr-assets.com/books/1437733293s/37442.jpg\n123,5358,5358,38270,11,582418275,9780582418270.0,John Grisham,1991.0,The Firm,\"The Firm (Penguin Readers, Level 5)\",eng,3.99,488269,488355,3139,5075,20119,111543,190966,160652,https://images.gr-assets.com/books/1418465200l/5358.jpg,https://images.gr-assets.com/books/1418465200s/5358.jpg\n124,7937843,7937843,9585076,151,316098337,9780316098340.0,Emma Donoghue,2010.0,Room,Room,eng,4.03,511360,556327,42254,11020,26079,99831,217995,201402,https://images.gr-assets.com/books/1344265419l/7937843.jpg,https://images.gr-assets.com/books/1344265419s/7937843.jpg\n125,1420,1420,1885548,1929,521618746,9780521618750.0,\"William Shakespeare, Richard Andrews, Rex Gibson\",1600.0,\"The Tragicall Historie of Hamlet, Prince of Denmark\",Hamlet,eng,4.0,515820,576894,8889,10413,32697,121040,192937,219807,https://images.gr-assets.com/books/1351051208l/1420.jpg,https://images.gr-assets.com/books/1351051208s/1420.jpg\n126,234225,234225,3634639,241,340839937,9780340839940.0,Frank Herbert,1965.0,Dune,Dune (Dune Chronicles #1),eng,4.19,485032,525976,13239,13354,22778,74206,154771,260867,https://images.gr-assets.com/books/1434908555l/234225.jpg,https://images.gr-assets.com/books/1434908555s/234225.jpg\n127,2612,2612,2124255,100,316346624,9780316346630.0,Malcolm Gladwell,2000.0,The Tipping Point: How Little Things Can Make a Big Difference,The Tipping Point: How Little Things Can Make a Big Difference,eng,3.92,490504,499066,10895,15111,25871,106453,189120,162511,https://images.gr-assets.com/books/1473396980l/2612.jpg,https://images.gr-assets.com/books/1473396980s/2612.jpg\n128,11084145,11084145,16005831,190,1451648537,9781451648540.0,Walter Isaacson,2011.0,Steve Jobs,Steve Jobs,eng,4.09,560715,579256,15198,19680,21986,88456,203975,245159,https://images.gr-assets.com/books/1327861368l/11084145.jpg,https://images.gr-assets.com/books/1327861368s/11084145.jpg\n129,332613,332613,2100252,275,451163966,9780451163970.0,Ken Kesey,1962.0,One Flew Over the Cuckoo's Nest,One Flew Over the Cuckoo's Nest,eng,4.18,491642,514458,7855,5672,15978,78714,191622,222472,https://images.gr-assets.com/books/1485308778l/332613.jpg,https://images.gr-assets.com/books/1485308778s/332613.jpg\n130,2165,2165,69741,666,684830493,9780684830490.0,Ernest Hemingway,1952.0,The Old Man and the Sea,The Old Man and the Sea,eng,3.73,520630,574328,16716,28645,52583,136217,186747,170136,https://images.gr-assets.com/books/1329189714l/2165.jpg,https://images.gr-assets.com/books/1329189714s/2165.jpg\n131,4395,18114322,2931549,381,142000663,9780142000660.0,John Steinbeck,1939.0,The Grapes of Wrath,The Grapes of Wrath,eng,3.92,322321,553352,12991,23552,40261,103475,173589,212475,https://images.gr-assets.com/books/1352912927l/4395.jpg,https://images.gr-assets.com/books/1352912927s/4395.jpg\n132,3431,3431,2561472,123,1401308589,9781401308580.0,Mitch Albom,2003.0,The Five People You Meet in Heaven,The Five People You Meet in Heaven,,3.9,449501,474699,16682,12360,33669,107800,155830,165040,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200541l/3431.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n133,8127,8127,3464264,1314,451528824,9780451528830.0,L.M. Montgomery,1908.0,Anne of Green Gables,\"Anne of Green Gables (Anne of Green Gables, #1)\",eng,4.23,502247,533352,14041,8864,19531,80256,158725,265976,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789015l/8127.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n134,3777732,3777732,3443248,122,1416914307,9781416914300.0,Cassandra Clare,2009.0,City of Glass,\"City of Glass (The Mortal Instruments, #3)\",en-US,4.34,593173,630560,22736,6646,17351,79202,179290,348071,https://images.gr-assets.com/books/1369452339l/3777732.jpg,https://images.gr-assets.com/books/1369452339s/3777732.jpg\n135,62291,62291,1164465,175,055357342X,9780553573430.0,George R.R. Martin,2000.0,A Storm of Swords,\"A Storm of Swords (A Song of Ice and Fire, #3)\",eng,4.54,469022,527644,19497,1456,4820,36418,149268,335682,https://images.gr-assets.com/books/1497931121l/62291.jpg,https://images.gr-assets.com/books/1497931121s/62291.jpg\n136,137791,137791,1010054,75,006075995X,9780060759960.0,Rebecca Wells,1996.0,Divine Secrets of the Ya-Ya Sisterhood,Divine Secrets of the Ya-Ya Sisterhood,en-US,3.79,465676,470508,3867,15795,35314,120396,158451,140552,https://images.gr-assets.com/books/1408313524l/137791.jpg,https://images.gr-assets.com/books/1408313524s/137791.jpg\n137,10964,10964,2489796,189,440242940,9780440242950.0,Diana Gabaldon,1991.0,Outlander,\"Outlander (Outlander, #1)\",eng,4.2,515547,578842,36707,20998,27673,73126,147085,309960,https://images.gr-assets.com/books/1402600310l/10964.jpg,https://images.gr-assets.com/books/1402600310s/10964.jpg\n138,12296,12296,4925227,1579,142437263,9780142437260.0,\"Nathaniel Hawthorne, Thomas E. Connolly, Nina Baym\",1850.0,The Scarlet Letter,The Scarlet Letter,eng,3.37,509883,559246,11428,34813,80444,182701,165079,96209,https://images.gr-assets.com/books/1404810944l/12296.jpg,https://images.gr-assets.com/books/1404810944s/12296.jpg\n139,9460487,9460487,14345371,155,1594744769,9781594744760.0,Ransom Riggs,2011.0,Miss Peregrine’s Home for Peculiar Children,\"Miss Peregrine’s Home for Peculiar Children (Miss Peregrine’s Peculiar Children, #1)\",en-US,3.89,613674,672222,53569,14920,45434,159227,234792,217849,https://images.gr-assets.com/books/1472782916l/9460487.jpg,https://images.gr-assets.com/books/1472782916s/9460487.jpg\n140,6892870,6892870,12883496,193,030726999X,9780307270000.0,\"Stieg Larsson, Reg Keeland\",2007.0,Luftslottet som sprängdes,\"The Girl Who Kicked the Hornet's Nest (Millennium, #3)\",en-US,4.2,443951,526791,26766,3823,14773,78387,203297,226511,https://images.gr-assets.com/books/1327708260l/6892870.jpg,https://images.gr-assets.com/books/1327708260s/6892870.jpg\n141,18007564,18007564,21825181,148,804139024,9780804139020.0,Andy Weir,2012.0,The Martian,The Martian,eng,4.39,423344,529702,61298,4114,10856,49200,173861,291671,https://images.gr-assets.com/books/1413706054l/18007564.jpg,https://images.gr-assets.com/books/1413706054s/18007564.jpg\n142,5043,5043,3359698,255,451207149,9780451207140.0,Ken Follett,1989.0,The Pillars of the Earth,\"The Pillars of the Earth (The Kingsbridge Series, #1)\",eng,4.29,462517,495893,26283,9248,16886,57825,148052,263882,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1576956100l/5043.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n144,8664353,8664353,12946965,16,1400064163,9781400064170.0,Laura Hillenbrand,2010.0,\"Unbroken: A World War II Story of Survival, Resilience, and Redemption\",\"Unbroken: A World War II Story of Survival, Resilience, and Redemption\",eng,4.4,487775,528552,41572,10308,12874,47828,144203,313339,https://images.gr-assets.com/books/1327861115l/8664353.jpg,https://images.gr-assets.com/books/1327861115s/8664353.jpg\n145,976,976,3135896,180,671027387,9780671027380.0,Dan Brown,2001.0,Deception Point,Deception Point,eng,3.67,455610,479733,7798,14380,45006,143182,160819,116346,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1551277487l/976._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n146,17333223,17333223,24065147,108,316055433,9780316055440.0,Donna Tartt,2013.0,The Goldfinch,The Goldfinch,eng,3.87,396756,463847,44631,19164,35300,93459,153459,162465,https://images.gr-assets.com/books/1451554970l/17333223.jpg,https://images.gr-assets.com/books/1451554970s/17333223.jpg\n147,1217100,29844228,2588213,150,1595141715,9781595141710.0,Jay Asher,2007.0,Thirteen Reasons Why,Thirteen Reasons Why,eng,4.02,463783,571281,43467,15246,35668,105414,179197,235756,https://images.gr-assets.com/books/1333822506l/1217100.jpg,https://images.gr-assets.com/books/1333822506s/1217100.jpg\n148,2865,2865,3358875,169,452287022,9780452287020.0,Tracy Chevalier,1999.0,Girl with a Pearl Earring,Girl with a Pearl Earring,eng,3.85,467577,492177,8011,11525,28287,123463,189656,139246,https://images.gr-assets.com/books/1327197580l/2865.jpg,https://images.gr-assets.com/books/1327197580s/2865.jpg\n149,4374400,4374400,4422413,130,525421033,9780525421030.0,Gayle Forman,2009.0,If I Stay,\"If I Stay (If I Stay, #1)\",en-US,3.96,503527,567087,34959,12666,34896,122977,190793,205755,https://images.gr-assets.com/books/1347462970l/4374400.jpg,https://images.gr-assets.com/books/1347462970s/4374400.jpg\n150,4989,4989,1041558,80,312353766,9780312353770.0,Anita Diamant,1997.0,The Red Tent,The Red Tent,en-US,4.16,424981,449217,17234,9470,19616,67878,146178,206075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405739117l/4989.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n151,28186,28186,43554,121,786856866,9780786856860.0,Rick Riordan,2006.0,The Sea of Monsters,\"The Sea of Monsters (Percy Jackson and the Olympians, #2)\",eng,4.23,514932,550512,20097,2967,13884,91127,188988,253546,https://images.gr-assets.com/books/1400602661l/28186.jpg,https://images.gr-assets.com/books/1400602661s/28186.jpg\n152,5526,5526,3222389,111,446528056,9780446528050.0,Nicholas Sparks,2006.0,Dear John,Dear John,en-US,4.01,441062,454781,10626,9683,25220,94711,145202,179965,https://images.gr-assets.com/books/1397749854l/5526.jpg,https://images.gr-assets.com/books/1397749854s/5526.jpg\n153,1582996,1582996,1575860,125,1416914293,9781416914300.0,Cassandra Clare,2008.0,City of Ashes,\"City of Ashes (The Mortal Instruments, #2)\",eng,4.21,541117,586008,23643,6135,20075,92626,192934,274238,https://images.gr-assets.com/books/1432730356l/1582996.jpg,https://images.gr-assets.com/books/1432730356s/1582996.jpg\n154,8852,8852,1896522,1732,743477103,9780743477110.0,William Shakespeare,1606.0,The Tragedy of Macbeth,Macbeth,eng,3.88,496018,524826,7609,10551,35408,127354,183871,167642,https://images.gr-assets.com/books/1459795224l/8852.jpg,https://images.gr-assets.com/books/1459795224s/8852.jpg\n155,15241,15241,2963845,453,618346260,9780618346260.0,J.R.R. Tolkien,1954.0,The Two Towers,\"The Two Towers (The Lord of the Rings, #2)\",en-US,4.42,480446,532209,6980,3013,10264,55433,156232,307267,https://images.gr-assets.com/books/1298415523l/15241.jpg,https://images.gr-assets.com/books/1298415523s/15241.jpg\n156,42156,42156,1789440,65,031232118X,9780312321180.0,Emily Giffin,2004.0,Something Borrowed,\"Something Borrowed (Darcy & Rachel, #1)\",eng,3.83,403601,435189,11567,16019,29297,104322,148507,137044,https://images.gr-assets.com/books/1305063535l/42156.jpg,https://images.gr-assets.com/books/1305063535s/42156.jpg\n157,23772,23772,86934,72,394800168,9780394800160.0,\"Dr. Seuss, לאה נאור\",1960.0,Green Eggs and Ham,Green Eggs and Ham,en-US,4.29,457475,461041,7370,6605,14530,66873,121751,251282,https://images.gr-assets.com/books/1468680100l/23772.jpg,https://images.gr-assets.com/books/1468680100s/23772.jpg\n158,6310,6310,2765786,338,142403881,9780142403880.0,\"Roald Dahl, Quentin Blake\",1964.0,Charlie and the Chocolate Factory,\"Charlie and the Chocolate Factory (Charlie Bucket, #1)\",eng,4.1,453959,494747,8473,6236,17193,94240,178216,198862,https://images.gr-assets.com/books/1309211401l/6310.jpg,https://images.gr-assets.com/books/1309211401s/6310.jpg\n159,2120932,2120932,2377629,92,1423101464,9781423101470.0,Rick Riordan,2008.0,The Battle of the Labyrinth,\"The Battle of the Labyrinth (Percy Jackson and the Olympians, #4)\",eng,4.39,508214,537708,14098,2435,8093,62108,172289,292783,https://images.gr-assets.com/books/1443142158l/2120932.jpg,https://images.gr-assets.com/books/1443142158s/2120932.jpg\n160,2623,2623,2612809,1725,192833596,9780192833590.0,Charles Dickens,1860.0,Great Expectations,Great Expectations,eng,3.75,459247,507187,12311,22811,44293,120385,170702,148996,https://images.gr-assets.com/books/1327920219l/2623.jpg,https://images.gr-assets.com/books/1327920219s/2623.jpg\n161,18512,18512,2964424,470,345339738,9780345339740.0,J.R.R. Tolkien,1955.0,The Return of the King,\"The Return of the King (The Lord of the Rings, #3)\",en-US,4.51,463959,510537,6644,2691,8008,42693,132149,324996,https://images.gr-assets.com/books/1389977161l/18512.jpg,https://images.gr-assets.com/books/1389977161s/18512.jpg\n162,49552,49552,3324344,675,,,\"Albert Camus, Matthew    Ward\",1942.0,L’Étranger,The Stranger,eng,3.96,420600,483623,14836,10563,28920,100140,174957,169043,https://images.gr-assets.com/books/1349927872l/49552.jpg,https://images.gr-assets.com/books/1349927872s/49552.jpg\n163,7736182,7736182,10107891,72,142311339X,9781423113390.0,Rick Riordan,2010.0,The Lost Hero,\"The Lost Hero (The Heroes of Olympus, #1)\",eng,4.35,271576,489495,17107,5020,11267,58590,148498,266120,https://images.gr-assets.com/books/1464201003l/7736182.jpg,https://images.gr-assets.com/books/1464201003s/7736182.jpg\n164,15745753,15745753,17225055,103,1250012570,9781250012580.0,Rainbow Rowell,2013.0,Eleanor & Park,Eleanor & Park,eng,4.11,514312,579753,53005,12904,26371,94470,196224,249784,https://images.gr-assets.com/books/1341952742l/15745753.jpg,https://images.gr-assets.com/books/1341952742s/15745753.jpg\n165,13497,13497,1019062,176,055358202X,9780553582020.0,George R.R. Martin,2005.0,A Feast for Crows,\"A Feast for Crows (A Song of Ice and Fire, #4)\",en-US,4.1,428186,481130,18876,3170,18574,94401,175973,189012,https://images.gr-assets.com/books/1429538615l/13497.jpg,https://images.gr-assets.com/books/1429538615s/13497.jpg\n166,7735333,7735333,9631645,84,525423648,9780525423640.0,Ally Condie,2010.0,Matched,\"Matched (Matched, #1)\",eng,3.68,511815,530680,30226,24343,53804,138030,165412,149091,https://images.gr-assets.com/books/1367706191l/7735333.jpg,https://images.gr-assets.com/books/1367706191s/7735333.jpg\n167,4407,30165203,1970226,196,747263744,9780747263750.0,Neil Gaiman,2001.0,American Gods,\"American Gods (American Gods, #1)\",eng,4.11,378019,518343,27587,9888,24944,83253,178346,221912,https://images.gr-assets.com/books/1258417001l/4407.jpg,https://images.gr-assets.com/books/1258417001s/4407.jpg\n168,149267,149267,1742269,195,385199570,9780385199580.0,\"Stephen King, Bernie Wrightson\",1978.0,The Stand,The Stand,en-US,4.34,438832,469953,13808,5647,13612,56722,134098,259874,https://images.gr-assets.com/books/1213131305l/149267.jpg,https://images.gr-assets.com/books/1213131305s/149267.jpg\n169,6400090,6400090,6588800,95,446547565,9780446547570.0,Nicholas Sparks,2008.0,The Last Song,The Last Song,en-GB,4.14,424637,438429,11051,7253,17803,77712,140241,195420,https://images.gr-assets.com/books/1286549186l/6400090.jpg,https://images.gr-assets.com/books/1286549186s/6400090.jpg\n170,11125,11125,40195,185,552151696,9780552151700.0,Dan Brown,1998.0,Digital Fortress,Digital Fortress,en-GB,3.6,423019,447503,7538,16592,47507,136196,144029,103179,https://images.gr-assets.com/books/1360095966l/11125.jpg,https://images.gr-assets.com/books/1360095966s/11125.jpg\n171,6969,6969,3360164,1710,141439580,9780141439590.0,\"Jane Austen, Fiona Stafford\",1815.0,Emma,Emma,eng,3.99,459826,497949,11724,11386,25777,102144,178238,180404,https://images.gr-assets.com/books/1373627931l/6969.jpg,https://images.gr-assets.com/books/1373627931s/6969.jpg\n172,15823480,15823480,2507928,1492,345803922,9780345803920.0,\"Leo Tolstoy, Louise Maude, Leo Tolstoj, Aylmer Maude\",1877.0,Анна Каренина,Anna Karenina,eng,4.02,297472,472796,18064,11738,26945,88365,158179,187569,https://images.gr-assets.com/books/1352422904l/15823480.jpg,https://images.gr-assets.com/books/1352422904s/15823480.jpg\n173,227463,227463,23596,283,393312836,9780393312840.0,Anthony Burgess,1962.0,A Clockwork Orange,A Clockwork Orange,eng,3.98,431195,454391,9958,14741,24244,84863,163488,167055,https://images.gr-assets.com/books/1348339306l/227463.jpg,https://images.gr-assets.com/books/1348339306s/227463.jpg\n174,1812457,1812457,2666268,134,964729237,9780964729230.0,William Paul Young,2007.0,The Shack: Where Tragedy Confronts Eternity,The Shack,eng,3.74,419539,438292,29377,35734,42977,84751,111923,162907,https://images.gr-assets.com/books/1344270232l/1812457.jpg,https://images.gr-assets.com/books/1344270232s/1812457.jpg\n175,4502507,4556058,4551489,87,739380338,9780739380340.0,Rick Riordan,2009.0,The Last Olympian,\"The Last Olympian (Percy Jackson and the Olympians, #5)\",eng,4.5,397500,499510,17693,2098,6501,45208,133168,312535,https://images.gr-assets.com/books/1327924597l/4502507.jpg,https://images.gr-assets.com/books/1327924597s/4502507.jpg\n176,18342,830502,150259,7,451169514,9780451169520.0,Stephen King,1986.0,It,It,en-US,4.18,292592,479381,11698,8464,19610,75841,148672,226794,https://images.gr-assets.com/books/1309376909l/18342.jpg,https://images.gr-assets.com/books/1309376909s/18342.jpg\n177,7144,7144,3393917,1714,143058142,9780143058140.0,\"Fyodor Dostoyevsky, David McDuff\",1866.0,Преступление и наказание,Crime and Punishment,eng,4.18,380903,444675,12605,9477,20078,64050,137104,213966,https://images.gr-assets.com/books/1382846449l/7144.jpg,https://images.gr-assets.com/books/1382846449s/7144.jpg\n178,6514,6514,1385044,246,61148512,9780061148510.0,Sylvia Plath,1963.0,The Bell Jar,The Bell Jar,en-US,3.98,401605,442157,15963,8266,23983,92408,162216,155284,https://images.gr-assets.com/books/1473890514l/6514.jpg,https://images.gr-assets.com/books/1473890514s/6514.jpg\n179,252577,252577,2883783,184,7205236,9780007205230.0,Frank McCourt,1996.0,Angela's Ashes: A Memoir,\"Angela's Ashes (Frank McCourt, #1)\",eng,4.07,392103,419746,9798,7657,18327,73550,155775,164437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348317139l/252577.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n180,52036,52036,4840290,972,553208845,9780553208850.0,\"Hermann Hesse, Hilda Rosner\",1922.0,Siddhartha,Siddhartha,eng,3.99,372099,418653,11518,10229,25529,83698,138837,160360,https://images.gr-assets.com/books/1428715580l/52036.jpg,https://images.gr-assets.com/books/1428715580s/52036.jpg\n181,168642,168642,1940709,223,679745580,9780679745590.0,Truman Capote,1965.0,In Cold Blood,In Cold Blood,eng,4.05,381652,401839,11754,10639,17836,70857,144616,157891,https://images.gr-assets.com/books/1424931136l/168642.jpg,https://images.gr-assets.com/books/1424931136s/168642.jpg\n182,6304335,6304335,6488966,119,316042676,9780316042670.0,\"Kami Garcia, Margaret Stohl\",2009.0,Beautiful Creatures,\"Beautiful Creatures (Caster Chronicles, #1)\",eng,3.76,436093,458518,20808,19917,43525,113352,132492,149232,https://images.gr-assets.com/books/1327873282l/6304335.jpg,https://images.gr-assets.com/books/1327873282s/6304335.jpg\n183,7171637,7171637,6674837,103,1416975861,9781416975860.0,Cassandra Clare,2010.0,Clockwork Angel,\"Clockwork Angel (The Infernal Devices, #1)\",eng,4.33,490890,515759,24385,8364,15544,61409,140928,289514,https://images.gr-assets.com/books/1454962884l/7171637.jpg,https://images.gr-assets.com/books/1454962884s/7171637.jpg\n184,39988,39988,1015554,242,141301066,9780141301070.0,\"Roald Dahl, Quentin Blake\",1988.0,Matilda,Matilda,eng,4.29,440743,463491,11053,4277,10823,64536,152003,231852,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388793265l/39988.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n185,9361589,9361589,14245059,119,385534639,9780385534640.0,Erin Morgenstern,2011.0,The Night Circus,The Night Circus,eng,4.03,429543,474826,54008,11349,28650,84254,159596,190977,https://images.gr-assets.com/books/1387124618l/9361589.jpg,https://images.gr-assets.com/books/1387124618s/9361589.jpg\n186,37470,37470,3248536,111,743227441,9780743227440.0,Philippa Gregory,2001.0,The Other Boleyn Girl,\"The Other Boleyn Girl (The Plantagenet and Tudor Novels, #9)\",eng,4.04,381080,399223,15846,5311,16716,78620,153807,144769,https://images.gr-assets.com/books/1355932638l/37470.jpg,https://images.gr-assets.com/books/1355932638s/37470.jpg\n187,24770,24770,2895388,98,689865384,9780689865380.0,Scott Westerfeld,2005.0,Uglies,\"Uglies (Uglies, #1)\",eng,3.86,449073,464589,21234,15531,34808,106086,151540,156624,https://images.gr-assets.com/books/1443904172l/24770.jpg,https://images.gr-assets.com/books/1443904172s/24770.jpg\n188,10664113,10664113,2936175,115,,,George R.R. Martin,2011.0,A Dance with Dragons,\"A Dance with Dragons (A Song of Ice and Fire, #5)\",eng,4.31,365954,424618,20072,2399,10150,53744,147136,211189,https://images.gr-assets.com/books/1327885335l/10664113.jpg,https://images.gr-assets.com/books/1327885335s/10664113.jpg\n189,33,33,3462456,380,618640150,9780618640160.0,J.R.R. Tolkien,1955.0,The Lord of the Rings,\"The Lord of the Rings (The Lord of the Rings, #1-3)\",eng,4.47,389054,436346,9365,4807,9577,37552,106818,277592,https://images.gr-assets.com/books/1411114164l/33.jpg,https://images.gr-assets.com/books/1411114164s/33.jpg\n190,12262741,12262741,17237712,101,307592731,9780307592740.0,Cheryl Strayed,2012.0,Wild: From Lost to Found on the Pacific Crest Trail ,Wild: From Lost to Found on the Pacific Crest Trail,eng,3.96,379872,420903,34444,8344,22137,85489,165482,139451,https://images.gr-assets.com/books/1453189881l/12262741.jpg,https://images.gr-assets.com/books/1453189881s/12262741.jpg\n191,472331,472331,4358649,90,930289234,9780930289230.0,\"Alan Moore, Dave Gibbons, John Higgins\",1987.0,Watchmen,Watchmen,en-US,4.35,398018,409323,10851,6349,11732,44847,116877,229518,https://images.gr-assets.com/books/1442239711l/472331.jpg,https://images.gr-assets.com/books/1442239711s/472331.jpg\n192,186074,186074,2502879,123,075640407X,9780756404080.0,Patrick Rothfuss,2007.0,The Name of the Wind,\"The Name of the Wind (The Kingkiller Chronicle, #1)\",eng,4.55,400101,449372,28631,5605,8582,28480,95470,311235,https://images.gr-assets.com/books/1472068073l/186074.jpg,https://images.gr-assets.com/books/1472068073s/186074.jpg\n193,3228917,3228917,3364437,120,316017922,9780316017920.0,Malcolm Gladwell,2008.0,Outliers: The Story of Success,Outliers: The Story of Success,en-US,4.11,353011,369126,19383,4494,12545,62510,148978,140599,https://images.gr-assets.com/books/1344266315l/3228917.jpg,https://images.gr-assets.com/books/1344266315s/3228917.jpg\n194,153747,153747,2409320,1823,142437247,9780142437250.0,\"Herman Melville, Andrew Delbanco, Tom Quirk\",1851.0,\"Moby Dick; or, The Whale\",\"Moby-Dick or, The Whale\",eng,3.46,358050,397963,11223,35983,52601,103625,102432,103322,https://images.gr-assets.com/books/1327940656l/153747.jpg,https://images.gr-assets.com/books/1327940656s/153747.jpg\n195,2728527,2728527,2754161,116,385340990,9780385340990.0,\"Mary Ann Shaffer, Annie Barrows\",2008.0,The Guernsey Literary and Potato Peel Pie Society,The Guernsey Literary and Potato Peel Pie Society,eng,4.12,393626,423672,39853,7190,17250,68942,155107,175183,https://images.gr-assets.com/books/1351979318l/2728527.jpg,https://images.gr-assets.com/books/1351979318s/2728527.jpg\n196,5759,5759,68729,162,393327345,9780393327340.0,Chuck Palahniuk,1996.0,Fight Club,Fight Club,eng,4.2,365349,388654,11176,4578,12632,58110,139554,173780,https://images.gr-assets.com/books/1357128997l/5759.jpg,https://images.gr-assets.com/books/1357128997s/5759.jpg\n197,301082,301082,479517,109,441008534,9780441008540.0,Charlaine Harris,2001.0,Dead Until Dark,\"Dead Until Dark (Sookie Stackhouse, #1)\",en-US,3.96,420764,444824,16818,11330,25781,96290,148326,163097,https://images.gr-assets.com/books/1468560853l/301082.jpg,https://images.gr-assets.com/books/1468560853s/301082.jpg\n198,11486,11486,3300573,155,671727796,9780671727800.0,Alice Walker,1982.0,The Color Purple,The Color Purple,eng,4.17,376766,400965,9485,6298,14477,62380,140835,176975,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556348375l/11486.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n199,12691,12691,14961,119,739461192,9780739461200.0,John Grogan,2005.0,Marley & Me: Life and Love with the World's Worst Dog,Marley and Me: Life and Love With the World's Worst Dog,eng,4.12,367304,379348,13407,5485,14940,68532,131536,158855,https://images.gr-assets.com/books/1308858322l/12691.jpg,https://images.gr-assets.com/books/1308858322s/12691.jpg\n200,16299,16299,3038872,474,312330871,9780312330870.0,Agatha Christie,1939.0,Ten Little Niggers,And Then There Were None,eng,4.23,408983,456680,17264,6134,12476,66243,156306,215521,https://images.gr-assets.com/books/1391120695l/16299.jpg,https://images.gr-assets.com/books/1391120695s/16299.jpg\n201,6411961,6411961,6600281,208,385504225,9780385504220.0,Dan Brown,2009.0,The Lost Symbol,\"The Lost Symbol (Robert Langdon, #3)\",eng,3.66,369428,404982,24199,11293,40545,120122,136545,96477,https://images.gr-assets.com/books/1358274396l/6411961.jpg,https://images.gr-assets.com/books/1358274396s/6411961.jpg\n202,6339664,6339664,6525609,91,1416989412,9781416989420.0,Becca Fitzpatrick,2009.0,\"Hush, Hush\",\"Hush, Hush (Hush, Hush, #1)\",en-US,4.0,448166,461802,21871,19338,33543,82544,120204,206173,https://images.gr-assets.com/books/1358261334l/6339664.jpg,https://images.gr-assets.com/books/1358261334s/6339664.jpg\n203,11505797,11505797,16441531,85,,,Jamie McGuire,2011.0,Beautiful Disaster,\"Beautiful Disaster (Beautiful, #1)\",eng,4.15,418309,442696,25298,17185,23298,61993,115123,225097,https://images.gr-assets.com/books/1358259032l/11505797.jpg,https://images.gr-assets.com/books/1358259032s/11505797.jpg\n204,5326,5326,3097440,2380,1561797464,9781561797460.0,Charles Dickens,1843.0,A Christmas Carol,A Christmas Carol,,4.02,394540,441396,11568,6737,21415,93906,153823,165515,https://images.gr-assets.com/books/1406512317l/5326.jpg,https://images.gr-assets.com/books/1406512317s/5326.jpg\n205,43763,43763,873132,189,345476875,9780345476880.0,Anne Rice,1976.0,Interview with the Vampire,\"Interview with the Vampire (The Vampire Chronicles, #1)\",eng,3.97,372566,393941,7951,7519,22377,84804,137659,141582,https://images.gr-assets.com/books/1380631642l/43763.jpg,https://images.gr-assets.com/books/1380631642s/43763.jpg\n206,10507293,10507293,15413183,93,62059939,9780062059930.0,Kiera Cass,2012.0,The Selection,\"The Selection (The Selection, #1)\",en-US,4.15,505340,539091,35681,13841,25349,83692,158716,257493,https://images.gr-assets.com/books/1322103400l/10507293.jpg,https://images.gr-assets.com/books/1322103400s/10507293.jpg\n207,6853,6853,1486401,109,312362080,9780312362090.0,Janet Evanovich,1994.0,One for the Money,\"One for the Money (Stephanie Plum, #1)\",en-US,4.03,391007,403315,13050,9176,19657,80319,133454,160709,https://images.gr-assets.com/books/1316730230l/6853.jpg,https://images.gr-assets.com/books/1316730230s/6853.jpg\n208,6493208,6493208,6684634,66,1400052173,9781400052170.0,Rebecca Skloot,2010.0,The Immortal Life of Henrietta Lacks,The Immortal Life of Henrietta Lacks,eng,4.04,377249,404440,28624,10782,18237,70339,151226,153856,https://images.gr-assets.com/books/1327878144l/6493208.jpg,https://images.gr-assets.com/books/1327878144s/6493208.jpg\n209,23807,23807,22533,187,99446782,9780099446780.0,Thomas Harris,1988.0,The Silence of the Lambs,\"The Silence of the Lambs  (Hannibal Lecter, #2)\",eng,4.14,351107,366112,3866,10268,12845,55427,123652,163920,https://images.gr-assets.com/books/1390426249l/23807.jpg,https://images.gr-assets.com/books/1390426249s/23807.jpg\n211,40102,40102,1180927,116,316010669,9780316010660.0,Malcolm Gladwell,2005.0,Blink: The Power of Thinking Without Thinking,Blink: The Power of Thinking Without Thinking,en-US,3.89,348196,360338,12215,6804,20128,85934,139947,107525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440763417l/40102._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n212,6867,6867,2307233,155,038572179X,9780385721790.0,Ian McEwan,2001.0,Atonement,Atonement,eng,3.88,347006,365658,14815,11473,25462,77135,134788,116800,https://images.gr-assets.com/books/1320449708l/6867.jpg,https://images.gr-assets.com/books/1320449708s/6867.jpg\n213,485894,485894,2373750,1316,553213695,9780553213690.0,\"Franz Kafka, Stanley Corngold\",1915.0,Die Verwandlung,The Metamorphosis,eng,3.78,364933,414533,10252,15430,33226,98774,146297,120806,https://images.gr-assets.com/books/1359061917l/485894.jpg,https://images.gr-assets.com/books/1359061917s/485894.jpg\n214,561456,561456,2936530,94,141382899,9780141382890.0,Rick Riordan,2007.0,The Titan's Curse,\"The Titan's Curse (Percy Jackson and the Olympians, #3)\",eng,4.33,446668,486262,15418,1863,7934,65220,162371,248874,https://images.gr-assets.com/books/1361038385l/561456.jpg,https://images.gr-assets.com/books/1361038385s/561456.jpg\n216,3153910,3153910,3175590,90,1554681723,9781554681720.0,Garth Stein,2006.0,The Art of Racing in the Rain,The Art of Racing in the Rain,eng,4.19,327409,354319,32021,4808,13901,53780,118166,163664,https://images.gr-assets.com/books/1377206302l/3153910.jpg,https://images.gr-assets.com/books/1377206302s/3153910.jpg\n217,21996,21996,3486041,70,739303406,9780739303400.0,\"Erik Larson, Tony Goldwyn\",2003.0,\"The Devil in the White City: Murder, Magic, and Madness at the Fair that Changed America\",\"The Devil in the White City: Murder, Magic, and Madness at the Fair That Changed America\",eng,3.98,309385,350607,25846,6687,18709,69012,135360,120839,https://images.gr-assets.com/books/1312066724l/21996.jpg,https://images.gr-assets.com/books/1312066724s/21996.jpg\n218,13572249,20448515,18973111,96,425263908,9780425263910.0,Sylvia Day,2012.0,Bared to You,\"Bared to You (Crossfire, #1)\",eng,4.19,222678,386136,16748,9867,18983,55554,104657,197075,https://images.gr-assets.com/books/1477803272l/13572249.jpg,https://images.gr-assets.com/books/1477803272s/13572249.jpg\n219,11127,11127,781271,270,66238501,9780066238500.0,\"C.S. Lewis, Pauline Baynes\",1956.0,The Chronicles of Narnia,\"The Chronicles of Narnia (Chronicles of Narnia, #1-7)\",eng,4.24,376385,401676,8871,3772,12192,59975,133056,192681,https://images.gr-assets.com/books/1449868701l/11127.jpg,https://images.gr-assets.com/books/1449868701s/11127.jpg\n220,3609760,3609760,3652511,20,316043133,9780316043140.0,Mark Cotta Vaz,,Twilight: The Complete Illustrated Movie Companion,Twilight: The Complete Illustrated Movie Companion,en-US,4.23,291411,291899,532,6862,11019,48008,67939,158071,https://images.gr-assets.com/books/1352539022l/3609760.jpg,https://images.gr-assets.com/books/1352539022s/3609760.jpg\n221,60748,60748,59104,74,1558743669,9781558743660.0,Dave Pelzer,1995.0,\"A Child Called \"\"It\"\": One Child's Courage to Survive\",\"A Child Called \"\"It\"\" (Dave Pelzer #1)\",eng,4.08,311543,321298,13729,7819,16453,57341,98786,140899,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438400434l/60748._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n222,7869,7869,859111,143,752864327,9780752864330.0,Robert Ludlum,1980.0,The Bourne Identity,\"The Bourne Identity (Jason Bourne, #1)\",eng,3.98,327122,336212,3899,10266,17695,65161,118463,124627,https://images.gr-assets.com/books/1335860740l/7869.jpg,https://images.gr-assets.com/books/1335860740s/7869.jpg\n223,249747,249747,1334778,163,786817879,9780786817870.0,Eoin Colfer,2001.0,Artemis Fowl,\"Artemis Fowl (Artemis Fowl, #1)\",eng,3.82,386923,399165,8384,14473,30894,94950,129607,129241,https://images.gr-assets.com/books/1327945104l/249747.jpg,https://images.gr-assets.com/books/1327945104s/249747.jpg\n224,6487308,6487308,6678670,97,385738935,9780385738930.0,Lauren Kate,2009.0,Fallen,\"Fallen (Fallen, #1)\",en-US,3.74,395296,408108,17725,23594,41578,94145,107149,141642,https://images.gr-assets.com/books/1440619649l/6487308.jpg,https://images.gr-assets.com/books/1440619649s/6487308.jpg\n225,4406,4406,2574991,81,142000655,9780142000660.0,John Steinbeck,1952.0,East of Eden  ,East of Eden,eng,4.35,320919,336682,14454,4183,9409,39153,96741,187196,https://images.gr-assets.com/books/1441547516l/4406.jpg,https://images.gr-assets.com/books/1441547516s/4406.jpg\n226,5886881,5886881,6873353,131,307341569,9780307341560.0,Gillian Flynn,2009.0,Dark Places,Dark Places,eng,3.92,333452,386607,28784,5169,17975,89242,165108,109113,https://images.gr-assets.com/books/1354988288l/5886881.jpg,https://images.gr-assets.com/books/1354988288s/5886881.jpg\n227,5359,5359,137715,134,385339089,9780385339090.0,John Grisham,1993.0,The Client,The Client,eng,3.97,320083,325663,1917,2530,12566,79176,129019,102372,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554192326l/5359._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n228,228333,228333,221139,84,312291639,9780312291630.0,\"Emma McLaughlin, Nicola Kraus\",2002.0,The Nanny Diaries,\"The Nanny Diaries (Nanny, #1)\",eng,3.4,323762,328073,5121,17006,43014,116021,95951,56081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390018191l/228333.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n229,24213,24213,2375385,845,451527747,9780451527740.0,\"Lewis Carroll, John Tenniel, Martin Gardner\",1865.0,Alice's Adventures in Wonderland,Alice's Adventures in Wonderland & Through the Looking-Glass,eng,4.06,340920,377190,7736,5294,17482,76985,127906,149523,https://images.gr-assets.com/books/1327872220l/24213.jpg,https://images.gr-assets.com/books/1327872220s/24213.jpg\n230,2156,2156,2534720,1451,192802631,9780192802640.0,\"Jane Austen, James Kinsley, Deidre Shauna Lynch\",1817.0,Persuasion,Persuasion,eng,4.13,365425,402359,13117,6688,15653,71218,133222,175578,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385172413l/2156.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n231,556602,556602,2523229,117,312370830,9780312370830.0,Tatiana de Rosnay,2007.0,Elle s'appelait Sarah,Sarah's Key,eng,4.14,312444,347631,26614,3865,12684,55760,134748,140574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438863728l/556602._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n232,43615,43615,46575,213,452284694,9780452284690.0,Stephen King,1982.0,The Gunslinger,\"The Gunslinger (The Dark Tower, #1)\",en-US,3.99,332494,366377,13014,9958,24111,72736,112895,146677,https://images.gr-assets.com/books/1375776480l/43615.jpg,https://images.gr-assets.com/books/1375776480s/43615.jpg\n233,9712,9712,3285349,347,140003468X,9781400034680.0,\"Gabriel García Márquez, Edith Grossman\",1985.0,El amor en los tiempos del cólera,Love in the Time of Cholera,eng,3.89,283806,323461,15246,11450,23825,65668,110544,111974,https://images.gr-assets.com/books/1327124987l/9712.jpg,https://images.gr-assets.com/books/1327124987s/9712.jpg\n234,439288,439288,118521,87,014131088X,9780141310890.0,Laurie Halse Anderson,1999.0,Speak,Speak,eng,4.0,360156,372404,18379,7770,21049,76503,125660,141422,https://images.gr-assets.com/books/1310121762l/439288.jpg,https://images.gr-assets.com/books/1310121762s/439288.jpg\n235,17802724,17802724,23986788,95,399159347,9780399159340.0,Liane Moriarty,2013.0,The Husband's Secret ,The Husband's Secret,eng,3.92,232106,351805,27610,4175,15649,80869,155945,95167,https://images.gr-assets.com/books/1460577225l/17802724.jpg,https://images.gr-assets.com/books/1460577225s/17802724.jpg\n236,1898,1898,1816662,101,385494785,9780385494790.0,Jon Krakauer,1997.0,Into Thin Air: A Personal Account of the Mt. Everest Disaster,Into Thin Air: A Personal Account of the Mount Everest Disaster,en-US,4.11,291258,301593,10439,8041,10286,46060,112601,124605,https://images.gr-assets.com/books/1463384482l/1898.jpg,https://images.gr-assets.com/books/1463384482s/1898.jpg\n237,10592,10592,1552134,249,1416524304,9781416524300.0,Stephen King,1974.0,Carrie,Carrie,,3.93,356814,377650,8264,4564,19479,96352,136054,121201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166254258l/10592._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n238,242006,242006,828773,79,031242227X,9780312422270.0,Augusten Burroughs,2002.0,Running with Scissors,Running with Scissors,en-US,3.7,293878,306388,11601,13569,27249,78405,105786,81379,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438898196l/242006._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n239,8908,8908,817,137,307346609,9780307346600.0,Max Brooks,2006.0,World War Z: An Oral History of the Zombie War,World War Z: An Oral History of the Zombie War,en-US,4.01,312969,345149,22412,7680,19887,65570,121537,130475,https://images.gr-assets.com/books/1386328204l/8908.jpg,https://images.gr-assets.com/books/1386328204s/8908.jpg\n240,17212231,17212231,23841765,235,385537859,9780385537860.0,Dan Brown,2013.0,Inferno,\"Inferno (Robert Langdon, #4)\",eng,3.8,287533,345560,33700,7261,26077,89237,128374,94611,https://images.gr-assets.com/books/1397093185l/17212231.jpg,https://images.gr-assets.com/books/1397093185s/17212231.jpg\n241,47281,47281,2677305,81,440227534,9780440227530.0,Lois Lowry,1989.0,Number the Stars,Number the Stars,eng,4.11,333638,342365,10304,3797,12794,63919,123296,138559,https://images.gr-assets.com/books/1370917812l/47281.jpg,https://images.gr-assets.com/books/1370917812s/47281.jpg\n242,13145,13145,3373984,122,446692638,9780446692630.0,James Patterson,1993.0,Along Came a Spider,\"Along Came a Spider (Alex Cross, #1)\",eng,4.08,311499,318031,3600,4281,10929,61630,118236,122955,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388272560l/13145.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n243,10614,10614,3230869,197,450417395,9780450417400.0,Stephen King,1987.0,Misery,Misery,en-GB,4.11,334647,352203,6416,4302,12725,64835,128990,141351,https://images.gr-assets.com/books/1270545451l/10614.jpg,https://images.gr-assets.com/books/1270545451s/10614.jpg\n244,66559,18045891,3801,136,307341542,9780307341550.0,Gillian Flynn,2006.0,Sharp Objects,Sharp Objects,en-US,3.92,207889,354838,28268,4988,17566,81036,147558,103690,https://images.gr-assets.com/books/1423241485l/66559.jpg,https://images.gr-assets.com/books/1423241485s/66559.jpg\n245,2839,2839,2237401,125,439366771,9780439366780.0,Katherine Paterson,1977.0,Bridge to Terabithia,Bridge to Terabithia,eng,3.98,337644,353474,9270,8287,20081,74409,119504,131193,https://images.gr-assets.com/books/1327880087l/2839.jpg,https://images.gr-assets.com/books/1327880087s/2839.jpg\n246,30183,30183,30573,97,312360266,9780312360270.0,\"P.C. Cast, Kristin Cast\",2007.0,Marked,\"Marked (House of Night, #1)\",en-US,3.79,360044,371020,12870,21547,34170,81486,97982,135835,https://images.gr-assets.com/books/1317067002l/30183.jpg,https://images.gr-assets.com/books/1317067002s/30183.jpg\n247,36072,36072,6277,250,743269519,9780743269510.0,Stephen R. Covey,1989.0,The 7 Habits of Highly Effective People,The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change,en-US,4.05,314700,333884,6148,9038,17041,61036,109359,137410,https://images.gr-assets.com/books/1421842784l/36072.jpg,https://images.gr-assets.com/books/1421842784s/36072.jpg\n248,1622,1622,894834,1379,743477545,9780743477540.0,\"William Shakespeare, Barbara A. Mowat, Paul Werstine, Catherine Belsey\",1595.0,A Midsummer Night's Dream,A Midsummer Night's Dream,eng,3.94,334241,361510,5724,5598,20498,84388,130051,120975,https://images.gr-assets.com/books/1327874534l/1622.jpg,https://images.gr-assets.com/books/1327874534s/1622.jpg\n249,4588,4588,1940137,104,618711651,9780618711660.0,Jonathan Safran Foer,2005.0,Extremely Loud and Incredibly Close,Extremely Loud and Incredibly Close,en-US,3.97,294726,319116,21107,8847,20556,61303,109008,119402,https://images.gr-assets.com/books/1327879967l/4588.jpg,https://images.gr-assets.com/books/1327879967s/4588.jpg\n250,11387515,11387515,16319487,124,375869026,9780375869020.0,R.J. Palacio,2012.0,Wonder,Wonder,eng,4.43,228538,377791,43021,4504,7833,34567,105977,224910,https://images.gr-assets.com/books/1309285027l/11387515.jpg,https://images.gr-assets.com/books/1309285027s/11387515.jpg\n251,233093,233093,267087,99,039480001X,9780394800010.0,Dr. Seuss,1957.0,The Cat in the Hat,The Cat in the Hat,eng,4.15,314016,317182,4299,6179,14497,57850,85944,152712,https://images.gr-assets.com/books/1468890477l/233093.jpg,https://images.gr-assets.com/books/1468890477s/233093.jpg\n252,11235712,11235712,15545385,92,312641893,9780312641890.0,Marissa Meyer,2012.0,Cinder,\"Cinder (The Lunar Chronicles, #1)\",eng,4.15,427663,454146,41109,12154,18256,66180,150914,206642,https://images.gr-assets.com/books/1470056948l/11235712.jpg,https://images.gr-assets.com/books/1470056948s/11235712.jpg\n253,16160797,16160797,22002305,48,316206849,9780316206850.0,\"Robert Galbraith, J.K. Rowling\",2013.0,The Cuckoo's Calling,\"The Cuckoo's Calling (Cormoran Strike, #1)\",en-US,3.83,297712,340495,27258,9729,20151,79290,138955,92370,https://images.gr-assets.com/books/1358716559l/16160797.jpg,https://images.gr-assets.com/books/1358716559s/16160797.jpg\n254,6068551,6068551,6244926,96,545123267,9780545123270.0,Maggie Stiefvater,2009.0,Shiver,\"Shiver (The Wolves of Mercy Falls, #1)\",eng,3.78,356625,370811,20521,17815,35108,86129,105099,126660,https://images.gr-assets.com/books/1409283154l/6068551.jpg,https://images.gr-assets.com/books/1409283154s/6068551.jpg\n255,662,662,817219,147,452011876,9780452011880.0,\"Ayn Rand, Leonard Peikoff\",1957.0,Atlas Shrugged,Atlas Shrugged,eng,3.68,283295,296645,14666,30901,27442,53762,78744,105796,https://images.gr-assets.com/books/1405868167l/662.jpg,https://images.gr-assets.com/books/1405868167s/662.jpg\n256,49436,49436,251800,67,143038257,9780143038250.0,\"Greg Mortenson, David Oliver Relin\",2006.0,Three Cups of Tea ,Three Cups of Tea: One Man's Mission to Promote Peace ... One School at a Time,en-US,3.64,283516,288520,21681,14371,27844,77127,97820,71358,https://images.gr-assets.com/books/1395407074l/49436.jpg,https://images.gr-assets.com/books/1395407074s/49436.jpg\n258,1232,1232,3209783,279,143034901,9780143034900.0,\"Carlos Ruiz Zafón, Lucia Graves\",2001.0,La sombra del viento,\"The Shadow of the Wind (The Cemetery of Forgotten Books,  #1)\",eng,4.24,263685,317554,24652,4789,11769,42214,101612,157170,https://images.gr-assets.com/books/1344545047l/1232.jpg,https://images.gr-assets.com/books/1344545047s/1232.jpg\n259,7631105,7631105,6574198,107,385738757,9780385738750.0,James Dashner,2010.0,The Scorch Trials,\"The Scorch Trials (Maze Runner, #2)\",eng,3.93,305643,346307,23058,5525,21370,79458,124458,115496,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240248l/7631105.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n260,4865,4865,2370171,353,,9780671723650.0,Dale Carnegie,1936.0,How to Win Friends and Influence People,How to Win Friends and Influence People,eng,4.13,282623,305437,7909,6734,13880,50529,94743,139551,https://images.gr-assets.com/books/1442726934l/4865.jpg,https://images.gr-assets.com/books/1442726934s/4865.jpg\n261,480479,480479,940760,59,767900383,9780767900390.0,Frances Mayes,1996.0,Under the Tuscan Sun,Under the Tuscan Sun,eng,3.72,279264,281836,3074,12008,22882,74910,93439,78597,https://images.gr-assets.com/books/1320524083l/480479.jpg,https://images.gr-assets.com/books/1320524083s/480479.jpg\n262,19486412,19486412,27570886,107,399167064,9780399167060.0,Liane Moriarty,2014.0,Big Little Lies,Big Little Lies,eng,4.2,306186,371433,30120,3775,7865,49115,159494,151184,https://images.gr-assets.com/books/1492239430l/19486412.jpg,https://images.gr-assets.com/books/1492239430s/19486412.jpg\n263,24337,24337,2485462,61,590920685,9780590920680.0,Gail Carson Levine,1997.0,Ella Enchanted,Ella Enchanted,eng,3.97,339117,345749,8534,6619,20066,80272,110568,128224,https://images.gr-assets.com/books/1410727190l/24337.jpg,https://images.gr-assets.com/books/1410727190s/24337.jpg\n264,3876,3876,589497,343,743297334,9780743297330.0,Ernest Hemingway,1926.0,The Sun Also Rises,The Sun Also Rises,en-US,3.83,284988,303117,9826,9602,23682,70004,105785,94044,https://images.gr-assets.com/books/1331828228l/3876.jpg,https://images.gr-assets.com/books/1331828228s/3876.jpg\n265,14891,14891,833257,127,61120073,9780061120080.0,Betty  Smith,1943.0,A Tree Grows In Brooklyn ,A Tree Grows in Brooklyn,eng,4.24,291909,309000,16088,3693,9667,43734,103879,148027,https://images.gr-assets.com/books/1327883484l/14891.jpg,https://images.gr-assets.com/books/1327883484s/14891.jpg\n266,13148,13148,881425,111,446677388,9780446677390.0,James Patterson,1995.0,Kiss the Girls,\"Kiss the Girls (Alex Cross, #2)\",eng,3.93,274639,279116,2798,10518,14558,58296,95980,99764,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390010470l/13148.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n267,21853621,21853621,41125521,90,312577222,9780312577220.0,Kristin Hannah,2015.0,The Nightingale,The Nightingale,eng,4.54,253606,327015,37279,2829,4913,20612,82844,215817,https://images.gr-assets.com/books/1451446316l/21853621.jpg,https://images.gr-assets.com/books/1451446316s/21853621.jpg\n268,6334,6334,1499998,159,1400078776,9781400078780.0,Kazuo Ishiguro,2005.0,Never Let Me Go,Never Let Me Go,eng,3.8,294123,323627,21927,9081,26036,78203,118163,92144,https://images.gr-assets.com/books/1353048590l/6334.jpg,https://images.gr-assets.com/books/1353048590s/6334.jpg\n269,366522,366522,2742631,17,786890754,9780786890750.0,Cecelia Ahern,2003.0,\"PS, I Love You\",P.S. I Love You,en-US,4.01,262921,283413,7069,7027,16336,56951,90089,113010,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392344536l/366522.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n270,12873,17899948,46663,306,1844080382,9781844080380.0,\"Daphne du Maurier, Sally Beauman\",1938.0,Rebecca,Rebecca,en-US,4.2,177384,329596,14920,4565,10900,49263,112768,152100,https://images.gr-assets.com/books/1327871977l/12873.jpg,https://images.gr-assets.com/books/1327871977s/12873.jpg\n271,18373,18373,3337594,163,156030306,9780156030300.0,Daniel Keyes,1966.0,Flowers for Algernon,Flowers for Algernon,en-US,4.07,313044,336199,11328,4223,14882,65106,122462,129526,https://images.gr-assets.com/books/1367141311l/18373.jpg,https://images.gr-assets.com/books/1367141311s/18373.jpg\n272,6952,6952,1172473,177,552995878,9780552995870.0,\"Laura Esquivel, Thomas  Christensen, Carol Christensen\",1989.0,Como agua para chocolate,Like Water for Chocolate,en-US,3.94,263199,285469,6559,8887,15941,60147,100011,100483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1550721459l/6952.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n273,1103,1103,1453585,105,812968069,9780812968060.0,Lisa See,2005.0,Snow Flower and the Secret Fan,Snow Flower and the Secret Fan,eng,4.05,280475,290660,15807,3268,11286,56005,116178,103923,https://images.gr-assets.com/books/1327880508l/1103.jpg,https://images.gr-assets.com/books/1327880508s/1103.jpg\n274,22034,22034,266624,259,451205766,9780451205770.0,\"Mario Puzo, Robert Thompson, Peter Bart\",1969.0,The Godfather,The Godfather,eng,4.36,256480,270386,5832,2930,5985,30009,83730,147732,https://images.gr-assets.com/books/1394988109l/22034.jpg,https://images.gr-assets.com/books/1394988109s/22034.jpg\n275,49750,49750,48658,116,525476881,9780525476890.0,John Green,2006.0,An Abundance of Katherines,An Abundance of Katherines,eng,3.63,312754,347424,20657,14225,36867,98115,111740,86477,https://images.gr-assets.com/books/1360206426l/49750.jpg,https://images.gr-assets.com/books/1360206426s/49750.jpg\n276,29579,29579,1783981,169,553803719,9780553803720.0,Isaac Asimov,1951.0,Foundation,Foundation (Foundation #1),eng,4.13,279688,297588,6240,7697,12471,47251,97583,132586,https://images.gr-assets.com/books/1417900846l/29579.jpg,https://images.gr-assets.com/books/1417900846s/29579.jpg\n277,15783514,15783514,21500681,109,62255657,9780062255660.0,Neil Gaiman,2013.0,The Ocean at the End of the Lane,The Ocean at the End of the Lane,eng,3.99,293844,336251,37655,7038,18089,64714,127761,118649,https://images.gr-assets.com/books/1497098563l/15783514.jpg,https://images.gr-assets.com/books/1497098563s/15783514.jpg\n278,30118,30118,142009,32,60513063,9780060513060.0,Shel Silverstein,1981.0,A Light in the Attic,A Light in the Attic,eng,4.34,297861,304514,2431,3585,7593,38923,85051,169362,https://images.gr-assets.com/books/1427169918l/30118.jpg,https://images.gr-assets.com/books/1427169918s/30118.jpg\n279,29056083,29056083,48765776,95,751565350,9780751565360.0,\"John Tiffany, Jack Thorne, J.K. Rowling\",2016.0,\"Harry Potter and the Cursed Child, Parts One and Two\",\"Harry Potter and the Cursed Child - Parts One and Two (Harry Potter, #8)\",eng,3.75,270603,397773,53365,15828,35842,96395,133156,116552,https://images.gr-assets.com/books/1470082995l/29056083.jpg,https://images.gr-assets.com/books/1470082995s/29056083.jpg\n280,11614718,11614718,10342808,108,61726834,9780061726840.0,Lauren Oliver,2011.0,Delirium,\"Delirium (Delirium, #1)\",eng,3.99,256975,352398,24271,8868,21223,68789,117580,135938,https://images.gr-assets.com/books/1327890411l/11614718.jpg,https://images.gr-assets.com/books/1327890411s/11614718.jpg\n281,32499,32499,490324,145,385339704,9780385339700.0,John Grisham,1992.0,The Pelican Brief,The Pelican Brief,eng,3.95,288376,296168,2006,2362,12423,73587,116438,91358,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389486877l/32499.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n282,17061,17061,2834844,153,61139378,9780061139380.0,Neil Gaiman,2002.0,Coraline,Coraline,eng,4.03,316379,343630,13905,7078,15010,67188,126167,128187,https://images.gr-assets.com/books/1493497435l/17061.jpg,https://images.gr-assets.com/books/1493497435s/17061.jpg\n283,12067,12067,4110990,114,60853980,9780060853980.0,\"Terry Pratchett, Neil Gaiman\",1990.0,\"Good Omens: The Nice and Accurate Prophecies of Agnes Nutter, Witch\",\"Good Omens: The Nice and Accurate Prophecies of Agnes Nutter, Witch\",en-US,4.25,298304,326373,13914,4991,10988,44804,101159,164431,https://images.gr-assets.com/books/1392528568l/12067.jpg,https://images.gr-assets.com/books/1392528568s/12067.jpg\n284,70401,70401,1701188,312,140042598,9780140042600.0,Jack Kerouac,1955.0,On the Road,On the Road,eng,3.64,246602,277884,12011,13769,31221,70104,88569,74221,https://images.gr-assets.com/books/1413588576l/70401.jpg,https://images.gr-assets.com/books/1413588576s/70401.jpg\n285,16181775,16181775,22084678,122,1476729085,9781476729080.0,Graeme Simsion,2013.0,The Rosie Project,\"The Rosie Project (Don Tillman, #1)\",eng,4.01,251703,305509,31155,4544,11558,57792,133951,97664,https://images.gr-assets.com/books/1371651741l/16181775.jpg,https://images.gr-assets.com/books/1371651741s/16181775.jpg\n286,3063499,3063499,3094402,99,446579939,9780446579930.0,Nicholas Sparks,2008.0,The Lucky One,The Lucky One,en-US,4.1,267166,281323,9476,3661,11792,54208,94613,117049,https://images.gr-assets.com/books/1420816338l/3063499.jpg,https://images.gr-assets.com/books/1420816338s/3063499.jpg\n287,2122,2122,3331807,154,451191153,9780451191150.0,\"Ayn Rand, Leonard Peikoff\",1943.0,The Fountainhead,The Fountainhead,eng,3.85,244545,254976,10198,18158,18720,44131,76424,97543,https://images.gr-assets.com/books/1491163636l/2122.jpg,https://images.gr-assets.com/books/1491163636s/2122.jpg\n288,19691,19691,1112006,117,425172902,9780425172900.0,Tom Clancy,1984.0,The Hunt for Red October,\"The Hunt for Red October (Jack Ryan Universe, #4)\",,4.01,270318,278255,2117,9470,13707,49906,95296,109876,https://images.gr-assets.com/books/1281995542l/19691.jpg,https://images.gr-assets.com/books/1281995542s/19691.jpg\n289,76620,76620,1357456,193,038039586X,9780380395870.0,Richard Adams,1972.0,Watership Down,\"Watership Down (Watership Down, #1)\",eng,4.05,292426,308373,10399,9158,15767,52906,102093,128449,https://images.gr-assets.com/books/1405136931l/76620.jpg,https://images.gr-assets.com/books/1405136931s/76620.jpg\n290,10335308,10335308,15237902,18,307886263,9780307886260.0,Mindy Kaling,2011.0,Is Everyone Hanging Out Without Me? (And Other Concerns),Is Everyone Hanging Out Without Me? (And Other Concerns),eng,3.84,290674,312931,19397,6438,18856,81229,117248,89160,https://images.gr-assets.com/books/1443264638l/10335308.jpg,https://images.gr-assets.com/books/1443264638s/10335308.jpg\n291,3591262,3591262,3633533,74,375414495,9780375414500.0,Abraham Verghese,2009.0,Cutting for Stone,Cutting for Stone,eng,4.28,258319,281079,23146,4586,9249,32671,91293,143280,https://images.gr-assets.com/books/1327931601l/3591262.jpg,https://images.gr-assets.com/books/1327931601s/3591262.jpg\n292,140225,140225,3349054,299,006112527X,9780061125270.0,\"C.S. Lewis, Pauline Baynes\",1951.0,The Voyage of the Dawn Treader,\"The Voyage of the Dawn Treader (Chronicles of Narnia, #3)\",eng,4.08,306492,325264,4620,2658,12490,69089,112121,128906,https://images.gr-assets.com/books/1343185059l/140225.jpg,https://images.gr-assets.com/books/1343185059s/140225.jpg\n293,295,295,3077988,2573,753453800,9780753453800.0,Robert Louis Stevenson,1882.0,Treasure Island,Treasure Island,eng,3.82,268012,310515,7917,5349,19127,86487,114968,84584,https://images.gr-assets.com/books/1485248909l/295.jpg,https://images.gr-assets.com/books/1485248909s/295.jpg\n294,9520360,9520360,14406312,69,1423140591,9781423140600.0,Rick Riordan,2011.0,The Son of Neptune ,\"The Son of Neptune (The Heroes of Olympus, #2)\",eng,4.44,299980,316800,12270,1773,4666,30788,93611,185962,https://images.gr-assets.com/books/1464201114l/9520360.jpg,https://images.gr-assets.com/books/1464201114s/9520360.jpg\n295,10644930,10644930,15553789,145,1451627289,9781451627280.0,Stephen King,2011.0,11/22/63,11/22/63,eng,4.29,258464,303057,30656,2927,7649,35500,109392,147589,https://images.gr-assets.com/books/1327876792l/10644930.jpg,https://images.gr-assets.com/books/1327876792s/10644930.jpg\n296,4948,4948,3144982,162,241003008,9780241003010.0,Eric Carle,1969.0,The Very Hungry Caterpillar,The Very Hungry Caterpillar Board Book,eng,4.29,296952,304528,5760,5801,11214,43549,73389,170575,https://images.gr-assets.com/books/1327878225l/4948.jpg,https://images.gr-assets.com/books/1327878225s/4948.jpg\n297,135479,135479,1621115,155,140285601,9780140285600.0,Kurt Vonnegut Jr.,1963.0,Cat's Cradle,Cat's Cradle,eng,4.18,238940,274153,8050,2701,8491,43680,102441,116840,https://images.gr-assets.com/books/1327867150l/135479.jpg,https://images.gr-assets.com/books/1327867150s/135479.jpg\n298,2493,2493,3234863,1248,451528557,9780451528550.0,\"H.G. Wells, Greg Bear, Carlo Pagetti\",1895.0,The Time Machine,The Time Machine,eng,3.87,276076,303730,7353,3570,16119,81773,118129,84139,https://images.gr-assets.com/books/1327942880l/2493.jpg,https://images.gr-assets.com/books/1327942880s/2493.jpg\n300,39999,39999,1148702,178,385751060,9780385751060.0,John Boyne,2006.0,The Boy in the Striped Pyjamas,The Boy in the Striped Pajamas,eng,4.1,285692,325401,19058,5297,13562,54987,121193,130362,https://images.gr-assets.com/books/1366228171l/39999.jpg,https://images.gr-assets.com/books/1366228171s/39999.jpg\n301,4900,4900,2877220,1369,1892295490,9781892295490.0,Joseph Conrad,1899.0,Heart of Darkness,Heart of Darkness,eng,3.42,255576,308391,9791,25591,42946,84433,88608,66813,https://images.gr-assets.com/books/1392799983l/4900.jpg,https://images.gr-assets.com/books/1392799983s/4900.jpg\n302,7812659,7812659,10829530,117,044654759X,9780446547600.0,Nicholas Sparks,2010.0,Safe Haven,Safe Haven,eng,4.19,255531,274974,12769,3010,9496,45461,91240,125767,https://images.gr-assets.com/books/1344268800l/7812659.jpg,https://images.gr-assets.com/books/1344268800s/7812659.jpg\n303,52529,52529,2001660,113,1582701709,9781582701710.0,Rhonda Byrne,2006.0,The Secret,\"The Secret (The Secret, #1)\",eng,3.62,241537,250945,9663,23328,26321,55785,61698,83813,https://images.gr-assets.com/books/1482865039l/52529.jpg,https://images.gr-assets.com/books/1482865039s/52529.jpg\n304,227711,227711,1191096,52,60987561,9780060987560.0,Wally Lamb,1998.0,I Know This Much Is True ,I Know This Much Is True,eng,4.17,246917,257608,7775,4430,9972,39899,86909,116398,https://images.gr-assets.com/books/1373532198l/227711.jpg,https://images.gr-assets.com/books/1373532198s/227711.jpg\n305,10583,33124137,150017,198,1416524347,9781416524340.0,Stephen King,1983.0,Pet Sematary,Pet Sematary,eng,3.91,256383,293753,5430,4584,17315,73475,102744,95635,https://images.gr-assets.com/books/1308894674l/10583.jpg,https://images.gr-assets.com/books/1308894674s/10583.jpg\n306,5203,5203,1003370,61,671021001,9780671021010.0,Wally Lamb,1992.0,She's Come Undone,She's Come Undone,en-US,3.84,259576,268924,9090,10224,20064,59412,91423,87801,https://images.gr-assets.com/books/1408313457l/5203.jpg,https://images.gr-assets.com/books/1408313457s/5203.jpg\n307,1215032,1215032,2502882,102,756404738,9780756404730.0,Patrick Rothfuss,2011.0,The Wise Man's Fear,\"The Wise Man's Fear (The Kingkiller Chronicle, #2)\",eng,4.57,245686,282349,15503,1486,4018,17932,66415,192498,https://images.gr-assets.com/books/1452624392l/1215032.jpg,https://images.gr-assets.com/books/1452624392s/1215032.jpg\n308,33724,33724,2888997,94,440241901,9780440241900.0,Sophie Kinsella,2003.0,Can You Keep a Secret?,Can You Keep a Secret?,en-US,3.83,278747,293801,9510,8003,19319,76244,101810,88425,https://images.gr-assets.com/books/1330464293l/33724.jpg,https://images.gr-assets.com/books/1330464293s/33724.jpg\n309,6752378,6752378,6948844,96,1442403543,9781442403540.0,Cassandra Clare,2011.0,City of Fallen Angels,\"City of Fallen Angels (The Mortal Instruments, #4)\",en-US,4.16,341826,373167,18870,4306,16000,64499,120426,167936,https://images.gr-assets.com/books/1369452302l/6752378.jpg,https://images.gr-assets.com/books/1369452302s/6752378.jpg\n310,14748,14748,2796838,71,743418174,9780743418170.0,Jennifer Weiner,2001.0,Good in Bed,\"Good in Bed (Cannie Shapiro, #1)\",en-US,3.7,248804,252305,5500,12137,20336,66587,84488,68757,https://images.gr-assets.com/books/1327936464l/14748.jpg,https://images.gr-assets.com/books/1327936464s/14748.jpg\n311,3412,3412,816449,201,380018179,9780380018180.0,Colleen McCullough,1977.0,The Thorn Birds,The Thorn Birds,eng,4.22,255651,266826,4556,2889,9117,42299,85531,126990,https://images.gr-assets.com/books/1391416796l/3412.jpg,https://images.gr-assets.com/books/1391416796s/3412.jpg\n312,2213661,2213661,2219449,129,60530928,9780060530920.0,\"Neil Gaiman, Dave McKean\",2008.0,The Graveyard Book,The Graveyard Book,en-US,4.12,302303,325451,23840,5515,12566,53668,120830,132872,https://images.gr-assets.com/books/1303859949l/2213661.jpg,https://images.gr-assets.com/books/1303859949s/2213661.jpg\n313,13158800,13158800,18337340,113,1451681739,9781451681730.0,M.L. Stedman,2012.0,The Light Between Oceans,The Light Between Oceans,eng,4.0,243526,288434,29932,3432,11985,56557,124430,92030,https://images.gr-assets.com/books/1336683021l/13158800.jpg,https://images.gr-assets.com/books/1336683021s/13158800.jpg\n314,28194,28194,2628323,134,439709105,9780439709100.0,\"Cornelia Funke, Anthea Bell\",2003.0,Tintenherz,\"Inkheart (Inkworld, #1)\",en-US,3.86,285011,301414,10384,8524,22966,71494,98625,99805,https://images.gr-assets.com/books/1328866790l/28194.jpg,https://images.gr-assets.com/books/1328866790s/28194.jpg\n315,4894,4894,3332594,128,91883768,9780091883770.0,\"Spencer Johnson, Kenneth H. Blanchard\",1998.0,Who Moved My Cheese?,Who Moved My Cheese?,eng,3.74,237272,253134,7877,12161,23384,61934,77196,78459,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388639717l/4894.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n316,9791,9791,613469,95,307279464,9780307279460.0,Bill Bryson,1997.0,A Walk in the Woods,A Walk in the Woods,eng,4.05,250192,264449,14422,3553,10293,50487,104690,95426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189974l/9791.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n317,13214,13214,1413589,107,553279378,9780553279380.0,Maya Angelou,1969.0,I Know Why the Caged Bird Sings,I Know Why the Caged Bird Sings,en-US,4.19,270859,284448,6666,4969,9937,42472,95531,131539,https://images.gr-assets.com/books/1327957927l/13214.jpg,https://images.gr-assets.com/books/1327957927s/13214.jpg\n318,15818107,15818107,21545713,65,61950726,9780061950730.0,Christina Baker Kline,2013.0,Orphan Train,Orphan Train,eng,4.14,226091,263968,24700,1703,6769,42434,116003,97059,https://images.gr-assets.com/books/1362409483l/15818107.jpg,https://images.gr-assets.com/books/1362409483s/15818107.jpg\n319,8755776,8755776,13629058,101,1442416866,9781442416860.0,Cassandra Clare,2012.0,City of Lost Souls,\"City of Lost Souls (The Mortal Instruments, #5)\",eng,4.3,300553,327869,16639,3341,10329,43333,97947,172919,https://images.gr-assets.com/books/1460477703l/8755776.jpg,https://images.gr-assets.com/books/1460477703s/8755776.jpg\n320,13526165,13526165,17626728,78,316204277,9780316204280.0,Maria Semple,2012.0,\"Where'd You Go, Bernadette\",\"Where'd You Go, Bernadette\",eng,3.9,215453,268153,28973,4080,13047,59489,119361,72176,https://images.gr-assets.com/books/1338822317l/13526165.jpg,https://images.gr-assets.com/books/1338822317s/13526165.jpg\n321,10365,10365,115,69,375806814,9780375806810.0,Wilson Rawls,1961.0,Where the Red Fern Grows,Where the Red Fern Grows,,4.04,268548,280179,8725,6585,15232,53560,89699,115103,https://images.gr-assets.com/books/1166154337l/10365.jpg,https://images.gr-assets.com/books/1166154337s/10365.jpg\n322,14497,14497,16534,152,60557818,9780060557810.0,Neil Gaiman,1996.0,Neverwhere,Neverwhere,eng,4.18,268318,301740,15680,3126,9628,46996,113506,128484,https://images.gr-assets.com/books/1348747943l/14497.jpg,https://images.gr-assets.com/books/1348747943s/14497.jpg\n323,9717,9717,4489585,274,571224385,9780571224390.0,\"Milan Kundera, Michael Henry Heim\",1984.0,Nesnesitelná lehkost bytí,The Unbearable Lightness of Being,eng,4.08,205279,247980,10682,4894,12964,42199,84519,103404,https://images.gr-assets.com/books/1265401884l/9717.jpg,https://images.gr-assets.com/books/1265401884s/9717.jpg\n325,4473,4473,1734019,138,552135399,9780552135400.0,John Irving,1989.0,A Prayer for Owen Meany,A Prayer for Owen Meany,eng,4.22,226964,246452,11197,4679,9761,33669,76223,122120,https://images.gr-assets.com/books/1260470010l/4473.jpg,https://images.gr-assets.com/books/1260470010s/4473.jpg\n326,32234,32234,1223333,96,316182540,9780316182550.0,Janet Fitch,1999.0,White Oleander,White Oleander,eng,3.93,245674,254276,5960,3765,13598,60133,94893,81887,https://images.gr-assets.com/books/1501159524l/32234.jpg,https://images.gr-assets.com/books/1501159524s/32234.jpg\n327,9275658,9275658,14157512,91,039925675X,9780399256750.0,Marie Lu,2011.0,Legend,\"Legend (Legend, #1)\",eng,4.19,299998,318472,23487,5069,11608,48677,106122,146996,https://images.gr-assets.com/books/1501368160l/9275658.jpg,https://images.gr-assets.com/books/1501368160s/9275658.jpg\n328,14866,14866,3375915,84,743496728,9780743496730.0,Jodi Picoult,2007.0,Nineteen Minutes,Nineteen Minutes,eng,4.1,235978,251693,14004,2852,9629,46237,94104,98871,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348577596l/14866.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n329,2318271,2318271,3364076,111,1401323251,9781401323260.0,\"Randy Pausch, Jeffrey Zaslow\",2008.0,The Last Lecture,The Last Lecture,eng,4.25,241869,248143,14988,3004,8851,35547,76621,124120,https://images.gr-assets.com/books/1388075896l/2318271.jpg,https://images.gr-assets.com/books/1388075896s/2318271.jpg\n330,228665,228665,2008238,94,812511816,9780812511820.0,Robert Jordan,1990.0,The Eye of the World,\"The Eye of the World (Wheel of Time, #1)\",eng,4.18,260184,272983,8212,6163,11298,38946,88024,128552,https://images.gr-assets.com/books/1337818095l/228665.jpg,https://images.gr-assets.com/books/1337818095s/228665.jpg\n331,10916,10916,3349846,76,61150142,9780061150140.0,Jodi Picoult,1998.0,The Pact,The Pact,en-US,4.0,221225,235359,9257,3586,11789,50494,85430,84060,https://images.gr-assets.com/books/1410754561l/10916.jpg,https://images.gr-assets.com/books/1410754561s/10916.jpg\n332,65605,65605,1031537,312,60764902,9780060764910.0,C.S. Lewis,1953.0,The magician's nephew,\"The Magician's Nephew (Chronicles of Narnia, #6)\",eng,4.01,268355,303570,8690,3168,14602,69051,105375,111374,https://images.gr-assets.com/books/1308814770l/65605.jpg,https://images.gr-assets.com/books/1308814770s/65605.jpg\n333,2153405,2153405,2158906,107,595440096,9780595440090.0,Lisa Genova,2007.0,Still Alice,Still Alice,eng,4.3,223432,245071,24112,1178,4249,28642,96615,114387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236089972l/2153405.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n334,13596809,13596809,19186128,81,425263916,9780425263910.0,Sylvia Day,2012.0,Reflected in You,\"Reflected in You (Crossfire, #2)\",eng,4.33,252564,267608,9817,2923,8651,33911,74587,147536,https://images.gr-assets.com/books/1477802540l/13596809.jpg,https://images.gr-assets.com/books/1477802540s/13596809.jpg\n335,6689,6689,2379261,182,375814248,9780375814240.0,\"Roald Dahl, Quentin Blake\",1961.0,James and the Giant Peach,James and the Giant Peach,eng,3.99,270402,289737,5120,4235,13199,65762,104078,102463,https://images.gr-assets.com/books/1320412586l/6689.jpg,https://images.gr-assets.com/books/1320412586s/6689.jpg\n336,13137,13137,1711194,107,446696617,9780446696620.0,James Patterson,2001.0,1st To Die,\"1st to Die (Women's Murder Club, #1)\",en-US,4.05,233984,242428,5039,4464,10087,48616,83796,95465,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522906581l/13137._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n337,13,13,135328,32,345453743,9780345453750.0,Douglas Adams,1996.0,The Ultimate Hitchhiker's Guide: Five Complete Novels and One Story,The Ultimate Hitchhiker's Guide to the Galaxy,eng,4.37,222842,238420,4254,2657,6328,26431,66655,136349,https://images.gr-assets.com/books/1404613595l/13.jpg,https://images.gr-assets.com/books/1404613595s/13.jpg\n338,6280118,6280118,6463667,129,340896965,9780340896970.0,David Nicholls,2009.0,One Day,One Day,eng,3.77,222926,247052,15937,8632,21291,59874,86793,70462,https://images.gr-assets.com/books/1327873020l/6280118.jpg,https://images.gr-assets.com/books/1327873020s/6280118.jpg\n340,7747374,7747374,10576999,38,61969559,9780061969550.0,Pittacus Lore,2010.0,I Am Number Four,\"I Am Number Four (Lorien Legacies, #1)\",en-US,3.94,253437,270195,14101,6538,17766,58268,90409,97214,https://images.gr-assets.com/books/1305807140l/7747374.jpg,https://images.gr-assets.com/books/1305807140s/7747374.jpg\n341,1371,1371,3293141,1726,140275363,9780140275360.0,\"Homer, Robert Fagles, Frédéric Mugler, Bernard Knox\",-750.0,Ἰλιάς,The Iliad,eng,3.83,241088,273565,4763,7701,20845,68844,89384,86791,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188509l/1371.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n342,13497818,13497818,19926990,139,316228532,9780316228530.0,J.K. Rowling,2012.0,The Casual Vacancy,The Casual Vacancy,eng,3.28,231835,254461,28751,24583,38326,74611,75741,41200,https://images.gr-assets.com/books/1358266832l/13497818.jpg,https://images.gr-assets.com/books/1358266832s/13497818.jpg\n343,24192,24192,1022176,120,385339690,9780385339700.0,John Grisham,1996.0,The Runaway Jury,The Runaway Jury,eng,3.96,222712,226861,1700,1613,8950,56426,90284,69588,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388444668l/24192.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n344,4138,4138,2086690,54,316777730,9780316777740.0,David Sedaris,1997.0,Naked,Naked,en-US,4.08,201337,204766,5096,2631,7051,37023,81934,76127,https://images.gr-assets.com/books/1394178867l/4138.jpg,https://images.gr-assets.com/books/1394178867s/4138.jpg\n345,45978,45978,2035753,163,375840400,9780375840400.0,Christopher Paolini,2005.0,Eldest,\"Eldest (The Inheritance Cycle, #2)\",en-US,3.96,250000,274059,8284,5483,16680,58948,95907,97041,https://images.gr-assets.com/books/1387119654l/45978.jpg,https://images.gr-assets.com/books/1387119654s/45978.jpg\n346,236093,236093,1993810,1474,140621679,9780140621680.0,\"L. Frank Baum, W.W. Denslow\",1900.0,The Wonderful Wizard of Oz,\"The Wonderful Wizard of Oz (Oz, #1)\",eng,3.98,247521,279400,8866,4197,13653,65910,95948,99692,https://images.gr-assets.com/books/1398003737l/236093.jpg,https://images.gr-assets.com/books/1398003737s/236093.jpg\n347,121749,121749,3348636,348,000720230X,9780007202300.0,C.S. Lewis,1951.0,Prince Caspian: The Return to Narnia,\"Prince Caspian (Chronicles of Narnia, #2)\",eng,3.96,250221,273069,4737,2399,12145,68026,101461,89038,https://images.gr-assets.com/books/1308814880l/121749.jpg,https://images.gr-assets.com/books/1308814880s/121749.jpg\n348,16143347,16143347,21975829,77,,,E. Lockhart,2014.0,We Were Liars,We Were Liars,eng,3.85,273442,298780,36910,9074,22616,68468,102385,96237,https://images.gr-assets.com/books/1402749479l/16143347.jpg,https://images.gr-assets.com/books/1402749479s/16143347.jpg\n349,11590,11590,3048937,211,450031063,9780450031070.0,Stephen King,1975.0,Salem's Lot,'Salem's Lot,en-GB,3.99,228680,246360,6167,2713,11724,57171,89196,85556,https://images.gr-assets.com/books/1327891565l/11590.jpg,https://images.gr-assets.com/books/1327891565s/11590.jpg\n350,7745,7745,1309111,98,679785892,9780679785900.0,\"Hunter S. Thompson, Ralph Steadman\",1971.0,Fear and Loathing in Las Vegas: A Savage Journey to the Heart of the American Dream,Fear and Loathing in Las Vegas,eng,4.08,232489,242140,5021,4730,11381,42362,84094,99573,https://images.gr-assets.com/books/1394204569l/7745.jpg,https://images.gr-assets.com/books/1394204569s/7745.jpg\n351,10025305,10025305,6674845,99,1416975888,9781416975880.0,Cassandra Clare,2011.0,Clockwork Prince,\"Clockwork Prince (The Infernal Devices, #2)\",eng,4.46,307994,328019,17854,3420,6235,29508,85633,203223,https://images.gr-assets.com/books/1460477747l/10025305.jpg,https://images.gr-assets.com/books/1460477747s/10025305.jpg\n352,20910157,20910157,40098620,29,62268341,9780062268340.0,Amy Poehler,2014.0,Yes Please,Yes Please,eng,3.81,251082,274223,20301,8886,19000,69227,96483,80627,https://images.gr-assets.com/books/1402815435l/20910157.jpg,https://images.gr-assets.com/books/1402815435s/20910157.jpg\n353,12996,12996,995103,1053,743477553,9780743477550.0,William Shakespeare,1603.0,\"The Tragedy of Othello, The Moor of Venice\",Othello,eng,3.88,238875,256757,4334,4281,16576,64922,92076,78902,https://images.gr-assets.com/books/1459795105l/12996.jpg,https://images.gr-assets.com/books/1459795105s/12996.jpg\n354,6149,6149,736076,153,1400033411,9781400033420.0,Toni Morrison,1987.0,Beloved,Beloved,eng,3.77,233825,245098,7749,12441,21409,53863,79915,77470,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347984578l/6149.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n355,3236307,3236307,3270810,87,015206396X,9780152063960.0,Kristin Cashore,2008.0,Graceling,\"Graceling (Graceling Realm, #1)\",en-CA,4.1,281185,296630,19081,6773,13946,48894,99939,127078,https://images.gr-assets.com/books/1331548394l/3236307.jpg,https://images.gr-assets.com/books/1331548394s/3236307.jpg\n356,78411,78411,1069597,126,439206472,9780439206470.0,\"Lemony Snicket, Brett Helquist\",1999.0,The Bad Beginning,\"The Bad Beginning (A Series of Unfortunate Events, #1)\",eng,3.89,275670,295024,12794,6701,18612,70767,102585,96359,https://images.gr-assets.com/books/1490085391l/78411.jpg,https://images.gr-assets.com/books/1490085391s/78411.jpg\n357,355697,355697,2662852,372,449213943,9780449213940.0,\"Erich Maria Remarque, A.W. Wheen\",1929.0,Im Westen nichts Neues,All Quiet on the Western Front,en-US,3.92,249113,265789,6947,7646,17740,55908,90874,93621,https://images.gr-assets.com/books/1441227765l/355697.jpg,https://images.gr-assets.com/books/1441227765s/355697.jpg\n358,191139,191139,2125304,40,679805273,9780679805270.0,Dr. Seuss,1990.0,\"Oh, the Places You'll Go!\",\"Oh, The Places You'll Go!\",en-US,4.34,257260,260002,4021,3615,8150,33869,63795,150573,https://images.gr-assets.com/books/1421708635l/191139.jpg,https://images.gr-assets.com/books/1421708635s/191139.jpg\n359,16115612,16115612,21933087,135,159463176X,9781594631760.0,Khaled Hosseini,2012.0,And The Mountains Echoed,And the Mountains Echoed,eng,4.03,199326,229116,24084,2049,9146,45985,93953,77983,https://images.gr-assets.com/books/1358190204l/16115612.jpg,https://images.gr-assets.com/books/1358190204s/16115612.jpg\n360,7082,7082,830939,221,345404475,9780345404470.0,\"Philip K. Dick, Roger Zelazny\",1968.0,Do Androids Dream of Electric Sheep?,Do Androids Dream of Electric Sheep?,eng,4.08,223828,245008,8330,2097,8453,45683,100794,87981,https://images.gr-assets.com/books/1435458683l/7082.jpg,https://images.gr-assets.com/books/1435458683s/7082.jpg\n361,18254,18254,3057979,1787,141439742,9780141439750.0,\"Charles Dickens, George Cruikshank, Philip Horne\",1838.0,Oliver Twist,Oliver Twist,eng,3.85,230181,253163,5342,4766,15425,65342,96135,71495,https://images.gr-assets.com/books/1327868529l/18254.jpg,https://images.gr-assets.com/books/1327868529s/18254.jpg\n362,11149,17383917,2920952,231,60652896,9780060652890.0,C.S. Lewis,1942.0,A Grief Observed,The Screwtape Letters,eng,4.21,116277,238169,8285,4524,8925,34444,75279,114997,https://images.gr-assets.com/books/1347801873l/11149.jpg,https://images.gr-assets.com/books/1347801873s/11149.jpg\n363,6936382,6936382,7168450,79,525423273,9780525423270.0,Stephanie Perkins,2010.0,Anna and the French Kiss,\"Anna and the French Kiss (Anna and the French Kiss, #1)\",en-US,4.08,259479,285344,26153,10602,14781,46011,84323,129627,https://images.gr-assets.com/books/1358271931l/6936382.jpg,https://images.gr-assets.com/books/1358271931s/6936382.jpg\n364,113946,113946,267076,72,7173040,9780007173040.0,Dr. Seuss,1957.0,How the Grinch Stole Christmas!,How the Grinch Stole Christmas!,eng,4.36,250602,256127,2204,3438,7227,32673,63395,149394,https://images.gr-assets.com/books/1327958149l/113946.jpg,https://images.gr-assets.com/books/1327958149s/113946.jpg\n365,5805,5805,392838,72,1401207928,9781401207920.0,\"Alan Moore, David   Lloyd\",1990.0,V for Vendetta,V for Vendetta,eng,4.25,210682,220640,4138,3564,6593,29496,73094,107893,https://images.gr-assets.com/books/1343668985l/5805.jpg,https://images.gr-assets.com/books/1343668985s/5805.jpg\n366,2203,2203,963375,38,743223136,9780743223130.0,David McCullough,2001.0,John Adams,John Adams,eng,4.05,215780,220127,5334,11255,10372,30772,70601,97127,https://images.gr-assets.com/books/1478144278l/2203.jpg,https://images.gr-assets.com/books/1478144278s/2203.jpg\n367,14995,14995,4574034,82,553384287,9780553384280.0,Dean Koontz,2003.0,Odd Thomas,\"Odd Thomas (Odd Thomas, #1)\",eng,3.94,205986,213895,6357,10963,12869,39433,65984,84646,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245669l/14995.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n368,119324,119324,1570229,55,679879250,9780679879250.0,Philip Pullman,1997.0,The Subtle Knife,\"The Subtle Knife (His Dark Materials, #2)\",eng,4.1,242503,270785,6139,3905,11486,47802,96998,110594,https://images.gr-assets.com/books/1451271814l/119324.jpg,https://images.gr-assets.com/books/1451271814s/119324.jpg\n369,22232,22232,963221,85,439488400,9780439488400.0,Jerry Spinelli,2000.0,Stargirl,\"Stargirl (Stargirl, #1)\",eng,3.74,237560,245315,11717,9710,22399,62918,76059,74229,https://images.gr-assets.com/books/1335947642l/22232.jpg,https://images.gr-assets.com/books/1335947642s/22232.jpg\n370,7090447,7090447,7346572,76,1423113381,9781423113390.0,Rick Riordan,2010.0,The Red Pyramid,\"The Red Pyramid (Kane Chronicles, #1)\",eng,4.06,232791,242889,10914,4565,12571,46486,78216,101051,https://images.gr-assets.com/books/1366227978l/7090447.jpg,https://images.gr-assets.com/books/1366227978s/7090447.jpg\n371,350,350,908211,130,441788386,9780441788380.0,Robert A. Heinlein,1961.0,Stranger in a Strange Land,Stranger in a Strange Land,eng,3.91,220301,229222,6293,10416,16204,45343,69937,87322,https://images.gr-assets.com/books/1156897088l/350.jpg,https://images.gr-assets.com/books/1156897088s/350.jpg\n372,10176,10176,2582035,55,965904830,9780965904830.0,David Sedaris,2004.0,Dress Your Family in Corduroy and Denim,Dress Your Family in Corduroy and Denim,eng,4.08,191923,204247,5776,2483,6620,37230,82749,75165,https://images.gr-assets.com/books/1352983006l/10176.jpg,https://images.gr-assets.com/books/1352983006s/10176.jpg\n373,6319,6319,1249788,197,141311371,9780141311370.0,\"Roald Dahl, Quentin Blake\",1982.0,The BFG,The BFG,eng,4.22,245855,264369,7906,2987,7906,42480,86105,124891,https://images.gr-assets.com/books/1327872673l/6319.jpg,https://images.gr-assets.com/books/1327872673s/6319.jpg\n374,21,21,2305997,155,076790818X,9780767908180.0,Bill Bryson,2003.0,A Short History of Nearly Everything,A Short History of Nearly Everything,en-US,4.19,191535,206367,9065,3514,7196,29992,71534,94131,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433086293l/21._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n375,1852,1852,3252320,1384,439227143,9780439227150.0,Jack London,1903.0,The Call of the Wild,The Call of the Wild,eng,3.83,223932,248795,6770,6366,16636,62853,90382,72558,https://images.gr-assets.com/books/1452291694l/1852.jpg,https://images.gr-assets.com/books/1452291694s/1852.jpg\n376,7864437,7864437,11022464,88,385738773,9780385738770.0,James Dashner,2011.0,The Death Cure,\"The Death Cure (Maze Runner, #3)\",eng,3.77,223674,257184,19975,6731,23270,68067,84128,74988,https://images.gr-assets.com/books/1303997647l/7864437.jpg,https://images.gr-assets.com/books/1303997647s/7864437.jpg\n377,16793,16793,3166179,207,61142026,9780061142020.0,Neil Gaiman,1999.0,Stardust,Stardust,eng,4.07,237602,277184,13731,2959,10183,52599,109208,102235,https://images.gr-assets.com/books/1459127484l/16793.jpg,https://images.gr-assets.com/books/1459127484s/16793.jpg\n378,33917,33917,16171,93,618485228,9780618485220.0,Jhumpa Lahiri,2003.0,The Namesake,The Namesake,en-US,3.96,184211,192903,9824,1926,8889,42552,81043,58493,https://images.gr-assets.com/books/1480106986l/33917.jpg,https://images.gr-assets.com/books/1480106986s/33917.jpg\n379,8667848,8667848,13190160,99,670022411,9780670022410.0,Deborah Harkness,2011.0,A Discovery of Witches,\"A Discovery of Witches (All Souls Trilogy, #1)\",eng,3.99,226622,249735,25179,9304,16503,43523,79322,101083,https://images.gr-assets.com/books/1322168805l/8667848.jpg,https://images.gr-assets.com/books/1322168805s/8667848.jpg\n380,11297,11297,2956680,232,375704027,9780375704020.0,\"Haruki Murakami, Jay Rubin\",1987.0,ノルウェイの森 [Noruwei no Mori],Norwegian Wood,eng,4.02,183988,217817,12522,2927,10416,41293,87041,76140,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924361l/11297.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n381,5168,5168,1649,54,446672211,9780446672210.0,Billie Letts,1995.0,Where the Heart Is,Where the Heart Is,en-US,4.0,208333,210368,3147,2053,8967,48023,79147,72178,https://images.gr-assets.com/books/1327959469l/5168.jpg,https://images.gr-assets.com/books/1327959469s/5168.jpg\n382,6567017,6567017,6759965,86,525421580,9780525421580.0,\"John Green, David Levithan\",2010.0,\"Will Grayson, Will Grayson\",\"Will Grayson, Will Grayson\",eng,3.84,236431,254305,15782,8039,18868,60009,87132,80257,https://images.gr-assets.com/books/1368393890l/6567017.jpg,https://images.gr-assets.com/books/1368393890s/6567017.jpg\n383,1241,1241,3140930,69,307276902,9780307276900.0,James Frey,2003.0,A Million Little Pieces,A Million Little Pieces,en-CA,3.62,184241,189931,10857,9619,18950,51504,63727,46131,https://images.gr-assets.com/books/1483206985l/1241.jpg,https://images.gr-assets.com/books/1483206985s/1241.jpg\n384,2282133,2282133,6651004,93,1595141758,9781595141750.0,Richelle Mead,2008.0,Frostbite,\"Frostbite (Vampire Academy, #2)\",eng,4.3,256745,270065,10056,2851,7224,36392,84199,139399,https://images.gr-assets.com/books/1361098960l/2282133.jpg,https://images.gr-assets.com/books/1361098960s/2282133.jpg\n385,8520610,8520610,13387396,86,307352145,9780307352150.0,Susan Cain,2012.0,Quiet: The Power of Introverts in a World that Can't Stop Talking,Quiet: The Power of Introverts in a World That Can't Stop Talking,eng,4.04,202135,221729,17573,5116,10093,39869,82757,83894,https://images.gr-assets.com/books/1328562861l/8520610.jpg,https://images.gr-assets.com/books/1328562861s/8520610.jpg\n386,233818,233818,3215136,127,440439884,9780440439880.0,Scott O'Dell,1960.0,Island of the Blue Dolphins,\"Island of the Blue Dolphins (Island of the Blue Dolphins, #1)\",en-CA,3.8,236015,245968,6699,8175,19308,61975,80520,75990,https://images.gr-assets.com/books/1475166260l/233818.jpg,https://images.gr-assets.com/books/1475166260s/233818.jpg\n387,17250,17250,1426723,133,142437336,9780142437340.0,\"Arthur Miller, Christopher Bigsby\",1953.0,The Crucible,The Crucible,eng,3.55,242980,253242,5390,9010,29173,80661,83304,51094,https://images.gr-assets.com/books/1447764813l/17250.jpg,https://images.gr-assets.com/books/1447764813s/17250.jpg\n388,50,50,1158125,93,689840926,9780689840920.0,Gary Paulsen,1986.0,Hatchet,\"Hatchet (Brian's Saga, #1)\",en-US,3.68,222553,231963,10378,12070,22390,59179,73180,65144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385297074l/50.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n389,68428,68428,66322,75,076531178X,9780765311790.0,Brandon Sanderson,2006.0,Mistborn : The Final Empire,\"The Final Empire (Mistborn, #1)\",eng,4.43,208944,238993,16276,1783,4008,20554,76611,136037,https://images.gr-assets.com/books/1480717416l/68428.jpg,https://images.gr-assets.com/books/1480717416s/68428.jpg\n390,51496,51496,3164921,1974,451528956,9780451528960.0,\"Robert Louis Stevenson, Vladimir Nabokov, Mervyn Peake, Dan Chaon\",1886.0,The Strange Case of Dr Jekyll and Mr Hyde,The Strange Case of Dr. Jekyll and Mr. Hyde,eng,3.79,223535,259652,7958,2939,16110,76470,100514,63619,https://images.gr-assets.com/books/1318116526l/51496.jpg,https://images.gr-assets.com/books/1318116526s/51496.jpg\n391,7784,7784,886002,40,679889108,9780679889110.0,Dr. Seuss,1971.0,The Lorax,The Lorax,eng,4.35,226564,230363,3231,3193,6884,29815,57259,133212,https://images.gr-assets.com/books/1327879938l/7784.jpg,https://images.gr-assets.com/books/1327879938s/7784.jpg\n392,389627,389627,2617009,115,810993139,9780810993140.0,Jeff Kinney,2004.0,Greg Heffley's Journal,\"Diary of a Wimpy Kid (Diary of a Wimpy Kid, #1)\",en-US,3.96,254852,263269,13337,10196,18564,53471,69722,111316,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n393,7896527,7896527,11138426,73,1599906953,9781599906960.0,Sarah J. Maas,2012.0,Throne of Glass,\"Throne of Glass (Throne of Glass, #1)\",eng,4.24,274987,327865,29145,8471,12115,41710,96202,169367,https://images.gr-assets.com/books/1495278054l/7896527.jpg,https://images.gr-assets.com/books/1495278054s/7896527.jpg\n394,2802316,2802316,6651006,88,1595141979,9781595141970.0,Richelle Mead,2008.0,Shadow Kiss,\"Shadow Kiss (Vampire Academy, #3)\",en-US,4.37,266742,278963,10074,2876,6532,32789,78293,158473,https://images.gr-assets.com/books/1361099049l/2802316.jpg,https://images.gr-assets.com/books/1361099049s/2802316.jpg\n395,46170,46170,2252079,371,684803356,9780684803360.0,Ernest Hemingway,1940.0,For Whom the Bell Tolls,For Whom the Bell Tolls,eng,3.95,195063,206219,4658,4578,11772,43122,75680,71067,https://images.gr-assets.com/books/1492591524l/46170.jpg,https://images.gr-assets.com/books/1492591524s/46170.jpg\n396,3367956,3367956,3407295,69,345505336,9780345505330.0,Jamie Ford,2009.0,Hotel on the Corner of Bitter and Sweet,Hotel on the Corner of Bitter and Sweet,eng,3.98,197294,211336,18120,2345,9368,44408,88468,66747,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348332221l/3367956.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n397,343,343,2977727,364,140120831,9780140120840.0,\"Patrick Süskind, John E. Woods\",1985.0,Das Parfum. Die Geschichte eines Mörders,Perfume: The Story of a Murderer,eng,4.0,178135,222754,10057,5659,12862,41804,78658,83771,https://images.gr-assets.com/books/1409112276l/343.jpg,https://images.gr-assets.com/books/1409112276s/343.jpg\n398,1097,1097,2207547,61,60838582,9780060838580.0,Eric Schlosser,2001.0,Fast Food Nation : The Dark Side of the All-American Meal ,Fast Food Nation: The Dark Side of the All-American Meal,eng,3.73,179347,183361,5063,7881,12314,47602,69009,46555,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554229727l/1097._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n399,3950967,3950967,3007490,131,747599874,9780747599880.0,J.K. Rowling,2007.0,The Tales of Beedle the Bard,The Tales of Beedle the Bard,en-US,4.06,284833,319107,11330,3019,15025,69367,103350,128346,https://images.gr-assets.com/books/1373467575l/3950967.jpg,https://images.gr-assets.com/books/1373467575s/3950967.jpg\n400,22328,888628,909457,143,441569595,9780441569600.0,William Gibson,1984.0,Neuromancer,Neuromancer,eng,3.88,183878,202417,6623,9313,14728,40328,65376,72672,https://images.gr-assets.com/books/1167348726l/22328.jpg,https://images.gr-assets.com/books/1167348726s/22328.jpg\n401,10799,10799,4652599,425,99910101,9780099910110.0,Ernest Hemingway,1929.0,A Farewell to Arms,A Farewell to Arms,en-US,3.79,186613,207523,7249,6224,16181,50604,77096,57418,https://images.gr-assets.com/books/1313714836l/10799.jpg,https://images.gr-assets.com/books/1313714836s/10799.jpg\n402,391729,391729,1383053,12,553212281,9780553212280.0,Edgar Allan Poe,1843.0,The Tell-Tale Heart,The Tell-Tale Heart and Other Writings,en-GB,4.15,195689,197636,1050,2456,6438,33803,70786,84153,https://images.gr-assets.com/books/1327936583l/391729.jpg,https://images.gr-assets.com/books/1327936583s/391729.jpg\n403,10534,10534,3200649,1865,1590302257,9781590302260.0,\"Sun Tzu, Thomas Cleary\",-500.0,孫子兵法 [Sūnzi bīngfǎ],The Art of War,eng,3.95,167332,203948,6335,2930,11589,48265,70644,70520,https://images.gr-assets.com/books/1453417993l/10534.jpg,https://images.gr-assets.com/books/1453417993s/10534.jpg\n404,11367726,11367726,16298550,76,385344228,9780385344230.0,William Landay,2012.0,Defending Jacob,Defending Jacob,eng,3.97,182025,202066,17681,2777,8608,42024,87107,61550,https://images.gr-assets.com/books/1329612158l/11367726.jpg,https://images.gr-assets.com/books/1329612158s/11367726.jpg\n405,4980,4980,2859378,112,385334206,9780385334200.0,Kurt Vonnegut Jr.,1973.0,Breakfast of Champions,Breakfast of Champions,eng,4.08,178154,187177,5265,2137,7189,34421,72558,70872,https://images.gr-assets.com/books/1327934446l/4980.jpg,https://images.gr-assets.com/books/1327934446s/4980.jpg\n406,627206,627206,1763052,64,874774241,9780874774240.0,Betty Edwards,1979.0,Drawing on the Right Side of the Brain,The New Drawing on the Right Side of the Brain,en-US,3.84,218264,224450,591,16846,16544,44024,56358,90678,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348133732l/627206.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n407,5826,5826,859342,77,60838728,9780060838720.0,Ann Patchett,2001.0,Bel Canto,Bel Canto,eng,3.92,192330,200256,12134,4523,13395,43193,71190,67955,https://images.gr-assets.com/books/1352997328l/5826.jpg,https://images.gr-assets.com/books/1352997328s/5826.jpg\n408,1842,1842,2138852,118,739467352,9780739467350.0,Jared Diamond,1997.0,\"Guns, Germs, and Steel: The Fates of Human Societies\",\"Guns, Germs, and Steel: The Fates of Human Societies\",eng,4.0,171558,185443,7872,4352,9752,35299,68549,67491,https://images.gr-assets.com/books/1453215833l/1842.jpg,https://images.gr-assets.com/books/1453215833s/1842.jpg\n409,9375,9375,2129359,94,375508414,9780375508420.0,Fannie Flagg,1987.0,Fried Green Tomatoes at the Whistle Stop Cafe,Fried Green Tomatoes at the Whistle Stop Cafe,,4.26,207508,216286,4439,1259,4353,31358,79626,99690,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165961740l/9375.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n410,37781,37781,825843,161,385474547,9780385474540.0,Chinua Achebe,1958.0,Things Fall Apart,\"Things Fall Apart (The African Trilogy, #1)\",en-US,3.61,199346,213360,9884,9494,22041,59144,74584,48097,https://images.gr-assets.com/books/1352082529l/37781.jpg,https://images.gr-assets.com/books/1352082529s/37781.jpg\n411,33722,33722,2914,99,385338694,9780385338690.0,Sophie Kinsella,2005.0,The Undomestic Goddess,The Undomestic Goddess,eng,3.82,200509,209361,6772,4985,13344,56048,75290,59694,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546431135l/33722._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n412,567795,23878688,832090,147,1881273156,9781881273160.0,Gary Chapman,1990.0,The Five Love Languages: How to Express Heartfelt Commitment to Your Mate,The Five Love Languages: How to Express Heartfelt Commitment to Your Mate,en-US,4.23,165675,195438,7647,2672,6275,29306,63108,94077,https://images.gr-assets.com/books/1369401342l/567795.jpg,https://images.gr-assets.com/books/1369401342s/567795.jpg\n413,7190,7190,1263212,1341,,,Alexandre Dumas,1844.0,Les Trois Mousquetaires,The Three Musketeers,,4.06,195274,221481,4974,2176,8195,46090,83254,81766,https://images.gr-assets.com/books/1320436982l/7190.jpg,https://images.gr-assets.com/books/1320436982s/7190.jpg\n414,6948436,6948436,4126074,82,1416589643,9781416589650.0,Chris Cleave,2008.0,The Other Hand,Little Bee,en-US,3.7,116784,197953,19680,5111,16849,54949,77107,43937,https://images.gr-assets.com/books/1344401905l/6948436.jpg,https://images.gr-assets.com/books/1344401905s/6948436.jpg\n415,3975774,3975774,4021549,78,031253275X,9780312532760.0,Alyson Noel,2009.0,Evermore,\"Evermore (The Immortals, #1)\",en-US,3.59,230031,235704,9228,16941,29301,59174,59075,71213,https://images.gr-assets.com/books/1362336360l/3975774.jpg,https://images.gr-assets.com/books/1362336360s/3975774.jpg\n416,6327,6327,105046,174,590032496,9780590032490.0,\"Roald Dahl, Quentin Blake\",1983.0,The Witches,The Witches,en-US,4.17,221431,234145,5190,3156,7583,40191,79598,103617,https://images.gr-assets.com/books/1351707720l/6327.jpg,https://images.gr-assets.com/books/1351707720s/6327.jpg\n417,40440,40440,849453,137,743298020,9780743298020.0,Diane Setterfield,2006.0,The Thirteenth Tale,The Thirteenth Tale,eng,3.95,213200,228602,19432,4510,12847,49274,85569,76402,https://images.gr-assets.com/books/1346267826l/40440.jpg,https://images.gr-assets.com/books/1346267826s/40440.jpg\n418,6479259,6479259,6670482,71,1595142509,9781595142500.0,Richelle Mead,2010.0,Spirit Bound,\"Spirit Bound (Vampire Academy, #5)\",eng,4.37,224247,235076,8030,2755,5907,26981,66097,133336,https://images.gr-assets.com/books/1291168967l/6479259.jpg,https://images.gr-assets.com/books/1291168967s/6479259.jpg\n419,5996153,5996153,6651007,76,1595141987,9781595141990.0,Richelle Mead,2009.0,Blood Promise,\"Blood Promise (Vampire Academy, #4)\",en-US,4.35,231853,244376,8782,2186,6182,30711,70250,135047,https://images.gr-assets.com/books/1442530605l/5996153.jpg,https://images.gr-assets.com/books/1442530605s/5996153.jpg\n420,3478,3478,1622450,133,446676071,9780446676080.0,Nicholas Sparks,1998.0,Message in a Bottle,Message in a Bottle,en-US,3.95,185116,192001,3721,4500,11979,44190,59999,71333,https://images.gr-assets.com/books/1163789140l/3478.jpg,https://images.gr-assets.com/books/1163789140s/3478.jpg\n421,8683812,8683812,13556031,77,345521307,9780345521310.0,Paula McLain,2011.0,The Paris Wife,The Paris Wife,eng,3.79,191850,207590,18836,3575,12959,53900,89887,47269,https://images.gr-assets.com/books/1320545874l/8683812.jpg,https://images.gr-assets.com/books/1320545874s/8683812.jpg\n422,862041,862041,2962492,76,545044251,9780545044260.0,J.K. Rowling,1998.0,Complete Harry Potter Boxed Set,\"Harry Potter Boxset (Harry Potter, #1-7)\",eng,4.74,190050,204125,6508,1105,1285,7020,30666,164049,https://images.gr-assets.com/books/1392579059l/862041.jpg,https://images.gr-assets.com/books/1392579059s/862041.jpg\n423,16248068,16248068,20397129,84,62059963,9780062059960.0,Kiera Cass,2013.0,The Elite,\"The Elite (The Selection, #2)\",eng,4.02,234247,269816,21810,4780,15546,53644,91201,104645,https://images.gr-assets.com/books/1391454595l/16248068.jpg,https://images.gr-assets.com/books/1391454595s/16248068.jpg\n424,119073,119073,3138328,428,156001314,9780156001310.0,\"Umberto Eco, William Weaver, Seán Barrett\",1980.0,Il nome della rosa,The Name of the Rose,en-US,4.11,200217,224974,6075,4575,10031,36282,79311,94775,https://images.gr-assets.com/books/1415375471l/119073.jpg,https://images.gr-assets.com/books/1415375471s/119073.jpg\n425,46799,46799,2115708,92,1416914633,9781416914630.0,\"Beatrice Sparks, Anonymous\",1971.0,Go Ask Alice,Go Ask Alice,eng,3.77,196677,205554,9202,7940,18269,51957,63188,64200,https://images.gr-assets.com/books/1327870536l/46799.jpg,https://images.gr-assets.com/books/1327870536s/46799.jpg\n426,310612,310612,968084,131,802130208,9780802130200.0,\"John Kennedy Toole, Walker Percy\",1980.0,A Confederacy of Dunces,A Confederacy of Dunces,eng,3.89,170776,185391,11881,10993,15078,31369,54306,73645,https://images.gr-assets.com/books/1436747103l/310612.jpg,https://images.gr-assets.com/books/1436747103s/310612.jpg\n427,92303,92303,649216,728,158049580X,9781580495810.0,Oscar Wilde,1895.0,The Importance of Being Earnest,The Importance of Being Earnest,eng,4.17,210630,232256,6560,2127,7457,38513,85492,98667,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298438452l/92303.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n428,12127750,12127750,17115055,65,1423140605,9781423140600.0,Rick Riordan,2012.0,The Mark of Athena,\"The Mark of Athena (The Heroes of Olympus, #3)\",eng,4.47,277491,293586,13332,2771,4480,26318,77876,182141,https://images.gr-assets.com/books/1464201354l/12127750.jpg,https://images.gr-assets.com/books/1464201354s/12127750.jpg\n429,34497,34497,194190,153,60855924,9780060855920.0,Terry Pratchett,1983.0,The Colour of Magic,\"The Color of Magic (Discworld, #1; Rincewind #1)\",eng,3.97,190590,225614,6520,3601,11554,50463,81295,78701,https://images.gr-assets.com/books/1407111017l/34497.jpg,https://images.gr-assets.com/books/1407111017s/34497.jpg\n430,4929,4929,6191072,157,1400079276,9781400079280.0,\"Haruki Murakami, Philip Gabriel\",2002.0,海辺のカフカ [Umibe no Kafuka],Kafka on the Shore,en-US,4.13,167593,195365,13279,2593,7557,30809,75564,78842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429638085l/4929.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n431,28877,28877,925503,191,525945563,9780525945570.0,Thomas Harris,1981.0,Red Dragon,\"Red Dragon (Hannibal Lecter, #1)\",eng,4.01,194013,205433,3309,3012,7790,43235,80662,70734,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1593241110l/28877.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n432,41804,41804,1796026,218,553803700,9780553803710.0,Isaac Asimov,1950.0,\"I, Robot\",\"I, Robot (Robot #0.1)\",eng,4.17,198368,210219,4335,1221,5332,35107,82535,86024,https://images.gr-assets.com/books/1388321463l/41804.jpg,https://images.gr-assets.com/books/1388321463s/41804.jpg\n433,42899,42899,2158128,73,451216954,9780451216950.0,J.R. Ward,2005.0,Dark Lover,\"Dark Lover (Black Dagger Brotherhood, #1)\",eng,4.21,227021,238633,10769,6659,10012,33160,64879,123923,https://images.gr-assets.com/books/1429676285l/42899.jpg,https://images.gr-assets.com/books/1429676285s/42899.jpg\n434,7791997,7791997,6867038,73,1416989439,9781416989430.0,Becca Fitzpatrick,2010.0,Crescendo,\"Crescendo (Hush, Hush, #2)\",en-US,4.07,226237,234040,10041,5296,13835,43129,68217,103563,https://images.gr-assets.com/books/1362408146l/7791997.jpg,https://images.gr-assets.com/books/1362408146s/7791997.jpg\n435,6482837,6482837,6674135,82,61726818,9780061726810.0,Lauren Oliver,2010.0,Before I Fall,Before I Fall,eng,3.92,220160,232559,17705,6283,15320,50933,79050,80973,https://images.gr-assets.com/books/1361044695l/6482837.jpg,https://images.gr-assets.com/books/1361044695s/6482837.jpg\n436,9777,9777,810135,168,679457313,9780679457310.0,Arundhati Roy,1997.0,The God of Small Things,The God of Small Things,eng,3.91,165378,182127,9294,5833,12631,37349,61880,64434,https://images.gr-assets.com/books/1436217001l/9777.jpg,https://images.gr-assets.com/books/1436217001s/9777.jpg\n437,18079776,18079776,25387072,63,670024783,9780670024780.0,Sue Monk Kidd,2014.0,The Invention of Wings,The Invention of Wings,en-US,4.23,168006,193774,19518,1466,4021,25745,80524,82018,https://images.gr-assets.com/books/1386699861l/18079776.jpg,https://images.gr-assets.com/books/1386699861s/18079776.jpg\n438,6469165,6469165,6659752,68,141043768,9780141043760.0,Liane Moriarty,2009.0,What Alice Forgot,What Alice Forgot,eng,4.05,165704,205778,17382,1599,6071,38562,93941,65605,https://images.gr-assets.com/books/1377159022l/6469165.jpg,https://images.gr-assets.com/books/1377159022s/6469165.jpg\n439,3869,3869,2192250,246,553380168,9780553380160.0,\"Stephen Hawking, Cao Chi, Phạm Văn Thiều\",1987.0,A Brief History of Time: From the Big Bang to Black Holes,A Brief History of Time,eng,4.12,165628,181410,5146,2487,6028,30632,70364,71899,https://images.gr-assets.com/books/1333578746l/3869.jpg,https://images.gr-assets.com/books/1333578746s/3869.jpg\n440,7315573,7315573,8842841,140,525951652,9780525951650.0,Ken Follett,2010.0,Fall of Giants,\"Fall of Giants (The Century Trilogy, #1)\",eng,4.26,168911,190478,11859,2009,5158,24893,68375,90043,https://images.gr-assets.com/books/1470384630l/7315573.jpg,https://images.gr-assets.com/books/1470384630s/7315573.jpg\n441,6320534,6320534,6760952,110,1439148503,9781439148500.0,Stephen King,2009.0,Under the Dome,Under the Dome,eng,3.89,183292,201322,13086,4863,12998,44938,74323,64200,https://images.gr-assets.com/books/1268982908l/6320534.jpg,https://images.gr-assets.com/books/1268982908s/6320534.jpg\n442,830,830,493634,80,553380958,9780553380960.0,Neal Stephenson,1992.0,Snow Crash,Snow Crash,eng,4.02,175883,187292,7075,7982,10158,29605,61336,78211,https://images.gr-assets.com/books/1477624625l/830.jpg,https://images.gr-assets.com/books/1477624625s/830.jpg\n443,51738,51738,1032901,61,670061050,9780670061050.0,Sarah Dessen,2006.0,Just Listen,Just Listen,en-US,4.06,202180,207930,7319,3665,10143,40684,68323,85115,https://images.gr-assets.com/books/1358270741l/51738.jpg,https://images.gr-assets.com/books/1358270741s/51738.jpg\n444,99107,99107,1225592,244,525467564,9780525467560.0,\"A.A. Milne, Ernest H. Shepard\",1926.0,Winnie-the-Pooh,\"Winnie-the-Pooh (Winnie-the-Pooh, #1)\",eng,4.34,207550,215213,2978,2636,5254,28148,60427,118748,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298440130l/99107.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n445,9736930,9736930,14625976,150,62060554,9780062060560.0,S.J. Watson,2011.0,Before I Go to Sleep,Before I Go to Sleep,en-CA,3.87,180896,213136,19206,3703,12436,51695,84940,60362,https://images.gr-assets.com/books/1358353512l/9736930.jpg,https://images.gr-assets.com/books/1358353512s/9736930.jpg\n446,102868,102868,1997473,1106,1420925539,9781420925530.0,Arthur Conan Doyle,1887.0,A Study in Scarlet,A Study in Scarlet,eng,4.15,201499,220115,6954,2318,5550,38107,85345,88795,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519031842l/102868._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n447,2248573,2248573,3124969,143,375826726,9780375826730.0,Christopher Paolini,2008.0,Brisingr,\"Brisingr (The Inheritance Cycle, #3)\",eng,4.03,211645,226941,7993,4273,13094,44147,75689,89738,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391443970l/2248573.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n448,56495,56495,2265235,149,310276993,9780310277000.0,Rick Warren,2002.0,The Purpose Driven Life: What on Earth am I Here For?,The Purpose Driven Life: What on Earth Am I Here for?,en-US,3.9,170491,176463,2755,9635,13051,34305,48395,71077,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440111652l/56495._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n449,676924,676924,662923,80,312360282,9780312360280.0,\"P.C. Cast, Kristin Cast\",2007.0,Betrayed: a House of Night Novel,\"Betrayed (House of Night, #2)\",en-US,3.93,205340,213261,4993,6222,15443,47467,62243,81886,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406941788l/676924.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n450,47212,47212,1137060,75,451457811,9780451457810.0,Jim Butcher,2000.0,Storm Front,\"Storm Front (The Dresden Files, #1)\",en-US,4.02,203053,219442,12005,3325,9842,45940,80371,79964,https://images.gr-assets.com/books/1419456275l/47212.jpg,https://images.gr-assets.com/books/1419456275s/47212.jpg\n451,50398,50398,4039699,122,1593082649,9781593082640.0,\"Jane Austen, Alfred MacAdam\",1817.0,Northanger Abbey,Northanger Abbey,eng,3.8,205167,232299,8616,4132,15938,65157,84363,62709,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201718l/50398.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n452,16101128,16101128,19187812,102,399162410,9780399162410.0,Rick Yancey,2013.0,The 5th Wave,\"The 5th Wave (The 5th Wave, #1)\",eng,4.1,260048,287540,26756,6176,13097,47631,98816,121820,https://images.gr-assets.com/books/1359853842l/16101128.jpg,https://images.gr-assets.com/books/1359853842s/16101128.jpg\n453,10920,10920,1006369,97,802142842,9780802142850.0,Charles Frazier,1997.0,Cold Mountain,Cold Mountain,en-US,3.83,185979,190137,4884,6078,14021,43914,68143,57981,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442416348l/10920._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n454,767680,767680,3132746,41,60245867,9780060245860.0,\"Laura Joffe Numeroff, Felicia Bond\",1985.0,If You Give a Mouse a Cookie,If You Give a Mouse a Cookie,en-US,4.24,198083,198778,3016,3208,7772,32336,50573,104889,https://images.gr-assets.com/books/1276046901l/767680.jpg,https://images.gr-assets.com/books/1276046901s/767680.jpg\n455,42155,42155,1470371,43,312323867,9780312323870.0,Emily Giffin,2005.0,Something Blue,\"Something Blue (Darcy & Rachel, #2)\",en-US,3.92,172417,178529,6646,2164,9144,44161,68226,54834,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n456,12220,12220,142449,109,822210894,9780822210890.0,Tennessee Williams,1947.0,A Streetcar Named Desire,A Streetcar Named Desire,eng,3.97,194493,206983,2841,3436,11347,45238,74929,72033,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389153133l/12220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n457,10692,10692,3061272,129,751537284,9780751537280.0,Elizabeth Kostova,2005.0,The Historian,The Historian,eng,3.77,190473,207529,14252,8554,18768,48197,68781,63229,https://images.gr-assets.com/books/1338298031l/10692.jpg,https://images.gr-assets.com/books/1338298031s/10692.jpg\n458,20170404,20170404,28098716,63,385353308,9780385353300.0,Emily St. John Mandel,2014.0,Station Eleven,Station Eleven,eng,4.02,160466,189380,24215,4039,8449,33537,77755,65600,https://images.gr-assets.com/books/1451446835l/20170404.jpg,https://images.gr-assets.com/books/1451446835s/20170404.jpg\n459,18774964,18774964,21619954,132,1476738017,9781476738020.0,\"Fredrik Backman, Henning Koch\",2012.0,En man som heter Ove,A Man Called Ove,eng,4.35,183777,243440,34386,2589,5734,25138,81377,128602,https://images.gr-assets.com/books/1405259930l/18774964.jpg,https://images.gr-assets.com/books/1405259930s/18774964.jpg\n460,18335634,18335634,6309710,79,1406321346,9781406321340.0,Cassandra Clare,2013.0,Clockwork Princess,\"Clockwork Princess (The Infernal Devices, #3)\",eng,4.59,162099,247984,23261,1935,3804,16964,49313,175968,https://images.gr-assets.com/books/1436788488l/18335634.jpg,https://images.gr-assets.com/books/1436788488s/18335634.jpg\n461,1078,1078,2346070,210,1416500189,9781416500190.0,Pearl S. Buck,1931.0,The Good Earth,\"The Good Earth (House of Earth, #1)\",eng,3.97,182220,193405,8259,5262,11487,38413,67056,71187,https://images.gr-assets.com/books/1312497600l/1078.jpg,https://images.gr-assets.com/books/1312497600s/1078.jpg\n462,2784,2784,2507145,34,140135154,9780140135150.0,John Berger,1972.0,Ways of Seeing,Ways of Seeing,eng,3.75,155658,156859,790,13276,13342,32193,39251,58797,https://images.gr-assets.com/books/1464018308l/2784.jpg,https://images.gr-assets.com/books/1464018308s/2784.jpg\n463,5364,5364,2866304,141,385335970,9780385335970.0,Diana Gabaldon,1992.0,Dragonfly in Amber,\"Dragonfly in Amber (Outlander, #2)\",eng,4.31,178110,210989,12025,1200,4958,27491,70976,106364,https://images.gr-assets.com/books/1456114344l/5364.jpg,https://images.gr-assets.com/books/1456114344s/5364.jpg\n465,14758,14758,964332,53,743495667,9780743495660.0,Jennifer Weiner,2002.0,In Her Shoes,In Her Shoes,,3.78,167400,174338,2513,3345,11596,50482,64358,44557,https://images.gr-assets.com/books/1435252471l/14758.jpg,https://images.gr-assets.com/books/1435252471s/14758.jpg\n466,659469,659469,16998382,44,345368584,9780345368580.0,\"Chuck Dixon, J.R.R. Tolkien, David Wenzel, Sean Deming\",1989.0,The Hobbit,The Hobbit: Graphic Novel,eng,4.48,155338,159435,957,991,2180,14437,43107,98720,https://images.gr-assets.com/books/1374681632l/659469.jpg,https://images.gr-assets.com/books/1374681632s/659469.jpg\n467,297673,297673,3281466,9,1594489580,9781594489590.0,Junot Díaz,2007.0,The Brief Wondrous Life of Oscar Wao,The Brief Wondrous Life of Oscar Wao,eng,3.89,160330,181124,16640,5212,12924,37298,67080,58610,https://images.gr-assets.com/books/1391409748l/297673.jpg,https://images.gr-assets.com/books/1391409748s/297673.jpg\n468,37415,37415,1643555,80,61120065,9780061120060.0,Zora Neale Hurston,1937.0,Their Eyes Were Watching God,Their Eyes Were Watching God,eng,3.87,181106,198264,9005,5743,14231,44676,69779,63835,https://images.gr-assets.com/books/1368072803l/37415.jpg,https://images.gr-assets.com/books/1368072803s/37415.jpg\n469,41899,41899,4195128,123,439321603,9780439321600.0,\"Newt Scamander, J.K. Rowling, Albus Dumbledore\",2001.0,Fantastic Beasts and Where to Find Them,Fantastic Beasts and Where to Find Them,eng,3.95,185928,209465,6523,2847,13155,52573,64027,76863,https://images.gr-assets.com/books/1303738520l/41899.jpg,https://images.gr-assets.com/books/1303738520s/41899.jpg\n470,17851885,17851885,24987300,129,316322407,9780316322410.0,\"Malala Yousafzai, Christina Lamb\",2012.0,I Am Malala: The Girl Who Stood Up for Education and Was Shot by the Taliban,I Am Malala: The Story of the Girl Who Stood Up for Education and Was Shot by the Taliban,eng,4.06,214412,227850,14667,7433,9470,38518,77944,94485,https://images.gr-assets.com/books/1375414895l/17851885.jpg,https://images.gr-assets.com/books/1375414895s/17851885.jpg\n471,45032,45032,2722329,1208,141439807,9780141439810.0,\"Jane Austen, Kathryn Sutherland, Tony Tanner, Claire Lamont\",1814.0,Mansfield Park,Mansfield Park,eng,3.84,205064,224467,7046,4183,14784,59163,82001,64336,https://images.gr-assets.com/books/1397063295l/45032.jpg,https://images.gr-assets.com/books/1397063295s/45032.jpg\n472,4069,4069,3389674,187,080701429X,9780807014300.0,Viktor E. Frankl,1946.0,…trotzdem Ja zum Leben sagen: Ein Psychologe erlebt das Konzentrationslager,Man's Search for Meaning,eng,4.33,171281,193751,10147,2161,4948,23224,59644,103774,https://images.gr-assets.com/books/1467136625l/4069.jpg,https://images.gr-assets.com/books/1467136625s/4069.jpg\n473,237209,237209,3088141,78,670038601,9780670038600.0,Tana French,2007.0,In the Woods,\"In the Woods (Dublin Murder Squad, #1)\",eng,3.74,188024,201721,15392,6553,15636,51430,77182,50920,https://images.gr-assets.com/books/1348442606l/237209.jpg,https://images.gr-assets.com/books/1348442606s/237209.jpg\n474,14743,14743,3044365,104,618680004,9780618680010.0,Richard Dawkins,2006.0,The God Delusion,The God Delusion,eng,3.89,162740,176774,6812,9571,11019,31723,60769,63692,https://images.gr-assets.com/books/1347220693l/14743.jpg,https://images.gr-assets.com/books/1347220693s/14743.jpg\n475,8492825,8492825,10706553,8,525422943,9780525422940.0,Gayle Forman,2011.0,Where She Went,\"Where She Went (If I Stay, #2)\",en-US,4.06,193141,218362,18556,2856,10629,43007,76839,85031,https://images.gr-assets.com/books/1347810457l/8492825.jpg,https://images.gr-assets.com/books/1347810457s/8492825.jpg\n476,7069,7069,1028204,165,345915593,9780345915600.0,John Irving,1978.0,The World According to Garp,The World According to Garp,eng,4.07,167106,179078,4569,3098,7716,31528,67942,68794,https://images.gr-assets.com/books/1447234581l/7069.jpg,https://images.gr-assets.com/books/1447234581s/7069.jpg\n477,78129,78129,4511038,127,515141429,9780515141430.0,Lee Child,1997.0,Killing Floor,\"Killing Floor (Jack Reacher, #1)\",eng,4.04,162972,182703,8032,2652,7160,35471,71953,65467,https://images.gr-assets.com/books/1399313258l/78129.jpg,https://images.gr-assets.com/books/1399313258s/78129.jpg\n478,2932,2932,604666,558,375757325,9780375757330.0,\"Daniel Defoe, Gerald McCann, Virginia Woolf\",1719.0,\"The Life and Strange Surprising Adventures of Robinson Crusoe of York, Mariner\",Robinson Crusoe,eng,3.66,178188,196865,4603,6429,18126,58497,67140,46673,https://images.gr-assets.com/books/1403180114l/2932.jpg,https://images.gr-assets.com/books/1403180114s/2932.jpg\n479,28862,28862,1335445,1654,937832383,9780937832390.0,\"Niccolò Machiavelli, Adolph Caso, Rufus Goodwin, Benjamin Martinez\",1513.0,Il Principe,The Prince,eng,3.78,153128,181980,5389,4222,14222,49930,63294,50312,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390055828l/28862.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n480,18122,18122,1774510,42,440238153,9780440238160.0,Philip Pullman,2000.0,The Amber Spyglass,\"The Amber Spyglass (His Dark Materials, #3)\",eng,4.06,192315,217610,6693,4739,11883,39131,70648,91209,https://images.gr-assets.com/books/1329189152l/18122.jpg,https://images.gr-assets.com/books/1329189152s/18122.jpg\n481,43889,43889,1323305,90,765346524,9780765346520.0,Terry Goodkind,1994.0,Wizard's First Rule,\"Wizard's First Rule (Sword of Truth, #1)\",eng,4.13,175771,188159,5485,6176,9386,27430,55921,89246,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385248539l/43889.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n482,6837103,6837103,7048306,46,1439153663,9781439153670.0,Kathleen Grissom,2010.0,The Kitchen House,The Kitchen House,en-CA,4.18,168082,179277,15812,1830,5689,26149,71058,74551,https://images.gr-assets.com/books/1463229128l/6837103.jpg,https://images.gr-assets.com/books/1463229128s/6837103.jpg\n483,5113,5113,3118417,125,316769029,9780316769020.0,J.D. Salinger,1961.0,Franny and Zooey,Franny and Zooey,en-US,3.98,152906,162697,5297,2841,9398,34950,56515,58993,https://images.gr-assets.com/books/1355037988l/5113.jpg,https://images.gr-assets.com/books/1355037988s/5113.jpg\n484,29059,29059,3185242,84,385720920,9780385720920.0,Chuck Palahniuk,2001.0,Choke,Choke,eng,3.69,154643,162963,5328,4541,13841,46314,60868,37399,https://images.gr-assets.com/books/1403186013l/29059.jpg,https://images.gr-assets.com/books/1403186013s/29059.jpg\n485,4934,4934,3393910,1072,374528373,9780374528380.0,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",1880.0,Братья Карамазовы,The Brothers Karamazov,eng,4.3,155838,178135,7640,2339,5887,22752,51450,95707,https://images.gr-assets.com/books/1427728126l/4934.jpg,https://images.gr-assets.com/books/1427728126s/4934.jpg\n486,307791,307791,2285229,69,375822747,9780375822740.0,Jeanne DuPrau,2003.0,The City of Ember,\"The City of Ember (Book of Ember, #1)\",eng,3.85,198809,204085,9322,3684,13227,53014,74561,59599,https://images.gr-assets.com/books/1397931596l/307791.jpg,https://images.gr-assets.com/books/1397931596s/307791.jpg\n487,7670,7670,997271,122,60541814,9780060541810.0,Michael Crichton,1969.0,The Andromeda Strain,The Andromeda Strain,,3.87,173186,178917,2555,1599,9379,48894,69876,49169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587497243l/7670.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n488,11566,11566,15599,162,451933028,9780451933030.0,Stephen King,1996.0,The Green Mile,The Green Mile,eng,4.42,173950,191109,4873,725,3044,19770,59813,107757,https://images.gr-assets.com/books/1373903563l/11566.jpg,https://images.gr-assets.com/books/1373903563s/11566.jpg\n489,2547,2547,2938937,721,000100039X,9780001000390.0,Kahlil Gibran,1923.0,The Prophet,The Prophet,eng,4.22,142641,164552,6263,2748,6601,24667,47472,83064,https://images.gr-assets.com/books/1355046521l/2547.jpg,https://images.gr-assets.com/books/1355046521s/2547.jpg\n490,15196,15196,1947012,37,394541553,9780394541560.0,Art Spiegelman,1985.0,Maus: A Survivor's Tale : My Father Bleeds History,\"Maus I: A Survivor's Tale: My Father Bleeds History (Maus, #1)\",eng,4.35,184007,191615,4837,2822,4801,21104,56900,105988,https://images.gr-assets.com/books/1327884972l/15196.jpg,https://images.gr-assets.com/books/1327884972s/15196.jpg\n491,2866718,2866718,2892871,67,312379838,9780312379830.0,\"P.C. Cast, Kristin Cast\",2008.0,Untamed: A House of Night Novel,\"Untamed (House of Night, #4)\",en-US,3.95,191743,198350,3356,5701,13859,43080,56984,78726,https://images.gr-assets.com/books/1438037020l/2866718.jpg,https://images.gr-assets.com/books/1438037020s/2866718.jpg\n492,7967,7967,2327777,99,812550757,9780812550760.0,Orson Scott Card,1986.0,Speaker for the Dead,\"Speaker for the Dead (Ender's Saga, #2)\",en-US,4.04,164287,182764,6579,1855,8031,36323,70924,65631,https://images.gr-assets.com/books/1295660894l/7967.jpg,https://images.gr-assets.com/books/1295660894s/7967.jpg\n493,11138,11138,801500,152,684823780,9780684823780.0,C.S. Lewis,1952.0,Mere Christianity,Mere Christianity,eng,4.31,184759,198433,6041,4215,6220,23223,54958,109817,https://images.gr-assets.com/books/1468102872l/11138.jpg,https://images.gr-assets.com/books/1468102872s/11138.jpg\n494,29044,29044,221359,141,1400031702,9781400031700.0,Donna Tartt,1992.0,The Secret History,The Secret History,eng,4.07,168405,189596,13324,3685,9750,32410,66858,76893,https://images.gr-assets.com/books/1451554846l/29044.jpg,https://images.gr-assets.com/books/1451554846s/29044.jpg\n495,4953,4953,42857,65,375725784,9780375725780.0,Dave Eggers,2000.0,A Heartbreaking Work of Staggering Genius,A Heartbreaking Work of Staggering Genius,eng,3.68,145459,149779,8673,7877,15434,35148,50148,41172,https://images.gr-assets.com/books/1327714834l/4953.jpg,https://images.gr-assets.com/books/1327714834s/4953.jpg\n496,1295,1295,1584694,161,553381679,9780553381670.0,Jean M. Auel,1980.0,The Clan of the Cave Bear,\"The Clan of the Cave Bear (Earth's Children, #1)\",eng,4.02,176062,187874,5137,3977,10151,37279,63914,72553,https://images.gr-assets.com/books/1385331302l/1295.jpg,https://images.gr-assets.com/books/1385331302s/1295.jpg\n497,3685,3685,4639714,1033,439228905,9780439228910.0,Anna Sewell,1877.0,Black Beauty,Black Beauty,eng,3.94,183255,195205,3377,3633,11665,47165,62472,70270,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1578265482l/3685._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n498,656,656,4912783,1017,192833987,9780192833980.0,\"Leo Tolstoy, Henry Gifford, Aylmer Maude, Louise Maude\",1869.0,Война и миръ,War and Peace,eng,4.11,168037,192992,8062,4952,9691,31876,60043,86430,https://images.gr-assets.com/books/1413215930l/656.jpg,https://images.gr-assets.com/books/1413215930s/656.jpg\n499,28676,28676,2270060,144,679735771,9780679735780.0,Bret Easton Ellis,1991.0,American Psycho,American Psycho,eng,3.81,166083,177109,7669,8639,13632,36830,61550,56458,https://images.gr-assets.com/books/1436934349l/28676.jpg,https://images.gr-assets.com/books/1436934349s/28676.jpg\n500,38980,38980,2073907,125,613371658,9780613371650.0,Meg Cabot,2000.0,The Princess Diaries,\"The Princess Diaries (The Princess Diaries, #1)\",eng,3.76,193140,200671,4289,5442,16659,57732,61651,59187,https://images.gr-assets.com/books/1355011082l/38980.jpg,https://images.gr-assets.com/books/1355011082s/38980.jpg\n501,7061,7061,826298,108,1400034779,9781400034770.0,Alexander McCall Smith,1998.0,The No. 1 Ladies' Detective Agency ,\"The No. 1 Ladies' Detective Agency  (No. 1 Ladies' Detective Agency, #1)\",eng,3.75,180320,189258,9369,6389,14860,49558,66723,51728,https://images.gr-assets.com/books/1459953654l/7061.jpg,https://images.gr-assets.com/books/1459953654s/7061.jpg\n502,138398,138398,30474,36,1582406723,9781582406720.0,\"Robert Kirkman, Tony Moore\",2004.0,\"The Walking Dead, Vol. 1: Days Gone Bye\",\"The Walking Dead, Vol. 01: Days Gone Bye\",en-GB,4.3,164530,167805,3397,3685,5008,20273,47455,91384,https://images.gr-assets.com/books/1389233242l/138398.jpg,https://images.gr-assets.com/books/1389233242s/138398.jpg\n503,70535,70535,208362,221,451457994,9780451458000.0,Arthur C. Clarke,1968.0,2001: A Space Odyssey,\"2001: A Space Odyssey (Space Odyssey, #1)\",eng,4.12,170841,180661,3722,2050,6387,32236,67831,72157,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432468943l/70535._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n505,27523,27523,972769,63,842342702,9780842342700.0,\"Tim LaHaye, Jerry B. Jenkins\",1995.0,Left Behind:  A Novel of the Earth's Last Days,\"Left Behind (Left Behind, #1)\",eng,3.81,161173,165021,3210,12626,13163,31144,43391,64697,https://images.gr-assets.com/books/1406505054l/27523.jpg,https://images.gr-assets.com/books/1406505054s/27523.jpg\n506,18635016,18635016,21587145,94,62059998,9780062059990.0,Kiera Cass,2014.0,The One,\"The One (The Selection, #3)\",eng,4.21,139544,237039,21608,3322,9750,35942,72422,115603,https://images.gr-assets.com/books/1395612906l/18635016.jpg,https://images.gr-assets.com/books/1395612906s/18635016.jpg\n507,7938275,7938275,11349083,78,545265355,9780545265360.0,Suzanne Collins,2010.0,The Hunger Games Box Set,\"The Hunger Games Trilogy Boxset (The Hunger Games, #1-3)\",eng,4.49,129665,159760,6429,1015,2521,13438,42932,99854,https://images.gr-assets.com/books/1360094673l/7938275.jpg,https://images.gr-assets.com/books/1360094673s/7938275.jpg\n508,1869,1869,1840613,57,805063897,9780805063900.0,Barbara Ehrenreich,2001.0,Nickel and Dimed: On (Not) Getting By in America,Nickel and Dimed: On (Not) Getting By in America,eng,3.6,152786,157470,5723,10628,14572,40395,53783,38092,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442378091l/1869._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n509,1358844,1358844,2855627,90,593053893,9780593053900.0,Sophie Kinsella,2008.0,Remember Me?,Remember Me?,eng,3.76,170096,182581,6838,3877,12970,52917,65379,47438,https://images.gr-assets.com/books/1276963901l/1358844.jpg,https://images.gr-assets.com/books/1276963901s/1358844.jpg\n510,233649,233649,1574475,71,812517725,9780812517730.0,Robert Jordan,1990.0,The Great Hunt,\"The Great Hunt (Wheel of Time, #2)\",en-US,4.2,162595,172500,3061,1824,5059,25119,64494,76004,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437870280l/233649._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n511,6534,6534,1045067,129,743477154,9780743477150.0,Patricia Cornwell,1990.0,Post-Mortem:  A Mystery Introducing Dr. Kay Scarpetta,\"Postmortem (Kay Scarpetta, #1)\",eng,4.01,167379,173045,2261,2760,6662,37396,66098,60129,https://images.gr-assets.com/books/1341835831l/6534.jpg,https://images.gr-assets.com/books/1341835831s/6534.jpg\n512,23919,23919,30431,34,385074077,9780385074070.0,Edgar Allan Poe,1849.0,The Complete Tales of Edgar Allan Poe,The Complete Stories and Poems,en-US,4.37,160063,160326,1055,1247,2923,19028,49902,87226,https://images.gr-assets.com/books/1327942676l/23919.jpg,https://images.gr-assets.com/books/1327942676s/23919.jpg\n513,561909,561909,878114,83,553256696,9780553256700.0,\"Corrie ten Boom, John Sherrill, Elizabeth Sherrill\",1971.0,The Hiding Place,The Hiding Place: The Triumphant True Story of Corrie Ten Boom,en-US,4.42,171384,178722,7801,2958,3872,17731,44665,109496,https://images.gr-assets.com/books/1320418824l/561909.jpg,https://images.gr-assets.com/books/1320418824s/561909.jpg\n514,3590,3590,1222101,1235,192835084,9780192835090.0,Arthur Conan Doyle,1892.0,The Adventures of Sherlock Holmes,The Adventures of Sherlock Holmes,eng,4.29,139816,184991,4922,864,3047,24897,68111,88072,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1164045516l/3590.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n515,16735,16735,1312477,80,553381547,9780553381540.0,Pat Conroy,1986.0,The Prince of Tides,The Prince of Tides,eng,4.22,159596,165367,3454,2169,5408,24359,55122,78309,https://images.gr-assets.com/books/1320541074l/16735.jpg,https://images.gr-assets.com/books/1320541074s/16735.jpg\n516,3985,3985,2693329,80,312282990,9780312283000.0,Michael Chabon,2000.0,The Amazing Adventures of Kavalier & Clay,The Amazing Adventures of Kavalier & Clay,eng,4.17,147717,156603,9326,2958,7191,22236,52498,71720,https://images.gr-assets.com/books/1479660066l/3985.jpg,https://images.gr-assets.com/books/1479660066s/3985.jpg\n517,4268157,4268157,4315675,52,802798233,9780802798240.0,Simone Elkeles,2008.0,Perfect Chemistry,\"Perfect Chemistry (Perfect Chemistry, #1)\",eng,4.07,198627,205008,9882,6422,11998,35815,57351,93422,https://images.gr-assets.com/books/1439792475l/4268157.jpg,https://images.gr-assets.com/books/1439792475s/4268157.jpg\n518,34268,34268,1358908,1416,805072454,9780805072460.0,\"J.M. Barrie, Michael Hague\",1904.0,Peter Pan,Peter Pan,en-US,4.1,169306,196359,7464,2488,8076,38675,65507,81613,https://images.gr-assets.com/books/1337714526l/34268.jpg,https://images.gr-assets.com/books/1337714526s/34268.jpg\n519,24768,24768,1568076,78,689865392,9780689865400.0,Scott Westerfeld,2005.0,Pretties,\"Pretties (Uglies, #2)\",eng,3.85,193405,203755,9390,3808,13664,52192,72804,61287,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388314207l/24768.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n520,11275,11275,2531376,125,965341984,9780965341980.0,\"Haruki Murakami, Jay Rubin\",1994.0,ねじまき鳥クロニクル [Nejimakidori kuronikuru],The Wind-Up Bird Chronicle,eng,4.17,133408,159705,10724,2022,6154,23828,57956,69745,https://images.gr-assets.com/books/1327872639l/11275.jpg,https://images.gr-assets.com/books/1327872639s/11275.jpg\n521,79885,79885,1427801,123,739465511,9780739465520.0,Michael Connelly,2005.0,The Lincoln Lawyer ,\"The Lincoln Lawyer (Mickey Haller, #1; Harry Bosch Universe, #16)\",eng,4.14,149438,160724,4757,1136,3767,27768,67204,60849,https://images.gr-assets.com/books/1370140049l/79885.jpg,https://images.gr-assets.com/books/1370140049s/79885.jpg\n522,49628,49628,1871423,113,375507256,9780375507250.0,David Mitchell,2004.0,Cloud Atlas,Cloud Atlas,eng,4.01,152441,172239,17001,5442,10645,28665,58983,68504,https://images.gr-assets.com/books/1406383769l/49628.jpg,https://images.gr-assets.com/books/1406383769s/49628.jpg\n523,133518,133518,1235619,56,767902890,9780767902890.0,Tim O'Brien,1990.0,The Things They Carried,The Things They Carried,en-US,4.12,168678,181159,10666,2623,7845,30102,65204,75385,https://images.gr-assets.com/books/1424663847l/133518.jpg,https://images.gr-assets.com/books/1424663847s/133518.jpg\n524,114683,114683,110426,15,1844137872,9781844137880.0,Banksy,1988.0,Wall and Piece,Wall and Piece,eng,3.83,149453,150117,687,11641,11724,27885,38313,60554,https://images.gr-assets.com/books/1327904853l/114683.jpg,https://images.gr-assets.com/books/1327904853s/114683.jpg\n525,9593911,9593911,14480923,76,006197806X,9780061978070.0,Lauren Oliver,2012.0,Pandemonium,\"Pandemonium (Delirium, #2)\",eng,4.07,181656,191644,13876,3024,8570,35845,69351,74854,https://images.gr-assets.com/books/1310371414l/9593911.jpg,https://images.gr-assets.com/books/1310371414s/9593911.jpg\n526,17231,17231,2113743,95,307277887,9780307277890.0,Jeff Lindsay,2004.0,Darkly Dreaming Dexter,\"Darkly Dreaming Dexter (Dexter, #1)\",eng,3.89,150055,157862,5656,4689,10180,35941,53459,53593,https://images.gr-assets.com/books/1334404607l/17231.jpg,https://images.gr-assets.com/books/1334404607s/17231.jpg\n527,110494,110494,738775,97,1841493007,9781841493010.0,Charlaine Harris,2002.0,Living Dead in Dallas,\"Living Dead in Dallas (Sookie Stackhouse, #2)\",eng,3.97,190565,209338,6388,1576,8771,50217,81598,67176,https://images.gr-assets.com/books/1329501808l/110494.jpg,https://images.gr-assets.com/books/1329501808s/110494.jpg\n528,34897,34897,791061,62,765305119,9780765305110.0,Robert Jordan,1991.0,The Dragon Reborn ,\"The Dragon Reborn (Wheel of Time, #3)\",eng,4.23,153809,164783,2471,1667,4474,23895,59113,75634,https://images.gr-assets.com/books/1480096580l/34897.jpg,https://images.gr-assets.com/books/1480096580s/34897.jpg\n529,7733,7733,2394716,1762,141439491,9780141439500.0,\"Jonathan Swift, Robert DeMaria Jr.\",1726.0,Gulliver’s Travels,Gulliver's Travels,eng,3.55,168727,188299,3927,5995,19839,63680,61509,37276,https://images.gr-assets.com/books/1427829692l/7733.jpg,https://images.gr-assets.com/books/1427829692s/7733.jpg\n530,12957,12957,2080738,805,743482751,9780743482750.0,\"William Shakespeare, Barbara A. Mowat, Paul Werstine, Gail Kern Paster, Robert          Jackson\",1598.0,Much Ado About Nothing,Much Ado About Nothing,eng,4.06,175616,185702,2686,2305,7837,37688,66480,71392,https://images.gr-assets.com/books/1327885569l/12957.jpg,https://images.gr-assets.com/books/1327885569s/12957.jpg\n531,52357,52357,189503,601,393320979,9780393320980.0,\"Unknown, Seamus Heaney\",975.0,Beowulf,Beowulf,en-US,3.42,155903,184187,5098,12256,25619,56758,51660,37894,https://images.gr-assets.com/books/1327878125l/52357.jpg,https://images.gr-assets.com/books/1327878125s/52357.jpg\n532,59980,59980,2501570,74,1401207529,9781401207530.0,\"Frank Miller, David Mazzucchelli, Richmond Lewis, Dennis O'Neil\",1987.0,Batman: Year One,Batman: Year One,eng,4.23,145267,148446,1954,3392,4611,19732,47742,72969,https://images.gr-assets.com/books/1327940389l/59980.jpg,https://images.gr-assets.com/books/1327940389s/59980.jpg\n533,24817626,24817626,44458285,102,62409859,9780062409850.0,Harper Lee,2015.0,Go Set a Watchman,Go Set a Watchman,eng,3.31,138669,164828,24535,8284,26200,58810,48468,23066,https://images.gr-assets.com/books/1451442088l/24817626.jpg,https://images.gr-assets.com/books/1451442088s/24817626.jpg\n534,1044355,1044355,3255908,47,316143472,9780316143480.0,David Sedaris,2008.0,When You Are Engulfed in Flames,When You Are Engulfed in Flames,en-US,4.04,150898,156976,9013,1847,5695,30933,63930,54571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547552824l/1044355._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n535,8490112,8490112,13355552,89,316134023,9780316134030.0,Laini Taylor,2011.0,Daughter of Smoke & Bone,\"Daughter of Smoke & Bone (Daughter of Smoke & Bone, #1)\",eng,4.04,198283,228815,23582,7073,12325,38879,76179,94359,https://images.gr-assets.com/books/1461353773l/8490112.jpg,https://images.gr-assets.com/books/1461353773s/8490112.jpg\n536,17878931,22328546,25037051,84,1409151174,9781409151170.0,Victoria Aveyard,2015.0,Red Queen,\"Red Queen (Red Queen, #1)\",eng,4.08,83354,289740,30249,7454,14867,48254,95303,123862,https://images.gr-assets.com/books/1411472322l/17878931.jpg,https://images.gr-assets.com/books/1411472322s/17878931.jpg\n537,12609433,12609433,17624817,92,1400069289,9781400069290.0,Charles Duhigg,2011.0,The Power of Habit,The Power of Habit: Why We Do What We Do in Life and Business,eng,4.03,155977,170269,9515,3239,6918,33079,66044,60989,https://images.gr-assets.com/books/1366758683l/12609433.jpg,https://images.gr-assets.com/books/1366758683s/12609433.jpg\n538,386187,386187,300461,76,679751521,9780679751530.0,John Berendt,1994.0,Midnight in the Garden of Good and Evil,Midnight in the Garden of Good and Evil,eng,3.9,167997,175681,6635,2332,9145,42827,70546,50831,https://images.gr-assets.com/books/1427166915l/386187.jpg,https://images.gr-assets.com/books/1427166915s/386187.jpg\n539,15717943,15717943,21389085,53,1301949825,9781301949820.0,Colleen Hoover,2012.0,Hopeless,\"Hopeless (Hopeless, #1)\",eng,4.34,189938,207777,18984,3520,6597,23251,56888,117521,https://images.gr-assets.com/books/1353489892l/15717943.jpg,https://images.gr-assets.com/books/1353489892s/15717943.jpg\n540,3008,3008,1313599,11,142437018,9780142437020.0,\"Frances Hodgson Burnett, Nancy Bond\",1905.0,A Little Princess,A Little Princess,eng,4.2,199872,215833,5128,2653,6227,35428,73488,98037,https://images.gr-assets.com/books/1327868556l/3008.jpg,https://images.gr-assets.com/books/1327868556s/3008.jpg\n541,51737,51737,1032900,45,142406252,9780142406250.0,Sarah Dessen,2004.0,The Truth About Forever,The Truth About Forever,en-US,4.13,179415,183697,7421,2686,7512,33156,59958,80385,https://images.gr-assets.com/books/1362767907l/51737.jpg,https://images.gr-assets.com/books/1362767907s/51737.jpg\n542,84119,84119,3294501,280,439861365,9780439861370.0,C.S. Lewis,1954.0,The horse and his boy,\"The Horse and His Boy (Chronicles of Narnia, #5)\",eng,3.9,189671,209180,4913,2752,13751,54684,68114,69879,https://images.gr-assets.com/books/1388210968l/84119.jpg,https://images.gr-assets.com/books/1388210968s/84119.jpg\n543,6527740,6527740,13385418,63,1595143068,9781595143070.0,Richelle Mead,2010.0,Last Sacrifice ,\"Last Sacrifice (Vampire Academy, #6)\",eng,4.42,206792,217652,10312,2797,5330,21948,54440,133137,https://images.gr-assets.com/books/1319850978l/6527740.jpg,https://images.gr-assets.com/books/1319850978s/6527740.jpg\n544,77767,77767,2884161,146,64400026,9780064400020.0,\"Laura Ingalls Wilder, Garth Williams\",1935.0,Little House on the Prairie,\"Little House on the Prairie (Little House, #2)\",eng,4.18,195424,200869,3220,3278,7217,33528,61997,94849,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559209202l/77767._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n545,144974,144974,1602074,383,380002558,9780380002560.0,\"Margery Williams Bianco, William   Nicholson\",1922.0,The Velveteen Rabbit,The Velveteen Rabbit,eng,4.29,173469,186686,2714,2438,5354,26752,52991,99151,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347748913l/144974.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n546,629,629,175720,181,60589469,9780060589460.0,Robert M. Pirsig,1974.0,Zen and the Art of Motorcycle Maintenance,Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values,eng,3.76,139411,153992,6535,6589,14196,36227,49874,47106,https://images.gr-assets.com/books/1410136019l/629.jpg,https://images.gr-assets.com/books/1410136019s/629.jpg\n547,8909,8909,3194841,1167,375759239,9780375759240.0,\"H.G. Wells, Arthur C. Clarke\",1897.0,The War of the Worlds,The War of the Worlds,eng,3.8,159752,181437,4930,2843,11418,51466,69720,45990,https://images.gr-assets.com/books/1320391644l/8909.jpg,https://images.gr-assets.com/books/1320391644s/8909.jpg\n548,162085,162085,2191061,75,60887303,9780060887310.0,Sara Shepard,2006.0,Pretty Little Liars,\"Pretty Little Liars (Pretty Little Liars, #1)\",en-US,3.9,156328,165836,8160,5743,12397,37519,47724,62453,https://images.gr-assets.com/books/1377830522l/162085.jpg,https://images.gr-assets.com/books/1377830522s/162085.jpg\n549,231850,231850,261903,58,670241334,9780670241330.0,Don Freeman,1948.0,Corduroy,Corduroy,en-US,4.28,160860,162337,1902,1966,5326,25357,42664,87024,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347517273l/231850.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n550,3109,3109,3287769,54,1594200823,9781594200820.0,Michael Pollan,2006.0,The Omnivore's Dilemma,The Omnivore's Dilemma: A Natural History of Four Meals,eng,4.17,133271,147664,11843,1566,4451,22055,58252,61340,https://images.gr-assets.com/books/1393804353l/3109.jpg,https://images.gr-assets.com/books/1393804353s/3109.jpg\n551,15790842,15790842,21443207,95,316176486,9780316176480.0,Kate Atkinson,2013.0,Life After Life,Life After Life,eng,3.74,138454,158661,20822,6855,13811,36514,57917,43564,https://images.gr-assets.com/books/1358173808l/15790842.jpg,https://images.gr-assets.com/books/1358173808s/15790842.jpg\n552,3462,3462,1268663,93,446696129,9780446696130.0,Nicholas Sparks,2000.0,The Rescue,The Rescue,en-US,4.1,142092,148370,3261,1692,5815,30135,49684,61044,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385055753l/3462.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n553,107291,107291,1812101,135,045057458X,9780450574580.0,Stephen King,1991.0,Needful Things,Needful Things,,3.87,153821,161758,2448,2175,10254,42898,57042,49389,https://images.gr-assets.com/books/1315767817l/107291.jpg,https://images.gr-assets.com/books/1315767817s/107291.jpg\n554,10987,10987,1131570,105,385335997,9780385336000.0,Diana Gabaldon,1993.0,Voyager,\"Voyager (Outlander, #3)\",eng,4.38,157395,184208,8381,827,3030,21397,59170,99784,https://images.gr-assets.com/books/1483278195l/10987.jpg,https://images.gr-assets.com/books/1483278195s/10987.jpg\n556,10603,10603,996156,143,307348245,9780307348240.0,Stephen King,1981.0,Cujo,Cujo,spa,3.65,158215,167044,2832,4096,16130,54393,52708,39717,https://images.gr-assets.com/books/1394208144l/10603.jpg,https://images.gr-assets.com/books/1394208144s/10603.jpg\n557,10956,10956,812415,102,747560595,9780747560590.0,Jeffrey Eugenides,1993.0,The Virgin Suicides,The Virgin Suicides,eng,3.83,159249,179190,7547,3780,12486,44781,67480,50663,https://images.gr-assets.com/books/1319032910l/10956.jpg,https://images.gr-assets.com/books/1319032910s/10956.jpg\n558,140077,140077,1808005,88,441012183,9780441012180.0,Charlaine Harris,2004.0,Dead to the World,\"Dead to the World (Sookie Stackhouse, #4)\",eng,4.13,199572,210205,5327,1638,5933,39853,78663,84118,https://images.gr-assets.com/books/1468561630l/140077.jpg,https://images.gr-assets.com/books/1468561630s/140077.jpg\n559,32261,32261,3331021,918,141439599,9780141439590.0,\"Thomas Hardy, Tim Dolin, Margaret R. Higonnet\",1891.0,Tess of the d'Urbervilles: A Pure Woman Faithfully Presented,Tess of the D'Urbervilles,eng,3.77,171599,190665,6737,8364,16185,44317,64689,57110,https://images.gr-assets.com/books/1497218117l/32261.jpg,https://images.gr-assets.com/books/1497218117s/32261.jpg\n560,2175,2175,2766347,1682,192840398,9780192840390.0,\"Gustave Flaubert, Margaret Mauldon, Malcolm Bowie, Mark Overstall\",1856.0,Madame Bovary,Madame Bovary,eng,3.64,158877,186553,7617,7682,18771,51707,62328,46065,https://images.gr-assets.com/books/1335676143l/2175.jpg,https://images.gr-assets.com/books/1335676143s/2175.jpg\n561,378,378,1782584,82,394820371,9780394820380.0,\"Norton Juster, Jules Feiffer\",1961.0,The Phantom Tollbooth,The Phantom Tollbooth,en-US,4.22,178432,185392,8011,2848,6922,27918,56237,91467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1558858485l/378._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n562,7235533,7235533,8134945,48,765326353,9780765326360.0,Brandon Sanderson,2010.0,The Way of Kings,\"The Way of Kings (The Stormlight Archive, #1)\",eng,4.64,144822,164477,10947,1085,1827,7661,33962,119942,https://images.gr-assets.com/books/1388184640l/7235533.jpg,https://images.gr-assets.com/books/1388184640s/7235533.jpg\n563,140082,140082,602144,90,1841493015,9781841493020.0,Charlaine Harris,2003.0,Club Dead,\"Club Dead (Sookie Stackhouse, #3)\",en-GB,4.03,181323,197558,5029,1179,6594,44594,78129,67062,https://images.gr-assets.com/books/1329501590l/140082.jpg,https://images.gr-assets.com/books/1329501590s/140082.jpg\n564,248704,248704,240980,32,078685197X,9780786851970.0,Ned Vizzini,2006.0,It's Kind of a Funny Story,It's Kind of a Funny Story,en-US,4.14,161001,165713,8461,2018,6246,28680,58548,70221,https://images.gr-assets.com/books/1420629730l/248704.jpg,https://images.gr-assets.com/books/1420629730s/248704.jpg\n566,25041504,25041504,44693518,94,,,Jojo Moyes,2015.0,After You,\"After You (Me Before You, #2)\",eng,3.7,99342,175532,16879,2923,12992,53847,69425,36345,https://images.gr-assets.com/books/1429029729l/25041504.jpg,https://images.gr-assets.com/books/1429029729s/25041504.jpg\n567,10032672,10032672,14928278,90,034552554X,9780345525540.0,Vanessa Diffenbaugh,2011.0,The Language of Flowers,The Language of Flowers,eng,4.07,140076,159668,17457,1464,5500,28409,69343,54952,https://images.gr-assets.com/books/1333577674l/10032672.jpg,https://images.gr-assets.com/books/1333577674s/10032672.jpg\n568,59960,59960,1104159,71,156389341X,9781563893410.0,\"Frank Miller, Klaus Janson, Lynn Varley\",1986.0,Batman: The Dark Knight Returns,\"Batman: The Dark Knight Returns (The Dark Knight Saga, #1)\",eng,4.25,135979,144349,2838,3353,5104,18631,42654,74607,https://images.gr-assets.com/books/1327892039l/59960.jpg,https://images.gr-assets.com/books/1327892039s/59960.jpg\n569,13152,13152,1829521,96,446617792,9780446617800.0,James Patterson,2005.0,The Angel Experiment,\"The Angel Experiment (Maximum Ride, #1)\",eng,4.08,172302,183035,8606,4747,9858,32564,54067,81799,https://images.gr-assets.com/books/1339277875l/13152.jpg,https://images.gr-assets.com/books/1339277875s/13152.jpg\n570,285092,285092,2961887,136,1573225517,9781573225520.0,Nick Hornby,1995.0,High Fidelity,High Fidelity,eng,3.94,134849,150929,4792,1587,6973,34435,63435,44499,https://images.gr-assets.com/books/1327928082l/285092.jpg,https://images.gr-assets.com/books/1327928082s/285092.jpg\n571,15925,15925,810630,88,446696110,9780446696110.0,Nicholas Sparks,2003.0,The Guardian,The Guardian,en-US,4.14,136427,142884,4333,1867,5499,26372,45789,63357,https://images.gr-assets.com/books/1388195339l/15925.jpg,https://images.gr-assets.com/books/1388195339s/15925.jpg\n572,46756,46756,3143431,109,385721676,9780385721680.0,Margaret Atwood,2003.0,Oryx and Crake,\"Oryx and Crake (MaddAddam, #1)\",eng,4.0,151500,167177,10391,3548,8557,31794,64097,59181,https://images.gr-assets.com/books/1494109986l/46756.jpg,https://images.gr-assets.com/books/1494109986s/46756.jpg\n573,1274,1274,55001,202,60574216,9780060574220.0,John Gray,1998.0,\"Men Are from Mars, Women Are from Venus Book of Days: 365 Inspirations to Enrich Your Relationships\",\"Men Are from Mars, Women Are from Venus\",en-US,3.52,113915,129520,4191,8235,15283,38147,36751,31104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441636319l/1274._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n574,33313,33313,4219,78,60899220,9780060899230.0,Anthony Bourdain,2000.0,Kitchen Confidential: Adventures in the Culinary Underbelly,Kitchen Confidential: Adventures in the Culinary Underbelly,eng,4.0,134177,145933,7582,1668,5600,30364,61600,46701,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433739086l/33313._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n575,7669,7669,1525987,124,99244721,9780099244720.0,Michael Crichton,1999.0,Timeline,Timeline,en-US,3.83,148563,158413,3628,2738,11205,41822,57567,45081,https://images.gr-assets.com/books/1405420745l/7669.jpg,https://images.gr-assets.com/books/1405420745s/7669.jpg\n576,19380,19380,2833018,1039,486266893,9780486266890.0,Voltaire,1759.0,Candide,Candide,eng,3.76,151471,171617,5504,4906,14285,45693,59709,47024,https://images.gr-assets.com/books/1345060082l/19380.jpg,https://images.gr-assets.com/books/1345060082s/19380.jpg\n577,84981,84981,1955922,127,374480095,9780374480100.0,Natalie Babbitt,1975.0,Tuck Everlasting,Tuck Everlasting,eng,3.85,174280,184056,7187,3823,12462,46988,64213,56570,https://images.gr-assets.com/books/1445184695l/84981.jpg,https://images.gr-assets.com/books/1445184695s/84981.jpg\n578,10629,10629,1150571,156,2253147699,9782253147700.0,\"Stephen King, Marie Milpois\",1983.0,Christine,Christine,fre,3.72,151160,157664,2092,3156,14024,48479,49499,42506,https://images.gr-assets.com/books/1327270815l/10629.jpg,https://images.gr-assets.com/books/1327270815s/10629.jpg\n579,197084,197084,1837885,44,1713221,9780001713220.0,P.D. Eastman,1960.0,Are You My Mother?,Are You My Mother?,eng,4.16,174204,177809,1864,3986,8065,31523,45916,88319,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389098758l/197084.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n580,222078,222078,215065,102,071483355X,9780714833550.0,E.H. Gombrich,1950.0,The Story of Art,The Story of Art,en-US,3.83,164708,166453,470,12639,13426,32492,39357,68539,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389274650l/222078.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n581,13206760,13206760,18390691,64,312642962,9780312642970.0,Marissa Meyer,2013.0,Scarlet,\"Scarlet (The Lunar Chronicles, #2)\",eng,4.3,193766,213010,23054,1250,3669,25696,81461,100934,https://images.gr-assets.com/books/1470056982l/13206760.jpg,https://images.gr-assets.com/books/1470056982s/13206760.jpg\n582,69571,69571,3366043,185,751532711,9780751532720.0,Robert T. Kiyosaki,1997.0,\"Rich Dad , Poor Dad\",\"Rich Dad, Poor Dad\",eng,3.95,153764,173904,6790,5093,11346,35831,57062,64572,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211242l/69571.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n583,10637766,10637766,14158688,65,1442426640,9781442426640.0,Becca Fitzpatrick,2011.0,Silence ,\"Silence (Hush, Hush, #3)\",eng,4.16,190722,197338,7290,4217,9307,32161,55811,95842,https://images.gr-assets.com/books/1362408152l/10637766.jpg,https://images.gr-assets.com/books/1362408152s/10637766.jpg\n584,6101718,6101718,6278977,67,670020559,9780670020550.0,Lev Grossman,2009.0,The Magicians,The Magicians (The Magicians #1),eng,3.47,147908,165609,18232,10045,21851,47087,52810,33816,https://images.gr-assets.com/books/1313772941l/6101718.jpg,https://images.gr-assets.com/books/1313772941s/6101718.jpg\n585,13615,13615,1782155,44,1421501686,9781421501680.0,\"Tsugumi Ohba, Takeshi Obata\",2004.0,デスノート #1 (Desu Nōto) Taikutsu (退屈),\"Death Note, Vol. 1: Boredom (Death Note, #1)\",eng,4.42,139501,141095,2470,2040,3448,14453,34728,86426,https://images.gr-assets.com/books/1419952134l/13615.jpg,https://images.gr-assets.com/books/1419952134s/13615.jpg\n586,3682,3682,2113193,65,689875347,9780689875340.0,Libba Bray,2003.0,A Great and Terrible Beauty,\"A Great and Terrible Beauty (Gemma Doyle, #1)\",eng,3.79,173613,182107,8902,6620,16645,44166,56502,58174,https://images.gr-assets.com/books/1284558475l/3682.jpg,https://images.gr-assets.com/books/1284558475s/3682.jpg\n587,256566,256566,886727,107,60529709,9780060529700.0,Jonathan Safran Foer,2002.0,Everything Is Illuminated,Everything Is Illuminated,eng,3.9,131492,144312,7019,4169,10063,30365,51579,48136,https://images.gr-assets.com/books/1479774440l/256566.jpg,https://images.gr-assets.com/books/1479774440s/256566.jpg\n588,15769,15769,2508588,101,752863886,9780752863890.0,Robert Ludlum,1986.0,The Bourne Supremacy,\"The Bourne Supremacy (Jason Bourne, #2)\",en-US,4.09,142168,145806,1010,1623,4638,27003,57766,54776,https://images.gr-assets.com/books/1335860600l/15769.jpg,https://images.gr-assets.com/books/1335860600s/15769.jpg\n589,16056408,16056408,19113823,53,425266745,9780425266750.0,Tammara Webber,2012.0,Easy,\"Easy (Contours of the Heart, #1)\",en-CA,4.11,133937,189861,11189,4496,8142,31038,64085,82100,https://images.gr-assets.com/books/1349370267l/16056408.jpg,https://images.gr-assets.com/books/1349370267s/16056408.jpg\n590,58696,58696,4711940,1240,140439447,9780140439440.0,\"Charles Dickens, Jeremy Tambling\",1849.0,David Copperfield,David Copperfield,eng,3.96,150512,164400,4623,3426,9508,35753,56963,58750,https://images.gr-assets.com/books/1461452762l/58696.jpg,https://images.gr-assets.com/books/1461452762s/58696.jpg\n591,693208,693208,829330,67,316013684,9780316013680.0,\"Sherman Alexie, Ellen Forney\",2007.0,The Absolutely True Diary of a Part-Time Indian,The Absolutely True Diary of a Part-Time Indian,eng,4.11,160607,171492,18988,3502,7316,26704,62780,71190,https://images.gr-assets.com/books/1327908992l/693208.jpg,https://images.gr-assets.com/books/1327908992s/693208.jpg\n592,117833,117833,876183,586,679760806,9780679760800.0,\"Mikhail Bulgakov, Katherine Tiernan O'Connor, Diana Burgin, Ellendea Proffer\",1967.0,Мастер и Маргарита,The Master and Margarita,eng,4.32,131389,156780,7365,2428,5647,18910,42164,87631,https://images.gr-assets.com/books/1327867963l/117833.jpg,https://images.gr-assets.com/books/1327867963s/117833.jpg\n593,13642,13642,113603,157,553383043,9780553383040.0,Ursula K. Le Guin,1968.0,A Wizard of Earthsea,\"A Wizard of Earthsea (Earthsea Cycle, #1)\",en-US,3.99,155042,167058,5357,3253,9210,34737,58618,61240,https://images.gr-assets.com/books/1353424536l/13642.jpg,https://images.gr-assets.com/books/1353424536s/13642.jpg\n594,357664,357664,25169,77,763616052,9780763616050.0,\"Kate DiCamillo, Chris Sheban\",2000.0,Because of Winn-Dixie,Because of Winn-Dixie,eng,4.0,154476,159075,6594,2076,8308,36097,54057,58537,https://images.gr-assets.com/books/1456871914l/357664.jpg,https://images.gr-assets.com/books/1456871914s/357664.jpg\n595,5148,5148,39755,82,743253973,9780743253970.0,John Knowles,1959.0,A Separate Peace,A Separate Peace,en-US,3.56,155901,162403,5580,8518,18503,45480,53424,36478,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1528860889l/5148._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n596,5349,5349,3154548,117,385339607,9780385339600.0,John Grisham,1995.0,The Rainmaker,The Rainmaker,eng,3.91,137412,142791,1518,986,6288,38331,55983,41203,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265477l/5349.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n597,3836,3836,121842,1887,142437239,9780142437230.0,\"Miguel de Cervantes Saavedra, Roberto González Echevarría, John Rutherford\",1605.0,Don Quijote de La Mancha,Don Quixote,eng,3.85,134931,159253,5429,4667,12289,38171,50811,53315,https://images.gr-assets.com/books/1364958765l/3836.jpg,https://images.gr-assets.com/books/1364958765s/3836.jpg\n598,45107,77197,171715,108,6480098,9780006480100.0,Robin Hobb,1995.0,Assassin's Apprentice,\"Assassin's Apprentice (Farseer Trilogy, #1)\",eng,4.14,132777,162482,6023,2462,6103,25949,59803,68165,https://images.gr-assets.com/books/1320339497l/45107.jpg,https://images.gr-assets.com/books/1320339497s/45107.jpg\n599,8695,8695,1877624,162,345418921,9780345418920.0,Douglas Adams,1980.0,The Restaurant at the End of the Universe,\"The Restaurant at the End of the Universe (Hitchhiker's Guide, #2)\",eng,4.22,153838,172365,3851,700,3728,27009,66783,74145,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1521213881l/8695._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n600,7740152,7740152,7380161,82,385739141,9780385739150.0,Lauren Kate,2010.0,Torment,\"Torment (Fallen, #2)\",eng,3.89,174393,181384,7245,5367,14327,41971,52983,66736,https://images.gr-assets.com/books/1362339749l/7740152.jpg,https://images.gr-assets.com/books/1362339749s/7740152.jpg\n601,19321,19321,644171,1,723247706,9780723247710.0,Beatrix Potter,1901.0,The Tale of Peter Rabbit,The Tale of Peter Rabbit,eng,4.17,162373,165470,1404,2294,6298,30659,48594,77625,https://images.gr-assets.com/books/1485118382l/19321.jpg,https://images.gr-assets.com/books/1485118382s/19321.jpg\n602,65641,65641,1419727,257,64405044,9780064405040.0,\"C.S. Lewis, Pauline Baynes\",1953.0,The Silver Chair,\"The Silver Chair (Chronicles of Narnia, #4)\",eng,3.95,170453,185348,3391,1580,9479,47180,65697,61412,https://images.gr-assets.com/books/1336139237l/65641.jpg,https://images.gr-assets.com/books/1336139237s/65641.jpg\n603,2767793,2767793,2793516,63,765316897,9780765316900.0,Brandon Sanderson,2008.0,The Hero of Ages,\"The Hero of Ages (Mistborn, #3)\",eng,4.46,143622,161085,9111,596,2257,14291,49628,94313,https://images.gr-assets.com/books/1480717763l/2767793.jpg,https://images.gr-assets.com/books/1480717763s/2767793.jpg\n604,68783,68783,926090,49,679746048,9780679746040.0,Susanna Kaysen,1993.0,\"Girl, Interrupted\",\"Girl, Interrupted\",eng,3.9,145161,151176,3532,1827,8242,38968,56689,45450,https://images.gr-assets.com/books/1475482930l/68783.jpg,https://images.gr-assets.com/books/1475482930s/68783.jpg\n605,40173,40173,2270522,24,61173398,9780061173390.0,Chelsea Handler,2007.0,\"Are You There, Vodka? It's Me, Chelsea\",\"Are You There, Vodka? It's Me, Chelsea\",,3.85,127096,135734,6724,3901,9551,32729,46450,43103,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215803088l/40173.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n606,71728,71728,1743336,278,743278909,9780743278900.0,\"Richard Bach, Russell Munson\",1970.0,Jonathan Livingston Seagull,Jonathan Livingston Seagull,en-US,3.8,133728,150767,5501,6169,13796,34951,44689,51162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432222358l/71728._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n607,8755785,8755785,13629068,7,1481426303,9781481426300.0,Cassandra Clare,2014.0,City of Heavenly Fire,\"City of Heavenly Fire (The Mortal Instruments, #6)\",eng,4.48,177796,203325,19582,1683,4287,18763,49304,129288,https://images.gr-assets.com/books/1460477794l/8755785.jpg,https://images.gr-assets.com/books/1460477794s/8755785.jpg\n608,310259,310259,277308,54,920668372,9780920668380.0,\"Robert Munsch, Sheila McGraw\",1986.0,Love You Forever,Love You Forever,en-GB,4.34,159703,162007,4286,5949,6288,16941,29626,103203,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348832754l/310259.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n609,10567,10567,3017730,123,1416524517,9781416524520.0,Stephen King,2006.0,Cell,Cell,en-US,3.64,144591,153150,4841,5563,16309,44687,47447,39144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432828013l/10567._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n610,16158542,16158542,21998925,33,067002581X,9780670025820.0,Daniel James Brown,2013.0,The Boys in the Boat: Nine Americans and Their Epic Quest for Gold at the 1936 Berlin Olympics,The Boys in the Boat: Nine Americans and Their Epic Quest for Gold at the 1936 Berlin Olympics,eng,4.32,113565,139128,16287,2292,3772,15002,43457,74605,https://images.gr-assets.com/books/1354683116l/16158542.jpg,https://images.gr-assets.com/books/1354683116s/16158542.jpg\n611,7332,7332,4733799,339,618391118,9780618391110.0,\"J.R.R. Tolkien, Christopher Tolkien, Ted Nasmith\",1977.0,The Silmarillion,The Silmarillion (Middle-Earth Universe),eng,3.87,134106,160751,5743,4943,13613,36498,47548,58149,https://images.gr-assets.com/books/1336502583l/7332.jpg,https://images.gr-assets.com/books/1336502583s/7332.jpg\n612,5094,5094,2113248,164,451210859,9780451210850.0,Stephen King,1987.0,The Drawing of the Three,\"The Drawing of the Three (The Dark Tower, #2)\",eng,4.23,139052,157513,5293,1062,4303,22908,59055,70185,https://images.gr-assets.com/books/1370918050l/5094.jpg,https://images.gr-assets.com/books/1370918050s/5094.jpg\n613,3407877,3407877,3448086,119,330449605,9780330449600.0,Kate Morton,2008.0,The Forgotten Garden,The Forgotten Garden,en-GB,4.12,138377,157088,15953,1501,5098,26557,63709,60223,https://images.gr-assets.com/books/1455283767l/3407877.jpg,https://images.gr-assets.com/books/1455283767s/3407877.jpg\n614,17690,17690,2965832,915,99428644,9780099428640.0,\"Franz Kafka, Edwin Muir, Willa Muir, Max Brod\",1925.0,Der Prozeß,The Trial,eng,3.98,131856,159270,4717,3539,9051,31198,58123,57359,https://images.gr-assets.com/books/1320399438l/17690.jpg,https://images.gr-assets.com/books/1320399438s/17690.jpg\n615,22205,22205,132402,42,142501557,9780142501560.0,Sarah Dessen,2002.0,This Lullaby,This Lullaby,eng,4.03,151829,155107,4597,2714,8175,32346,49750,62122,https://images.gr-assets.com/books/1397779294l/22205.jpg,https://images.gr-assets.com/books/1397779294s/22205.jpg\n616,14864,14864,3375925,65,743275012,9780743275020.0,Jodi Picoult,2000.0,Plain Truth,Plain Truth,eng,3.97,128406,138814,6231,1123,5518,32571,57131,42471,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389750843l/14864.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n617,6314763,6314763,6499995,69,385523386,9780385523390.0,Piper Kerman,2010.0,Orange Is the New Black: My Year in a Women's Prison,Orange Is the New Black,eng,3.7,127186,146868,12873,3322,11023,43493,57605,31425,https://images.gr-assets.com/books/1320520714l/6314763.jpg,https://images.gr-assets.com/books/1320520714s/6314763.jpg\n618,8921,8921,3311984,1717,451528018,9780451528020.0,\"Arthur Conan Doyle, Anne Perry\",1902.0,The Hound of the Baskervilles,The Hound of the Baskervilles,eng,4.09,154517,178563,5421,1098,5204,35369,71857,65035,https://images.gr-assets.com/books/1355929358l/8921.jpg,https://images.gr-assets.com/books/1355929358s/8921.jpg\n619,11468377,11468377,16402639,106,374275637,9780374275630.0,Daniel Kahneman,2011.0,\"Thinking, Fast and Slow\",\"Thinking, Fast and Slow\",eng,4.08,136950,149271,5715,3714,7025,25687,49723,63122,https://images.gr-assets.com/books/1317793965l/11468377.jpg,https://images.gr-assets.com/books/1317793965s/11468377.jpg\n620,402045,402045,806813,103,345350499,9780345350500.0,Marion Zimmer Bradley,1982.0,The Mists of Avalon,\"The Mists of Avalon (Avalon, #1)\",eng,4.12,157736,163331,5582,3469,7966,27551,51373,72972,https://images.gr-assets.com/books/1388857089l/402045.jpg,https://images.gr-assets.com/books/1388857089s/402045.jpg\n621,37732,37732,4121,75,689841582,9780689841580.0,Judy Blume,1970.0,\"Are You There God? It's Me, Margaret\",\"Are You There God? It's Me, Margaret\",eng,3.89,151789,162083,5168,3588,10014,40314,55092,53075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388356524l/37732.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n622,15926,15926,943470,115,446612707,9780553813950.0,Nicholas Sparks,2002.0,Nights in Rodanthe,Nights in Rodanthe,eng,3.82,129807,136507,4025,3102,10605,36852,42686,43262,https://images.gr-assets.com/books/1328145638l/15926.jpg,https://images.gr-assets.com/books/1328145638s/15926.jpg\n623,18775247,18775247,26680281,111,1476754454,9781476754450.0,Stephen King,2014.0,Mr. Mercedes,\"Mr. Mercedes (Bill Hodges Trilogy, #1)\",eng,3.92,125847,148491,12447,3242,7332,32479,60965,44473,https://images.gr-assets.com/books/1468705326l/18775247.jpg,https://images.gr-assets.com/books/1468705326s/18775247.jpg\n624,140075,140075,3159810,73,441014941,9780441014940.0,Charlaine Harris,2007.0,All Together Dead,\"All Together Dead (Sookie Stackhouse, #7)\",eng,4.05,162689,173654,3372,1127,5785,37956,66515,62271,https://images.gr-assets.com/books/1417964062l/140075.jpg,https://images.gr-assets.com/books/1417964062s/140075.jpg\n625,5166,5166,3221872,39,375706771,9780375706780.0,Chris Bohjalian,1997.0,Midwives,Midwives,en-US,3.97,133155,135534,3830,1317,5372,30829,57029,40987,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442593918l/5166._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n626,420282,420282,1045364,57,395389496,9780395389490.0,Chris Van Allsburg,1985.0,The Polar Express,The Polar Express,en-US,4.29,168001,168847,2498,2857,6268,23676,42383,93663,https://images.gr-assets.com/books/1356707942l/420282.jpg,https://images.gr-assets.com/books/1356707942s/420282.jpg\n627,125507,125507,120878,39,140544518,9780140544510.0,\"Jon Scieszka, Lane Smith\",1989.0,The True Story of the Three Little Pigs,The True Story of the 3 Little Pigs,en-GB,4.29,141945,144093,2618,1449,4217,21301,40806,76320,https://images.gr-assets.com/books/1327884731l/125507.jpg,https://images.gr-assets.com/books/1327884731s/125507.jpg\n628,32682,32682,5054702,88,425134350,9780425134350.0,Tom Clancy,1987.0,Patriot Games,\"Patriot Games (Jack Ryan Universe, #2)\",eng,4.11,141674,146201,939,1351,3943,27548,58440,54919,https://images.gr-assets.com/books/1328007145l/32682.jpg,https://images.gr-assets.com/books/1328007145s/32682.jpg\n629,1431,1431,3287043,229,61124265,9780061124270.0,\"Paulo Coelho, Margaret Jull Costa\",1998.0,Veronika decide morrer,Veronika Decides to Die,eng,3.69,111856,132191,6063,5217,12725,35174,43885,35190,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348139939l/1431.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n630,16071764,16071764,21865596,66,385349947,9780385349950.0,\"Sheryl Sandberg, Nell Scovell\",2013.0,\"Lean In: Women, Work, and the Will to Lead\",\"Lean In: Women, Work, and the Will to Lead\",eng,3.94,135635,145331,10385,3688,7487,30825,55784,47547,https://images.gr-assets.com/books/1364250803l/16071764.jpg,https://images.gr-assets.com/books/1364250803s/16071764.jpg\n631,170210,170210,1053933,80,441013333,9780441013330.0,Charlaine Harris,2005.0,Dead as a Doornail ,\"Dead as a Doornail (Sookie Stackhouse, #5)\",eng,4.01,169560,179156,3733,969,6113,42398,69792,59884,https://images.gr-assets.com/books/1468562419l/170210.jpg,https://images.gr-assets.com/books/1468562419s/170210.jpg\n632,10429045,10429045,15333458,77,62085484,9780062085480.0,Tahereh Mafi,2011.0,\"Shatter Me (Shatter Me, #1)\",\"Shatter Me (Shatter Me, #1)\",en-US,4.01,176433,200300,20959,7715,12475,34344,61578,84188,https://images.gr-assets.com/books/1310649047l/10429045.jpg,https://images.gr-assets.com/books/1310649047s/10429045.jpg\n633,17214,17214,2534973,132,441783589,9780441783590.0,Robert A. Heinlein,1959.0,Starship Troopers,Starship Troopers,en-CA,3.99,136886,145886,4034,2062,7314,31597,53591,51322,https://images.gr-assets.com/books/1406457252l/17214.jpg,https://images.gr-assets.com/books/1406457252s/17214.jpg\n634,12033455,12033455,16327730,86,385342063,9780385342060.0,Sophie Kinsella,2011.0,I've Got Your Number,I've Got Your Number,eng,3.93,144533,154513,10577,3523,8046,34351,58073,50520,https://images.gr-assets.com/books/1327956732l/12033455.jpg,https://images.gr-assets.com/books/1327956732s/12033455.jpg\n635,10959,10959,4432325,239,1857993284,9781857993290.0,\"Jostein Gaarder, Paulette Møller\",1991.0,Sofies Verden,Sophie's World,eng,3.88,109692,143393,7652,3975,9949,32355,50286,46828,https://images.gr-assets.com/books/1343459906l/10959.jpg,https://images.gr-assets.com/books/1343459906s/10959.jpg\n637,76778,76778,4636013,271,553278223,9780553278220.0,Ray Bradbury,1950.0,The Martian Chronicles,The Martian Chronicles,en-US,4.12,143236,156328,5204,1666,5808,28385,56556,63913,https://images.gr-assets.com/books/1374049948l/76778.jpg,https://images.gr-assets.com/books/1374049948s/76778.jpg\n638,7331435,7331435,8975330,76,307592839,9780307592840.0,Jennifer Egan,2010.0,A Visit From the Goon Squad,A Visit from the Goon Squad,eng,3.64,120126,139744,15030,6060,14855,36024,48972,33833,https://images.gr-assets.com/books/1356844046l/7331435.jpg,https://images.gr-assets.com/books/1356844046s/7331435.jpg\n639,93,93,1738595,771,753454947,9780753454950.0,\"Johanna Spyri, Angelo  Rinaldi, Beverly Cleary\",1880.0,Heidi,Heidi,eng,3.97,144497,154669,2667,2236,8362,37291,50838,55942,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462714l/93.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n640,83763,83763,1258566,113,61015725,9780061015720.0,Michael Crichton,2002.0,Prey,Prey,,3.72,131352,136307,2700,2481,11391,40947,48338,33150,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556292204l/83763._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n641,84369,84369,1059917,245,7202326,9780007202320.0,C.S. Lewis,1956.0,The Last Battle,\"The Last Battle (Chronicles of Narnia, #7)\",eng,4.02,158701,174641,4156,3501,10243,35440,54778,70679,https://images.gr-assets.com/books/1308814830l/84369.jpg,https://images.gr-assets.com/books/1308814830s/84369.jpg\n642,5064,5064,2845518,2,525950079,9780525950070.0,Ken Follett,2007.0,World Without End,\"World Without End (The Kingsbridge Series, #2)\",eng,4.23,128715,145292,9392,1212,4241,20508,53074,66257,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1509545511l/5064._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n643,1326258,1326258,1315683,77,312360304,9780312360310.0,\"P.C. Cast, Kristin Cast\",2008.0,Chosen: A House of Night Novel,\"Chosen (House of Night, #3)\",en-US,3.9,180961,188550,4013,5974,14466,42946,53682,71482,https://images.gr-assets.com/books/1393192825l/1326258.jpg,https://images.gr-assets.com/books/1393192825s/1326258.jpg\n644,13372690,30333938,18602144,60,,,Colleen Hoover,2012.0,Slammed,\"Slammed (Slammed, #1)\",eng,4.29,153882,176166,14423,2888,5837,22249,51947,93245,https://images.gr-assets.com/books/1328530463l/13372690.jpg,https://images.gr-assets.com/books/1328530463s/13372690.jpg\n645,544891,544891,532177,74,60874163,9780060874160.0,Alex Flinn,2007.0,\"Beastly (Beastly, #1, Kendra Chronicles, #1)\",\"Beastly (Beastly, #1; Kendra Chronicles, #1)\",eng,3.84,150003,157088,8576,4103,12836,39399,48089,52661,https://images.gr-assets.com/books/1334260193l/544891.jpg,https://images.gr-assets.com/books/1334260193s/544891.jpg\n646,2696,2696,986234,634,140424385,9780140424390.0,\"Geoffrey Chaucer, Nevill Coghill\",1390.0,Tales of Caunterbury,The Canterbury Tales,eng,3.48,148480,158661,2615,6795,19618,52875,48893,30480,https://images.gr-assets.com/books/1261208589l/2696.jpg,https://images.gr-assets.com/books/1261208589s/2696.jpg\n647,42149,42149,1488992,43,312348649,9780312348650.0,Emily Giffin,2006.0,Baby Proof,Baby Proof,en-US,3.71,124371,129325,3375,3042,10434,39728,44093,32028,https://images.gr-assets.com/books/1361466583l/42149.jpg,https://images.gr-assets.com/books/1361466583s/42149.jpg\n648,7664041,7664041,10260587,119,375856110,9780375856110.0,Christopher Paolini,2011.0,Inheritance,\"Inheritance (The Inheritance Cycle, #4)\",en-US,4.08,146905,162717,8891,3498,9379,28585,50380,70875,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390886502l/7664041.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n649,10357575,10357575,18160093,107,307593312,9780307593310.0,\"Haruki Murakami, Jay Rubin, Philip Gabriel\",2009.0,いちきゅうはちよん [Ichi-Kyū-Hachi-Yon],1Q84,eng,3.89,125195,138691,13779,3934,9901,28881,51416,44559,https://images.gr-assets.com/books/1483103331l/10357575.jpg,https://images.gr-assets.com/books/1483103331s/10357575.jpg\n650,46787,46787,2478635,1075,1840224029,9781840224020.0,Harriet Beecher Stowe,1852.0,Uncle Tom's Cabin or Life Among the Lowly,Uncle Tom's Cabin,eng,3.83,137858,155559,5696,3732,11754,39559,52344,48170,https://images.gr-assets.com/books/1414349231l/46787.jpg,https://images.gr-assets.com/books/1414349231s/46787.jpg\n651,480204,480204,2259720,782,60809248,9780060809250.0,\"Gaston Leroux, Alexander Teixeira de Mattos\",1909.0,Le Fantôme de l'Opéra,The Phantom of the Opera,eng,3.97,141110,155679,4590,2451,8945,35912,51572,56799,https://images.gr-assets.com/books/1327867727l/480204.jpg,https://images.gr-assets.com/books/1327867727s/480204.jpg\n652,140079,140079,1174101,75,441014917,9780441014910.0,Charlaine Harris,2006.0,\"Definitely Dead (Sookie Stackhouse, #6)\",\"Definitely Dead (Sookie Stackhouse, #6)\",en-US,4.02,163054,172955,3669,1028,6116,40058,66966,58787,https://images.gr-assets.com/books/1468562748l/140079.jpg,https://images.gr-assets.com/books/1468562748s/140079.jpg\n653,2526,2526,3213039,231,156007754,9780156007760.0,\"José Saramago, Giovanni Pontiero\",1995.0,Ensaio Sobre a Cegueira,Blindness,en-US,4.08,98738,133257,11061,2960,6745,21616,47839,54097,https://images.gr-assets.com/books/1327866409l/2526.jpg,https://images.gr-assets.com/books/1327866409s/2526.jpg\n654,7905092,7905092,9585796,92,374158460,9780374158460.0,Jonathan Franzen,2010.0,Freedom,Freedom,en-US,3.73,119213,130682,12909,6143,11728,29502,47828,35481,https://images.gr-assets.com/books/1316729686l/7905092.jpg,https://images.gr-assets.com/books/1316729686s/7905092.jpg\n655,15812814,15812814,14449475,63,142421715,9780142421710.0,Ally Condie,2011.0,Crossed,\"Crossed (Matched, #2)\",eng,3.52,100886,179584,14020,6581,22713,57856,55935,36499,https://images.gr-assets.com/books/1374335939l/15812814.jpg,https://images.gr-assets.com/books/1374335939s/15812814.jpg\n656,852470,852470,1008494,58,1423100034,9781423100030.0,Ally Carter,2006.0,\"I'd Tell You I Love You, But Then I'd Have to Kill You\",\"I'd Tell You I Love You, But Then I'd Have to Kill You (Gallagher Girls, #1)\",en-US,3.82,150222,157885,6720,6407,13220,37418,45880,54960,https://images.gr-assets.com/books/1334491180l/852470.jpg,https://images.gr-assets.com/books/1334491180s/852470.jpg\n657,1768603,1768603,1766737,104,1416562591,9781416562600.0,Aravind Adiga,2008.0,The White Tiger,The White Tiger,eng,3.71,114531,125632,8334,2934,9631,34919,51398,26750,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347754998l/1768603.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n658,3805,3805,941200,133,1841156736,9781841156740.0,Jonathan Franzen,2001.0,The Corrections,The Corrections,eng,3.78,117657,131271,8201,6684,10960,27173,46440,40014,https://images.gr-assets.com/books/1355011305l/3805.jpg,https://images.gr-assets.com/books/1355011305s/3805.jpg\n659,88061,88061,86032,83,1921351438,9781921351430.0,Barack Obama,1995.0,Dreams from My Father,Dreams from My Father: A Story of Race and Inheritance,eng,3.81,128961,135594,5843,6777,7212,30921,50809,39875,https://images.gr-assets.com/books/1352340675l/88061.jpg,https://images.gr-assets.com/books/1352340675s/88061.jpg\n660,7672,7672,688299,83,60541830,9780060541840.0,Michael Crichton,1980.0,Congo,Congo,eng,3.55,129811,134422,1587,2910,13893,48006,45059,24554,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388889401l/7672.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n661,46677,46677,1086647,47,689711735,9780689711730.0,\"Judith Viorst, Ray Cruz\",1972.0,\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\",\"Alexander and the Terrible, Horrible, No Good, Very Bad Day\",en-CA,4.22,146073,147047,2213,2443,5423,23838,40774,74569,https://images.gr-assets.com/books/1405259744l/46677.jpg,https://images.gr-assets.com/books/1405259744s/46677.jpg\n662,5439,5439,3301398,83,618101365,9780618101370.0,Jhumpa Lahiri,1999.0,Interpreter of Maladies,Interpreter of Maladies,eng,4.12,110651,125062,8145,860,4045,21705,50880,47572,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442586143l/5439._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n663,2767,2767,2185591,83,60838655,9780060838650.0,Howard Zinn,1980.0,A People's History of the United States: 1492 to Present ,A People's History of the United States,eng,4.07,137372,142326,4320,6435,6926,21522,42751,64692,https://images.gr-assets.com/books/1494279423l/2767.jpg,https://images.gr-assets.com/books/1494279423s/2767.jpg\n664,251688,251688,2518209,254,679745653,9780679745660.0,Truman Capote,1958.0,Breakfast at Tiffany's,Breakfast at Tiffany's,eng,3.89,129778,158526,7331,1953,8353,40016,62437,45767,https://images.gr-assets.com/books/1477015353l/251688.jpg,https://images.gr-assets.com/books/1477015353s/251688.jpg\n665,6690798,6690798,2802546,101,345504968,9780345504970.0,Justin Cronin,2010.0,The Passage,\"The Passage (The Passage, #1)\",eng,4.04,126993,145772,16506,3522,7867,24461,53735,56187,https://images.gr-assets.com/books/1327874267l/6690798.jpg,https://images.gr-assets.com/books/1327874267s/6690798.jpg\n666,2744,2744,1007964,112,60515198,9780060515200.0,Neil Gaiman,2005.0,Anansi Boys,Anansi Boys,eng,4.0,137639,153465,7758,1219,5671,32195,66653,47727,https://images.gr-assets.com/books/1479778049l/2744.jpg,https://images.gr-assets.com/books/1479778049s/2744.jpg\n667,5664985,5664985,5836517,41,670011940,9780670011940.0,Sarah Dessen,2009.0,Along for the Ride,Along for the Ride,eng,4.08,151721,156330,6238,2588,7073,30314,52171,64184,https://images.gr-assets.com/books/1479692098l/5664985.jpg,https://images.gr-assets.com/books/1479692098s/5664985.jpg\n668,18693763,18693763,26542311,62,159420571X,9781594205710.0,Celeste Ng,2014.0,Everything I Never Told You,Everything I Never Told You,eng,3.78,108703,134550,15177,2352,8110,36543,57858,29687,https://images.gr-assets.com/books/1386795198l/18693763.jpg,https://images.gr-assets.com/books/1386795198s/18693763.jpg\n669,9328,9328,3374404,243,553383809,9780553383800.0,\"Isabel Allende, Magda Bogin\",1982.0,La casa de los espíritus,The House of the Spirits,en-US,4.2,119930,140339,5244,1380,4506,21376,50822,62255,https://images.gr-assets.com/books/1358615501l/9328.jpg,https://images.gr-assets.com/books/1358615501s/9328.jpg\n670,11573,11573,2745957,145,451155750,9780451155760.0,Stephen King,1979.0,The Dead Zone,The Dead Zone,en-US,3.9,132723,139386,2294,1371,7164,37094,52341,41416,https://images.gr-assets.com/books/1283509622l/11573.jpg,https://images.gr-assets.com/books/1283509622s/11573.jpg\n671,16343,16343,3366260,876,646418432,9780646418440.0,\"Agatha Christie, Ροζίτα Σώκου\",1920.0,The Mysterious Affair at Styles,\"The Mysterious Affair at Styles (Hercule Poirot, #1)\",eng,3.98,135514,148617,3826,3132,5501,33269,55831,50884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922393l/16343.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n672,16304,853510,2285570,429,425200450,9780425200450.0,Agatha Christie,1934.0,Murder in the Calais Coach,\"Murder on the Orient Express (Hercule Poirot, #10)\",eng,4.16,138444,173662,8713,706,4027,30417,70825,67687,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388267702l/16304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n673,15796700,15796700,21519538,83,307271080,9780307271080.0,Chimamanda Ngozi Adichie,2013.0,Americanah,Americanah,eng,4.26,113252,135108,13831,1764,3564,16174,50092,63514,https://images.gr-assets.com/books/1356654499l/15796700.jpg,https://images.gr-assets.com/books/1356654499s/15796700.jpg\n674,7494,7494,141228,79,446611085,9780446611080.0,James Patterson,2001.0,Suzanne's Diary for Nicholas,Suzanne's Diary for Nicholas,eng,4.16,121398,124164,4255,2106,5364,21005,38213,57476,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404736778l/7494.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n675,233667,233667,1803,154,451167805,9780451167800.0,Stephen King,1980.0,Firestarter,Firestarter,eng,3.85,142213,148131,1859,1589,9090,42672,51583,43197,https://images.gr-assets.com/books/1394208032l/233667.jpg,https://images.gr-assets.com/books/1394208032s/233667.jpg\n676,15731779,15731779,21411971,76,425263924,9780425263920.0,Sylvia Day,2013.0,Entwined with You,\"Entwined with You (Crossfire, #3)\",eng,4.19,141641,157731,9728,2275,6942,25570,47336,75608,https://images.gr-assets.com/books/1362526983l/15731779.jpg,https://images.gr-assets.com/books/1362526983s/15731779.jpg\n677,6289283,6289283,6473602,70,307266303,9780307266310.0,Christopher McDougall,2009.0,\"Born to Run: A Hidden Tribe, Superathletes, and the Greatest Race the World Has Never Seen\",\"Born to Run: A Hidden Tribe, Superathletes, and the Greatest Race the World Has Never Seen\",eng,4.27,109642,121428,11605,1516,3182,15027,42605,59098,https://images.gr-assets.com/books/1320531983l/6289283.jpg,https://images.gr-assets.com/books/1320531983s/6289283.jpg\n678,18293427,18293427,25694131,79,1616203218,9781616203210.0,Gabrielle Zevin,2014.0,The Storied Life of A.J. Fikry,The Storied Life of A.J. Fikry,eng,3.98,115393,145313,20980,2685,5844,28640,63184,44960,https://images.gr-assets.com/books/1404582137l/18293427.jpg,https://images.gr-assets.com/books/1404582137s/18293427.jpg\n679,475339,475339,2666907,74,590133373,9780590133370.0,Ludwig Bemelmans,1939.0,Mad About Madeline,Madeline,en-GB,4.22,156726,158318,1407,2361,5708,26834,43736,79679,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175060644l/475339._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n680,1005,30186948,1199320,709,1585424331,9781585424340.0,Napoleon Hill,1937.0,Think and Grow Rich,Think and Grow Rich: The Landmark Bestseller - Now Revised and Updated for the 21st Century,eng,4.17,87445,117444,3272,2764,5469,18408,33331,57472,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177008l/1005.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n681,8337,8337,1200805,132,60885378,9780060885370.0,\"Laura Ingalls Wilder, Garth Williams\",1932.0,Little House In The Big Woods,\"Little House in the Big Woods (Little House, #1)\",eng,4.16,165127,177991,4096,2773,5952,31155,57916,80195,https://images.gr-assets.com/books/1475195170l/8337.jpg,https://images.gr-assets.com/books/1475195170s/8337.jpg\n682,14201,14201,3921305,124,765356155,9780765356150.0,Susanna Clarke,2004.0,Jonathan Strange & Mr Norrell,Jonathan Strange & Mr Norrell,eng,3.8,133683,154688,11516,8086,14044,30972,48696,52890,https://images.gr-assets.com/books/1357027589l/14201.jpg,https://images.gr-assets.com/books/1357027589s/14201.jpg\n683,3463,3463,1498124,105,446696137,9780446696140.0,Nicholas Sparks,2001.0,A Bend in the Road,A Bend in the Road,eng,4.02,116800,123173,3392,1452,5660,27409,42912,45740,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388453919l/3463.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n684,12127810,12127810,21539506,63,1423146727,9781423146730.0,Rick Riordan,2013.0,The House of Hades,\"The House of Hades (The Heroes of Olympus, #4)\",eng,4.54,159774,175407,11843,698,1916,12999,45501,114293,https://images.gr-assets.com/books/1464201430l/12127810.jpg,https://images.gr-assets.com/books/1464201430s/12127810.jpg\n685,2536134,2536134,2543657,61,61448761,9780061448770.0,Michael  Grant,2008.0,Gone,\"Gone (Gone, #1)\",eng,3.85,144606,153953,9445,6428,12529,32771,47507,54718,https://images.gr-assets.com/books/1357796831l/2536134.jpg,https://images.gr-assets.com/books/1357796831s/2536134.jpg\n686,3466,3466,1208014,85,446615862,9780446615860.0,Nicholas Sparks,2003.0,The Wedding,\"The Wedding (The Notebook, #2)\",en-US,3.98,118045,124358,5443,2102,7587,28194,39312,47163,https://images.gr-assets.com/books/1385738787l/3466.jpg,https://images.gr-assets.com/books/1385738787s/3466.jpg\n687,1067,1067,3364186,38,743226720,9780743226720.0,David McCullough,2005.0,1776,1776,eng,4.06,130293,135378,5963,3155,5468,23230,51681,51844,https://images.gr-assets.com/books/1306787560l/1067.jpg,https://images.gr-assets.com/books/1306787560s/1067.jpg\n688,10847,10847,1723947,37,330419129,9780330419120.0,Jon Krakauer,2003.0,Under the Banner of Heaven: A Story of Violent Faith,Under the Banner of Heaven: A Story of Violent Faith,eng,3.98,112167,123697,8947,1958,5259,25101,52050,39329,https://images.gr-assets.com/books/1356441391l/10847.jpg,https://images.gr-assets.com/books/1356441391s/10847.jpg\n689,11447921,11447921,16381755,51,61928127,9780061928120.0,Jess Walter,2012.0,Beautiful Ruins,Beautiful Ruins,eng,3.67,116053,128321,13738,2869,10393,38113,51164,25782,https://images.gr-assets.com/books/1338161553l/11447921.jpg,https://images.gr-assets.com/books/1338161553s/11447921.jpg\n690,9742,9742,1716451,62,307237699,9780307237700.0,Barack Obama,2006.0,The Audacity of Hope: Thoughts on Reclaiming the American Dream,The Audacity of Hope: Thoughts on Reclaiming the American Dream,en-US,3.69,110873,114115,4511,7053,7808,28645,40177,30432,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925614l/9742.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n691,10569,10569,150292,122,743455967,9780743455960.0,Stephen King,1999.0,On Writing: A Memoir of the Craft,On Writing: A Memoir of the Craft,eng,4.31,131481,151918,11807,1361,3497,18862,51470,76728,https://images.gr-assets.com/books/1436735207l/10569.jpg,https://images.gr-assets.com/books/1436735207s/10569.jpg\n692,1472878,1472878,1463850,61,312364083,9780312364080.0,Kristin Hannah,2008.0,Firefly Lane,\"Firefly Lane (Firefly Lane, #1)\",en-US,4.04,121966,131124,11137,2074,6448,25649,46852,50101,https://images.gr-assets.com/books/1362435448l/1472878.jpg,https://images.gr-assets.com/books/1362435448s/1472878.jpg\n693,455373,455373,2651694,122,345418972,9780345418980.0,Michael Crichton,1987.0,Sphere,Sphere,eng,3.77,128244,135005,2313,1851,9728,40085,49513,33828,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174924200l/455373.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n694,2120652,2120652,1470370,47,312348673,9780312348670.0,Emily Giffin,2008.0,Love the One You're With,Love the One You're With,en-US,3.7,124812,129614,4743,3289,10895,39052,44476,31902,https://images.gr-assets.com/books/1361466590l/2120652.jpg,https://images.gr-assets.com/books/1361466590s/2120652.jpg\n695,18214414,18214414,25639104,109,316206873,9780316206880.0,\"Robert Galbraith, J.K. Rowling\",2014.0,The Silkworm,\"The Silkworm (Cormoran Strike, #2)\",eng,4.03,120008,145146,13549,1330,4361,27130,67680,44645,https://images.gr-assets.com/books/1392577290l/18214414.jpg,https://images.gr-assets.com/books/1392577290s/18214414.jpg\n696,43814,43814,3241580,111,345476883,9780345476880.0,Anne Rice,1985.0,The Vampire Lestat,\"The Vampire Lestat (The Vampire Chronicles, #2)\",eng,4.05,141299,150967,3097,1531,6801,30996,54376,57263,https://images.gr-assets.com/books/1347515742l/43814.jpg,https://images.gr-assets.com/books/1347515742s/43814.jpg\n697,9118135,9118135,14893776,49,62049801,9780062049800.0,Ann Patchett,2011.0,State of Wonder,State of Wonder,eng,3.85,124837,135740,14781,2243,8179,32560,57115,35643,https://images.gr-assets.com/books/1454428541l/9118135.jpg,https://images.gr-assets.com/books/1454428541s/9118135.jpg\n698,13539044,13539044,2915346,75,374533571,9780374533570.0,Matthew Quick,2008.0,The Silver Linings Playbook,The Silver Linings Playbook,en-US,4.0,110939,129408,11059,1493,5495,25882,54594,41944,https://images.gr-assets.com/books/1358277412l/13539044.jpg,https://images.gr-assets.com/books/1358277412s/13539044.jpg\n699,33507,33507,1112418,1691,076072850X,9780760728500.0,\"Jules Verne, Anthony Bonner\",1869.0,Vingt Mille Lieues Sous les Mers,Twenty Thousand Leagues Under the Sea,eng,3.86,121112,148698,4608,2333,8924,38817,55211,43413,https://images.gr-assets.com/books/1494979127l/33507.jpg,https://images.gr-assets.com/books/1494979127s/33507.jpg\n700,16181,16181,1745738,63,743272498,9780743272490.0,Philippa Gregory,2005.0,The Constant Princess,\"The Constant Princess (The Plantagenet and Tudor Novels, #6)\",en-US,3.88,124786,130800,4166,2456,6856,33052,49899,38537,https://images.gr-assets.com/books/1355932704l/16181.jpg,https://images.gr-assets.com/books/1355932704s/16181.jpg\n701,14942,14942,841320,572,151009988,9780151009980.0,\"Virginia Woolf, Maureen Howard\",1925.0,Mrs Dalloway,Mrs. Dalloway,en-US,3.78,136327,158347,6360,6254,13779,37308,52528,48478,https://images.gr-assets.com/books/1479336522l/14942.jpg,https://images.gr-assets.com/books/1479336522s/14942.jpg\n702,13486632,13486632,10365993,173,1843913720,9781843913730.0,\"Jonas Jonasson, Rod Bradbury\",2009.0,Hundraåringen som klev ut genom fönstret och försvann,The Hundred-Year-Old Man Who Climbed Out of the Window and Disappeared,en-GB,3.81,92275,137865,16350,4096,11094,31788,50610,40277,https://images.gr-assets.com/books/1334848488l/13486632.jpg,https://images.gr-assets.com/books/1334848488s/13486632.jpg\n703,10589,10589,3254516,134,067102423X,9780671024240.0,Stephen King,1998.0,Bag of Bones,Bag of Bones,en-US,3.87,131004,137867,3087,2377,9330,35689,46716,43755,https://images.gr-assets.com/books/1365592796l/10589.jpg,https://images.gr-assets.com/books/1365592796s/10589.jpg\n704,4687,4687,3875895,114,786226749,9780786226740.0,John Irving,1985.0,The Cider House Rules,The Cider House Rules,eng,4.1,124876,134263,3170,1250,4327,23669,55302,49715,https://images.gr-assets.com/books/1327962519l/4687.jpg,https://images.gr-assets.com/books/1327962519s/4687.jpg\n705,10605,10605,2791999,132,451190750,9780451190760.0,\"Richard Bachman, Stephen King\",1984.0,Thinner,Thinner,en-GB,3.66,130219,136473,1641,2810,13288,44786,41617,33972,https://images.gr-assets.com/books/1346947063l/10605.jpg,https://images.gr-assets.com/books/1346947063s/10605.jpg\n706,54479,54479,4537271,1903,014044906X,9780140449070.0,\"Jules Verne, Michael Glencross, Brian W. Aldiss\",1872.0,Le tour du monde en quatre-vingts jours,Around the World in Eighty Days,eng,3.9,117108,141132,4341,1273,6693,36897,55603,40666,https://images.gr-assets.com/books/1308815551l/54479.jpg,https://images.gr-assets.com/books/1308815551s/54479.jpg\n707,53496,53496,1237212,65,60739495,9780060739490.0,Sharon Creech,1994.0,Walk Two Moons,Walk Two Moons,eng,3.95,129350,132970,5530,3251,8401,29328,43060,48930,https://images.gr-assets.com/books/1389035862l/53496.jpg,https://images.gr-assets.com/books/1389035862s/53496.jpg\n708,1430,1430,1950213,194,60589280,9780060589290.0,\"Paulo Coelho, Margaret Jull Costa\",2003.0,Onze minutos,Eleven Minutes,eng,3.69,102206,116141,5444,4444,11306,31202,38487,30702,https://images.gr-assets.com/books/1358266987l/1430.jpg,https://images.gr-assets.com/books/1358266987s/1430.jpg\n709,4009,4009,1839377,155,316767727,9780316767730.0,J.D. Salinger,1953.0,Nine Stories,Nine Stories,eng,4.19,105138,117297,3423,1416,3591,18615,41479,52196,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554892563l/4009.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n710,13747,13747,3338312,64,031610969X,9780316109700.0,Julie Powell,2005.0,\"Julie & Julia: 365 Days, 524 Recipes, 1 Tiny Apartment Kitchen\",\"Julie and Julia: 365 Days, 524 Recipes, 1 Tiny Apartment Kitchen: How One Girl Risked Her Marriage, Her Job, and Her Sanity to Master the Art of Living\",eng,3.67,121373,129563,7434,4405,11803,37340,44811,31204,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442804846l/13747._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n711,764347,764347,750423,62,1416912045,9781416912040.0,Neal Shusterman,2007.0,Unwind,\"Unwind (Unwind, #1)\",eng,4.18,143892,152643,15376,3032,5976,22062,50286,71287,https://images.gr-assets.com/books/1297677706l/764347.jpg,https://images.gr-assets.com/books/1297677706s/764347.jpg\n712,10988,10988,3123704,96,385335989,9780385335980.0,Diana Gabaldon,1996.0,\"Drums of Autumn (Outlander, #4)\",\"Drums of Autumn (Outlander, #4)\",eng,4.34,123736,145728,5743,584,2679,18529,48756,75180,https://images.gr-assets.com/books/1500688941l/10988.jpg,https://images.gr-assets.com/books/1500688941s/10988.jpg\n713,13414446,13414446,18712554,61,399256768,9780399256770.0,Marie Lu,2013.0,Prodigy,\"Prodigy (Legend, #2)\",eng,4.29,149702,160193,12663,1213,3659,21004,56370,77947,https://images.gr-assets.com/books/1336254717l/13414446.jpg,https://images.gr-assets.com/books/1336254717s/13414446.jpg\n714,12938,12938,2342136,1108,074348276X,9780743482770.0,William Shakespeare,1603.0,The Tragedie of King Lear,King Lear,eng,3.89,135448,147282,3079,2825,10502,36179,47682,50094,https://images.gr-assets.com/books/1331563731l/12938.jpg,https://images.gr-assets.com/books/1331563731s/12938.jpg\n715,12898,12898,2722054,139,435233076,9780435233080.0,Arthur Miller,1949.0,Death of a Salesman,Death of a Salesman,eng,3.49,132061,147597,3486,6733,19241,46338,46051,29234,https://images.gr-assets.com/books/1469024140l/12898.jpg,https://images.gr-assets.com/books/1469024140s/12898.jpg\n716,531350,25402194,2416287,101,446579920,9780446579930.0,Nicholas Sparks,2007.0,The Choice,The Choice,en-US,3.99,93479,128525,6808,2160,7288,28349,42867,47861,https://images.gr-assets.com/books/1385739133l/531350.jpg,https://images.gr-assets.com/books/1385739133s/531350.jpg\n718,10975,10975,1168289,221,,,William Faulkner,1929.0,The Sound and the Fury,The Sound and the Fury,eng,3.86,124665,133331,5485,6725,10848,26021,40913,48824,https://images.gr-assets.com/books/1433089995l/10975.jpg,https://images.gr-assets.com/books/1433089995s/10975.jpg\n719,76334,76334,2567181,45,452287588,9780452287590.0,Eckhart Tolle,2005.0,A New Earth: Awakening to Your Life's Purpose,A New Earth: Awakening to Your Life's Purpose,eng,4.02,106211,113457,5862,4424,7162,19384,32949,49538,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206232l/76334.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n720,2880,2880,1854946,34,1591164419,9781591164420.0,Tite Kubo,2002.0,BLEACH―ブリーチ―　1,\"Bleach, Volume 01\",eng,4.21,120004,120433,890,2644,5380,18982,30554,62873,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388508611l/2880.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n722,9539,9539,6591373,83,812513738,9780812513740.0,Robert Jordan,1992.0,The Shadow Rising ,\"The Shadow Rising (Wheel of Time, #4)\",en-US,4.21,122524,130562,2145,930,3327,20346,48728,57231,https://images.gr-assets.com/books/1470841890l/9539.jpg,https://images.gr-assets.com/books/1470841890s/9539.jpg\n723,33600,33600,3174890,101,192076920X,9781920769210.0,Gregory David Roberts,2003.0,Shantaram,Shantaram,eng,4.26,95213,111838,10295,2188,4308,13378,34106,57858,https://images.gr-assets.com/books/1333482282l/33600.jpg,https://images.gr-assets.com/books/1333482282s/33600.jpg\n724,2233407,2233407,3159807,67,441015891,9780441015890.0,Charlaine Harris,2008.0,From Dead to Worse,\"From Dead to Worse (Sookie Stackhouse, #8)\",eng,4.01,151095,161814,3500,946,5941,37809,62516,54602,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525214511l/2233407.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n725,34084,34084,1810634,151,670032565,9780670032560.0,\"Stephen King, Ned Dameron\",1991.0,The Waste Lands,\"The Waste Lands (The Dark Tower, #3)\",eng,4.24,117483,135257,3844,801,3169,19831,50959,60497,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554220386l/34084.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n726,2373,2373,2589896,109,451188454,9780451188460.0,Jeffery Deaver,1997.0,The Bone Collector,\"The Bone Collector (Lincoln Rhyme, #1)\",en-US,4.18,120541,125250,1785,1165,3101,20494,47836,52654,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437538512l/2373._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n727,101299,101299,23684,183,375408266,9780375408270.0,\"Bernhard Schlink, Carol Brown Janeway\",1995.0,Der Vorleser,The Reader,eng,3.73,119911,141705,8529,2975,10982,39603,55731,32414,https://images.gr-assets.com/books/1327936339l/101299.jpg,https://images.gr-assets.com/books/1327936339s/101299.jpg\n728,759611,759611,810506,77,805047905,9780805047900.0,\"Bill Martin Jr., Eric Carle\",1967.0,\"Brown Bear, Brown Bear, What Do You See?\",\"Brown Bear, Brown Bear, What Do You See?\",eng,4.19,125668,127162,2731,2280,6108,22298,31492,64984,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430155496l/759611.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n729,77566,77566,1383900,107,553283685,9780553283690.0,Dan Simmons,1989.0,Hyperion,\"Hyperion (Hyperion Cantos, #1)\",eng,4.21,122225,130489,5640,2284,5503,18329,41131,63242,https://images.gr-assets.com/books/1405546838l/77566.jpg,https://images.gr-assets.com/books/1405546838s/77566.jpg\n730,5308,5308,195832,233,142000698,9780142000690.0,John Steinbeck,1947.0,The Pearl of the World,The Pearl,eng,3.41,133264,145891,6121,8757,18361,48458,45467,24848,https://images.gr-assets.com/books/1437234939l/5308.jpg,https://images.gr-assets.com/books/1437234939s/5308.jpg\n731,179780,179780,1945267,1,61007226,9780061007220.0,William Peter Blatty,1971.0,The Exorcist,The Exorcist,en-US,4.14,124467,130575,2850,2211,4877,22809,43470,57208,https://images.gr-assets.com/books/1375168676l/179780.jpg,https://images.gr-assets.com/books/1375168676s/179780.jpg\n732,7937462,7937462,11342428,93,031612558X,9780316125580.0,Stephenie Meyer,2009.0,The Short Second Life of Bree Tanner,\"The Short Second Life of Bree Tanner: An Eclipse Novella (Twilight, #3.5)\",eng,3.51,145874,159769,9885,7314,21317,50829,43629,36680,https://images.gr-assets.com/books/1274335680l/7937462.jpg,https://images.gr-assets.com/books/1274335680s/7937462.jpg\n733,77142,77142,1677615,97,067976402X,9780679764020.0,David Guterson,1994.0,Snow Falling on Cedars,Snow Falling on Cedars,eng,3.8,131945,136212,3881,2507,9023,35994,54408,34280,https://images.gr-assets.com/books/1479863528l/77142.jpg,https://images.gr-assets.com/books/1479863528s/77142.jpg\n734,546018,546018,2529422,102,440174643,9780440174650.0,Alex Haley,1976.0,Roots,Roots: The Saga of an American Family,en-US,4.42,118951,122585,2644,784,1951,12877,36557,70416,https://images.gr-assets.com/books/1329398936l/546018.jpg,https://images.gr-assets.com/books/1329398936s/546018.jpg\n735,96358,96358,551787,69,930289455,9780930289450.0,\"Alan Moore, Brian Bolland, Tim Sale\",1988.0,Batman: The Killing Joke ,Batman: The Killing Joke,eng,4.36,113855,123312,3711,883,2751,14311,38045,67322,https://images.gr-assets.com/books/1346331835l/96358.jpg,https://images.gr-assets.com/books/1346331835s/96358.jpg\n736,16981,16981,170957,109,679732764,9780679732760.0,Ralph Ellison,1952.0,Invisible Man,Invisible Man,eng,3.84,123073,127464,4160,4351,10006,28935,43080,41092,https://images.gr-assets.com/books/1352854247l/16981.jpg,https://images.gr-assets.com/books/1352854247s/16981.jpg\n737,43015,43015,825414,68,374105235,9780374105240.0,Ishmael Beah,2007.0,A Long Way Gone. Memoirs of a Boy Soldier,A Long Way Gone: Memoirs of a Boy Soldier,en-US,4.14,116260,121841,9015,1424,3801,20057,46963,49596,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524839125l/43015._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n738,9822,9822,839692,73,689862202,9780689862200.0,Robert C. O'Brien,1971.0,Mrs. Frisby and the Rats of NIMH,\"Mrs. Frisby and the Rats of NIMH (Rats of NIMH, #1)\",,4.13,135978,142350,2718,1620,4727,26279,50968,58756,https://images.gr-assets.com/books/1351191064l/9822.jpg,https://images.gr-assets.com/books/1351191064s/9822.jpg\n739,39662,39662,2248680,132,751514624,9780751514630.0,Stephen King,1982.0,Different Seasons,Different Seasons,eng,4.34,105961,138206,3148,435,2223,17523,48177,69848,https://images.gr-assets.com/books/1329662611l/39662.jpg,https://images.gr-assets.com/books/1329662611s/39662.jpg\n740,114345,114345,2852640,14,60529962,9780060529960.0,\"Laura Ingalls Wilder, Garth Williams\",1953.0,The Little House Collection,\"The Little House Collection (Little House, #1-9)\",,4.33,124320,128880,2016,2304,3046,15651,36875,71004,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1577932823l/114345._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n741,33926,33926,33947,61,143035479,9780143035470.0,Melissa Bank,1998.0,The Girls' Guide to Hunting and Fishing,The Girls' Guide to Hunting and Fishing,,3.29,113977,118017,2809,11089,16858,37528,32016,20526,https://images.gr-assets.com/books/1309210476l/33926.jpg,https://images.gr-assets.com/books/1309210476s/33926.jpg\n742,13453029,13453029,18979356,116,,,Hugh Howey,2012.0,Wool Omnibus,\"Wool Omnibus (Silo, #1)\",eng,4.24,81982,121842,11803,1155,3518,15776,46236,55157,https://images.gr-assets.com/books/1349614200l/13453029.jpg,https://images.gr-assets.com/books/1349614200s/13453029.jpg\n743,28881,28881,3346728,51,380813815,9780380813810.0,Christopher Moore,2002.0,\"Lamb: The Gospel According to Biff, Christ's Childhood Pal\",\"Lamb: The Gospel According to Biff, Christ's Childhood Pal\",en-US,4.26,118576,125861,10411,2392,4578,16179,37102,65610,https://images.gr-assets.com/books/1331419009l/28881.jpg,https://images.gr-assets.com/books/1331419009s/28881.jpg\n744,6708,6708,840520,153,1577314808,9781577314810.0,Eckhart Tolle,1997.0,The Power of Now,The Power of Now: A Guide to Spiritual Enlightenment,eng,4.1,104549,112730,5376,3440,6131,17848,33175,52136,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925535l/6708.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n745,12868761,12868761,17995392,2,399159010,9780399159020.0,Jenny  Lawson,2012.0,Let's Pretend This Never Happened (A Mostly True Memoir),Let's Pretend This Never Happened: A Mostly True Memoir,eng,3.9,118475,130593,15544,5179,9769,25994,41884,47767,https://images.gr-assets.com/books/1489415716l/12868761.jpg,https://images.gr-assets.com/books/1489415716s/12868761.jpg\n746,127455,127455,2116675,72,553804677,9780553804680.0,Scott Lynch,2006.0,The Lies of Locke Lamora,\"The Lies of Locke Lamora (Gentleman Bastard, #1)\",eng,4.3,118751,138021,9655,2360,4377,14772,44719,71793,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1576333981l/127455._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n747,518848,518848,3312237,99,64471837,9780064471830.0,Garth Nix,1995.0,Sabriel,\"Sabriel (Abhorsen,  #1)\",en-US,4.17,137047,146144,5652,2911,5797,22367,47814,67255,https://images.gr-assets.com/books/1293655399l/518848.jpg,https://images.gr-assets.com/books/1293655399s/518848.jpg\n748,5161066,5161066,5228078,68,441017150,9780441017160.0,Charlaine Harris,2009.0,Dead and Gone,\"Dead and Gone (Sookie Stackhouse, #9)\",eng,4.01,145157,156932,4315,1114,6415,36292,59321,53790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186195l/5161066.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n749,15753740,15753740,21449403,62,1439102767,9781439102760.0,Jodi Picoult,2013.0,The Storyteller,The Storyteller,eng,4.26,109313,125264,13923,1206,3199,15490,47104,58265,https://images.gr-assets.com/books/1356328634l/15753740.jpg,https://images.gr-assets.com/books/1356328634s/15753740.jpg\n750,12578077,12578077,17588854,60,1620610078,9781620610080.0,Jennifer L. Armentrout,2011.0,Obsidian,\"Obsidian (Lux, #1)\",eng,4.23,164832,176296,15367,4284,6932,23256,50731,91093,https://images.gr-assets.com/books/1328275091l/12578077.jpg,https://images.gr-assets.com/books/1328275091s/12578077.jpg\n751,8694,8694,74123,142,345418905,9780345418910.0,Douglas Adams,1982.0,\"Life, the Universe and Everything\",\"Life, the Universe and Everything (Hitchhiker's Guide, #3)\",eng,4.19,131562,145992,2354,657,3816,25663,53047,62809,https://images.gr-assets.com/books/1333577589l/8694.jpg,https://images.gr-assets.com/books/1333577589s/8694.jpg\n752,17167166,17167166,21581860,55,1619630621,9781619630630.0,Sarah J. Maas,2013.0,Crown of Midnight,\"Crown of Midnight (Throne of Glass, #2)\",en-CA,4.49,160485,184381,19450,1092,2478,14391,52781,113639,https://images.gr-assets.com/books/1391580481l/17167166.jpg,https://images.gr-assets.com/books/1391580481s/17167166.jpg\n753,29800,29800,30220,34,1932664084,9781932664090.0,Bryan Lee O'Malley,2004.0,\"Scott Pilgrim, Volume 1: Scott Pilgrim's Precious Little Life\",\"Scott Pilgrim, Volume 1: Scott Pilgrim's Precious Little Life\",eng,4.18,126864,130847,3118,3667,4891,18962,40649,62678,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348109012l/29800.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n754,6366437,6366437,6553801,51,1416586288,9781416586290.0,Jeannette Walls,2008.0,Half Broke Horses: A True Life Novel,Half Broke Horses,eng,4.05,110597,119479,10401,820,3719,23221,52865,38854,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348507420l/6366437.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n755,386372,386372,1857065,4,61020680,9780061020680.0,Terry Pratchett,1987.0,Mort,\"Mort (Death, #1; Discworld, #4)\",eng,4.22,128450,141887,3081,912,2663,21970,55524,60818,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181166l/386372.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n756,6644117,6644117,6838626,58,373210086,9780373210080.0,Julie Kagawa,2010.0,\"The Iron King (The Iron Fey, #1) \",\"The Iron King (The Iron Fey, #1)\",eng,3.92,158063,163118,10506,5814,11383,34292,50281,61348,https://images.gr-assets.com/books/1327877670l/6644117.jpg,https://images.gr-assets.com/books/1327877670s/6644117.jpg\n757,256008,256008,3281465,57,067168390X,9780671683900.0,Larry McMurtry,1985.0,Lonesome Dove,Lonesome Dove,en-US,4.47,111498,116430,5343,1080,2179,10686,29526,72959,https://images.gr-assets.com/books/1378573063l/256008.jpg,https://images.gr-assets.com/books/1378573063s/256008.jpg\n758,32145,32145,1188203,48,393324826,9780393324820.0,Mary Roach,2003.0,Stiff: The Curious Lives of Human Cadavers,Stiff: The Curious Lives of Human Cadavers,eng,4.05,122502,128102,10513,1992,5132,24229,49580,47169,https://images.gr-assets.com/books/1347656489l/32145.jpg,https://images.gr-assets.com/books/1347656489s/32145.jpg\n759,8709527,8709527,13582374,37,1595143173,9781595143170.0,Richelle Mead,2011.0,Bloodlines,\"Bloodlines (Bloodlines, #1)\",en-US,4.22,140599,146134,7698,3103,4901,21147,45060,71923,https://images.gr-assets.com/books/1297199431l/8709527.jpg,https://images.gr-assets.com/books/1297199431s/8709527.jpg\n760,9532,9532,3145587,63,765342405,9780765342410.0,Orson Scott Card,1998.0,Ender's Shadow,\"Ender's Shadow (Ender's Shadow, #1)\",eng,4.3,115521,125744,4587,706,2793,16218,44173,61854,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424904668l/9532.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n761,6063187,6063187,6239469,74,385342020,9780385342020.0,Sophie Kinsella,2009.0,Twenties Girl,Twenties Girl,eng,3.82,119105,126192,6023,3479,9323,32120,42968,38302,https://images.gr-assets.com/books/1320544759l/6063187.jpg,https://images.gr-assets.com/books/1320544759s/6063187.jpg\n762,375013,375013,3127624,134,340606517,9780340606510.0,Thomas Keneally,1982.0,Schindler's Ark,Schindler's List,eng,4.34,108338,113156,1605,1225,2361,12913,36982,59675,https://images.gr-assets.com/books/1348163457l/375013.jpg,https://images.gr-assets.com/books/1348163457s/375013.jpg\n763,11337,11337,1987778,104,452287065,9780452287070.0,Toni Morrison,1970.0,The Bluest Eye,The Bluest Eye,eng,3.99,109944,121866,4963,2409,6094,24867,45871,42625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208495l/11337.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n764,5971165,5971165,13560666,101,1416563687,9781416563690.0,Philippa Gregory,2009.0,The White Queen,\"The White Queen (The Plantagenet and Tudor Novels, #2)\",eng,3.9,119739,130446,6293,2295,7115,31384,49549,40103,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439412993l/5971165._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n765,92057,92057,47400,105,345350685,9780345350690.0,\"Malcolm X, Alex Haley\",1965.0,The Autobiography of Malcolm X,The Autobiography of Malcolm X,eng,4.29,124805,131773,3951,2453,3362,16312,41019,68627,https://images.gr-assets.com/books/1434682864l/92057.jpg,https://images.gr-assets.com/books/1434682864s/92057.jpg\n766,23754,23754,1228437,68,1563892278,9781563892270.0,\"Neil Gaiman, Sam Kieth, Mike Dringenberg, Malcolm Jones III, Todd Klein, Karen  Berger\",1989.0,Preludes & Nocturnes,Preludes & Nocturnes (The Sandman #1),eng,4.3,122540,138525,4388,2632,3868,16435,41523,74067,https://images.gr-assets.com/books/1411609637l/23754.jpg,https://images.gr-assets.com/books/1411609637s/23754.jpg\n767,110737,110737,17572,63,345465083,9780345465080.0,Laura Hillenbrand,1999.0,Seabiscuit,Seabiscuit: An American Legend,en-US,4.2,111497,116984,3636,1391,3451,18065,41881,52196,https://images.gr-assets.com/books/1171644213l/110737.jpg,https://images.gr-assets.com/books/1171644213s/110737.jpg\n768,21686,21686,1234227,134,038073186X,9780380731860.0,Dennis Lehane,2003.0,Shutter Island,Shutter Island,eng,4.07,113718,124032,6990,1636,4727,22089,49875,45705,https://images.gr-assets.com/books/1329269081l/21686.jpg,https://images.gr-assets.com/books/1329269081s/21686.jpg\n769,188572,188572,7492217,301,553328255,9780553328260.0,Arthur Conan Doyle,1894.0,The Complete Sherlock Holmes,The Complete Sherlock Holmes,eng,4.5,109754,126558,2774,471,1125,10089,37928,76945,https://images.gr-assets.com/books/1465539139l/188572.jpg,https://images.gr-assets.com/books/1465539139s/188572.jpg\n770,13006,13006,2796883,1129,198320272,9780198320270.0,\"William Shakespeare, Roma Gill\",1599.0,The Tragedy of Julius Caesar,Julius Caesar,eng,3.65,119933,135918,3044,3318,13030,42014,46750,30806,https://images.gr-assets.com/books/1354574927l/13006.jpg,https://images.gr-assets.com/books/1354574927s/13006.jpg\n771,9938498,9938498,14831761,57,307408841,9780307408850.0,Erik Larson,2011.0,\"In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin\",\"In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin\",eng,3.81,110481,122989,12570,1951,7701,32350,50986,30001,https://images.gr-assets.com/books/1327864303l/9938498.jpg,https://images.gr-assets.com/books/1327864303s/9938498.jpg\n772,30289,30289,1625515,842,140449140,9780140449140.0,\"Plato, Desmond Lee\",-380.0,Πολιτεία,The Republic,eng,3.9,110274,122747,2261,2772,7531,29394,42284,40766,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925655l/30289.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n773,47021,47021,3152341,689,074347757X,9780743477570.0,William Shakespeare,1593.0,The Taming of the Shrew,The Taming of the Shrew,en-US,3.81,126318,134240,2370,2869,9611,35666,47453,38641,https://images.gr-assets.com/books/1327935253l/47021.jpg,https://images.gr-assets.com/books/1327935253s/47021.jpg\n774,13206828,13206828,18390772,51,312642970,9780312642980.0,Marissa Meyer,2014.0,Cress,\"Cress (The Lunar Chronicles, #3)\",eng,4.46,162069,177466,20055,866,2056,14772,56494,103278,https://images.gr-assets.com/books/1470057005l/13206828.jpg,https://images.gr-assets.com/books/1470057005s/13206828.jpg\n775,341879,341879,332242,66,006621131X,9780066211310.0,Patti Smith,2010.0,Just Kids,Just Kids,en-US,4.14,106542,117400,8415,3268,5377,17142,37031,54582,https://images.gr-assets.com/books/1259762407l/341879.jpg,https://images.gr-assets.com/books/1259762407s/341879.jpg\n777,227941,227941,3341834,40,767905180,9780767905180.0,Jane Green,2001.0,Jemima J,Jemima J,en-US,3.62,101436,103849,2448,8909,9304,24965,29819,30852,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207990l/227941.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n778,30597,30597,3043569,1206,451527887,9780451527880.0,\"Victor Hugo, Walter J. Cobb\",1831.0,Notre-Dame de Paris,The Hunchback of Notre-Dame,eng,3.97,119851,133421,3255,1952,6849,30636,47753,46231,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342667l/30597.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n779,5211,5211,865827,79,140003065X,9781400030650.0,Rohinton Mistry,1996.0,A Fine Balance,A Fine Balance,eng,4.34,99252,104516,7227,1477,3066,11254,31034,57685,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1551173390l/5211._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n780,77727,77727,2110010,24,836220889,9780836220890.0,\"Bill Watterson, G.B. Trudeau\",1987.0,Calvin and Hobbes,Calvin and Hobbes,en-US,4.61,117788,118294,684,980,1435,7684,22365,85830,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441227694l/77727._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n781,24765,24765,3278286,66,689865406,9780689865400.0,Scott Westerfeld,2006.0,Specials,\"Specials (Uglies, #3)\",eng,3.77,139168,148783,7313,3286,13140,41196,48574,42587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390340887l/24765.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n782,58345,58345,1970518,452,543898083,9780543898080.0,Kate Chopin,1899.0,The Awakening,The Awakening,eng,3.63,125474,137455,5662,7523,14751,35125,44172,35884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170507247l/58345._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n783,4134071,4134071,4181277,63,031237982X,9780312379830.0,\"P.C. Cast, Kristin Cast\",2009.0,Hunted,\"Hunted (House of Night, #5)\",eng,3.93,138103,146051,3204,4169,10788,32719,41977,56398,https://images.gr-assets.com/books/1438042897l/4134071.jpg,https://images.gr-assets.com/books/1438042897s/4134071.jpg\n784,10929,10929,3125926,83,1401303277,9781401303270.0,Mitch Albom,2006.0,For One More Day,For One More Day,en-US,4.09,102193,106720,6632,958,4221,21064,38962,41515,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438705425l/10929._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n785,32669,32669,5054704,91,425144372,9780425144370.0,Tom Clancy,1989.0,Clear and Present Danger,\"Clear and Present Danger (Jack Ryan Universe, #6)\",eng,4.08,105317,108638,574,973,3064,21463,44290,38848,https://images.gr-assets.com/books/1291440438l/32669.jpg,https://images.gr-assets.com/books/1291440438s/32669.jpg\n786,30120,30120,2501867,24,60513098,9780060513090.0,Shel Silverstein,1996.0,Falling Up,Falling Up,en-US,4.33,111779,114990,1281,1209,2879,15625,32073,63204,https://images.gr-assets.com/books/1327871908l/30120.jpg,https://images.gr-assets.com/books/1327871908s/30120.jpg\n787,7821447,7821447,10860635,39,61992704,9780061992700.0,Justin Halpern,2010.0,Sh*t My Dad Says,Sh*t My Dad Says,,3.98,102560,116368,7386,2279,6246,25054,40835,41954,https://images.gr-assets.com/books/1370399211l/7821447.jpg,https://images.gr-assets.com/books/1370399211s/7821447.jpg\n788,23955,135836,1087421,112,2020336464,9782020336470.0,\"Irvine Welsh, Eric Lindor Fall\",1993.0,Trainspotting,Trainspotting,fre,4.07,59453,110677,2029,1757,4329,19778,42833,41980,https://images.gr-assets.com/books/1375258001l/23955.jpg,https://images.gr-assets.com/books/1375258001s/23955.jpg\n789,29581,29581,1703483,143,553803727,9780553803720.0,Isaac Asimov,1952.0,Foundation and Empire,Foundation and Empire (Foundation #2),eng,4.2,105595,116241,2054,497,2770,18775,44860,49339,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391454612l/29581.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n790,6596,6596,376130,82,1878424505,9781878424500.0,Miguel Ruiz,1997.0,\"The Four Agreements: A Practical Guide to Personal Freedom, A Toltec Wisdom Book\",The Four Agreements: A Practical Guide to Personal Freedom,,4.12,97016,112472,6132,2463,5818,19047,33836,51308,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348204644l/6596.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n791,6614960,6614960,6809039,7,743296435,9780743296430.0,Jodi Picoult,2010.0,House Rules,House Rules,en-US,4.01,111239,119767,9871,1155,5434,25143,47540,40495,https://images.gr-assets.com/books/1290479868l/6614960.jpg,https://images.gr-assets.com/books/1290479868s/6614960.jpg\n792,22917,22917,1855987,325,394709306,9780394709310.0,\"Jacob Grimm, Wilhelm Grimm, Josef Scharl, Padraic Colum, Joseph Campbell, Margaret Raine Hunt, James Stern\",1812.0,Brüder Grimm: Kinder- und Hausmärchen,The Complete Grimm's Fairy Tales,eng,4.31,116324,128007,1851,772,2476,18421,41254,65084,https://images.gr-assets.com/books/1369540060l/22917.jpg,https://images.gr-assets.com/books/1369540060s/22917.jpg\n793,3980,3980,1384549,83,744583276,9780744583270.0,E.L. Konigsburg,1967.0,From the Mixed-Up Files of Mrs. Basil E. Frankweiler,From the Mixed-Up Files of Mrs. Basil E. Frankweiler,eng,4.15,134537,144108,5440,1943,5209,25045,49509,62402,https://images.gr-assets.com/books/1327784751l/3980.jpg,https://images.gr-assets.com/books/1327784751s/3980.jpg\n794,16130549,16130549,17851499,116,1476727651,9781476727650.0,Stephen King,2013.0,Doctor Sleep,\"Doctor Sleep (The Shining, #2)\",eng,4.1,95276,116565,13654,1117,4071,19995,48181,43201,https://images.gr-assets.com/books/1362415596l/16130549.jpg,https://images.gr-assets.com/books/1362415596s/16130549.jpg\n795,4271,4271,2961843,138,140285679,9780140285670.0,Nick Hornby,1998.0,About a Boy,About a Boy,en-US,3.79,101999,112161,2794,1127,5639,32252,49493,23650,https://images.gr-assets.com/books/1382004144l/4271.jpg,https://images.gr-assets.com/books/1382004144s/4271.jpg\n796,15760001,15760001,21459719,61,,,Samantha Young,2012.0,On Dublin Street,\"On Dublin Street (On Dublin Street, #1)\",eng,4.24,136761,145943,8174,2615,5087,19239,46853,72149,https://images.gr-assets.com/books/1490401910l/15760001.jpg,https://images.gr-assets.com/books/1490401910s/15760001.jpg\n797,3206011,3206011,3239458,44,1434768511,9781434768510.0,\"Francis Chan, Danae Yankoski, Chris Tomlin\",2008.0,Crazy Love: Overwhelmed by a Relentless God,Crazy Love: Overwhelmed by a Relentless God,eng,4.15,106351,109134,3011,2800,4867,16969,32636,51862,https://images.gr-assets.com/books/1328763220l/3206011.jpg,https://images.gr-assets.com/books/1328763220s/3206011.jpg\n798,7770,7770,98895,49,7173687,9780007173690.0,Dr. Seuss,1960.0,\"One Fish, Two Fish, Red Fish, Blue Fish\",\"One Fish, Two Fish, Red Fish, Blue Fish\",,4.12,117582,122653,2074,2153,5979,24401,32449,57671,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165640023l/7770._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n799,32423,32423,2200683,99,,9780425188800.0,Dean Koontz,1987.0,Watchers,Watchers,,4.16,109595,113984,2687,1253,3766,20833,38155,49977,https://images.gr-assets.com/books/1308458930l/32423.jpg,https://images.gr-assets.com/books/1308458930s/32423.jpg\n800,821611,821611,1602613,298,553213873,9780553213870.0,Helen Keller,1902.0,The Story of My Life,The Story of My Life,eng,4.07,107313,110056,1683,2514,4654,20960,36225,45703,https://images.gr-assets.com/books/1320429331l/821611.jpg,https://images.gr-assets.com/books/1320429331s/821611.jpg\n801,6224935,6224935,6405647,71,052595127X,9780525951280.0,Jonathan Tropper,2009.0,This Is Where I Leave You,This is Where I Leave You,eng,3.88,98645,111476,11062,1552,6027,26235,47931,29731,https://images.gr-assets.com/books/1467397162l/6224935.jpg,https://images.gr-assets.com/books/1467397162s/6224935.jpg\n802,7108001,7108001,6596168,62,446563080,9780446563090.0,Seth Grahame-Smith,2010.0,Abraham Lincoln: Vampire Hunter,Abraham Lincoln: Vampire Hunter,en-US,3.7,106336,118704,11875,4404,10413,31741,42104,30042,https://images.gr-assets.com/books/1291165397l/7108001.jpg,https://images.gr-assets.com/books/1291165397s/7108001.jpg\n803,271199,271199,542633,17,1591826039,9781591826030.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",1999.0,フルーツバスケット 1,\"Fruits Basket, Vol. 1\",eng,4.23,118467,118803,1541,3190,5265,17379,27721,65248,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442161482l/271199._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n804,12985,12985,1359590,956,743482832,9780743482840.0,William Shakespeare,1623.0,The Tempest,The Tempest,en-US,3.8,125178,135537,2831,2394,10084,37832,46984,38243,https://images.gr-assets.com/books/1327793692l/12985.jpg,https://images.gr-assets.com/books/1327793692s/12985.jpg\n805,6917952,6917952,7145410,61,1905654944,9781905654950.0,\"P.C. Cast, Kristin Cast\",2010.0,Burned: A House of Night Novel,\"Burned (House of Night, #7)\",eng,3.98,120763,129493,2999,3628,8971,27361,35719,53814,https://images.gr-assets.com/books/1327944437l/6917952.jpg,https://images.gr-assets.com/books/1327944437s/6917952.jpg\n806,5096,5096,750558,11,340829788,9780340829780.0,\"Stephen King, Dave McKean\",1997.0,Wizard and Glass,\"Wizard and Glass (The Dark Tower, #4)\",eng,4.24,105026,120708,4070,1040,4034,17762,39468,58404,https://images.gr-assets.com/books/1327946510l/5096.jpg,https://images.gr-assets.com/books/1327946510s/5096.jpg\n807,18302455,18302455,25791820,89,385351399,9780385351390.0,Dave Eggers,2013.0,The Circle,The Circle,eng,3.46,109412,129023,17954,5667,16425,41080,44562,21289,https://images.gr-assets.com/books/1376419833l/18302455.jpg,https://images.gr-assets.com/books/1376419833s/18302455.jpg\n808,9673436,9673436,527941,73,439813786,9780439813780.0,Brian Selznick,2007.0,The Invention of Hugo Cabret,The Invention of Hugo Cabret,eng,4.23,132159,135507,13128,1601,4222,20022,44895,64767,https://images.gr-assets.com/books/1422312376l/9673436.jpg,https://images.gr-assets.com/books/1422312376s/9673436.jpg\n809,5479,5479,39947767,38,60776099,9780060776090.0,\"Aldous Huxley, Christopher Hitchens\",1932.0,Brave New World/Brave New World Revisited,Brave New World / Brave New World Revisited,eng,4.16,108124,110115,1012,1215,3784,18335,39753,47028,https://images.gr-assets.com/books/1331315450l/5479.jpg,https://images.gr-assets.com/books/1331315450s/5479.jpg\n810,1087204,1087204,2192688,17,1591169151,9781591169150.0,Bisco Hatori,2003.0,桜蘭高校ホスト部 1,\"Ouran High School Host Club, Vol. 1 (Ouran High School Host Club, #1)\",eng,4.36,113881,114117,949,2338,3593,13572,26298,68316,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328993l/1087204.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n811,18812405,18812405,26747961,76,778316556,9780778316560.0,Mary Kubica,2014.0,The Good Girl,The Good Girl,eng,3.81,100936,122753,11244,2697,8081,30628,49795,31552,https://images.gr-assets.com/books/1388340126l/18812405.jpg,https://images.gr-assets.com/books/1388340126s/18812405.jpg\n812,16070903,16070903,21864517,47,,,Abbi Glines,2012.0,\"Fallen Too Far (Too Far, #1)\",\"Fallen Too Far (Rosemary Beach, #1; Too Far, #1)\",eng,4.21,138871,143547,7995,3366,6036,19726,42292,72127,https://images.gr-assets.com/books/1349565157l/16070903.jpg,https://images.gr-assets.com/books/1349565157s/16070903.jpg\n813,18081809,18081809,25391048,51,1250049377,9781250049380.0,Rainbow Rowell,2014.0,Landline,Landline,eng,3.55,113805,123422,15782,5386,13087,38025,41984,24940,https://images.gr-assets.com/books/1499378092l/18081809.jpg,https://images.gr-assets.com/books/1499378092s/18081809.jpg\n814,6262365,6262365,6445600,62,1905654588,9781905654580.0,\"P.C. Cast, Kristin Cast\",2008.0,Tempted,\"Tempted (House of Night, #6)\",eng,3.96,127387,137910,3165,4010,9937,29521,38966,55476,https://images.gr-assets.com/books/1408633041l/6262365.jpg,https://images.gr-assets.com/books/1408633041s/6262365.jpg\n815,12497,12497,2996445,104,375706674,9780375706680.0,Cormac McCarthy,2005.0,No Country for Old Men,No Country for Old Men,eng,4.12,100513,110082,6281,1533,3795,16790,45304,42660,https://images.gr-assets.com/books/1443231179l/12497.jpg,https://images.gr-assets.com/books/1443231179s/12497.jpg\n816,6101138,6101138,6278354,2,7230206,9780007230200.0,Hilary Mantel,2009.0,Wolf Hall,\"Wolf Hall (Thomas Cromwell, #1)\",eng,3.85,102936,118705,12827,6673,9916,21464,37421,43231,https://images.gr-assets.com/books/1336576165l/6101138.jpg,https://images.gr-assets.com/books/1336576165s/6101138.jpg\n817,6294,6294,2001,75,006441034X,9780064410340.0,Diana Wynne Jones,1986.0,Howl's Moving Castle,\"Howl's Moving Castle (Howl's Moving Castle, #1)\",eng,4.3,123945,140348,9219,1370,3764,18194,45058,71962,https://images.gr-assets.com/books/1407450489l/6294.jpg,https://images.gr-assets.com/books/1407450489s/6294.jpg\n818,11570,11570,643924,118,2226131906,9782226131900.0,\"Stephen King, William Olivier Desmond\",2001.0,Dreamcatcher,Dreamcatcher,fre,3.59,115855,122599,1856,5234,14010,36926,36389,30040,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922451l/11570.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n819,16902,16902,2361393,852,691096120,9780691096120.0,Henry David Thoreau,1854.0,Walden; or Life in the Woods,Walden,eng,3.79,108062,120653,3620,5092,10227,27683,39108,38543,https://images.gr-assets.com/books/1465675526l/16902.jpg,https://images.gr-assets.com/books/1465675526s/16902.jpg\n820,28921,28921,3333111,170,571225381,9780571225380.0,Kazuo Ishiguro,1989.0,The Remains of the Day,The Remains of the Day,eng,4.1,105892,121763,7455,1500,5028,21065,46702,47468,https://images.gr-assets.com/books/1327128714l/28921.jpg,https://images.gr-assets.com/books/1327128714s/28921.jpg\n821,10766509,10766509,15677976,91,446547654,9780446547660.0,Nicholas Sparks,2010.0,The Best of Me,The Best of Me,en-US,3.91,103915,124564,9610,2688,9119,28642,40370,43745,https://images.gr-assets.com/books/1301685366l/10766509.jpg,https://images.gr-assets.com/books/1301685366s/10766509.jpg\n822,10746542,10746542,15657664,110,224094157,9780224094150.0,Julian Barnes,2011.0,The Sense of an Ending,The Sense of an Ending,eng,3.7,94968,114025,12966,2910,9843,30865,45258,25149,https://images.gr-assets.com/books/1311704453l/10746542.jpg,https://images.gr-assets.com/books/1311704453s/10746542.jpg\n823,64863,64863,1299178,81,312938993,9780312938990.0,Sue Grafton,1982.0,A is for Alibi,\"A is for Alibi (Kinsey Millhone, #1)\",en-US,3.82,116026,121225,3236,2465,7563,34101,42272,34824,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198817l/64863.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n824,1554,1554,3098166,498,1580495931,9781580495940.0,\"Sophocles, J.E. Thomas\",-430.0,Οἰδίπους Τύραννος,\"Oedipus Rex  (The Theban Plays, #1)\",eng,3.67,119496,134384,2129,3032,12324,42020,45436,31572,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182316l/1554.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n825,5960325,5960325,5991850,52,1400067111,9781400067110.0,Lisa See,2009.0,Shanghai Girls,Shanghai Girls (Shanghai Girls #1),eng,3.87,106729,114862,8654,1334,5638,28727,49667,29496,https://images.gr-assets.com/books/1327968416l/5960325.jpg,https://images.gr-assets.com/books/1327968416s/5960325.jpg\n826,5659,5659,1061285,1150,143039091,9780143039100.0,\"Kenneth Grahame, Gillian Avery\",1908.0,The Wind in the Willows,The Wind in the Willows,eng,3.98,124612,139791,4057,2608,7140,31301,47933,50809,https://images.gr-assets.com/books/1423183570l/5659.jpg,https://images.gr-assets.com/books/1423183570s/5659.jpg\n827,15749186,15749186,21442106,60,,,Jenny Han,2014.0,To All the Boys I've Loved Before,\"To All the Boys I've Loved Before (To All the Boys I've Loved Before, #1)\",eng,4.11,136938,151311,17356,3388,6744,25033,51196,64950,https://images.gr-assets.com/books/1372086100l/15749186.jpg,https://images.gr-assets.com/books/1372086100s/15749186.jpg\n828,9516,9516,3303888,39,037571457X,9780375714570.0,\"Marjane Satrapi, Mattias Ripa\",2000.0,Persepolis,\"Persepolis: The Story of a Childhood (Persepolis, #1)\",eng,4.23,117103,119965,6588,1138,3121,16734,45474,53498,https://images.gr-assets.com/books/1425871473l/9516.jpg,https://images.gr-assets.com/books/1425871473s/9516.jpg\n829,3087,3087,4574872,557,1420925431,9781420925430.0,E.M. Forster,1908.0,A Room with a View,A Room with a View,eng,3.91,109994,122055,3969,2113,7241,28787,45563,38351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388781285l/3087.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n830,6931356,6931356,7162394,53,316084239,9780316084240.0,Kody Keplinger,2010.0,The DUFF: Designated Ugly Fat Friend,The DUFF: Designated Ugly Fat Friend,en-US,3.86,136736,146547,11130,5089,10817,33459,47351,49831,https://images.gr-assets.com/books/1271108843l/6931356.jpg,https://images.gr-assets.com/books/1271108843s/6931356.jpg\n831,1295102,1295102,1284222,38,067001088X,9780670010880.0,Sarah Dessen,2008.0,Lock and Key,Lock and Key,eng,4.01,120475,127649,4950,1910,6407,27658,43875,47799,https://images.gr-assets.com/books/1479691949l/1295102.jpg,https://images.gr-assets.com/books/1479691949s/1295102.jpg\n832,268602,479309,1097497,101,399151575,9780399151580.0,J.D. Robb,1995.0,Naked in Death,\"Naked in Death (In Death, #1)\",en-US,4.13,78028,126781,4462,3226,5211,21254,39535,57555,https://images.gr-assets.com/books/1297783540l/268602.jpg,https://images.gr-assets.com/books/1297783540s/268602.jpg\n833,5355,5355,1254155,112,385339666,9780385339670.0,John Grisham,1994.0,The Chamber,The Chamber,eng,3.76,102715,106806,1337,1706,7154,32686,38347,26913,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388336784l/5355.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n834,4502877,4502877,4551869,1,,,Stephenie Meyer,2008.0,Midnight Sun (Partial Draft),\"Midnight Sun (Twilight, #1.5)\",eng,4.03,138118,138117,9189,6209,9089,23237,35433,64149,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n835,204042,204042,197436,49,1569319006,9781569319000.0,\"Masashi Kishimoto, Katy Bridges\",1999.0,NARUTO -ナルト- 巻ノ一 ,\"Naruto, Vol. 01: The Tests of the Ninja (Naruto, #1)\",eng,4.35,104633,105269,1207,2105,3635,13142,23193,63194,https://images.gr-assets.com/books/1435524806l/204042.jpg,https://images.gr-assets.com/books/1435524806s/204042.jpg\n836,13227454,13227454,18156927,89,812993292,9780812993300.0,Rachel Joyce,2012.0,The Unlikely Pilgrimage of Harold Fry,\"The Unlikely Pilgrimage of Harold Fry (Harold Fry, #1)\",eng,3.89,94012,113876,14583,1925,6032,26242,48627,31050,https://images.gr-assets.com/books/1335816092l/13227454.jpg,https://images.gr-assets.com/books/1335816092s/13227454.jpg\n837,13262783,13262783,18464379,66,307931889,9780307931890.0,David Levithan,2012.0,Every Day,\"Every Day (Every Day, #1)\",eng,3.99,121863,133960,15539,2994,7882,26109,47403,49572,https://images.gr-assets.com/books/1356993940l/13262783.jpg,https://images.gr-assets.com/books/1356993940s/13262783.jpg\n838,8648,8648,1150594,79,312861877,9780312861870.0,Orson Scott Card,1991.0,Xenocide,\"Xenocide (Ender's Saga, #3)\",eng,3.77,104467,115183,3217,1842,8424,33016,43038,28863,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924577l/8648.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n839,24128,24128,2682703,1088,743477561,9780743477570.0,\"William Shakespeare, Robert          Jackson, Barbara A. Mowat, Paul Werstine\",1596.0,The Merchant of Venice,The Merchant of Venice,eng,3.78,115621,128289,2616,1925,9212,36917,46745,33490,https://images.gr-assets.com/books/1327871054l/24128.jpg,https://images.gr-assets.com/books/1327871054s/24128.jpg\n840,402093,402093,1755568,120,440178002,9780440178000.0,James Clavell,1975.0,Shōgun,\"Shōgun (Asian Saga, #1)\",eng,4.37,104339,115527,3075,872,2373,13468,35713,63101,https://images.gr-assets.com/books/1397228842l/402093.jpg,https://images.gr-assets.com/books/1397228842s/402093.jpg\n841,42900,42900,1214837,52,451219368,9780451219370.0,J.R. Ward,2006.0,\"Lover Awakened (Black Dagger Brotherhood, #3)\",\"Lover Awakened (Black Dagger Brotherhood, #3)\",eng,4.45,134249,142754,5926,1196,2744,14043,36965,87806,https://images.gr-assets.com/books/1388773547l/42900.jpg,https://images.gr-assets.com/books/1388773547s/42900.jpg\n842,16096824,16096824,21905102,54,1619634449,9781619634440.0,Sarah J. Maas,2015.0,A Court of Thorns and Roses,\"A Court of Thorns and Roses (A Court of Thorns and Roses, #1)\",eng,4.29,167848,188723,25463,3499,6586,22541,56042,100055,https://images.gr-assets.com/books/1491595796l/16096824.jpg,https://images.gr-assets.com/books/1491595796s/16096824.jpg\n844,293595,293595,680304,42,068983568X,9780689835680.0,\"Bill Martin Jr., John Archambault, Lois Ehlert\",1989.0,Chicka Chicka Boom Boom,Chicka Chicka Boom Boom,eng,4.21,105192,116089,3318,2524,5879,18923,26523,62240,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348384871l/293595.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n845,6393631,6393631,6582125,28,545132053,9780545132050.0,Raina Telgemeier,2009.0,Smile,Smile,eng,4.19,98628,102804,6516,3201,4369,15206,26690,53338,https://images.gr-assets.com/books/1438206850l/6393631.jpg,https://images.gr-assets.com/books/1438206850s/6393631.jpg\n846,5472,5472,2966408,51,151010269,9780151010260.0,\"George Orwell, Christopher Hitchens\",1950.0, Animal Farm & 1984,Animal Farm / 1984,eng,4.26,116197,118761,1293,1212,3276,16511,40583,57179,https://images.gr-assets.com/books/1327959366l/5472.jpg,https://images.gr-assets.com/books/1327959366s/5472.jpg\n847,5161,5161,1207024,48,140286276,9780140286270.0,Jacquelyn Mitchard,1996.0,The Deep End of the Ocean,\"The Deep End of the Ocean (Cappadora Family, #1)\",en-US,3.84,102733,104471,1095,1741,6092,27939,39820,28879,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435023021l/5161._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n848,12555,12555,1898187,79,345457374,9780345457370.0,Amy Tan,2001.0,The Bonesetter's Daughter,The Bonesetter's Daughter,en-US,3.98,99926,105274,2871,730,3502,23935,46287,30820,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442687221l/12555._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n849,402013,402013,108471,67,60288140,9780060288140.0,Louise Rennison,1999.0,\"Angus, Thongs and Full-Frontal Snogging\",\"Angus, Thongs and Full-Frontal Snogging (Confessions of Georgia Nicolson, #1)\",eng,3.74,112733,118893,3833,4507,10953,31648,35061,36724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400533444l/402013.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n850,13538873,13538873,6736543,88,374214913,9780374214910.0,Robin Sloan,2012.0,Mr. Penumbra's 24-Hour Bookstore,\"Mr. Penumbra's 24-Hour Bookstore (Mr. Penumbra's 24-Hour Bookstore, #1)\",eng,3.75,110552,127396,20150,2419,9582,34956,50973,29466,https://images.gr-assets.com/books/1345089845l/13538873.jpg,https://images.gr-assets.com/books/1345089845s/13538873.jpg\n851,43448,43448,3311885,111,743496310,9780743496320.0,V.C. Andrews,1979.0,Flowers in the Attic,\"Flowers in the Attic (Dollanganger, #1)\",eng,3.79,109063,122259,6055,4467,10284,30206,38523,38779,https://images.gr-assets.com/books/1327880853l/43448.jpg,https://images.gr-assets.com/books/1327880853s/43448.jpg\n852,25899336,25899336,45424659,80,,,\"Paul Kalanithi, Abraham Verghese\",2016.0,When Breath Becomes Air,When Breath Becomes Air,eng,4.32,116771,165673,15933,2913,4244,18562,51535,88419,https://images.gr-assets.com/books/1492677644l/25899336.jpg,https://images.gr-assets.com/books/1492677644s/25899336.jpg\n853,139463,139463,3264295,49,590452037,9780590452040.0,Jerry Spinelli,1990.0,Maniac Magee,Maniac Magee,eng,3.86,99831,104657,3689,2697,7804,25881,33058,35217,https://images.gr-assets.com/books/1395884800l/139463.jpg,https://images.gr-assets.com/books/1395884800s/139463.jpg\n854,22290,12813565,849507,87,99285444,9780099285440.0,Chuck Palahniuk,1999.0,Invisible Monsters,Invisible Monsters,eng,4.0,54937,99936,4657,1625,5710,20718,35026,36857,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348348816l/22290.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n855,1625,1625,3267921,861,743482778,9780743482780.0,William Shakespeare,1601.0,\"Twelfth Night; or, What You Will\",Twelfth Night,eng,3.97,119607,128893,2615,1494,6329,29985,47546,43539,https://images.gr-assets.com/books/1416628008l/1625.jpg,https://images.gr-assets.com/books/1416628008s/1625.jpg\n856,12936,12936,2134456,73,385732562,9780385732570.0,Lois Lowry,2000.0,Gathering Blue,\"Gathering Blue (The Giver, #2)\",eng,3.8,114917,127810,9480,1516,8009,36770,49694,31821,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195391l/12936.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n857,902,902,869832,38,014240120X,9780142401200.0,Ellen Raskin,1978.0,The Westing Game,The Westing Game,eng,4.03,117108,124343,7814,2682,6710,24165,41664,49122,https://images.gr-assets.com/books/1356850909l/902.jpg,https://images.gr-assets.com/books/1356850909s/902.jpg\n858,15839976,15839976,21580644,83,345539788,9780345539790.0,Pierce Brown,2014.0,Red Rising,\"Red Rising (Red Rising, #1)\",eng,4.26,104939,128188,15775,2341,4309,15037,42448,64053,https://images.gr-assets.com/books/1461354651l/15839976.jpg,https://images.gr-assets.com/books/1461354651s/15839976.jpg\n859,3227063,3227063,3261241,48,316033677,9780316033670.0,Brent Weeks,2008.0,The Way of Shadows,\"The Way of Shadows (Night Angel, #1)\",en-US,4.15,109236,114492,4025,2049,4811,17366,39470,50796,https://images.gr-assets.com/books/1327881551l/3227063.jpg,https://images.gr-assets.com/books/1327881551s/3227063.jpg\n860,30868,30868,1095121,48,812474945,9780812474950.0,Barbara Kingsolver,1988.0,The Bean Trees,\"The Bean Trees (Greer Family, #1)\",eng,3.94,105032,113568,5259,1401,5007,25764,47738,33658,https://images.gr-assets.com/books/1443483961l/30868.jpg,https://images.gr-assets.com/books/1443483961s/30868.jpg\n861,15745950,15745950,21436019,58,1476712980,9781476712990.0,Jamie McGuire,2013.0,Walking Disaster,\"Walking Disaster (Beautiful, #2)\",eng,4.23,134022,145114,11348,2597,5841,20243,42657,73776,https://images.gr-assets.com/books/1352338368l/15745950.jpg,https://images.gr-assets.com/books/1352338368s/15745950.jpg\n862,17332218,17332218,16482835,34,765326361,9780765326360.0,Brandon Sanderson,2014.0,Words of Radiance,\"Words of Radiance (The Stormlight Archive, #2)\",eng,4.77,73572,108176,7261,154,404,2653,18272,86693,https://images.gr-assets.com/books/1391535251l/17332218.jpg,https://images.gr-assets.com/books/1391535251s/17332218.jpg\n863,301736,301736,45331,148,076360013X,9780763600140.0,\"Sam McBratney, Anita Jeram\",1988.0,Guess How Much I Love You,Guess How Much I Love You,en-US,4.36,104690,107554,1326,1434,3317,13963,25628,63212,https://images.gr-assets.com/books/1320457007l/301736.jpg,https://images.gr-assets.com/books/1320457007s/301736.jpg\n864,10967,10967,1189893,76,440221668,9780440221660.0,Diana Gabaldon,2001.0,The Fiery Cross,\"The Fiery Cross (Outlander, #5)\",eng,4.26,103552,120438,5048,736,3692,18829,37362,59819,https://images.gr-assets.com/books/1407366842l/10967.jpg,https://images.gr-assets.com/books/1407366842s/10967.jpg\n865,10628,10628,2454497,119,450042685,9780450042680.0,\"Stephen King, John D. MacDonald\",1978.0,Night Shift,Night Shift,en-GB,3.96,104248,112357,2038,984,4705,28410,41703,36555,https://images.gr-assets.com/books/1342215309l/10628.jpg,https://images.gr-assets.com/books/1342215309s/10628.jpg\n866,126232,126232,2318370,109,1400064562,9781400064560.0,Peter Benchley,1974.0,Jaws,Jaws,eng,3.96,102574,106201,2205,1836,5893,24737,35730,38005,https://images.gr-assets.com/books/1327958767l/126232.jpg,https://images.gr-assets.com/books/1327958767s/126232.jpg\n867,3867,3867,1882970,96,393328627,9780393328620.0,Nicole Krauss,2005.0,The History of Love,The History of Love,eng,3.91,98379,103470,9622,2251,7414,22791,35939,35075,https://images.gr-assets.com/books/1327911009l/3867.jpg,https://images.gr-assets.com/books/1327911009s/3867.jpg\n868,19302,19302,2056462,215,142402494,9780142402500.0,\"Astrid Lindgren, Lauren Child, Florence Lamborn, Nancy Seligsohn\",1945.0,Pippi Långstrump,Pippi Longstocking,eng,4.11,123065,130305,2615,1749,5293,25615,41802,55846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519300455l/19302._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n869,2967752,2967752,1531887,127,1933372605,9781933372600.0,\"Muriel Barbery, Alison Anderson\",2006.0,L'élégance du hérisson,The Elegance of the Hedgehog,eng,3.73,101669,118556,15335,6480,11258,25525,39331,35962,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347755370l/2967752.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n870,2199,2199,2861004,40,743270754,9780743270760.0,\"Doris Kearns Goodwin, Suzanne Toren\",2005.0,Team of Rivals: The Political Genius of Abraham Lincoln,Team of Rivals: The Political Genius of Abraham Lincoln,eng,4.3,102923,107944,5875,3306,3095,11140,31184,59219,https://images.gr-assets.com/books/1347278868l/2199.jpg,https://images.gr-assets.com/books/1347278868s/2199.jpg\n871,7091488,7091488,6902804,59,441018645,9780441018640.0,Charlaine Harris,2010.0,Dead in the Family,\"Dead in the Family (Sookie Stackhouse, #10)\",en-US,3.88,127379,138027,5325,1531,8555,37227,48154,42560,https://images.gr-assets.com/books/1290479828l/7091488.jpg,https://images.gr-assets.com/books/1290479828s/7091488.jpg\n872,11989,11989,2058116,388,679720219,9780679720220.0,\"Albert Camus, Stuart Gilbert\",1947.0,La peste,The Plague,en-US,3.97,95803,111823,3494,1430,5671,23913,44261,36548,https://images.gr-assets.com/books/1342837610l/11989.jpg,https://images.gr-assets.com/books/1342837610s/11989.jpg\n873,78418,78418,888312,97,439206480,9780439206490.0,\"Lemony Snicket, Brett Helquist\",1999.0,The Reptile Room,\"The Reptile Room (A Series of Unfortunate Events, #2)\",eng,3.95,130213,141121,4863,1410,6684,34847,52929,45251,https://images.gr-assets.com/books/1352146294l/78418.jpg,https://images.gr-assets.com/books/1352146294s/78418.jpg\n874,13547180,13547180,19112736,35,145162137X,9781451621370.0,Susannah Cahalan,2012.0,Brain on Fire,Brain on Fire: My Month of Madness,eng,4.0,92849,103617,8593,1491,4253,21084,42730,34059,https://images.gr-assets.com/books/1353173297l/13547180.jpg,https://images.gr-assets.com/books/1353173297s/13547180.jpg\n875,305234,305234,296240,62,61214655,9780061214650.0,Melissa Marr,2007.0,Wicked Lovely ,\"Wicked Lovely (Wicked Lovely, #1)\",en-US,3.69,131034,136316,6591,5909,13879,36275,40331,39922,https://images.gr-assets.com/books/1327814035l/305234.jpg,https://images.gr-assets.com/books/1327814035s/305234.jpg\n876,420297,420297,561754,55,039515023X,9780395150240.0,H.A. Rey,1941.0,Curious George,Curious George,en-CA,4.13,105473,112467,845,2090,5211,21963,29649,53554,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442953450l/420297._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n877,27712,27712,1122661,218,525457585,9780525457590.0,\"Michael Ende, Ralph Manheim, Roswitha Quadflieg\",1979.0,Die unendliche Geschichte,The Neverending Story,eng,4.17,109110,124555,4303,1684,4743,21142,39618,57368,https://images.gr-assets.com/books/1327871159l/27712.jpg,https://images.gr-assets.com/books/1327871159s/27712.jpg\n878,13912,13912,2561274,59,571212921,9780571212930.0,Sylvia Nasar,1998.0,A Beautiful Mind,A Beautiful Mind,en-GB,4.12,98276,100629,1100,2044,3393,16728,36997,41467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347807703l/13912.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n879,41681,41681,1253187,534,1884365302,9781884365300.0,\"Upton Sinclair, Earl Lee, Kathleen DeGrave\",1906.0,The Jungle,The Jungle,eng,3.72,97468,109522,4750,3719,9393,29116,39239,28055,https://images.gr-assets.com/books/1332140681l/41681.jpg,https://images.gr-assets.com/books/1332140681s/41681.jpg\n880,2800905,2800905,2451397,52,61662690,9780061662690.0,Kelley Armstrong,2008.0,The Summoning,\"The Summoning (Darkest Powers, #1)\",en-US,4.03,132285,136832,5830,3330,7629,27219,42153,56501,https://images.gr-assets.com/books/1478986944l/2800905.jpg,https://images.gr-assets.com/books/1478986944s/2800905.jpg\n881,63697,63697,882844,124,684853949,9780684853950.0,Oliver Sacks,1985.0,The Man Who Mistook His Wife for a Hat and Other Clinical Tales,The Man Who Mistook His Wife for a Hat and Other Clinical Tales,en-US,4.04,102419,111090,4238,1549,4719,21880,42523,40419,https://images.gr-assets.com/books/1447047702l/63697.jpg,https://images.gr-assets.com/books/1447047702s/63697.jpg\n882,92364,92364,395229,144,006074815X,9780060748160.0,Ken Follett,1978.0,Storm Island,Eye of the Needle,en-US,4.16,93475,99971,1990,578,2147,17130,40554,39562,https://images.gr-assets.com/books/1327939511l/92364.jpg,https://images.gr-assets.com/books/1327939511s/92364.jpg\n883,78433,78433,3246409,103,1860498809,9781860498800.0,Margaret Atwood,2000.0,The Blind Assassin,The Blind Assassin,eng,3.95,98464,111284,5908,2340,6203,23409,42565,36767,https://images.gr-assets.com/books/1451445426l/78433.jpg,https://images.gr-assets.com/books/1451445426s/78433.jpg\n884,23164983,23164983,17377739,29,1594747350,9781594747360.0,Ransom Riggs,2014.0,Hollow City,\"Hollow City (Miss Peregrine’s Peculiar Children, #2)\",eng,4.07,73149,132924,14221,971,4618,25627,54274,47434,https://images.gr-assets.com/books/1429175859l/23164983.jpg,https://images.gr-assets.com/books/1429175859s/23164983.jpg\n885,359770,7944648,932849,43,375727345,9780375727340.0,Andre Dubus III,1999.0,House of Sand and Fog,House of Sand and Fog,eng,3.83,55381,104803,3589,3192,7268,24787,38793,30763,https://images.gr-assets.com/books/1428883041l/359770.jpg,https://images.gr-assets.com/books/1428883041s/359770.jpg\n886,17235026,17235026,23753235,69,356500152,9780356500160.0,M.R. Carey,2014.0,The Girl with All the Gifts,The Girl with All the Gifts,eng,3.93,99729,119493,14701,2427,6277,24649,49720,36420,https://images.gr-assets.com/books/1403033579l/17235026.jpg,https://images.gr-assets.com/books/1403033579s/17235026.jpg\n887,77013,77013,481854,134,067973225X,9780679732260.0,William Faulkner,1930.0,As I Lay Dying,As I Lay Dying,eng,3.72,103547,110705,5508,6178,10613,24587,35971,33356,https://images.gr-assets.com/books/1451810782l/77013.jpg,https://images.gr-assets.com/books/1451810782s/77013.jpg\n888,98573,98573,1285373,33,747532036,9780747532030.0,Crockett Johnson,1955.0,Harold and the Purple Crayon,Harold and the Purple Crayon,eng,4.24,107221,109752,1570,1865,4213,17288,28357,58029,https://images.gr-assets.com/books/1327390957l/98573.jpg,https://images.gr-assets.com/books/1327390957s/98573.jpg\n889,35729,35729,1593685,57,451218043,9780451218050.0,J.R. Ward,2006.0,\"Lover Eternal (Black Dagger Brotherhood, #2)\",\"Lover Eternal (Black Dagger Brotherhood, #2)\",eng,4.35,137558,146205,5559,1583,3587,17261,42711,81063,https://images.gr-assets.com/books/1300845974l/35729.jpg,https://images.gr-assets.com/books/1300845974s/35729.jpg\n891,91477,91477,855288,59,451458125,9780451458120.0,Jim Butcher,2001.0,Fool Moon ,\"Fool Moon (The Dresden Files, #2)\",eng,4.04,111371,122158,5269,580,4224,26768,49154,41432,https://images.gr-assets.com/books/1345556849l/91477.jpg,https://images.gr-assets.com/books/1345556849s/91477.jpg\n892,15751404,15751404,21445709,68,316204366,9780316204360.0,Malcolm Gladwell,2011.0,David and Goliath,\"David and Goliath: Underdogs, Misfits, and the Art of Battling Giants\",eng,3.9,90083,101707,7317,1768,5208,24303,40901,29527,https://images.gr-assets.com/books/1391813567l/15751404.jpg,https://images.gr-assets.com/books/1391813567s/15751404.jpg\n893,870,870,1959820,37,1591169208,9781591169210.0,\"Hiromu Arakawa, Akira Watanabe\",2002.0,鋼の錬金術師 1,\"Fullmetal Alchemist, Vol. 1 (Fullmetal Alchemist, #1)\",eng,4.49,93990,94768,1103,972,1734,8737,21751,61574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179331l/870.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n894,64216,64216,1128601,98,61020648,9780061020640.0,Terry Pratchett,1989.0,Guards! Guards!,\"Guards! Guards! (Discworld, #8)\",eng,4.32,108652,119069,2610,756,1721,14830,43570,58192,https://images.gr-assets.com/books/1431127356l/64216.jpg,https://images.gr-assets.com/books/1431127356s/64216.jpg\n895,7815,7815,1659905,57,1400078431,9781400078430.0,Joan Didion,2005.0,The Year of Magical Thinking,The Year of Magical Thinking,eng,3.86,94590,99308,7729,2670,7410,22435,35538,31255,https://images.gr-assets.com/books/1327878638l/7815.jpg,https://images.gr-assets.com/books/1327878638s/7815.jpg\n896,80660,80660,3106720,98,006112429X,9780061124300.0,Lionel Shriver,2003.0,We Need to Talk About Kevin,We Need to Talk About Kevin,eng,4.07,101343,113939,11369,3643,5596,16884,41057,46759,https://images.gr-assets.com/books/1327865017l/80660.jpg,https://images.gr-assets.com/books/1327865017s/80660.jpg\n897,112537,112537,1882772,151,1857231589,9781857231590.0,Arthur C. Clarke,1973.0,Rendezvous with Rama,\"Rendezvous with Rama (Rama, #1)\",eng,4.06,93151,103414,2773,836,3999,20716,40151,37712,https://images.gr-assets.com/books/1405456427l/112537.jpg,https://images.gr-assets.com/books/1405456427s/112537.jpg\n898,43758,43758,3147123,100,345419626,9780345419620.0,Anne Rice,1988.0,The Queen of the Damned,\"The Queen of the Damned (The Vampire Chronicles, #3)\",eng,3.86,110693,117289,1921,1866,8091,31233,39038,37061,https://images.gr-assets.com/books/1327871992l/43758.jpg,https://images.gr-assets.com/books/1327871992s/43758.jpg\n899,53835,53835,1959512,836,159308143X,9781593081430.0,\"Edith Wharton, Maureen Howard\",1920.0,The Age of Innocence,The Age of Innocence,eng,3.93,102646,114994,5051,2359,6549,25631,42542,37913,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388248423l/53835.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n900,61535,61535,1746717,104,199291152,9780199291150.0,Richard Dawkins,1976.0,The Selfish Gene,The Selfish Gene,eng,4.11,96564,101017,2460,2783,4298,15845,33818,44273,https://images.gr-assets.com/books/1366758096l/61535.jpg,https://images.gr-assets.com/books/1366758096s/61535.jpg\n901,4965,4965,3211895,20,142001430,9780142001430.0,Geraldine Brooks,2001.0,Year of Wonders: A Novel of the Plague,Year of Wonders,eng,4.0,104283,108029,8124,1491,4853,21931,43557,36197,https://images.gr-assets.com/books/1327936622l/4965.jpg,https://images.gr-assets.com/books/1327936622s/4965.jpg\n902,32508,32508,48262,130,446612731,9780446612740.0,Michael Connelly,1992.0,The Black Echo,\"The Black Echo (Harry Bosch, #1; Harry Bosch Universe, #1)\",eng,4.08,98591,108388,3068,1487,2971,19722,45422,38786,https://images.gr-assets.com/books/1344265342l/32508.jpg,https://images.gr-assets.com/books/1344265342s/32508.jpg\n903,667,667,287946,460,452281253,9780452281260.0,Ayn Rand,1938.0,Anthem,Anthem,eng,3.62,95620,106766,7096,6095,10982,27984,34074,27631,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190459l/667.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n904,10140661,10140661,15038778,50,1936305623,9781936305630.0,Sylvain Reynard,2011.0,Gabriel's Inferno,\"Gabriel's Inferno (Gabriel's Inferno, #1)\",eng,4.02,119633,127883,7192,5445,8481,21252,35901,56804,https://images.gr-assets.com/books/1301789770l/10140661.jpg,https://images.gr-assets.com/books/1301789770s/10140661.jpg\n905,8073,8073,11045,28,689707495,9780689707490.0,\"Judi Barrett, Ron Barrett\",1978.0,Cloudy with a Chance of Meatballs,Cloudy With a Chance of Meatballs,eng,4.15,104677,105520,1782,1641,4578,19494,30132,49675,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439779831l/8073._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n906,6643090,6643090,6837577,65,1400068932,9781400068940.0,Helen Simonson,2010.0,Major Pettigrew's Last Stand,Major Pettigrew's Last Stand,eng,3.87,97745,109311,11386,1652,5870,26114,46749,28926,https://images.gr-assets.com/books/1320539020l/6643090.jpg,https://images.gr-assets.com/books/1320539020s/6643090.jpg\n907,5598113,5598113,5769464,73,425227510,9780425227510.0,Nora Roberts,2009.0,Vision in White,\"Vision in White (Bride Quartet, #1)\",eng,4.1,103933,107747,3560,1736,4571,20507,35020,45913,https://images.gr-assets.com/books/1316972164l/5598113.jpg,https://images.gr-assets.com/books/1316972164s/5598113.jpg\n908,10909,10909,2532689,69,074349671X,9780743496710.0,Jodi Picoult,2006.0,The Tenth Circle,The Tenth Circle,eng,3.48,99170,103155,5101,3141,12846,36925,32003,18240,https://images.gr-assets.com/books/1348575053l/10909.jpg,https://images.gr-assets.com/books/1348575053s/10909.jpg\n909,9067850,9067850,13945952,66,1423140567,9781423140570.0,Rick Riordan,2011.0,The Throne of Fire,\"The Throne of Fire (Kane Chronicles, #2)\",eng,4.2,116360,123024,4900,869,3653,20425,42668,55409,https://images.gr-assets.com/books/1366227973l/9067850.jpg,https://images.gr-assets.com/books/1366227973s/9067850.jpg\n910,51964,51964,50700,64,765348276,9780765348270.0,John Scalzi,2005.0,Old Man's War,\"Old Man's War (Old Man's War, #1)\",eng,4.23,97653,109133,6878,883,2704,14821,42929,47796,https://images.gr-assets.com/books/1487044882l/51964.jpg,https://images.gr-assets.com/books/1487044882s/51964.jpg\n911,32692,32692,4847031,112,831727527,9780831727530.0,Stephen King,1992.0,Gerald's Game,Gerald's Game,eng,3.47,100158,105777,2445,6039,14425,32757,28853,23703,https://images.gr-assets.com/books/1297737756l/32692.jpg,https://images.gr-assets.com/books/1297737756s/32692.jpg\n912,6427,6427,617151,76,140255559,9780140255550.0,Janet Evanovich,1996.0,Two for the Dough,\"Two for the Dough (Stephanie Plum, #2)\",eng,4.11,116171,127548,4045,458,3089,25824,51020,47157,https://images.gr-assets.com/books/1330926461l/6427.jpg,https://images.gr-assets.com/books/1330926461s/6427.jpg\n913,327847,327847,318479,63,684818701,9780684818700.0,\"Irma S. Rombauer, Marion Rombauer Becker, Ethan Becker\",1931.0,The Joy of Cooking,The Joy of Cooking,,4.14,102348,105920,1009,3036,4504,17338,31223,49819,https://images.gr-assets.com/books/1379313627l/327847.jpg,https://images.gr-assets.com/books/1379313627s/327847.jpg\n914,21611,21611,423,98,60510862,9780060510860.0,Joe Haldeman,1974.0,The Forever War,\"The Forever War (The Forever War, #1)\",eng,4.15,87636,101775,4340,919,3331,16929,39208,41388,https://images.gr-assets.com/books/1386852511l/21611.jpg,https://images.gr-assets.com/books/1386852511s/21611.jpg\n915,10585,10585,1590722,125,8497597729,9788497597720.0,\"Stephen King, Bettina Blanch Tyroller\",1994.0,Insomnia,Insomnia,spa,3.79,100972,109444,2296,3138,9066,28408,35608,33224,https://images.gr-assets.com/books/1354355494l/10585.jpg,https://images.gr-assets.com/books/1354355494s/10585.jpg\n916,7603,7603,903067,69,812971060,9780812971060.0,Azar Nafisi,2003.0,Reading Lolita in Tehran: A Memoir in Books,Reading Lolita in Tehran,eng,3.57,94696,98413,6576,4270,10670,28610,34061,20802,https://images.gr-assets.com/books/1397751318l/7603.jpg,https://images.gr-assets.com/books/1397751318s/7603.jpg\n917,944073,944073,929009,82,575079797,9780575079790.0,Joe Abercrombie,2006.0,The Blade Itself,\"The Blade Itself (The First Law, #1)\",eng,4.14,97501,107614,5521,1844,3944,15593,42598,43635,https://images.gr-assets.com/books/1284167912l/944073.jpg,https://images.gr-assets.com/books/1284167912s/944073.jpg\n918,114955,114955,508999,121,786851473,9780786851480.0,Eoin Colfer,2002.0,The Arctic Incident,\"The Arctic Incident (Artemis Fowl, #2)\",eng,3.94,108031,114867,2434,1594,5098,27655,44276,36244,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388294381l/114955.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n919,7354,7354,310090,95,743225422,9780743225430.0,Annie Proulx,1993.0,The Shipping News,The Shipping News,eng,3.83,103151,109047,4044,3321,8054,24808,40446,32418,https://images.gr-assets.com/books/1469036074l/7354.jpg,https://images.gr-assets.com/books/1469036074s/7354.jpg\n920,22318578,22318578,41711738,94,1607747308,9781607747310.0,\"Marie Kondō, Cathy Hirano\",2011.0,人生がときめく片づけの魔法,The Life-Changing Magic of Tidying Up: The Japanese Art of Decluttering and Organizing,eng,3.77,105063,129409,17320,3885,10846,32775,44967,36936,https://images.gr-assets.com/books/1418767178l/22318578.jpg,https://images.gr-assets.com/books/1418767178s/22318578.jpg\n921,18460392,18460392,26113532,74,385755880,9780385755890.0,\"Jennifer Niven, فرانک معنوی\",2015.0,All the Bright Places,All the Bright Places,eng,4.19,132087,146542,21192,2871,6238,21061,45697,70675,https://images.gr-assets.com/books/1404331702l/18460392.jpg,https://images.gr-assets.com/books/1404331702s/18460392.jpg\n922,231604,231604,866667,95,671011367,9780671011370.0,Kathy Reichs,1997.0,Déjà Dead,\"Déjà Dead (Temperance Brennan, #1)\",eng,3.86,100369,107636,3098,2579,6023,27054,40072,31908,https://images.gr-assets.com/books/1334157601l/231604.jpg,https://images.gr-assets.com/books/1334157601s/231604.jpg\n923,17402605,17402605,3354660,85,552562521,9780552562520.0,Michael Scott,2007.0,The Alchemyst: The Secrets of The Immortal Nicholas Flamel,\"The Alchemyst (The Secrets of the Immortal Nicholas Flamel, #1)\",eng,3.84,58396,115864,7165,3737,8839,27510,38469,37309,https://images.gr-assets.com/books/1361310229l/17402605.jpg,https://images.gr-assets.com/books/1361310229s/17402605.jpg\n924,10964693,10964693,15668403,78,374203059,9780374203050.0,Jeffrey Eugenides,2011.0,The Marriage Plot,The Marriage Plot,eng,3.42,90551,99271,10634,4472,12653,33397,33807,14942,https://images.gr-assets.com/books/1328736940l/10964693.jpg,https://images.gr-assets.com/books/1328736940s/10964693.jpg\n925,16527,16527,3471915,126,61120251,9780061120250.0,\"Isabel Allende, Margaret Sayers Peden\",1998.0,Hija de la fortuna,Daughter of Fortune,eng,3.89,89770,96939,3142,1238,4950,24400,39391,26960,https://images.gr-assets.com/books/1299666780l/16527.jpg,https://images.gr-assets.com/books/1299666780s/16527.jpg\n926,22609317,22609317,42099141,58,1476789630,9781476789640.0,Jessica Knoll,2015.0,Luckiest Girl Alive,Luckiest Girl Alive,eng,3.48,82504,98163,9278,3530,11319,33135,34874,15305,https://images.gr-assets.com/books/1425975301l/22609317.jpg,https://images.gr-assets.com/books/1425975301s/22609317.jpg\n927,270730,270730,262457,22,689865198,9780689865190.0,Ellen Hopkins,2004.0,\"Crank (Crank, #1)\",\"Crank (Crank, #1)\",eng,4.16,104168,105823,7239,2207,5055,16890,31143,50528,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192181l/270730.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n928,17675462,17675462,18970934,64,545424925,9780545424930.0,Maggie Stiefvater,2012.0,The Raven Boys,\"The Raven Boys (The Raven Cycle, #1)\",eng,4.05,121727,159696,20296,4299,7656,26761,57622,63358,https://images.gr-assets.com/books/1477103737l/17675462.jpg,https://images.gr-assets.com/books/1477103737s/17675462.jpg\n929,547094,547094,2223519,26,031286504X,9780312865050.0,Richard Matheson,1954.0,I Am Legend and Other Stories,I Am Legend and Other Stories,eng,3.99,98795,102941,4383,1451,5061,22371,38426,35632,https://images.gr-assets.com/books/1317791583l/547094.jpg,https://images.gr-assets.com/books/1317791583s/547094.jpg\n930,1736739,1736739,3263906,87,140006208X,9781400062090.0,Elizabeth Strout,2008.0,Olive Kitteridge,Olive Kitteridge,eng,3.78,85019,108518,14175,2907,8772,26625,41160,29054,https://images.gr-assets.com/books/1320430655l/1736739.jpg,https://images.gr-assets.com/books/1320430655s/1736739.jpg\n931,20588698,20588698,21933444,71,081299499X,9780812995000.0,\"Lena Dunham, Joana Avillez\",2014.0,Not that Kind of Girl,\"Not That Kind of Girl: A Young Woman Tells You What She's \"\"Learned\"\"\",eng,3.33,88251,97626,7732,6235,14712,32976,28187,15516,https://images.gr-assets.com/books/1402816003l/20588698.jpg,https://images.gr-assets.com/books/1402816003s/20588698.jpg\n932,76865,76865,1094028,63,66620996,9780066620990.0,James C. Collins,2001.0,Good to Great: Why Some Companies Make the Leap... and Others Don't,Good to Great: Why Some Companies Make the Leap... and Others Don't,eng,4.04,85277,88373,3100,1550,3682,16971,33234,32936,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546097703l/76865.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n933,6137154,6137154,6128277,70,803734611,9780803734620.0,Kristin Cashore,2009.0,Fire,\"Fire (Graceling Realm, #2)\",en-US,4.12,98180,133462,9159,2390,6020,22684,45051,57317,https://images.gr-assets.com/books/1331535456l/6137154.jpg,https://images.gr-assets.com/books/1331535456s/6137154.jpg\n934,17716,17716,2635502,187,,,Samuel Beckett,1952.0,En attendant Godot,Waiting for Godot,eng,3.81,98950,113243,3767,4684,9587,25125,36788,37059,https://images.gr-assets.com/books/1327910301l/17716.jpg,https://images.gr-assets.com/books/1327910301s/17716.jpg\n935,43035,43035,2949952,1085,439236193,9780439236200.0,Jack London,1906.0,White Fang,White Fang,eng,3.94,100223,114519,3017,1823,5850,27264,42175,37407,https://images.gr-assets.com/books/1475878443l/43035.jpg,https://images.gr-assets.com/books/1475878443s/43035.jpg\n936,4978,4978,2754911,105,141651693X,9781416516930.0,\"Stephen King, Bernie Wrightson\",2003.0,Wolves of the Calla,\"Wolves of the Calla (The Dark Tower, #5)\",eng,4.17,98182,109648,2874,1013,3733,17788,39889,47225,https://images.gr-assets.com/books/1419360231l/4978.jpg,https://images.gr-assets.com/books/1419360231s/4978.jpg\n937,18116,18116,1943518,81,440238609,9780440238610.0,Philip Pullman,2000.0,His Dark Materials,His Dark Materials (His Dark Materials #1-3),eng,4.25,88227,102040,4499,1672,3744,13475,31455,51694,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442329494l/18116._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n938,16081272,16081272,21880254,61,1480095532,9781480095530.0,J.A. Redmerski,2012.0,The Edge of Never,\"The Edge of Never (The Edge of Never, #1)\",en-US,4.26,117508,127686,10763,2681,4863,16493,35712,67937,https://images.gr-assets.com/books/1358810128l/16081272.jpg,https://images.gr-assets.com/books/1358810128s/16081272.jpg\n939,15776309,15776309,21488217,46,006222543X,9780062225440.0,Kimberly McCreight,2013.0,Reconstructing Amelia,Reconstructing Amelia,eng,3.82,86965,99269,10243,1616,5754,25360,42578,23961,https://images.gr-assets.com/books/1350193583l/15776309.jpg,https://images.gr-assets.com/books/1350193583s/15776309.jpg\n940,18693716,18693716,25570700,88,525426582,9780525426580.0,Jojo Moyes,2014.0,The One Plus One,One Plus One,eng,3.94,87412,105933,9884,1548,4059,23143,47569,29614,https://images.gr-assets.com/books/1403185695l/18693716.jpg,https://images.gr-assets.com/books/1403185695s/18693716.jpg\n941,11899,11899,2245431,138,312305060,9780312305060.0,Michael Cunningham,1998.0,The Hours,The Hours,en-US,3.91,97462,106608,4109,2540,6874,23497,38208,35489,https://images.gr-assets.com/books/1479663379l/11899.jpg,https://images.gr-assets.com/books/1479663379s/11899.jpg\n942,15858248,15858248,21607771,34,1623420024,9781623420020.0,Alice Clayton,2012.0,Wallbanger,\"Wallbanger (Cocktail, #1)\",eng,4.1,134805,145610,11854,3556,7236,23963,46970,63885,https://images.gr-assets.com/books/1352205960l/15858248.jpg,https://images.gr-assets.com/books/1352205960s/15858248.jpg\n943,4136,4136,674383,42,316191299,9780316191300.0,David Sedaris,1997.0,Holidays on Ice,Holidays on Ice,eng,3.95,82591,90898,4509,1685,5179,20216,32529,31289,https://images.gr-assets.com/books/1328330843l/4136.jpg,https://images.gr-assets.com/books/1328330843s/4136.jpg\n944,10584,10584,14015,132,451188462,9780451188460.0,Stephen King,1996.0,Desperation,Desperation,eng,3.8,94821,100128,1787,2284,8007,27093,32961,29783,https://images.gr-assets.com/books/1395764566l/10584.jpg,https://images.gr-assets.com/books/1395764566s/10584.jpg\n945,9369720,9369720,10958266,66,385739168,9780385739160.0,Lauren Kate,2011.0,Passion,\"Passion (Fallen, #3)\",eng,3.89,119735,125252,5464,3673,10214,28665,35799,46901,https://images.gr-assets.com/books/1362339802l/9369720.jpg,https://images.gr-assets.com/books/1362339802s/9369720.jpg\n946,13089710,13089710,18261314,66,385742886,9780385742890.0,James Dashner,2012.0,The Kill Order,\"The Kill Order (Maze Runner, #0.5)\",eng,3.69,96568,109441,8219,4497,11820,28996,31984,32144,https://images.gr-assets.com/books/1330636153l/13089710.jpg,https://images.gr-assets.com/books/1330636153s/13089710.jpg\n947,11500217,15863832,16435765,67,144477851X,9781444778520.0,Susan Ee,2011.0,Angelfall,\"Angelfall (Penryn & the End of Days, #1)\",en-US,4.19,73886,128028,13789,2909,5168,18366,40347,61238,https://images.gr-assets.com/books/1423238576l/11500217.jpg,https://images.gr-assets.com/books/1423238576s/11500217.jpg\n948,187020,187020,826474,49,375726403,9780375726410.0,Richard Russo,2001.0,Empire Falls,Empire Falls,eng,3.91,90811,93054,3722,1469,5164,21151,38013,27257,https://images.gr-assets.com/books/1403184884l/187020.jpg,https://images.gr-assets.com/books/1403184884s/187020.jpg\n949,13895,13895,588034,56,1857232097,9781857232100.0,Robert Jordan,1993.0,The Fires of Heaven,\"The Fires of Heaven (Wheel of Time, #5)\",en-US,4.13,93227,104317,1864,863,3367,18885,39542,41660,https://images.gr-assets.com/books/1327866286l/13895.jpg,https://images.gr-assets.com/books/1327866286s/13895.jpg\n950,20820994,20820994,11409817,71,803734964,9780803734970.0,Jandy Nelson,2014.0,I'll Give You the Sun,I'll Give You the Sun,eng,4.14,140937,153584,16701,7025,7517,20793,40241,78008,https://images.gr-assets.com/books/1496659336l/20820994.jpg,https://images.gr-assets.com/books/1496659336s/20820994.jpg\n951,22283,7076703,1602338,63,009928264X,9780099282650.0,Chuck Palahniuk,1999.0,Survivor,Survivor,en-US,3.93,49551,88231,3078,903,4759,20844,34767,26958,https://images.gr-assets.com/books/1327346693l/22283.jpg,https://images.gr-assets.com/books/1327346693s/22283.jpg\n952,9420,9420,3284660,80,385338708,9780385338710.0,Sophie Kinsella,2007.0,Shopaholic and Baby,\"Shopaholic & Baby (Shopaholic, #5)\",eng,3.77,98130,103621,2434,2341,7661,29880,34857,28882,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274774l/9420.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n953,5091,5091,6309701,105,1416524525,9781416524530.0,Stephen King,2004.0,The Dark Tower,\"The Dark Tower (The Dark Tower, #7)\",en-US,4.27,93296,104085,3945,1630,3759,13375,31203,54118,https://images.gr-assets.com/books/1372296329l/5091.jpg,https://images.gr-assets.com/books/1372296329s/5091.jpg\n954,6202690,6202690,6383190,14,316070521,9780316070520.0,Catherine Hardwicke,2009.0,Twilight Director's Notebook,Twilight Director's Notebook : The Story of How We Made the Movie Based on the Novel by Stephenie Meyer,en-US,4.2,88847,89383,417,3040,4242,14517,17460,50124,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438760194l/6202690._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n955,9418,9418,3238753,93,440241812,9780440241810.0,Sophie Kinsella,2001.0,Shopaholic Abroad,\"Shopaholic Takes Manhattan (Shopaholic, #2)\",en-US,3.75,93498,100718,2785,1635,7071,31036,35898,25078,https://images.gr-assets.com/books/1266449959l/9418.jpg,https://images.gr-assets.com/books/1266449959s/9418.jpg\n956,5544,5544,321174,97,393316041,9780393316050.0,Richard Feynman,1984.0,\"Surely You're Joking, Mr. Feynman! Adventures of a Curious Character\",\"Surely You're Joking, Mr. Feynman!: Adventures of a Curious Character\",en-US,4.29,91625,97719,3500,2080,2616,11036,30784,51203,https://images.gr-assets.com/books/1348445281l/5544.jpg,https://images.gr-assets.com/books/1348445281s/5544.jpg\n957,6654313,6654313,6848948,76,545123283,9780545123280.0,Maggie Stiefvater,2010.0,Linger,\"Linger (The Wolves of Mercy Falls, #2)\",en-US,3.91,125363,133284,8784,2594,8966,31455,44446,45823,https://images.gr-assets.com/books/1292482391l/6654313.jpg,https://images.gr-assets.com/books/1292482391s/6654313.jpg\n958,3579,3579,7365,40,553609416,76783609419.0,L.M. Montgomery,1908.0,The Complete Anne of Green Gables Boxed Set,\"The Complete Anne of Green Gables Boxed Set (Anne of Green Gables, #1-8)\",,4.42,92142,93067,1438,1395,1991,9286,23394,57001,https://images.gr-assets.com/books/1267721500l/3579.jpg,https://images.gr-assets.com/books/1267721500s/3579.jpg\n959,7588,7588,3298883,766,142437344,9780142437350.0,\"James Joyce, Seamus Deane\",1916.0,A Portrait of the Artist as a Young Man,A Portrait of the Artist as a Young Man,eng,3.6,92569,103232,3934,6367,11067,26108,33169,26521,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554800429l/7588.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n960,1166599,1166599,1920889,2,765302306,9780765302300.0,\"Robert Jordan, Brandon Sanderson\",2009.0,The Gathering Storm,\"The Gathering Storm (Wheel of Time, #12)\",eng,4.34,94095,100343,2582,1146,2178,10877,32914,53228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442815923l/1166599._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n961,19089,19089,1461747,665,451529170,9780451529180.0,\"George Eliot, Michel Faber\",1871.0,Middlemarch,Middlemarch,eng,3.93,95995,107160,5292,3674,7307,22093,33770,40316,https://images.gr-assets.com/books/1481264628l/19089.jpg,https://images.gr-assets.com/books/1481264628s/19089.jpg\n962,13496084,19390926,19038910,30,,,Colleen Hoover,2012.0,Point of Retreat,\"Point of Retreat (Slammed, #2)\",eng,4.3,109344,124145,8186,1204,3594,16043,39235,64069,https://images.gr-assets.com/books/1330543249l/13496084.jpg,https://images.gr-assets.com/books/1330543249s/13496084.jpg\n963,5350,5350,1110983,118,385339100,9780385339100.0,John Grisham,1997.0,The Partner,The Partner,,3.89,86870,91921,1896,746,4116,25227,36009,25823,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235158l/5350.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n964,30,30,89369,74,345538374,9780345538380.0,J.R.R. Tolkien,1973.0,The Hobbit and The Lord of the Rings,J.R.R. Tolkien 4-Book Boxed Set: The Hobbit and The Lord of the Rings,eng,4.59,90907,94348,1565,826,1281,5819,19982,66440,https://images.gr-assets.com/books/1346072396l/30.jpg,https://images.gr-assets.com/books/1346072396s/30.jpg\n965,13517535,13517535,14321512,38,146109111X,9781461091110.0,S.C. Stephens,2009.0,Thoughtless,\"Thoughtless (Thoughtless, #1)\",eng,4.12,90483,123867,8939,5238,6858,17472,32339,61960,https://images.gr-assets.com/books/1331254339l/13517535.jpg,https://images.gr-assets.com/books/1331254339s/13517535.jpg\n966,425029,425029,7732,110,446350982,9780446350980.0,Scott Turow,1986.0,Presumed Innocent,Presumed Innocent,,4.1,91774,93835,1114,679,2438,18147,38472,34099,https://images.gr-assets.com/books/1404412704l/425029.jpg,https://images.gr-assets.com/books/1404412704s/425029.jpg\n967,11597,11597,1316297,131,045052468X,9780450524680.0,Stephen King,1989.0,The Dark Half,The Dark Half,eng,3.74,94624,99918,1357,1592,7735,31007,34084,25500,https://images.gr-assets.com/books/1430122353l/11597.jpg,https://images.gr-assets.com/books/1430122353s/11597.jpg\n968,7968243,7968243,12020129,55,316001929,9780316001920.0,Stacy Schiff,2006.0,Cleopatra: A Life,Cleopatra: A Life,eng,3.62,73994,76685,4534,5022,7484,19656,23929,20594,https://images.gr-assets.com/books/1294098301l/7968243.jpg,https://images.gr-assets.com/books/1294098301s/7968243.jpg\n969,1911,1911,711993,83,374292795,9780374292800.0,Thomas L. Friedman,2005.0,The World Is Flat: A Brief History of the Twenty-first Century,The World Is Flat: A Brief History of the Twenty-first Century,en-US,3.66,78271,83905,3277,3342,7529,22896,30500,19638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442191453l/1911._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n970,17182126,17182126,21366540,64,385743564,9780385743560.0,Brandon Sanderson,2013.0,Steelheart,\"Steelheart (The Reckoners, #1)\",eng,4.16,76261,102116,10160,1300,3063,15596,40585,41572,https://images.gr-assets.com/books/1357576738l/17182126.jpg,https://images.gr-assets.com/books/1357576738s/17182126.jpg\n972,32829,32829,1924715,1363,553213970,9780553213970.0,Jules Verne,1864.0,Voyage au centre de la Terre,\"Journey to the Center of the Earth (Extraordinary Voyages, #3)\",eng,3.84,89410,111100,3483,1238,6342,31442,42106,29972,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389754903l/32829.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n973,6398634,6398634,6587328,73,61583251,9780061583250.0,Gretchen Rubin,2009.0,The Happiness Project,\"The Happiness Project: Or Why I Spent a Year Trying to Sing in the Morning, Clean My Closets, Fight Right, Read Aristotle, and Generally Have More Fun\",eng,3.57,94456,102878,10295,4381,11562,30145,34374,22416,https://images.gr-assets.com/books/1256849491l/6398634.jpg,https://images.gr-assets.com/books/1256849491s/6398634.jpg\n974,216363,216363,2398287,196,679740678,9780679740670.0,Philip K. Dick,1962.0,The Man in the High Castle,The Man in the High Castle,eng,3.66,84180,108388,7689,2723,10203,31793,40156,23513,https://images.gr-assets.com/books/1448756803l/216363.jpg,https://images.gr-assets.com/books/1448756803s/216363.jpg\n975,105992,105992,1077715,52,393322238,9780393322230.0,\"Vincent Bugliosi, Curt Gentry\",1974.0,Helter Skelter: The True Story of The Manson Murders,Helter Skelter: The True Story of the Manson Murders,en-GB,4.0,92158,94919,2510,1207,4141,21434,35026,33111,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347694754l/105992.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n978,11559200,11559200,16499524,64,670023485,9780670023490.0,Deborah Harkness,2012.0,Shadow of Night,\"Shadow of Night (All Souls Trilogy, #2)\",eng,4.04,97925,112860,11911,1531,5320,22037,41964,42008,https://images.gr-assets.com/books/1320604137l/11559200.jpg,https://images.gr-assets.com/books/1320604137s/11559200.jpg\n979,18816603,18816603,26757264,64,345544927,9780345544930.0,Jodi Picoult,2014.0,Leaving Time,Leaving Time,eng,3.94,76553,94584,11792,1874,5604,20043,36018,31045,https://images.gr-assets.com/books/1394487223l/18816603.jpg,https://images.gr-assets.com/books/1394487223s/18816603.jpg\n980,71811,71811,69530,48,441013813,9780441013810.0,Patricia Briggs,2006.0,Moon Called,\"Moon Called (Mercy Thompson, #1)\",eng,4.18,129150,136273,6493,2325,4716,20975,46351,61906,https://images.gr-assets.com/books/1272070347l/71811.jpg,https://images.gr-assets.com/books/1272070347s/71811.jpg\n981,872333,872333,857698,47,786838922,9780786838930.0,Melissa de la Cruz,2006.0,Blue Bloods,\"Blue Bloods (Blue Bloods, #1)\",en-US,3.68,116687,120989,4679,6024,12543,31927,34222,36273,https://images.gr-assets.com/books/1322281515l/872333.jpg,https://images.gr-assets.com/books/1322281515s/872333.jpg\n982,40024,40024,2266643,70,812976142,9780812976140.0,Caleb Carr,1994.0,The Alienist,\"The Alienist (Dr. Laszlo Kreizler, #1)\",eng,4.05,96981,100908,4026,1798,4571,18715,37572,38252,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256626l/40024.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n983,25489625,25489625,44848425,36,812993543,9780812993550.0,Ta-Nehisi Coates,2015.0,Between the World and Me,Between the World and Me,eng,4.4,74218,102946,13113,1438,2375,9177,30541,59415,https://images.gr-assets.com/books/1451435027l/25489625.jpg,https://images.gr-assets.com/books/1451435027s/25489625.jpg\n984,15997,15997,1031493,819,140424393,9780140424390.0,\"John Milton, John      Leonard\",1667.0,Paradise Lost,Paradise Lost,eng,3.8,96316,104580,2645,3956,9036,25069,32906,33613,https://images.gr-assets.com/books/1455618673l/15997.jpg,https://images.gr-assets.com/books/1455618673s/15997.jpg\n985,6463967,26889576,6654434,57,393072231,9780393072240.0,Michael   Lewis,2009.0,The Big Short: Inside the Doomsday Machine,The Big Short: Inside the Doomsday Machine,en-US,4.26,37090,98272,5659,972,2139,12082,38479,44600,https://images.gr-assets.com/books/1453470736l/6463967.jpg,https://images.gr-assets.com/books/1453470736s/6463967.jpg\n986,11564,11564,1836389,115,1416524290,9781416524300.0,Stephen King,1999.0,The Girl Who Loved Tom Gordon,The Girl Who Loved Tom Gordon,,3.56,95768,103156,3281,3658,12231,33253,30730,23284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1580235339l/11564._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n987,8621462,8621462,13492114,138,1406311529,9781406311520.0,\"Patrick Ness, Jim Kay, Siobhan Dowd\",2011.0, A Monster Calls ,A Monster Calls,eng,4.36,104579,132593,24522,1622,3307,14260,39473,73931,https://images.gr-assets.com/books/1485991317l/8621462.jpg,https://images.gr-assets.com/books/1485991317s/8621462.jpg\n988,8253920,8253920,7338128,39,765325942,9780765325940.0,\"Robert Jordan, Brandon Sanderson\",2010.0,Towers of Midnight,\"Towers of Midnight (Wheel of Time, #13)\",en-US,4.42,91383,98092,2356,877,1704,9062,30593,55856,https://images.gr-assets.com/books/1358109459l/8253920.jpg,https://images.gr-assets.com/books/1358109459s/8253920.jpg\n989,540020,540020,1792180,170,553266306,9780553266310.0,Frederick Forsyth,1971.0,The Day of the Jackal,The Day of the Jackal,eng,4.25,85883,89606,1439,514,1738,12890,34456,40008,https://images.gr-assets.com/books/1405364996l/540020.jpg,https://images.gr-assets.com/books/1405364996s/540020.jpg\n990,6732019,6732019,6928276,60,307463745,9780307463750.0,\"Jason Fried, David Heinemeier Hansson\",2010.0,Rework,Rework,eng,3.93,88626,92318,2938,3523,6109,18662,29118,34906,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275636l/6732019.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n991,8909152,8909152,13785503,44,525951989,9780525951990.0,Rainbow Rowell,2011.0,Attachments,Attachments,eng,3.95,105414,119865,16114,2354,5547,25617,48546,37801,https://images.gr-assets.com/books/1499377988l/8909152.jpg,https://images.gr-assets.com/books/1499377988s/8909152.jpg\n992,3090465,3090465,6440505,36,739352350,9780739352360.0,\"Stephenie Meyer, Ilyana Kadushin, Matt Walters\",2005.0,The Twilight Saga,\"The Twilight Saga (Twilight, #1-4)\",,3.88,89204,96811,3641,7478,7649,16077,23209,42398,https://images.gr-assets.com/books/1327930511l/3090465.jpg,https://images.gr-assets.com/books/1327930511s/3090465.jpg\n993,12875258,12875258,18028067,49,679644199,9780679644190.0,Carol Rifka Brunt,2012.0,Tell the Wolves I'm Home,Tell the Wolves I'm Home,eng,4.04,85582,96546,11579,1702,4342,17472,38357,34673,https://images.gr-assets.com/books/1335450415l/12875258.jpg,https://images.gr-assets.com/books/1335450415s/12875258.jpg\n994,32085,18929854,2247074,77,312965788,9780312965780.0,James Herriot,1972.0,All Creatures Great And Small,\"All Creatures Great and Small (All Creatures Great and Small, #1-2)\",eng,4.31,64779,98251,2770,693,1999,13232,32737,49590,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393644607l/32085.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n995,11408650,11408650,13460686,42,,,Michelle Hodkin,2011.0,The Unbecoming of Mara Dyer,\"The Unbecoming of Mara Dyer (Mara Dyer, #1)\",eng,4.09,83847,128632,14154,3673,7214,20598,39430,57717,https://images.gr-assets.com/books/1336655755l/11408650.jpg,https://images.gr-assets.com/books/1336655755s/11408650.jpg\n996,6854,6854,1341652,67,312966091,9780312966100.0,Janet Evanovich,1997.0,Three to Get Deadly,\"Three to Get Deadly (Stephanie Plum, #3)\",en-US,4.14,113400,118305,2912,332,2257,23249,47014,45453,https://images.gr-assets.com/books/1311727539l/6854.jpg,https://images.gr-assets.com/books/1311727539s/6854.jpg\n997,136116,136116,750426,427,1576469239,9781576469230.0,Emmuska Orczy,1905.0,The Scarlet Pimpernel,The Scarlet Pimpernel,eng,4.06,93217,104012,5087,1465,4492,20565,37114,40376,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406764899l/136116.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n998,44186,44186,640276,23,037582913X,9780375829130.0,\"Jon Stone, Michael J. Smollin\",1971.0,The Monster at the End of This Book,The Monster at the End of this Book,eng,4.45,102184,104970,2504,1911,2537,10567,21477,68478,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193494l/44186.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n999,37741,37741,879886,66,425193799,9780425193790.0,Judy Blume,1972.0,Tales of a Fourth Grade Nothing,\"Tales of a Fourth Grade Nothing (Fudge, #1)\",eng,4.09,106435,111139,2081,1954,4102,21881,37208,45994,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390836483l/37741.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1000,10194157,10194157,15093325,66,805094598,9780805094600.0,Leigh Bardugo,2012.0,Shadow and Bone,\"Shadow and Bone (Shadow and Bone, #1)\",eng,4.05,135225,149447,17829,2619,6318,27165,57759,55586,https://images.gr-assets.com/books/1339533695l/10194157.jpg,https://images.gr-assets.com/books/1339533695s/10194157.jpg\n1001,15797938,15797938,6463092,114,770437850,9780770437860.0,\"Herman Koch, Sam Garrett\",2009.0,Het diner,The Dinner,eng,3.22,74979,99070,14162,5722,16486,37029,30375,9458,https://images.gr-assets.com/books/1355949630l/15797938.jpg,https://images.gr-assets.com/books/1355949630s/15797938.jpg\n1002,14290364,14290364,19931517,57,399256776,9780399256780.0,Marie Lu,2013.0,Champion,\"Champion (Legend, #3)\",eng,4.37,114623,123289,12759,1056,2778,13981,37322,68152,https://images.gr-assets.com/books/1382652310l/14290364.jpg,https://images.gr-assets.com/books/1382652310s/14290364.jpg\n1003,61666,61666,2416056,90,2266079999,9782266079990.0,Carl Sagan,1985.0,Contact,Contact,eng,4.11,90917,96012,2126,884,3383,18025,36041,37679,https://images.gr-assets.com/books/1408792653l/61666.jpg,https://images.gr-assets.com/books/1408792653s/61666.jpg\n1004,9961796,9961796,7149084,22,525423281,9780525423290.0,Stephanie Perkins,2011.0,Lola and the Boy Next Door,\"Lola and the Boy Next Door (Anna and the French Kiss, #2)\",en-US,4.0,108370,123929,13224,2731,6370,24753,44016,46059,https://images.gr-assets.com/books/1358271832l/9961796.jpg,https://images.gr-assets.com/books/1358271832s/9961796.jpg\n1005,3711,3711,7480,115,375703861,9780375703870.0,Zadie Smith,1999.0,White Teeth,White Teeth,en-US,3.75,82474,90629,5347,2679,7363,23002,34725,22860,https://images.gr-assets.com/books/1374739885l/3711.jpg,https://images.gr-assets.com/books/1374739885s/3711.jpg\n1006,11887020,11887020,16845778,86,62107062,9780062107060.0,\"Chris Kyle, Scott McEwen, Jim DeFelice\",2012.0,American Sniper: The Autobiography of the Most Lethal Sniper in U.S. Military History,American Sniper: The Autobiography of the Most Lethal Sniper in U.S. Military History,eng,3.97,61422,82161,6851,2473,5241,16428,26296,31723,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348628279l/11887020.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1007,35982,35982,979256,33,1582346186,9781582346180.0,Chelsea Handler,2004.0,My Horizontal Life: A Collection of One-Night Stands,My Horizontal Life: A Collection of One-Night Stands,en-GB,3.79,83607,89257,6051,2659,7349,22943,29859,26447,https://images.gr-assets.com/books/1388631721l/35982.jpg,https://images.gr-assets.com/books/1388631721s/35982.jpg\n1008,8659601,8659601,13530989,71,61974552,9780061974560.0,Pittacus Lore,2011.0,The Power of Six,\"The Power of Six (Lorien Legacies, #2)\",eng,4.17,97938,105723,5790,941,3336,17700,38652,45094,https://images.gr-assets.com/books/1345067406l/8659601.jpg,https://images.gr-assets.com/books/1345067406s/8659601.jpg\n1009,15815333,15815333,21541829,34,1594488398,9781594488400.0,Meg Wolitzer,2013.0,The Interestings,The Interestings,eng,3.54,76566,84976,9534,3532,9398,25476,31182,15388,https://images.gr-assets.com/books/1451446889l/15815333.jpg,https://images.gr-assets.com/books/1451446889s/15815333.jpg\n1010,43070,43070,2244438,26,836218051,9780836218050.0,Bill Watterson,1988.0,The Essential Calvin and Hobbes: A Calvin and Hobbes Treasury,The Essential Calvin and Hobbes: A Calvin and Hobbes Treasury,en-US,4.65,93001,95543,598,717,895,5387,17566,70978,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422379908l/43070.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1011,1379961,1379961,3020568,76,067001821X,,Geraldine Brooks,2008.0,People of the Book,People of the Book,eng,4.0,95796,101619,9936,1408,4831,20633,39762,34985,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442955497l/1379961._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1012,13508607,13508607,19060869,89,1439152802,9781439152800.0,Kate Morton,2012.0,The Secret Keeper,The Secret Keeper,,4.13,89460,100731,11877,1067,3020,16399,41956,38289,https://images.gr-assets.com/books/1455089196l/13508607.jpg,https://images.gr-assets.com/books/1455089196s/13508607.jpg\n1013,411053,411053,556134,88,696215322,9780696215320.0,Better Homes and Gardens,1953.0,Better Homes & Gardens New Cook Book,Better Homes and Gardens New Cook Book  ,,4.14,93640,95085,485,2152,3843,16571,28351,44168,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174513619l/411053._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1014,8698,6091075,3078120,119,330491237,9780330491240.0,Douglas Adams,1984.0,\"So Long, and Thanks for All the Fish\",\"So Long, and Thanks for All the Fish (Hitchhiker's Guide to the Galaxy, #4)\",eng,4.08,93774,109535,2020,624,4454,22611,39988,41858,https://images.gr-assets.com/books/1369563116l/8698.jpg,https://images.gr-assets.com/books/1369563116s/8698.jpg\n1015,16631,16631,57612,359,140282580,9780140282580.0,\"Hermann Hesse, Basil Creighton\",1927.0,Der Steppenwolf: Erzählung,Steppenwolf,eng,4.11,80769,97230,2993,1387,4435,17024,33570,40814,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389332672l/16631.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1016,32263,32263,2674805,107,055381706X,9780553817060.0,Tess Gerritsen,2001.0,The Surgeon,\"The Surgeon (Rizzoli & Isles, #1)\",en-GB,4.1,89468,98297,3212,1422,3299,18191,36538,38847,https://images.gr-assets.com/books/1277923728l/32263.jpg,https://images.gr-assets.com/books/1277923728s/32263.jpg\n1017,17572903,17572903,19249629,71,670026611,9780670026620.0,Jojo Moyes,2012.0,The Girl You Left Behind,The Girl You Left Behind,eng,3.95,80991,98231,7820,3606,4459,18512,38681,32973,https://images.gr-assets.com/books/1366558957l/17572903.jpg,https://images.gr-assets.com/books/1366558957s/17572903.jpg\n1018,68487,25300956,4668002,94,6480101,9780006480100.0,Robin Hobb,1996.0,Royal Assassin,\"Royal Assassin (Farseer Trilogy, #2)\",eng,4.21,82608,102563,2699,862,2945,15073,38597,45086,https://images.gr-assets.com/books/1387145228l/68487.jpg,https://images.gr-assets.com/books/1387145228s/68487.jpg\n1019,414999,414999,209414,172,345347951,9780345347950.0,Arthur C. Clarke,1953.0,Childhood's End,Childhood's End,en-US,4.09,87141,96751,3759,943,3578,18261,36854,37115,https://images.gr-assets.com/books/1320552628l/414999.jpg,https://images.gr-assets.com/books/1320552628s/414999.jpg\n1020,37190,37190,1508178,91,763625299,9780763625290.0,\"Kate DiCamillo, Timothy Basil Ering\",2004.0, The Tale of Despereaux,The Tale of Despereaux,en-US,4.0,113066,120423,8372,1930,6437,25821,41605,44630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412211823l/37190.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1021,25460,25460,1582285,37,60852550,9780060852560.0,\"Barbara Kingsolver, Steven L. Hopp, Camille Kingsolver, Richard A. Houser\",2007.0,\"Animal, Vegetable, Miracle: A Year of Food Life\",\"Animal, Vegetable, Miracle: A Year of Food Life\",en-US,4.03,83881,87904,10149,1709,4789,16112,31521,33773,https://images.gr-assets.com/books/1480104279l/25460.jpg,https://images.gr-assets.com/books/1480104279s/25460.jpg\n1022,20613470,20613470,25128502,46,1619630656,9781619630660.0,Sarah J. Maas,2014.0,Heir of Fire,\"Heir of Fire (Throne of Glass, #3)\",eng,4.53,123843,142858,16235,694,1923,10589,36979,92673,https://images.gr-assets.com/books/1460846511l/20613470.jpg,https://images.gr-assets.com/books/1460846511s/20613470.jpg\n1024,6218281,6218281,4543476,85,385342306,9780385342310.0,Alan Bradley,2009.0,The Sweetness at the Bottom of the Pie,\"The Sweetness at the Bottom of the Pie (Flavia de Luce, #1)\",eng,3.81,99841,109533,13444,2908,7650,26956,42394,29625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187001l/6218281.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1025,7214,7214,10352,38,785263705,9780785263710.0,Donald Miller,2003.0,Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality,Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality,en-US,3.92,82090,83060,3546,2857,5382,16699,28410,29712,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1531261584l/7214._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1026,10965,10965,1750497,59,385340397,9780385340400.0,Diana Gabaldon,2005.0,A Breath of Snow and Ashes,\"A Breath of Snow and Ashes (Outlander, #6)\",eng,4.43,87098,102765,4053,439,1712,10717,30762,59135,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197203l/10965.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1027,18705209,18705209,17115101,64,1484724917,9781423146740.0,Rick Riordan,2014.0,The Blood of Olympus,\"The Blood of Olympus (The Heroes of Olympus, #5)\",eng,4.41,110719,125962,12234,822,2457,13295,36585,72803,https://images.gr-assets.com/books/1464201441l/18705209.jpg,https://images.gr-assets.com/books/1464201441s/18705209.jpg\n1028,26247008,26247008,49997474,45,1250069793,9781250069800.0,Liane Moriarty,2016.0,Truly Madly Guilty,Truly Madly Guilty,eng,3.55,90477,116339,11983,2752,10961,41045,42953,18628,https://images.gr-assets.com/books/1491249206l/26247008.jpg,https://images.gr-assets.com/books/1491249206s/26247008.jpg\n1029,15704307,15704307,19113524,28,1607066017,9781607066020.0,\"Brian K. Vaughan, Fiona Staples\",2012.0,\"Saga, Volume One\",\"Saga, Vol. 1 (Saga, #1)\",eng,4.25,131906,134562,8697,5192,4790,14126,37110,73344,https://images.gr-assets.com/books/1486028947l/15704307.jpg,https://images.gr-assets.com/books/1486028947s/15704307.jpg\n1030,10996342,10996342,15915002,55,316126691,9780316126690.0,Chad Harbach,2011.0,The Art of Fielding,The Art of Fielding,eng,3.99,81712,89228,9610,1595,4131,16772,38073,28657,https://images.gr-assets.com/books/1327882787l/10996342.jpg,https://images.gr-assets.com/books/1327882787s/10996342.jpg\n1031,4631,4631,2459084,208,99285045,9780099285040.0,Ernest Hemingway,1964.0,A Moveable Feast,A Moveable Feast,eng,4.04,69992,90690,6350,1317,4027,17732,34395,33219,https://images.gr-assets.com/books/1427463201l/4631.jpg,https://images.gr-assets.com/books/1427463201s/4631.jpg\n1032,44652,44652,2129546,51,1590385810,9781590385810.0,Brandon Mull,2006.0,Fablehaven,\"Fablehaven (Fablehaven, #1)\",eng,4.08,99390,104185,8486,2189,5069,19001,34070,43856,https://images.gr-assets.com/books/1460309528l/44652.jpg,https://images.gr-assets.com/books/1460309528s/44652.jpg\n1033,438492,438492,1168377,87,64407683,9780064407690.0,\"Lemony Snicket, Brett Helquist\",2000.0,The Wide Window,\"The Wide Window (A Series of Unfortunate Events, #3)\",eng,3.91,118624,124211,3625,1276,6205,33273,45136,38321,https://images.gr-assets.com/books/1320705923l/438492.jpg,https://images.gr-assets.com/books/1320705923s/438492.jpg\n1034,91476,91476,803205,59,451458443,9780451458440.0,Jim Butcher,2001.0,Grave Peril,\"Grave Peril (The Dresden Files, #3)\",eng,4.18,97736,106419,3975,293,2027,17955,44149,41995,https://images.gr-assets.com/books/1266470209l/91476.jpg,https://images.gr-assets.com/books/1266470209s/91476.jpg\n1035,10884,10884,985244,78,743264738,9780743264730.0,Walter Isaacson,2007.0,Einstein. His Life and Universe,Einstein: His Life and Universe,eng,4.08,71156,73821,2489,2135,2854,12228,26308,30296,https://images.gr-assets.com/books/1328011405l/10884.jpg,https://images.gr-assets.com/books/1328011405s/10884.jpg\n1036,15842441,15842441,16657003,37,1476717486,9781476717490.0,S.C. Stephens,2011.0,Effortless,\"Effortless (Thoughtless, #2)\",eng,4.37,83085,106314,4350,1581,3034,11691,28189,61819,https://images.gr-assets.com/books/1364805648l/15842441.jpg,https://images.gr-assets.com/books/1364805648s/15842441.jpg\n1037,5351,5351,1040524,119,385339097,9780385339090.0,John Grisham,1998.0,The Street Lawyer,The Street Lawyer,eng,3.81,80577,86456,1912,1041,5173,25497,32176,22569,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924300l/5351.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1038,310459,310459,1165554,78,014034893X,9780140348930.0,Mildred D. Taylor,1976.0,\"Roll of Thunder, Hear My Cry\",\"Roll of Thunder, Hear My Cry (Logans, #4)\",eng,3.79,92980,96821,3811,3319,8006,24135,31712,29649,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345167l/310459.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1039,5899779,5899779,6072122,92,1594743347,9781594743340.0,\"Seth Grahame-Smith, Jane Austen\",2009.0,Pride and Prejudice and Zombies,\"Pride and Prejudice and Zombies (Pride and Prejudice and Zombies, #1)\",eng,3.28,103995,110252,12184,10085,17255,33627,29961,19324,https://images.gr-assets.com/books/1320449653l/5899779.jpg,https://images.gr-assets.com/books/1320449653s/5899779.jpg\n1040,15790837,15790837,21512389,32,316154695,9780316154700.0,David Sedaris,2013.0,Lets Explore Diabetes with Owls,Let's Explore Diabetes with Owls,eng,3.8,81616,90335,7959,1942,5571,23634,36656,22532,https://images.gr-assets.com/books/1359704028l/15790837.jpg,https://images.gr-assets.com/books/1359704028s/15790837.jpg\n1041,12505,12505,6552198,831,679642420,9780679642430.0,\"Fyodor Dostoyevsky, Constance Garnett, Alan Myers, Joseph Frank, Anna Brailovsky\",1868.0,Идиот,The Idiot,eng,4.18,74642,91393,3312,975,3551,14386,31702,40779,https://images.gr-assets.com/books/1327865902l/12505.jpg,https://images.gr-assets.com/books/1327865902s/12505.jpg\n1042,365,365,1042123,83,671746723,9780671746730.0,Douglas Adams,1987.0,Dirk Gently's Holistic Detective Agency,Dirk Gently's Holistic Detective Agency (Dirk Gently #1),en-US,3.97,89569,96230,2408,993,4735,22168,36270,32064,https://images.gr-assets.com/books/1404697381l/365.jpg,https://images.gr-assets.com/books/1404697381s/365.jpg\n1043,1809465,1809465,3025815,96,810994739,9780810994740.0,Jeff Kinney,2008.0,Rodrick Rules,\"Rodrick Rules (Diary of a Wimpy Kid, #2)\",en-US,4.1,91831,98543,5808,1976,5231,18709,27995,44632,https://images.gr-assets.com/books/1360095964l/1809465.jpg,https://images.gr-assets.com/books/1360095964s/1809465.jpg\n1044,22716447,30268522,41897766,18,804138141,9780804138150.0,Mindy Kaling,2015.0,Why Not Me?,Why Not Me?,eng,3.89,74199,106929,7736,2037,5274,25842,42829,30947,https://images.gr-assets.com/books/1442548684l/22716447.jpg,https://images.gr-assets.com/books/1442548684s/22716447.jpg\n1045,18126198,18126198,25457412,83,62285688,9780062285680.0,Veronica Roth,2014.0,Four: A Divergent Collection,\"Four: A Divergent Story Collection (Divergent, #0.1 - 0.4)\",eng,4.1,97058,116243,9213,1199,4985,22456,40265,47338,https://images.gr-assets.com/books/1393687572l/18126198.jpg,https://images.gr-assets.com/books/1393687572s/18126198.jpg\n1046,23453112,23453112,43014915,39,1594206279,9781594206280.0,\"Aziz Ansari, Eric Klinenberg\",2015.0,Modern Romance,Modern Romance,eng,3.85,94231,105957,10334,1640,4958,26742,46453,26164,https://images.gr-assets.com/books/1432335014l/23453112.jpg,https://images.gr-assets.com/books/1432335014s/23453112.jpg\n1047,11594337,11594337,16536239,49,61992259,9780061992250.0,\"Katherine Applegate, Patricia Castelao\",2012.0,The One and Only Ivan,The One and Only Ivan,eng,4.24,85136,89381,9991,2724,3215,10999,25821,46622,https://images.gr-assets.com/books/1424981397l/11594337.jpg,https://images.gr-assets.com/books/1424981397s/11594337.jpg\n1048,108229,6545608,1887699,62,393050327,9780393050320.0,Sebastian Junger,1997.0,The Perfect Storm: A True Story of Men Against the Sea,The Perfect Storm: A True Story of Men Against the Sea,en-US,4.07,45382,86954,1416,901,2793,16760,35370,31130,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387738340l/108229.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1049,68427,68427,2908871,60,765350378,9780765350370.0,Brandon Sanderson,2005.0,Elantris,\"Elantris (Elantris, #1)\",eng,4.17,95950,105780,6438,1311,2974,16025,41443,44027,https://images.gr-assets.com/books/1475740953l/68427.jpg,https://images.gr-assets.com/books/1475740953s/68427.jpg\n1050,2118745,2118745,2124180,83,1406310255,9781406310250.0,Patrick Ness,2008.0,The Knife of Never Letting Go,\"The Knife of Never Letting Go (Chaos Walking, #1)\",eng,3.96,99638,112899,12462,4617,7140,20162,37282,43698,https://images.gr-assets.com/books/1277071696l/2118745.jpg,https://images.gr-assets.com/books/1277071696s/2118745.jpg\n1051,33512,33512,527677,35,312199430,9780312199430.0,Jim Fergus,1998.0,One Thousand White Women: The Journals of May Dodd,One Thousand White Women: The Journals of May Dodd (One Thousand White Women#1),eng,3.88,84367,89675,7065,2618,6244,19620,32330,28863,https://images.gr-assets.com/books/1389821957l/33512.jpg,https://images.gr-assets.com/books/1389821957s/33512.jpg\n1052,3720975,3720975,3764682,59,743296419,9780743296410.0,Jodi Picoult,2009.0,Handle with Care,Handle with Care,eng,3.96,90138,95952,7443,1471,5253,21030,36173,32025,https://images.gr-assets.com/books/1316440644l/3720975.jpg,https://images.gr-assets.com/books/1316440644s/3720975.jpg\n1053,5093,5093,1178083,12,1416521496,9781416521500.0,\"Stephen King, Darrel Anderson\",2004.0,Song of Susannah,\"Song of Susannah (The Dark Tower, #6)\",eng,3.98,84957,95650,2508,1267,5052,21315,34246,33770,https://images.gr-assets.com/books/1372296326l/5093.jpg,https://images.gr-assets.com/books/1372296326s/5093.jpg\n1054,13125947,13125947,14449480,51,525423664,9780525423670.0,Ally Condie,2012.0,Reached,\"Reached (Matched, #3)\",,3.56,109290,117859,10280,4478,13979,36753,36346,26303,https://images.gr-assets.com/books/1330717582l/13125947.jpg,https://images.gr-assets.com/books/1330717582s/13125947.jpg\n1055,14836,14836,1024288,152,99578514,9780099578510.0,Salman Rushdie,1981.0,Midnight's Children,Midnight's Children,eng,3.99,75502,84514,4917,2533,5417,15365,28241,32958,https://images.gr-assets.com/books/1371063511l/14836.jpg,https://images.gr-assets.com/books/1371063511s/14836.jpg\n1056,535441,535441,818,49,1400049628,9781400049620.0,Max Brooks,2004.0,The Zombie Survival Guide: Complete Protection from the Living Dead,The Zombie Survival Guide: Complete Protection from the Living Dead,eng,3.86,82535,86837,3545,1709,6009,22592,28960,27567,https://images.gr-assets.com/books/1320562270l/535441.jpg,https://images.gr-assets.com/books/1320562270s/535441.jpg\n1057,5348,5348,2777175,114,440234743,9780440234750.0,John Grisham,1999.0,The Testament,The Testament,,3.83,80377,86213,2264,1012,5098,24899,31881,23323,https://images.gr-assets.com/books/1403174228l/5348.jpg,https://images.gr-assets.com/books/1403174228s/5348.jpg\n1058,16331,16331,2589654,216,1579126251,9781579126250.0,Agatha Christie,1930.0,Murder at the Vicarage,\"Murder at the Vicarage (Miss Marple, #1)\",eng,4.03,93963,100137,2199,1170,3228,22393,37786,35560,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388386575l/16331.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1059,227651,227651,1210896,29,1416924981,9781416924980.0,Margaret Peterson Haddix,1998.0,Among the Hidden ,\"Among the Hidden (Shadow Children, #1)\",eng,3.97,94478,96951,5148,1658,5363,21990,33488,34452,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388382796l/227651.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1060,315425,315425,3100234,44,1594201455,9781594201460.0,Michael Pollan,2007.0,In Defense of Food: An Eater's Manifesto,In Defense of Food: An Eater's Manifesto,en-US,4.07,80434,85793,7003,707,2771,16427,35960,29928,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442538739l/315425._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1061,703292,703292,2904401,60,440995779,9780440995780.0,Elizabeth George Speare,1958.0,The Witch of Blackbird Pond,The Witch of Blackbird Pond,en-US,3.97,105770,112667,4782,2078,5765,25034,40412,39378,https://images.gr-assets.com/books/1345499790l/703292.jpg,https://images.gr-assets.com/books/1345499790s/703292.jpg\n1062,22918050,22918050,42484814,63,,,Kiera Cass,2015.0,The Heir,\"The Heir (The Selection, #4)\",eng,3.85,111044,126852,14043,2882,8973,32084,43021,39892,https://images.gr-assets.com/books/1422993526l/22918050.jpg,https://images.gr-assets.com/books/1422993526s/22918050.jpg\n1063,9419,9419,2992357,84,440241898,9780440241900.0,Sophie Kinsella,2002.0,Shopaholic Ties the Knot,\"Shopaholic Ties the Knot (Shopaholic, #3)\",eng,3.77,88139,93578,2306,1441,6585,28580,32779,24193,https://images.gr-assets.com/books/1371383294l/9419.jpg,https://images.gr-assets.com/books/1371383294s/9419.jpg\n1064,5890,5890,1303710,721,141439610,9780141439620.0,\"Wilkie Collins, Matthew Sweet\",1859.0,The Woman in White,The Woman in White,eng,3.98,93134,103301,5668,1971,5120,21879,38080,36251,https://images.gr-assets.com/books/1295661017l/5890.jpg,https://images.gr-assets.com/books/1295661017s/5890.jpg\n1065,25735012,25735012,43699375,83,316349933,9780316349930.0,\"Robert Galbraith, J.K. Rowling\",2015.0,Career of Evil,\"Career of Evil (Cormoran Strike, #3)\",eng,4.21,66979,95274,10254,550,1926,12591,42325,37882,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1066,5821978,5821978,5994018,50,1416968237,9781416968240.0,Jenny Han,2009.0,The Summer I Turned Pretty,\"The Summer I Turned Pretty (Summer, #1)\",en-US,3.96,104730,110967,8448,2951,7571,23699,33795,42951,https://images.gr-assets.com/books/1361666855l/5821978.jpg,https://images.gr-assets.com/books/1361666855s/5821978.jpg\n1067,6422,6422,2322486,59,312966970,9780312966970.0,Janet Evanovich,1998.0,Four to Score ,\"Four to Score (Stephanie Plum, #4)\",en-US,4.17,106871,111633,2527,286,1886,20825,44410,44226,https://images.gr-assets.com/books/1311983211l/6422.jpg,https://images.gr-assets.com/books/1311983211s/6422.jpg\n1068,29209,29209,29679,62,1573225789,9781573225790.0,James McBride,1996.0,The Color of Water: A Black Man's Tribute to His White Mother,The Color of Water: A Black Man's Tribute to His White Mother,en-US,4.06,80906,83888,4174,1206,3218,15996,32338,31130,https://images.gr-assets.com/books/1401311300l/29209.jpg,https://images.gr-assets.com/books/1401311300s/29209.jpg\n1069,6402364,6402364,6591160,77,60889578,9780060889580.0,\"Steven D. Levitt, Stephen J. Dubner\",2009.0,\"SuperFreakonomics: Global Cooling, Patriotic Prostitutes, and Why Suicide Bombers Should Buy Life Insurance\",\"SuperFreakonomics: Global Cooling, Patriotic Prostitutes And Why Suicide Bombers Should Buy Life Insurance\",en-US,3.95,85006,94086,3949,1272,4403,21584,36889,29938,https://images.gr-assets.com/books/1308117804l/6402364.jpg,https://images.gr-assets.com/books/1308117804s/6402364.jpg\n1070,112750,112750,108558,58,385339151,9780385339160.0,Karen Marie Moning,2006.0,Darkfever,\"Darkfever (Fever, #1)\",eng,4.14,110812,123927,8554,2809,5659,20357,37943,57159,https://images.gr-assets.com/books/1392579949l/112750.jpg,https://images.gr-assets.com/books/1392579949s/112750.jpg\n1071,234184,234184,3107985,65,312857063,9780312857070.0,Terry Goodkind,1995.0,Stone of Tears,\"Stone of Tears (Sword of Truth, #2)\",en-US,4.1,83235,89987,1519,1554,3768,15302,32466,36897,https://images.gr-assets.com/books/1478930875l/234184.jpg,https://images.gr-assets.com/books/1478930875s/234184.jpg\n1072,7114761,7114761,10424899,48,312554168,9780312554160.0,Emily Giffin,2010.0,Heart of the Matter,Heart of the Matter,en-US,3.73,83461,87618,4176,2202,7065,25223,30791,22337,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441249140l/7114761._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1073,5797,5797,1057468,650,141439831,9780141439840.0,\"William Makepeace Thackeray, John Carey\",1847.0,Vanity Fair: A Novel Without a Hero,Vanity Fair,eng,3.76,91323,97978,2598,3050,8007,25897,33250,27774,https://images.gr-assets.com/books/1344386439l/5797.jpg,https://images.gr-assets.com/books/1344386439s/5797.jpg\n1074,4982,4982,905970,102,1857988841,9781857988840.0,Kurt Vonnegut Jr.,1959.0,The Sirens of Titan,The Sirens of Titan,en-GB,4.16,72493,83867,3241,552,2636,14460,31577,34642,https://images.gr-assets.com/books/1419363185l/4982.jpg,https://images.gr-assets.com/books/1419363185s/4982.jpg\n1075,10625,7278752,6560478,146,2266047426,9782266047420.0,\"Stephen King, Dominique Dill\",1992.0,Dolores Claiborne,Dolores Claiborne,fre,3.81,71053,98959,1718,1623,7586,27461,33524,28765,https://images.gr-assets.com/books/1394213480l/10625.jpg,https://images.gr-assets.com/books/1394213480s/10625.jpg\n1076,25781157,25781157,45630747,46,62414216,9780062414210.0,Cynthia D'Aprix Sweeney,2016.0,The Nest,The Nest,eng,3.45,79762,96364,10214,2615,9810,36492,36673,10774,https://images.gr-assets.com/books/1461354827l/25781157.jpg,https://images.gr-assets.com/books/1461354827s/25781157.jpg\n1077,21326,21326,1138855,28,1563899426,9781563899420.0,\"Bill Willingham, Lan Medina, Steve Leialoha, Craig Hamilton, James Jean\",2001.0,\"Fables, Volume 1: Legends in Exile\",\"Fables, Vol. 1: Legends in Exile\",eng,3.99,101016,104260,2845,4441,5620,18578,33351,42270,https://images.gr-assets.com/books/1375392441l/21326.jpg,https://images.gr-assets.com/books/1375392441s/21326.jpg\n1078,1633,1633,5759,115,142000280,9780142000280.0,David    Allen,2001.0,Getting Things Done: How To Achieve Stress-free Productivity,Getting Things Done: The Art of Stress-Free Productivity,en-GB,3.98,75665,82166,3586,2135,4336,16752,28650,30293,https://images.gr-assets.com/books/1312474060l/1633.jpg,https://images.gr-assets.com/books/1312474060s/1633.jpg\n1079,13103,13103,2603195,134,446671002,9780446671000.0,James Redfield,1993.0,The Celestine Prophecy,\"The Celestine Prophecy (Celestine Prophecy, #1)\",en-US,3.6,72675,77657,3229,6094,8677,18351,21637,22898,https://images.gr-assets.com/books/1341360412l/13103.jpg,https://images.gr-assets.com/books/1341360412s/13103.jpg\n1080,12294652,12294652,17271423,33,803736991,9780803736990.0,Huntley Fitzpatrick,2012.0,My Life Next Door ,My Life Next Door,eng,4.02,102012,108389,8327,2477,5584,21074,37209,42045,https://images.gr-assets.com/books/1394240144l/12294652.jpg,https://images.gr-assets.com/books/1394240144s/12294652.jpg\n1081,12959233,12959233,18116611,2,525952926,9780525952920.0,Ken Follett,2012.0,Winter of the World,Winter of the World (The Century Trilogy #2),eng,4.29,71971,88328,6821,467,1752,10821,33796,41492,https://images.gr-assets.com/books/1369453743l/12959233.jpg,https://images.gr-assets.com/books/1369453743s/12959233.jpg\n1082,19288239,19288239,24593525,123,385352107,9780385352110.0,\"Haruki Murakami, Philip Gabriel\",2013.0,\"色彩を持たない多崎つくると、彼の巡礼の年 [Shikisai o motanai Tazaki Tsukuru to, kare no junrei no toshi]\",Colorless Tsukuru Tazaki and His Years of Pilgrimage,eng,3.82,67873,86134,8264,1343,5021,22170,37193,20407,https://images.gr-assets.com/books/1409000450l/19288239.jpg,https://images.gr-assets.com/books/1409000450s/19288239.jpg\n1083,82970,82970,1822441,46,033041836X,9780330418360.0,Alice Sebold,1999.0,Lucky,Lucky,eng,3.77,77462,82636,3856,1583,5781,23290,31476,20506,https://images.gr-assets.com/books/1327190847l/82970.jpg,https://images.gr-assets.com/books/1327190847s/82970.jpg\n1084,59716,59716,1323448,465,140679239X,9781406792390.0,Virginia Woolf,1927.0,To The Lighthouse ,To the Lighthouse,eng,3.76,83066,95572,4775,4380,8735,22226,30179,30052,https://images.gr-assets.com/books/1346239665l/59716.jpg,https://images.gr-assets.com/books/1346239665s/59716.jpg\n1085,105576,105576,101768,20,8129104598,9788129104600.0,Chetan Bhagat,2004.0,Five Point Someone: What Not to Do at IIT,Five Point Someone,en-GB,3.43,67438,69052,1786,3290,8985,22960,22478,11339,https://images.gr-assets.com/books/1298571209l/105576.jpg,https://images.gr-assets.com/books/1298571209s/105576.jpg\n1086,30281,30281,3349934,74,425197549,9780425197550.0,Laurell K. Hamilton,1993.0,Guilty Pleasures,\"Guilty Pleasures (Anita Blake, Vampire Hunter, #1)\",eng,4.02,104252,115174,4842,3154,6494,22437,35934,47155,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207930l/30281.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1087,19057,19057,2737065,79,375836675,9780375836670.0,Markus Zusak,2002.0,The Messenger,I Am the Messenger,en-US,4.09,93119,104510,11483,1448,4626,18714,38345,41377,https://images.gr-assets.com/books/1398483261l/19057.jpg,https://images.gr-assets.com/books/1398483261s/19057.jpg\n1088,31463,31463,914540,789,141439653,9780141439660.0,\"Thomas Hardy, Rosemarie Morgan, Shannon Russell\",1874.0,Far from the Madding Crowd,Far from the Madding Crowd,eng,3.92,87427,97459,4277,2221,5493,21766,36743,31236,https://images.gr-assets.com/books/1388279695l/31463.jpg,https://images.gr-assets.com/books/1388279695s/31463.jpg\n1089,34507,34507,583611,115,60855908,9780060855900.0,Terry Pratchett,1987.0,Equal Rites,\"Equal Rites (Discworld, #3; Witches #1)\",eng,4.0,88673,102658,2624,668,3631,24344,40902,33113,https://images.gr-assets.com/books/1407706800l/34507.jpg,https://images.gr-assets.com/books/1407706800s/34507.jpg\n1090,24800,24800,856555,37,038560310X,9780385603100.0,Mark Z. Danielewski,2000.0,House of Leaves,House of Leaves,eng,4.13,75469,88731,8113,3020,4930,12570,24803,43408,https://images.gr-assets.com/books/1403889034l/24800.jpg,https://images.gr-assets.com/books/1403889034s/24800.jpg\n1091,85379,85379,5376585,105,380718340,9780380718340.0,Patricia Cornwell,1993.0,Cruel & Unusual,\"Cruel & Unusual (Kay Scarpetta, #4)\",nl,4.11,83695,86940,690,586,1978,17291,34226,32859,https://images.gr-assets.com/books/1327865095l/85379.jpg,https://images.gr-assets.com/books/1327865095s/85379.jpg\n1092,17288661,17288661,25046757,91,385537131,9780385537130.0,John Grisham,2013.0,Sycamore Row,Sycamore Row,eng,3.98,56315,83185,8733,709,3198,18054,36337,24887,https://images.gr-assets.com/books/1375888633l/17288661.jpg,https://images.gr-assets.com/books/1375888633s/17288661.jpg\n1093,8652190,8652190,7366280,61,312650248,9780312650250.0,\"P.C. Cast, Kristin Cast\",2011.0,Awakened,\"Awakened (House of Night, #8)\",en-US,4.02,101234,107548,3014,2908,6983,21597,29683,46377,https://images.gr-assets.com/books/1307744664l/8652190.jpg,https://images.gr-assets.com/books/1307744664s/8652190.jpg\n1094,17150,17150,575450,501,1583485090,9781583485100.0,Willa Cather,1918.0,My Ántonia,My Ántonia,eng,3.76,81102,101039,5860,3655,8405,24776,35642,28561,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389151307l/17150.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1095,213753,213753,206925,32,152061548,,Susan Beth Pfeffer,2006.0,Life As We Knew It,\"Life As We Knew It (Last Survivors, #1)\",eng,3.89,94282,98669,8461,3105,6799,21733,33458,33574,https://images.gr-assets.com/books/1328012816l/213753.jpg,https://images.gr-assets.com/books/1328012816s/213753.jpg\n1096,706,706,1589081,20,713998946,9780713998950.0,\"Jon Stewart, Ben Karlin, David Javerbaum, Rich Bloomquist, Steve Bodow, Tim Carvell, Eric Drysdale, J.R. Havlan, Scott Jacobson, Tom Johnson, Rob Kutner, Chris Regan, Jason Reich, Jason Ross, Stephen Colbert, Samantha Bee, Rob Corddry, Brendan Hay, Ed Helms\",2004.0,America (The Book): A Citizen's Guide to Democracy Inaction,America (The Book): A Citizen's Guide to Democracy Inaction,eng,4.02,74511,79555,1378,1072,3011,16474,31432,27566,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1157224104l/706._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1097,89375,89375,2957021,54,800759494,9780800759490.0,\"Don Piper, Cecil Murphey\",2004.0,90 Minutes in Heaven,90 Minutes in Heaven: A True Story of Death and Life,,3.91,67937,69968,3056,2082,5200,15796,20710,26180,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441247008l/89375._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1098,17407748,17407748,24248331,92,1455520659,9781455520660.0,Nicholas Sparks,2012.0,The Longest Ride,The Longest Ride,eng,4.14,71276,88683,8692,1011,3435,15361,31569,37307,https://images.gr-assets.com/books/1367536453l/17407748.jpg,https://images.gr-assets.com/books/1367536453s/17407748.jpg\n1099,57854,67896,100074,1265,679776192,9780679776190.0,\"Lao Tzu, Gia-Fu Feng, Jane English, Chungliang Al Huang, Rowena Pattee Kryder, Toinette Lippe\",-300.0,道德經 [dào dé jīng],Tao Te Ching,eng,4.31,39863,80961,3165,903,2332,10967,22924,43835,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520551258l/57854._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1100,78983,78983,1084150,104,312995059,9780312995060.0,Jeffrey Archer,1979.0,Kane and Abel,\"Kane and Abel (Kane and Abel, #1)\",en-US,4.27,74052,79184,2779,637,1870,10776,28435,37466,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388965561l/78983.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1101,1609451,1609451,3079132,53,743496744,9780743496740.0,Jodi Picoult,2008.0,Change of Heart,Change of Heart,en-US,3.91,86471,90401,5881,1332,4859,21935,34687,27588,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390429931l/1609451.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1102,32370,32370,1825967,40,312423799,9780312423800.0,Augusten Burroughs,2003.0,Dry: A Memoir,Dry,eng,4.01,70550,73886,3148,728,3150,16092,28576,25340,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442601868l/32370.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1103,80568,80568,3164888,60,446613347,9780446613350.0,James Patterson,2001.0,Sam's Letters To Jennifer,Sam's Letters to Jennifer,,4.15,77538,79471,2238,1022,3130,14320,25518,35481,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245317l/80568.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1104,25644601,25644601,45460946,84,1101946342,9781101946340.0,E.L. James,2015.0,Grey,\"Grey (Fifty Shades, #4)\",en-GB,3.76,75320,104752,10218,6444,10145,23125,27235,37803,https://images.gr-assets.com/books/1433182986l/25644601.jpg,https://images.gr-assets.com/books/1433182986s/25644601.jpg\n1105,106,106,3634570,140,441172695,9780441172700.0,Frank Herbert,1969.0,Dune Messiah ,Dune Messiah (Dune Chronicles #2),eng,3.86,82580,90432,2283,1026,5333,23541,36242,24290,https://images.gr-assets.com/books/1392528394l/106.jpg,https://images.gr-assets.com/books/1392528394s/106.jpg\n1106,17267,17267,1215780,82,6280560,9790007672390.0,C.S. Lewis,1945.0,The Great Divorce,The Great Divorce,en-US,4.28,75031,80763,3847,1213,2311,10473,25434,41332,https://images.gr-assets.com/books/1166805741l/17267.jpg,https://images.gr-assets.com/books/1166805741s/17267.jpg\n1107,80536,80536,3111329,50,1416528636,9781416528630.0,Jennifer Weiner,2004.0,Little Earthquakes,Little Earthquakes,,3.76,77592,80501,2425,1236,5211,24377,30316,19361,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390621844l/80536.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1108,46306,46306,942531,521,517092913,9780517092910.0,\"Hans Christian Andersen, Lily Owens, Arthur Rackham, Hans Richter\",1835.0,Eventyr og historier,The Complete Fairy Tales,eng,4.28,90999,94395,544,595,2042,14474,30116,47168,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385233181l/46306.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1109,6466909,6466909,6657415,21,316075809,9780316075800.0,Mark Cotta Vaz,2009.0,New Moon: The Complete Illustrated Movie Companion,\"New Moon: The Complete Illustrated Movie Companion (The Twilight Saga: The Official Illustrated Movie Companion, #2)\",en-US,4.34,82399,83068,191,1285,2812,11978,17496,49497,https://images.gr-assets.com/books/1343724104l/6466909.jpg,https://images.gr-assets.com/books/1343724104s/6466909.jpg\n1110,24445517,24445517,24878180,41,,,Colleen Hoover,2014.0,Maybe Someday,\"Maybe Someday (Maybe, #1)\",eng,4.33,81707,121054,14224,1719,3961,14342,33965,67067,https://images.gr-assets.com/books/1421002815l/24445517.jpg,https://images.gr-assets.com/books/1421002815s/24445517.jpg\n1111,31101,31101,1581343,41,767905202,9780767905210.0,Jane Green,1999.0,Mr Maybe,Mr. Maybe,eng,3.41,78132,79157,877,7879,8357,23883,21770,17268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258585l/31101.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1112,77392,77392,535245,5,553213172,9780553213170.0,L.M. Montgomery,1915.0,Anne of the Island,\"Anne of the Island (Anne of Green Gables, #3)\",eng,4.21,97049,102242,2357,1120,2561,16940,34814,46807,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435829564l/77392._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1113,51893,51893,196327,970,140047484,9780140047490.0,\"Friedrich Nietzsche, Walter Kaufmann\",1883.0,Also sprach Zarathustra,Thus Spoke Zarathustra,eng,4.05,65362,79615,2185,1875,4197,14658,26373,32512,https://images.gr-assets.com/books/1480901846l/51893.jpg,https://images.gr-assets.com/books/1480901846s/51893.jpg\n1114,156538,156538,1016482,434,140620192,9780140620190.0,\"Elizabeth Gaskell, Alan Shelston\",1854.0,North and South,North and South,eng,4.13,95274,106167,5470,2016,4265,17507,36518,45861,https://images.gr-assets.com/books/1349633381l/156538.jpg,https://images.gr-assets.com/books/1349633381s/156538.jpg\n1115,11330361,11330361,16258764,43,1451629184,9781451629190.0,Jaycee Dugard,2011.0,A Stolen Life,A Stolen Life,en-US,3.89,72713,80357,6978,1318,4977,20465,28359,25238,https://images.gr-assets.com/books/1327928284l/11330361.jpg,https://images.gr-assets.com/books/1327928284s/11330361.jpg\n1116,7913305,7913305,11196793,45,,,Amish Tripathi,2010.0,The Immortals of Meluha,\"The Immortals of Meluha (Shiva Trilogy, #1)\",eng,4.0,62784,70458,4023,1181,3044,13102,30076,23055,https://images.gr-assets.com/books/1334659192l/7913305.jpg,https://images.gr-assets.com/books/1334659192s/7913305.jpg\n1117,8650,8650,1212784,121,752224417,9780752224410.0,Michael Crichton,1995.0,The Lost World,\"The Lost World (Jurassic Park, #2)\",eng,3.72,83389,92767,2426,1339,7287,28723,33791,21627,https://images.gr-assets.com/books/1386864575l/8650.jpg,https://images.gr-assets.com/books/1386864575s/8650.jpg\n1118,9593913,9593913,14480925,73,62014536,9780062014540.0,Lauren Oliver,2013.0,Requiem,\"Requiem (Delirium, #3)\",eng,3.74,100593,109040,12202,2496,9699,30219,37521,29105,https://images.gr-assets.com/books/1340992438l/9593913.jpg,https://images.gr-assets.com/books/1340992438s/9593913.jpg\n1119,13890,13890,791214,56,812550285,9780812550280.0,Robert Jordan,1996.0,A Crown of Swords,\"A Crown of Swords (Wheel of Time, #7)\",eng,4.0,86421,93771,1517,1004,4645,20983,33747,33392,https://images.gr-assets.com/books/1358542379l/13890.jpg,https://images.gr-assets.com/books/1358542379s/13890.jpg\n1120,21348,21348,868263,942,192840509,9780192840510.0,\"Aesop, Laura Harris, Laura Gibbs\",-560.0,Aesopica,Aesop's Fables,eng,4.05,88508,98962,1441,773,3717,22587,34885,37000,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389064715l/21348.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1121,394535,394535,1065465,102,679728759,9780679728760.0,Cormac McCarthy,1985.0,Blood Meridian: Or the Evening Redness in the West,\"Blood Meridian, or the Evening Redness in the West\",eng,4.18,71095,79519,7307,1879,4408,10899,22276,40057,https://images.gr-assets.com/books/1453995760l/394535.jpg,https://images.gr-assets.com/books/1453995760s/394535.jpg\n1122,12751687,12751687,17892468,57,1442426675,9781442426670.0,Becca Fitzpatrick,2012.0,Finale,\"Finale (Hush, Hush, #4)\",eng,4.22,107569,112153,7499,2275,5250,16485,29317,58826,https://images.gr-assets.com/books/1362408156l/12751687.jpg,https://images.gr-assets.com/books/1362408156s/12751687.jpg\n1123,13440,13440,1814,2,751504386,9780751504380.0,Stephen King,1985.0,Skeleton Crew,Skeleton Crew,eng,3.93,82320,88036,1251,682,3870,23568,32885,27031,https://images.gr-assets.com/books/1271861632l/13440.jpg,https://images.gr-assets.com/books/1271861632s/13440.jpg\n1124,22206,22206,1311854,67,99437961,9780099437960.0,Chuck Palahniuk,2002.0,Lullaby,Lullaby,,3.73,66713,76680,2586,1404,6142,22378,28519,18237,https://images.gr-assets.com/books/1327268513l/22206.jpg,https://images.gr-assets.com/books/1327268513s/22206.jpg\n1125,6969361,6969361,7208552,21,8129115301,9788129115300.0,Chetan Bhagat,2009.0,Two States,2 States: The Story of My Marriage,eng,3.42,67866,69282,2421,3590,9682,22345,21176,12489,https://images.gr-assets.com/books/1255292027l/6969361.jpg,https://images.gr-assets.com/books/1255292027s/6969361.jpg\n1126,263145,263145,255083,25,1421508222,9781421508220.0,\"Matsuri Hino, Tomo Kimura\",2005.0,ヴァンパイア騎士 1,\"Vampire Knight, Vol. 1 (Vampire Knight, #1)\",eng,4.1,89733,90130,1192,3142,5748,15602,20167,45471,https://images.gr-assets.com/books/1329232329l/263145.jpg,https://images.gr-assets.com/books/1329232329s/263145.jpg\n1127,91478,91478,912988,46,451458923,9780451458930.0,Jim Butcher,2002.0,Summer Knight,\"Summer Knight (The Dresden Files, #4)\",eng,4.3,91012,98512,3137,150,1156,12546,39840,44820,https://images.gr-assets.com/books/1345557469l/91478.jpg,https://images.gr-assets.com/books/1345557469s/91478.jpg\n1128,61975,61975,2467422,99,345484266,9780345484260.0,\"Anne McCaffrey, Teodor Panasiński\",1968.0,Dragonflight,\"Dragonflight (Dragonriders of Pern, #1)\",eng,4.1,95378,101637,2385,1514,4189,19367,34403,42164,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182243l/61975.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1129,1081560,1081560,1068303,3,618968474,9780618968470.0,\"John D. Rateliff, J.R.R. Tolkien\",2007.0,\"The History of the Hobbit, Part One: Mr. Baggins\",\"The History of the Hobbit, Part One: Mr. Baggins\",eng,3.81,108399,108445,46,11128,7366,17923,26641,45387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388670262l/1081560.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1130,17788401,17788401,24878172,21,,,Colleen Hoover,2014.0,Ugly Love,Ugly Love,eng,4.3,107583,116301,15257,1759,4146,14108,33398,62890,https://images.gr-assets.com/books/1399179135l/17788401.jpg,https://images.gr-assets.com/books/1399179135s/17788401.jpg\n1131,47401,47401,2930558,143,014100018X,9780141000180.0,Joanne Harris,1998.0,Chocolat,\"Chocolat (Chocolat, #1)\",eng,3.95,84770,93092,3437,916,4161,22099,37751,28165,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388674628l/47401.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1132,293101,293101,284389,43,553116606,9780553116600.0,Jay Anson,1977.0,The Amityville Horror,The Amityville Horror,eng,3.82,80959,83364,1567,1955,6514,22774,25273,26848,https://images.gr-assets.com/books/1306079371l/293101.jpg,https://images.gr-assets.com/books/1306079371s/293101.jpg\n1133,11713,11713,3009869,58,771068719,9780771068710.0,Michael Ondaatje,1992.0,The English Patient,The English Patient,,3.88,83741,92162,3308,2829,6755,19783,32472,30323,https://images.gr-assets.com/books/1320527907l/11713.jpg,https://images.gr-assets.com/books/1320527907s/11713.jpg\n1134,13639050,13639050,19252471,38,1936305550,9781936305550.0,Sylvain Reynard,2012.0,Gabriel's Rapture,\"Gabriel's Rapture (Gabriel's Inferno, #2)\",eng,4.22,91213,96953,3449,1868,4020,13830,28161,49074,https://images.gr-assets.com/books/1343962380l/13639050.jpg,https://images.gr-assets.com/books/1343962380s/13639050.jpg\n1135,11012,11012,260248,1101,192839993,9780192839990.0,\"James Joyce, Jeri Johnson\",1914.0,Dubliners,Dubliners,eng,3.85,73140,91256,4078,2091,6230,22010,33444,27481,https://images.gr-assets.com/books/1334138184l/11012.jpg,https://images.gr-assets.com/books/1334138184s/11012.jpg\n1136,5941033,5941033,6113503,74,1400063736,9781400063730.0,Colum McCann,2009.0,Let the Great World Spin,Let the Great World Spin,en-US,3.93,71515,79306,8255,1644,4957,16425,30475,25805,https://images.gr-assets.com/books/1474988022l/5941033.jpg,https://images.gr-assets.com/books/1474988022s/5941033.jpg\n1137,227865,227865,1333018,119,141321318,9780141321320.0,Eoin Colfer,2003.0,The Eternity Code,\"The Eternity Code (Artemis Fowl, #3)\",eng,4.04,94437,102207,1900,1169,3601,21954,38901,36582,https://images.gr-assets.com/books/1327945417l/227865.jpg,https://images.gr-assets.com/books/1327945417s/227865.jpg\n1138,43933,43933,977015,119,440236703,9780440236700.0,Harlan Coben,2001.0,Tell No One,Tell No One,eng,4.11,78070,85209,3738,681,2559,15411,34596,31962,https://images.gr-assets.com/books/1421365049l/43933.jpg,https://images.gr-assets.com/books/1421365049s/43933.jpg\n1139,17660,17660,150226,109,,,Stephen King,1987.0,The Tommyknockers,The Tommyknockers,eng,3.48,89262,95301,1854,4220,12369,31577,28068,19067,https://images.gr-assets.com/books/1394210331l/17660.jpg,https://images.gr-assets.com/books/1394210331s/17660.jpg\n1140,5287473,5287473,5354884,53,1423121309,9781423121300.0,Rachel Hawkins,2010.0,Hex Hall,\"Hex Hall (Hex Hall, #1)\",eng,3.96,109881,114594,7766,2764,6358,24747,39195,41530,https://images.gr-assets.com/books/1368393885l/5287473.jpg,https://images.gr-assets.com/books/1368393885s/5287473.jpg\n1141,13099738,13099738,18272194,33,761169253,9780761169250.0,Austin Kleon,2010.0,Steal Like an Artist,Steal Like an Artist: 10 Things Nobody Told You About Being Creative,en-US,3.86,93625,97114,3270,6460,6550,18714,27654,37736,https://images.gr-assets.com/books/1404576602l/13099738.jpg,https://images.gr-assets.com/books/1404576602s/13099738.jpg\n1142,816,816,1166797,3,60512806,9780060512800.0,Neal Stephenson,1999.0,Cryptonomicon,Cryptonomicon,eng,4.25,72683,81409,4342,1223,2983,10487,26399,40317,https://images.gr-assets.com/books/1327931476l/816.jpg,https://images.gr-assets.com/books/1327931476s/816.jpg\n1143,16102004,16102004,21912533,47,1476730105,9781476730100.0,Christina Lauren,2013.0,Beautiful Bastard,\"Beautiful Bastard (Beautiful Bastard, #1)\",eng,4.05,111668,119301,7381,3634,6573,20642,37561,50891,https://images.gr-assets.com/books/1362258921l/16102004.jpg,https://images.gr-assets.com/books/1362258921s/16102004.jpg\n1144,14249,14249,718772,51,60959037,9780060959040.0,Barbara Kingsolver,2000.0,Prodigal Summer,Prodigal Summer,en-US,3.98,78529,81104,5233,1196,4129,17398,30971,27410,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426308771l/14249.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1145,5204,5204,420701,52,452282829,9780452282830.0,Joyce Carol Oates,1996.0,We Were the Mulvaneys,We Were the Mulvaneys,eng,3.7,77251,80906,2557,2679,7047,22287,29134,19759,https://images.gr-assets.com/books/1309282868l/5204.jpg,https://images.gr-assets.com/books/1309282868s/5204.jpg\n1146,102920,102920,2415847,37,006097625X,9780060976260.0,Scott McCloud,1993.0,Understanding Comics: The Invisible Art,Understanding Comics: The Invisible Art,en-US,3.98,77277,77953,1659,4662,4632,12948,20928,34783,https://images.gr-assets.com/books/1328408101l/102920.jpg,https://images.gr-assets.com/books/1328408101s/102920.jpg\n1147,7842288,7842288,10937544,76,316077054,9780316077060.0,\"Kami Garcia, Margaret Stohl\",2010.0,Beautiful Darkness,\"Beautiful Darkness (Caster Chronicles, #2)\",en-US,3.84,95447,107651,6614,2229,7934,27698,36754,33036,https://images.gr-assets.com/books/1327879100l/7842288.jpg,https://images.gr-assets.com/books/1327879100s/7842288.jpg\n1148,12391521,12391521,14262366,47,1594485755,9781594485760.0,Jon Ronson,2011.0,The Psychopath Test,The Psychopath Test: A Journey Through the Madness Industry,eng,3.91,44097,86096,5455,1746,4168,19334,35362,25486,https://images.gr-assets.com/books/1364166270l/12391521.jpg,https://images.gr-assets.com/books/1364166270s/12391521.jpg\n1149,14865,14865,3254054,65,743454553,9780743454550.0,Jodi Picoult,2005.0,Vanishing Acts,Vanishing Acts,en-US,3.68,79662,82770,3872,1234,6255,27232,31134,16915,https://images.gr-assets.com/books/1407719603l/14865.jpg,https://images.gr-assets.com/books/1407719603s/14865.jpg\n1150,15159,15159,2837,102,330419641,9780330419640.0,David Baldacci,1995.0,Absolute Power,Absolute Power,eng,4.15,72481,76197,1344,589,1787,13178,30957,29686,https://images.gr-assets.com/books/1328399707l/15159.jpg,https://images.gr-assets.com/books/1328399707s/15159.jpg\n1151,6858,6858,1268422,51,312976275,9780312976280.0,Janet Evanovich,2000.0,Hot Six,\"Hot Six (Stephanie Plum, #6)\",eng,4.18,99329,103204,2085,261,1761,18757,40597,41828,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177839l/6858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1152,13624688,13624688,19426990,61,1401322786,9781401322790.0,Mitch Albom,2012.0,The Time Keeper,The Time Keeper,eng,3.85,72277,79810,8697,1665,5923,20078,27535,24609,https://images.gr-assets.com/books/1340478576l/13624688.jpg,https://images.gr-assets.com/books/1340478576s/13624688.jpg\n1153,33456,33456,3258721,38,60590270,9780060590280.0,Christopher Moore,2006.0,A Dirty Job,\"A Dirty Job (Grim Reaper, #1)\",en-US,4.08,78523,84684,5640,1310,3297,15234,32020,32823,https://images.gr-assets.com/books/1331323415l/33456.jpg,https://images.gr-assets.com/books/1331323415s/33456.jpg\n1154,1301,1301,416305,39,393324818,9780393324820.0,Michael   Lewis,2003.0,Moneyball: The Art of Winning an Unfair Game,Moneyball: The Art of Winning an Unfair Game,en-US,4.24,66406,71498,4030,807,1589,9096,27836,32170,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176510l/1301.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1155,334123,334123,1121748,99,078681859X,9780786818590.0,Jonathan Stroud,2003.0,The Amulet of Samarkand,\"The Amulet of Samarkand (Bartimaeus, #1)\",en-US,3.99,86062,95452,4093,2045,5255,19001,34201,34950,https://images.gr-assets.com/books/1327877926l/334123.jpg,https://images.gr-assets.com/books/1327877926s/334123.jpg\n1156,611298,611298,2884260,28,446580503,9780446580500.0,\"Stephen Colbert, Richard Dahm, Paul Dinello, Allison Silverman, Michael Brumm, Eric Drydale, Rob Dubbin, Glenn Eichler, Peter Grosz, Peter Gwinn, Jay Katsir, Laura Krafft, Frank Lesser, Tom Purcell\",2007.0,I Am America (And So Can You!),I Am America (And So Can You!),en-US,3.91,71023,72740,3328,1209,4029,17615,27295,22592,https://images.gr-assets.com/books/1435873807l/611298.jpg,https://images.gr-assets.com/books/1435873807s/611298.jpg\n1157,763362,763362,749449,86,688014291,9780688014290.0,\"Kenneth H. Blanchard, Spencer Johnson\",1981.0,The One Minute Manager,The One Minute Manager,en-US,3.85,70241,72185,1176,1858,4985,18226,23831,23285,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348155441l/763362.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1158,42697,42697,804397,79,553258478,9780553258480.0,Leon Uris,1958.0,Exodus,Exodus,eng,4.33,77258,79096,1442,458,1544,10026,26245,40823,https://images.gr-assets.com/books/1359742531l/42697.jpg,https://images.gr-assets.com/books/1359742531s/42697.jpg\n1159,77163,77163,1253009,30,068484477X,9780684844770.0,Ursula Hegi,1994.0,Stones from the River,Stones from the River,en-GB,4.07,80056,81284,1790,1355,3708,15019,29243,31959,https://images.gr-assets.com/books/1366513909l/77163.jpg,https://images.gr-assets.com/books/1366513909s/77163.jpg\n1160,2052,2052,1222673,238,394758285,9780394758280.0,Raymond Chandler,1939.0,The Big Sleep,\"The Big Sleep (Philip Marlowe, #1)\",eng,4.04,84489,90652,3884,1521,4056,17190,34743,33142,https://images.gr-assets.com/books/1371584712l/2052.jpg,https://images.gr-assets.com/books/1371584712s/2052.jpg\n1161,4799,4799,824028,155,014200068X,9780142000690.0,John Steinbeck,1945.0,Cannery Row ,Cannery Row,eng,4.02,81598,88541,3926,851,3520,18946,35153,30071,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188936l/4799.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1162,11230081,11230081,16156051,32,446585025,9780446585030.0,Ellen DeGeneres,2011.0,Seriously...I'm Kidding,Seriously... I'm Kidding,en-US,3.72,74358,79686,5874,2961,8032,21234,23345,24114,https://images.gr-assets.com/books/1441195131l/11230081.jpg,https://images.gr-assets.com/books/1441195131s/11230081.jpg\n1163,65119,65119,1209957,83,439272637,9780439272640.0,\"Lemony Snicket, Brett Helquist\",2000.0,The Miserable Mill,\"The Miserable Mill (A Series of Unfortunate Events, #4)\",en-US,3.83,101325,109009,2962,1298,7142,31785,37268,31516,https://images.gr-assets.com/books/1352146209l/65119.jpg,https://images.gr-assets.com/books/1352146209s/65119.jpg\n1164,11250053,11250053,16176521,57,316175676,9780316175680.0,Eowyn Ivey,2012.0,The Snow Child,The Snow Child,eng,3.95,72328,85022,11419,1238,3845,18320,36287,25332,https://images.gr-assets.com/books/1327098624l/11250053.jpg,https://images.gr-assets.com/books/1327098624s/11250053.jpg\n1165,17314430,17314430,23981243,42,,2940016231920.0,\"J. Lynn, Jennifer L. Armentrout\",2013.0,Wait for You,\"Wait for You (Wait for You, #1)\",eng,4.19,106236,115224,7550,1772,3824,16957,40784,51887,https://images.gr-assets.com/books/1363819713l/17314430.jpg,https://images.gr-assets.com/books/1363819713s/17314430.jpg\n1166,3293821,3293821,3330329,81,810970686,9780810970690.0,Jeff Kinney,2009.0,The Last Straw,\"The Last Straw (Diary of a Wimpy Kid, #3)\",eng,4.11,82518,87023,4142,1705,4602,16436,23834,40446,https://images.gr-assets.com/books/1350396036l/3293821.jpg,https://images.gr-assets.com/books/1350396036s/3293821.jpg\n1167,6656,6656,809248,1579,679433139,9780679433130.0,\"Dante Alighieri, Allen Mandelbaum, Eugenio Montale\",1308.0,La Divina Commedia,The Divine Comedy,eng,4.06,74130,88924,2745,1235,4476,17788,29573,35852,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390760180l/6656.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1168,48757,48757,55188,67,1405204265,9781405204260.0,\"Benjamin Hoff, Ernest H. Shepard\",1982.0,The Tao of Pooh,The Tao of Pooh,eng,4.01,69975,77697,3027,1341,3865,16342,27011,29138,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348137748l/48757.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1169,13047090,13047090,18211575,44,1620610116,9781620610110.0,Jennifer L. Armentrout,2012.0,Onyx,\"Onyx (Lux, #2)\",eng,4.33,111448,119355,9018,1174,3166,14340,36807,63868,https://images.gr-assets.com/books/1329408511l/13047090.jpg,https://images.gr-assets.com/books/1329408511s/13047090.jpg\n1170,13104080,13104080,18276967,45,62085530,9780062085540.0,Tahereh Mafi,2013.0,\"Unravel Me (Shatter Me, #2)\",\"Unravel Me (Shatter Me, #2)\",eng,4.28,109183,116847,11511,1764,3826,14757,36003,60497,https://images.gr-assets.com/books/1340287622l/13104080.jpg,https://images.gr-assets.com/books/1340287622s/13104080.jpg\n1171,28078,28078,815591,65,812968972,9780812968970.0,Sarah Dunant,2003.0,The Birth of Venus,The Birth of Venus,en-US,3.79,78129,79989,2952,1743,5465,22050,29609,21122,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423923989l/28078.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1172,114954,114954,1537541,100,,9781423104000.0,Eoin Colfer,2005.0,The Opal Deception,\"The Opal Deception  (Artemis Fowl, #4)\",eng,4.04,95638,101315,1592,1019,3646,21890,38429,36331,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266475201l/114954.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1173,25074850,25074850,27669153,111,385354282,9780385354290.0,\"David Lagercrantz, Stieg Larsson, George Goulding\",2015.0,Det som inte dödar oss,\"The Girl in the Spider's Web (Millennium, #4)\",eng,3.73,53751,81860,9763,1850,5662,22883,33656,17809,https://images.gr-assets.com/books/1427843648l/25074850.jpg,https://images.gr-assets.com/books/1427843648s/25074850.jpg\n1174,26893819,26893819,42856015,59,081299860X,9780812998600.0,Emma Cline,2016.0,The Girls,The Girls,eng,3.49,76761,94812,11573,2905,11033,32122,34599,14153,https://images.gr-assets.com/books/1492065338l/26893819.jpg,https://images.gr-assets.com/books/1492065338s/26893819.jpg\n1175,179064,179064,2715267,34,1582349908,9781582349910.0,Shannon Hale,2003.0,The Goose Girl,\"The Goose Girl (The Books of Bayern, #1)\",en-US,4.18,92952,97013,8818,1726,3198,14755,33819,43515,https://images.gr-assets.com/books/1330728389l/179064.jpg,https://images.gr-assets.com/books/1330728389s/179064.jpg\n1176,21671,21671,1234249,97,60584750,9780060584760.0,Dennis Lehane,2001.0,Mystic River,Mystic River,en-US,4.19,86103,91248,2836,943,2406,13458,36410,38031,https://images.gr-assets.com/books/1407109549l/21671.jpg,https://images.gr-assets.com/books/1407109549s/21671.jpg\n1177,7619057,15842439,10090210,73,99549344,9780099549340.0,Isaac Marion,2010.0,Warm Bodies,\"Warm Bodies (Warm Bodies, #1)\",,3.93,66381,91450,9979,1779,5283,20394,33652,30342,https://images.gr-assets.com/books/1323400027l/7619057.jpg,https://images.gr-assets.com/books/1323400027s/7619057.jpg\n1178,62446,62446,2071994,927,451528352,9780451528350.0,\"Mark Twain, Everett H. Emerson\",1881.0,The Prince and the Pauper,The Prince and the Pauper,eng,3.84,84682,90583,1565,1053,5031,26289,33530,24680,https://images.gr-assets.com/books/1376406798l/62446.jpg,https://images.gr-assets.com/books/1376406798s/62446.jpg\n1179,16690,16690,1048525,105,340837942,9780340837950.0,Robert A. Heinlein,1966.0,The Moon is a Harsh Mistress,The Moon is a Harsh Mistress,eng,4.17,80366,86665,2783,877,2892,14617,30401,37878,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348768309l/16690.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1180,6642715,6642715,19051480,85,670021458,9780670021450.0,\"Elif Shafak, إليف شافاق, ارسلان فصیحی, محمد درويش\",2010.0,The Forty Rules of Love,The Forty Rules of Love,eng,4.17,35283,73274,10114,2119,3582,10129,21560,35884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442161289l/6642715._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1181,6423,6423,1874115,54,330371231,9780330371230.0,Janet Evanovich,1999.0,High Five,\"High Five (Stephanie Plum, #5)\",eng,4.17,92737,101162,2225,234,1715,18880,40111,40222,https://images.gr-assets.com/books/1270849101l/6423.jpg,https://images.gr-assets.com/books/1270849101s/6423.jpg\n1182,13596166,13596166,19185026,82,1781162646,9781781162640.0,Stephen King,2013.0,Joyland,Joyland,eng,3.9,75018,82221,9627,1349,4135,19027,34328,23382,https://images.gr-assets.com/books/1348154483l/13596166.jpg,https://images.gr-assets.com/books/1348154483s/13596166.jpg\n1183,13154150,13154150,18332367,30,1612620248,9781612620240.0,\"Hajime Isayama, Sheldon Drzka\",2010.0,進撃の巨人 1,\"Attack on Titan, Vol. 1 (Attack on Titan, #1)\",eng,4.42,82565,84361,1630,1497,2163,8125,19796,52780,https://images.gr-assets.com/books/1432712438l/13154150.jpg,https://images.gr-assets.com/books/1432712438s/13154150.jpg\n1184,46164,46164,8272,406,068480154X,9780684801540.0,F. Scott Fitzgerald,1933.0,Tender Is the Night,Tender Is the Night,en-US,3.83,79008,86768,3615,1719,5896,22117,32814,24222,https://images.gr-assets.com/books/1438797669l/46164.jpg,https://images.gr-assets.com/books/1438797669s/46164.jpg\n1185,306654,306654,1187268,46,038531258X,9780385312580.0,Olive Ann Burns,1984.0,Cold Sassy Tree,Cold Sassy Tree,,3.99,82281,84646,3440,1410,3959,18327,31333,29617,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223675895l/306654.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1186,92517,92517,1324493,70,811214044,9780811214050.0,Tennessee Williams,1945.0,The Glass Menagerie,The Glass Menagerie,eng,3.67,90032,93155,1835,2327,8897,27637,32344,21950,https://images.gr-assets.com/books/1391591003l/92517.jpg,https://images.gr-assets.com/books/1391591003s/92517.jpg\n1187,13586707,35036409,19174054,9,1609450787,9781609450790.0,\"Elena Ferrante, Ann Goldstein\",2011.0,L'amica geniale,My Brilliant Friend (The Neapolitan Novels #1),eng,3.88,64637,88433,10235,2191,5663,19003,34930,26646,https://images.gr-assets.com/books/1343064947l/13586707.jpg,https://images.gr-assets.com/books/1343064947s/13586707.jpg\n1188,368593,368593,1885647,106,307353133,9780307353140.0,Timothy Ferriss,2007.0,\"The 4-Hour Workweek: Escape 9-5, Live Anywhere, and Join the New Rich\",The 4-Hour Workweek,eng,3.84,66129,78785,4101,2637,6377,18156,25731,25884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442957271l/368593._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1189,43877,43877,43268,138,62515675,9780062515670.0,Robin S. Sharma,1996.0,The Monk Who Sold His Ferrari: A Fable About Fulfilling Your Dreams & Reaching Your Destiny,The Monk Who Sold His Ferrari: A Fable About Fulfilling Your Dreams  Reaching Your Destiny,eng,3.77,52031,65477,3517,2900,5582,14980,22014,20001,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189325l/43877.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1190,10054335,10054335,14950407,49,670022691,9780670022690.0,Amor Towles,2011.0,Rules of Civility,Rules of Civility,eng,3.99,75541,85132,9257,1044,3843,17133,36063,27049,https://images.gr-assets.com/books/1311705045l/10054335.jpg,https://images.gr-assets.com/books/1311705045s/10054335.jpg\n1191,61179,61179,924711,89,575077026,9780575077030.0,Larry Niven,1970.0,Ringworld,\"Ringworld (Ringworld, #1)\",eng,3.96,76925,82561,2540,1172,4609,18536,30483,27761,https://images.gr-assets.com/books/1408793358l/61179.jpg,https://images.gr-assets.com/books/1408793358s/61179.jpg\n1192,7824322,7824322,10870318,89,399254129,9780399254120.0,Ruta Sepetys,2011.0,Between Shades of Gray,Between Shades of Gray,eng,4.36,87718,101286,15153,885,1911,10720,34578,53192,https://images.gr-assets.com/books/1327873479l/7824322.jpg,https://images.gr-assets.com/books/1327873479s/7824322.jpg\n1193,439173,439173,1993854,49,689818769,9780689818770.0,\"Andrew Clements, Brian Selznick\",1996.0,Frindle,Frindle,en-US,3.79,83351,84496,3165,2530,7349,22318,25470,26829,https://images.gr-assets.com/books/1344395824l/439173.jpg,https://images.gr-assets.com/books/1344395824s/439173.jpg\n1194,6578293,6578293,6771716,84,810983915,9780810983920.0,Jeff Kinney,2009.0,Dog Days,\"Dog Days (Diary of a Wimpy Kid, #4)\",en-US,4.14,78592,82986,4248,1691,4157,14900,22681,39557,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178896l/6578293.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1195,13602426,13602426,19195697,43,62065246,9780062065250.0,Louise Erdrich,2012.0,The Round House,The Round House,eng,3.91,67928,76136,8100,1240,4085,16752,32262,21797,https://images.gr-assets.com/books/1352999408l/13602426.jpg,https://images.gr-assets.com/books/1352999408s/13602426.jpg\n1196,18130,18130,1196035,66,,9780440487620.0,Madeleine L'Engle,1973.0,A Wind in the Door,\"A Wind in the Door (A Wrinkle in Time Quintet, #2)\",eng,4.07,87277,93772,2139,1318,3499,18357,34396,36202,https://images.gr-assets.com/books/1327464177l/18130.jpg,https://images.gr-assets.com/books/1327464177s/18130.jpg\n1197,13615258,13615258,19216323,10,006223742X,9780062237420.0,Veronica Roth,2012.0,Free Four: Tobias Tells the Divergent Story,\"Free Four: Tobias Tells the Divergent Knife-Throwing Scene (Divergent, #1.5)\",eng,4.18,81621,88094,4769,1258,3843,15265,25378,42350,https://images.gr-assets.com/books/1399503802l/13615258.jpg,https://images.gr-assets.com/books/1399503802s/13615258.jpg\n1198,22822858,22822858,42375710,55,385539258,9780385539260.0,Hanya Yanagihara,2015.0,A Little Life,A Little Life,eng,4.27,66782,85544,15267,2540,3792,9264,22287,47661,https://images.gr-assets.com/books/1446469353l/22822858.jpg,https://images.gr-assets.com/books/1446469353s/22822858.jpg\n1199,156534,156534,151061,19,1563899809,9781563899800.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",2003.0,\"Y: The Last Man, Vol. 1: Unmanned\",\"Y: The Last Man, Vol. 1: Unmanned\",eng,4.12,81326,82315,2434,2462,3478,12272,27613,36490,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178315l/156534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1200,10803121,10803121,15035863,45,765330423,9780765330420.0,Brandon Sanderson,2011.0,The Alloy of Law,\"The Alloy of Law (Mistborn, #4)\",eng,4.2,72185,84897,5303,271,1652,12408,36754,33812,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442889632l/10803121._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1201,7981206,7981206,12401364,55,,,Charlaine Harris,2011.0,Dead Reckoning,\"Dead Reckoning (Sookie Stackhouse, #11)\",eng,3.77,87066,106041,6231,1623,8127,31815,36438,28038,https://images.gr-assets.com/books/1357679465l/7981206.jpg,https://images.gr-assets.com/books/1357679465s/7981206.jpg\n1202,60792,60792,1070136,87,345452003,9780345452010.0,\"Anne Tyler, Jennifer Bassett\",1985.0,The Accidental Tourist,The Accidental Tourist,eng,3.9,80075,82264,1752,1069,4354,20299,32505,24037,https://images.gr-assets.com/books/1502220282l/60792.jpg,https://images.gr-assets.com/books/1502220282s/60792.jpg\n1203,12000020,12000020,16964419,41,1442408928,9781442408920.0,Benjamin Alire Sáenz,2012.0,Aristotle and Dante Discover the Secrets of the Universe,\"Aristotle and Dante Discover the Secrets of the Universe (Aristotle and Dante Discover the Secrets of the Universe, #1)\",,4.34,108884,123245,19200,2086,3759,13829,33659,69912,https://images.gr-assets.com/books/1328320260l/12000020.jpg,https://images.gr-assets.com/books/1328320260s/12000020.jpg\n1204,17184,17184,1326579,941,451528522,9780451528520.0,H.G. Wells,1897.0,The Invisible Man,The Invisible Man,eng,3.62,84778,95717,3699,1620,8318,33136,34502,18141,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388639080l/17184.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1205,10374,10374,2531870,120,,,\"Haruki Murakami, Alfred Birnbaum\",1985.0,世界の終りとハードボイルド・ワンダーランド [Sekai no owari to hādoboirudo wandārando],Hard-Boiled Wonderland and the End of the World,eng,4.15,63764,77432,4406,537,2571,12766,30321,31237,https://images.gr-assets.com/books/1399844477l/10374.jpg,https://images.gr-assets.com/books/1399844477s/10374.jpg\n1206,1428,1428,3249453,25,61122092,9780061122100.0,\"Paulo Coelho, Alan R. Clarke\",1994.0,Na margem do rio Piedra eu sentei e chorei,By the River Piedra I Sat Down and Wept,eng,3.57,62106,70825,3055,3569,8464,20303,21049,17440,https://images.gr-assets.com/books/1466877798l/1428.jpg,https://images.gr-assets.com/books/1466877798s/1428.jpg\n1207,62111,62111,2441994,553,1402726023,9781402726030.0,\"Johann David Wyss, Scott McKowen, Arthur Pober\",1812.0,Der Schweizerische Robinson,The Swiss Family Robinson  ,eng,3.92,78355,84477,1785,1516,4885,20991,28531,28554,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385171459l/62111.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1208,133266,133266,1733095,122,450542882,9780450542890.0,Stephen King,1990.0,Four Past Midnight,Four Past Midnight ,en-GB,3.9,76376,81902,1039,671,3658,22268,31790,23515,https://images.gr-assets.com/books/1321023197l/133266.jpg,https://images.gr-assets.com/books/1321023197s/133266.jpg\n1209,13486122,13486122,19022487,50,1937044963,9781937044960.0,Jennifer Probst,2012.0,The Marriage Bargain,\"The Marriage Bargain (Marriage to a Billionaire, #1)\",eng,3.81,91630,97589,3917,2260,6830,25972,34389,28138,https://images.gr-assets.com/books/1329319988l/13486122.jpg,https://images.gr-assets.com/books/1329319988s/13486122.jpg\n1210,77390,77390,63845,203,553213148,9780553213140.0,L.M. Montgomery,1909.0,Anne of Avonlea,\"Anne of Avonlea (Anne of Green Gables, #2)\",en-US,4.21,99918,108145,3004,736,2515,17508,39849,47537,https://images.gr-assets.com/books/1305545757l/77390.jpg,https://images.gr-assets.com/books/1305545757s/77390.jpg\n1211,824204,824204,258562,90,448405202,9780448405210.0,\"Watty Piper, Doris Hauman, George Hauman\",1930.0,The Little Engine That Could,The Little Engine That Could,en-US,4.15,82102,83488,1033,1585,4152,15526,21390,40835,https://images.gr-assets.com/books/1352736875l/824204.jpg,https://images.gr-assets.com/books/1352736875s/824204.jpg\n1212,16176440,16176440,22026398,59,399162097,9780399162090.0,Karen Joy Fowler,2013.0,We Are All Completely Beside Ourselves,We Are All Completely Beside Ourselves,eng,3.71,59973,77850,9664,2104,6350,20852,30962,17582,https://images.gr-assets.com/books/1364850195l/16176440.jpg,https://images.gr-assets.com/books/1364850195s/16176440.jpg\n1213,31360,31360,1959402,52,765304740,9780765304740.0,Orson Scott Card,1996.0,Children of the Mind,\"Children of the Mind (Ender's Saga, #4)\",eng,3.74,74517,81375,2021,1630,6726,23486,29071,20462,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390362338l/31360.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1214,338798,338798,2368224,842,679722769,9780679722760.0,James Joyce,1922.0,Ulysses,Ulysses,eng,3.74,76791,86484,5077,6976,8093,17457,22201,31757,https://images.gr-assets.com/books/1428891345l/338798.jpg,https://images.gr-assets.com/books/1428891345s/338798.jpg\n1215,816953,816953,802840,40,142401773,9780142401770.0,Sarah Dessen,1998.0,Someone Like You,Someone Like You,eng,3.94,84358,86678,3553,1183,5249,21809,27952,30485,https://images.gr-assets.com/books/1336001301l/816953.jpg,https://images.gr-assets.com/books/1336001301s/816953.jpg\n1216,3273,3273,3303291,20,312304358,9780312304360.0,Alan Brennert,2003.0,Moloka'i,Moloka'i,en-US,4.15,75307,81313,7740,815,2666,12907,32048,32877,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441920261l/3273._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1217,11901,11901,2926133,68,99471426,9780099471420.0,Anne Rice,1990.0,The Witching Hour,\"The Witching Hour (Lives of the Mayfair Witches, #1)\",eng,4.1,79824,87921,2997,1837,4549,15324,27118,39093,https://images.gr-assets.com/books/1327289387l/11901.jpg,https://images.gr-assets.com/books/1327289387s/11901.jpg\n1218,17309,17309,2298572,40,1581345283,9781581345280.0,Frank E. Peretti,1986.0,This Present Darkness,\"This Present Darkness (Darkness, #1)\",eng,4.24,71815,74070,1576,1574,2825,10154,21084,38433,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202265l/17309.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1219,16113791,16113791,21930423,35,,,Jessica Sorensen,2012.0,The Coincidence of Callie & Kayden,\"The Coincidence of Callie & Kayden (The Coincidence, #1)\",eng,4.21,97615,101187,6230,1680,3767,14668,32938,48134,https://images.gr-assets.com/books/1353550763l/16113791.jpg,https://images.gr-assets.com/books/1353550763s/16113791.jpg\n1220,24612118,24612118,43913972,50,1594634475,9781594634480.0,Lauren Groff,2015.0,Fates and Furies,Fates and Furies,eng,3.56,66085,77785,10342,3942,8645,21297,27975,15926,https://images.gr-assets.com/books/1434750235l/24612118.jpg,https://images.gr-assets.com/books/1434750235s/24612118.jpg\n1221,22695,22695,2055065,54,440243750,9780440243760.0,Judy Blume,1998.0,Summer Sisters,Summer Sisters,,3.83,73515,77703,3424,1369,5413,21330,26826,22765,https://images.gr-assets.com/books/1167356646l/22695.jpg,https://images.gr-assets.com/books/1167356646s/22695.jpg\n1222,138959,138959,2884160,88,64400565,9780064400560.0,\"E.B. White, Garth Williams\",1945.0,Stuart Little,Stuart Little,en-US,3.88,89033,90474,2012,1571,5851,23885,29647,29520,https://images.gr-assets.com/books/1347367311l/138959.jpg,https://images.gr-assets.com/books/1347367311s/138959.jpg\n1223,46654,46654,41350,78,380508567,9780380508560.0,Isaac Asimov,1953.0,The Foundation Trilogy,\"The Foundation Trilogy (Foundation, #1-3)\",eng,4.39,72311,75211,1087,444,1409,8322,23209,41827,https://images.gr-assets.com/books/1316412178l/46654.jpg,https://images.gr-assets.com/books/1316412178s/46654.jpg\n1224,771,8049273,907243,75,375708111,9780375708110.0,Brian Greene,1999.0,\"The Elegant Universe: Superstrings, Hidden Dimensions, and the Quest for the Ultimate Theory\",\"The Elegant Universe: Superstrings, Hidden Dimensions, and the Quest for the Ultimate Theory\",en-US,4.06,32626,69530,1563,1482,2773,12304,26557,26414,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430864039l/771.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1225,131123,131123,1165972,75,64408639,9780064408640.0,\"Lemony Snicket, Brett Helquist\",2000.0,The Austere Academy,\"The Austere Academy (A Series of Unfortunate Events, #5)\",eng,3.97,99311,103396,2680,1005,4992,25048,37595,34756,https://images.gr-assets.com/books/1320706187l/131123.jpg,https://images.gr-assets.com/books/1320706187s/131123.jpg\n1226,6424,6424,3207062,70,312980140,9780312980150.0,Janet Evanovich,2001.0,Seven Up,\"Seven Up (Stephanie Plum, #7)\",en-US,4.15,94506,98706,1833,243,1819,19146,38698,38800,https://images.gr-assets.com/books/1311720512l/6424.jpg,https://images.gr-assets.com/books/1311720512s/6424.jpg\n1228,91479,91479,2183,42,451459407,9780451459400.0,Jim Butcher,2003.0,Death Masks,\"Death Masks (The Dresden Files, #5)\",eng,4.32,83664,90864,2503,125,812,11099,37096,41732,https://images.gr-assets.com/books/1345557713l/91479.jpg,https://images.gr-assets.com/books/1345557713s/91479.jpg\n1229,786256,786256,1316672,39,152802177,9780152802170.0,Janell Cannon,1993.0,Stellaluna,Stellaluna,en-US,4.22,87423,88403,1148,1330,3298,14442,24455,44878,https://images.gr-assets.com/books/1275583521l/786256.jpg,https://images.gr-assets.com/books/1275583521s/786256.jpg\n1230,902715,902715,2116927,66,575077883,9780575077880.0,Joe Abercrombie,2007.0,Before They Are Hanged,Before They Are Hanged (The First Law #2),eng,4.27,68865,77915,2589,462,1479,9236,32187,34551,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179318094l/902715._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1231,898885,898885,3345089,48,345494997,9780345494990.0,Nancy Horan,2007.0,Loving Frank,Loving Frank,en-US,3.73,72734,77833,8842,1811,6127,20667,31566,17662,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441383192l/898885._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1232,6425,6425,1616132,57,312983867,9780312983860.0,\"Janet Evanovich, Lorelei King\",2002.0,Hard Eight,\"Hard Eight (Stephanie Plum, #8)\",en-US,4.17,93057,97450,1871,252,1930,18305,37742,39221,https://images.gr-assets.com/books/1479699438l/6425.jpg,https://images.gr-assets.com/books/1479699438s/6425.jpg\n1233,150037,150037,324576,62,60566221,9780060566230.0,\"Lemony Snicket, Brett Helquist\",2001.0,The Vile Village,\"The Vile Village (A Series of Unfortunate Events, #7)\",eng,3.94,89733,95791,1935,1165,4930,24324,33902,31470,https://images.gr-assets.com/books/1352066958l/150037.jpg,https://images.gr-assets.com/books/1352066958s/150037.jpg\n1234,67920,67920,2912372,36,446359408,9780446359400.0,Flora Rheta Schreiber,1973.0,Sybil,Sybil: The Classic True Story of a Woman Possessed by Sixteen Personalities,en-US,3.99,72493,73855,1271,1086,3345,16767,26328,26329,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388372325l/67920.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1235,55030,55030,3237312,93,375508325,9780375508320.0,Carl Sagan,1980.0,Cosmos,Cosmos,eng,4.35,76440,81022,1833,1403,2044,8926,22885,45764,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388620656l/55030.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1236,22288,22288,1602272,60,1400032822,9781400032820.0,Chuck Palahniuk,2005.0,Haunted: A Novel of Stories,Haunted,eng,3.59,68861,72553,3775,3632,8551,20095,22184,18091,https://images.gr-assets.com/books/1391152326l/22288.jpg,https://images.gr-assets.com/books/1391152326s/22288.jpg\n1237,37095,37095,517040,98,051722285X,9780517222850.0,Rosamunde Pilcher,1987.0,The Shell Seekers,The Shell Seekers,eng,4.13,73573,77706,2028,1035,3074,14363,25457,33777,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385213408l/37095.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1238,4952,4952,3271214,53,1932416641,9781932416640.0,Dave Eggers,2006.0,What Is the What: The Autobiography of Valentino Achak Deng,What Is the What,eng,4.16,59333,64740,6741,684,2128,9938,25665,26325,https://images.gr-assets.com/books/1328837457l/4952.jpg,https://images.gr-assets.com/books/1328837457s/4952.jpg\n1239,23878,23878,59137,269,140003471X,9781400034710.0,\"Gabriel García Márquez, Gregory Rabassa\",1981.0,Crónica de una muerte anunciada,Chronicle of a Death Foretold,eng,3.95,56200,81653,3996,955,4077,18369,33190,25062,https://images.gr-assets.com/books/1430736599l/23878.jpg,https://images.gr-assets.com/books/1430736599s/23878.jpg\n1240,1848444,1848444,2766104,13,582416396,9780582416390.0,\"Ronald Holt, Arthur Conan Doyle\",1891.0,A Scandal in Bohemia,\"A Scandal in Bohemia (The Adventures of Sherlock Holmes, #1)\",,4.22,65422,65548,538,1003,1472,9654,23231,30188,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189170223l/1848444._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1241,10587120,10587120,15494456,21,805093079,9780805093070.0,\"Bill O'Reilly, Martin Dugard\",2011.0,Killing Lincoln: The Shocking Assassination that Changed America Forever,Killing Lincoln: The Shocking Assassination that Changed America Forever,eng,4.02,71868,76669,5847,3032,3067,12962,28216,29392,https://images.gr-assets.com/books/1317793681l/10587120.jpg,https://images.gr-assets.com/books/1317793681s/10587120.jpg\n1242,17262100,17262100,23858897,65,307265749,9780307265750.0,Jhumpa Lahiri,2013.0,The Lowland,The Lowland,eng,3.82,62231,69268,7249,1356,4113,16972,30069,16758,https://images.gr-assets.com/books/1366930267l/17262100.jpg,https://images.gr-assets.com/books/1366930267s/17262100.jpg\n1243,60400,60400,810498,89,142406635,9780142406630.0,John Flanagan,2004.0,The Ruins of Gorlan,\"The Ruins of Gorlan (Ranger's Apprentice, #1)\",eng,4.2,83085,91569,5991,1319,3020,14065,30897,42268,https://images.gr-assets.com/books/1293952830l/60400.jpg,https://images.gr-assets.com/books/1293952830s/60400.jpg\n1244,5152478,5152478,5219477,56,067001110X,9780670011100.0,Laurie Halse Anderson,2009.0,Wintergirls,Wintergirls,eng,3.98,87665,92046,7981,2390,5689,18550,29809,35608,https://images.gr-assets.com/books/1346343878l/5152478.jpg,https://images.gr-assets.com/books/1346343878s/5152478.jpg\n1245,5354,5354,1854517,107,385339674,9780385339670.0,John Grisham,2000.0,The Brethren,The Brethren,,3.71,69351,73550,1511,1188,5217,23942,26290,16913,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923281l/5354.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1246,45112,33396914,503752,84,553565699,9780553565690.0,Robin Hobb,1997.0,Assassin's Quest,\"Assassin's Quest (Farseer Trilogy, #3)\",eng,4.18,67125,82699,2846,846,3016,12847,29868,36122,https://images.gr-assets.com/books/1399584431l/45112.jpg,https://images.gr-assets.com/books/1399584431s/45112.jpg\n1247,228296,228296,883024,146,451194004,9780451194010.0,Ira Levin,1967.0,Rosemary's Baby,Rosemary's Baby,eng,3.96,78766,84575,2256,1458,4285,19367,30332,29133,https://images.gr-assets.com/books/1327878603l/228296.jpg,https://images.gr-assets.com/books/1327878603s/228296.jpg\n1248,59219,59219,3324421,130,375507779,9780375507780.0,\"Stephen King, Peter Straub\",1984.0,The Talisman,\"The Talisman (The Talisman, #1)\",en-US,4.12,79508,87297,2350,1188,4149,15834,27743,38383,https://images.gr-assets.com/books/1170530286l/59219.jpg,https://images.gr-assets.com/books/1170530286s/59219.jpg\n1249,140974,140974,1098593,59,812550293,9780812550290.0,Robert Jordan,1998.0,The Path of Daggers,\"The Path of Daggers (Wheel of Time, #8)\",eng,3.9,74815,82129,1334,1130,5454,20796,27930,26819,https://images.gr-assets.com/books/1390508613l/140974.jpg,https://images.gr-assets.com/books/1390508613s/140974.jpg\n1250,412732,412732,827497,113,140042520,9780140042530.0,Jack Kerouac,1958.0,The Dharma Bums,The Dharma Bums,en-US,3.94,62454,67665,2346,1290,4017,15055,24541,22762,https://images.gr-assets.com/books/1428986082l/412732.jpg,https://images.gr-assets.com/books/1428986082s/412732.jpg\n1251,6468666,6468666,6659237,39,1841497126,9781841497130.0,Kelley Armstrong,2010.0,The Reckoning,\"The Reckoning (Darkest Powers, #3)\",en-GB,4.21,92922,96809,3418,1256,3395,15949,29157,47052,https://images.gr-assets.com/books/1327154591l/6468666.jpg,https://images.gr-assets.com/books/1327154591s/6468666.jpg\n1252,11869272,11869272,16826575,59,1400067553,9781400067560.0,Katherine Boo,2012.0,\"Behind the Beautiful Forevers: Life, Death, and Hope in a Mumbai Undercity\",\"Behind the Beautiful Forevers: Life, Death, and Hope in a Mumbai Undercity\",en-US,3.97,69596,77078,9324,1447,4028,15165,30994,25444,https://images.gr-assets.com/books/1315601232l/11869272.jpg,https://images.gr-assets.com/books/1315601232s/11869272.jpg\n1253,152380,152380,2768848,162,152058109,9780152058100.0,\"P.L. Travers, Mary Shepard\",1934.0,Mary Poppins,\"Mary Poppins (Mary Poppins, #1)\",en-US,4.05,82706,87604,3295,1382,4493,18678,27207,35844,https://images.gr-assets.com/books/1327947805l/152380.jpg,https://images.gr-assets.com/books/1327947805s/152380.jpg\n1254,887877,887877,856785,48,553804685,9780553804680.0,Scott Lynch,2007.0,Red Seas Under Red Skies,\"Red Seas Under Red Skies (Gentleman Bastard, #2)\",eng,4.23,68255,78603,3979,432,1714,10685,31914,33858,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1504628967l/887877._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1255,139253,139253,2000351,67,679734775,9780679734770.0,Sandra Cisneros,1984.0,The House on Mango Street,The House on Mango Street,eng,3.57,81579,86783,6923,4086,9341,25470,28936,18950,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348245688l/139253.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1256,1971304,1971304,1974537,72,670018708,9780670018700.0,David Benioff,2008.0,City of Thieves,City of Thieves,en-GB,4.28,68063,77915,8465,458,1566,9324,31105,35462,https://images.gr-assets.com/books/1392015757l/1971304.jpg,https://images.gr-assets.com/books/1392015757s/1971304.jpg\n1257,1421990,1421990,1412415,56,61245089,9780061245080.0,Jeaniene Frost,2007.0,Halfway to the Grave,\"Halfway to the Grave (Night Huntress, #1)\",eng,4.18,106608,113610,6298,2461,4690,16805,35199,54455,https://images.gr-assets.com/books/1373855613l/1421990.jpg,https://images.gr-assets.com/books/1373855613s/1421990.jpg\n1258,31456,31456,866909,116,141318309,9780141318300.0,\"Roald Dahl, Quentin Blake\",1980.0,The Twits,The Twits,eng,3.94,82458,90334,2733,1264,5201,22531,29859,31479,https://images.gr-assets.com/books/1406090629l/31456.jpg,https://images.gr-assets.com/books/1406090629s/31456.jpg\n1259,334643,334643,2339177,66,60278250,9780060278250.0,Garth Nix,2003.0,Abhorsen,\"Abhorsen (Abhorsen, #3)\",en-US,4.29,80740,87330,1798,1355,2076,10963,28715,44221,https://images.gr-assets.com/books/1401683669l/334643.jpg,https://images.gr-assets.com/books/1401683669s/334643.jpg\n1260,7510,7510,22576,60,446612545,9780446612550.0,\"James Patterson, Peter de Jonge\",2002.0,The Beach House,The Beach House,eng,3.82,68676,70371,1628,1125,4351,20127,25271,19497,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199852l/7510.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1261,10611,10611,3083085,142,751504572,9780751504580.0,Stephen King,1987.0,Eyes of the Dragon,The Eyes of the Dragon,eng,3.92,72714,81649,3048,1238,4959,19595,28784,27073,https://images.gr-assets.com/books/1430121758l/10611.jpg,https://images.gr-assets.com/books/1430121758s/10611.jpg\n1262,112,112,3634573,116,441104029,9780441104020.0,Frank Herbert,1976.0,Children of Dune,Children of Dune (Dune Chronicles #3),eng,3.9,74133,79736,1374,861,4425,20138,30723,23589,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391051267l/112.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1263,8855321,8855321,13730452,55,1841499889,9781841499890.0,James S.A. Corey,2011.0,Leviathan Wakes,\"Leviathan Wakes (The Expanse, #1)\",eng,4.2,68416,82905,6831,638,2046,11177,35570,33474,https://images.gr-assets.com/books/1411013134l/8855321.jpg,https://images.gr-assets.com/books/1411013134s/8855321.jpg\n1264,18006496,18006496,25272067,36,1619636042,9781619636040.0,Sarah J. Maas,2015.0,Queen of Shadows,\"Queen of Shadows (Throne of Glass, #4)\",eng,4.6,99067,114854,14430,830,1492,6544,24703,81285,https://images.gr-assets.com/books/1441230104l/18006496.jpg,https://images.gr-assets.com/books/1441230104s/18006496.jpg\n1265,15197,15197,1782551,25,679729771,9780679729780.0,Art Spiegelman,1991.0,Maus II : And Here My Troubles Began ,\"Maus II: A Survivor's Tale: And Here My Troubles Began (Maus, #2)\",eng,4.41,90147,91269,2392,1337,1827,8751,25772,53582,https://images.gr-assets.com/books/1327887479l/15197.jpg,https://images.gr-assets.com/books/1327887479s/15197.jpg\n1266,310258,310258,51286,54,140501827,9780140501830.0,Ezra Jack Keats,1962.0,The Snowy Day,The Snowy Day,eng,4.13,81914,82700,2282,1758,4170,15058,22324,39390,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347624377l/310258.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1267,40331,40331,826485,45,747267634,9780747267640.0,Janet Evanovich,2003.0,To the Nines,\"To the Nines (Stephanie Plum, #9)\",eng,4.16,86963,93412,1786,247,1811,17809,36430,37115,https://images.gr-assets.com/books/1169433446l/40331.jpg,https://images.gr-assets.com/books/1169433446s/40331.jpg\n1268,12987977,12987977,17394448,40,312554192,9780312554190.0,Emily Giffin,2012.0,Where We Belong,Where We Belong,en-US,3.86,68224,73648,4986,974,3650,19479,29787,19758,https://images.gr-assets.com/books/1340320747l/12987977.jpg,https://images.gr-assets.com/books/1340320747s/12987977.jpg\n1269,16213,16213,909325,67,385495226,9780385495230.0,Richard   Preston,1994.0,The Hot Zone: The Terrifying True Story of the Origins of the Ebola Virus,The Hot Zone: The Terrifying True Story of the Origins of the Ebola Virus,eng,4.1,72207,76615,3904,865,2675,14163,29413,29499,https://images.gr-assets.com/books/1413747743l/16213.jpg,https://images.gr-assets.com/books/1413747743s/16213.jpg\n1270,9557,9557,1813695,124,99448475,9780099448470.0,\"Haruki Murakami, Philip Gabriel\",1999.0,スプートニクの恋人 [Supūtoniku no Koibito],Sputnik Sweetheart,eng,3.82,62229,75465,4207,657,4218,21129,31826,17635,https://images.gr-assets.com/books/1486764070l/9557.jpg,https://images.gr-assets.com/books/1486764070s/9557.jpg\n1271,17465453,17465453,21889418,72,670024856,9780670024860.0,Elizabeth Gilbert,2012.0,The Signature of All Things,The Signature of All Things,eng,3.81,61135,70375,9304,2242,5439,16022,26347,20325,https://images.gr-assets.com/books/1364277893l/17465453.jpg,https://images.gr-assets.com/books/1364277893s/17465453.jpg\n1272,8600,8600,854886,38,1592402038,9781592402040.0,Lynne Truss,2003.0,\"Eats, Shoots and Leaves\",\"Eats, Shoots & Leaves: The Zero Tolerance Approach to Punctuation\",en-US,3.86,79117,84132,4230,1519,5028,21237,32009,24339,https://images.gr-assets.com/books/1473392595l/8600.jpg,https://images.gr-assets.com/books/1473392595s/8600.jpg\n1273,30264,30264,30640,56,60572965,9780060572970.0,Kim Harrison,2004.0,Dead Witch Walking,\"Dead Witch Walking (The Hollows, #1)\",en-US,4.04,91390,97097,4184,2671,5133,18380,30713,40200,https://images.gr-assets.com/books/1391713381l/30264.jpg,https://images.gr-assets.com/books/1391713381s/30264.jpg\n1275,2832909,2832909,2859015,53,752898477,9780752898480.0,Diana Gabaldon,2009.0,An Echo in the Bone,\"An Echo in the Bone (Outlander, #7)\",eng,4.42,68854,85495,5051,426,1486,8981,25413,49189,https://images.gr-assets.com/books/1370918297l/2832909.jpg,https://images.gr-assets.com/books/1370918297s/2832909.jpg\n1276,7488244,7488244,9621771,41,61996165,9780061996160.0,Cynthia Hand,2011.0,Unearthly,\"Unearthly (Unearthly, #1)\",en-US,4.06,99942,104023,7458,2808,5060,18333,34714,43108,https://images.gr-assets.com/books/1324782984l/7488244.jpg,https://images.gr-assets.com/books/1324782984s/7488244.jpg\n1277,73186,73186,333464,52,310226058,9780310226060.0,Lee Strobel,1988.0,The Case for Christ,The Case for Christ,,4.1,67128,69643,1377,2248,3100,11150,21955,31190,https://images.gr-assets.com/books/1448776489l/73186.jpg,https://images.gr-assets.com/books/1448776489s/73186.jpg\n1278,13888,13888,987750,53,812577566,9780812577560.0,Robert Jordan,2005.0,Knife of Dreams,\"Knife of Dreams (Wheel of Time, #11)\",en-US,4.12,71379,77436,1410,1036,3002,13517,28076,31805,https://images.gr-assets.com/books/1397856387l/13888.jpg,https://images.gr-assets.com/books/1397856387s/13888.jpg\n1279,13083,13083,817164,59,440421705,9780440421700.0,Carl Hiaasen,2002.0,Hoot,Hoot,eng,3.81,75275,82386,3953,1487,5482,23106,29621,22690,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350164l/13083.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1280,12914,12914,288738,830,679729526,9780679729520.0,\"Virgil, Robert Fitzgerald\",-17.0,Æneis,The Aeneid,eng,3.81,75051,85351,1804,1531,6436,23683,28909,24792,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923968l/12914.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1281,13503109,13503109,19051762,56,1594487367,9781594487360.0,Junot Díaz,2012.0,This is How You Lose Her,This Is How You Lose Her,eng,3.75,66720,72281,6656,2222,5928,18086,27736,18309,https://images.gr-assets.com/books/1342596676l/13503109.jpg,https://images.gr-assets.com/books/1342596676s/13503109.jpg\n1282,17803,17803,3070852,127,307265838,9780307265840.0,\"Haruki Murakami, Jay Rubin\",2004.0,アフターダーク [Afutā dāku],After Dark,eng,3.68,64278,76692,5322,926,5833,24947,30379,14607,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437952316l/17803._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1283,227265,227265,1041162,43,553375407,9780553375400.0,Daniel Quinn,1992.0,Ishmael: An Adventure of the Mind and Spirit,Ishmael:A Novel,en-US,3.97,63304,65968,4332,2488,4505,11881,20450,26644,https://images.gr-assets.com/books/1388180479l/227265.jpg,https://images.gr-assets.com/books/1388180479s/227265.jpg\n1284,6584188,6584188,6777681,48,1416995552,9781416995560.0,Jenny Han,2010.0,It's Not Summer Without You,\"It's Not Summer Without You (Summer, #2)\",en-US,4.14,80367,84866,4129,1171,3813,15170,26207,38505,https://images.gr-assets.com/books/1479864019l/6584188.jpg,https://images.gr-assets.com/books/1479864019s/6584188.jpg\n1285,10194514,10194514,15093690,52,373210493,9780373210500.0,Katie McGarry,2012.0,Pushing the Limits,\"Pushing the Limits (Pushing the Limits, #1)\",eng,4.08,93818,100472,7483,2464,4565,17592,33721,42130,https://images.gr-assets.com/books/1322770025l/10194514.jpg,https://images.gr-assets.com/books/1322770025s/10194514.jpg\n1286,111450,111450,6247751,103,439321611,9780439321620.0,\"Kennilworthy Whisp, J.K. Rowling\",2001.0,Quidditch Through the Ages,Quidditch Through the Ages,eng,3.85,90908,106088,3502,1367,8104,29884,32041,34692,https://images.gr-assets.com/books/1369689506l/111450.jpg,https://images.gr-assets.com/books/1369689506s/111450.jpg\n1287,147732,147732,142568,19,395401461,9780395401460.0,\"Harry Allard, James  Marshall\",1977.0,Miss Nelson Is Missing!,\"Miss Nelson Is Missing! (Miss Nelson, #1)\",eng,4.26,77206,77473,1048,840,2512,12582,21038,40501,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546976385l/147732._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1288,9014,9014,522169,109,451196716,9780451196710.0,\"Richard Bachman, Stephen King\",1979.0,The Long Walk,The Long Walk,eng,4.11,71775,79936,3980,813,3338,14937,28192,32656,https://images.gr-assets.com/books/1309212400l/9014.jpg,https://images.gr-assets.com/books/1309212400s/9014.jpg\n1289,172327,172327,1168344,66,60566213,9780060566210.0,\"Lemony Snicket, Brett Helquist\",2001.0,The Ersatz Elevator,\"The Ersatz Elevator (A Series of Unfortunate Events, #6)\",eng,4.01,90071,96706,2322,890,4245,22224,35182,34165,https://images.gr-assets.com/books/1352066916l/172327.jpg,https://images.gr-assets.com/books/1352066916s/172327.jpg\n1290,12930,12930,901952,56,385732538,9780385732540.0,Lois Lowry,2004.0,Messenger ,\"Messenger (The Giver, #3)\",eng,3.9,79746,89295,6721,737,4513,22960,35888,25197,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924375l/12930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1291,42898,42898,2958166,52,451412354,9780451412360.0,J.R. Ward,2007.0,Lover Revealed,\"Lover Revealed (Black Dagger Brotherhood, #4)\",eng,4.3,97830,106471,3930,622,2703,14865,33783,54498,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389646548l/42898.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1292,5413,5413,40802405,22,385516487,9780385516490.0,\"Stephen King, Jerry N. Uelsmann\",2005.0,'Salem's Lot The Illustrated Edition,'Salem's Lot,eng,4.25,72797,74725,482,460,1854,12040,24920,35451,https://images.gr-assets.com/books/1320478491l/5413.jpg,https://images.gr-assets.com/books/1320478491s/5413.jpg\n1293,83369,83369,80497,44,316057770,9780316057780.0,\"Trenton Lee Stewart, Carson Ellis\",2007.0,The Mysterious Benedict Society,\"The Mysterious Benedict Society (The Mysterious Benedict Society, #1)\",en-US,4.14,87335,93495,8420,1236,3820,16158,32050,40231,https://images.gr-assets.com/books/1342715444l/83369.jpg,https://images.gr-assets.com/books/1342715444s/83369.jpg\n1294,43369,43369,3442838,83,446579807,9780446579800.0,Christopher Hitchens,2007.0,God is Not Great: How Religion Poisons Everything,god is Not Great: How Religion Poisons Everything,eng,3.96,64347,69948,3989,2982,3856,12657,24274,26179,https://images.gr-assets.com/books/1411218313l/43369.jpg,https://images.gr-assets.com/books/1411218313s/43369.jpg\n1295,17029526,17029526,23346114,42,1301627445,9781301627450.0,Abbi Glines,2013.0,\"Never Too Far (Too Far, #2)\",\"Never Too Far (Rosemary Beach, #2; Too Far, #2)\",eng,4.21,97616,103058,5912,1356,3842,15546,33228,49086,https://images.gr-assets.com/books/1356822956l/17029526.jpg,https://images.gr-assets.com/books/1356822956s/17029526.jpg\n1296,15860,15860,1749610,97,61015733,9780061015730.0,Michael Crichton,2004.0,State of Fear,State of Fear,eng,3.69,65397,70300,2686,2603,6100,19559,24269,17769,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554227284l/15860._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1297,10798416,10798416,15464655,59,316122386,9780316122380.0,Jennifer E. Smith,2012.0,The Statistical Probability of Love at First Sight,The Statistical Probability of Love at First Sight,eng,3.8,89356,95856,9595,2569,7379,25452,32106,28350,https://images.gr-assets.com/books/1337187623l/10798416.jpg,https://images.gr-assets.com/books/1337187623s/10798416.jpg\n1298,59263,59263,57689,80,786836547,9780786836540.0,Jonathan Stroud,2004.0,The Golem's Eye,\"The Golem's Eye (Bartimaeus, #2)\",en-US,4.09,69058,74577,1656,1500,2678,13194,27306,29899,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441130242l/59263._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1299,9566,9566,1105809,40,184243022X,9781842430220.0,Tom Robbins,1980.0,Still Life with Woodpecker,Still Life with Woodpecker,eng,4.04,56802,61511,2462,960,2789,11834,23239,22689,https://images.gr-assets.com/books/1308749778l/9566.jpg,https://images.gr-assets.com/books/1308749778s/9566.jpg\n1300,49465,49465,3402913,43,156031663,9780156031660.0,Jenna Blum,2004.0,Those Who Save Us,Those Who Save Us,en-US,4.12,68480,73568,5570,765,2223,12264,30513,27803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442711741l/49465._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1301,1110,1110,3204998,104,385340540,9780385340540.0,John Grisham,2005.0,The Broker,The Broker,eng,3.77,65428,69823,2266,893,4463,21542,25960,16965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924342l/1110.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1302,8235178,8235178,13082532,56,1595143971,9781595143980.0,Beth Revis,2011.0,Across the Universe,\"Across the Universe (Across the Universe, #1)\",eng,3.78,94176,100748,9649,3870,8338,24592,33481,30467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401852218l/8235178.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1303,347852,347852,2747475,94,671250671,9780671250680.0,M. Scott Peck,1978.0,\"The Road Less Traveled:  A New Psychology of Love, Traditional Values, and Spiritual Growth\",\"The Road Less Traveled: A New Psychology of Love, Traditional Values, and Spiritual Growth\",en-US,4.03,61238,66741,1689,1319,3294,13426,22757,25945,https://images.gr-assets.com/books/1322673263l/347852.jpg,https://images.gr-assets.com/books/1322673263s/347852.jpg\n1304,99383,99383,227172,40,451459873,9780451459880.0,Jim Butcher,2004.0,Blood Rites,\"Blood Rites (The Dresden Files, #6)\",eng,4.33,79627,86375,2307,133,765,10036,34916,40525,https://images.gr-assets.com/books/1345557965l/99383.jpg,https://images.gr-assets.com/books/1345557965s/99383.jpg\n1305,297249,297249,945340,56,807508527,9780807508530.0,\"Gertrude Chandler Warner, L. Kate Deal\",1942.0,The Boxcar Children,\"The Boxcar Children (The Boxcar Children, #1)\",en-US,4.09,92916,95943,2391,2080,4487,18904,27979,42493,https://images.gr-assets.com/books/1173489650l/297249.jpg,https://images.gr-assets.com/books/1173489650s/297249.jpg\n1306,16171291,16171291,22018742,65,143123238,9780143123230.0,A.S.A. Harrison,2013.0,The Silent Wife,The Silent Wife,eng,3.3,60323,72169,7882,2753,10948,28278,22276,7914,https://images.gr-assets.com/books/1356094989l/16171291.jpg,https://images.gr-assets.com/books/1356094989s/16171291.jpg\n1307,10600242,10600242,15507935,56,91940737,9780091940740.0,Caitlin Moran,2011.0,How to Be a Woman,How to Be a Woman,eng,3.73,70446,79028,7362,3890,7041,18498,26706,22893,https://images.gr-assets.com/books/1405909800l/10600242.jpg,https://images.gr-assets.com/books/1405909800s/10600242.jpg\n1308,17927395,17927395,25126749,39,,,Sarah J. Maas,2016.0,A Court of Mist and Fury,\"A Court of Mist and Fury (A Court of Thorns and Roses, #2)\",eng,4.72,108384,126491,22700,931,1420,4725,18000,101415,https://images.gr-assets.com/books/1485259138l/17927395.jpg,https://images.gr-assets.com/books/1485259138s/17927395.jpg\n1309,9439303,9439303,14323907,56,297854399,9780297854400.0,Keith Richards,2010.0,Life,Life,en-GB,3.84,60409,65971,4137,2452,4587,14539,23848,20545,https://images.gr-assets.com/books/1327960451l/9439303.jpg,https://images.gr-assets.com/books/1327960451s/9439303.jpg\n1310,85301,85301,4345835,69,676979343,9780676979340.0,Jhumpa Lahiri,2008.0,Unaccustomed Earth,Unaccustomed Earth,eng,4.11,60126,67585,6978,442,2284,11807,27840,25212,https://images.gr-assets.com/books/1320398140l/85301.jpg,https://images.gr-assets.com/books/1320398140s/85301.jpg\n1311,5191,5191,3131254,77,316601950,9780316601960.0,Anita Shreve,1998.0,The Pilot's Wife,The Pilot's Wife,eng,3.5,71777,76668,3878,1935,8327,27878,26648,11880,https://images.gr-assets.com/books/1435011220l/5191.jpg,https://images.gr-assets.com/books/1435011220s/5191.jpg\n1312,11762,28251250,327422,81,140283307,9780140283300.0,Don DeLillo,1985.0,White Noise,White Noise,eng,3.86,55678,70218,3908,1902,5355,15405,25335,22221,https://images.gr-assets.com/books/1327934706l/11762.jpg,https://images.gr-assets.com/books/1327934706s/11762.jpg\n1313,42389,42389,903474,68,743464117,9780743464120.0,Stephen E. Ambrose,1992.0,\"Band of Brothers: E Company, 506th Regiment, 101st Airborne from Normandy to Hitler's Eagle's Nest\",\"Band of Brothers: E Company, 506th Regiment, 101st Airborne from Normandy to Hitler's Eagle's Nest\",eng,4.42,66079,70908,2067,593,1088,6549,22048,40630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247701l/42389.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1314,22463,22463,481941,1004,785819118,9780785819110.0,Charles Darwin,1859.0,On the Origin of Species by Means of Natural Selection or the Preservation of Favoured Races in the Struggle for Life,The Origin of Species,eng,3.97,64162,74056,1729,2513,4297,15150,22868,29228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298417570l/22463.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1315,25179,25179,781193,40,1891830430,9781891830430.0,Craig Thompson,2003.0,Blankets,Blankets,eng,4.06,70454,72621,5024,1727,3601,13030,24472,29791,https://images.gr-assets.com/books/1460925949l/25179.jpg,https://images.gr-assets.com/books/1460925949s/25179.jpg\n1316,2731276,2731276,2168242,70,61374229,9780061374230.0,David Wroblewski,2008.0,The Story of Edgar Sawtelle,The Story of Edgar Sawtelle,eng,3.6,70382,79454,12981,4187,9296,19768,27012,19191,https://images.gr-assets.com/books/1310466361l/2731276.jpg,https://images.gr-assets.com/books/1310466361s/2731276.jpg\n1317,5171,5171,1737200,43,345439104,9780345439110.0,Christina Schwarz,2000.0,Drowning Ruth,Drowning Ruth,eng,3.73,67768,70953,2178,1081,4904,21822,27694,15452,https://images.gr-assets.com/books/1390180160l/5171.jpg,https://images.gr-assets.com/books/1390180160s/5171.jpg\n1318,51504,51504,823130,131,876850867,9780876850860.0,Charles Bukowski,1971.0,Post Office,Post Office,en-US,4.01,59295,68408,2766,790,2908,13689,28738,22283,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424999238l/51504.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1319,469571,469571,1907621,106,679744398,9780679744400.0,Cormac McCarthy,1992.0,All the Pretty Horses,\"All the Pretty Horses (The Border Trilogy, #1)\",eng,3.97,68451,72899,4810,1406,3865,14354,29344,23930,https://images.gr-assets.com/books/1498463335l/469571.jpg,https://images.gr-assets.com/books/1498463335s/469571.jpg\n1320,3586,3586,6658413,117,1593082045,9781593082050.0,\"Arthur Conan Doyle, Kyle Freeman\",1914.0,\"Sherlock Holmes: The Complete Novels and Stories, Vol 2\",\"The Complete Sherlock Holmes, Vol 2\",,4.46,66857,71825,328,463,1077,7005,19926,43354,https://images.gr-assets.com/books/1347663158l/3586.jpg,https://images.gr-assets.com/books/1347663158s/3586.jpg\n1321,1237398,1237398,361124,46,1569319014,9781569319020.0,\"Eiichirō Oda, Andy Nakatani\",1997.0,\"One Piece, Volume 01\",\"One Piece, Volume 01: Romance Dawn (One Piece, #1)\",eng,4.42,67047,67703,776,1561,2018,6936,13269,43919,https://images.gr-assets.com/books/1318523719l/1237398.jpg,https://images.gr-assets.com/books/1318523719s/1237398.jpg\n1322,29127,29127,902304,73,451450523,9780451450520.0,Peter S. Beagle,1968.0,The Last Unicorn,\"The Last Unicorn (The Last Unicorn, #1)\",eng,4.18,76277,80619,3358,1156,3142,13820,24629,37872,https://images.gr-assets.com/books/1358147318l/29127.jpg,https://images.gr-assets.com/books/1358147318s/29127.jpg\n1323,769483,769483,2215929,98,60577312,9780060577320.0,Angie Sage,2005.0,Magyk,\"Magyk (Septimus Heap, #1)\",eng,3.8,86805,91089,4392,2917,7378,22850,29932,28012,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404330986l/769483.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1324,781110,781110,212043,27,689848919,9780689848920.0,Laurie Halse Anderson,2000.0,Fever 1793,Fever 1793,en-US,3.89,81945,83612,4773,1268,4721,20863,31432,25328,https://images.gr-assets.com/books/1381743126l/781110.jpg,https://images.gr-assets.com/books/1381743126s/781110.jpg\n1325,1914973,1914973,6504351,56,670018864,9780670018860.0,Tana French,2008.0,The Likeness,\"The Likeness (Dublin Murder Squad, #2)\",eng,4.05,72480,80243,6945,915,2856,14814,34478,27180,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348934952l/1914973.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1326,22551730,22551730,42009388,46,307408868,9780307408860.0,Erik Larson,2015.0,Dead Wake: The Last Crossing of the Lusitania,Dead Wake: The Last Crossing of the Lusitania,eng,4.07,61439,73006,8719,1070,2171,12326,32604,24835,https://images.gr-assets.com/books/1408923747l/22551730.jpg,https://images.gr-assets.com/books/1408923747s/22551730.jpg\n1327,77270,77270,17441265,1306,812504690,9780812504700.0,Rudyard Kipling,1894.0,The Jungle Book,The Jungle Book,eng,3.94,67107,81305,2330,1096,4323,20388,27903,27595,https://images.gr-assets.com/books/1327873594l/77270.jpg,https://images.gr-assets.com/books/1327873594s/77270.jpg\n1328,18144124,18144124,20434723,1,1439177724,9781439177720.0,Terry Hayes,2013.0,I Am Pilgrim,\"I Am Pilgrim (Pilgrim, #1)\",eng,4.23,49740,71990,7187,1949,2805,8408,22567,36261,https://images.gr-assets.com/books/1403345411l/18144124.jpg,https://images.gr-assets.com/books/1403345411s/18144124.jpg\n1329,6295,6295,2290688,47,872863107,9780872863100.0,\"Allen Ginsberg, William Carlos Williams\",1956.0,Howl and Other Poems ,Howl and Other Poems,eng,4.14,71968,75329,1255,1544,3203,12223,24316,34043,https://images.gr-assets.com/books/1327870926l/6295.jpg,https://images.gr-assets.com/books/1327870926s/6295.jpg\n1330,170548,170548,164688,82,073380084X,9780733800850.0,Richard Carlson,1997.0,Don't Sweat the Small Stuff,Don't Sweat the Small Stuff ... and it's all small stuff: Simple Ways to Keep the Little Things from Taking Over Your Life,eng,3.95,63324,66962,1260,829,3551,16609,23292,22681,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172378911l/170548._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1331,11192642,11192642,16117490,51,1617750255,9781617750250.0,\"Adam Mansbach, Ricardo Cortés\",2011.0,Go the Fuck to Sleep,Go the Fuck to Sleep,eng,4.26,71816,74744,3235,1546,2636,10551,20458,39553,https://images.gr-assets.com/books/1342861907l/11192642.jpg,https://images.gr-assets.com/books/1342861907s/11192642.jpg\n1332,360,569429,2842984,107,345418778,9780345418780.0,Douglas Adams,1992.0,Mostly Harmless,\"Mostly Harmless (Hitchhiker's Guide to the Galaxy, #5)\",en-US,3.96,72426,83424,1788,856,4729,20017,28884,28938,https://images.gr-assets.com/books/1320725132l/360.jpg,https://images.gr-assets.com/books/1320725132s/360.jpg\n1333,10883,10883,750514,30,074325807X,9780743258070.0,Walter Isaacson,2003.0,Benjamin Franklin: An American Life,Benjamin Franklin: An American Life,eng,3.96,70335,71804,1386,3086,3391,13181,25649,26497,https://images.gr-assets.com/books/1397772877l/10883.jpg,https://images.gr-assets.com/books/1397772877s/10883.jpg\n1334,8366402,8366402,13221524,59,385343833,9780385343830.0,Téa Obreht,2011.0,The Tiger's Wife,The Tiger's Wife,eng,3.37,66104,76207,9640,4103,11059,25070,24442,11533,https://images.gr-assets.com/books/1382570044l/8366402.jpg,https://images.gr-assets.com/books/1382570044s/8366402.jpg\n1335,60510,60510,1180409,71,778324338,9780778324330.0,Maria V. Snyder,2005.0,Poison Study,\"Poison Study (Study, #1)\",eng,4.16,96417,108615,9467,1612,3895,16969,39358,46781,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388519019l/60510.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1336,304027,304027,295059,52,451222350,9780451222350.0,J.R. Ward,2007.0,Lover Unbound,\"Lover Unbound (Black Dagger Brotherhood, #5)\",eng,4.33,97514,104818,4273,649,2630,13782,31871,55886,https://images.gr-assets.com/books/1351276662l/304027.jpg,https://images.gr-assets.com/books/1351276662s/304027.jpg\n1337,64222,64222,1636617,65,60502932,9780060502940.0,Terry Pratchett,2004.0,Going Postal,\"Going Postal (Discworld, #33; Moist von Lipwig, #1)\",eng,4.36,75186,82064,2276,346,1093,9312,29258,42055,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388236899l/64222.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1338,323355,323355,2139868,343,967686563,9780967686560.0,\"Anonymous, Joseph Smith Jr.\",1830.0,The Book of Mormon,The Book of Mormon: Another Testament of Jesus Christ,eng,4.37,63530,66160,5349,6989,2468,2246,1749,52708,https://images.gr-assets.com/books/1327389004l/323355.jpg,https://images.gr-assets.com/books/1327389004s/323355.jpg\n1339,813214,813214,59181,35,451223292,9780451223300.0,Stephen King,1980.0,The Mist,The Mist,en-US,3.92,82062,83240,1440,988,4618,20962,30268,26404,https://images.gr-assets.com/books/1331317781l/813214.jpg,https://images.gr-assets.com/books/1331317781s/813214.jpg\n1340,17683,17683,6614452,30,045146091X,9780451460910.0,Jim Butcher,2005.0,Dead Beat,\"Dead Beat (The Dresden Files, #7)\",eng,4.43,78123,84049,2618,74,494,7436,30945,45100,https://images.gr-assets.com/books/1345667776l/17683.jpg,https://images.gr-assets.com/books/1345667776s/17683.jpg\n1341,18966819,18966819,26984955,63,345539826,9780345539820.0,Pierce Brown,2015.0,Golden Son,\"Golden Son (Red Rising, #2)\",eng,4.46,57614,79535,7737,338,1069,6783,25147,46198,https://images.gr-assets.com/books/1394684475l/18966819.jpg,https://images.gr-assets.com/books/1394684475s/18966819.jpg\n1342,47989,47989,1712283,62,055215430X,9780552154310.0,Terry Pratchett,2002.0,Night Watch,\"Night Watch (Discworld, #29; City Watch, #6)\",eng,4.47,71271,79117,1670,232,724,7113,24480,46568,https://images.gr-assets.com/books/1320518310l/47989.jpg,https://images.gr-assets.com/books/1320518310s/47989.jpg\n1343,34506,34506,592532,117,61020702,9780061020700.0,Terry Pratchett,1986.0,The Light Fantastic,\"The Light Fantastic (Discworld, #2; Rincewind #2)\",en-US,3.94,75196,88768,2395,344,3897,22419,36096,26012,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389554927l/34506.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1344,6516450,6516450,6708278,61,316078573,9780316078570.0,Malcolm Gladwell,2009.0,What the Dog Saw and Other Adventures,What the Dog Saw and Other Adventures,eng,3.82,65277,70618,3896,1117,4118,19088,28218,18077,https://images.gr-assets.com/books/1344263875l/6516450.jpg,https://images.gr-assets.com/books/1344263875s/6516450.jpg\n1345,25574782,25574782,42937661,12,62430874,9780062430880.0,Karin Slaughter,2015.0,Pretty Girls,Pretty Girls,eng,3.95,60737,86626,8964,2344,4769,16789,33410,29314,https://images.gr-assets.com/books/1432205734l/25574782.jpg,https://images.gr-assets.com/books/1432205734s/25574782.jpg\n1346,944076,944076,929012,60,575077905,9780575077900.0,Joe Abercrombie,2008.0,Last Argument of Kings,\"Last Argument of Kings (The First Law, #3)\",eng,4.26,65068,73134,2853,587,1861,9269,27438,33979,https://images.gr-assets.com/books/1302062699l/944076.jpg,https://images.gr-assets.com/books/1302062699s/944076.jpg\n1347,20926278,20926278,27239641,76,1476770387,9781476770380.0,Stephen King,2014.0,Revival,Revival,en-US,3.75,53662,69091,8563,1438,4573,19386,27879,15815,https://images.gr-assets.com/books/1394651975l/20926278.jpg,https://images.gr-assets.com/books/1394651975s/20926278.jpg\n1348,7779,7779,933973,37,679800034,9780679800030.0,Dr. Seuss,1954.0,Horton Hears a Who!,Horton Hears a Who!,eng,4.16,80883,83229,1122,1149,3284,15440,24307,39049,https://images.gr-assets.com/books/1327924655l/7779.jpg,https://images.gr-assets.com/books/1327924655s/7779.jpg\n1349,817791,817791,808779,35,393330478,9780393330470.0,Michael   Lewis,2006.0,The Blind Side: Evolution of a Game,The Blind Side: Evolution of a Game,eng,4.16,37792,65619,3368,1235,2171,10263,22861,29089,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347350403l/817791.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1350,47624,47624,2067752,69,60590165,9780060590160.0,Garth Nix,2001.0,Lirael,\"Lirael (Abhorsen, #2)\",en-US,4.29,78903,86941,2247,700,1867,11594,30134,42646,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266458951l/47624.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1351,13139,13139,880271,72,316155594,9780316155600.0,James Patterson,2006.0,School's Out Forever,\"School's Out—Forever (Maximum Ride, #2)\",en-US,4.16,90157,96823,3104,1342,3805,16869,30866,43941,https://images.gr-assets.com/books/1346079917l/13139.jpg,https://images.gr-assets.com/books/1346079917s/13139.jpg\n1352,6690979,6690979,6886418,17,316080845,9780316080840.0,\"Yana Toboso, Tomo Kimura\",2007.0,黒執事 I [Kuroshitsuji I],\"Black Butler, Vol. 1 (Black Butler, #1)\",eng,4.37,74378,75451,1036,1380,2566,8886,16896,45723,https://images.gr-assets.com/books/1336691148l/6690979.jpg,https://images.gr-assets.com/books/1336691148s/6690979.jpg\n1353,13206900,13206900,18390887,40,312642989,9780312642980.0,Marissa Meyer,2015.0,Winter,\"Winter (The Lunar Chronicles, #4)\",eng,4.49,100464,110738,17494,359,1436,9090,32666,67187,https://images.gr-assets.com/books/1470057036l/13206900.jpg,https://images.gr-assets.com/books/1470057036s/13206900.jpg\n1354,51497,51497,17441791,32,141439734,9780141439730.0,\"Robert Louis Stevenson, Robert Mighall\",1886.0,The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror ,The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror,eng,3.94,80299,80649,644,585,3466,20735,31129,24734,https://images.gr-assets.com/books/1327927453l/51497.jpg,https://images.gr-assets.com/books/1327927453s/51497.jpg\n1356,3428935,3428935,6589794,67,345503805,9780345503800.0,Peter V. Brett,2008.0,The Painted Man,\"The Warded Man (Demon Cycle, #1)\",eng,4.27,64416,77643,3891,1086,2245,9429,27034,37849,https://images.gr-assets.com/books/1354571949l/3428935.jpg,https://images.gr-assets.com/books/1354571949s/3428935.jpg\n1358,220968,220968,213966,107,440241022,9780440241030.0,Lee Child,2005.0,One Shot,\"One Shot (Jack Reacher, #9)\",eng,4.2,63335,71439,2638,289,1204,10908,30708,28330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425164069l/220968.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1359,12893742,12893742,16416771,60,1423140575,9781423140570.0,Rick Riordan,2012.0,The Serpent's Shadow,\"The Serpent's Shadow (Kane Chronicles, #3)\",eng,4.28,82757,89532,4324,483,2042,13098,29853,44056,https://images.gr-assets.com/books/1366227982l/12893742.jpg,https://images.gr-assets.com/books/1366227982s/12893742.jpg\n1360,472343,472343,3041864,105,1416552510,9781416552510.0,Stephen King,2008.0,Duma Key,Duma Key,en-US,3.93,73807,79596,4435,1249,4629,18274,30121,25323,https://images.gr-assets.com/books/1470266968l/472343.jpg,https://images.gr-assets.com/books/1470266968s/472343.jpg\n1361,1278752,1278752,1267740,121,330448447,9780330448440.0,Kate Morton,2006.0,The Shifting Fog,The House at Riverton,eng,3.93,69948,80893,7094,920,3728,18993,33495,23757,https://images.gr-assets.com/books/1356452218l/1278752.jpg,https://images.gr-assets.com/books/1356452218s/1278752.jpg\n1363,91474,91474,576222,31,451461037,9780451461030.0,Jim Butcher,2006.0,Proven Guilty,\"Proven Guilty (The Dresden Files, #8)\",eng,4.41,75133,80690,2077,96,463,7367,30876,41888,https://images.gr-assets.com/books/1345667469l/91474.jpg,https://images.gr-assets.com/books/1345667469s/91474.jpg\n1364,17876,17876,19376,12,451529553,9780451529560.0,\"Fyodor Dostoyevsky, Andrew R. MacAndrew, Ben Marcus\",1864.0,Записки из подполья,\"Notes from Underground, White Nights, The Dream of a Ridiculous Man, and Selections from The House of the Dead\",eng,4.17,65900,66960,1647,797,2379,10752,23667,29365,https://images.gr-assets.com/books/1411241656l/17876.jpg,https://images.gr-assets.com/books/1411241656s/17876.jpg\n1365,37380,37380,860196,138,618084746,9780618084750.0,Carson McCullers,1940.0,The Heart is a Lonely Hunter,The Heart is a Lonely Hunter,eng,3.97,67643,75012,4830,1669,4615,15067,26918,26743,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385265834l/37380.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1366,16131484,16131484,27237970,68,,,Rick Yancey,2014.0,The Infinite Sea,\"The Infinite Sea (The 5th Wave, #2)\",eng,3.94,78314,91051,10731,1026,4653,20427,37169,27776,https://images.gr-assets.com/books/1395351812l/16131484.jpg,https://images.gr-assets.com/books/1395351812s/16131484.jpg\n1367,43545,43545,1140206,109,441627404,9780441627400.0,T.H. White,1958.0,The Once and Future King,The Once and Future King (The Once and Future King #1-4),eng,4.08,76911,82929,3169,1380,3726,15249,29310,33264,https://images.gr-assets.com/books/1338741283l/43545.jpg,https://images.gr-assets.com/books/1338741283s/43545.jpg\n1368,34484,34484,1636629,81,552152978,9780552152980.0,Terry Pratchett,1992.0,Small Gods,\"Small Gods (Discworld, #13)\",en-GB,4.27,72588,81526,1978,310,1670,12118,28674,38754,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390899426l/34484.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1369,368468,368468,358453,51,385323069,9780385323060.0,Christopher Paul Curtis,1999.0,\"Bud, Not Buddy\",\"Bud, Not Buddy\",eng,3.89,73000,75420,4032,1872,5221,17604,25451,25272,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388377422l/368468.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1371,1713426,1713426,3074803,85,006135323X,9780061353240.0,Dan Ariely,2007.0,Predictably Irrational: The Hidden Forces that Shape Our Decisions,Predictably Irrational: The Hidden Forces That Shape Our Decisions,en-US,4.1,61496,67993,3748,820,2378,11522,27465,25808,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255573980l/1713426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1372,16031620,16031620,21801712,6,,9789770931550.0,أحمد مراد,2012.0,الفيل الأزرق,الفيل الأزرق,ara,3.8,53187,54340,5771,2780,4687,11444,16996,18433,https://images.gr-assets.com/books/1485105416l/16031620.jpg,https://images.gr-assets.com/books/1485105416s/16031620.jpg\n1373,125404,125404,824446,64,7148984,9780007148980.0,Lynne Reid Banks,1980.0,The Indian in the Cupboard,\"The Indian in the Cupboard (The Indian in the Cupboard, #1)\",eng,3.89,77046,82416,1786,1461,4629,21436,28771,26119,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171903915l/125404.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1374,7743175,7743175,10558806,33,765325950,9780765325950.0,\"Robert Jordan, Brandon Sanderson\",2012.0,A Memory of Light,\"A Memory of Light (Wheel of Time, #14)\",eng,4.5,68410,75741,4883,635,1293,5973,19274,48566,https://images.gr-assets.com/books/1336055749l/7743175.jpg,https://images.gr-assets.com/books/1336055749s/7743175.jpg\n1375,12700353,12700353,17831620,75,1419701762,9781419701760.0,Jesse Andrews,2012.0,Me and Earl and the Dying Girl,Me and Earl and the Dying Girl,en-US,3.58,82270,93511,11471,4497,10268,26506,31103,21137,https://images.gr-assets.com/books/1337216932l/12700353.jpg,https://images.gr-assets.com/books/1337216932s/12700353.jpg\n1376,7823678,7823678,10867827,71,810984911,9780810984910.0,Jeff Kinney,2010.0,The Ugly Truth,\"The Ugly Truth (Diary of a Wimpy Kid, #5)\",en-US,4.16,68701,72534,3395,1450,3520,12626,19330,35608,https://images.gr-assets.com/books/1332046095l/7823678.jpg,https://images.gr-assets.com/books/1332046095s/7823678.jpg\n1377,147074,147074,40008,2,312990227,9780312990220.0,Janet Evanovich,2002.0,\"Janet Evanovich Three and Four Two-Book Set (Stephanie Plum, #3-4)\",\"Janet Evanovich Three and Four Two-Book Set (Stephanie Plum, #3-4)\",,4.34,63691,63694,39,641,1359,8614,17894,35186,https://images.gr-assets.com/books/1317792858l/147074.jpg,https://images.gr-assets.com/books/1317792858s/147074.jpg\n1378,25019,25019,1628566,72,60839783,9780060839790.0,Simon Winchester,1998.0,\"The Surgeon of Crowthorne: a tale of murder, madness & the love of words\",\"The Professor and the Madman: A Tale of Murder, Insanity and the Making of the Oxford English Dictionary\",eng,3.84,71411,75908,4547,2012,4388,18659,29538,21311,https://images.gr-assets.com/books/1407110918l/25019.jpg,https://images.gr-assets.com/books/1407110918s/25019.jpg\n1379,13136,13136,1835674,103,446696633,9780446696630.0,\"James Patterson, Andrew Gross\",2002.0,2nd Chance,\"2nd Chance (Women's Murder Club, #2)\",eng,4.01,68834,75300,2128,391,2580,17641,29784,24904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522906622l/13136._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1380,15195,15195,1658562,80,141014083,9780141014080.0,Art Spiegelman,1986.0,The Complete Maus,\"The Complete Maus (Maus, #1-2)\",en-GB,4.53,76785,84323,4733,329,981,6162,23266,53585,https://images.gr-assets.com/books/1327354180l/15195.jpg,https://images.gr-assets.com/books/1327354180s/15195.jpg\n1381,27003,27003,3436605,4,142001805,9780142001810.0,Jasper Fforde,2001.0,The Eyre Affair,\"The Eyre Affair (Thursday Next, #1)\",en-US,3.92,85683,94631,8521,2396,5923,20322,34636,31354,https://images.gr-assets.com/books/1445540555l/27003.jpg,https://images.gr-assets.com/books/1445540555s/27003.jpg\n1382,43808,43808,43209,4,345373944,9780345373950.0,\"Faye Perozich, Anne Rice, John Bolton, Daerick Gröss\",1989.0,Anne Rice's The Vampire Lestat: The Graphic Novel,Anne Rice's The Vampire Lestat: A Graphic Novel,en-GB,4.17,61842,61903,101,661,1946,11282,20032,27982,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387712269l/43808.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1384,38210,38210,1651617,94,1573221112,9781573221120.0,\"Dalai Lama XIV, Howard C. Cutler\",1998.0,The Art of Happiness: A Handbook for Living,The Art of Happiness,eng,4.14,61498,64415,1811,895,2240,11259,22402,27619,https://images.gr-assets.com/books/1309287434l/38210.jpg,https://images.gr-assets.com/books/1309287434s/38210.jpg\n1385,20819685,20819685,26959610,60,1400065674,9781400065680.0,David Mitchell,2014.0,The Bone Clocks,The Bone Clocks,eng,3.81,53151,65210,8606,2353,4849,14146,25148,18714,https://images.gr-assets.com/books/1398205538l/20819685.jpg,https://images.gr-assets.com/books/1398205538s/20819685.jpg\n1386,5157,5157,2349447,38,385333137,9780385333140.0,Anna Quindlen,1998.0,Black and Blue,Black and Blue,eng,3.86,67753,69673,1394,792,3688,18693,27754,18746,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587872743l/5157._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1388,5346,5346,1022242,101,385339682,9780385339680.0,John Grisham,2004.0,The Last Juror,The Last Juror,eng,3.85,63114,66955,1754,606,3118,19000,26907,17324,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924294l/5346.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1389,22284,22284,1602261,59,1400032814,9781400032820.0,Chuck Palahniuk,2003.0,Diary,Diary,eng,3.6,58428,61369,2196,1633,6299,19618,21016,12803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196823l/22284.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1390,11003,11003,811763,48,312985347,9780312985350.0,Janet Evanovich,2005.0,Eleven on Top,\"Eleven on Top (Stephanie Plum, #11)\",en-US,4.15,84363,88853,1747,274,1975,17144,34202,35258,https://images.gr-assets.com/books/1166394806l/11003.jpg,https://images.gr-assets.com/books/1166394806s/11003.jpg\n1391,28195,28195,1567967,82,439554004,9780439554010.0,\"Cornelia Funke, Anthea Bell\",2005.0,Tintenblut,\"Inkspell (Inkworld, #2)\",eng,3.91,82291,90308,3572,1682,5597,21565,32140,29324,https://images.gr-assets.com/books/1395358683l/28195.jpg,https://images.gr-assets.com/books/1395358683s/28195.jpg\n1392,599,599,929649,16,743236017,9780743236010.0,Chuck Klosterman,2003.0,\"Sex, Drugs, and Cocoa Puffs: A Low Culture Manifesto\",\"Sex, Drugs, and Cocoa Puffs: A Low Culture Manifesto\",en-US,3.75,56548,57867,3344,1756,4741,14755,21605,15010,https://images.gr-assets.com/books/1380742001l/599.jpg,https://images.gr-assets.com/books/1380742001s/599.jpg\n1393,30933,30933,2952196,157,316926345,9780316926350.0,Evelyn Waugh,1945.0,Brideshead Revisited: The Sacred and Profane Memories of Captain Charles Ryder,Brideshead Revisited: The Sacred and Profane Memories of Captain Charles Ryder,eng,3.99,69087,76246,3430,1543,4150,15441,27191,27921,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438579340l/30933._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1394,91475,91475,1254936,33,451461401,9780451461410.0,Jim Butcher,2007.0,White Night,\"White Night (The Dresden Files, #9)\",en-US,4.41,73534,80439,1851,109,558,7558,30249,41965,https://images.gr-assets.com/books/1309552288l/91475.jpg,https://images.gr-assets.com/books/1309552288s/91475.jpg\n1395,18498569,18498569,25328659,98,62306812,9780062306810.0,Jessie Burton,2014.0,The Miniaturist,The Miniaturist,eng,3.58,56344,72938,8777,2490,7022,22942,26801,13683,https://images.gr-assets.com/books/1392415313l/18498569.jpg,https://images.gr-assets.com/books/1392415313s/18498569.jpg\n1396,259836,259836,251833,69,786915749,9780786915740.0,\"Margaret Weis, Tracy Hickman\",1984.0,Dragons of Autumn Twilight,\"Dragons of Autumn Twilight  (Dragonlance: Chronicles, #1)\",en-US,4.03,76219,80856,1539,2258,3971,15654,26532,32441,https://images.gr-assets.com/books/1390668127l/259836.jpg,https://images.gr-assets.com/books/1390668127s/259836.jpg\n1397,37586,37586,1866210,79,786849568,9780786849570.0,Eoin Colfer,2006.0,The Lost Colony,\"The Lost Colony (Artemis Fowl, #5)\",en-US,4.01,103844,108016,1569,2469,4725,22169,38160,40493,https://images.gr-assets.com/books/1360177158l/37586.jpg,https://images.gr-assets.com/books/1360177158s/37586.jpg\n1398,493456,493456,3315797,52,1416951172,9781416951180.0,Scott Westerfeld,2006.0,Extras,\"Extras (Uglies, #4)\",en-US,3.59,85873,90780,4945,3389,10946,27336,27149,21960,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187650l/493456.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1399,144349,144349,6627890,73,399244557,9780399244550.0,John Flanagan,2005.0,The Burning Bridge,\"The Burning Bridge (Ranger's Apprentice, #2)\",en-US,4.28,74156,79019,2395,629,1847,11085,26331,39127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440471172l/144349._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1400,16054217,16054217,21839080,54,670025593,9780670025600.0,Deborah Harkness,2014.0,The Book of Life,\"The Book of Life (All Souls Trilogy, #3)\",eng,4.15,63027,78202,7562,865,3154,13131,27271,33781,https://images.gr-assets.com/books/1389281784l/16054217.jpg,https://images.gr-assets.com/books/1389281784s/16054217.jpg\n1401,615570,615570,2210934,72,1585421464,9781585421470.0,Julia Cameron,1992.0,The Artist's Way: A Spiritual Path to Higher Creativity,The Artist's Way: A Spiritual Path to Higher Creativity,eng,3.89,66049,68129,1778,4362,4667,12282,19762,27056,https://images.gr-assets.com/books/1440952332l/615570.jpg,https://images.gr-assets.com/books/1440952332s/615570.jpg\n1402,407429,407429,1814587,13,067084487X,9780670844880.0,\"Jon Scieszka, Lane Smith\",1992.0,The Stinky Cheese Man and Other Fairly Stupid Tales,The Stinky Cheese Man and Other Fairly Stupid Tales,eng,4.2,78487,79128,1894,1304,3111,13104,22685,38924,https://images.gr-assets.com/books/1488588399l/407429.jpg,https://images.gr-assets.com/books/1488588399s/407429.jpg\n1403,6587879,6587879,6781405,8,61147958,9780061147950.0,Joe Hill,2009.0,Horns,Horns,en-US,3.92,66287,76605,7298,1490,3986,16998,31102,23029,https://images.gr-assets.com/books/1402958805l/6587879.jpg,https://images.gr-assets.com/books/1402958805s/6587879.jpg\n1404,10414941,10414941,15319151,33,679456724,9780679456730.0,Robert K. Massie,2011.0,Catherine the Great: Portrait of a Woman,Catherine the Great: Portrait of a Woman,en-CA,3.91,66591,69761,3254,3282,3485,13328,25533,24133,https://images.gr-assets.com/books/1403395276l/10414941.jpg,https://images.gr-assets.com/books/1403395276s/10414941.jpg\n1405,6080337,6080337,6257025,82,385528779,9780385528770.0,Margaret Atwood,2009.0,The Year of the Flood,\"The Year of the Flood  (MaddAddam, #2)\",eng,4.05,68597,77159,6394,743,2970,14154,33112,26180,https://images.gr-assets.com/books/1327906873l/6080337.jpg,https://images.gr-assets.com/books/1327906873s/6080337.jpg\n1406,6668467,6668467,6863383,56,312364121,9780312364120.0,Kristin Hannah,2009.0,Winter Garden,Winter Garden,en-GB,4.13,66577,74715,8900,863,2603,12545,28571,30133,https://images.gr-assets.com/books/1265932201l/6668467.jpg,https://images.gr-assets.com/books/1265932201s/6668467.jpg\n1407,5356,5356,3137817,111,385339658,9780385339650.0,John Grisham,2003.0,The King of Torts,The King of Torts,eng,3.67,61835,65334,1711,1244,5632,21215,22824,14419,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388260347l/5356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1408,711901,711901,1623890,57,316067598,9780316067590.0,\"Marcus Luttrell, Patrick Robinson\",2006.0,Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10,Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10,eng,4.34,46551,59060,6071,752,1742,6835,17239,32492,https://images.gr-assets.com/books/1344265535l/711901.jpg,https://images.gr-assets.com/books/1344265535s/711901.jpg\n1409,3320520,3320520,3358314,18,,9788129113730.0,Chetan Bhagat,2008.0,The 3 Mistakes of My Life,The 3 Mistakes of My Life,eng,2.97,53331,54794,1295,5980,12683,19012,11196,5923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216107646l/3320520.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1410,16328,16328,1073110,296,1579126278,9781579126280.0,Agatha Christie,1926.0,The Murder of Roger Ackroyd,\"The Murder of Roger Ackroyd (Hercule Poirot, #4)\",eng,4.2,71354,84540,5165,366,2006,14337,31542,36289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389734015l/16328.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1411,15622,15622,3159084,103,006083756X,9780060837560.0,Richard Wright,1940.0,Native Son ,Native Son,eng,3.96,66194,70034,2918,1828,3920,14032,25876,24378,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440820866l/15622._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1412,3754016,3754016,3797880,38,316033650,9780316033660.0,Brent Weeks,2008.0,Shadow's Edge,\"Shadow's Edge (Night Angel, #2)\",en-US,4.27,66390,70647,1608,434,1701,9473,25851,33188,https://images.gr-assets.com/books/1327881435l/3754016.jpg,https://images.gr-assets.com/books/1327881435s/3754016.jpg\n1413,11594257,11594257,15093785,57,1907411054,9781907411050.0,Veronica Rossi,2011.0,Under the Never Sky,\"Under the Never Sky (Under the Never Sky, #1)\",en-GB,4.01,74029,94313,8426,2732,4772,17161,34217,35431,https://images.gr-assets.com/books/1356591725l/11594257.jpg,https://images.gr-assets.com/books/1356591725s/11594257.jpg\n1414,3464,3464,1625592,94,044669651X,9780446696520.0,Nicholas Sparks,2003.0,True Believer,\"True Believer (Jeremy Marsh & Lexie Darnell, #1)\",en-US,3.8,62840,67625,2583,1397,5007,19130,22451,19640,https://images.gr-assets.com/books/1385739017l/3464.jpg,https://images.gr-assets.com/books/1385739017s/3464.jpg\n1415,10127019,10127019,15024842,47,307887898,9780307887890.0,Eric Ries,2011.0,The Lean Startup‎,The Lean Startup: How Today's Entrepreneurs Use Continuous Innovation to Create Radically Successful Businesses,en-US,4.04,86284,90657,1854,2814,4154,15708,31854,36127,https://images.gr-assets.com/books/1333576876l/10127019.jpg,https://images.gr-assets.com/books/1333576876s/10127019.jpg\n1416,8709523,8709523,13582370,35,1595143181,9781595143180.0,Richelle Mead,2012.0,The Golden Lily,\"The Golden Lily (Bloodlines, #2)\",en-US,4.36,86929,91787,6026,688,1779,10687,29356,49277,https://images.gr-assets.com/books/1360599818l/8709523.jpg,https://images.gr-assets.com/books/1360599818s/8709523.jpg\n1417,426775,426775,2902978,89,743290119,9780743290110.0,Lauren Weisberger,2008.0,Chasing Harry Winston,Chasing Harry Winston,eng,3.32,63342,65899,2590,3964,10309,23393,17306,10927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347247896l/426775.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1418,44688,44688,938086,55,345335457,9780345335460.0,David Eddings,1983.0,Magician's Gambit,\"Magician's Gambit (The Belgariad, #3)\",,4.13,69616,72820,655,635,2441,13588,26335,29821,https://images.gr-assets.com/books/1315276590l/44688.jpg,https://images.gr-assets.com/books/1315276590s/44688.jpg\n1420,767171,767171,1437584,1,671728687,9780671728690.0,William L. Shirer,1960.0,The Rise and Fall of the Third Reich: A History of Nazi Germany,The Rise and Fall of the Third Reich: A History of Nazi Germany,eng,4.15,64391,68004,1943,1201,2344,11463,23137,29859,https://images.gr-assets.com/books/1331223772l/767171.jpg,https://images.gr-assets.com/books/1331223772s/767171.jpg\n1421,10073,10073,2961964,89,1594481938,9781594481930.0,Nick Hornby,2005.0,A Long Way Down,A Long Way Down,eng,3.41,59843,67676,4553,2135,8570,25521,22277,9173,https://images.gr-assets.com/books/1467861525l/10073.jpg,https://images.gr-assets.com/books/1467861525s/10073.jpg\n1422,106134,106134,2218243,35,439706408,9780439706410.0,\"Jeff Smith, Steve Hamaker\",1993.0,Out from Boneville,\"Out from Boneville (Bone, #1)\",eng,4.16,62330,63076,1725,1652,2967,10427,16827,31203,https://images.gr-assets.com/books/1327921261l/106134.jpg,https://images.gr-assets.com/books/1327921261s/106134.jpg\n1423,10619,10619,833191,123,340640146,9780340640140.0,Stephen King,1995.0,Rose Madder,Rose Madder,eng,3.66,70921,76251,1714,2065,8052,23483,22705,19946,https://images.gr-assets.com/books/1375870513l/10619.jpg,https://images.gr-assets.com/books/1375870513s/10619.jpg\n1424,220969,220969,213967,98,515142247,9780515142240.0,Lee Child,1998.0,\"Die Trying (Jack Reacher, #2)\",\"Die Trying (Jack Reacher, #2)\",en-US,4.0,62128,73664,3367,428,2354,15935,32853,22094,https://images.gr-assets.com/books/1377633008l/220969.jpg,https://images.gr-assets.com/books/1377633008s/220969.jpg\n1425,10757833,10757833,11254742,60,316123528,9780316123520.0,\"Kami Garcia, Margaret Stohl, Paz Pruneda\",2011.0,Beautiful Chaos,\"Beautiful Chaos (Caster Chronicles, #3)\",en-US,3.95,69709,81492,4353,1505,4994,18812,27022,29159,https://images.gr-assets.com/books/1327878503l/10757833.jpg,https://images.gr-assets.com/books/1327878503s/10757833.jpg\n1426,10913,10913,3349582,50,60878061,9780060878060.0,Jodi Picoult,1999.0,Keeping Faith,Keeping Faith,,3.79,62405,69258,3462,1023,4612,19883,26392,17348,https://images.gr-assets.com/books/1407111555l/10913.jpg,https://images.gr-assets.com/books/1407111555s/10913.jpg\n1427,153025,153025,1412280,83,61147931,9780061147940.0,Joe Hill,2007.0,Heart-Shaped Box,Heart-Shaped Box,en-US,3.82,65005,74583,6430,1652,5086,18820,28529,20496,https://images.gr-assets.com/books/1328043955l/153025.jpg,https://images.gr-assets.com/books/1328043955s/153025.jpg\n1428,11254250,11254250,16180881,77,1419702238,9781419702240.0,Jeff Kinney,2010.0,Cabin Fever,\"Cabin Fever (Diary of a Wimpy Kid, #6)\",eng,4.21,63347,67998,3340,1409,3029,10671,17456,35433,https://images.gr-assets.com/books/1350396037l/11254250.jpg,https://images.gr-assets.com/books/1350396037s/11254250.jpg\n1430,29547,29547,1017538,85,1416543007,9781416543010.0,Lauren Weisberger,2005.0,Everyone Worth Knowing,Everyone Worth Knowing,en-US,3.39,59932,62880,1936,2679,9025,22634,17978,10564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924325l/29547.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1431,7996,7996,486980,86,1862301387,9781862301380.0,Brian Jacques,1986.0,Redwall,\"Redwall (Redwall, #1)\",eng,4.11,73918,81764,2889,1120,2911,15209,29384,33140,https://images.gr-assets.com/books/1327877368l/7996.jpg,https://images.gr-assets.com/books/1327877368s/7996.jpg\n1432,30474,30474,2205479,983,140447571,9780140447580.0,\"Karl Marx, Friedrich Engels, Gareth Stedman Jones\",1848.0,Manifest der Kommunistischen Partei,The Communist Manifesto,eng,3.51,56464,70077,2910,3561,8413,22295,20537,15271,https://images.gr-assets.com/books/1420003664l/30474.jpg,https://images.gr-assets.com/books/1420003664s/30474.jpg\n1433,28187230,28187230,48209164,37,1501132938,9781501132930.0,Ruth Ware,2016.0,The Woman in Cabin 10,The Woman in Cabin 10,eng,3.67,90541,109821,12391,2029,8795,33879,43732,21386,https://images.gr-assets.com/books/1465878007l/28187230.jpg,https://images.gr-assets.com/books/1465878007s/28187230.jpg\n1434,38296,38296,2064030,1056,553213296,9780553213290.0,James Fenimore Cooper,1826.0,The Last of the Mohicans: A Narrative of 1757,The Last of the Mohicans (The Leatherstocking Tales #2),eng,3.69,67632,73912,2021,3038,6975,19690,24157,20052,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199654l/38296.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1435,228560,228560,2912834,118,679736379,9780679736370.0,William Styron,1979.0,Sophie's Choice,Sophie's Choice,eng,4.18,66923,71077,2025,1244,2666,10630,23727,32810,https://images.gr-assets.com/books/1356714742l/228560.jpg,https://images.gr-assets.com/books/1356714742s/228560.jpg\n1436,9417,9417,2992356,89,044024191X,9780440241910.0,Sophie Kinsella,2004.0,Shopaholic and Sister,\"Shopaholic and Sister (Shopaholic, #4)\",eng,3.64,69007,73740,2064,1277,6964,25200,23997,16302,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390204703l/9417.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1437,7747064,7747064,7030241,44,373210132,9780373210140.0,Julie Kagawa,2010.0,The Iron Daughter,The Iron Daughter,eng,4.13,93340,96799,5131,1505,4105,17023,31360,42806,https://images.gr-assets.com/books/1271790654l/7747064.jpg,https://images.gr-assets.com/books/1271790654s/7747064.jpg\n1438,103610,103610,99898,36,1576737330,9781576737330.0,Bruce H. Wilkinson,2000.0,The Prayer of Jabez:  Breaking Through to the Blessed Life,The Prayer of Jabez:  Breaking Through to the Blessed Life,eng,3.92,57468,58056,550,2961,4213,11797,14888,24197,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171499832l/103610.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1439,12401556,12401556,17382941,87,812983602,9780812983610.0,Karen Thompson Walker,2012.0,The Age of Miracles,The Age of Miracles,eng,3.64,61296,71793,10726,1574,6625,22105,27557,13932,https://images.gr-assets.com/books/1342487370l/12401556.jpg,https://images.gr-assets.com/books/1342487370s/12401556.jpg\n1440,1255781,1255781,1244564,52,786868724,9780786868730.0,Mitch Albom,2009.0,Have a Little Faith: A True Story,Have a Little Faith: a True Story,en-US,4.16,60002,63096,4273,641,2021,10903,22733,26798,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348911800l/1255781.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1441,5084,5084,1602216,38,1400043468,9781400043460.0,\"Julia Child, Alex Prud'Homme\",2006.0,My Life in France,My Life in France,eng,4.16,63100,67577,6515,706,1872,10703,26938,27358,https://images.gr-assets.com/books/1395564378l/5084.jpg,https://images.gr-assets.com/books/1395564378s/5084.jpg\n1442,21844019,23492671,41326408,60,1922182109,9781922182100.0,Graeme Simsion,2014.0,The Rosie Effect,\"The Rosie Effect (Don Tillman, #2)\",eng,3.56,27308,69847,8270,1191,6636,25126,25659,11235,https://images.gr-assets.com/books/1426407990l/21844019.jpg,https://images.gr-assets.com/books/1426407990s/21844019.jpg\n1443,11827808,11827808,16782480,37,9380658797,97893806587.0,Amish Tripathi,2011.0,The Secret of the Nagas.,The Secret of the Nagas (Shiva Trilogy #2),eng,3.98,50158,55054,2109,586,2413,11661,23263,17131,https://images.gr-assets.com/books/1308930273l/11827808.jpg,https://images.gr-assets.com/books/1308930273s/11827808.jpg\n1444,38501,38501,958661,85,006117758X,9780061177580.0,Charles Bukowski,1982.0,Ham on Rye,Ham on Rye,,4.16,54140,61743,2425,641,1897,9576,24523,25106,https://images.gr-assets.com/books/1388195001l/38501.jpg,https://images.gr-assets.com/books/1388195001s/38501.jpg\n1445,331920,331920,3199878,45,375825444,9780375825450.0,Wendelin Van Draanen,2001.0,Flipped,Flipped,en-US,3.94,79264,81706,6209,1175,4843,19570,28606,27512,https://images.gr-assets.com/books/1388554293l/331920.jpg,https://images.gr-assets.com/books/1388554293s/331920.jpg\n1446,6486483,6486483,6677843,28,974320625,9780974320620.0,\"Travis Bradberry, Jean Greaves, Patrick Lencioni\",2003.0,Emotional Intelligence 2.0,Emotional Intelligence 2.0,,3.81,53384,54382,649,2234,3927,13314,17439,17468,https://images.gr-assets.com/books/1328765863l/6486483.jpg,https://images.gr-assets.com/books/1328765863s/6486483.jpg\n1447,29291,29291,103828,62,670035386,9780670035380.0,Robert McCloskey,1941.0,Make Way for Ducklings,Make Way for Ducklings,,4.21,70704,72105,1271,1398,2784,11683,19309,36931,https://images.gr-assets.com/books/1362580777l/29291.jpg,https://images.gr-assets.com/books/1362580777s/29291.jpg\n1448,67035,67035,23046,98,765354942,9780765354940.0,\"Douglas Preston, Lincoln Child\",1995.0,Relic,\"Relic (Pendergast, #1)\",eng,4.01,68011,73343,2531,993,3349,15578,27328,26095,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389576748l/67035.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1449,28,28,940892,63,380727501,9780380727510.0,Bill Bryson,1995.0,Notes from a Small Island,Notes from a Small Island,eng,3.91,66947,72421,3323,1073,3717,17241,29024,21366,https://images.gr-assets.com/books/1479653223l/28.jpg,https://images.gr-assets.com/books/1479653223s/28.jpg\n1450,927979,927979,2054834,31,451461894,9780451461900.0,Jim Butcher,2008.0,Small Favor,\"Small Favor (The Dresden Files, #10)\",en-US,4.43,70029,76253,1975,69,419,6473,28646,40646,https://images.gr-assets.com/books/1298085176l/927979.jpg,https://images.gr-assets.com/books/1298085176s/927979.jpg\n1451,6465707,6465707,6656179,7,1607060760,9781607060760.0,Robert Kirkman,2009.0,The Walking Dead Compendium Volume 1,\"The Walking Dead, Compendium 1\",eng,4.43,57764,58612,2154,849,1260,5314,15352,35837,https://images.gr-assets.com/books/1449865699l/6465707.jpg,https://images.gr-assets.com/books/1449865699s/6465707.jpg\n1452,85990,85990,3299770,50,1599900734,9781599900740.0,Shannon Hale,2005.0,Princess Academy,\"Princess Academy (Princess Academy, #1)\",eng,4.01,82470,87725,7803,1062,3781,18451,34060,30371,https://images.gr-assets.com/books/1349410861l/85990.jpg,https://images.gr-assets.com/books/1349410861s/85990.jpg\n1453,18692431,18692431,26540216,86,553496646,9780553496640.0,\"Nicola Yoon, David Yoon\",2015.0,\"Everything, Everything\",\"Everything, Everything\",eng,4.11,132552,150407,23712,2262,6555,25928,53989,61673,https://images.gr-assets.com/books/1450515891l/18692431.jpg,https://images.gr-assets.com/books/1450515891s/18692431.jpg\n1454,7714,7714,184399,416,486282228,9780486282220.0,George Bernard Shaw,1912.0,Pygmalion,Pygmalion,en-US,3.9,70079,75603,1664,895,4044,19262,29217,22185,https://images.gr-assets.com/books/1453757285l/7714.jpg,https://images.gr-assets.com/books/1453757285s/7714.jpg\n1455,13438524,13438524,18945788,38,62124269,9780062124260.0,Barbara Kingsolver,2012.0,Flight Behavior,Flight Behavior,eng,3.75,57078,65593,8825,1681,5240,16765,25871,16036,https://images.gr-assets.com/books/1352212134l/13438524.jpg,https://images.gr-assets.com/books/1352212134s/13438524.jpg\n1456,2146957,2146957,2156412,31,1590388984,9781590388980.0,Brandon Mull,2008.0,Grip of the Shadow Plague,\"Grip of the Shadow Plague (Fablehaven, #3)\",eng,4.26,65638,67659,2862,1353,1859,8785,21812,33850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607686l/2146957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1457,363752,363752,8140,141,140298479,9780140298480.0,Helen Fielding,1999.0,Bridget Jones: The Edge of Reason,\"Bridget Jones: The Edge of Reason (Bridget Jones, #2)\",eng,3.53,73093,81599,2215,1959,9506,28844,25992,15298,https://images.gr-assets.com/books/1395233618l/363752.jpg,https://images.gr-assets.com/books/1395233618s/363752.jpg\n1458,3388,3388,2771048,105,067976397X,9780679763970.0,Louis de Bernières,1994.0,Captain Corelli's Mandolin,Corelli's Mandolin,eng,3.95,57583,65596,2279,1734,4029,13185,23679,22969,https://images.gr-assets.com/books/1479680795l/3388.jpg,https://images.gr-assets.com/books/1479680795s/3388.jpg\n1459,15924,15924,1498113,80,446698466,9780446698470.0,Nicholas Sparks,2004.0,At First Sight,\"At First Sight (Jeremy Marsh & Lexie Darnell, #2)\",en-US,3.81,62219,66617,3240,1492,5098,17959,22090,19978,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409355671l/15924.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1460,24,24,2611786,76,767903862,9780767903870.0,Bill Bryson,2000.0,Down Under,In a Sunburned Country,eng,4.05,58688,66668,4455,607,2214,12998,28184,22665,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176242l/24.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1461,194373,194373,6328892,639,192123092,9780192123090.0,Arthur Conan Doyle,1894.0,The Memoirs of Sherlock Holmes,The Memoirs of Sherlock Holmes,eng,4.32,56918,65984,1399,398,1005,8433,23292,32856,https://images.gr-assets.com/books/1410716044l/194373.jpg,https://images.gr-assets.com/books/1410716044s/194373.jpg\n1462,11529868,11529868,16467838,55,812992792,9780812992790.0,Adam Johnson,2012.0,The Orphan Master's Son,The Orphan Master's Son,eng,4.06,52765,63406,8316,1671,3341,9883,23007,25504,https://images.gr-assets.com/books/1327878601l/11529868.jpg,https://images.gr-assets.com/books/1327878601s/11529868.jpg\n1463,44687,44687,938064,55,345300785,9780345300780.0,David Eddings,1984.0,Enchanters' End Game,\"Enchanters' End Game (The Belgariad, #5)\",en-US,4.17,69134,73032,658,677,2478,12604,25188,32085,https://images.gr-assets.com/books/1217735909l/44687.jpg,https://images.gr-assets.com/books/1217735909s/44687.jpg\n1465,187181,187181,1336083,79,449213447,9780449213440.0,Chaim Potok,1967.0,The Chosen,The Chosen,eng,4.03,70701,73070,3495,1283,3459,13824,27376,27128,https://images.gr-assets.com/books/1403191327l/187181.jpg,https://images.gr-assets.com/books/1403191327s/187181.jpg\n1466,321552,321552,1504548,94,451171357,9780451171350.0,\"Irving Stone, שמואל שניצר\",1958.0,The Agony and the Ecstasy: A Biographical Novel of Michelangelo,The Agony and the Ecstasy,eng,4.09,61256,63116,1591,1741,2564,10707,21180,26924,https://images.gr-assets.com/books/1327879079l/321552.jpg,https://images.gr-assets.com/books/1327879079s/321552.jpg\n1467,4912857,5196764,3252824,178,385528701,9780385528700.0,\"Carlos Ruiz Zafón, Lucia Graves\",2008.0,El juego del ángel,\"The Angel's Game (The Cemetery of Forgotten Books, #2)\",eng,3.86,46225,74934,7130,1125,5123,18613,28668,21405,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388330801l/4912857.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1468,147865,147865,3423015,166,786891084,9780786891080.0,Cecelia Ahern,2004.0,Where Rainbows End,\"Love, Rosie\",en-US,3.95,55236,78558,8227,1563,4973,17380,26705,27937,https://images.gr-assets.com/books/1420732457l/147865.jpg,https://images.gr-assets.com/books/1420732457s/147865.jpg\n1469,774001,774001,888927,36,64441555,9780064441550.0,\"Peggy Parish, Fritz Siebel\",1963.0,Amelia Bedelia,Amelia Bedelia  (Amelia Bedelia #1),eng,4.15,72329,72884,831,1342,3136,13872,19635,34899,https://images.gr-assets.com/books/1353400157l/774001.jpg,https://images.gr-assets.com/books/1353400157s/774001.jpg\n1470,16140036,16140036,21970768,42,,,Jodi Ellen Malpas,2012.0,This Man,\"This Man (This Man, #1)\",eng,4.13,79461,85113,5451,3397,4706,12138,22363,42509,https://images.gr-assets.com/books/1352790466l/16140036.jpg,https://images.gr-assets.com/books/1352790466s/16140036.jpg\n1471,7723542,7723542,10479953,77,765326264,9780765326260.0,W. Bruce Cameron,2010.0,A Dog's Purpose ,\"A Dog's Purpose (A Dog's Purpose, #1)\",en-US,4.35,65091,75517,10147,675,1742,8856,23625,40619,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564936796l/7723542._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1472,20560137,27774758,39113604,71,1595148035,9781595148030.0,Sabaa Tahir,2015.0,An Ember in the Ashes,\"An Ember in the Ashes (An Ember in the Ashes, #1)\",eng,4.32,45492,94982,14542,1316,2448,10085,31685,49448,https://images.gr-assets.com/books/1417957944l/20560137.jpg,https://images.gr-assets.com/books/1417957944s/20560137.jpg\n1473,1240662,1240662,1928049,51,451222725,9780451222720.0,J.R. Ward,2008.0,\"Lover Enshrined, part one\",\"Lover Enshrined (Black Dagger Brotherhood, #6)\",eng,4.12,87432,93405,3753,1130,4648,17757,27856,42014,https://images.gr-assets.com/books/1327896547l/1240662.jpg,https://images.gr-assets.com/books/1327896547s/1240662.jpg\n1474,15819028,15819028,21547736,51,62110837,9780062110830.0,Helene Wecker,2013.0,The Golem and the Jinni,\"The Golem and the Jinni (The Golem and the Jinni, #1)\",eng,4.1,59650,70865,9907,1155,2588,11315,28881,26926,https://images.gr-assets.com/books/1349205573l/15819028.jpg,https://images.gr-assets.com/books/1349205573s/15819028.jpg\n1475,16081961,16081961,21881449,7,,9789953267200.0,\"أحلام مستغانمي, Ahlam Mosteghanemi\",2012.0,الأسود يليق بك,الأسود يليق بك,ara,3.72,42958,52255,5459,3323,5535,11642,13878,17877,https://images.gr-assets.com/books/1351004560l/16081961.jpg,https://images.gr-assets.com/books/1351004560s/16081961.jpg\n1476,297792,297792,2146706,50,64410137,9780064410140.0,\"Lemony Snicket, Brett Helquist\",2003.0,The Slippery Slope,\"The Slippery Slope (A Series of Unfortunate Events, #10)\",en-US,4.0,81362,84253,1672,926,3956,19412,29849,30110,https://images.gr-assets.com/books/1343701012l/297792.jpg,https://images.gr-assets.com/books/1343701012s/297792.jpg\n1477,31242,31242,2960365,635,143037617,9780143037610.0,\"Charles Dickens, Nicola Bradbury, Hablot Knight Browne\",1853.0,Bleak House,Bleak House,eng,4.0,67433,75694,3125,1999,4506,14750,25011,29428,https://images.gr-assets.com/books/1280113147l/31242.jpg,https://images.gr-assets.com/books/1280113147s/31242.jpg\n1478,775597,775597,954532,56,64431436,9780064431440.0,Esphyr Slobodkina,1938.0,\"Caps for sale: a tale of a peddler, some monkeys and their monkey business\",\"Caps for Sale: A Tale of a Peddler, Some Monkeys and Their Monkey Business\",eng,4.12,72504,73190,1130,1058,3562,14486,20187,33897,https://images.gr-assets.com/books/1348541342l/775597.jpg,https://images.gr-assets.com/books/1348541342s/775597.jpg\n1479,29396,29396,3098584,35,044101268X,9780441012690.0,Jim Butcher,2004.0,Furies of Calderon ,\"Furies of Calderon (Codex Alera, #1)\",eng,4.12,70269,74537,3132,1209,2914,12182,27550,30682,https://images.gr-assets.com/books/1329104514l/29396.jpg,https://images.gr-assets.com/books/1329104514s/29396.jpg\n1480,13831,13831,1936544,14,689878559,9780689878560.0,Tamora Pierce,1983.0,Alanna: The First Adventure,\"Alanna: The First Adventure (Song of the Lioness, #1)\",en-US,4.27,85699,91488,3810,1053,2308,13154,29563,45410,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206270l/13831.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1481,6202342,6202342,6382826,72,224085611,9780224085620.0,Audrey Niffenegger,2009.0,Her Fearful Symmetry,Her Fearful Symmetry,en-GB,3.23,63737,79116,11713,4845,13797,28144,22691,9639,https://images.gr-assets.com/books/1327939087l/6202342.jpg,https://images.gr-assets.com/books/1327939087s/6202342.jpg\n1482,22450859,22450859,21890979,24,1439199353,9781439199350.0,Anita Diamant,2014.0,The Boston Girl,The Boston Girl,eng,3.79,51603,60608,7303,841,3333,16733,26479,13222,https://images.gr-assets.com/books/1418103945l/22450859.jpg,https://images.gr-assets.com/books/1418103945s/22450859.jpg\n1483,5098079,5098079,5164827,51,451225856,9780451225860.0,J.R. Ward,2009.0,\"Lover Enshrined, part two\",\"Lover Avenged (Black Dagger Brotherhood, #7)\",eng,4.38,84650,92514,3549,498,1841,10764,28245,51166,https://images.gr-assets.com/books/1321039998l/5098079.jpg,https://images.gr-assets.com/books/1321039998s/5098079.jpg\n1484,77565,77565,1882596,74,553288202,9780553288210.0,Dan Simmons,1990.0,The Fall of Hyperion,\"The Fall of Hyperion (Hyperion Cantos, #2)\",eng,4.18,63235,68811,2265,675,2454,10805,25016,29861,https://images.gr-assets.com/books/1429215870l/77565.jpg,https://images.gr-assets.com/books/1429215870s/77565.jpg\n1485,21704,21704,434,93,446698873,9780446698870.0,James Ellroy,1987.0,The Black Dahlia,\"The Black Dahlia (L.A. Quartet, #1)\",en-US,3.75,61412,65404,1944,1999,4999,17641,23340,17425,https://images.gr-assets.com/books/1387048173l/21704.jpg,https://images.gr-assets.com/books/1387048173s/21704.jpg\n1486,83346,83346,45962572,918,688120490,9780688120500.0,\"Lewis Carroll, John Tenniel, Peter Glassman\",1871.0,\"Through the Looking-Glass, and What Alice Found There\",\"Through the Looking-Glass, and What Alice Found There\",eng,4.06,63050,77666,2131,1030,3785,16105,25471,31275,https://images.gr-assets.com/books/1359299332l/83346.jpg,https://images.gr-assets.com/books/1359299332s/83346.jpg\n1487,1848,1848,2969000,139,743246985,9780743246990.0,Jung Chang,1991.0,Wild Swans: Three Daughters of China,Wild Swans: Three Daughters of China,en-US,4.23,60193,67548,4426,921,1940,9406,23802,31479,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440643710l/1848._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1488,460548,460548,887311,36,394800206,9780394800200.0,P.D. Eastman,1961.0,\"Go, Dog. Go!\",\"Go, Dog. Go!\",eng,4.08,66360,67112,1307,1373,4030,13995,16365,31349,https://images.gr-assets.com/books/1333578440l/460548.jpg,https://images.gr-assets.com/books/1333578440s/460548.jpg\n1490,22453035,23492589,41884478,73,1501100130,9781501100130.0,Stephen King,2015.0,Finders Keepers,\"Finders Keepers (Bill Hodges Trilogy, #2)\",eng,4.03,36541,65282,6876,372,1857,12964,30192,19897,https://images.gr-assets.com/books/1468705421l/22453035.jpg,https://images.gr-assets.com/books/1468705421s/22453035.jpg\n1491,6065215,6065215,6241525,104,61558230,9780061558240.0,\"Guillermo del Toro, Chuck Hogan\",2009.0,The Strain,\"The Strain (The Strain Trilogy, #1)\",en-US,3.77,58631,67806,5903,1771,5200,17428,25548,17859,https://images.gr-assets.com/books/1326225354l/6065215.jpg,https://images.gr-assets.com/books/1326225354s/6065215.jpg\n1492,112204,112204,1443553,62,316184136,9780316184140.0,\"Emily Dickinson, Thomas H. Johnson\",1890.0,The Complete Poems of Emily Dickinson,The Complete Poems of Emily Dickinson,eng,4.21,60278,62149,614,1141,2161,9616,19058,30173,https://images.gr-assets.com/books/1498347611l/112204.jpg,https://images.gr-assets.com/books/1498347611s/112204.jpg\n1493,130580,130580,2686896,58,60935472,9780060935470.0,Fred Gipson,1956.0,Old Yeller,\"Old Yeller (Old Yeller, #1)\",en-US,4.06,69815,72061,1646,1289,3193,14512,23807,29260,https://images.gr-assets.com/books/1327940112l/130580.jpg,https://images.gr-assets.com/books/1327940112s/130580.jpg\n1494,773858,773858,3315115,27,1416553649,9781416553650.0,Steve Martin,2007.0,Born Standing Up: A Comic's Life,Born Standing Up: A Comic's Life,eng,3.87,60869,63893,4258,1515,3216,15539,25317,18306,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348034328l/773858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1495,87640,87640,84604,7,60899190,9780060899200.0,Frank Warren,2005.0,PostSecret: Extraordinary Confessions from Ordinary Lives,PostSecret: Extraordinary Confessions from Ordinary Lives (PostSecret),,4.01,58841,59379,1061,2911,3039,10287,17389,25753,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440869881l/87640._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1496,147915,147915,6571827,49,7119550,9780007119550.0,George R.R. Martin,2000.0,A Storm of Swords: Part 2 Blood and Gold,\"A Storm of Swords: Blood and Gold (A Song of Ice and Fire, #3: Part 2 of 2)\",eng,4.56,54977,64173,1959,275,572,4041,17151,42134,https://images.gr-assets.com/books/1354567206l/147915.jpg,https://images.gr-assets.com/books/1354567206s/147915.jpg\n1497,348573,348573,802336,90,152047379,9780152047380.0,\"Mary Norton, Beth Krush, Joe Krush\",1952.0,The Borrowers Afield,\"The Borrowers (The Borrowers, #1)\",,4.02,74820,77076,1403,923,3165,17625,26927,28436,https://images.gr-assets.com/books/1308945559l/348573.jpg,https://images.gr-assets.com/books/1308945559s/348573.jpg\n1498,11602,11602,3166850,112,340818670,9780340818670.0,Stephen King,1999.0,Hearts in Atlantis,Hearts in Atlantis,eng,3.8,65063,70886,1588,1268,5421,19496,24725,19976,https://images.gr-assets.com/books/1374048926l/11602.jpg,https://images.gr-assets.com/books/1374048926s/11602.jpg\n1500,11298,11298,2057170,146,037571894X,9780375718950.0,\"Haruki Murakami, Alfred Birnbaum\",1982.0,羊をめぐる冒険 [Hitsujiwomegurubōken],\"A Wild Sheep Chase (The Rat, #3)\",eng,3.94,55262,63449,3161,561,2882,14590,27275,18141,https://images.gr-assets.com/books/1327908774l/11298.jpg,https://images.gr-assets.com/books/1327908774s/11298.jpg\n1501,252499,252499,1024199,61,743246071,9780743246070.0,Philippa Gregory,2003.0,The Queen's Fool,\"The Queen's Fool (The Plantagenet and Tudor Novels, #12)\",en-US,3.83,69504,74843,2884,859,4137,21150,29517,19180,https://images.gr-assets.com/books/1399204116l/252499.jpg,https://images.gr-assets.com/books/1399204116s/252499.jpg\n1502,12812550,12812550,17961723,66,316133973,9780316133980.0,Laini Taylor,2012.0,Days of Blood & Starlight,\"Days of Blood & Starlight (Daughter of Smoke & Bone, #2)\",en-CA,4.21,85746,99031,10724,1604,3200,13879,34953,45395,https://images.gr-assets.com/books/1461353798l/12812550.jpg,https://images.gr-assets.com/books/1461353798s/12812550.jpg\n1503,8682,8682,1105831,31,1842430351,9781842430350.0,Tom Robbins,1984.0,Jitterbug Perfume,Jitterbug Perfume,eng,4.24,48277,55296,3099,687,1888,7929,17887,26905,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607752l/8682.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1504,144350,144350,6627896,61,399244573,9780399244580.0,John Flanagan,2006.0,\"The Battle for Skandia (Ranger's Apprentice, #4)\",\"The Battle for Skandia (Ranger's Apprentice, #4)\",en-US,4.32,60959,66668,1603,594,1365,8641,21627,34441,https://images.gr-assets.com/books/1294443954l/144350.jpg,https://images.gr-assets.com/books/1294443954s/144350.jpg\n1505,10576365,10576365,15483434,41,1423157370,9781423157370.0,Alexandra Bracken,2012.0,The Darkest Minds,\"The Darkest Minds (The Darkest Minds, #1)\",eng,4.26,83886,90772,11330,1380,3193,11844,28768,45587,https://images.gr-assets.com/books/1343178841l/10576365.jpg,https://images.gr-assets.com/books/1343178841s/10576365.jpg\n1506,1427,1427,3341790,154,60832819,9780060832810.0,\"Paulo Coelho, Margaret Jull Costa\",2005.0,O Zahir,The Zahir,eng,3.56,50921,56047,2731,2677,6561,16568,16990,13251,https://images.gr-assets.com/books/1493044059l/1427.jpg,https://images.gr-assets.com/books/1493044059s/1427.jpg\n1507,1134122,1134122,1121350,116,1416560610,9781416560620.0,Norman Vincent Peale,1952.0,The Power of Positive Thinking,The Power of Positive Thinking,eng,4.08,52704,54516,838,1265,2426,10192,17315,23318,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587724137l/1134122._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1508,23346377,23346377,42905101,58,1846558913,9781846558920.0,Ruth Ware,2015.0,\"In a Dark, Dark Wood \",\"In a Dark, Dark Wood\",eng,3.65,67344,84171,9107,1904,6968,26321,32390,16588,https://images.gr-assets.com/books/1429521615l/23346377.jpg,https://images.gr-assets.com/books/1429521615s/23346377.jpg\n1509,17728,17728,1652564,602,1844082938,9781844082930.0,\"Edith Wharton, Nina Bawden\",1905.0,The House of Mirth,The House of Mirth,eng,3.94,60611,67714,3489,1731,3912,14142,24545,23384,https://images.gr-assets.com/books/1328729186l/17728.jpg,https://images.gr-assets.com/books/1328729186s/17728.jpg\n1510,2454986,2454986,2462181,22,345501330,9780345501330.0,\"Hiro Mashima, William Flanagan\",2006.0,Fairy Tail 1,\"Fairy Tail, Vol. 1 (Fairy Tail, #1)\",eng,4.4,65477,66294,667,1092,2055,7476,14494,41177,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389303619l/2454986.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1511,21535271,21535271,40864254,56,756410436,9780756410440.0,\"Patrick Rothfuss, Nate  Taylor\",2014.0,The Slow Regard of Silent Things,The Slow Regard of Silent Things (The Kingkiller Chronicle #2.5),eng,3.92,57716,70650,7633,2506,5300,14205,22248,26391,https://images.gr-assets.com/books/1398466695l/21535271.jpg,https://images.gr-assets.com/books/1398466695s/21535271.jpg\n1512,18478222,18478222,160246,749,,9780989794800.0,Solomon Northup,1853.0,Twelve Years a Slave,Twelve Years a Slave,eng,4.15,39758,64894,4918,1035,2266,10046,23893,27654,https://images.gr-assets.com/books/1378793462l/18478222.jpg,https://images.gr-assets.com/books/1378793462s/18478222.jpg\n1513,7046495,7046495,7370233,46,451229851,9780451229850.0,J.R. Ward,2010.0,\"Lover Avenged, part one\",\"Lover Mine (Black Dagger Brotherhood, #8)\",eng,4.41,82824,90079,3872,616,1846,9925,25598,52094,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391511285l/7046495.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1514,17780,17780,1640941,86,141001828,9780141001820.0,Nathaniel Philbrick,1999.0,In the Heart of the Sea: The Tragedy of the Whaleship Essex,In the Heart of the Sea: The Tragedy of the Whaleship Essex,en-US,4.16,57259,61145,4593,743,1672,9369,24755,24606,https://images.gr-assets.com/books/1335902168l/17780.jpg,https://images.gr-assets.com/books/1335902168s/17780.jpg\n1515,81227,81227,1133588,57,743289684,9780743289690.0,Ayaan Hirsi Ali,2006.0,Infidel,Infidel,eng,4.2,58432,62162,5662,1168,1891,8759,22116,28228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256729l/81227.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1516,242472,242472,2157806,103,1400063515,9781400063510.0,Nassim Nicholas Taleb,2007.0,The Black Swan: The Impact of the Highly Improbable,The Black Swan: The Impact of the Highly Improbable,eng,3.88,53586,58766,3368,1861,4036,12599,20887,19383,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925471l/242472.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1517,13281368,13281368,14373498,75,345504984,9780345504980.0,Justin Cronin,2012.0,The Twelve,\"The Twelve (The Passage, #2)\",eng,3.98,56756,67607,6682,660,2845,14411,28633,21058,https://images.gr-assets.com/books/1331230956l/13281368.jpg,https://images.gr-assets.com/books/1331230956s/13281368.jpg\n1518,17125,17125,838042,264,374529523,9780374529530.0,\"Aleksandr Solzhenitsyn, H.T. Willetts\",1962.0,Один день Ивана Денисовича,One Day in the Life of Ivan Denisovich,eng,3.94,61678,72038,2915,1147,3666,16109,28201,22915,https://images.gr-assets.com/books/1427731744l/17125.jpg,https://images.gr-assets.com/books/1427731744s/17125.jpg\n1519,827,827,2181158,58,553380966,9780553380960.0,Neal Stephenson,1995.0,The Diamond Age,\"The Diamond Age: or, A Young Lady's Illustrated Primer\",eng,4.19,61836,66621,2821,602,2255,10287,24102,29375,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180931l/827.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1520,164154,164154,250975,118,60892994,9780060893000.0,Walter M. Miller Jr.,1959.0,A Canticle for Leibowitz,A Canticle for Leibowitz,eng,3.97,66721,71988,3596,1579,4264,14698,25329,26118,https://images.gr-assets.com/books/1450516880l/164154.jpg,https://images.gr-assets.com/books/1450516880s/164154.jpg\n1521,7728,7728,1052210,423,1580493882,9781580493890.0,\"Sophocles, J.E. Thomas\",-441.0,Ἀντιγόνη,\"Antigone (The Theban Plays, #3)\",eng,3.6,67608,78535,1893,1881,8279,25895,25697,16783,https://images.gr-assets.com/books/1486701308l/7728.jpg,https://images.gr-assets.com/books/1486701308s/7728.jpg\n1522,4954833,4954833,5020624,86,1439138311,9781439138310.0,Colm Tóibín,2009.0,Brooklyn,Brooklyn,eng,3.63,55459,67822,8669,1042,5940,21904,27255,11681,https://images.gr-assets.com/books/1489957005l/4954833.jpg,https://images.gr-assets.com/books/1489957005s/4954833.jpg\n1523,8525590,8525590,13392566,44,1442409053,9781442409060.0,Lauren DeStefano,2011.0,Wither,\"Wither (The Chemical Garden, #1)\",eng,3.81,84776,88657,7886,3105,7449,20924,28676,28503,https://images.gr-assets.com/books/1341532430l/8525590.jpg,https://images.gr-assets.com/books/1341532430s/8525590.jpg\n1524,27161156,27161156,47200486,30,62300547,9780062300550.0,J.D. Vance,2016.0,Hillbilly Elegy. A Memoir of a Family and Culture in Crisis,Hillbilly Elegy: A Memoir of a Family and Culture in Crisis,eng,3.99,80737,105770,13146,1429,4680,21299,44927,33435,https://images.gr-assets.com/books/1463569814l/27161156.jpg,https://images.gr-assets.com/books/1463569814s/27161156.jpg\n1525,113435,113435,195579,55,312864590,9780312864590.0,Robert Jordan,2003.0,Crossroads of Twilight,\"Crossroads of Twilight (Wheel of Time, #10)\",en-US,3.82,61361,68479,1599,2097,5975,16531,21644,22232,https://images.gr-assets.com/books/1408325146l/113435.jpg,https://images.gr-assets.com/books/1408325146s/113435.jpg\n1526,35220,35220,2314709,800,1580495869,9781580495870.0,Stephen Crane,1871.0,The Red Badge of Courage,The Red Badge of Courage,eng,3.21,68448,74975,2825,6036,12395,26446,20066,10032,https://images.gr-assets.com/books/1327936136l/35220.jpg,https://images.gr-assets.com/books/1327936136s/35220.jpg\n1527,21413662,21413662,40714465,59,544272994,9780544273000.0,Randall Munroe,2014.0,What If?: Serious Scientific Answers to Absurd Hypothetical Questions,What If?: Serious Scientific Answers to Absurd Hypothetical Questions,eng,4.17,60236,71829,5437,1387,2708,10945,24313,32476,https://images.gr-assets.com/books/1451351509l/21413662.jpg,https://images.gr-assets.com/books/1451351509s/21413662.jpg\n1528,55399,55399,2646042,64,765348780,9780765348780.0,Steven Erikson,1999.0,Gardens of the Moon,\"Gardens of the Moon (The Malazan Book of the Fallen, #1)\",eng,3.85,57993,64654,3720,2616,4780,13280,22849,21129,https://images.gr-assets.com/books/1355144064l/55399.jpg,https://images.gr-assets.com/books/1355144064s/55399.jpg\n1529,816720,816720,13855759,133,7251866,9780007251860.0,Paulo Coelho,2006.0,A Bruxa de Portobello,The Witch Of Portobello,eng,3.51,51461,58074,3181,2660,7458,18085,17116,12755,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178654373l/816720._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1530,77276,77276,1196024,20,440401585,9780440401580.0,Madeleine L'Engle,1978.0,A Swiftly Tilting Planet,\"A Swiftly Tilting Planet (A Wrinkle in Time Quintet, #3)\",eng,4.13,75851,80918,1477,891,2666,15130,28633,33598,https://images.gr-assets.com/books/1327465278l/77276.jpg,https://images.gr-assets.com/books/1327465278s/77276.jpg\n1531,262430,262430,524491,75,043977134X,9780439771340.0,Suzanne Collins,2003.0,Gregor the Overlander,\"Gregor the Overlander (Underland Chronicles, #1)\",eng,3.99,66823,72486,5376,1705,3653,14937,25516,26675,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387742259l/262430.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1532,8554005,8554005,10809193,52,1439102724,9781439102720.0,Jodi Picoult,2011.0,Sing You Home,Sing You Home,en-US,3.76,62494,68347,6241,1770,5345,18571,24791,17870,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347775953l/8554005.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1533,31336,31336,2925924,65,345419634,9780345419640.0,Anne Rice,1992.0,The Tale of the Body Thief,\"The Tale of the Body Thief (The Vampire Chronicles, #4)\",en-US,3.7,67267,71768,1161,1427,6552,22211,23262,18316,https://images.gr-assets.com/books/1361577271l/31336.jpg,https://images.gr-assets.com/books/1361577271s/31336.jpg\n1534,15158,15158,2571396,90,446615625,9780446615620.0,David Baldacci,2005.0,The Camel Club,\"The Camel Club (Camel Club, #1)\",eng,4.02,58973,63140,2255,886,2571,12705,25005,21973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166671032l/15158.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1535,33676,33676,940067,73,316155608,9780316155600.0,James Patterson,2006.0,Saving The World and Other Extreme Sports,\"Saving the World and Other Extreme Sports (Maximum Ride, #3)\",en-US,4.16,75436,80114,2529,1081,3410,14312,24389,36922,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442335715l/33676._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1536,43892,43892,3109672,57,812551478,9780812551470.0,Terry Goodkind,1996.0,Blood of the Fold,\"Blood of the Fold (Sword of Truth, #3)\",en-US,3.98,60624,64653,958,1009,3226,14259,23434,22725,https://images.gr-assets.com/books/1443563626l/43892.jpg,https://images.gr-assets.com/books/1443563626s/43892.jpg\n1537,16180,16180,816515,76,743272501,9780743272510.0,Philippa Gregory,2006.0,The Boleyn Inheritance,\"The Boleyn Inheritance (The Plantagenet and Tudor Novels, #10)\",eng,3.84,62135,71070,3967,506,3336,20312,29721,17195,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409318443l/16180.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1538,22501028,22501028,41711673,47,385683421,9780385683420.0,Anne Tyler,2015.0,A Spool of Blue Thread,A Spool of Blue Thread,eng,3.4,42339,60334,7715,2302,7578,21930,20780,7744,https://images.gr-assets.com/books/1451435883l/22501028.jpg,https://images.gr-assets.com/books/1451435883s/22501028.jpg\n1539,30555488,30555488,48287641,48,385542364,9780385542360.0,Colson Whitehead,2016.0,The Underground Railroad,The Underground Railroad,eng,4.04,72052,92096,11045,1259,3885,16777,38456,31719,https://images.gr-assets.com/books/1493178362l/30555488.jpg,https://images.gr-assets.com/books/1493178362s/30555488.jpg\n1540,106085,106085,1319792,39,786838930,9780786838940.0,Melissa de la Cruz,2007.0,Masquerade,\"Masquerade (Blue Bloods, #2)\",en-US,3.91,76598,79673,2045,1493,5298,19716,25177,27989,https://images.gr-assets.com/books/1322287499l/106085.jpg,https://images.gr-assets.com/books/1322287499s/106085.jpg\n1541,8685612,8685612,7030253,35,373210183,9780373210180.0,Julie Kagawa,2011.0,The Iron Queen,\"The Iron Queen (The Iron Fey, #3)\",eng,4.24,82373,85131,4580,1217,2819,12701,25786,42608,https://images.gr-assets.com/books/1321070331l/8685612.jpg,https://images.gr-assets.com/books/1321070331s/8685612.jpg\n1542,16034964,16034964,21807237,41,988393506,9780988393510.0,Cora Carmack,2012.0,Losing It,\"Losing It (Losing It, #1)\",eng,3.77,84438,91275,6615,2396,7028,24581,32744,24526,https://images.gr-assets.com/books/1348459319l/16034964.jpg,https://images.gr-assets.com/books/1348459319s/16034964.jpg\n1543,13573236,13573236,19153727,87,385535144,9780385535140.0,John Grisham,2012.0,The Racketeer,The Racketeer,,3.79,48286,66645,6871,939,4252,18459,27477,15518,https://images.gr-assets.com/books/1344371438l/13573236.jpg,https://images.gr-assets.com/books/1344371438s/13573236.jpg\n1544,6192,6192,1882981,126,143036378,9780143036370.0,J.M. Coetzee,1999.0,Disgrace,Disgrace,eng,3.83,50422,62387,4573,1369,4284,14721,25122,16891,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385161943l/6192.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1545,776407,776407,3244521,146,525444440,9780525444440.0,\"A.A. Milne, Ernest H. Shepard\",1928.0,The House at Pooh Corner,\"The House at Pooh Corner (Winnie-the-Pooh, #2)\",en-US,4.36,69102,71538,866,689,1444,9318,20394,39693,https://images.gr-assets.com/books/1348195621l/776407.jpg,https://images.gr-assets.com/books/1348195621s/776407.jpg\n1546,7165300,7165300,7534979,42,316075558,9780316075560.0,Brent Weeks,2010.0,The Black Prism,\"The Black Prism (Lightbringer, #1)\",en-US,4.24,58906,65873,3022,827,2039,8245,24370,30392,https://images.gr-assets.com/books/1327921884l/7165300.jpg,https://images.gr-assets.com/books/1327921884s/7165300.jpg\n1547,6976,6976,1408375,48,143036696,9780143036690.0,Sue Monk Kidd,2004.0,The Mermaid Chair,The Mermaid Chair,eng,3.1,62760,65696,5910,4807,13288,24684,16305,6612,https://images.gr-assets.com/books/1388259308l/6976.jpg,https://images.gr-assets.com/books/1388259308s/6976.jpg\n1548,537296,537296,1231880,49,64440206,9780064440200.0,Arnold Lobel,1970.0,Frog and Toad Are Friends,\"Frog and Toad Are Friends (Frog and Toad, #1)\",eng,4.18,70119,70705,1010,1041,2915,12966,19278,34505,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179033l/537296.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1549,324277,324277,984147,56,64410129,9780064410120.0,\"Lemony Snicket, Brett Helquist\",2002.0,The Carnivorous Carnival,\"The Carnivorous Carnival (A Series of Unfortunate Events, #9)\",en-US,3.97,83981,86894,1710,942,4280,21100,31005,29567,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518209848l/324277._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1550,6574102,6574102,6767235,42,1423116399,9781423116390.0,Ally Carter,2010.0,Heist Society,\"Heist Society (Heist Society, #1)\",en-US,3.91,75834,78149,4814,2617,5001,16839,25668,28024,https://images.gr-assets.com/books/1359254479l/6574102.jpg,https://images.gr-assets.com/books/1359254479s/6574102.jpg\n1551,29437949,29437949,45981530,62,1250121000,9781250121000.0,B.A. Paris,2016.0,Behind Closed Doors,Behind Closed Doors,eng,3.93,57865,102851,12159,2944,6308,20514,37908,35177,https://images.gr-assets.com/books/1458854462l/29437949.jpg,https://images.gr-assets.com/books/1458854462s/29437949.jpg\n1552,682804,682804,1044737,64,345348109,9780345348100.0,Michael Shaara,1974.0,The Killer Angels,\"The Killer Angels (The Civil War Trilogy, #2)\",en-US,4.3,58372,62781,4020,715,1727,7747,20361,32231,https://images.gr-assets.com/books/1355371689l/682804.jpg,https://images.gr-assets.com/books/1355371689s/682804.jpg\n1553,30274,30274,1736002,51,425201392,9780425201400.0,Laurell K. Hamilton,1995.0,\"Circus of the Damned (Anita Blake, Vampire Hunter, #3)\",\"Circus of the Damned (Anita Blake, Vampire Hunter, #3)\",en-US,4.16,73883,80454,1373,780,2522,14606,27469,35077,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183340l/30274.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1554,59264,59264,3736193,70,786818611,9780786818620.0,Jonathan Stroud,2006.0,Ptolemy's Gate,\"Ptolemy's Gate (Bartimaeus, #3)\",eng,4.24,63838,68833,1783,959,1972,9826,22917,33159,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1528705796l/59264.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1555,29981,29981,68894,680,553214322,9780553214320.0,H.G. Wells,1896.0,The Island of Dr. Moreau,The Island of Dr. Moreau,eng,3.72,60346,70563,2767,897,5007,22375,27122,15162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388230211l/29981.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1556,13362536,13362536,18591132,42,1620610094,9781620610090.0,Jennifer L. Armentrout,2012.0,Opal,\"Opal (Lux, #3)\",,4.34,92014,98068,8330,1079,2588,11790,28917,53694,https://images.gr-assets.com/books/1348200300l/13362536.jpg,https://images.gr-assets.com/books/1348200300s/13362536.jpg\n1557,6512154,6512154,6703901,54,1934781630,9781934781630.0,Dave Eggers,2008.0,Zeitoun,Zeitoun,,4.08,55398,60136,7088,760,2129,10245,25365,21637,https://images.gr-assets.com/books/1296580156l/6512154.jpg,https://images.gr-assets.com/books/1296580156s/6512154.jpg\n1558,6609765,6609765,6803732,41,141697170X,9781416971700.0,Sharon M. Draper,2010.0,Out of My Mind,Out of My Mind,en-US,4.37,63756,69573,10058,547,1483,7956,21472,38115,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347602096l/6609765.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1559,12716010,12716010,14103064,59,,,Lauren Kate,2012.0,Rapture,\"Rapture (Fallen, #4)\",eng,4.03,79360,84367,5182,2222,5420,16312,24191,36222,https://images.gr-assets.com/books/1362339818l/12716010.jpg,https://images.gr-assets.com/books/1362339818s/12716010.jpg\n1560,8564935,12180581,13433455,68,1453688935,9781453688940.0,Amanda Hocking,2010.0,Switched,\"Switched (Trylle, #1)\",eng,3.89,45319,80719,6341,2318,5578,18540,26661,27622,https://images.gr-assets.com/books/1288828865l/8564935.jpg,https://images.gr-assets.com/books/1288828865s/8564935.jpg\n1561,130440,130440,3288400,330,679774386,9780679774390.0,\"Boris Pasternak, Max Hayward, Manya Harari, John Bayley\",1957.0,Доктор Живаго,Doctor Zhivago,eng,4.03,59973,66174,2162,1257,3530,12593,23103,25691,https://images.gr-assets.com/books/1385508725l/130440.jpg,https://images.gr-assets.com/books/1385508725s/130440.jpg\n1563,15034320,15096164,20688937,62,1469216000,9781469216000.0,Blake Crouch,2012.0,Pines,\"Pines (Wayward Pines, #1)\",,3.88,34789,62057,5356,1420,3550,13928,25010,18149,https://images.gr-assets.com/books/1350740525l/15034320.jpg,https://images.gr-assets.com/books/1350740525s/15034320.jpg\n1564,7675,7675,1511269,83,99303744,9780099303750.0,Michael Crichton,1994.0,Disclosure,Disclosure,,3.76,57818,60056,710,924,4157,18087,22292,14596,https://images.gr-assets.com/books/1398678136l/7675.jpg,https://images.gr-assets.com/books/1398678136s/7675.jpg\n1565,12875355,12875355,17822238,79,307959856,9780307959850.0,P.D. James,2012.0,Death Comes to Pemberley,Death Comes to Pemberley,eng,3.21,65906,74781,8645,5576,13652,25738,19180,10635,https://images.gr-assets.com/books/1318936579l/12875355.jpg,https://images.gr-assets.com/books/1318936579s/12875355.jpg\n1566,5246,5246,132919,529,142437808,9780142437800.0,Edith Wharton,1911.0,Ethan Frome,Ethan Frome,eng,3.35,72421,81757,4204,7015,11389,24161,24061,15131,https://images.gr-assets.com/books/1389822254l/5246.jpg,https://images.gr-assets.com/books/1389822254s/5246.jpg\n1567,5205,5205,3046634,30,385720106,9780385720110.0,\"Jane Hamilton, Frank  Muller, C.J. Critt\",1992.0,A Map of the World,A Map of the World,en-GB,3.78,61347,62109,1394,1350,4011,17161,23967,15620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388228311l/5205.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1568,27362503,27362503,43940889,19,,,Colleen Hoover,2016.0,It Ends with Us,It Ends with Us,eng,4.44,80433,94915,15878,1172,2155,8566,24847,58175,https://images.gr-assets.com/books/1470427482l/27362503.jpg,https://images.gr-assets.com/books/1470427482s/27362503.jpg\n1569,143534,143534,171430,2,141693586X,9781416935860.0,\"O. Henry, Lisbeth Zwerger\",1905.0,The Gift of the Magi,The Gift of the Magi,eng,4.07,66537,70501,1253,923,2968,14163,24466,27981,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348417439l/143534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1570,7442,7442,208153,45,553380648,9780553380640.0,Tom Wolfe,1968.0,The Electric Kool-Aid Acid Test,The Electric Kool-Aid Acid Test,en-US,3.92,54848,58254,1529,982,3287,13596,21988,18401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205477l/7442.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1571,7437,7437,4055,139,802140181,9780802140180.0,\"William S. Burroughs, James Grauerholz, Barry  Miles\",1959.0,The Naked Lunch,Naked Lunch,en-US,3.46,55473,61769,2759,4627,7799,17322,18615,13406,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407330990l/7437.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1572,25100,25100,2371237,50,156389226X,9781563892260.0,\"Neil Gaiman, Kelley Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Erickson\",1991.0,The Sandman: Dream Country,Dream Country (The Sandman #3),eng,4.28,67753,73932,1407,1786,1814,9096,22186,39050,https://images.gr-assets.com/books/1402485052l/25100.jpg,https://images.gr-assets.com/books/1402485052s/25100.jpg\n1573,5360,5360,1125216,95,385337930,9780385337940.0,John Grisham,2001.0,A Painted House,A Painted House,eng,3.67,59974,64092,3334,2048,6355,18253,21725,15711,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924850l/5360.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1574,18423,18423,817527,127,441007317,9780441007320.0,\"Ursula K. Le Guin, Lech Jęczmyk\",1969.0,The Left Hand of Darkness,The Left Hand of Darkness,eng,4.05,61888,72176,4708,1170,3497,13266,26812,27431,https://images.gr-assets.com/books/1488213612l/18423.jpg,https://images.gr-assets.com/books/1488213612s/18423.jpg\n1575,3213286,33290383,3247053,77,142412147,9780142412140.0,\"John Green, Maureen Johnson, Lauren Myracle\",2008.0,Let It Snow: Three Holiday Romances,Let It Snow: Three Holiday Romances,eng,3.84,57632,76517,7640,1110,4837,20638,28643,21289,https://images.gr-assets.com/books/1489409554l/3213286.jpg,https://images.gr-assets.com/books/1489409554s/3213286.jpg\n1576,7912007,7912007,11067830,80,1439192561,9781439192570.0,Stephen King,2010.0,\"Full Dark, No Stars\",\"Full Dark, No Stars\",en-US,4.03,60672,69347,5276,682,2494,14005,28981,23185,https://images.gr-assets.com/books/1327892855l/7912007.jpg,https://images.gr-assets.com/books/1327892855s/7912007.jpg\n1577,20696006,20696006,40015533,62,805095152,9780805095160.0,Atul Gawande,2014.0,Being Mortal: Medicine and What Matters in the End,Being Mortal: Medicine and What Matters in the End,eng,4.4,56510,65567,8698,982,1507,5579,19732,37767,https://images.gr-assets.com/books/1408324949l/20696006.jpg,https://images.gr-assets.com/books/1408324949s/20696006.jpg\n1578,32439,32439,442737,82,553582917,9780553582920.0,Dean Koontz,1987.0,Intensity,Intensity,eng,4.04,58062,61292,2323,991,2621,12745,21582,23353,https://images.gr-assets.com/books/1308458213l/32439.jpg,https://images.gr-assets.com/books/1308458213s/32439.jpg\n1579,6472246,6472246,6663373,15,446552445,9780446552450.0,Chelsea Handler,2010.0,Chelsea Chelsea Bang Bang,Chelsea Chelsea Bang Bang,en-US,3.81,55355,57939,2918,1536,4300,15147,19625,17331,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441901414l/6472246._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1580,37793,37793,10535173,603,1406914835,9781406914830.0,\"Henrik Ibsen, Michael   Meyer\",1879.0,Et dukkehjem,A Doll's House,eng,3.69,69450,79492,2701,1820,7074,23481,28984,18133,https://images.gr-assets.com/books/1427119396l/37793.jpg,https://images.gr-assets.com/books/1427119396s/37793.jpg\n1581,12658,12658,1056841,47,375760377,9780375760370.0,James A. Michener,1959.0,Hawaii,Hawaii,en-GB,4.18,59963,61648,1287,561,1806,10458,21787,27036,https://images.gr-assets.com/books/1415585664l/12658.jpg,https://images.gr-assets.com/books/1415585664s/12658.jpg\n1582,48328,48328,1235136,92,413757102,9780413757100.0,Richard Yates,1961.0,Revolutionary Road,Revolutionary Road,eng,3.89,56550,64720,5947,1576,4445,14100,23791,20808,https://images.gr-assets.com/books/1353721885l/48328.jpg,https://images.gr-assets.com/books/1353721885s/48328.jpg\n1583,25373,25373,929639,34,375835318,9780375835320.0,\"Rachel Cohn, David Levithan\",2006.0,Nick & Norah's Infinite Playlist,Nick & Norah's Infinite Playlist,en-US,3.73,60372,71514,4348,2378,6204,19509,23714,19709,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425188149l/25373.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1584,18545,18545,73811,43,802132758,9780802132760.0,\"Tom Stoppard, Henry Popkin\",1966.0,Rosencrantz and Guildenstern are Dead,Rosencrantz and Guildenstern Are Dead,eng,4.06,67077,69783,1541,1394,3749,12598,23414,28628,https://images.gr-assets.com/books/1338735611l/18545.jpg,https://images.gr-assets.com/books/1338735611s/18545.jpg\n1585,9409458,9409458,6961290,76,545259088,9780545259090.0,Maggie Stiefvater,2011.0,Forever,\"Forever (The Wolves of Mercy Falls, #3)\",eng,3.91,85034,91288,7536,2005,6338,21233,29682,32030,https://images.gr-assets.com/books/1285771367l/9409458.jpg,https://images.gr-assets.com/books/1285771367s/9409458.jpg\n1586,607639,607639,1020156,88,1573226521,9781573226520.0,Alex Garland,1996.0,The Beach,The Beach,eng,3.91,52333,57583,2079,838,3254,13336,22974,17181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348547768l/607639.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1587,6617928,6617928,6812044,36,143145541,9780143145550.0,\"Beth Hoffman, Jenna Lamia\",2010.0,Saving CeeCee Honeycutt,Saving CeeCee Honeycutt,eng,3.92,54341,66882,7996,837,3460,15864,26904,19817,https://images.gr-assets.com/books/1348364490l/6617928.jpg,https://images.gr-assets.com/books/1348364490s/6617928.jpg\n1588,10407279,10407279,15311332,46,575096578,9780575096580.0,Charlaine Harris,2012.0,Deadlocked,\"Deadlocked (Sookie Stackhouse, #12)\",eng,3.65,65932,82602,6858,2104,8469,25761,26265,20003,https://images.gr-assets.com/books/1357995380l/10407279.jpg,https://images.gr-assets.com/books/1357995380s/10407279.jpg\n1589,10579,10579,2330175,93,1416524355,9781416524360.0,Stephen King,2002.0,Everything's Eventual: 14 Dark Tales,Everything's Eventual: 14 Dark Tales,eng,3.94,60932,67337,1715,492,2870,17240,26553,20182,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922876l/10579.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1590,91244,91244,933852,51,192750968,9780192750970.0,Beverly Cleary,1955.0,Beezus and Ramona,\"Beezus and Ramona (Ramona, #1)\",,3.97,75987,79139,1477,1553,3774,18481,27259,28072,https://images.gr-assets.com/books/1408924681l/91244.jpg,https://images.gr-assets.com/books/1408924681s/91244.jpg\n1591,13667,13667,1322014,110,141650964X,9781416509650.0,Ursula K. Le Guin,1972.0,The Farthest Shore,\"The Farthest Shore (Earthsea Cycle, #3)\",,4.11,65626,70761,1175,765,2518,13315,25482,28681,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200537l/13667.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1592,7667,7667,997270,78,99556316,9780099556310.0,Michael Crichton,1996.0,Airframe,Airframe,eng,3.66,59229,63420,1482,1251,5523,20402,22606,13638,https://images.gr-assets.com/books/1405420599l/7667.jpg,https://images.gr-assets.com/books/1405420599s/7667.jpg\n1593,13812,13812,15983,58,553564943,9780553564940.0,Raymond E. Feist,1982.0,Magician,\"Magician: Apprentice (The Riftwar Saga, #1)\",en-US,4.17,62432,64948,1231,806,2358,10465,22606,28713,https://images.gr-assets.com/books/1408317983l/13812.jpg,https://images.gr-assets.com/books/1408317983s/13812.jpg\n1594,854757,854757,1616066,58,312987854,9780312987860.0,Jennifer Crusie,2004.0,Bet Me,Bet Me,eng,3.95,70737,73479,3203,1759,4253,16515,24613,26339,https://images.gr-assets.com/books/1316129534l/854757.jpg,https://images.gr-assets.com/books/1316129534s/854757.jpg\n1595,318431,318431,2501119,113,316548189,9780316548180.0,Nelson Mandela,1994.0,Long Walk to Freedom: The Autobiography of Nelson Mandela,Long Walk to Freedom,eng,4.31,43927,47921,2585,664,1050,5745,15748,24714,https://images.gr-assets.com/books/1327997342l/318431.jpg,https://images.gr-assets.com/books/1327997342s/318431.jpg\n1596,20707959,20707959,40030582,78,038553714X,9780385537150.0,John Grisham,2014.0,Gray Mountain,Gray Mountain,eng,3.52,37379,59387,7029,2111,6961,19259,19923,11133,https://images.gr-assets.com/books/1403704671l/20707959.jpg,https://images.gr-assets.com/books/1403704671s/20707959.jpg\n1597,122,122,649656,82,034541005X,9780345410050.0,Bryce Courtenay,1989.0,The Power of One,\"The Power of One (The Power of One, #1)\",eng,4.34,57312,60575,4581,698,1628,6814,18645,32790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184360l/122.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1598,29999,29999,980184,207,752865331,9780752865330.0,Dashiell Hammett,1930.0,The Maltese Falcon,The Maltese Falcon,eng,3.92,58742,67348,3576,1107,3626,15765,25802,21048,https://images.gr-assets.com/books/1306421260l/29999.jpg,https://images.gr-assets.com/books/1306421260s/29999.jpg\n1599,8949352,8949352,13395554,45,312364423,9780312364430.0,Kristin Hannah,2011.0,Night Road,Night Road,en-US,4.17,58028,63759,6334,679,2158,9867,24088,26967,https://images.gr-assets.com/books/1282369257l/8949352.jpg,https://images.gr-assets.com/books/1282369257s/8949352.jpg\n1600,220970,220970,1383273,96,515128635,9780515128640.0,Lee Child,1999.0,Tripwire,\"Tripwire  (Jack Reacher, #3)\",eng,4.07,55251,67495,2692,348,1899,13129,29196,22923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251144l/220970.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1601,26329,26329,587647,146,055380491X,9780553804910.0,Daniel Goleman,1995.0,Emotional Intelligence,Emotional Intelligence: Why It Can Matter More Than IQ,eng,3.98,47661,53141,1546,972,2454,11475,19883,18357,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185411l/26329.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1602,6585201,6585201,6778696,20,045146317X,9780451463170.0,Jim Butcher,2010.0,Changes,\"Changes (The Dresden Files, #12)\",eng,4.54,66402,72481,3289,179,541,4967,21320,45474,https://images.gr-assets.com/books/1304027244l/6585201.jpg,https://images.gr-assets.com/books/1304027244s/6585201.jpg\n1603,773951,773951,484402,78,670674249,9780670674240.0,\"Munro Leaf, Robert Lawson\",1936.0,The Story of Ferdinand,The Story of Ferdinand,,4.35,70961,72547,1216,925,1842,9512,18694,41574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348133512l/773951.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1604,270805,270805,262531,13,1416903569,9781416903570.0,Ellen Hopkins,2007.0,Impulse,\"Impulse (Impulse, #1)\",en-US,4.29,59804,62005,3125,969,2252,8580,16502,33702,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427002059l/270805.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1605,6440,6440,1039021,880,140436588,9780140436590.0,Walter Scott,1819.0,Ivanhoe,Ivanhoe,eng,3.75,65828,71368,1780,1770,5665,20339,24748,18846,https://images.gr-assets.com/books/1405336818l/6440.jpg,https://images.gr-assets.com/books/1405336818s/6440.jpg\n1606,86663,86663,3184483,43,312936222,9780312936230.0,Janet Evanovich,2004.0,Ten Big Ones,\"Ten Big Ones (Stephanie Plum, #10)\",en-US,4.13,76052,80895,1809,231,1800,16072,31940,30852,https://images.gr-assets.com/books/1171076278l/86663.jpg,https://images.gr-assets.com/books/1171076278s/86663.jpg\n1607,32506,32506,32671,115,446690457,9780446690450.0,Michael Connelly,1996.0,The Poet,\"The Poet (Jack McEvoy, #1; Harry Bosch Universe, #5)\",eng,4.19,56191,60785,1912,463,1421,9481,24104,25316,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442855718l/32506._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1608,7719245,7719245,6949381,39,61985848,9780061985840.0,Kiersten White,2010.0,Paranormalcy,\"Paranormalcy (Paranormalcy, #1)\",eng,3.91,79959,82832,5783,2417,5678,18581,26208,29948,https://images.gr-assets.com/books/1496938681l/7719245.jpg,https://images.gr-assets.com/books/1496938681s/7719245.jpg\n1609,7351574,7351574,9115558,20,316087378,9780316087380.0,Mark Cotta Vaz,2010.0,Eclipse: The Official Illustrated Movie Companion,\"Eclipse: The Complete Illustrated Movie Companion (The Twilight Saga: The Official Illustrated Movie Companion, #3)\",en-US,4.44,50084,50375,122,560,1200,6140,10023,32452,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442369092l/7351574._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1610,13127599,13127599,15184744,41,61257095,9780061257090.0,Adriana Trigiani,2012.0,The Shoemaker's Wife,The Shoemaker's Wife,eng,3.98,53378,62046,7329,792,2976,13162,25169,19947,https://images.gr-assets.com/books/1329256279l/13127599.jpg,https://images.gr-assets.com/books/1329256279s/13127599.jpg\n1611,784911,784911,770911,47,1590387422,9781590387430.0,Brandon Mull,2006.0,Rise of the Evening Star,\"Rise of the Evening Star (Fablehaven, #2)\",,4.16,79266,81742,3381,2077,2777,12524,26994,37370,https://images.gr-assets.com/books/1386633982l/784911.jpg,https://images.gr-assets.com/books/1386633982s/784911.jpg\n1612,10305231,10305231,15207309,80,1455806854,9781455806850.0,\"Nora Roberts, MacLeod Andrews\",2011.0,The Next Always,\"The Next Always (Inn BoonsBoro, #1)\",,4.11,54777,63081,3355,962,2449,11776,21571,26323,https://images.gr-assets.com/books/1491591796l/10305231.jpg,https://images.gr-assets.com/books/1491591796s/10305231.jpg\n1613,2195464,2195464,2475030,120,307269191,9780307269200.0,\"Haruki Murakami, Philip Gabriel\",2007.0,走ることについて語るときに僕の語ること [Hashiru koto ni tsuite kataru toki ni boku no kataru koto],What I Talk About When I Talk About Running,eng,3.79,49344,61740,6144,820,3864,17403,25073,14580,https://images.gr-assets.com/books/1473397159l/2195464.jpg,https://images.gr-assets.com/books/1473397159s/2195464.jpg\n1614,8680278,8680278,12901545,39,1416995587,9781416995590.0,Jenny Han,2011.0,We'll Always Have Summer,\"We'll Always Have Summer (Summer, #3)\",en-US,4.17,68112,71387,5139,1305,3605,11571,19752,35154,https://images.gr-assets.com/books/1327054226l/8680278.jpg,https://images.gr-assets.com/books/1327054226s/8680278.jpg\n1615,6480781,6480781,6672023,60,307268195,9780307268200.0,\"Andre Agassi, J.R. Moehringer\",2009.0,Open: An Autobiography,Open,eng,4.18,47185,52701,4781,653,1512,7611,20869,22056,https://images.gr-assets.com/books/1320520930l/6480781.jpg,https://images.gr-assets.com/books/1320520930s/6480781.jpg\n1616,136782,136782,833565,113,014240165X,9780142401650.0,Anthony Horowitz,2000.0,Alex Rider: Stormbreaker,\"Stormbreaker (Alex Rider, #1)\",eng,3.97,67602,72339,4333,1030,3881,16378,26045,25005,https://images.gr-assets.com/books/1288354739l/136782.jpg,https://images.gr-assets.com/books/1288354739s/136782.jpg\n1617,21745,21745,497415,82,1590860624,9781590860620.0,\"Lee Child, Dick Hill\",2002.0,Without Fail ,\"Without Fail (Jack Reacher, #6)\",eng,4.16,53411,63467,1787,300,1283,10727,26737,24420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328000911l/21745.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1618,95617,95617,883913,36,842377506,9780842377510.0,\"Francine Rivers, Richard Ferrone\",1993.0,A Voice in the Wind,\"A Voice in the Wind (Mark of the Lion, #1)\",en-US,4.6,55556,56920,2647,680,903,3382,10680,41275,https://images.gr-assets.com/books/1459567327l/95617.jpg,https://images.gr-assets.com/books/1459567327s/95617.jpg\n1620,14817,14817,1527439,97,057507681X,9780575076820.0,Philip K. Dick,1977.0,A Scanner Darkly ,A Scanner Darkly,eng,4.04,54014,61544,2181,767,2537,12216,24238,21786,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388737865l/14817.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1621,6452796,6452796,6643001,63,1594488843,9781594488850.0,Daniel H. Pink,2008.0,Drive: The Surprising Truth About What Motivates Us,Drive: The Surprising Truth About What Motivates Us,,3.95,55889,59900,3120,1364,2883,12674,23552,19427,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348931599l/6452796.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1622,162898,162898,2621763,798,1416534733,9781416534730.0,Mark Twain,1889.0,A Connecticut Yankee in King Arthur's Court,A Connecticut Yankee in King Arthur's Court,eng,3.76,50112,75361,2050,1764,5414,21300,27903,18980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348239402l/162898.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1623,106069,106069,680248,36,1563894696,9781563894700.0,\"Jeph Loeb, Tim Sale, Gregory Wright, Richard Starkings\",1997.0,Batman: The Long Halloween,Batman: The Long Halloween,eng,4.29,54781,58640,1670,767,1573,7332,18937,30031,https://images.gr-assets.com/books/1350137101l/106069.jpg,https://images.gr-assets.com/books/1350137101s/106069.jpg\n1624,298275,298275,1319935,187,811201880,9780811201890.0,\"Jean-Paul Sartre, Lloyd Alexander, Hayden Carruth\",1938.0,La Nausée,Nausea,eng,3.91,50876,60910,1959,1414,3923,13419,22059,20095,https://images.gr-assets.com/books/1377674928l/298275.jpg,https://images.gr-assets.com/books/1377674928s/298275.jpg\n1626,5217282,5217282,3295041,12,1606410423,9781606410420.0,Brandon Mull,2009.0,\"Fablehaven: Secrets of the Dragon Sanctuary (Fablehaven, #4)\",\"Secrets of the Dragon Sanctuary (Fablehaven, #4)\",eng,4.35,60744,62571,2700,925,1306,6784,19284,34272,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284893l/5217282.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1627,3507,3507,3095104,49,312349486,9780312349490.0,Janet Evanovich,2006.0,Twelve Sharp,\"Twelve Sharp (Stephanie Plum, #12)\",eng,4.14,74747,79373,1971,245,1783,15590,31095,30660,https://images.gr-assets.com/books/1316727699l/3507.jpg,https://images.gr-assets.com/books/1316727699s/3507.jpg\n1628,12287209,12287209,17263666,12,,,Hugh Howey,2011.0,Wool,\"Wool (Wool, #1)\",eng,4.12,59191,59744,3651,982,2571,9520,22139,24532,https://images.gr-assets.com/books/1327889474l/12287209.jpg,https://images.gr-assets.com/books/1327889474s/12287209.jpg\n1629,13662,13662,1322146,118,689845367,9780689845370.0,Ursula K. Le Guin,1970.0,The Tombs of Atuan,\"The Tombs of Atuan (Earthsea Cycle, #2)\",eng,4.07,61457,66964,1730,660,2374,13303,25693,24934,https://images.gr-assets.com/books/1417900879l/13662.jpg,https://images.gr-assets.com/books/1417900879s/13662.jpg\n1630,3475161,3475161,3516480,28,451462564,9780451462560.0,Jim Butcher,2009.0,Turn Coat,\"Turn Coat (The Dresden Files, #11)\",en-US,4.45,64089,70082,2144,97,364,5657,26094,37870,https://images.gr-assets.com/books/1304027128l/3475161.jpg,https://images.gr-assets.com/books/1304027128s/3475161.jpg\n1631,608474,608474,21539872,846,140439072,9780140439080.0,\"Arthur Conan Doyle, Peter Ackroyd, Ed Glinert\",1890.0,The Sign of Four,The Sign of Four,eng,3.96,60469,72378,3132,446,2684,18124,29478,21646,https://images.gr-assets.com/books/1299346921l/608474.jpg,https://images.gr-assets.com/books/1299346921s/608474.jpg\n1632,967494,967494,952391,34,039921920X,9780399219210.0,Jan Brett,1929.0,РУКАВИЧКА: Українська народна казка,The Mitten,eng,4.23,66701,67185,968,732,2383,11271,18933,33866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348985792l/967494.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1633,31338,31338,2925946,61,096319254X,9780963192550.0,Anne Rice,1995.0,Memnoch The Devil,\"Memnoch the Devil (The Vampire Chronicles, #5)\",eng,3.73,62641,67388,1373,2335,6781,18146,19292,20834,https://images.gr-assets.com/books/1301778006l/31338.jpg,https://images.gr-assets.com/books/1301778006s/31338.jpg\n1634,2402971,2402971,3216911,69,385733585,9780385733590.0,Michael Scott,2008.0,The Magician: The Secrets of The Immortal Nicholas Flamel,\"The Magician (The Secrets of the Immortal Nicholas Flamel, #2)\",eng,4.09,67539,71690,2558,891,2685,13791,26201,28122,https://images.gr-assets.com/books/1320396250l/2402971.jpg,https://images.gr-assets.com/books/1320396250s/2402971.jpg\n1635,766955,766955,434352,39,689832133,9780689832130.0,\"Doreen Cronin, Betsy Lewin\",1999.0,\"Click, Clack, Moo: Cows That Type\",\"Click, Clack, Moo: Cows That Type\",eng,4.23,67171,67998,2220,1028,2671,10968,18473,34858,https://images.gr-assets.com/books/1423222939l/766955.jpg,https://images.gr-assets.com/books/1423222939s/766955.jpg\n1636,1412138,1412138,1178926,33,441015662,9780441015660.0,Patricia Briggs,2008.0,Iron Kissed,\"Iron Kissed (Mercy Thompson, #3)\",en-US,4.36,83051,88443,3002,318,1191,10100,31538,45296,https://images.gr-assets.com/books/1358229529l/1412138.jpg,https://images.gr-assets.com/books/1358229529s/1412138.jpg\n1637,9378297,9378297,14261925,50,765328658,9780765328660.0,Kendare Blake,2011.0,Anna Dressed in Blood,\"Anna Dressed in Blood (Anna, #1)\",en-US,3.96,72732,78236,8656,2227,4806,16096,26004,29103,https://images.gr-assets.com/books/1398637405l/9378297.jpg,https://images.gr-assets.com/books/1398637405s/9378297.jpg\n1638,253058,253058,1964458,55,1423321677,9781423321680.0,\"Terry Goodkind, Dick Hill\",1997.0,\"Temple of the Winds (Sword of Truth, #4)\",\"Temple of the Winds (Sword of Truth, #4)\",,4.03,57476,62708,835,1127,3324,12471,21718,24068,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347597249l/253058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1639,310146,310146,997358,51,380714752,9780380714760.0,Avi,1990.0,The True Confessions of Charlotte Doyle,The True Confessions of Charlotte Doyle,eng,3.81,67608,70206,2750,2052,5333,17956,23475,21390,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348243806l/310146.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1640,4929705,4929705,4995331,59,1565125967,9781565125960.0,Robert Goolrick,2009.0,A Reliable Wife,A Reliable Wife,en-US,3.25,58348,68241,9542,4195,10812,24592,20908,7734,https://images.gr-assets.com/books/1404576577l/4929705.jpg,https://images.gr-assets.com/books/1404576577s/4929705.jpg\n1641,248596,248596,1183550,136,380729407,9780380729400.0,Ray Bradbury,1962.0,Something Wicked This Way Comes,\"Something Wicked This Way Comes (Green Town, #2)\",eng,3.95,64813,71886,4526,1121,3850,15942,27380,23593,https://images.gr-assets.com/books/1409596011l/248596.jpg,https://images.gr-assets.com/books/1409596011s/248596.jpg\n1642,11334,11334,3215642,86,140003342X,9781400033420.0,Toni Morrison,1977.0,Song of Solomon,Song of Solomon,eng,4.01,59756,63633,2356,1255,3248,12645,23232,23253,https://images.gr-assets.com/books/1451448230l/11334.jpg,https://images.gr-assets.com/books/1451448230s/11334.jpg\n1643,318525,318525,5054712,65,394298667,9780394298660.0,Tom Clancy,1986.0,Red Storm Rising,Red Storm Rising,,4.14,54930,58980,842,504,2047,10861,21074,24494,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173729031l/318525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1644,227571,227571,3332231,30,802139256,9780802139250.0,Leif Enger,2001.0,Peace Like a River,Peace Like a River,en-US,3.98,59642,61617,6128,1061,3450,13018,22443,21645,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436139976l/227571._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1645,22285,22285,2902758,61,385517874,9780385517870.0,Chuck Palahniuk,2007.0,Rant: An Oral Biography of Buster Casey,Rant,en-US,3.82,49255,52780,2720,1508,4622,12588,17321,16741,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388248283l/22285.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1646,9534,9534,2528139,44,812565959,9780812565960.0,Orson Scott Card,2000.0,Shadow of the Hegemon,\"Shadow of the Hegemon (Ender's Shadow, #2)\",en-US,3.93,58991,62261,1402,521,2740,15150,26062,17788,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1537335644l/9534._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1647,7704143,7704143,10406860,13,,,أحمد مراد,2010.0,تراب الماس,تراب الماس,ara,4.09,43016,45608,4027,995,2050,7402,16743,18418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1265525892l/7704143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1648,505304,505304,493345,39,307021343,9780307021340.0,\"Janette Sebring Lowrey, Gustaf Tenggren\",1942.0,The Poky Little Puppy (a Little Golden Book),The Poky Little Puppy (A Little Golden Book),eng,4.08,62571,63754,707,1261,3654,13263,15823,29753,https://images.gr-assets.com/books/1320424154l/505304.jpg,https://images.gr-assets.com/books/1320424154s/505304.jpg\n1649,5196,5196,2485770,73,440235596,9780440235590.0,Maeve Binchy,1998.0,Tara Road,Tara Road,eng,3.88,60154,63312,1755,775,3273,16628,24613,18023,https://images.gr-assets.com/books/1403194637l/5196.jpg,https://images.gr-assets.com/books/1403194637s/5196.jpg\n1650,37677,37677,6180419,148,1587263890,9781587263900.0,Jack London,1906.0,The Call of the Wild / White Fang,The Call of the Wild/White Fang,eng,4.08,61126,63385,483,1001,2750,12179,21498,25957,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168977937l/37677._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1651,13188676,13188676,40181098,41,,,Tahereh Mafi,2014.0,\"Ignite Me (Shatter Me, #3)\",\"Ignite Me (Shatter Me, #3)\",eng,4.44,83767,90571,11887,1250,2349,8392,21686,56894,https://images.gr-assets.com/books/1375972497l/13188676.jpg,https://images.gr-assets.com/books/1375972497s/13188676.jpg\n1652,568645,568645,2796618,55,1423100050,9781423100060.0,Ally Carter,2007.0,Cross My Heart and Hope to Spy,\"Cross My Heart and Hope to Spy (Gallagher Girls, #2)\",en-US,4.13,69733,73404,3079,1351,2980,13191,23328,32554,https://images.gr-assets.com/books/1342448094l/568645.jpg,https://images.gr-assets.com/books/1342448094s/568645.jpg\n1653,285205,285205,2577848,40,441014739,9780441014740.0,Patricia Briggs,2007.0,Blood Bound,\"Blood Bound (Mercy Thompson, #2)\",eng,4.31,84677,90510,3154,278,1259,11617,34357,42999,https://images.gr-assets.com/books/1358229157l/285205.jpg,https://images.gr-assets.com/books/1358229157s/285205.jpg\n1654,12216302,12216302,17189468,19,451464400,9780451464410.0,Jim Butcher,2012.0,Cold Days,\"Cold Days (The Dresden Files, #14)\",en-US,4.51,57779,66009,4146,118,504,4698,21232,39457,https://images.gr-assets.com/books/1345145377l/12216302.jpg,https://images.gr-assets.com/books/1345145377s/12216302.jpg\n1655,17204,17204,2209036,58,399154094,9780399154100.0,Kate Jacobs,2006.0,The Friday Night Knitting Club,\"The Friday Night Knitting Club (Friday Night Knitting Club, #1)\",eng,3.41,60812,65065,8046,2739,8547,23141,20621,10017,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187371l/17204.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1656,38743,38743,2752234,53,312330863,9780312330870.0,James Herriot,1973.0,All Things Bright and Beautiful,All Things Bright and Beautiful (All Creatures Great and Small),en-US,4.3,57626,59698,742,1075,1295,7347,19029,30952,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197805l/38743.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1657,6759,6759,3271542,56,316921173,9780316921180.0,David Foster Wallace,1996.0,Infinite Jest,Infinite Jest,en-US,4.31,46742,56737,7051,2185,2534,5156,12252,34610,https://images.gr-assets.com/books/1446876799l/6759.jpg,https://images.gr-assets.com/books/1446876799s/6759.jpg\n1658,18297707,18297707,21868234,53,,,Emma Chase,2013.0,Tangled,\"Tangled (Tangled, #1)\",eng,4.12,59705,90224,8633,2243,4107,14308,29042,40524,https://images.gr-assets.com/books/1375808439l/18297707.jpg,https://images.gr-assets.com/books/1375808439s/18297707.jpg\n1659,530965,530965,188517,162,812967127,9780812967130.0,John Wyndham,1951.0,The Day of the Triffids,The Day of the Triffids,eng,4.0,58945,65796,2372,643,2695,14438,26577,21443,https://images.gr-assets.com/books/1320530145l/530965.jpg,https://images.gr-assets.com/books/1320530145s/530965.jpg\n1660,9850443,9850443,14741473,66,62041266,9780062041260.0,\"Patrick deWitt, Marcelo Barbão\",2011.0,The Sisters Brothers,The Sisters Brothers,eng,3.83,51694,59547,7002,1001,3418,14340,26611,14177,https://images.gr-assets.com/books/1291999900l/9850443.jpg,https://images.gr-assets.com/books/1291999900s/9850443.jpg\n1661,6905012,6905012,7129188,40,61922315,9780061922310.0,Shilpi Somaya Gowda,2010.0,Secret Daughter,Secret Daughter,en-US,3.97,52734,58998,4904,502,2337,12696,26379,17084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347708559l/6905012.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1662,6693,6693,44775,183,375822070,9780375822070.0,\"Roald Dahl, Quentin Blake\",1970.0,Fantastic Mr Fox,Fantastic Mr. Fox,eng,4.03,66015,75149,2813,740,3331,16818,26508,27752,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390097292l/6693.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1663,68591,68591,3252430,139,9504915248,9789504915250.0,\"Paulo Coelho, Montserrat Mira\",1990.0,Brida,Brida,por,3.46,45905,54117,2675,2936,7653,16869,14785,11874,https://images.gr-assets.com/books/1403772793l/68591.jpg,https://images.gr-assets.com/books/1403772793s/68591.jpg\n1664,18521,18521,1315615,340,141183535,9780141183530.0,Virginia Woolf,1929.0,A Room of One's Own,A Room of One's Own,eng,4.1,59868,71968,3573,1097,3031,12558,26448,28834,https://images.gr-assets.com/books/1327883012l/18521.jpg,https://images.gr-assets.com/books/1327883012s/18521.jpg\n1665,1268479,1268479,1257385,41,,,Brandon Sanderson,2009.0,Warbreaker,\"Warbreaker (Warbreaker, #1)\",eng,4.22,55948,65488,4548,322,1337,9533,26899,27397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1240256182l/1268479.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1666,42038,42038,1118349,656,1903436575,9781903436580.0,\"William Shakespeare, Katherine Duncan-Jones\",1592.0,Sonnets,Shakespeare's Sonnets,en-US,4.24,58291,63657,755,902,1890,9671,19809,31385,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431229752l/42038.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1667,8492856,8492856,13014066,31,670012947,9780670012950.0,Sarah Dessen,2011.0,What Happened to Goodbye,What Happened to Goodbye,eng,3.97,69636,72976,4082,1000,3765,16998,25820,25393,https://images.gr-assets.com/books/1347810788l/8492856.jpg,https://images.gr-assets.com/books/1347810788s/8492856.jpg\n1668,23437156,23437156,42077459,48,1627792120,9781627792130.0,Leigh Bardugo,2015.0,Six of Crows,\"Six of Crows (Six of Crows, #1)\",eng,4.46,90202,101264,17068,1100,1725,7886,29552,61001,https://images.gr-assets.com/books/1500689111l/23437156.jpg,https://images.gr-assets.com/books/1500689111s/23437156.jpg\n1669,17020,17020,1008846,35,60541431,9780060541440.0,Maureen Johnson,2005.0,13 Little Blue Envelopes,\"13 Little Blue Envelopes (Little Blue Envelope, #1)\",eng,3.65,66950,70828,4329,2447,7061,20927,23036,17357,https://images.gr-assets.com/books/1375030179l/17020.jpg,https://images.gr-assets.com/books/1375030179s/17020.jpg\n1670,104189,104189,421493,35,849900417,9780849900420.0,\"Ron Hall, Denver Moore, Lynn Vincent\",2005.0,Same Kind of Different as Me,Same Kind of Different as Me,en-US,4.21,52964,58121,6412,712,2248,8544,18957,27660,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440374557l/104189._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1671,23734628,32768522,43346673,51,1250049555,9781250049550.0,Rainbow Rowell,2015.0,Carry On,Carry On,eng,4.19,46197,87797,14621,2051,3611,12362,27273,42500,https://images.gr-assets.com/books/1429810397l/23734628.jpg,https://images.gr-assets.com/books/1429810397s/23734628.jpg\n1672,10235,10235,1639628,42,812973011,9780812973010.0,Tracy Kidder,2003.0,\"Mountains Beyond Mountains: The Quest of Dr. Paul Farmer, a Man Who Would Cure the World\",\"Mountains Beyond Mountains: The Quest of Dr. Paul Farmer, A Man Who Would Cure the World\",eng,4.21,53019,55178,4220,674,1808,8174,19341,25181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433156001l/10235._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1673,18149927,18149927,21996351,38,,,Jodi Ellen Malpas,2013.0,Beneath This Man ,\"Beneath This Man (This Man, #2)\",eng,4.3,44170,74457,3703,1532,2681,8933,19848,41463,https://images.gr-assets.com/books/1372773964l/18149927.jpg,https://images.gr-assets.com/books/1372773964s/18149927.jpg\n1674,9579634,9579634,14466531,1,7423292,9780007423290.0,Mark  Lawrence,2011.0,Prince of Thorns,\"Prince of Thorns (The Broken Empire, #1)\",eng,3.87,54173,63562,4673,2166,4189,13524,23391,20292,https://images.gr-assets.com/books/1327917754l/9579634.jpg,https://images.gr-assets.com/books/1327917754s/9579634.jpg\n1675,5187,5187,3234420,18,385265700,9780385265710.0,Jane Hamilton,1988.0,The Book of Ruth,The Book of Ruth,en-US,3.82,56842,57244,1139,1246,3447,15031,22252,15268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441207803l/5187._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1676,9593,9593,517654,92,385333870,9780385333870.0,Kurt Vonnegut Jr.,1985.0,Galápagos,Galápagos,,3.87,48330,54131,2134,543,3003,14082,21793,14710,https://images.gr-assets.com/books/1355012643l/9593.jpg,https://images.gr-assets.com/books/1355012643s/9593.jpg\n1677,7661,7661,2821071,92,60872985,9780060872980.0,Michael Crichton,2006.0,Next,Next,en-US,3.48,53487,56632,2686,2163,6912,19185,18044,10328,https://images.gr-assets.com/books/1358010468l/7661.jpg,https://images.gr-assets.com/books/1358010468s/7661.jpg\n1679,27494,27494,28117,624,1416523715,9781416523710.0,Walt Whitman,1855.0,Leaves of Grass,Leaves of Grass,eng,4.12,57763,65305,1671,1332,3015,11052,20850,29056,https://images.gr-assets.com/books/1418012204l/27494.jpg,https://images.gr-assets.com/books/1418012204s/27494.jpg\n1680,114159,114159,1615607,76,749935332,9780749935340.0,Nora Roberts,2004.0,Blue Dahlia,\"Blue Dahlia (In the Garden, #1)\",eng,4.11,57413,60144,1185,589,2089,12105,20662,24699,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348333313l/114159.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1681,32067,32049,3249302,672,014303961X,9780143039620.0,\"D.H. Lawrence, Doris Lessing, Chester Brown\",1928.0,Lady Chatterley's Lover,Lady Chatterley's Lover,eng,3.49,46541,75707,3780,2821,9235,25753,24177,13721,https://images.gr-assets.com/books/1425007748l/32067.jpg,https://images.gr-assets.com/books/1425007748s/32067.jpg\n1682,10079321,10079321,13362064,44,043402080X,9780434020800.0,Lev Grossman,2011.0,The Magician King,\"The Magician King (The Magicians, #2)\",en-US,3.9,52061,63664,5446,820,3058,14646,28052,17088,https://images.gr-assets.com/books/1316177353l/10079321.jpg,https://images.gr-assets.com/books/1316177353s/10079321.jpg\n1683,1171,7865083,855103,44,140143459,9780140143450.0,Michael   Lewis,1989.0,Liar's Poker: Rising Through the Wreckage on Wall Street,Liar's Poker,en-US,4.16,22315,53700,1678,458,1513,8684,21374,21671,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204660l/1171.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1685,10915,10915,3349637,55,743418719,9780743418710.0,Jodi Picoult,2001.0,Salem Falls,Salem Falls,en-US,3.8,59930,62434,2992,816,3815,17863,24523,15417,https://images.gr-assets.com/books/1344397557l/10915.jpg,https://images.gr-assets.com/books/1344397557s/10915.jpg\n1686,189802,189802,938087,25,345403959,9780345403960.0,\"David Eddings, Leigh Eddings\",1995.0,Belgarath the Sorcerer,Belgarath the Sorcerer,en-US,4.07,59737,61087,354,951,3019,12160,19618,25339,https://images.gr-assets.com/books/1333692194l/189802.jpg,https://images.gr-assets.com/books/1333692194s/189802.jpg\n1687,53764,53764,551,18,575070706,9780575070710.0,Frank Herbert,1977.0,The Great Dune Trilogy,The Great Dune Trilogy  ,en-GB,4.35,51454,52082,165,623,1404,5995,14927,29133,https://images.gr-assets.com/books/1419962914l/53764.jpg,https://images.gr-assets.com/books/1419962914s/53764.jpg\n1688,25893709,25893709,45584499,49,1400067693,9781400067700.0,\"Elizabeth Strout, Goran Skrobonja\",2016.0,My Name Is Lucy Barton,My Name Is Lucy Barton,eng,3.51,49578,65707,8732,2390,7926,21069,22643,11679,https://images.gr-assets.com/books/1450653428l/25893709.jpg,https://images.gr-assets.com/books/1450653428s/25893709.jpg\n1689,1158967,1158967,2689445,74,553805487,9780553805480.0,Sarah Addison Allen,2007.0,Garden Spells,\"Garden Spells (Waverley Family, #1)\",eng,4.06,65409,71577,8745,815,2757,13797,27819,26389,https://images.gr-assets.com/books/1347309330l/1158967.jpg,https://images.gr-assets.com/books/1347309330s/1158967.jpg\n1690,8058301,8058301,12731936,25,045146379X,9780451463790.0,Jim Butcher,2011.0,Ghost Story,\"Ghost Story (The Dresden Files,  #13)\",eng,4.25,59657,66787,3654,282,1851,9767,23863,31024,https://images.gr-assets.com/books/1329104700l/8058301.jpg,https://images.gr-assets.com/books/1329104700s/8058301.jpg\n1691,36529,36529,1990110,660,1580495761,9781580495770.0,Frederick Douglass,1845.0,Narrative of the Life of Frederick Douglass,Narrative of the Life of Frederick Douglass,eng,3.97,55576,65135,2762,1758,3733,13634,21887,24123,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234247l/36529.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1692,10412,10412,822184,62,141694740X,9781416947400.0,\"Greg Behrendt, Liz Tuccillo\",2004.0,He's Just Not That Into You: The No-Excuses Truth to Understanding Guys,He's Just Not That Into You: The No-Excuses Truth to Understanding Guys,eng,3.65,49015,55865,3216,2597,6009,15398,16040,15821,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205020l/10412.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1693,44659,44659,2558293,67,345468643,9780345468640.0,David Eddings,1982.0,Pawn of Prophecy,\"Pawn of Prophecy (The Belgariad, #1)\",eng,4.16,67451,74133,2210,762,2725,12867,25674,32105,https://images.gr-assets.com/books/1391346857l/44659.jpg,https://images.gr-assets.com/books/1391346857s/44659.jpg\n1694,40317,40317,1943980,43,312349491,9780312349490.0,Janet Evanovich,2007.0,Lean Mean Thirteen,\"Lean Mean Thirteen (Stephanie Plum, #13)\",en-US,4.08,73839,77820,2214,309,2120,16987,30069,28335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442616484l/40317._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1695,41684,41684,3183592,227,451529758,9780451529760.0,\"Rudyard Kipling, Alev Lytle Croutier\",1895.0,The Jungle Books,The Jungle Books,eng,4.0,68750,70981,854,686,3123,16621,25323,25228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349066474l/41684.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1696,27266,27266,27912,55,451219945,9780451219950.0,Rachel Caine,2006.0,Glass Houses,\"Glass Houses (The Morganville Vampires, #1)\",en-US,3.92,77454,82220,4316,2743,5916,17829,24463,31269,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428057864l/27266.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1698,342445,342445,2402933,20,785121447,9780785121440.0,\"Peter David, Robin Furth, Jae Lee, Richard Isanove, Stephen King\",2007.0,The Dark Tower: The Gunslinger Born,The Dark Tower: The Gunslinger Born,eng,4.18,60746,61405,832,1318,2554,9780,18142,29611,https://images.gr-assets.com/books/1489721554l/342445.jpg,https://images.gr-assets.com/books/1489721554s/342445.jpg\n1699,21104828,21104828,40462273,60,,,Kate Morton,2015.0,The Lake House,The Lake House,eng,4.04,46348,62987,7964,926,2137,11552,27411,20961,https://images.gr-assets.com/books/1455089249l/21104828.jpg,https://images.gr-assets.com/books/1455089249s/21104828.jpg\n1700,15811545,15811545,21536809,58,670026638,9780670026630.0,Ruth Ozeki,2013.0,A Tale for the Time Being,A Tale for the Time Being,eng,3.98,51580,59311,8242,1325,3127,11371,23289,20199,https://images.gr-assets.com/books/1463767452l/15811545.jpg,https://images.gr-assets.com/books/1463767452s/15811545.jpg\n1701,9010,9010,2970640,30,806527285,9780806527280.0,Tucker Max,2006.0,I Hope They Serve Beer in Hell,\"I Hope They Serve Beer in Hell (Tucker Max, #1)\",,3.51,46092,49692,4292,4392,5839,12426,13919,13116,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179505l/9010.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1702,17200687,17200687,23675925,29,,,\"Jay Crownover, Charlotte Connan de vries\",2012.0,Rule,\"Rule (Marked Men, #1)\",eng,4.16,79077,83965,5399,1414,3008,12953,30227,36363,https://images.gr-assets.com/books/1357012113l/17200687.jpg,https://images.gr-assets.com/books/1357012113s/17200687.jpg\n1703,17799,17799,1739145,129,99448572,9780099448570.0,\"Haruki Murakami, Philip Gabriel\",1992.0,\" 国境の南、太陽の西 [Kokkyō no minami, taiyō no nishi]\",\"South of the Border, West of the Sun\",eng,3.87,47812,60117,3401,683,3284,15329,24938,15883,https://images.gr-assets.com/books/1443685506l/17799.jpg,https://images.gr-assets.com/books/1443685506s/17799.jpg\n1704,9592,9592,1222244,103,385334141,9780385334140.0,Kurt Vonnegut Jr.,1961.0,Mother Night,Mother Night,en-US,4.21,52249,57090,2195,199,1118,9073,23064,23636,https://images.gr-assets.com/books/1344621657l/9592.jpg,https://images.gr-assets.com/books/1344621657s/9592.jpg\n1705,28815,28815,29303,114,006124189X,9780061241900.0,Robert B. Cialdini,1984.0,Influence: The Psychology of Persuasion,Influence: The Psychology of Persuasion,eng,4.18,45874,52797,1980,876,2004,8199,17516,24202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391026083l/28815.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1706,32559,32559,4035401,75,451526759,9780451526760.0,\"Edgar Allan Poe, Stephen Marlowe\",1960.0,The Fall of the House of Usher and Other Writings,The Fall of the House of Usher and Other Tales ,,4.14,57265,58151,304,360,1775,10729,21651,23636,https://images.gr-assets.com/books/1355276847l/32559.jpg,https://images.gr-assets.com/books/1355276847s/32559.jpg\n1707,232576,232576,1429939,61,440416795,9780440416790.0,Louise Fitzhugh,1964.0,Harriet the Spy,Harriet the Spy (Harriet the Spy #1),eng,3.96,77575,79970,1980,2267,4538,17737,25117,30311,https://images.gr-assets.com/books/1320540825l/232576.jpg,https://images.gr-assets.com/books/1320540825s/232576.jpg\n1708,20821087,20821087,26164907,54,1594633118,9781594633120.0,Sarah Waters,2014.0,The Paying Guests,The Paying Guests,en-US,3.39,44839,55079,7091,2986,7472,17854,18501,8266,https://images.gr-assets.com/books/1396671788l/20821087.jpg,https://images.gr-assets.com/books/1396671788s/20821087.jpg\n1709,16433,16433,2789370,67,553588265,9780553588260.0,Dean Koontz,2005.0,Forever Odd,\"Forever Odd (Odd Thomas, #2)\",en-US,3.96,54958,59864,2419,490,2935,14032,23136,19271,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348816320l/16433.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1710,7507825,7507825,7800569,80,767919386,9780767919390.0,Bill Bryson,2010.0,At Home: A Short History of Private Life,At Home: A Short History of Private Life,eng,3.96,55296,61053,5259,995,2954,13153,24324,19627,https://images.gr-assets.com/books/1372727082l/7507825.jpg,https://images.gr-assets.com/books/1372727082s/7507825.jpg\n1711,82748,82748,23739,76,60555955,9780060555960.0,Marian Keyes,2000.0,Sushi for Beginners,Sushi for Beginners,,3.69,55373,57897,1237,1516,4753,17695,20269,13664,https://images.gr-assets.com/books/1407709390l/82748.jpg,https://images.gr-assets.com/books/1407709390s/82748.jpg\n1712,338691,338691,898083,73,312948557,9780312948560.0,Louise Penny,2005.0,Still Life,\"Still Life (Chief Inspector Armand Gamache, #1)\",eng,3.91,59317,70558,7161,1717,3419,15647,28773,21002,https://images.gr-assets.com/books/1324373974l/338691.jpg,https://images.gr-assets.com/books/1324373974s/338691.jpg\n1713,9300,9300,912230,65,99489988,9780099489990.0,Marian Keyes,1995.0,Watermelon,\"Watermelon (Walsh Family, #1)\",,3.79,55841,59134,1427,1605,4037,16205,20862,16425,https://images.gr-assets.com/books/1345767584l/9300.jpg,https://images.gr-assets.com/books/1345767584s/9300.jpg\n1714,12557,12557,1131637,66,143038109,9780143038110.0,Amy Tan,1991.0,The Kitchen God's Wife,The Kitchen God's Wife,en-US,3.98,58836,62180,1750,364,1910,14429,27340,18137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434152599l/12557._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1715,943402,943402,928338,97,1847241697,9781847241700.0,John Ajvide Lindqvist,2004.0,Låt den rätte komma in,Let the Right One In,eng,4.07,52518,65813,4814,1331,2929,11393,24366,25794,https://images.gr-assets.com/books/1327893384l/943402.jpg,https://images.gr-assets.com/books/1327893384s/943402.jpg\n1716,12971616,12971616,18055886,59,61974587,9780061974590.0,Pittacus Lore,2012.0,The Rise of Nine,\"The Rise of Nine (Lorien Legacies, #3)\",eng,4.2,70196,75861,4207,793,2254,12158,26601,34055,https://images.gr-assets.com/books/1331740153l/12971616.jpg,https://images.gr-assets.com/books/1331740153s/12971616.jpg\n1718,5454,5454,841331,77,385731051,9780385731060.0,Ann Brashares,2003.0,The Second Summer of the Sisterhood,\"The Second Summer of the Sisterhood (Sisterhood, #2)\",en-US,3.78,67357,77713,2169,852,4713,24217,29115,18816,https://images.gr-assets.com/books/1467700995l/5454.jpg,https://images.gr-assets.com/books/1467700995s/5454.jpg\n1719,32435,32435,1762777,77,425181103,9780425181100.0,Dean Koontz,1983.0,Phantoms,Phantoms,en-US,3.93,56287,58299,1005,744,2845,14865,21315,18530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925458l/32435.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1721,175510,175510,1559310,134,1586608290,9781586608290.0,Oswald Chambers,1926.0,My Utmost for His Highest,My Utmost for His Highest,eng,4.39,47720,50738,652,551,1349,5961,12904,29973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389470852l/175510.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1722,34494,34494,62580,100,60012382,9780060012380.0,Terry Pratchett,2003.0,The Wee Free Men,\"The Wee Free Men (Discworld, #30; Tiffany Aching, #1)\",eng,4.25,63635,71650,3084,618,1831,10483,24449,34269,https://images.gr-assets.com/books/1443764106l/34494.jpg,https://images.gr-assets.com/books/1443764106s/34494.jpg\n1723,11710373,11710373,16657990,39,385344430,9780385344430.0,Diana Gabaldon,2014.0,Written in My Own Heart's Blood,\"Written in My Own Heart's Blood (Outlander, #8)\",eng,4.5,46663,62767,5617,336,924,5205,17069,39233,https://images.gr-assets.com/books/1365173799l/11710373.jpg,https://images.gr-assets.com/books/1365173799s/11710373.jpg\n1724,7402393,7402393,7168458,53,039925482X,9780399254830.0,Andrea Cremer,2010.0,Nightshade,Nightshade (Nightshade #1; Nightshade World #4),eng,4.03,69534,73076,4916,2297,4620,13283,21066,31810,https://images.gr-assets.com/books/1333400218l/7402393.jpg,https://images.gr-assets.com/books/1333400218s/7402393.jpg\n1726,100464,100464,429198,71,190444248X,9781904442490.0,Cornelia Funke,1997.0,Drachenreiter,\"Dragon Rider (Dragon Rider, #1)\",eng,3.94,61387,65811,2077,1073,3945,16083,21263,23447,https://images.gr-assets.com/books/1328004947l/100464.jpg,https://images.gr-assets.com/books/1328004947s/100464.jpg\n1727,357,357,1096,82,671742515,9780671742520.0,Douglas Adams,1988.0,The Long Dark Tea-Time of the Soul,\"The Long Dark Tea-Time of the Soul (Dirk Gently, #2)\",en-US,4.05,59276,63769,1458,393,2464,13614,24400,22898,https://images.gr-assets.com/books/1388257271l/357.jpg,https://images.gr-assets.com/books/1388257271s/357.jpg\n1728,22544764,22544764,41876730,41,804179034,9780804179030.0,Naomi Novik,2015.0,Uprooted,Uprooted,eng,4.13,61454,76771,12808,1628,3598,11400,26980,33165,https://images.gr-assets.com/books/1480121122l/22544764.jpg,https://images.gr-assets.com/books/1480121122s/22544764.jpg\n1729,22816087,22816087,42299347,35,,,Neal Stephenson,2015.0,Seveneves,Seveneves,eng,3.98,44612,56787,7338,1062,3140,10939,22562,19084,https://images.gr-assets.com/books/1449142000l/22816087.jpg,https://images.gr-assets.com/books/1449142000s/22816087.jpg\n1730,16278318,16278318,22378124,37,804137250,9780804137260.0,Ernest Cline,2015.0,Armada,Armada,en-GB,3.49,49958,59061,9359,2306,7355,18961,20175,10264,https://images.gr-assets.com/books/1377284428l/16278318.jpg,https://images.gr-assets.com/books/1377284428s/16278318.jpg\n1731,6736971,6736971,6527274,37,345503813,9780345503820.0,Peter V. Brett,2010.0,The Desert Spear,\"The Desert Spear (Demon Cycle, #2)\",eng,4.24,53143,58608,1927,555,1691,7805,21853,26704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388219761l/6736971.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1732,209194,209194,995869,149,7151667,9780007151660.0,Agatha Christie,1924.0,The Man in the Brown Suit,The Man in the Brown Suit,eng,3.97,56053,58728,1072,1390,2894,13344,19619,21481,https://images.gr-assets.com/books/1390018729l/209194.jpg,https://images.gr-assets.com/books/1390018729s/209194.jpg\n1733,5352,5352,270452,100,385339593,9780385339600.0,John Grisham,2002.0,The Summons,The Summons,eng,3.68,53304,56634,1569,821,4168,19241,20480,11924,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388611098l/5352.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1734,139069,139069,900140,75,078670621X,9780786706210.0,Alfred Lansing,1959.0,Endurance: Shackleton's incredible voyage,Endurance: Shackleton's Incredible Voyage,eng,4.36,50142,54026,3459,457,979,5939,18166,28485,https://images.gr-assets.com/books/1391329559l/139069.jpg,https://images.gr-assets.com/books/1391329559s/139069.jpg\n1735,23220,23220,3239380,50,60525118,9780060525120.0,Meg Cabot,2005.0,\"Size 12 Is Not Fat (Heather Wells, #1)\",\"Size 12 Is Not Fat (Heather Wells, #1)\",en-US,3.75,66089,67720,2367,1798,5185,19396,23130,18211,https://images.gr-assets.com/books/1259077761l/23220.jpg,https://images.gr-assets.com/books/1259077761s/23220.jpg\n1736,27833670,27833670,43161998,57,1101904224,9781101904220.0,Blake Crouch,2016.0,Dark Matter,Dark Matter,eng,4.11,63814,80738,12710,741,2798,13607,33493,30099,https://images.gr-assets.com/books/1472119680l/27833670.jpg,https://images.gr-assets.com/books/1472119680s/27833670.jpg\n1737,23174274,23174274,42720997,65,62310666,9780062310670.0,Victoria Aveyard,2016.0,Glass Sword,\"Glass Sword (Red Queen, #2)\",eng,3.95,78405,88428,11596,1971,5390,18465,32212,30390,https://images.gr-assets.com/books/1436460934l/23174274.jpg,https://images.gr-assets.com/books/1436460934s/23174274.jpg\n1738,5310515,5310515,6608018,51,385737424,9780385737420.0,Rebecca Stead,2009.0,When You Reach Me,When You Reach Me,en-US,4.08,64430,68034,9693,1136,3036,12231,24803,26828,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441759322l/5310515._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1739,2666,2666,1080201,92,553381342,9780553381340.0,Tom Wolfe,1987.0,The Bonfire of the Vanities,The Bonfire of the Vanities,eng,3.81,52062,56076,2133,1413,4001,13674,21544,15444,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1542903489l/2666.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1740,23899174,23899174,43446313,33,1101875046,9781101875050.0,Judy Blume,2015.0,In the Unlikely Event,In the Unlikely Event,eng,3.51,40885,49802,6087,1668,5122,16721,18677,7614,https://images.gr-assets.com/books/1421711380l/23899174.jpg,https://images.gr-assets.com/books/1421711380s/23899174.jpg\n1741,131359,131359,3038762,61,553119222,9780553119220.0,Agatha Christie,1937.0,Death on the Nile,\"Death on the Nile (Hercule Poirot, #17)\",eng,4.06,64949,73537,2219,289,1871,15836,30392,25149,https://images.gr-assets.com/books/1486837149l/131359.jpg,https://images.gr-assets.com/books/1486837149s/131359.jpg\n1742,207153,207153,1152585,45,689862229,9780689862230.0,Phyllis Reynolds Naylor,1991.0,Shiloh,\"Shiloh (Shiloh, #1)\",eng,3.91,59585,62062,1766,1083,3810,15912,20357,20900,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387737804l/207153.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1743,14061955,14061955,19699752,44,805094601,9780805094600.0,Leigh Bardugo,2013.0,Siege and Storm,\"Siege and Storm (Shadow and Bone, #2)\",eng,4.08,78658,87539,9818,987,3180,15868,34942,32562,https://images.gr-assets.com/books/1362166252l/14061955.jpg,https://images.gr-assets.com/books/1362166252s/14061955.jpg\n1744,465226,465226,1487876,140,184343217X,9781843432170.0,\"Jo Nesbø, Don Bartlett\",2000.0,\"Rødstrupe (Harry Hole, #3) \",\"The Redbreast (Harry Hole, #3)\",eng,3.94,49999,60598,3185,1041,2668,13058,26010,17821,https://images.gr-assets.com/books/1320540474l/465226.jpg,https://images.gr-assets.com/books/1320540474s/465226.jpg\n1745,6050678,6050678,6226342,54,1416971734,9781416971730.0,Scott Westerfeld,2009.0,Leviathan,\"Leviathan (Leviathan, #1)\",en-US,3.91,69065,72965,6395,2212,4654,15458,25857,24784,https://images.gr-assets.com/books/1275694232l/6050678.jpg,https://images.gr-assets.com/books/1275694232s/6050678.jpg\n1746,13153,13153,15324,43,6498523,9780006498520.0,James Patterson,1995.0,Hide and Seek,Hide and Seek,en-US,4.1,53038,54463,455,544,1604,11044,19768,21503,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390097142l/13153.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1748,14756,14756,1440388,48,743470125,9780743470120.0,Jennifer Weiner,2005.0,Goodnight Nobody,Goodnight Nobody,en-US,3.64,51748,53145,1870,1088,4432,17806,18827,10992,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441760771l/14756._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1749,263050,263050,2563685,45,330488902,9780330488910.0,Ben Sherwood,2004.0,The Death and Life of Charlie St. Cloud,The Death and Life of Charlie St. Cloud,eng,4.01,46361,50912,2166,792,2530,11168,17487,18935,https://images.gr-assets.com/books/1329827169l/263050.jpg,https://images.gr-assets.com/books/1329827169s/263050.jpg\n1750,4866,4866,41052,175,671035975,9780671035980.0,Dale Carnegie,1944.0,How to Stop Worrying and Start Living,How to Stop Worrying and Start Living,en-GB,4.08,46797,51418,1325,1239,2243,9509,16637,21790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442129098l/4866._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1751,114145,114145,1615784,72,515114693,9780515114690.0,Nora Roberts,1994.0,Born in Fire ,\"Born in Fire (Born In Trilogy, #1)\",en-US,4.21,56901,59283,941,461,1511,10300,19642,27369,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252961l/114145._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1752,77262,77262,809743,34,60921145,9780060921150.0,Barbara Kingsolver,1990.0,Animal Dreams,Animal Dreams,eng,4.05,51007,53763,1983,363,1673,11103,22444,18180,https://images.gr-assets.com/books/1481663395l/77262.jpg,https://images.gr-assets.com/books/1481663395s/77262.jpg\n1753,11561469,11561469,16501870,32,,,Rebecca Donovan,2011.0,Reason to Breathe,\"Reason to Breathe (Breathing, #1)\",eng,4.23,68676,77887,5476,1711,2907,9999,24125,39145,https://images.gr-assets.com/books/1329013365l/11561469.jpg,https://images.gr-assets.com/books/1329013365s/11561469.jpg\n1754,6485421,6485421,6676773,14,1416997857,9781416997860.0,Cassandra Clare,2009.0,The Mortal Instruments Boxed Set: City of Bones; City of Ashes; City of Glass,\"The Mortal Instruments Boxed Set: City of Bones; City of Ashes; City of Glass (The Mortal Instruments, #1-3)\",eng,4.57,55518,57313,981,633,1054,4101,10768,40757,https://images.gr-assets.com/books/1312016549l/6485421.jpg,https://images.gr-assets.com/books/1312016549s/6485421.jpg\n1755,14554,14554,1742291,87,6479677,9780006479670.0,Sidney Sheldon,1985.0,If Tomorrow Comes,\"If Tomorrow Comes (Tracy Whitney Series, #1)\",eng,4.01,44722,48482,1599,456,2070,10848,18080,17028,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387733550l/14554.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1756,276287,276287,267933,50,3822858641,9783822858650.0,\"M.C. Escher, Bruce Brooks Pfeiffer\",1956.0,M.C. Escher: grafiek en tekeningen,M.C. Escher: The Graphic Work,eng,3.93,50047,50389,93,2900,3392,9212,13706,21179,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388377308l/276287.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1757,27252,27252,1612513,75,345416260,9780345416260.0,Donna Woolfolk Cross,1996.0,Pope Joan,Pope Joan,eng,4.06,51385,56247,4079,854,2240,10552,21373,21228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912604l/27252.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1758,6259,6259,1093016,71,679776818,9780679776820.0,Sebastian Faulks,1993.0,Birdsong,Birdsong,eng,4.07,49930,55657,2543,1160,2911,9600,19416,22570,https://images.gr-assets.com/books/1349952101l/6259.jpg,https://images.gr-assets.com/books/1349952101s/6259.jpg\n1759,121127,121127,1492897,45,081257639X,9780812576400.0,Terry Goodkind,2000.0,\"Faith of the Fallen  (Sword of Truth, #6)\",\"Faith of the Fallen (Sword of Truth, #6)\",en-US,4.11,53676,56403,987,1335,3030,9648,16346,26044,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516509957l/121127.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1760,7243142,7243142,6278088,12,1606412388,9781606412380.0,Brandon Mull,2010.0,\"Fablehaven: Keys to the Demon Prison (Fablehaven, #5)\",\"Keys to the Demon Prison (Fablehaven, #5)\",eng,4.42,58481,59949,3022,803,1179,5911,16255,35801,https://images.gr-assets.com/books/1298081448l/7243142.jpg,https://images.gr-assets.com/books/1298081448s/7243142.jpg\n1761,6346975,6346975,6533383,63,159420229X,9781594202290.0,Joshua Foer,2011.0,Moonwalking with Einstein: The Art and Science of Remembering Everything,Moonwalking with Einstein: The Art and Science of Remembering Everything,eng,3.85,48816,53638,4129,1176,3035,13125,21575,14727,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347705105l/6346975.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1762,5176,5176,1461856,33,345443284,9780345443280.0,Sue Miller,1998.0,While I Was Gone,While I Was Gone,eng,3.67,52244,52947,1141,786,3933,17555,20121,10552,https://images.gr-assets.com/books/1495632082l/5176.jpg,https://images.gr-assets.com/books/1495632082s/5176.jpg\n1763,33668,33668,15334,76,446613363,9780446613360.0,\"James Patterson, Maxine Paetro\",2005.0,\"4th of July (Women's Murder Club, #4)\",\"4th of July (Women's Murder Club, #4)\",eng,4.04,55637,60809,1695,281,1733,13606,24730,20459,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186955l/33668.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1764,2179276,2179276,2184954,74,1423108361,9781423108370.0,Eoin Colfer,2008.0,The Time Paradox,\"The Time Paradox (Artemis Fowl, #6)\",en-US,4.07,61987,65609,1877,884,2750,12976,23450,25549,https://images.gr-assets.com/books/1395218526l/2179276.jpg,https://images.gr-assets.com/books/1395218526s/2179276.jpg\n1765,858719,858719,1231120,38,059044297X,9780590442980.0,Norman Bridwell,1963.0,An Itchy Day,Clifford the Big Red Dog,,4.09,58925,59331,536,1087,3205,12852,14390,27797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388851547l/858719.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1766,12680907,12680907,6508730,51,803734735,9780803734740.0,Kristin Cashore,2012.0,Bitterblue,\"Bitterblue (Graceling Realm, #3)\",eng,4.01,74479,80120,7159,1359,4235,16099,29228,29199,https://images.gr-assets.com/books/1331532273l/12680907.jpg,https://images.gr-assets.com/books/1331532273s/12680907.jpg\n1767,6604794,6604794,6798696,68,803734956,9780803734950.0,Jandy Nelson,2010.0,The Sky Is Everywhere,The Sky Is Everywhere,eng,4.04,61937,71175,7709,1710,3899,13383,23304,28879,https://images.gr-assets.com/books/1496659743l/6604794.jpg,https://images.gr-assets.com/books/1496659743s/6604794.jpg\n1768,34504,34504,1494222,103,61020664,9780061020670.0,Terry Pratchett,1988.0,Wyrd Sisters,\"Wyrd Sisters (Discworld, #6; Witches #2)\",eng,4.11,60472,69520,2031,243,1873,13916,27591,25897,https://images.gr-assets.com/books/1275974472l/34504.jpg,https://images.gr-assets.com/books/1275974472s/34504.jpg\n1769,17617277,17617277,24581234,28,1301347949,9781301347940.0,Katy Evans,2013.0,Real,\"Real (Real, #1)\",eng,4.21,83000,87959,7007,2266,3816,12023,24581,45273,https://images.gr-assets.com/books/1363442697l/17617277.jpg,https://images.gr-assets.com/books/1363442697s/17617277.jpg\n1770,15729539,15729539,21408527,20,62200577,9780062200570.0,Joe Hill,2013.0,NOS4A2,NOS4A2,eng,4.06,50181,59499,7761,1146,2574,10053,23682,22044,https://images.gr-assets.com/books/1369591617l/15729539.jpg,https://images.gr-assets.com/books/1369591617s/15729539.jpg\n1771,337113,337113,1389477,596,140434747,9780140434740.0,\"Anne Brontë, Stevie Davies\",1848.0,The Tenant of Wildfell Hall,The Tenant of Wildfell Hall,eng,3.91,59408,65305,2751,1345,3512,15624,24144,20680,https://images.gr-assets.com/books/1479652419l/337113.jpg,https://images.gr-assets.com/books/1479652419s/337113.jpg\n1772,272895,272895,671846,59,965476022,9780965476030.0,\"Walter Farley, Keith Ward\",1941.0,The Black Stallion,\"The Black Stallion (The Black Stallion, #1)\",eng,4.18,60720,62791,967,491,1824,11964,20094,28418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173319066l/272895.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1773,13600318,13600318,19192337,29,,,S.C. Stephens,2013.0,Reckless,\"Reckless (Thoughtless, #3)\",en-US,4.42,69657,71579,5364,818,1832,7404,17860,43665,https://images.gr-assets.com/books/1356986017l/13600318.jpg,https://images.gr-assets.com/books/1356986017s/13600318.jpg\n1774,65111,65111,1168322,48,64410145,9780064410140.0,\"Lemony Snicket, Brett Helquist\",2004.0,The Grim Grotto,\"The Grim Grotto (A Series of Unfortunate Events, #11)\",en-US,3.99,73492,76000,1545,839,3693,17817,26906,26745,https://images.gr-assets.com/books/1415580928l/65111.jpg,https://images.gr-assets.com/books/1415580928s/65111.jpg\n1775,581409,581409,1442720,33,8424133498,9788424133500.0,Tomie dePaola,1975.0,Strega Nona,Strega Nona,eng,4.22,65259,66299,865,1046,2191,10926,18818,33318,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388643215l/581409.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1776,11381643,11381643,16313158,17,983212546,9780983212550.0,R.L. Mathewson,2011.0,Playing for Keeps,\"Playing for Keeps (Neighbor from Hell, #1)\",eng,4.08,85266,91010,4884,1993,4315,15728,31458,37516,https://images.gr-assets.com/books/1406585295l/11381643.jpg,https://images.gr-assets.com/books/1406585295s/11381643.jpg\n1777,187633,187633,181353,15,961454733,9780961454740.0,\"David Bayles, Ted Orland\",1993.0,Art & Fear: Observations on the Perils (and Rewards) of Artmaking,Art and Fear: Observations on the Perils (and Rewards) of Artmaking,eng,3.67,47688,48226,742,4838,4278,10025,11923,17162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442712080l/187633._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1778,91767,91767,88533,42,60085894,9780060085900.0,Hayden Herrera,1983.0,Frida. A Biography of Frida Kahlo,Frida: A Biography of Frida Kahlo,,3.94,43976,44533,330,1931,2549,8856,14023,17174,https://images.gr-assets.com/books/1407108642l/91767.jpg,https://images.gr-assets.com/books/1407108642s/91767.jpg\n1779,11918,11918,2606334,68,452286034,9780452286030.0,Kelley Armstrong,2001.0,Bitten,\"Bitten (Women of the Otherworld, #1)\",eng,4.06,71988,77950,3981,1791,4099,14413,25274,32373,https://images.gr-assets.com/books/1306101770l/11918.jpg,https://images.gr-assets.com/books/1306101770s/11918.jpg\n1780,8705784,8705784,13578604,29,312624670,9780312624680.0,C.C. Hunter,2011.0,Born at Midnight,\"Born at Midnight (Shadow Falls, #1)\",en-US,4.13,68084,70503,3837,1852,3295,11507,20824,33025,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546092698l/8705784._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1781,191113,191113,884960,24,1844280136,9781844280130.0,Mo Willems,2003.0,Don't Let the Pigeon Drive the Bus,Don't Let the Pigeon Drive the Bus!,eng,4.29,59698,62247,2832,1245,2543,8268,15201,34990,https://images.gr-assets.com/books/1328495575l/191113.jpg,https://images.gr-assets.com/books/1328495575s/191113.jpg\n1782,17347389,17347389,21598446,48,545424941,9780545424940.0,Maggie Stiefvater,2013.0,The Dream Thieves,\"The Dream Thieves (The Raven Cycle, #2)\",eng,4.27,75637,84512,10775,803,2111,10696,30520,40382,https://images.gr-assets.com/books/1477103777l/17347389.jpg,https://images.gr-assets.com/books/1477103777s/17347389.jpg\n1783,264,264,1434368,508,141439637,9780141439630.0,\"Henry James, Patricia Crick\",1881.0,The Portrait of a Lady,The Portrait of a Lady,eng,3.76,55019,59317,2105,1935,4908,15386,20335,16753,https://images.gr-assets.com/books/1502148606l/264.jpg,https://images.gr-assets.com/books/1502148606s/264.jpg\n1784,264158,264158,256076,284,486290727,9780486290720.0,\"Edgar Allan Poe, Gustave Doré\",1844.0,The Raven,The Raven,,4.28,56633,69127,1341,566,1878,9915,22366,34402,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347398489l/264158.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1785,99300,99300,1467808,18,486298574,9780486298570.0,Charlotte Perkins Gilman,1892.0,The Yellow Wallpaper,The Yellow Wallpaper and Other Stories,eng,4.02,64690,64970,1385,1039,3145,13365,23546,23875,https://images.gr-assets.com/books/1327909237l/99300.jpg,https://images.gr-assets.com/books/1327909237s/99300.jpg\n1786,26245850,26245850,42901355,51,1455561789,9781455561780.0,Noah Hawley,2016.0,Before the Fall,Before the Fall,eng,3.76,48807,63003,8059,902,3812,17207,28449,12633,https://images.gr-assets.com/books/1462515889l/26245850.jpg,https://images.gr-assets.com/books/1462515889s/26245850.jpg\n1787,20317106,20317106,28155746,7,,,محمد صادق,2014.0,هيبتا,هيبتا,ara,3.82,42978,43298,5680,2886,4135,8052,11237,16988,https://images.gr-assets.com/books/1403045796l/20317106.jpg,https://images.gr-assets.com/books/1403045796s/20317106.jpg\n1788,24813,24813,692719,17,836204387,9780836204380.0,Bill Watterson,1995.0,The Calvin and Hobbes Tenth Anniversary Book,The Calvin and Hobbes Tenth Anniversary Book,eng,4.63,48280,48829,346,346,608,3077,8752,36046,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429324469l/24813.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1789,4325,4325,7995,35,142401757,9780142401750.0,Sarah Dessen,2000.0,Dreamland ,Dreamland,eng,3.91,64082,65731,3813,1556,4772,15338,20590,23475,https://images.gr-assets.com/books/1385861832l/4325.jpg,https://images.gr-assets.com/books/1385861832s/4325.jpg\n1790,14568987,14568987,20211722,20,1616201320,9781616201330.0,B.A. Shapiro,2012.0,The Art Forger,The Art Forger,en-US,3.69,47873,54799,5220,2380,3650,14812,21685,12272,https://images.gr-assets.com/books/1348518546l/14568987.jpg,https://images.gr-assets.com/books/1348518546s/14568987.jpg\n1791,248483,248483,1138972,33,1596912855,9781596912850.0,Shannon Hale,2007.0,Austenland,\"Austenland (Austenland, #1)\",en-US,3.54,66400,71565,10310,2414,8021,23997,22990,14143,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440426937l/248483._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1792,18749,18749,1651408,96,1400044162,9781400044160.0,Chimamanda Ngozi Adichie,2006.0,Half of a Yellow Sun,Half of a Yellow Sun,eng,4.28,46716,57021,5296,344,1175,6626,23036,25840,https://images.gr-assets.com/books/1327934717l/18749.jpg,https://images.gr-assets.com/books/1327934717s/18749.jpg\n1793,105578,105578,101770,25,345498321,9780345498330.0,Chetan Bhagat,2005.0,One Night @ The Call Center,One Night at the Call Center,eng,2.47,40718,44833,1244,10559,14125,11872,5177,3100,https://images.gr-assets.com/books/1320500924l/105578.jpg,https://images.gr-assets.com/books/1320500924s/105578.jpg\n1794,23209927,23209927,42753039,39,385523238,9780385523230.0,Sara Gruen,2015.0,At the Water's Edge,At the Water's Edge,eng,3.65,44956,54207,7018,1306,4467,16578,21648,10208,https://images.gr-assets.com/books/1412194706l/23209927.jpg,https://images.gr-assets.com/books/1412194706s/23209927.jpg\n1795,11607,11607,3652165,51,451197968,9780451197960.0,\"Richard Bachman, Stephen King\",1982.0,The Running Man,The Running Man,eng,3.8,62268,67356,1929,723,4280,20084,24714,17555,https://images.gr-assets.com/books/1333160557l/11607.jpg,https://images.gr-assets.com/books/1333160557s/11607.jpg\n1796,68210,68210,2481792,75,031242440X,9780312424400.0,Marilynne Robinson,2004.0,Gilead,\"Gilead (Gilead, #1)\",en-US,3.84,54081,58412,7870,2359,5175,12339,18141,20398,https://images.gr-assets.com/books/1451555787l/68210.jpg,https://images.gr-assets.com/books/1451555787s/68210.jpg\n1797,2794,2794,1477756,92,006091307X,9780060913080.0,Thomas Pynchon,1966.0,The Crying of Lot 49,The Crying of Lot 49,en-US,3.7,48692,54779,3489,2227,5166,13618,19312,14456,https://images.gr-assets.com/books/1375727632l/2794.jpg,https://images.gr-assets.com/books/1375727632s/2794.jpg\n1798,11389875,23190986,25660399,3,525953094,9780525953100.0,Ken Follett,2014.0,Edge of Eternity,\"Edge of Eternity (The Century Trilogy, #3)\",eng,4.04,21459,52737,5078,980,2775,10189,18199,20594,https://images.gr-assets.com/books/1377871984l/11389875.jpg,https://images.gr-assets.com/books/1377871984s/11389875.jpg\n1799,8428064,8428064,11015791,46,1423121317,9781423121310.0,Rachel Hawkins,2011.0,Demonglass,\"Demonglass (Hex Hall, #2)\",en-US,4.13,74589,77626,4496,1036,2945,14055,26694,32896,https://images.gr-assets.com/books/1287692542l/8428064.jpg,https://images.gr-assets.com/books/1287692542s/8428064.jpg\n1800,22590,22590,62929,151,8498000831,9788498000830.0,\"Philip K. Dick, David Alabort, Manuel Espín\",1969.0,Ubik,Ubik,spa,4.1,48256,58063,2957,548,2176,10594,22241,22504,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327995569l/22590.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1801,15575,15575,877015,110,1857231511,9781857231520.0,Terry Brooks,1977.0,The Sword of Shannara,\"The Sword of Shannara (The Original Shannara Trilogy, #1)\",eng,3.76,58967,66645,3140,2791,5838,16067,22050,19899,https://images.gr-assets.com/books/1470063017l/15575.jpg,https://images.gr-assets.com/books/1470063017s/15575.jpg\n1802,32418,32418,2992500,132,99297701,9780099297700.0,Thomas Harris,1999.0,Hannibal,\"Hannibal (Hannibal Lecter, #3)\",eng,3.72,57569,63555,2098,2166,5811,17220,20844,17514,https://images.gr-assets.com/books/1327356556l/32418.jpg,https://images.gr-assets.com/books/1327356556s/32418.jpg\n1803,395871,395871,385368,33,006114097X,9780061140980.0,L.J. Smith,2007.0,The Awakening and the Struggle,\"The Awakening / The Struggle (The Vampire Diaries, #1-2)\",en-US,3.67,68651,72227,3856,3663,8247,18819,19054,22444,https://images.gr-assets.com/books/1393837129l/395871.jpg,https://images.gr-assets.com/books/1393837129s/395871.jpg\n1804,1466455,1466455,2172728,42,60586133,9780060586130.0,Liane Moriarty,2003.0,Three Wishes,Three Wishes,en-US,3.76,40569,56511,4126,576,2847,17447,24125,11516,https://images.gr-assets.com/books/1183888822l/1466455.jpg,https://images.gr-assets.com/books/1183888822s/1466455.jpg\n1805,3575676,3575676,3617922,12,1416974520,9781416974530.0,L.J. Smith,2009.0,\"Night World, No. 3\",\"Night World, No. 3 (Night World, #7-9)\",en-US,4.2,58232,59070,809,1115,2652,9863,15216,30224,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439077707l/3575676._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1806,5174,5174,941309,63,743466527,9780743466520.0,Ann-Marie MacDonald,1996.0,Fall on Your Knees,Fall on Your Knees,eng,3.95,50446,53947,2655,1544,3316,11112,18471,19504,https://images.gr-assets.com/books/1481449709l/5174.jpg,https://images.gr-assets.com/books/1481449709s/5174.jpg\n1807,10626594,10626594,15535056,47,054522490X,9780545224900.0,Maggie Stiefvater,2011.0,The Scorpio Races,The Scorpio Races,eng,4.08,70335,76231,10427,2159,3992,12420,24712,32948,https://images.gr-assets.com/books/1461209661l/10626594.jpg,https://images.gr-assets.com/books/1461209661s/10626594.jpg\n1808,18966806,18966806,26984941,42,345539842,9780345539850.0,Pierce Brown,2016.0,Morning Star,\"Morning Star (Red Rising, #3)\",eng,4.5,47736,61499,6398,266,782,4880,17692,37879,https://images.gr-assets.com/books/1461354277l/18966806.jpg,https://images.gr-assets.com/books/1461354277s/18966806.jpg\n1809,201341,201341,2984402,41,441005764,9780441005760.0,Brian Jacques,1988.0,Mossflower,\"Mossflower (Redwall, #2)\",en-US,4.09,56860,58425,654,626,1842,11769,21559,22629,https://images.gr-assets.com/books/1281811805l/201341.jpg,https://images.gr-assets.com/books/1281811805s/201341.jpg\n1810,23848559,23848559,43075476,38,1250077001,9781250077000.0,Jenny  Lawson,2015.0,Furiously Happy,Furiously Happy: A Funny Book About Horrible Things,eng,3.93,59743,67556,8498,2513,4499,13107,22580,24857,https://images.gr-assets.com/books/1429101901l/23848559.jpg,https://images.gr-assets.com/books/1429101901s/23848559.jpg\n1811,6420,6420,812053,26,312986343,9780312986350.0,Janet Evanovich,2002.0,Visions of Sugar Plums,\"Visions of Sugar Plums (Stephanie Plum, #8.5)\",en-US,3.68,62726,65154,1565,1997,7022,19528,18169,18438,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439320318l/6420._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1812,13810,13810,766896,37,553564935,9780553564940.0,Raymond E. Feist,1982.0,\"Magician: Master (The Riftwar Saga, #2)\",\"Magician: Master (The Riftwar Saga, #2)\",en-US,4.25,53878,55314,524,586,1435,7939,18946,26408,https://images.gr-assets.com/books/1320457190l/13810.jpg,https://images.gr-assets.com/books/1320457190s/13810.jpg\n1813,15505346,15505346,18151286,53,1405910216,9781405910220.0,Tracey Garvis-Graves,2011.0,On the Island,\"On the Island (On the Island, #1)\",eng,4.13,28651,64682,7927,996,2731,10618,22670,27667,https://images.gr-assets.com/books/1339162550l/15505346.jpg,https://images.gr-assets.com/books/1339162550s/15505346.jpg\n1814,8492768,8492768,11606373,40,1439164630,9781439164630.0,Lisa Genova,2011.0,Left Neglected,Left Neglected,eng,3.95,52095,56765,6006,582,2450,12864,24336,16533,https://images.gr-assets.com/books/1285414621l/8492768.jpg,https://images.gr-assets.com/books/1285414621s/8492768.jpg\n1815,5509,5509,558948,48,671662341,9780671662350.0,\"Miep Gies, Alison Leslie Gold\",1987.0,Anne Frank Remembered,Anne Frank Remembered: The Story of the Woman Who Helped to Hide the Frank Family,eng,4.26,50412,51027,629,1015,1480,6893,15228,26411,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437766396l/5509._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1816,13055592,13055592,18130445,41,765316994,9780765317000.0,John Scalzi,2012.0,Redshirts,Redshirts,en-US,3.84,53746,62419,7934,1049,3740,15787,25713,16130,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348617890l/13055592.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1817,41716,41716,2467487,70,030720961X,9780307209610.0,Clive Cussler,1992.0,Sahara,\"Sahara (Dirk Pitt, #11)\",spa,3.95,47054,48850,745,866,2145,11351,18747,15741,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169751349l/41716._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1818,2168860,2168860,2174436,45,61245097,9780061245090.0,Jeaniene Frost,2008.0,One Foot in the Grave,\"One Foot in the Grave (Night Huntress, #2)\",eng,4.31,76368,81752,3250,686,1916,10599,26385,42166,https://images.gr-assets.com/books/1373857981l/2168860.jpg,https://images.gr-assets.com/books/1373857981s/2168860.jpg\n1819,1282954,1282954,1271984,32,60890681,9780060890680.0,Liane Moriarty,2006.0,The Last Anniversary,The Last Anniversary,eng,3.72,35325,53186,3819,657,3144,16975,22127,10283,https://images.gr-assets.com/books/1482971434l/1282954.jpg,https://images.gr-assets.com/books/1482971434s/1282954.jpg\n1820,5047880,5047880,5114483,47,61449067,9780061449060.0,Michael  Grant,2009.0,Hunger ,\"Hunger (Gone, #2)\",eng,4.02,60519,65389,3102,1301,3531,12922,22281,25354,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388710386l/5047880.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1821,2292384,2292384,3173189,39,312349513,9780312349520.0,Janet Evanovich,2008.0,Fearless Fourteen,\"Fearless Fourteen (Stephanie Plum, #14)\",en-US,4.02,70806,75011,3147,435,2834,17632,28086,26024,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442967398l/2292384._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1822,12615008,12615008,17635020,20,8129118807,9788129118810.0,Chetan Bhagat,2011.0,\"Revolution 2020: Love, Corruption, Ambition\",\"Revolution 2020: Love, Corruption, Ambition\",eng,3.07,42845,44470,1656,5263,9285,13415,9928,6579,https://images.gr-assets.com/books/1317964666l/12615008.jpg,https://images.gr-assets.com/books/1317964666s/12615008.jpg\n1823,160629,160629,1544060,109,7174160,9780007174160.0,\"Michael Bond, Peggy Fortnum\",1958.0,A Bear Called Paddington,\"A Bear Called Paddington (Paddington, #1)\",eng,4.21,62590,64024,783,589,1894,11370,19715,30456,https://images.gr-assets.com/books/1393784912l/160629.jpg,https://images.gr-assets.com/books/1393784912s/160629.jpg\n1824,162089,162089,2191062,62,60887338,9780060887340.0,Sara Shepard,2007.0,Flawless,\"Flawless (Pretty Little Liars, #2)\",en-US,3.96,59403,64318,3150,849,3660,15492,21492,22825,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518062388l/162089._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1825,91253,91253,3014191,76,440800463,9780440800460.0,Beverly Cleary,1981.0,\"Ramona Quimby, Age 8\",\"Ramona Quimby, Age 8 (Ramona, #6)\",eng,4.08,58135,61520,1177,934,2280,12583,20912,24811,https://images.gr-assets.com/books/1300270683l/91253.jpg,https://images.gr-assets.com/books/1300270683s/91253.jpg\n1826,98427,98427,1832579,67,446364800,9780446364800.0,Nelson DeMille,1992.0,The General's Daughter,The General's Daughter,,4.07,50264,51626,555,455,1520,10343,20739,18569,https://images.gr-assets.com/books/1334443536l/98427.jpg,https://images.gr-assets.com/books/1334443536s/98427.jpg\n1827,65118,65118,2361348,62,1405206128,9781405206130.0,\"Lemony Snicket, Brett Helquist\",2001.0,The Hostile Hospital,\"The Hostile Hospital (A Series of Unfortunate Events, #8)\",en-GB,3.95,66327,73955,1727,702,3605,18638,27090,23920,https://images.gr-assets.com/books/1442446120l/65118.jpg,https://images.gr-assets.com/books/1442446120s/65118.jpg\n1828,330744,330744,2297814,16,1569319472,9781569319480.0,Rumiko Takahashi,1997.0,犬夜叉 1,\"InuYasha: Turning Back Time (InuYasha, #1)\",eng,4.26,45993,46244,374,851,1957,7190,10759,25487,https://images.gr-assets.com/books/1288648681l/330744.jpg,https://images.gr-assets.com/books/1288648681s/330744.jpg\n1829,226162,226162,219058,34,451219422,9780451219430.0,David Seltzer,1976.0,The Omen,The Omen,en-US,3.99,49935,50574,286,885,2555,11734,16549,18851,https://images.gr-assets.com/books/1421963974l/226162.jpg,https://images.gr-assets.com/books/1421963974s/226162.jpg\n1830,6134826,6134826,6313389,69,312532768,9780312532760.0,Alyson Noel,2009.0,Blue Moon,\"Blue Moon (The Immortals, #2)\",eng,3.61,74367,78447,3611,3935,9508,21715,21521,21768,https://images.gr-assets.com/books/1362336365l/6134826.jpg,https://images.gr-assets.com/books/1362336365s/6134826.jpg\n1831,12849385,12849385,17594837,58,446572993,9780446573000.0,David Baldacci,2012.0,The Innocent,\"The Innocent (Will Robie, #1)\",en-US,4.1,46216,56819,3704,490,1439,9720,25219,19951,https://images.gr-assets.com/books/1329854216l/12849385.jpg,https://images.gr-assets.com/books/1329854216s/12849385.jpg\n1832,2161733,2161733,2167258,127,446402397,9780446402390.0,Tom Rob Smith,2008.0,Child 44,\"Child 44 (Leo Demidov, #1)\",eng,4.08,46734,56031,5355,717,1911,9446,24032,19925,https://images.gr-assets.com/books/1326549060l/2161733.jpg,https://images.gr-assets.com/books/1326549060s/2161733.jpg\n1833,348225,2641307,338512,32,60987510,9780060987510.0,Nancy E. Turner,1998.0,\"These Is My Words: The Diary of Sarah Agnes Prine, 1881-1901, Arizona Territories\",\"These Is My Words: The Diary of Sarah Agnes Prine, 1881-1901, Arizona Territories (Sarah Agnes Prine, #1)\",eng,4.35,44669,54060,9362,611,1098,5495,18681,28175,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190502l/348225.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1834,23751850,23751850,17031353,37,425260933,9780425260940.0,Liane Moriarty,2011.0,The Hypnotist's Love Story,The Hypnotist's Love Story,en-CA,3.69,34107,56255,4525,630,3646,18306,23562,10111,https://images.gr-assets.com/books/1418234545l/23751850.jpg,https://images.gr-assets.com/books/1418234545s/23751850.jpg\n1835,4008,4008,3207183,165,60527994,9780060527990.0,\"Paulo Coelho, Amanda Hopkinson, Nick Caistor\",2000.0,O Demônio e a Srta. Prym,\"The Devil and Miss Prym (On the Seventh Day, #3)\",eng,3.59,42286,49075,2393,1531,5179,15461,16402,10502,https://images.gr-assets.com/books/1359082264l/4008.jpg,https://images.gr-assets.com/books/1359082264s/4008.jpg\n1836,18419,18419,265988,30,1933718005,9781933718000.0,\"Audrey Penn, Ruth E. Harper, Nancy M. Leak\",1993.0,The Kissing Hand,The Kissing Hand,en-GB,4.41,51219,51767,1320,515,1316,6095,12191,31650,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348776209l/18419.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1837,17306293,17306293,23965619,67,,,Hugh Howey,2013.0,Shift,\"Shift (Silo, #2)\",en-US,4.12,46518,53127,3531,249,1456,9169,22899,19354,https://images.gr-assets.com/books/1379003176l/17306293.jpg,https://images.gr-assets.com/books/1379003176s/17306293.jpg\n1838,8357992,8357992,13212200,66,440339340,9780440339340.0,Lee Child,2010.0,Worth Dying For,\"Worth Dying For (Jack Reacher, #15)\",eng,4.2,47296,56320,2627,256,1070,8630,23333,23031,https://images.gr-assets.com/books/1356095648l/8357992.jpg,https://images.gr-assets.com/books/1356095648s/8357992.jpg\n1839,454856,454856,2119898,30,307395987,9780307395990.0,John Elder Robison,2007.0,Look Me in the Eye: My Life with Asperger's,Look Me in the Eye: My Life with Asperger's,en-US,3.91,48189,51937,3736,732,2788,12621,20273,15523,https://images.gr-assets.com/books/1320509615l/454856.jpg,https://images.gr-assets.com/books/1320509615s/454856.jpg\n1840,84136,84136,2384,49,312979975,9780312979970.0,Sherrilyn Kenyon,2002.0,Fantasy Lover,Fantasy Lover (Dark-Hunterverse #1),eng,4.17,70274,74975,3081,1409,3288,12339,22030,35909,https://images.gr-assets.com/books/1348332807l/84136.jpg,https://images.gr-assets.com/books/1348332807s/84136.jpg\n1841,2029177,2029177,3307932,62,031601477X,9780316014780.0,\"James Patterson, Gabrielle Charbonnet\",2008.0,Sundays at Tiffany's,Sundays at Tiffany's,eng,3.74,51720,58612,5751,2030,5503,15467,18033,17579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266475617l/2029177.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1842,111180,111180,3349824,51,743418735,9780743418740.0,Jodi Picoult,2002.0,Perfect Match,Perfect Match,eng,3.93,52168,55211,2690,492,2628,13550,22197,16344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433307244l/111180._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1843,9844,9844,2317177,54,081297235X,9780812972350.0,Curtis Sittenfeld,2005.0,Prep,Prep,eng,3.36,50598,53202,4372,3089,7820,17606,16367,8320,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925666l/9844.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1844,96647,96647,908343,47,1401307450,9781401307460.0,\"Anthony Kiedis, Larry Sloman\",2004.0,Scar Tissue,Scar Tissue,eng,4.1,45203,47328,2078,800,2035,8401,16713,19379,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348688305l/96647.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1845,58027,72579,2069530,91,3442723434,9783442723430.0,\"Margaret Atwood, Brigitte Walitzek\",1996.0,Alias Grace,Alias Grace,ger,3.97,51511,60149,2881,590,2339,13103,26233,17884,https://images.gr-assets.com/books/1472960163l/58027.jpg,https://images.gr-assets.com/books/1472960163s/58027.jpg\n1846,17876893,17876893,25032500,66,425273865,9780425273870.0,Sylvia Day,2014.0,Captivated by You,\"Captivated by You (Crossfire, #4)\",eng,4.06,57831,71432,5234,1485,4142,13664,21245,30896,https://images.gr-assets.com/books/1410020040l/17876893.jpg,https://images.gr-assets.com/books/1410020040s/17876893.jpg\n1847,29946,29946,30365,91,99427869,9780099427860.0,Richard Bach,1977.0,Illusions: The Adventures of a Reluctant Messiah,Illusions: The Adventures of a Reluctant Messiah,eng,4.14,44569,47411,1821,973,2466,7982,13712,22278,https://images.gr-assets.com/books/1353964306l/29946.jpg,https://images.gr-assets.com/books/1353964306s/29946.jpg\n1848,6381205,6381205,6569140,43,316056634,9780316056630.0,Gail Carriger,2009.0,Soulless,\"Soulless (Parasol Protectorate, #1)\",eng,3.91,73051,78238,8554,2589,4520,16299,28843,25987,https://images.gr-assets.com/books/1314020848l/6381205.jpg,https://images.gr-assets.com/books/1314020848s/6381205.jpg\n1849,17623975,17623975,17992862,50,142422959,9780142422950.0,Gayle Forman,2013.0,Just One Day,\"Just One Day (Just One Day, #1)\",eng,4.02,47674,66861,7371,1591,3191,12505,24526,25048,https://images.gr-assets.com/books/1368722144l/17623975.jpg,https://images.gr-assets.com/books/1368722144s/17623975.jpg\n1850,1661957,1661957,1656772,50,1416953574,9781416953580.0,Lisa McMann,2008.0,Wake,\"Wake (Wake, #1)\",eng,3.75,69046,72067,5180,3159,6682,17699,21663,22864,https://images.gr-assets.com/books/1361417311l/1661957.jpg,https://images.gr-assets.com/books/1361417311s/1661957.jpg\n1851,7170627,7170627,7580942,58,1439107955,9781439107960.0,Siddhartha Mukherjee,2010.0,The Emperor of All Maladies: A Biography of Cancer,The Emperor of All Maladies: A Biography of Cancer,eng,4.29,48117,53649,4907,749,1435,6492,18009,26964,https://images.gr-assets.com/books/1280771091l/7170627.jpg,https://images.gr-assets.com/books/1280771091s/7170627.jpg\n1852,270804,270804,262530,16,1416940901,9781416940910.0,Ellen Hopkins,2007.0,\"Glass (Crank, #2)\",\"Glass (Crank, #2)\",eng,4.28,51726,53542,2455,519,1699,7695,15899,27730,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388515458l/270804.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1853,760,760,2166510,165,307278492,9780307278490.0,\"Gabriel García Márquez, Edith Grossman\",2004.0,Memoria de mis putas tristes,Memories of My Melancholy Whores,eng,3.59,33534,50285,3018,1379,4851,16568,17933,9554,https://images.gr-assets.com/books/1327484658l/760.jpg,https://images.gr-assets.com/books/1327484658s/760.jpg\n1854,10872085,10872085,14570985,67,031253955X,9780312539560.0,Jeffrey Archer,2011.0,Only Time Will Tell,\"Only Time Will Tell (The Clifton Chronicles, #1)\",eng,4.04,41187,54311,4459,673,1924,10025,23572,18117,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442866312l/10872085._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1855,773038,773038,822128,66,1878424114,9781878424110.0,Deepak Chopra,2013.0,The Seven Spiritual Laws of Success: A Practical Guide to the Fulfillment of Your Dreams,The Seven Spiritual Laws of Success: A Practical Guide to the Fulfillment of Your Dreams,en-US,4.07,41427,42963,933,937,2052,8085,13673,18216,https://images.gr-assets.com/books/1344718433l/773038.jpg,https://images.gr-assets.com/books/1344718433s/773038.jpg\n1856,79790,79790,3034,32,312315953,9780312315960.0,Augusten Burroughs,2004.0,Magical Thinking: True Stories,Magical Thinking: True Stories,en-US,3.96,45554,46808,1525,530,2057,11121,17986,15114,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442561036l/79790._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1857,13835,13835,1142860,52,689878567,9780689878560.0,Tamora Pierce,1984.0,In the Hand of the Goddess,\"In the Hand of the Goddess (Song of the Lioness, #2)\",eng,4.25,66382,70595,1464,941,1724,10424,22977,34529,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206274l/13835.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1858,13132,13132,2549051,76,446614831,9780446614830.0,\"James Patterson, Andrew Gross\",2004.0,3rd Degree,\"3rd Degree (Women's Murder Club, #3)\",,4.0,55599,60574,1718,269,1879,14801,24483,19142,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523207746l/13132._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1859,12543,12543,841198,28,385480016,9780385480020.0,Anne Lamott,1994.0,Bird by Bird: Some Instructions on Writing and Life,Bird by Bird: Some Instructions on Writing and Life,,4.22,55606,57364,5306,482,1700,8345,20799,26038,https://images.gr-assets.com/books/1394996112l/12543.jpg,https://images.gr-assets.com/books/1394996112s/12543.jpg\n1860,8835379,6325285,6510846,80,805092528,9780805092520.0,\"Kerstin Gier, Anthea Bell\",2009.0,Rubinrot,\"Ruby Red (Precious Stone Trilogy, #1)\",en-US,4.12,62978,82241,8320,1006,3019,14262,30391,33563,https://images.gr-assets.com/books/1312036605l/8835379.jpg,https://images.gr-assets.com/books/1312036605s/8835379.jpg\n1861,6581511,6581511,7253963,64,031259044X,9780312590440.0,Alyson Noel,2009.0,Shadowland,\"Shadowland (The Immortals, #3)\",eng,3.66,68104,71034,2468,3410,8196,19221,18536,21671,https://images.gr-assets.com/books/1362336374l/6581511.jpg,https://images.gr-assets.com/books/1362336374s/6581511.jpg\n1862,216443,216443,1133995,73,553296124,9780553296130.0,Timothy Zahn,1991.0,Heir to the Empire,Heir to the Empire (Star Wars: The Thrawn Trilogy #1),eng,4.12,50300,54423,2069,409,1882,10046,20473,21613,https://images.gr-assets.com/books/1398253847l/216443.jpg,https://images.gr-assets.com/books/1398253847s/216443.jpg\n1863,13837,13837,1123099,51,689878575,9780689878570.0,Tamora Pierce,1988.0,Lioness Rampant,\"Lioness Rampant (Song of the Lioness, #4)\",en-US,4.28,65027,68419,1217,1000,1700,9328,21166,35225,https://images.gr-assets.com/books/1390366673l/13837.jpg,https://images.gr-assets.com/books/1390366673s/13837.jpg\n1864,259538,259538,1176781,55,042510687X,9780425106880.0,Robin Cook,1987.0,Outbreak,\"Outbreak (Dr. Marissa Blumenthal, #1)\",eng,3.96,48357,49169,274,352,1713,12686,19072,15346,https://images.gr-assets.com/books/1344166275l/259538.jpg,https://images.gr-assets.com/books/1344166275s/259538.jpg\n1865,129603,129603,874208,93,8176210773,9788176210780.0,Louise L. Hay,1984.0,You Can Heal Your Life,You Can Heal Your Life,eng,4.14,44445,48122,1252,1311,2112,7972,13689,23038,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1176433520l/129603.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1866,18641982,18641982,26440459,33,1594631573,9781594631570.0,Emma Straub,2014.0,The Vacationers,The Vacationers,,3.14,44074,50048,5343,2473,8691,21871,13282,3731,https://images.gr-assets.com/books/1386629708l/18641982.jpg,https://images.gr-assets.com/books/1386629708s/18641982.jpg\n1867,9496240,9496240,14381730,47,,,\"Oliver Pötzsch, Lee Chadeayne\",2008.0,\"Die Henkerstochter (Band 1 aus der Reihe \"\"Die Henkerstochter-Saga)\",\"The Hangman's Daughter (The Hangman's Daughter, #1)\",eng,3.71,49994,54288,5091,1230,4085,15186,22444,11343,https://images.gr-assets.com/books/1327868295l/9496240.jpg,https://images.gr-assets.com/books/1327868295s/9496240.jpg\n1868,14064,14064,19273256,134,1857988094,9781857988090.0,Richard Matheson,1954.0,I Am Legend ,I Am Legend,eng,4.07,46845,59493,3636,533,2219,11159,24394,21188,https://images.gr-assets.com/books/1390170456l/14064.jpg,https://images.gr-assets.com/books/1390170456s/14064.jpg\n1869,150739,150739,1178402,33,015204566X,9780152045660.0,\"Patricia C. Wrede, Peter de Sève\",1990.0,Dealing with Dragons,\"Dealing with Dragons (Enchanted Forest Chronicles, #1)\",en-US,4.14,67663,69992,2695,1270,2575,12165,22888,31094,https://images.gr-assets.com/books/1385526967l/150739.jpg,https://images.gr-assets.com/books/1385526967s/150739.jpg\n1870,455925,455925,694428,32,515130974,9780515130970.0,Lee Child,2000.0,The Visitor,\"Running Blind (Jack Reacher, #4)\",en-US,4.08,44681,57089,2403,351,1647,10674,24761,19656,https://images.gr-assets.com/books/1174926706l/455925.jpg,https://images.gr-assets.com/books/1174926706s/455925.jpg\n1871,37301,37301,1070686,44,425205819,9780425205820.0,John Sandford,1989.0,Rules Of Prey,\"Rules of Prey (Lucas Davenport, #1)\",en-US,4.13,52416,56027,1574,843,1546,9633,21565,22440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442064932l/37301._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1872,84847,84847,685826,55,553589172,9780553589180.0,Tami Hoag,1999.0,Ashes to Ashes,\"Ashes to Ashes (Kovac and Liska, #1)\",eng,4.03,49139,50587,610,489,1625,11247,19498,17728,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925628l/84847.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1873,16703,16703,95855,58,7149824,9780007149830.0,Michael Chabon,2007.0,The Yiddish Policemen's Union,The Yiddish Policemen's Union,eng,3.69,46854,52340,6024,1649,4243,14023,21009,11416,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557172798l/16703._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1874,13642950,13642950,19258153,22,345528670,9780345528670.0,Melanie Benjamin,2013.0,The Aviator's Wife,The Aviator's Wife,en-US,3.87,48191,53252,6388,752,2657,12509,24063,13271,https://images.gr-assets.com/books/1345153864l/13642950.jpg,https://images.gr-assets.com/books/1345153864s/13642950.jpg\n1875,474858,474858,177766,22,439598389,9780439598380.0,David Shannon,1998.0,A Bad Case of Stripes,A Bad Case of Stripes,eng,4.24,51764,52142,1518,841,2057,8441,13466,27337,https://images.gr-assets.com/books/1328867924l/474858.jpg,https://images.gr-assets.com/books/1328867924s/474858.jpg\n1876,10428708,10428708,15333117,75,593065700,9780593065710.0,Lee Child,2011.0,The Affair,\"The Affair (Jack Reacher, #16)\",eng,4.11,43992,56437,3274,348,1418,10039,24293,20339,https://images.gr-assets.com/books/1327982045l/10428708.jpg,https://images.gr-assets.com/books/1327982045s/10428708.jpg\n1877,33514,33514,35832,240,205313426,9780205313430.0,\"William Strunk Jr., E.B. White\",1918.0,The Elements of Style,The Elements of Style,en-US,4.19,46041,57655,2942,881,2233,9114,18026,27401,https://images.gr-assets.com/books/1393947922l/33514.jpg,https://images.gr-assets.com/books/1393947922s/33514.jpg\n1878,12948,12948,990886,832,140620613,9780140620610.0,Henry James,1898.0,The Turn of the Screw,The Turn of the Screw,eng,3.45,53644,66011,4401,2984,8843,21744,20385,12055,https://images.gr-assets.com/books/1443203592l/12948.jpg,https://images.gr-assets.com/books/1443203592s/12948.jpg\n1879,6066819,6066819,6243154,38,743294297,9780743294290.0,Jennifer Weiner,2009.0,Best Friends Forever,Best Friends Forever,eng,3.48,50738,52779,3481,1534,6166,19341,16693,9045,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348156357l/6066819.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1880,50027,50027,2186426,49,786939532,9780786939530.0,R.A. Salvatore,1990.0,Homeland,\"Homeland (Forgotten Realms: The Dark Elf Trilogy, #1; Legend of Drizzt, #1)\",eng,4.27,49095,53708,1571,397,1460,7715,18002,26134,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388223419l/50027.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1881,100365,100365,2190500,57,156865054X,9781568650550.0,\"Larry Niven, Jerry Pournelle\",1974.0,The Mote in God's Eye,The Mote in God's Eye,eng,4.06,48131,52064,1346,524,1957,10282,20225,19076,https://images.gr-assets.com/books/1399490037l/100365.jpg,https://images.gr-assets.com/books/1399490037s/100365.jpg\n1882,9572203,9572203,2697052,138,307595862,9780307595870.0,\"Jo Nesbø, Don Bartlett\",2007.0,Snømannen (Harry Hole #7) ,\"The Snowman (Harry Hole, #7)\",eng,4.04,47533,60531,5098,634,2230,11115,26594,19958,https://images.gr-assets.com/books/1355881478l/9572203.jpg,https://images.gr-assets.com/books/1355881478s/9572203.jpg\n1883,166997,166997,1559207,112,1590171993,9781590172000.0,\"John  Williams, John McGahern\",1965.0,Stoner,Stoner,eng,4.28,42869,55450,6927,506,1671,6674,19742,26857,https://images.gr-assets.com/books/1320600716l/166997.jpg,https://images.gr-assets.com/books/1320600716s/166997.jpg\n1884,24937,24937,25704,1,1401308201,9781401308210.0,\"David Cote, Stephen Schwartz, Joan Marcus, Winnie Holzman\",2005.0,\"Wicked: The Grimmerie, a Behind-the-Scenes Look at the Hit Broadway Musical\",Wicked: The Grimmerie,en-US,4.17,47207,47207,241,921,1673,8051,14244,22318,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423994372l/24937.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1885,42607,42607,702863,709,074348486X,9780743484860.0,William Shakespeare,1599.0,As You Like It,As You Like It,eng,3.83,56395,61497,1312,894,3908,17213,22421,17061,https://images.gr-assets.com/books/1327935363l/42607.jpg,https://images.gr-assets.com/books/1327935363s/42607.jpg\n1886,95431,95431,1433215,19,1563892618,9781563892620.0,\"Garth Ennis, Steve Dillon, Joe R. Lansdale\",1996.0,Preacher Vol. 1: Gone to Texas,\"Preacher, Volume 1: Gone to Texas\",eng,4.16,51267,51810,1348,1629,2165,7138,16056,24822,https://images.gr-assets.com/books/1309914494l/95431.jpg,https://images.gr-assets.com/books/1309914494s/95431.jpg\n1887,15638,15638,2327623,501,451528921,9780451528930.0,\"Edmond Rostand, Eteel Lawson, Lowell Bair\",1897.0,Cyrano de Bergerac,Cyrano de Bergerac,eng,4.05,54607,60623,1463,801,2726,12688,20653,23755,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920459l/15638.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1888,12609,12609,14895,19,374525641,9780374525640.0,Anne Fadiman,1997.0,\"The Spirit Catches You and You Fall Down: A Hmong Child, Her American Doctors, and the Collision of Two Cultures\",\"The Spirit Catches You and You Fall Down: A Hmong Child, Her American Doctors, and the Collision of Two Cultures\",en-US,4.14,47785,49870,3873,619,1861,8093,18674,20623,https://images.gr-assets.com/books/1432610033l/12609.jpg,https://images.gr-assets.com/books/1432610033s/12609.jpg\n1889,3128411,3128411,3159812,29,1841496863,9781841496860.0,Patricia Briggs,2009.0,Bone Crossed,\"Bone Crossed (Mercy Thompson, #4)\",en-GB,4.34,69516,79451,2370,235,925,9446,29815,39030,https://images.gr-assets.com/books/1305738183l/3128411.jpg,https://images.gr-assets.com/books/1305738183s/3128411.jpg\n1890,8709526,8709526,13582373,26,159514319X,9781595143200.0,Richelle Mead,2013.0,The Indigo Spell,\"The Indigo Spell (Bloodlines, #3)\",eng,4.41,73056,77721,5633,526,1273,8244,23790,43888,https://images.gr-assets.com/books/1438483930l/8709526.jpg,https://images.gr-assets.com/books/1438483930s/8709526.jpg\n1891,6050298,6050298,6225943,39,385341652,9780385341650.0,Karen Marie Moning,2009.0,Dreamfever,\"Dreamfever (Fever, #4)\",en-US,4.43,68816,76586,4211,497,1335,7261,22881,44612,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429621657l/6050298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1892,16243,16243,18001,77,316010707,9780316010700.0,Kate Atkinson,2004.0,Case Histories,Case Histories (Jackson Brodie #1),eng,3.82,54908,60139,4910,1126,3710,15133,25225,14945,https://images.gr-assets.com/books/1451442186l/16243.jpg,https://images.gr-assets.com/books/1451442186s/16243.jpg\n1893,15799166,15799166,21522131,43,345544110,9780345544120.0,J. Kenner,2013.0,\"Release Me (Stark Trilogy, #1)\",\"Release Me (Stark Trilogy, #1)\",eng,4.14,61211,66473,2919,945,2760,11184,22878,28706,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390878363l/15799166.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1894,17910611,17910611,21865617,59,812984277,9780812984280.0,Sophie Kinsella,2013.0,Wedding Night,Wedding Night,eng,3.4,32084,59482,5165,2495,8566,21212,17215,9994,https://images.gr-assets.com/books/1396634329l/17910611.jpg,https://images.gr-assets.com/books/1396634329s/17910611.jpg\n1895,25099,25099,2648,50,1563892251,9781563892260.0,\"Neil Gaiman, Steve Parkhouse, Chris Bachalo, Michael Zulli, Mike Dringenberg, Malcolm Jones III, Todd Klein, Clive Barker\",1990.0,The Doll's House,The Doll's House (The Sandman #2),eng,4.44,54420,62308,1793,124,664,5797,20761,34962,https://images.gr-assets.com/books/1298566119l/25099.jpg,https://images.gr-assets.com/books/1298566119s/25099.jpg\n1896,1000751,1000751,1099715,405,689849109,9780689849110.0,Eleanor H. Porter,1912.0,Pollyanna,\"Pollyanna (Pollyanna, #1)\",eng,3.95,56529,61238,1424,1310,3432,14699,19596,22201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348971112l/1000751.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1898,17855756,17855756,24576986,49,1490904387,9781490904380.0,Hugh Howey,2013.0,Dust,\"Dust (Silo, #3)\",eng,4.26,33132,50916,3422,177,919,6781,20811,22228,https://images.gr-assets.com/books/1369522849l/17855756.jpg,https://images.gr-assets.com/books/1369522849s/17855756.jpg\n1899,13547188,13547188,17026855,49,1439102759,9781439102760.0,Jodi Picoult,2012.0,Lone Wolf,Lone Wolf,eng,3.67,33504,57793,5569,1527,5090,17346,20893,12937,https://images.gr-assets.com/books/1347278865l/13547188.jpg,https://images.gr-assets.com/books/1347278865s/13547188.jpg\n1900,10588,10588,150039,68,450610098,9780450610100.0,Stephen King,1993.0,Nightmares & Dreamscapes ,Nightmares and Dreamscapes,eng,3.9,54401,59208,905,412,2650,16264,23036,16846,https://images.gr-assets.com/books/1370950676l/10588.jpg,https://images.gr-assets.com/books/1370950676s/10588.jpg\n1901,7304203,7304203,6967072,37,385341679,9780385341680.0,Karen Marie Moning,2011.0,Shadowfever,\"Shadowfever (Fever, #5)\",en-US,4.46,73030,79297,6025,1175,1695,6734,19798,49895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439940228l/7304203._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1902,3613997,3613997,3656764,82,385517831,9780385517840.0,John Grisham,2009.0,The Associate,The Associate,en-US,3.64,48838,51847,3520,1003,4409,17296,18563,10576,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348751418l/3613997.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1903,13324841,13324841,18252076,35,547887205,9780547887200.0,Lois Lowry,2012.0,\"Son (The Giver, #4)\",\"Son (The Giver, #4)\",eng,3.98,54620,61353,7093,633,3074,13411,24215,20020,https://images.gr-assets.com/books/1349952095l/13324841.jpg,https://images.gr-assets.com/books/1349952095s/13324841.jpg\n1904,18310944,18310944,27097530,13,1401248969,9781401248960.0,\"Neil Gaiman, J.H. Williams III, Dave Stewart, Todd Klein\",2015.0,The Sandman: Overture,The Sandman: Overture,en-US,3.94,52973,53412,1043,4360,3419,8193,12325,25115,https://images.gr-assets.com/books/1444878181l/18310944.jpg,https://images.gr-assets.com/books/1444878181s/18310944.jpg\n1905,13569581,13569581,19148922,44,,,Anthony  Ryan,2011.0,Blood Song,\"Blood Song (Raven's Shadow, #1)\",eng,4.47,44014,51900,3061,275,813,4039,15966,30807,https://images.gr-assets.com/books/1421573407l/13569581.jpg,https://images.gr-assets.com/books/1421573407s/13569581.jpg\n1906,7137775,7137775,7401343,37,802720854,9780802720860.0,Simone Elkeles,2010.0,Rules of Attraction,\"Rules of Attraction (Perfect Chemistry, #2)\",en-US,4.22,68270,71900,3704,797,2666,11463,22277,34697,https://images.gr-assets.com/books/1439792205l/7137775.jpg,https://images.gr-assets.com/books/1439792205s/7137775.jpg\n1907,93007,93007,1411202,472,1595406557,9781595406550.0,Howard Pyle,1883.0,The Merry Adventures of Robin Hood,The Merry Adventures of Robin Hood,eng,4.05,48879,51979,665,427,1987,11657,18235,19673,https://images.gr-assets.com/books/1389006722l/93007.jpg,https://images.gr-assets.com/books/1389006722s/93007.jpg\n1908,9915,9915,1146200,96,679781498,9780679781490.0,Bret Easton Ellis,1985.0,Less Than Zero,Less Than Zero,eng,3.58,45978,51208,2684,1820,5379,15400,18292,10317,https://images.gr-assets.com/books/1443060100l/9915.jpg,https://images.gr-assets.com/books/1443060100s/9915.jpg\n1909,875441,23316548,860779,62,393065782,9780393065790.0,Lawrence Hill,2007.0,The Book of Negroes,Someone Knows My Name,eng,4.44,22146,55294,5303,326,746,4525,18174,31523,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348403987l/875441.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1910,93101,93101,859375,832,812972147,9780812972150.0,\"Anonymous, Richard Francis Burton, A.S. Byatt\",800.0,كِتَاب أَلْف لَيْلَة وَلَيْلَة‎‎ [kitāb ʾalf layla wa-layla],The Arabian Nights,eng,4.06,46656,57091,1553,656,2323,11976,20201,21935,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212809l/93101.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1911,7093952,7093952,7350661,65,670021873,9780670021870.0,Tana French,2010.0,Faithful Place,\"Faithful Place (Dublin Murder Squad, #3)\",eng,3.97,55355,61097,5736,584,2205,13196,27712,17400,https://images.gr-assets.com/books/1291165900l/7093952.jpg,https://images.gr-assets.com/books/1291165900s/7093952.jpg\n1912,18467802,18467802,26127419,46,802122558,9780802122550.0,Lily King,2014.0,Euphoria,Euphoria,eng,3.84,41606,48628,5516,883,2696,11817,21056,12176,https://images.gr-assets.com/books/1418788366l/18467802.jpg,https://images.gr-assets.com/books/1418788366s/18467802.jpg\n1913,9301,9301,23728,63,60090383,9780060090390.0,Marian Keyes,1997.0,Rachel's Holiday,\"Rachel's Holiday (Walsh Family, #2)\",eng,3.93,48663,51428,1261,954,2645,12370,18723,16736,https://images.gr-assets.com/books/1407709261l/9301.jpg,https://images.gr-assets.com/books/1407709261s/9301.jpg\n1914,41811,41811,140376,139,586008357,9780586008360.0,Isaac Asimov,1954.0,The Caves of Steel,The Caves of Steel (Robot #1),eng,4.14,51059,58121,1689,212,1282,10553,24246,21828,https://images.gr-assets.com/books/1335782224l/41811.jpg,https://images.gr-assets.com/books/1335782224s/41811.jpg\n1915,17800,17800,2753173,101,99448769,9780099448760.0,Haruki Murakami,1988.0,\"ダンス・ダンス・ダンス [Dansu, dansu, dansu]\",\"Dance Dance Dance (The Rat, #4)\",eng,4.03,41161,48885,2561,331,1753,9862,21152,15787,https://images.gr-assets.com/books/1443689019l/17800.jpg,https://images.gr-assets.com/books/1443689019s/17800.jpg\n1916,232109,232109,2029611,63,380709244,9780380709240.0,\"Beverly Cleary, Louis Darling, Tracy Dockray\",1965.0,The Mouse and the Motorcycle,\"The Mouse and the Motorcycle (Ralph S. Mouse, #1)\",en-US,3.9,61754,63725,1419,952,3280,17270,21684,20539,https://images.gr-assets.com/books/1348990967l/232109.jpg,https://images.gr-assets.com/books/1348990967s/232109.jpg\n1917,3432478,3432478,3473471,56,575090855,9780575090860.0,Carrie Ryan,2009.0,The Forest of Hands and Teeth,\"The Forest of Hands and Teeth (The Forest of Hands and Teeth, #1)\",eng,3.59,64093,74058,8336,4754,9003,18505,21469,20327,https://images.gr-assets.com/books/1320633297l/3432478.jpg,https://images.gr-assets.com/books/1320633297s/3432478.jpg\n1918,189783,189783,2121201,95,736693416,9780736693420.0,Terry Brooks,1982.0,The Elfstones Of Shannara,\"The Elfstones of Shannara  (The Original Shannara Trilogy, #2)\",eng,3.96,51161,55544,1264,858,3022,12442,20133,19089,https://images.gr-assets.com/books/1420148388l/189783.jpg,https://images.gr-assets.com/books/1420148388s/189783.jpg\n1919,7741325,7741325,10551409,40,375866590,9780375866590.0,\"Rachel Cohn, David Levithan\",2010.0,Dash & Lily's Book of Dares,\"Dash & Lily's Book of Dares (Dash & Lily, #1)\",eng,3.82,54920,62663,6564,1504,4374,16073,22588,18124,https://images.gr-assets.com/books/1327874609l/7741325.jpg,https://images.gr-assets.com/books/1327874609s/7741325.jpg\n1920,17333230,17333230,24064531,82,316074314,9780316074320.0,Eleanor Catton,2013.0,The Luminaries,The Luminaries,eng,3.7,40727,48822,6613,2431,4439,11400,17682,12870,https://images.gr-assets.com/books/1410524246l/17333230.jpg,https://images.gr-assets.com/books/1410524246s/17333230.jpg\n1922,32421,32421,1167068,60,553588257,9780553588260.0,Dean Koontz,2005.0,Velocity,Velocity,eng,3.85,48755,51074,1542,751,2861,13997,18945,14520,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924205l/32421.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1923,4143,4143,731,33,316779423,9780316779420.0,David Sedaris,1994.0,Barrel Fever: Stories and Essays,Barrel Fever: Stories and Essays,en-US,3.78,44679,45740,1498,902,3333,12737,16577,12191,https://images.gr-assets.com/books/1453273003l/4143.jpg,https://images.gr-assets.com/books/1453273003s/4143.jpg\n1924,34517,34517,1796454,80,552152951,9780552152950.0,Terry Pratchett,1991.0,Reaper Man,\"Reaper Man (Discworld, #11; Death, #2)\",eng,4.27,52845,62795,1789,155,1087,9103,23540,28910,https://images.gr-assets.com/books/1389211958l/34517.jpg,https://images.gr-assets.com/books/1389211958s/34517.jpg\n1925,17303,17303,121335,27,1581345275,9781581345280.0,Frank E. Peretti,1989.0,Piercing the Darkness,\"Piercing the Darkness (Darkness, #2)\",eng,4.3,44595,45801,566,576,1388,6180,13312,24345,https://images.gr-assets.com/books/1308796365l/17303.jpg,https://images.gr-assets.com/books/1308796365s/17303.jpg\n1926,69242,69242,1472304,50,1400064287,9781400064280.0,\"Chip Heath, Dan Heath\",2006.0,Made to Stick: Why Some Ideas Survive and Others Die,Made to Stick: Why Some Ideas Survive and Others Die,en-US,3.97,46736,48407,1967,1247,2347,9922,18142,16749,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402600211l/69242.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1927,401514,401514,525961,56,038000321X,9780380003210.0,Piers Paul Read,1974.0,Alive: The Story of the Andes Survivors,Alive: The Story of the Andes Survivors,eng,4.08,49300,50631,940,455,1337,10066,20488,18285,https://images.gr-assets.com/books/1404247131l/401514.jpg,https://images.gr-assets.com/books/1404247131s/401514.jpg\n1928,3679,3679,910752,71,143037749,9780143037740.0,Zadie Smith,2005.0,On Beauty,On Beauty,eng,3.68,44317,49803,3904,1357,4393,13695,19496,10862,https://images.gr-assets.com/books/1495961870l/3679.jpg,https://images.gr-assets.com/books/1495961870s/3679.jpg\n1929,13360,254389,246528,47,446691097,9780446691090.0,Joyce Meyer,1995.0,Battlefield of the Mind: Winning the Battle in Your Mind,Battlefield of the Mind: Winning the Battle in Your Mind,en-US,4.33,26898,44793,951,895,1323,5511,11554,25510,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442547598l/13360._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1930,59829,59829,58217,72,749932775,9780749932770.0,Nora Roberts,2001.0,Dance Upon The Air,\"Dance Upon the Air (Three Sisters Island, #1)\",eng,4.19,50255,54488,1449,575,1514,9430,18221,24748,https://images.gr-assets.com/books/1263843885l/59829.jpg,https://images.gr-assets.com/books/1263843885s/59829.jpg\n1931,645023,645023,1808841,58,345335708,9780345335710.0,David Eddings,1984.0,Castle of Wizardry,\"Castle of Wizardry (The Belgariad, #4)\",eng,4.16,54682,57683,523,315,1651,10572,21181,23964,https://images.gr-assets.com/books/1421711682l/645023.jpg,https://images.gr-assets.com/books/1421711682s/645023.jpg\n1932,8492319,8492319,12784133,43,451233166,9780451233160.0,J.R. Ward,2011.0,\"Lover Avenged, part two\",\"Lover Unleashed (Black Dagger Brotherhood, #9)\",en-US,4.28,66871,73613,3776,489,2211,10859,22524,37530,https://images.gr-assets.com/books/1289343390l/8492319.jpg,https://images.gr-assets.com/books/1289343390s/8492319.jpg\n1933,7119070,7119070,7379975,11,,9789953718060.0,أثير عبدالله النشمي,2010.0,أحببتك أكثر مما ينبغى,أحببتك أكثر مما ينبغي,ara,3.67,31779,42357,4898,3563,4620,8914,10505,14755,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1257796264l/7119070.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1934,6566722,6566722,6759670,58,1401323820,9781401323820.0,Richard Castle,2008.0,Heat Wave,\"Heat Wave (Nikki Heat, #1)\",en-US,3.54,49283,55171,4487,1968,5963,18846,16822,11572,https://images.gr-assets.com/books/1257521812l/6566722.jpg,https://images.gr-assets.com/books/1257521812s/6566722.jpg\n1935,18607805,18607805,26379921,45,,,Amazon,2011.0,kindle paperwhite user's guide 2nd edition,Kindle Paperwhite User's Guide,eng,3.72,15002,36650,38,3581,2978,6883,9852,13356,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1384802754l/18607805.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1936,4659,4659,3359767,94,345469011,9780345469010.0,John Irving,1998.0,A Widow for One Year,A Widow for One Year,,3.74,45051,50081,2298,894,3513,14489,19858,11327,https://images.gr-assets.com/books/1375776653l/4659.jpg,https://images.gr-assets.com/books/1375776653s/4659.jpg\n1937,25350,25350,879622,119,7157150,9780007157150.0,C.S. Lewis,1938.0,Out of the Silent Planet,\"Out of the Silent Planet (Space Trilogy, #1)\",eng,3.92,49617,56476,2626,942,3378,13211,20524,18421,https://images.gr-assets.com/books/1310984018l/25350.jpg,https://images.gr-assets.com/books/1310984018s/25350.jpg\n1938,6687,6687,2615068,133,142404128,9780142404130.0,\"Roald Dahl, Quentin Blake\",1972.0,\"Charlie and the Great Glass Elevator: The Further Adventures of Charlie Bucket and Willy Wonka, Chocolate-Maker Extraordinaire\",\"Charlie and the Great Glass Elevator (Charlie Bucket, #2)\",,3.64,62359,70177,1890,1400,6547,23564,22818,15848,https://images.gr-assets.com/books/1309211607l/6687.jpg,https://images.gr-assets.com/books/1309211607s/6687.jpg\n1939,826585,826585,421426,16,60266864,9780060266870.0,\"Laura Joffe Numeroff, Felicia Bond\",1998.0,If You Give a Pig a Pancake ,If You Give a Pig a Pancake ,en-US,4.23,51385,51753,829,505,1853,9163,13809,26423,https://images.gr-assets.com/books/1384260096l/826585.jpg,https://images.gr-assets.com/books/1384260096s/826585.jpg\n1940,567678,567678,3205295,78,684853159,9780684853150.0,Iain Banks,1984.0,The Wasp Factory,The Wasp Factory,en-US,3.85,46179,52845,3081,1593,3722,11699,19926,15905,https://images.gr-assets.com/books/1434940562l/567678.jpg,https://images.gr-assets.com/books/1434940562s/567678.jpg\n1941,10112885,18770398,15182838,59,140006788X,9781400067890.0,Marisha Pessl,2013.0,Night Film,Night Film,eng,3.78,24865,55117,8039,1797,4627,12959,20335,15399,https://images.gr-assets.com/books/1363819140l/10112885.jpg,https://images.gr-assets.com/books/1363819140s/10112885.jpg\n1943,16085481,16085481,21571970,38,385536976,9780385536970.0,Kevin Kwan,2013.0,Crazy Rich Asians,Crazy Rich Asians (Crazy Rich Asians #1),eng,3.7,46208,55387,6601,1369,4244,16017,22007,11750,https://images.gr-assets.com/books/1364852559l/16085481.jpg,https://images.gr-assets.com/books/1364852559s/16085481.jpg\n1944,51428,51428,1696926,45,385733410,9780385733410.0,Libba Bray,2005.0,Rebel Angels,\"Rebel Angels (Gemma Doyle, #2)\",eng,3.98,81420,83916,3101,2320,4306,17352,28982,30956,https://images.gr-assets.com/books/1333820283l/51428.jpg,https://images.gr-assets.com/books/1333820283s/51428.jpg\n1945,344262,344262,13411866,49,038533916X,9780385339160.0,Karen Marie Moning,2007.0,Bloodfever,\"Bloodfever (Fever, #2)\",eng,4.3,69032,78241,4322,408,1705,10116,27406,38606,https://images.gr-assets.com/books/1302566396l/344262.jpg,https://images.gr-assets.com/books/1302566396s/344262.jpg\n1946,2702704,2702704,2728068,45,385341636,9780385341640.0,Karen Marie Moning,2008.0,Faefever,\"Faefever (Fever, #3)\",en-US,4.34,68452,76689,3989,564,1583,9222,25139,40181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437781062l/2702704._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1947,22744701,22341263,41739579,25,,,Robert Dugoni,2014.0,My Sister's Grave,My Sister's Grave (Tracy Crosswhite #1),eng,4.0,31029,54934,3527,845,2245,11216,22579,18049,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427339446l/22744701.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1948,24120519,24120519,43712653,71,159474758X,9781594747590.0,Ransom Riggs,2015.0,Library of Souls ,\"Library of Souls (Miss Peregrine's Peculiar Children, #3)\",eng,4.15,58435,69660,7936,507,2285,11892,26480,28496,https://images.gr-assets.com/books/1472783347l/24120519.jpg,https://images.gr-assets.com/books/1472783347s/24120519.jpg\n1949,3102,3102,1902726,131,486424545,9780486424540.0,E.M. Forster,1910.0,Howards End,Howards End,eng,3.95,52006,58759,1930,1006,3045,13142,22192,19374,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385160500l/3102.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1950,102458,102458,98784,39,1593070942,9781593070950.0,\"Mike Mignola, John Byrne\",1994.0,Hellboy: Seed of Destruction,\"Hellboy, Vol. 1: Seed of Destruction (Hellboy, #1)\",eng,4.11,48485,49057,618,1015,1893,8616,16450,21083,https://images.gr-assets.com/books/1486039246l/102458.jpg,https://images.gr-assets.com/books/1486039246s/102458.jpg\n1951,13643567,13643567,18107180,28,,,Michelle Hodkin,2012.0,The Evolution of Mara Dyer,\"The Evolution of Mara Dyer (Mara Dyer, #2)\",eng,4.33,45919,70318,7708,819,2055,8249,20898,38297,https://images.gr-assets.com/books/1336663149l/13643567.jpg,https://images.gr-assets.com/books/1336663149s/13643567.jpg\n1952,15724396,15724396,21400019,58,1423160916,9781423160920.0,Rick Riordan,2015.0,The Sword of Summer,\"The Sword of Summer (Magnus Chase and the Gods of Asgard, #1)\",eng,4.26,78157,86588,8632,1560,2450,11297,27788,43493,https://images.gr-assets.com/books/1434701340l/15724396.jpg,https://images.gr-assets.com/books/1434701340s/15724396.jpg\n1953,54499,54499,2971402,426,140439242,9780140439240.0,\"Alexandre Dumas, Francine du Plessix Gray, Joachim Neugroschel\",1850.0,\"Le Vicomte de Bragelonne, ou Dix ans plus tard\",\"The Man in the Iron Mask (The D'Artagnan Romances, #3.3)\",eng,3.97,51856,56208,747,518,2517,13643,20941,18589,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1571392348l/54499._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1954,89717,89717,3627,89,143039989,9780143039980.0,\"Shirley Jackson, Laura   Miller\",1959.0,The Haunting οf Hill House,The Haunting of Hill House,eng,3.89,55367,62514,5116,1098,4174,14899,22377,19966,https://images.gr-assets.com/books/1327871336l/89717.jpg,https://images.gr-assets.com/books/1327871336s/89717.jpg\n1955,18864,18864,69675,67,684856476,9780684856480.0,Hunter S. Thompson,1998.0,The Rum Diary,The Rum Diary,eng,3.83,39300,43380,1829,415,2630,11809,17420,11106,https://images.gr-assets.com/books/1430534762l/18864.jpg,https://images.gr-assets.com/books/1430534762s/18864.jpg\n1956,8253,8253,2299540,76,60885432,9780060885430.0,\"Laura Ingalls Wilder, Garth Williams\",1941.0,Little Town on the Prairie,\"Little Town on the Prairie  (Little House, #7)\",en-GB,4.18,63615,68312,831,836,1973,12139,22202,31162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449674l/8253.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1957,31122,33602148,950769,103,312181108,9780312181110.0,Dodie Smith,1948.0,I Capture the Castle,I Capture the Castle,eng,4.0,56444,65645,6587,941,3334,13581,24645,23144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316083l/31122.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1958,7933617,7933617,11290776,61,1905654871,9781905654870.0,\"P.C. Cast, Kristin Cast\",2011.0,Destined,\"Destined (House of Night, #9)\",eng,4.04,56737,63949,2535,1595,3865,12696,18186,27607,https://images.gr-assets.com/books/1406962311l/7933617.jpg,https://images.gr-assets.com/books/1406962311s/7933617.jpg\n1959,6048530,6048530,6224145,36,312383282,9780312383280.0,Janet Evanovich,2009.0,Finger Lickin' Fifteen,\"Finger Lickin' Fifteen (Stephanie Plum, #15)\",en-US,3.98,65904,70872,3795,578,3242,17002,25909,24141,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442966437l/6048530._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1960,38500,38500,3706,117,61177598,9780061177590.0,Charles Bukowski,1978.0,Women,Women,eng,3.89,41866,46203,2040,1068,3035,10345,17330,14425,https://images.gr-assets.com/books/1325028693l/38500.jpg,https://images.gr-assets.com/books/1325028693s/38500.jpg\n1962,6587387,6587387,6527865,20,044101819X,9780441018190.0,Patricia Briggs,2010.0,Silver Borne,\"Silver Borne (Mercy Thompson, #5)\",en-US,4.38,71830,77852,2558,181,837,8425,28015,40394,https://images.gr-assets.com/books/1258762890l/6587387.jpg,https://images.gr-assets.com/books/1258762890s/6587387.jpg\n1963,31259,31259,31538,94,752858491,9780752858490.0,Robert Ludlum,1990.0,The Bourne Ultimatum,\"The Bourne Ultimatum (Jason Bourne, #3)\",eng,4.04,47682,50319,785,519,2005,10269,19585,17941,https://images.gr-assets.com/books/1408928937l/31259.jpg,https://images.gr-assets.com/books/1408928937s/31259.jpg\n1964,68488,68488,2406151,62,6486010,9780006486020.0,Robin Hobb,2001.0,Fool's Errand,\"Fool's Errand (Tawny Man, #1)\",eng,4.29,50758,56491,1297,381,1096,7146,21191,26677,https://images.gr-assets.com/books/1360508839l/68488.jpg,https://images.gr-assets.com/books/1360508839s/68488.jpg\n1965,20821111,20821111,25217978,39,399167838,9780399167840.0,Marie Lu,2014.0,The Young Elites,\"The Young Elites (The Young Elites, #1)\",eng,3.93,60930,72215,10093,1719,4372,15294,26691,24139,https://images.gr-assets.com/books/1407318399l/20821111.jpg,https://images.gr-assets.com/books/1407318399s/20821111.jpg\n1966,59810,59810,759792,57,515126772,9780515126780.0,Nora Roberts,1999.0,Jewels of the Sun,\"Jewels of the Sun (Gallaghers of Ardmore, #1)\",en-US,4.22,50630,52743,1027,506,1433,8997,17025,24782,https://images.gr-assets.com/books/1388194052l/59810.jpg,https://images.gr-assets.com/books/1388194052s/59810.jpg\n1967,30659,30659,31010,768,140449337,9780140449330.0,\"Marcus Aurelius, Martin Hammond, Diskin Clay\",180.0,Τὰ εἰς ἑαυτόν ,Meditations,eng,4.2,43876,55309,2613,825,2162,8561,17232,26529,https://images.gr-assets.com/books/1421618636l/30659.jpg,https://images.gr-assets.com/books/1421618636s/30659.jpg\n1968,34262,34262,1625130,47,078684907X,9780786849080.0,\"Dave Barry, Ridley Pearson, Greg Call\",2004.0,Peter and the Starcatchers,\"Peter and the Starcatchers (Peter and the Starcatchers, #1)\",eng,4.01,57575,60040,4375,1123,2878,12131,21772,22136,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435312363l/34262._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1969,475,475,1041106,70,143036556,9780143036560.0,Jared Diamond,2004.0,Collapse: How Societies Chose to Fail or Succeed,Collapse: How Societies Choose to Fail or Succeed,en-GB,3.92,44238,47025,2667,779,2395,10680,19285,13886,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441419222l/475._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1970,41219,41219,2246190,114,679735909,9780679735910.0,A.S. Byatt,1990.0,Possession,Possession,eng,3.88,56064,59734,3563,2331,4550,12121,19713,21019,https://images.gr-assets.com/books/1391124124l/41219.jpg,https://images.gr-assets.com/books/1391124124s/41219.jpg\n1971,2753843,2753843,2779542,31,1423102282,9781423102280.0,Melissa de la Cruz,2008.0,Revelations,\"Revelations (Blue Bloods, #3)\",en-US,3.89,66170,68531,1565,1418,4674,17551,20935,23953,https://images.gr-assets.com/books/1322343073l/2753843.jpg,https://images.gr-assets.com/books/1322343073s/2753843.jpg\n1972,19668,19668,5054709,72,425143325,9780425143320.0,Tom Clancy,1993.0,Without Remorse,\"Without Remorse (Jack Ryan Universe, #1)\",en-US,4.16,47148,49880,931,577,1620,8528,17634,21521,https://images.gr-assets.com/books/1310082706l/19668.jpg,https://images.gr-assets.com/books/1310082706s/19668.jpg\n1973,93981,93981,1758256,321,1566195764,9781566195770.0,Sigmund Freud,1899.0,Die Traumdeutung,The Interpretation of Dreams,,3.81,41081,44144,571,1436,3378,11331,13933,14066,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171268617l/93981.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1975,65110,65110,838097,50,64410153,9780064410150.0,\"Lemony Snicket, Brett Helquist\",2005.0,The Penultimate Peril,\"The Penultimate Peril (A Series of Unfortunate Events, #12)\",en-US,4.02,67482,69718,1581,778,3242,15198,24874,25626,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524161970l/65110._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1976,25,25,3419048,69,076790382X,9780767903820.0,Bill Bryson,1998.0,Notes from a Big Country,I'm a Stranger Here Myself: Notes on Returning to America after Twenty Years Away,en-US,3.89,44610,49430,2335,601,2332,12624,20065,13808,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184037l/25.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1977,65112,65112,838691,51,64410161,9780064410170.0,\"Lemony Snicket, Brett Helquist\",2006.0,The End,\"The End (A Series of Unfortunate Events, #13)\",en-US,3.99,67018,69582,3066,1628,4360,14247,22189,27158,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524761836l/65112._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1978,14241,14241,1269768,34,143035746,9780143035750.0,Mary Karr,1995.0,The Liars' Club: A Memoir,The Liars' Club,eng,3.92,45153,47561,2259,950,2756,10793,17561,15501,https://images.gr-assets.com/books/1499665766l/14241.jpg,https://images.gr-assets.com/books/1499665766s/14241.jpg\n1979,15985348,15985348,17328606,43,193700788X,9781937007880.0,Charlaine Harris,2013.0,Dead Ever After,\"Dead Ever After (Sookie Stackhouse, #13)\",eng,3.39,49926,66941,9201,5280,9510,19931,18129,14091,https://images.gr-assets.com/books/1352158186l/15985348.jpg,https://images.gr-assets.com/books/1352158186s/15985348.jpg\n1980,24830,24830,1065861,123,000712774X,9780007127740.0,Ray Bradbury,1951.0,The Illustrated Man,The Illustrated Man,eng,4.13,49551,57968,2615,341,1688,10484,22836,22619,https://images.gr-assets.com/books/1374049820l/24830.jpg,https://images.gr-assets.com/books/1374049820s/24830.jpg\n1982,17934530,17934530,24946895,51,374104093,9780374104090.0,Jeff VanderMeer,2014.0,Annihilation,\"Annihilation (Southern Reach, #1)\",eng,3.62,45353,53301,7109,1939,5513,14754,19539,11556,https://images.gr-assets.com/books/1403941587l/17934530.jpg,https://images.gr-assets.com/books/1403941587s/17934530.jpg\n1983,11479285,11479285,16371399,26,,,Abbi Glines,2011.0,Breathe,\"Breathe (Sea Breeze, #1)\",eng,3.88,69350,72690,3706,2392,5354,16350,23352,25242,https://images.gr-assets.com/books/1341120438l/11479285.jpg,https://images.gr-assets.com/books/1341120438s/11479285.jpg\n1984,58922,58922,2039654,56,60775823,9780060775830.0,\"Margaret Wise Brown, Clement Hurd\",1942.0,The Runaway Bunny,The Runaway Bunny,en-US,4.14,52974,54257,756,1207,2654,9854,14278,26264,https://images.gr-assets.com/books/1468816103l/58922.jpg,https://images.gr-assets.com/books/1468816103s/58922.jpg\n1985,8520362,8520362,13383926,80,553805371,9780553805380.0,\"Stephen Hawking, Leonard Mlodinow\",2010.0,The Grand Design,The Grand Design,eng,4.0,42687,46147,1962,1107,2090,9079,17175,16696,https://images.gr-assets.com/books/1320558363l/8520362.jpg,https://images.gr-assets.com/books/1320558363s/8520362.jpg\n1986,5345,5345,3202981,101,385517238,9780385517230.0,John Grisham,2006.0,The Innocent Man,The Innocent Man: Murder and Injustice in a Small Town,eng,3.79,43793,48240,3891,1412,3719,12250,17282,13577,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441415135l/5345._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1987,10617,10617,1412598,24,452277752,9780452277760.0,\"Richard Bachman, Stephen King\",1985.0,The Bachman Books,The Bachman Books,eng,4.1,52824,56217,651,555,1793,11043,20833,21993,https://images.gr-assets.com/books/1374049003l/10617.jpg,https://images.gr-assets.com/books/1374049003s/10617.jpg\n1988,17568801,17568801,24258336,51,140006922X,9781400069220.0,Reza Aslan,2013.0,Zealot: The Life and Times of Jesus of Nazareth,Zealot: The Life and Times of Jesus of Nazareth,eng,3.82,41094,45545,4614,2180,2881,9647,16978,13859,https://images.gr-assets.com/books/1367929567l/17568801.jpg,https://images.gr-assets.com/books/1367929567s/17568801.jpg\n1989,761732,761732,1964457,53,812551494,9780812551500.0,Terry Goodkind,1999.0,Soul of the Fire,\"Soul of the Fire (Sword of Truth, #5)\",eng,3.87,48632,51496,704,1280,3757,12489,17047,16923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562779000l/761732.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1990,11331421,11331421,6504537,83,1590514637,9781590514630.0,\"Jan-Philipp Sendker, Kevin Wiliarty\",2002.0,Das Herzenhören,The Art of Hearing Heartbeats,eng,3.98,41647,50338,5650,704,2697,10330,19670,16937,https://images.gr-assets.com/books/1320437247l/11331421.jpg,https://images.gr-assets.com/books/1320437247s/11331421.jpg\n1991,8935689,8935689,14366,50,1857231384,9781857231380.0,Iain M. Banks,1987.0,Consider Phlebas,\"Consider Phlebas (Culture, #1)\",eng,3.85,48649,53499,2666,1083,3656,12772,20533,15455,https://images.gr-assets.com/books/1327951890l/8935689.jpg,https://images.gr-assets.com/books/1327951890s/8935689.jpg\n1992,759945,759945,746042,90,671646788,9780671646780.0,David J. Schwartz,1959.0,The Magic of Thinking Big,The Magic of Thinking Big,en-US,4.19,40023,42603,1163,640,1589,6992,13083,20299,https://images.gr-assets.com/books/1404632064l/759945.jpg,https://images.gr-assets.com/books/1404632064s/759945.jpg\n1993,31332,31332,2925979,63,345434803,9780345434810.0,Anne Rice,1998.0,The Vampire Armand,\"The Vampire Armand (The Vampire Chronicles, #6)\",en-US,3.75,54919,57566,756,1129,4866,17158,18670,15743,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388355184l/31332.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1994,17337562,17337562,24071049,32,,,Abbi Glines,2013.0,\"Forever Too Far (Too Far, #3)\",\"Forever Too Far (Rosemary Beach, #3; Too Far, #3)\",eng,4.24,70029,72847,4490,870,2631,10633,22505,36208,https://images.gr-assets.com/books/1368151288l/17337562.jpg,https://images.gr-assets.com/books/1368151288s/17337562.jpg\n1995,768889,768889,17243368,60,6479901,9780006479900.0,George R.R. Martin,2000.0,A Storm of Swords: Part 1 Steel and Snow,\"A Storm of Swords: Steel and Snow (A Song of Ice and Fire, #3: Part 1 of 2)\",eng,4.49,42072,52461,1627,147,435,4141,16561,31177,https://images.gr-assets.com/books/1353235205l/768889.jpg,https://images.gr-assets.com/books/1353235205s/768889.jpg\n1996,180617,180617,2685281,1032,140382623,9780140382620.0,\"Carlo Collodi, John Boyne, Monteiro Lobato, Unknown\",1883.0,Le avventure di Pinocchio,Pinocchio,eng,3.86,48961,55985,1405,1235,4063,14916,17113,18658,https://images.gr-assets.com/books/1327938097l/180617.jpg,https://images.gr-assets.com/books/1327938097s/180617.jpg\n1997,9565548,9565548,14452295,33,054762834X,9780547628350.0,Robin LaFevers,2012.0,Grave Mercy,\"Grave Mercy (His Fair Assassin, #1)\",eng,3.92,70476,74683,7661,2257,4487,15591,27223,25125,https://images.gr-assets.com/books/1320269319l/9565548.jpg,https://images.gr-assets.com/books/1320269319s/9565548.jpg\n1998,833253,18054698,818882,39,1565075722,9781565075730.0,Stormie Omartian,1996.0,The Power of a Praying Wife,The Power of a Praying Wife,,4.31,22618,41057,774,591,1235,5534,11257,22440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178755854l/833253.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n1999,249,249,543143,205,802131786,9780802131780.0,Henry Miller,1934.0,Tropic of Cancer,Tropic of Cancer,eng,3.71,45518,49701,2526,2313,4591,12278,16494,14025,https://images.gr-assets.com/books/1408753140l/249.jpg,https://images.gr-assets.com/books/1408753140s/249.jpg\n2000,3086160,3086160,3811636,32,60393491,9780060393500.0,Wally Lamb,2007.0,The Hour I First Believed,The Hour I First Believed,en-US,3.8,46475,50586,6180,1214,4088,12596,18566,14122,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438893201l/3086160._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2001,7952502,7952502,11580916,24,61997811,9780061997820.0,Brian Sibley,2010.0,Harry Potter: Film Wizardry,Harry Potter: Film Wizardry,eng,4.48,45081,46063,526,1058,984,4017,8553,31451,https://images.gr-assets.com/books/1464452934l/7952502.jpg,https://images.gr-assets.com/books/1464452934s/7952502.jpg\n2002,18386,18386,234915,438,1600964338,9781600964340.0,\"Leo Tolstoy, Aylmer Maude\",1886.0,Смерть Ивана Ильича,The Death of Ivan Ilych,eng,4.04,46357,55750,2623,580,2384,11406,21407,19973,https://images.gr-assets.com/books/1336967150l/18386.jpg,https://images.gr-assets.com/books/1336967150s/18386.jpg\n2003,23995231,23995231,43446210,42,345534182,9780345534190.0,Paula McLain,2015.0,Circling the Sun,Circling the Sun,eng,3.93,37839,48775,5918,784,2279,10501,21395,13816,https://images.gr-assets.com/books/1426531608l/23995231.jpg,https://images.gr-assets.com/books/1426531608s/23995231.jpg\n2004,5306,5306,1024827,123,142000701,9780142000700.0,John Steinbeck,1962.0,Travels with Charley: In Search of America,Travels with Charley: In Search of America,eng,4.07,45856,51951,3737,664,1971,9843,20207,19266,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924381l/5306.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2005,10950924,10950924,15868401,31,145161747X,9781451617470.0,Alice Hoffman,2011.0,The Dovekeepers,The Dovekeepers,eng,4.02,48640,54581,7099,1253,2992,9704,20015,20617,https://images.gr-assets.com/books/1306253903l/10950924.jpg,https://images.gr-assets.com/books/1306253903s/10950924.jpg\n2006,2890090,2890090,2916344,33,553804693,9780553804690.0,Scott Lynch,2013.0,The Republic of Thieves,\"The Republic of Thieves (Gentleman Bastard, #3)\",eng,4.23,45320,53545,3565,211,1250,7538,21533,23013,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406961069l/2890090.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2007,113304,113304,3313414,92,1903434777,9781903434770.0,Cornelia Funke,2000.0,Herr der Diebe,The Thief Lord,eng,3.95,60780,68465,3391,751,3450,16442,25758,22064,https://images.gr-assets.com/books/1327960342l/113304.jpg,https://images.gr-assets.com/books/1327960342s/113304.jpg\n2008,12983100,17849112,18142457,36,1444778536,9781444778530.0,Susan Ee,2013.0,World After,\"World After (Penryn & the End of Days, #2)\",eng,4.22,33994,69103,7048,782,2065,10272,24341,31643,https://images.gr-assets.com/books/1494247697l/12983100.jpg,https://images.gr-assets.com/books/1494247697s/12983100.jpg\n2009,14996,14996,944261,61,553804804,9780553804800.0,Dean Koontz,2006.0,Brother Odd,\"Brother Odd (Odd Thomas, #3)\",eng,3.98,48400,52377,2165,479,2534,12186,19684,17494,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406835501l/14996.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2010,42603,42603,2444552,55,451208641,9780451208640.0,John Howard Griffin,1960.0,Black Like Me,Black Like Me,en-US,4.12,47324,49655,2065,385,1487,9360,18937,19486,https://images.gr-assets.com/books/1311696842l/42603.jpg,https://images.gr-assets.com/books/1311696842s/42603.jpg\n2011,1840511,1840511,2034926,59,385517882,9780385517880.0,Chuck Palahniuk,2008.0,Snuff,Snuff,en-US,3.18,43496,46968,2564,3063,8963,17291,11797,5854,https://images.gr-assets.com/books/1446089918l/1840511.jpg,https://images.gr-assets.com/books/1446089918s/1840511.jpg\n2012,13140,13140,3236117,92,446692654,9780446692660.0,James Patterson,1996.0,Jack & Jill,\"Jack & Jill (Alex Cross, #3)\",eng,3.95,51119,56005,1228,325,1928,14459,23052,16241,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253756l/13140.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2013,5015,5015,2307189,83,1400076196,9781400076190.0,Ian McEwan,2005.0,Saturday,Saturday,en-US,3.61,45567,49409,3460,1779,4652,14205,18983,9790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431501825l/5015._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2014,185911,185911,4639409,51,345466608,9780345466600.0,Jonathan Kellerman,1985.0,When the Bough Breaks,\"When the Bough Breaks (Alex Delaware, #1)\",eng,4.02,48860,50189,578,588,1626,11036,20020,16919,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390256869l/185911.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2015,83674,83674,3338995,146,446364495,9780446364490.0,Robert James Waller,1992.0,The Bridges of Madison County,The Bridges of Madison County,eng,3.51,56428,61065,3458,4612,7891,15859,16846,15857,https://images.gr-assets.com/books/1344267141l/83674.jpg,https://images.gr-assets.com/books/1344267141s/83674.jpg\n2016,4494917,4494917,4487466,81,593057058,9780593057060.0,Lee Child,2009.0,Gone Tomorrow,\"Gone Tomorrow (Jack Reacher, #13)\",eng,4.17,51570,59755,2359,411,1270,9698,24969,23407,https://images.gr-assets.com/books/1328395497l/4494917.jpg,https://images.gr-assets.com/books/1328395497s/4494917.jpg\n2017,4588949,4588949,4638383,60,385735294,9780385735290.0,Michael Scott,2009.0,The Sorceress,\"The Sorceress (The Secrets of the Immortal Nicholas Flamel, #3)\",eng,4.11,58278,61599,1929,925,2256,11397,21804,25217,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203327l/4588949.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2018,13507212,13507212,14512257,86,805090037,9780805090030.0,Hilary Mantel,2012.0,Bring Up the Bodies,\"Bring Up the Bodies (Thomas Cromwell, #2)\",en-US,4.26,42306,51656,6371,697,1446,5965,18969,24579,https://images.gr-assets.com/books/1330649655l/13507212.jpg,https://images.gr-assets.com/books/1330649655s/13507212.jpg\n2019,2921082,2921082,2948317,33,545060397,9780545060390.0,Rick Riordan,2008.0,The Maze of Bones ,\"The Maze of Bones  (The 39 Clues, #1)\",eng,3.83,59536,61950,4229,1998,4684,15438,19737,20093,https://images.gr-assets.com/books/1385117877l/2921082.jpg,https://images.gr-assets.com/books/1385117877s/2921082.jpg\n2020,603204,603204,1110244,24,28610105,9780028610110.0,Mark Bittman,1998.0,How to Cook Everything: Simple Recipes for Great Food,How to Cook Everything: Simple Recipes for Great Food,en-US,4.02,52708,54604,638,2351,3093,9740,15557,23863,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407047944l/603204.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2021,690926,690926,3187048,5,316003727,9780316003730.0,Stephenie Meyer,2007.0,\"The Twilight Collection (Twilight, #1-3)\",\"The Twilight Collection (Twilight, #1-3)\",eng,3.78,42361,42383,1127,4560,3613,6924,8607,18679,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187657l/690926.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2022,857502,857502,1117836,75,486234118,9780486234110.0,Wassily Kandinsky,1912.0,Über das Geistige in der Kunst,Concerning the Spiritual in Art,eng,3.81,56444,56966,187,3439,4915,12528,14415,21669,https://images.gr-assets.com/books/1405982387l/857502.jpg,https://images.gr-assets.com/books/1405982387s/857502.jpg\n2023,186190,186190,1500218,82,743453255,9780743453260.0,Winston Groom,1986.0,Forrest Gump,\"Forrest Gump (Forrest Gump, #1)\",eng,4.06,45660,49345,1606,1466,2973,8307,15110,21489,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385313197l/186190.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2024,11991,11991,3324245,205,679720227,9780679720220.0,\"Albert Camus, Justin O'Brien\",1956.0,La Chute,The Fall,eng,4.05,43269,50340,1894,491,2115,10022,19296,18416,https://images.gr-assets.com/books/1467904855l/11991.jpg,https://images.gr-assets.com/books/1467904855s/11991.jpg\n2025,7572,7572,610037,47,1842430246,9781842430250.0,Tom Robbins,1976.0,Even Cowgirls Get the Blues,Even Cowgirls Get the Blues,eng,3.74,40840,43976,1609,1104,3340,12167,16521,10844,https://images.gr-assets.com/books/1336172455l/7572.jpg,https://images.gr-assets.com/books/1336172455s/7572.jpg\n2026,6138,6138,1044477,260,375757856,9780375757850.0,\"Wilkie Collins, Carolyn G. Heilbrun\",1868.0,The Moonstone,The Moonstone,eng,3.9,50322,58283,3297,1256,3266,13487,22376,17898,https://images.gr-assets.com/books/1403192382l/6138.jpg,https://images.gr-assets.com/books/1403192382s/6138.jpg\n2027,374233,374233,1116802,131,,9780088619450.0,\"Italo Calvino, William Weaver\",1979.0,Se una notte d'inverno un viaggiatore,If on a Winter's Night a Traveler,eng,4.08,42037,53610,4093,1242,2841,8900,18203,22424,https://images.gr-assets.com/books/1355316130l/374233.jpg,https://images.gr-assets.com/books/1355316130s/374233.jpg\n2028,13521,13521,845295,36,60747226,9780060747220.0,\"Gregory Maguire, Douglas Smith\",2004.0,Son of a Witch,\"Son of a Witch (The Wicked Years, #2)\",eng,3.45,48982,53081,3339,1945,6888,18424,16720,9104,https://images.gr-assets.com/books/1370992595l/13521.jpg,https://images.gr-assets.com/books/1370992595s/13521.jpg\n2029,815309,815309,1698999,85,224081187,9780224081180.0,Ian McEwan,2007.0,On Chesil Beach,On Chesil Beach,eng,3.54,43698,50781,5255,1862,5499,15904,18463,9053,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436962381l/815309._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2030,64854,64854,1300442,48,449223604,9780449223600.0,Sue Grafton,1996.0,\"\"\"M\"\" is for Malice\",\"M is for Malice (Kinsey Millhone, #13)\",en-GB,4.07,52843,54359,551,344,1144,12079,21480,19312,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389678445l/64854.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2031,6531,6531,1827446,92,751530484,9780751530480.0,Patricia Cornwell,1998.0,Point of Origin,\"Point of Origin (Kay Scarpetta, #9)\",en-GB,4.02,48683,51078,522,412,1705,11930,19560,17471,https://images.gr-assets.com/books/1399629118l/6531.jpg,https://images.gr-assets.com/books/1399629118s/6531.jpg\n2032,106264,106264,2674739,53,618062416,9780618062420.0,Patricia MacLachlan,1985.0,\"Sarah, Plain and Tall\",\"Sarah, Plain and Tall (Sarah, Plain and Tall, #1)\",eng,3.72,53317,60099,2038,1493,5145,17960,19486,16015,https://images.gr-assets.com/books/1327254558l/106264.jpg,https://images.gr-assets.com/books/1327254558s/106264.jpg\n2033,3554772,3554772,3596896,25,,,يوسف زيدان,2008.0,عزازيل,عزازيل,ara,4.07,37404,40463,4669,1302,2083,6316,13692,17070,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1239159794l/3554772.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2034,33454,33454,1799438,30,60735414,9780060735420.0,Christopher Moore,1995.0,Bloodsucking Fiends,\"Bloodsucking Fiends (A Love Story, #1)\",eng,3.93,48520,52540,2221,648,2320,12604,21298,15670,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388586483l/33454.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2035,7857195,7857195,10995406,32,316038393,9780316038390.0,\"David Sedaris, Ian Falconer\",2010.0,Squirrel Seeks Chipmunk: A Modest Bestiary,Squirrel Seeks Chipmunk: A Modest Bestiary,eng,3.34,48061,50577,4897,3249,7652,16973,14140,8563,https://images.gr-assets.com/books/1279831428l/7857195.jpg,https://images.gr-assets.com/books/1279831428s/7857195.jpg\n2036,7015403,7015403,7261277,49,159285849X,9781592858490.0,Brené Brown,2010.0,The Gifts of Imperfection,The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are,eng,4.17,46635,51734,3712,943,2048,7885,17437,23421,https://images.gr-assets.com/books/1369092544l/7015403.jpg,https://images.gr-assets.com/books/1369092544s/7015403.jpg\n2037,28214365,28214365,48242398,31,62491792,9780062491790.0,Ann Patchett,2016.0,Commonwealth,Commonwealth,eng,3.84,56656,68598,7843,977,3582,16829,31254,15956,https://images.gr-assets.com/books/1483278132l/28214365.jpg,https://images.gr-assets.com/books/1483278132s/28214365.jpg\n2038,6267237,6267237,6450517,33,1423102266,9781423102270.0,Melissa de la Cruz,2009.0,The Van Alen Legacy ,\"The Van Alen Legacy (Blue Bloods, #4)\",en-US,3.95,58724,60659,1477,1319,3966,14229,18144,23001,https://images.gr-assets.com/books/1343251719l/6267237.jpg,https://images.gr-assets.com/books/1343251719s/6267237.jpg\n2039,133526,133526,1416904,33,670175919,9780670175920.0,Robert McCloskey,1948.0,Blueberries for Sal,Blueberries for Sal,eng,4.18,58571,59275,991,936,2457,10539,16179,29164,https://images.gr-assets.com/books/1363586056l/133526.jpg,https://images.gr-assets.com/books/1363586056s/133526.jpg\n2040,17340050,17340050,24075414,33,,,Colleen Hoover,2013.0,Losing Hope,\"Losing Hope (Hopeless, #2)\",eng,4.39,71841,74907,6563,819,1740,7986,20950,43412,https://images.gr-assets.com/books/1368348507l/17340050.jpg,https://images.gr-assets.com/books/1368348507s/17340050.jpg\n2041,10566,10566,4512687,101,743289412,9780743289410.0,Stephen King,2006.0,Lisey's Story,Lisey's Story,eng,3.65,50721,55149,2911,2537,5722,15068,17223,14599,https://images.gr-assets.com/books/1316346037l/10566.jpg,https://images.gr-assets.com/books/1316346037s/10566.jpg\n2042,15851746,15851746,21599077,63,1451695195,9781451695200.0,Eben Alexander,2012.0,Proof of Heaven: A Neurosurgeon's Journey Into the Afterlife,Proof of Heaven: A Neurosurgeon's Journey into the Afterlife,en-US,3.68,37150,43062,4604,1986,4145,11539,13577,11815,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433186907l/15851746._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2043,400354,400354,819071,81,61092193,9780061092190.0,Terry Pratchett,1993.0,Men at Arms,\"Men at Arms (Discworld, #15; City Watch #2)\",eng,4.36,54413,62242,1230,127,500,7268,23554,30793,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388215150l/400354.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2044,495395,495395,2325789,43,743291476,9780743291480.0,A.J. Jacobs,2007.0,The Year of Living Biblically: One Man's Humble Quest to Follow the Bible As Literally As Possible,The Year of Living Biblically: One Man's Humble Quest to Follow the Bible as Literally as Possible,en-US,3.76,48711,51885,4930,1434,3643,13714,20285,12809,https://images.gr-assets.com/books/1327977486l/495395.jpg,https://images.gr-assets.com/books/1327977486s/495395.jpg\n2045,42432,42432,3634588,95,575075066,9780575075060.0,Frank Herbert,1981.0,God Emperor of Dune,God Emperor of Dune (Dune Chronicles #4),eng,3.81,45608,51891,1069,1070,4298,13741,17028,15754,https://images.gr-assets.com/books/1327131560l/42432.jpg,https://images.gr-assets.com/books/1327131560s/42432.jpg\n2047,40493,40493,630903,132,553381660,9780553381660.0,Jean M. Auel,1982.0,The Valley of Horses,\"The Valley of Horses (Earth's Children, #2)\",en-US,3.98,52572,60665,1858,715,3184,13662,22147,20957,https://images.gr-assets.com/books/1324059760l/40493.jpg,https://images.gr-assets.com/books/1324059760s/40493.jpg\n2048,15811568,15811568,21536832,81,525953485,9780525953490.0,Harlan Coben,2013.0,Six Years,Six Years,eng,3.8,36523,50489,4793,940,3327,13335,20036,12851,https://images.gr-assets.com/books/1348406182l/15811568.jpg,https://images.gr-assets.com/books/1348406182s/15811568.jpg\n2049,78039,78039,1284999,65,192750976,9780192750980.0,Beverly Cleary,1968.0,Ramona the Pest,\"Ramona the Pest (Ramona, #2)\",,4.04,52242,54639,1082,805,2203,12113,18250,21268,https://images.gr-assets.com/books/1408926719l/78039.jpg,https://images.gr-assets.com/books/1408926719s/78039.jpg\n2050,2985500,2985500,3015943,12,1416974512,9781416974510.0,L.J. Smith,2008.0,\"Night World, No. 2\",\"Night World, No. 2 (Night World, #4-6)\",en-CA,4.2,53023,54027,1027,864,2373,9210,14432,27148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399662376l/2985500.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2051,13872,13872,1474375,35,375713344,9780375713350.0,Katherine Dunn,1989.0,Geek Love,Geek Love,eng,3.98,41176,44603,5001,1338,2778,8105,15456,16926,https://images.gr-assets.com/books/1366699063l/13872.jpg,https://images.gr-assets.com/books/1366699063s/13872.jpg\n2053,5527,5527,900927,83,156004801,9780156004800.0,Robert Penn Warren,1946.0,All the King’s Men,All the King's Men,eng,4.08,42821,46988,1951,834,2204,8396,16578,18976,https://images.gr-assets.com/books/1342193852l/5527.jpg,https://images.gr-assets.com/books/1342193852s/5527.jpg\n2054,5452,5452,1710082,70,553375938,9780553375930.0,Ann Brashares,2005.0,Girls in Pants: The Third Summer of the Sisterhood,\"Girls in Pants: The Third Summer of the Sisterhood (Sisterhood, #3)\",eng,3.82,56485,63863,1581,537,3527,19531,23839,16429,https://images.gr-assets.com/books/1320473346l/5452.jpg,https://images.gr-assets.com/books/1320473346s/5452.jpg\n2055,43931,43931,14591855,110,525950125,9780525950130.0,Harlan Coben,2007.0,The Woods,The Woods,eng,4.04,46234,51118,3118,287,1477,10597,22477,16280,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439523356l/43931._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2056,187065,187065,987752,60,1841492612,9781841492610.0,Robert Jordan,2004.0,New Spring,\"New Spring (Wheel of Time, #0)\",eng,4.01,52823,57444,1177,974,2417,12404,20692,20957,https://images.gr-assets.com/books/1328959234l/187065.jpg,https://images.gr-assets.com/books/1328959234s/187065.jpg\n2057,11600163,11600163,16542344,86,1444729705,9781444729700.0,John Grisham,2011.0,The Litigators,The Litigators,eng,3.77,38391,52274,5422,599,2999,15458,22108,11110,https://images.gr-assets.com/books/1320434601l/11600163.jpg,https://images.gr-assets.com/books/1320434601s/11600163.jpg\n2058,23604559,23604559,25003015,71,1501115065,9781501115070.0,\"Fredrik Backman, Henning Koch\",2013.0,Min mormor hälsar och säger förlåt,My Grandmother Asked Me to Tell You She's Sorry,eng,4.02,49291,64396,9989,1361,3431,11866,23320,24418,https://images.gr-assets.com/books/1461904020l/23604559.jpg,https://images.gr-assets.com/books/1461904020s/23604559.jpg\n2059,7959473,7959473,11771611,50,141659518X,9781416595180.0,Vince Flynn,2010.0,American Assassin,\"American Assassin (Mitch Rapp, #1)\",eng,4.24,44196,49508,2395,554,1248,6678,18148,22880,https://images.gr-assets.com/books/1425389574l/7959473.jpg,https://images.gr-assets.com/books/1425389574s/7959473.jpg\n2060,13588356,13588356,19175758,44,1592407331,9781592407330.0,Brené Brown,2012.0,\"Daring Greatly : How the Courage to Be Vulnerable Transforms the Way We Live, Love, Parent, and Lead\",\"Daring Greatly: How the Courage to Be Vulnerable Transforms the Way We Live, Love, Parent, and Lead\",,4.24,49636,55151,4612,861,1814,7428,18252,26796,https://images.gr-assets.com/books/1337110319l/13588356.jpg,https://images.gr-assets.com/books/1337110319s/13588356.jpg\n2061,17333319,17333319,21943144,72,316243914,9780316243920.0,Hannah Kent,2013.0,Burial Rites,Burial Rites,eng,4.01,41209,53096,8028,695,2143,10040,23505,16713,https://images.gr-assets.com/books/1384207446l/17333319.jpg,https://images.gr-assets.com/books/1384207446s/17333319.jpg\n2062,45162,8913370,1014113,72,1573229725,9781573229720.0,Sarah Waters,2002.0,Fingersmith,Fingersmith,eng,4.02,41761,54598,3959,1103,2759,10022,20675,20039,https://images.gr-assets.com/books/1327879025l/45162.jpg,https://images.gr-assets.com/books/1327879025s/45162.jpg\n2063,40189,40189,940715,72,679731148,9780679731150.0,Peter Mayle,1989.0,A Year in Provence,A Year in Provence,eng,3.94,47139,49043,2329,659,2349,11566,19015,15454,https://images.gr-assets.com/books/1494896848l/40189.jpg,https://images.gr-assets.com/books/1494896848s/40189.jpg\n2064,37186,37186,822151,59,763625892,9780763625890.0,\"Kate DiCamillo, Bagram Ibatoulline\",2000.0,The Miraculous Journey of Edward Tulane,The Miraculous Journey of Edward Tulane,eng,4.34,53245,57557,7221,581,1442,7197,17006,31331,https://images.gr-assets.com/books/1361121815l/37186.jpg,https://images.gr-assets.com/books/1361121815s/37186.jpg\n2065,10163292,10163292,11340098,91,670022802,9780670022810.0,Jojo Moyes,2008.0,The Last Letter From Your Lover,The Last Letter from Your Lover,eng,3.94,41138,52899,5264,728,2422,11746,22222,15781,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549061291l/10163292._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2066,762806,762806,90322,83,345298349,9780345298350.0,Martin Cruz Smith,1981.0,Gorky Park,\"Gorky Park (Arkady Renko, #1)\",eng,4.04,46847,48376,807,398,1634,10061,19961,16322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390189430l/762806.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2067,15781725,15781725,21497649,22,62207393,9780062207400.0,Tara Conklin,2013.0,The House Girl,The House Girl,eng,3.75,41671,45797,4357,1309,2944,12318,18720,10506,https://images.gr-assets.com/books/1348172541l/15781725.jpg,https://images.gr-assets.com/books/1348172541s/15781725.jpg\n2068,25346,25346,808243,33,439771277,9780439771280.0,Karen Hesse,1997.0,Out of the Dust,Out of the Dust,,3.73,53706,55632,3748,2274,5082,14242,17616,16418,https://images.gr-assets.com/books/1328867076l/25346.jpg,https://images.gr-assets.com/books/1328867076s/25346.jpg\n2069,23219,23219,905861,44,60851988,9780060851990.0,Meg Cabot,2006.0,Queen of Babble,\"Queen of Babble (Queen of Babble, #1)\",eng,3.71,54248,56384,1899,1875,4659,16341,18743,14766,https://images.gr-assets.com/books/1371049249l/23219.jpg,https://images.gr-assets.com/books/1371049249s/23219.jpg\n2070,13563669,13563669,19140180,71,1419705849,9781419705850.0,Jeff Kinney,2012.0,The Third Wheel,\"The Third Wheel (Diary of a Wimpy Kid, #7)\",en-US,4.21,44607,48724,2619,1064,2154,7824,12319,25363,https://images.gr-assets.com/books/1366229038l/13563669.jpg,https://images.gr-assets.com/books/1366229038s/13563669.jpg\n2071,11925514,11925514,16885788,57,1405258217,9781405258210.0,Elizabeth Wein,2012.0,Code Name Verity,\"Code Name Verity (Code Name Verity, #1)\",eng,4.08,55139,65468,11912,1847,3375,10330,22216,27700,https://images.gr-assets.com/books/1388161911l/11925514.jpg,https://images.gr-assets.com/books/1388161911s/11925514.jpg\n2072,270807,270807,262533,12,1416903542,9781416903540.0,Ellen Hopkins,2006.0,\" Burned (Burned, #1)\",\"Burned (Burned, #1)\",en-US,4.24,48333,50310,3379,810,2073,7454,13804,26169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388719598l/270807.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2073,43330,43330,1686217,91,6472613,9780006472610.0,Sidney Sheldon,1982.0,Master of the Game,Master of the Game,eng,4.09,40111,43039,1313,364,1614,8555,15598,16908,https://images.gr-assets.com/books/1170095440l/43330.jpg,https://images.gr-assets.com/books/1170095440s/43330.jpg\n2074,6539,6539,1454964,103,425201449,9780425201440.0,Patricia Cornwell,1994.0,The Body Farm,\"The Body Farm (Kay Scarpetta, #5)\",eng,4.04,51115,54459,969,261,1652,11962,22349,18235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389834053l/6539.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2075,93722,93722,3220771,48,60845546,9780060845540.0,Meg Cabot,2002.0,The Boy Next Door (Boy #1),\"The Boy Next Door (Boy, #1)\",eng,3.83,50953,54090,1832,1240,3446,14574,18696,16134,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470696l/93722.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2076,19351,19351,3802528,266,141026286,9780141026280.0,\"Anonymous, N.K. Sandars\",-1750.0,Shūtur eli sharrī,The Epic of Gilgamesh,eng,3.63,44345,55856,2247,1551,5850,17627,17485,13343,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388287904l/19351.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2077,1254951,1254951,1243729,46,61345660,9780061345660.0,Anna Godbersen,2007.0,The Luxe,\"The Luxe (Luxe, #1)\",en-US,3.63,58717,61682,4277,3110,6491,16567,19363,16151,https://images.gr-assets.com/books/1323438343l/1254951.jpg,https://images.gr-assets.com/books/1323438343s/1254951.jpg\n2078,19330,19330,1139913,32,072325804X,9780723258050.0,Beatrix Potter,1986.0,The Complete Tales of Beatrix Potter,The Complete Tales,,4.36,56807,57461,350,496,1339,7819,15363,32444,https://images.gr-assets.com/books/1355114621l/19330.jpg,https://images.gr-assets.com/books/1355114621s/19330.jpg\n2079,11650,11650,598119,100,99771810,9780099771810.0,Philip Roth,1997.0,American Pastoral,\"American Pastoral (The American Trilogy, #1)\",eng,3.91,38017,44766,3224,1278,3118,8920,16458,14992,https://images.gr-assets.com/books/1203002984l/11650.jpg,https://images.gr-assets.com/books/1203002984s/11650.jpg\n2080,24453082,24453082,44044797,65,1594634718,9781594634710.0,Elizabeth Gilbert,2015.0,Big Magic: Creative Living Beyond Fear,Big Magic: Creative Living Beyond Fear,eng,3.9,67046,72361,6219,3003,4868,15539,22251,26700,https://images.gr-assets.com/books/1451446242l/24453082.jpg,https://images.gr-assets.com/books/1451446242s/24453082.jpg\n2081,19486421,19486421,23811929,20,451464397,9780451464390.0,Jim Butcher,2014.0,Skin Game,\"Skin Game (The Dresden Files, #15)\",eng,4.55,41512,52034,3945,91,290,3035,15853,32765,https://images.gr-assets.com/books/1387236318l/19486421.jpg,https://images.gr-assets.com/books/1387236318s/19486421.jpg\n2082,646462,646462,632609,702,,,Anonymous,609.0,القرآن‎‎ [al-Qurʾān],The Qur'an / القرآن الكريم,ara,4.34,31765,43438,2619,2950,2008,3702,3434,31344,https://images.gr-assets.com/books/1275263838l/646462.jpg,https://images.gr-assets.com/books/1275263838s/646462.jpg\n2083,476543,476543,464779,60,373772467,9780373772470.0,Gena Showalter,2008.0,The Darkest Night,The Darkest Night (Lords of the Underworld #1),eng,4.09,63240,65946,2898,1611,3257,11686,20304,29088,https://images.gr-assets.com/books/1322237965l/476543.jpg,https://images.gr-assets.com/books/1322237965s/476543.jpg\n2084,2845024,2845024,6163095,43,61474096,9780061474100.0,Neal Stephenson,2008.0,Anathem,Anathem,eng,4.18,44848,49641,4148,1104,2115,6668,16537,23217,https://images.gr-assets.com/books/1488349209l/2845024.jpg,https://images.gr-assets.com/books/1488349209s/2845024.jpg\n2085,6433752,6433752,6812077,43,60852577,9780060852570.0,Barbara Kingsolver,2009.0,The Lacuna,The Lacuna,eng,3.76,45671,49846,7085,2202,4330,10958,17977,14379,https://images.gr-assets.com/books/1480104396l/6433752.jpg,https://images.gr-assets.com/books/1480104396s/6433752.jpg\n2086,34532,34532,583655,65,552154288,9780552154280.0,Terry Pratchett,1996.0,Hogfather,\"Hogfather (Discworld, #20; Death, #4)\",eng,4.22,50364,58833,1601,195,1348,9753,21841,25696,https://images.gr-assets.com/books/1416342611l/34532.jpg,https://images.gr-assets.com/books/1416342611s/34532.jpg\n2087,5190,5190,1070015,37,345435168,9780345435160.0,Elizabeth Berg,2000.0,Open House,Open House,eng,3.68,48639,49330,1417,714,3699,16410,18155,10352,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206007l/5190.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2088,16130291,16130291,21955595,34,1451661509,9781451661510.0,Jeannette Walls,2013.0,The Silver Star,The Silver Star,eng,3.68,43487,47890,5804,575,3208,15615,20079,8413,https://images.gr-assets.com/books/1379313690l/16130291.jpg,https://images.gr-assets.com/books/1379313690s/16130291.jpg\n2089,11768,11768,1786995,83,552992097,9780552992090.0,John Irving,1981.0,The Hotel New Hampshire,The Hotel New Hampshire,eng,3.89,46220,50470,1393,531,2607,12869,20468,13995,https://images.gr-assets.com/books/1318013543l/11768.jpg,https://images.gr-assets.com/books/1318013543s/11768.jpg\n2090,15309,15309,2428162,52,425204669,9780425204660.0,Laurell K. Hamilton,1994.0,The Laughing Corpse,\"The Laughing Corpse (Anita Blake, Vampire Hunter, #2)\",en-US,4.11,62189,69306,1737,518,2430,13679,24881,27798,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183342l/15309.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2091,762053,762053,1366432,71,051513628X,9780515136290.0,Nora Roberts,2003.0,\"Key of Light (Key Trilogy, #1)\",\"Key of Light (Key Trilogy, #1)\",eng,4.16,48805,50290,847,476,1623,9505,16286,22400,https://images.gr-assets.com/books/1178133365l/762053.jpg,https://images.gr-assets.com/books/1178133365s/762053.jpg\n2092,2241059,2241059,3032810,13,1416950052,9781416950060.0,Ellen Hopkins,2008.0,Identical,Identical,eng,4.34,47804,48870,3085,669,1611,6062,12503,28025,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180728l/2241059.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2094,9583508,11732634,14470450,37,307932230,9780307932240.0,\"Janet Evanovich, Lorelei King\",2011.0,Smokin' Seventeen,\"Smokin' Seventeen (Stephanie Plum, #17)\",eng,3.94,41932,64640,4838,589,3246,16376,23607,20822,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285695l/9583508.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2095,105549,105549,2736871,18,7158505,9780007158510.0,Dr. Seuss,1961.0,The Sneetches and Other Stories,The Sneetches and Other Stories,en-US,4.31,52954,55199,809,634,1516,8024,14925,30100,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389388191l/105549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2096,598160,598160,2921010,30,805053883,9780805053880.0,\"Bill Martin Jr., Eric Carle\",1982.0,\"Polar Bear, Polar Bear, What Do You Hear?\",\"Polar Bear, Polar Bear, What Do You Hear?\",eng,4.16,44414,44972,576,657,2008,8759,11646,21902,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185177l/598160.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2097,24861,24861,5334697,347,3518367064,9783518367060.0,Hermann Hesse,1919.0,Demian: Die Geschichte einer Jugend,Demian. Die Geschichte von Emil Sinclairs Jugend,ger,4.1,37459,49633,2305,580,2061,9154,17689,20149,https://images.gr-assets.com/books/1421510580l/24861.jpg,https://images.gr-assets.com/books/1421510580s/24861.jpg\n2098,9590,33290408,4076,80,385333471,9780385333470.0,Kurt Vonnegut Jr.,1965.0,\"God Bless You, Mr Rosewater or Pearls before Swine\",\"God Bless You, Mr. Rosewater\",eng,3.94,40353,45412,1444,203,1670,11416,19313,12810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200987l/9590.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2099,282282,282282,273828,11,1421505851,9781421505860.0,\"Yoshiki Nakamura, Tomo Kimura\",2002.0,スキップ・ビート! 1 ,\"Skip Beat!, Vol. 01\",eng,4.26,46708,46850,488,1449,2100,6171,10054,27076,https://images.gr-assets.com/books/1173395297l/282282.jpg,https://images.gr-assets.com/books/1173395297s/282282.jpg\n2100,19030845,19030845,27054644,5,,,Frank Miller,1986.0,The Dark Knight Returns,Batman: The Dark Knight Returns #1,eng,4.21,32228,32251,77,1258,1413,4088,8156,17336,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385673312l/19030845.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2101,99298,99298,5994366,17,439249546,9780439249550.0,\"J.K. Rowling, Mary GrandPré\",1999.0,Harry Potter Boxed Set Books 1-4,\"The Harry Potter Collection 1-4 (Harry Potter, #1-4)\",eng,4.66,43929,44842,265,307,424,2346,8186,33579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266471831l/99298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2102,6597651,6597651,6791425,63,1597801577,9781597801580.0,Paolo Bacigalupi,2009.0,The Windup Girl,The Windup Girl,eng,3.74,41728,50059,5473,1859,4274,11680,19411,12835,https://images.gr-assets.com/books/1278940608l/6597651.jpg,https://images.gr-assets.com/books/1278940608s/6597651.jpg\n2104,9627755,9627755,14515040,34,525425632,9780525425630.0,Stephanie Perkins,2014.0,Isla and the Happily Ever After,\"Isla and the Happily Ever After (Anna and the French Kiss, #3)\",eng,4.1,70995,76687,10433,1449,3640,13319,25409,32870,https://images.gr-assets.com/books/1362064564l/9627755.jpg,https://images.gr-assets.com/books/1362064564s/9627755.jpg\n2105,38619,38619,38381,49,441014895,9780441014900.0,Ilona Andrews,2007.0,Magic Bites,\"Magic Bites (Kate Daniels, #1)\",eng,4.07,69410,75243,5139,1699,3319,13687,25942,30596,https://images.gr-assets.com/books/1331612872l/38619.jpg,https://images.gr-assets.com/books/1331612872s/38619.jpg\n2106,17255265,17255265,23847880,34,,,Jodi Ellen Malpas,2013.0,This Man Confessed,\"This Man Confessed (This Man, #3)\",eng,4.43,62297,64568,3750,983,1743,6265,15288,40289,https://images.gr-assets.com/books/1368274129l/17255265.jpg,https://images.gr-assets.com/books/1368274129s/17255265.jpg\n2107,43944,43944,3433584,161,1400096278,9781400096280.0,\"Irène Némirovsky, Sandra Smith\",2004.0,Suite française ,Suite Française,,3.82,40259,49969,5644,1143,3640,12174,19342,13670,https://images.gr-assets.com/books/1320445773l/43944.jpg,https://images.gr-assets.com/books/1320445773s/43944.jpg\n2108,395233,395233,1687522,32,140446745,9780140446750.0,\"Vincent van Gogh, Ronald de Leeuw, Mark Roskill, Arnold J. Pomerans\",1914.0,The Letters of Vincent van Gogh,The Letters of Vincent van Gogh,en-GB,3.99,48040,48368,237,2279,2888,8706,13508,20987,https://images.gr-assets.com/books/1328110665l/395233.jpg,https://images.gr-assets.com/books/1328110665s/395233.jpg\n2109,34499,34499,62360,93,61020672,9780061020670.0,Terry Pratchett,1988.0,Sourcery,\"Sourcery (Discworld, #5; Rincewind #3)\",en-US,3.87,50746,59718,1400,274,2694,17272,23798,15680,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439607843l/34499._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2110,29801,29801,30221,30,1932664122,9781932664130.0,Bryan Lee O'Malley,2005.0,\"Scott Pilgrim, Volume 2: Scott Pilgrim vs. The World\",\"Scott Pilgrim, Volume 2: Scott Pilgrim vs. The World\",,4.24,47154,49642,1262,777,1285,6855,17149,23576,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348115004l/29801.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2111,22374,22374,1807553,53,1401204252,9781401204260.0,\"Grant Morrison, Dave McKean\",1989.0,Batman: Arkham Asylum - A Serious House on Serious Earth,Batman: Arkham Asylum - A Serious House on Serious Earth,eng,4.09,45345,48028,1457,944,2553,8521,15210,20800,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388209338l/22374.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2112,20698530,20698530,40018073,44,144242673X,9781442426730.0,Jenny Han,2015.0,P.S. I Still Love You,\"P.S. I Still Love You (To All the Boys I've Loved Before, #2)\",eng,4.17,62907,67887,10332,616,2227,10879,25670,28495,https://images.gr-assets.com/books/1422881430l/20698530.jpg,https://images.gr-assets.com/books/1422881430s/20698530.jpg\n2113,23153154,23153154,42700811,56,1455559822,9781455559820.0,David Baldacci,2015.0,Memory Man,\"Memory Man (Amos Decker, #1)\",eng,4.05,36871,56432,4151,1182,2109,9551,23346,20244,https://images.gr-assets.com/books/1421788503l/23153154.jpg,https://images.gr-assets.com/books/1421788503s/23153154.jpg\n2114,2138727,2138727,2144215,41,156512569X,9781565125700.0,Hillary Jordan,2008.0,Mudbound,Mudbound,eng,3.99,43455,47971,4921,496,1774,9566,21985,14150,https://images.gr-assets.com/books/1296591096l/2138727.jpg,https://images.gr-assets.com/books/1296591096s/2138727.jpg\n2115,55403,55403,1041952,41,871137380,9780871137390.0,Mark Bowden,1999.0,Black Hawk Down,Black Hawk Down,en-US,4.28,40442,43749,1245,284,796,5828,16496,20345,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553055240l/55403._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2116,22055262,22055262,40098252,36,765376458,9780765376460.0,\"V.E. Schwab, Victoria Schwab\",2015.0,A Darker Shade of Magic,\"A Darker Shade of Magic (Shades of Magic, #1)\",eng,4.07,61419,73529,11789,928,2643,12742,31219,25997,https://images.gr-assets.com/books/1400322851l/22055262.jpg,https://images.gr-assets.com/books/1400322851s/22055262.jpg\n2117,3398625,3398625,3438638,52,385513534,9780385513530.0,David Grann,2009.0,The Lost City of Z: A Tale of Deadly Obsession in the Amazon,The Lost City of Z: A Tale of Deadly Obsession in the Amazon,eng,3.86,45937,50927,4698,807,2719,12589,21288,13524,https://images.gr-assets.com/books/1320487318l/3398625.jpg,https://images.gr-assets.com/books/1320487318s/3398625.jpg\n2118,15704459,15704459,21979689,51,385743580,9780385743590.0,Brandon Sanderson,2015.0,Firefight,\"Firefight (The Reckoners, #2)\",eng,4.29,41924,50765,4426,95,622,6180,21247,22621,https://images.gr-assets.com/books/1413220816l/15704459.jpg,https://images.gr-assets.com/books/1413220816s/15704459.jpg\n2119,28249,28249,2122284,77,1841493139,9781841493140.0,Trudi Canavan,2001.0,The Magicians' Guild,\"The Magicians' Guild (Black Magician Trilogy, #1)\",eng,3.96,48537,56039,2029,971,2975,12241,21113,18739,https://images.gr-assets.com/books/1327356788l/28249.jpg,https://images.gr-assets.com/books/1327356788s/28249.jpg\n2120,6693332,6693332,6888828,61,385905165,9780385905170.0,Michael Scott,2010.0,The Necromancer: The Secrets of The Immortal Nicholas Flamel,\"The Necromancer  (The Secrets of the Immortal Nicholas Flamel, #4)\",eng,4.12,46878,50653,1665,583,1749,9419,17965,20937,https://images.gr-assets.com/books/1320460606l/6693332.jpg,https://images.gr-assets.com/books/1320460606s/6693332.jpg\n2121,6977769,6977769,6932011,72,385340583,9780385340590.0,Lee Child,2010.0,61 Hours,\"61 Hours (Jack Reacher, #14)\",en-US,4.08,43605,51841,3235,325,1459,9797,22380,17880,https://images.gr-assets.com/books/1320512665l/6977769.jpg,https://images.gr-assets.com/books/1320512665s/6977769.jpg\n2122,662597,662597,2051065,22,439324599,9780439324600.0,Patricia McCormick,2000.0,Cut,Cut,en-US,3.76,48239,49106,2498,1493,4679,13443,14140,15351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348218940l/662597.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2123,74532,74532,1784447,140,224064908,9780224064900.0,\"Roald Dahl, Quentin Blake\",1981.0,George's Marvellous Medicine,George's Marvellous Medicine,eng,4.02,49863,57553,1755,603,2483,13339,19706,21422,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348265460l/74532.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2124,41193,41193,2234336,51,1400033837,9781400033840.0,Jane Smiley,1991.0,A Thousand Acres,A Thousand Acres,eng,3.79,47389,49509,2253,1265,3570,12630,18957,13087,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197504l/41193.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2125,24780,24780,1149593,83,805080481,9780805080480.0,Lloyd Alexander,1964.0,The Book of Three,\"The Book of Three (The Chronicles of Prydain, #1)\",en-US,4.0,56593,59286,2416,1074,2364,12851,22277,20720,https://images.gr-assets.com/books/1405184012l/24780.jpg,https://images.gr-assets.com/books/1405184012s/24780.jpg\n2126,2355575,2355575,2362332,26,441016154,9780441016150.0,Patricia Briggs,2008.0,Cry Wolf,\"Cry Wolf (Alpha & Omega, #1)\",en-US,4.11,66901,71087,2947,975,2936,13049,24190,29937,https://images.gr-assets.com/books/1310494063l/2355575.jpg,https://images.gr-assets.com/books/1310494063s/2355575.jpg\n2127,770051,770051,2484218,40,689829531,9780689829540.0,Ian Falconer,2000.0,Olivia,Olivia,en-US,4.13,51185,51695,1306,1301,2405,9226,14141,24622,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349034348l/770051.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2128,77156,77156,1402373,48,375705856,9780375705850.0,Kent Haruf,1999.0,Plainsong,\"Plainsong (Plainsong, #1)\",en-US,4.0,45331,47942,3713,594,2161,10029,19193,15965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200586l/77156.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2129,62953,62953,43003,36,1560974273,9781560974280.0,Daniel Clowes,1998.0,Ghost World,Ghost World,eng,3.87,49105,50916,1776,1586,3545,11336,17888,16561,https://images.gr-assets.com/books/1327894702l/62953.jpg,https://images.gr-assets.com/books/1327894702s/62953.jpg\n2130,11966216,11966216,13476717,59,1250006325,9781250006320.0,Amanda Hocking,2010.0,Torn,\"Torn (Trylle, #2)\",en-US,4.04,29554,59016,2951,713,2811,12195,21018,22279,https://images.gr-assets.com/books/1397954544l/11966216.jpg,https://images.gr-assets.com/books/1397954544s/11966216.jpg\n2131,19117,19117,1294426,493,451529693,9780451529700.0,\"Ivan Turgenev, George Reavy, Jane Costlow\",1862.0,Отцы и дѣти,Fathers and Sons,eng,3.94,41870,49363,1485,543,2559,11599,19225,15437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390793535l/19117.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2132,113934,113934,462428,77,884271781,9780884271790.0,\"Eliyahu M. Goldratt, Jeff Cox\",1984.0,The Goal,The Goal: A Process of Ongoing Improvement,en-US,4.0,34837,38003,1432,970,2063,7257,13249,14464,https://images.gr-assets.com/books/1475538019l/113934.jpg,https://images.gr-assets.com/books/1475538019s/113934.jpg\n2133,9684523,9684523,14572532,42,670021040,9780670021050.0,Geraldine Brooks,2011.0,Caleb's Crossing,Caleb's Crossing,eng,3.81,47525,50909,5670,854,2847,13311,22119,11778,https://images.gr-assets.com/books/1303284000l/9684523.jpg,https://images.gr-assets.com/books/1303284000s/9684523.jpg\n2134,2722413,2722413,2748013,52,61284394,9780061284400.0,Claudia Gray,2008.0,Evernight,\"Evernight (Evernight, #1)\",en-US,3.64,63486,67136,3117,3402,7334,18094,19242,19064,https://images.gr-assets.com/books/1306376600l/2722413.jpg,https://images.gr-assets.com/books/1306376600s/2722413.jpg\n2135,108942,108942,1053240,86,385340559,9780385340560.0,Lee Child,2007.0,Bad Luck and Trouble,\"Bad Luck and Trouble (Jack Reacher, #11)\",en-US,4.17,42539,50323,2114,202,939,8065,21811,19306,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441133915l/108942._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2136,2152,2152,3498000,76,452286530,9780452286540.0,Karen Joy Fowler,2004.0,The Jane Austen Book Club,The Jane Austen Book Club,en-US,3.07,53128,56833,3866,4240,12024,21969,12944,5656,https://images.gr-assets.com/books/1309282966l/2152.jpg,https://images.gr-assets.com/books/1309282966s/2152.jpg\n2137,21965107,21965107,40842571,65,385539703,9780385539710.0,Ian McEwan,2014.0,The Children Act,The Children Act,eng,3.68,33100,43775,5131,952,3361,12715,18533,8214,https://images.gr-assets.com/books/1405290619l/21965107.jpg,https://images.gr-assets.com/books/1405290619s/21965107.jpg\n2138,7023554,7023554,7270473,37,739377728,9780739377730.0,Janet Evanovich,2009.0,Sizzling Sixteen,\"Sizzling Sixteen (Stephanie Plum, #16)\",eng,3.93,55685,63664,3784,585,3334,16294,22899,20552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389583636l/7023554.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2139,22543496,22543496,41987016,93,62301233,,Ashlee Vance,2015.0,\"Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future\",Elon Musk: Inventing the Future,eng,4.25,55606,76605,4163,1940,1882,8573,27233,36977,https://images.gr-assets.com/books/1404411386l/22543496.jpg,https://images.gr-assets.com/books/1404411386s/22543496.jpg\n2140,12591698,12591698,17606541,5,1841499900,9781841499900.0,James S.A. Corey,2012.0,Caliban's War,\"Caliban's War (The Expanse, #2)\",eng,4.28,39138,49441,3148,105,518,5433,22704,20681,https://images.gr-assets.com/books/1407572377l/12591698.jpg,https://images.gr-assets.com/books/1407572377s/12591698.jpg\n2141,13454149,13454149,18981122,30,1452440026,9781452440030.0,Rebecca Donovan,2012.0,Barely Breathing,\"Barely Breathing (Breathing, #2)\",eng,4.33,53483,61085,3380,662,1678,7250,18797,32698,https://images.gr-assets.com/books/1347885288l/13454149.jpg,https://images.gr-assets.com/books/1347885288s/13454149.jpg\n2142,1375,1375,1474309,255,147712556,9780147712550.0,\"Homer, Robert Fagles, Bernard Knox\",-762.0,Ἰλιάς ; Ὀδύσσεια,The Iliad/The Odyssey,eng,4.03,47825,51098,537,916,2608,10439,17404,19731,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181863l/1375.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2143,16992,16992,89985,32,1563893304,9781563893310.0,\"Mark Waid, Alex Ross, Elliot S. Maggin\",1996.0,Kingdom Come,Kingdom Come,eng,4.24,43036,45308,1020,926,1529,6278,13434,23141,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385175050l/16992.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2144,6882,6882,1289201,163,61120669,9780061120660.0,Henri Charrière,1969.0,Papillon ,Papillon,,4.23,39073,43357,1421,349,1145,6297,15869,19697,https://images.gr-assets.com/books/1327865561l/6882.jpg,https://images.gr-assets.com/books/1327865561s/6882.jpg\n2145,56373,25104465,1013794,58,1573227889,9781573227890.0,Sarah Waters,1998.0,Tipping the Velvet,Tipping the Velvet,eng,4.0,36560,45239,2008,1259,2297,8646,15936,17101,https://images.gr-assets.com/books/1388633460l/56373.jpg,https://images.gr-assets.com/books/1388633460s/56373.jpg\n2146,11607446,11607446,16550024,58,031620157X,9780316201580.0,\"Chris Colfer, Brandon Dorman\",2012.0,\"The Wishing Spell (The Land of Stories, #1)\",\"The Wishing Spell (The Land of Stories, #1)\",eng,4.21,51752,55183,4965,1615,2394,7814,14231,29129,https://images.gr-assets.com/books/1326920505l/11607446.jpg,https://images.gr-assets.com/books/1326920505s/11607446.jpg\n2147,2586771,2586771,2604190,39,1400063973,9781400063970.0,David Ebershoff,2008.0,The 19th Wife,The 19th Wife,en-US,3.63,44921,50034,6018,1014,3888,16023,20874,8235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255632165l/2586771.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2148,44184,44184,1386643,39,64407314,9780064407310.0,Walter Dean Myers,1999.0,Monster,Monster,eng,3.7,47533,48399,4394,1485,4418,13848,16267,12381,https://images.gr-assets.com/books/1404962824l/44184.jpg,https://images.gr-assets.com/books/1404962824s/44184.jpg\n2150,132336,132336,2361096,102,743493915,9780743493920.0,Patricia Cornwell,1991.0,Body of Evidence ,\"Body of Evidence (Kay Scarpetta, #2)\",en-US,4.0,50113,53652,927,217,1341,12822,23041,16231,https://images.gr-assets.com/books/1341835877l/132336.jpg,https://images.gr-assets.com/books/1341835877s/132336.jpg\n2151,16148398,16148398,25390766,4,,,\"Brian K. Vaughan, Fiona Staples\",2012.0,Saga #1,Saga #1,eng,4.15,38729,39001,980,2085,1897,4707,9555,20757,https://images.gr-assets.com/books/1358637990l/16148398.jpg,https://images.gr-assets.com/books/1358637990s/16148398.jpg\n2152,1651302,1651302,2191060,53,60887370,9780060887380.0,Sara Shepard,2007.0,Perfect,\"Perfect (Pretty Little Liars, #3)\",eng,4.02,50922,55030,2204,638,2800,12529,18078,20985,https://images.gr-assets.com/books/1363681820l/1651302.jpg,https://images.gr-assets.com/books/1363681820s/1651302.jpg\n2153,15717876,15717876,21388954,41,1939045010,9781939045010.0,Jessica Sorensen,2012.0,The Secret of Ella and Micha,\"The Secret of Ella and Micha (The Secret, #1)\",eng,4.01,59890,65527,3269,1248,3360,12841,23872,24206,https://images.gr-assets.com/books/1365638597l/15717876.jpg,https://images.gr-assets.com/books/1365638597s/15717876.jpg\n2154,9533378,9533378,14419515,37,345522478,9780345522470.0,Kevin Hearne,2011.0,Hounded,\"Hounded (The Iron Druid Chronicles, #1)\",eng,4.12,51086,57275,5410,850,2097,9272,22127,22929,https://images.gr-assets.com/books/1327883998l/9533378.jpg,https://images.gr-assets.com/books/1327883998s/9533378.jpg\n2155,22076,22076,2818729,105,743211375,9780743211380.0,Stephen King,2002.0,From a Buick 8,From a Buick 8,en-US,3.42,47320,50079,1279,2180,6822,17825,14139,9113,https://images.gr-assets.com/books/1304686732l/22076.jpg,https://images.gr-assets.com/books/1304686732s/22076.jpg\n2156,77507,77507,40712,55,553560735,9780553560730.0,Kim Stanley Robinson,1993.0,Red Mars,\"Red Mars (Mars Trilogy, #1)\",en-US,3.84,46121,49784,2212,1447,3878,11453,17472,15534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440699787l/77507._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2157,286957,286957,17352354,336,1558611584,9781558611580.0,\"Charlotte Perkins Gilman, Elaine Hedges\",1892.0,The Yellow Wall-paper. A story,The Yellow Wall-Paper,eng,4.11,44677,55593,2482,753,2266,9783,20098,22693,https://images.gr-assets.com/books/1351778524l/286957.jpg,https://images.gr-assets.com/books/1351778524s/286957.jpg\n2158,17136,17136,17410699,31,1593083254,9781593083250.0,\"H.G. Wells, Alfred MacAdam\",1968.0,The Time Machine and The Invisible Man,The Time Machine/The Invisible Man,,4.08,47600,48403,217,386,1677,9917,18120,18303,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347929785l/17136.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2159,628139,628139,3241491,71,515121843,9780515121840.0,Nora Roberts,1998.0,Sea Swept,\"Sea Swept (Chesapeake Bay Saga, #1)\",en-US,4.24,48078,50100,962,379,1135,8313,16669,23604,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423013952l/628139.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2160,12499290,12499290,17484647,35,031607991X,9780316079910.0,Brent Weeks,2012.0,The Blinding Knife,\"The Blinding Knife (Lightbringer, #2)\",eng,4.45,42445,47269,1581,135,514,3637,16495,26488,https://images.gr-assets.com/books/1338432693l/12499290.jpg,https://images.gr-assets.com/books/1338432693s/12499290.jpg\n2161,18189606,18189606,25591533,23,1442435003,9781442435000.0,Morgan Matson,2014.0,Since You've Been Gone,Since You've Been Gone,eng,4.19,59705,64449,8622,888,2083,9489,23131,28858,https://images.gr-assets.com/books/1377702326l/18189606.jpg,https://images.gr-assets.com/books/1377702326s/18189606.jpg\n2163,174703,174703,257399,79,761121323,9780761121330.0,\"Heidi Murkoff, Arlene Eisenberg, Sandee Hathaway\",1969.0,What to Expect When You're Expecting,What to Expect When You're Expecting,,3.75,34120,40091,2441,2049,3488,9575,12437,12542,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298458822l/174703.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2164,127823,127823,6627894,69,399244565,9780399244570.0,John Flanagan,2005.0,The Icebound Land,\"The Icebound Land (Ranger's Apprentice, #3)\",eng,4.22,48446,52595,1804,462,1389,8564,18008,24172,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441400105l/127823._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2165,165030,165030,1568693,68,61240850,9780061240850.0,Marian Keyes,2006.0,Anybody Out There?,\"Anybody Out There? (Walsh Family, #4)\",,3.91,45243,47676,1444,1024,2565,11533,17196,15358,https://images.gr-assets.com/books/1358594290l/165030.jpg,https://images.gr-assets.com/books/1358594290s/165030.jpg\n2166,18050143,18050143,25332940,50,804139296,9780804139300.0,\"Peter Thiel, Blake  Masters\",2014.0,\"Zero to One: Notes on Start Ups, or How to Build the Future\",\"Zero to One: Notes on Startups, or How to Build the Future\",eng,4.17,47807,54697,2872,1018,1786,8004,19845,24044,https://images.gr-assets.com/books/1414347376l/18050143.jpg,https://images.gr-assets.com/books/1414347376s/18050143.jpg\n2167,28260587,28260587,25272004,26,1619636077,9781619636070.0,Sarah J. Maas,2016.0,Empire of Storms,\"Empire of Storms (Throne of Glass, #5)\",eng,4.58,63322,74241,11495,717,1192,4416,15635,52281,https://images.gr-assets.com/books/1463107108l/28260587.jpg,https://images.gr-assets.com/books/1463107108s/28260587.jpg\n2169,26025580,26025580,45948939,35,804188971,9780804188980.0,Gillian Flynn,2014.0,What Do You Do?,The Grownup,eng,3.54,42536,54592,7275,1609,5423,18717,19533,9310,https://images.gr-assets.com/books/1441679582l/26025580.jpg,https://images.gr-assets.com/books/1441679582s/26025580.jpg\n2170,16790,16790,6277491,59,380789027,9780380789020.0,Neil Gaiman,1998.0,Smoke and Mirrors: Short Fiction and Illusions,Smoke and Mirrors: Short Fiction and Illusions,eng,4.05,46486,52735,2160,246,1631,10927,22352,17579,https://images.gr-assets.com/books/1409595076l/16790.jpg,https://images.gr-assets.com/books/1409595076s/16790.jpg\n2171,12820793,12820793,17970410,31,9382618341,9789382618350.0,Amish Tripathi,2013.0,The Oath of the Vayuputras,\"The Oath of the Vayuputras (Shiva Trilogy, #3)\",eng,3.66,35936,39627,2388,1056,4142,11627,13143,9659,https://images.gr-assets.com/books/1357242702l/12820793.jpg,https://images.gr-assets.com/books/1357242702s/12820793.jpg\n2172,4985,4985,438581,67,385333501,9780385333500.0,Kurt Vonnegut Jr.,1968.0,Welcome to the Monkey House,Welcome to the Monkey House,eng,4.13,40071,42825,1489,153,970,7970,17613,16119,https://images.gr-assets.com/books/1381107552l/4985.jpg,https://images.gr-assets.com/books/1381107552s/4985.jpg\n2173,16141924,16141924,21973739,16,385349068,9780385349060.0,Jim Gaffigan,2013.0,Dad Is Fat,Dad Is Fat,,3.76,40489,46767,6014,827,3199,13535,17973,11233,https://images.gr-assets.com/books/1354052742l/16141924.jpg,https://images.gr-assets.com/books/1354052742s/16141924.jpg\n2174,2279,2279,1732395,23,671869205,9780671869200.0,David McCullough,1992.0,Truman,Truman,en-US,4.15,53088,54704,1767,1869,2168,7817,17033,25817,https://images.gr-assets.com/books/1364681969l/2279.jpg,https://images.gr-assets.com/books/1364681969s/2279.jpg\n2175,16130,16130,1205304,6,143034758,9780143034760.0,Ron Chernow,2004.0,Alexander Hamilton,Alexander Hamilton,eng,4.26,46198,51554,4162,1034,1503,6338,17059,25620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436131915l/16130._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2176,7788,7788,635362,4,807218731,9780807218730.0,\"Dr. Seuss, Various\",2003.0,The Cat in the Hat and Other Dr. Seuss Favorites,The Cat in the Hat and Other Dr. Seuss Favorites,,4.41,46279,46312,140,345,1074,6208,10530,28155,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924269l/7788.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2177,28381,28381,1001298,632,140448071,9780140448080.0,\"Nikolai Gogol, Robert A. Maguire\",1842.0,Мёртвые ду́ши,Dead Souls,eng,3.98,40699,47662,1613,800,2681,10126,17055,17000,https://images.gr-assets.com/books/1387201057l/28381.jpg,https://images.gr-assets.com/books/1387201057s/28381.jpg\n2178,24920901,24920901,44100599,37,,,Elle Kennedy,2015.0,The Deal,\"The Deal (Off-Campus, #1)\",eng,4.3,75699,79406,7464,1149,1849,9049,27132,40227,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431282052l/24920901.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2179,26074181,26074181,42492659,20,62392174,9780062392180.0,Kiera Cass,2016.0,The Crown,\"The Crown (The Selection, #5)\",eng,3.8,64158,72531,9632,1953,6304,18648,22933,22693,https://images.gr-assets.com/books/1446759650l/26074181.jpg,https://images.gr-assets.com/books/1446759650s/26074181.jpg\n2180,11007587,11007587,15926531,57,446573019,9780446573020.0,David Baldacci,2011.0,Zero Day,\"Zero Day (John Puller, #1)\",en-US,3.99,38649,48922,2868,715,1862,10198,20747,15400,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546100181l/11007587.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2181,551876,551876,539116,40,312367481,9780312367480.0,\"Arlene Mosel, Blair Lent\",1968.0,Tikki Tikki Tembo,Tikki Tikki Tembo,en-CA,4.21,52536,53161,761,856,1890,9126,14715,26574,https://images.gr-assets.com/books/1317064300l/551876.jpg,https://images.gr-assets.com/books/1317064300s/551876.jpg\n2182,3099787,3099787,3130946,18,1416974504,9781416974500.0,L.J. Smith,2008.0,\"Night World, No. 1\",\"Night World, No. 1 (Night World, #1-3)\",en-US,4.04,54940,56461,2065,1380,3544,11281,15453,24803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434962482l/3099787._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2183,8204005,8204005,13051038,16,1451533969,9781451533960.0,Tina Reber,2010.0,\"Love Unscripted (Love, #1)\",\"Love Unscripted (Love, #1)\",en-US,4.04,59261,62368,3383,2247,3641,10316,19456,26708,https://images.gr-assets.com/books/1327889844l/8204005.jpg,https://images.gr-assets.com/books/1327889844s/8204005.jpg\n2184,13143,13143,2471943,82,446608815,9780446608820.0,James Patterson,1999.0,Pop Goes the Weasel,\"Pop Goes the Weasel (Alex Cross, #5)\",eng,3.98,46820,49447,927,270,1642,12009,20463,15063,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409590172l/13143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2185,20803953,20803953,25420107,33,,,Penelope Douglas,2013.0,Bully,\"Bully (Fall Away, #1)\",,4.15,34789,72517,5435,1570,3165,10980,24110,32692,https://images.gr-assets.com/books/1392309572l/20803953.jpg,https://images.gr-assets.com/books/1392309572s/20803953.jpg\n2186,10104,10104,430173,22,802136834,9780802136830.0,Alison Weir,1980.0,The Six Wives of Henry VIII,The Six Wives of Henry VIII,en-US,4.1,47913,49615,1282,858,1471,8871,19013,19402,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438820765l/10104.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2187,76171,76171,2144026,245,140185852,9780140185850.0,\"Yevgeny Zamyatin, Clarence Brown\",1924.0,Мы,We,eng,3.95,40020,47979,2878,732,2786,10532,17972,15957,https://images.gr-assets.com/books/1421883730l/76171.jpg,https://images.gr-assets.com/books/1421883730s/76171.jpg\n2188,14250,14250,161123,47,571171788,9780571171780.0,Barbara Kingsolver,1993.0,Pigs in Heaven,Pigs in Heaven,eng,3.97,43374,47478,1776,298,1587,10962,21098,13533,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347616121l/14250.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2189,239399,239399,18279845,45,765354063,9780765354070.0,John Scalzi,2006.0,The Ghost Brigades,\"The Ghost Brigades (Old Man's War, #2)\",en-GB,4.09,40107,47619,2378,141,812,8443,23499,14724,https://images.gr-assets.com/books/1403295928l/239399.jpg,https://images.gr-assets.com/books/1403295928s/239399.jpg\n2190,6150,6150,59082,123,074326195X,9780743261950.0,Alan Paton,1948.0,\"Cry, The Beloved Country\",\"Cry, the Beloved Country\",eng,3.87,47389,53681,3213,1524,3969,11995,18837,17356,https://images.gr-assets.com/books/1344182368l/6150.jpg,https://images.gr-assets.com/books/1344182368s/6150.jpg\n2191,887201,887201,872459,29,,,\"Brian Froud, Alan Lee\",1978.0,Faeries,Faeries,,3.89,38050,38793,214,2564,2665,7444,9995,16125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223151700l/887201.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2192,18943,18943,1758112,27,60987529,9780060987530.0,Gregory Maguire,1999.0,Confessions of an Ugly Stepsister,Confessions of an Ugly Stepsister,en-US,3.51,50526,52251,3334,1560,5746,18019,18101,8825,https://images.gr-assets.com/books/1338457460l/18943.jpg,https://images.gr-assets.com/books/1338457460s/18943.jpg\n2193,4268,4268,2961919,81,3426615355,9783426615360.0,Nick Hornby,2001.0,How to Be Good,How to Be Good,,3.18,37497,44660,2616,2082,8007,18544,11883,4144,https://images.gr-assets.com/books/1327935893l/4268.jpg,https://images.gr-assets.com/books/1327935893s/4268.jpg\n2194,25494343,25494343,19104294,64,1442468351,9781442468350.0,Cassandra Clare,2016.0,Lady Midnight,\"Lady Midnight (The Dark Artifices, #1)\",eng,4.47,84711,93259,12298,1511,1870,7629,22675,59574,https://images.gr-assets.com/books/1460477682l/25494343.jpg,https://images.gr-assets.com/books/1460477682s/25494343.jpg\n2195,2325825,2325825,3897683,81,1905294719,9781905294720.0,Cornelia Funke,2007.0,Tintentod,\"Inkdeath (Inkworld, #3)\",eng,3.93,53591,59638,2729,1518,4052,13029,19302,21737,https://images.gr-assets.com/books/1327341991l/2325825.jpg,https://images.gr-assets.com/books/1327341991s/2325825.jpg\n2196,76683,76683,1725527,102,553293389,9780553293390.0,Isaac Asimov,1982.0,Foundation's Edge,Foundation's Edge (Foundation #4),eng,4.08,47641,51866,862,244,1590,10484,21051,18497,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442311409l/76683._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2197,50798,50798,41342119,202,486452433,9780486452430.0,Thomas Hardy,1895.0,Jude the Obscure,Jude the Obscure,en-US,3.8,44873,50290,2304,2197,4053,11124,17004,15912,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389403264l/50798.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2198,587582,587582,44016,58,345335651,9780345335650.0,David Eddings,1982.0,Queen of Sorcery,\"Queen of Sorcery (The Belgariad, #2)\",en-US,4.13,49355,52912,793,337,1605,9875,19868,21227,https://images.gr-assets.com/books/1428943169l/587582.jpg,https://images.gr-assets.com/books/1428943169s/587582.jpg\n2199,89723,89723,212602,58,374529531,9780374529540.0,Shirley Jackson,1949.0,The Lottery: Adventures of the Demon Lover,The Lottery and Other Stories,en-US,4.06,48608,51501,1357,666,2115,10022,19192,19506,https://images.gr-assets.com/books/1416448200l/89723.jpg,https://images.gr-assets.com/books/1416448200s/89723.jpg\n2201,5056084,5056084,5122699,58,61668036,9780061668040.0,Aprilynne Pike,2009.0,Wings ,\"Wings (Wings, #1)\",en-US,3.75,62566,66249,4840,2881,6122,16543,19767,20936,https://images.gr-assets.com/books/1327983077l/5056084.jpg,https://images.gr-assets.com/books/1327983077s/5056084.jpg\n2202,22188,22188,3061184,86,316910333,9780316910330.0,Cecily von Ziegesar,2002.0,Gossip Girl,\"Gossip Girl (Gossip Girl, #1)\",eng,3.51,49670,51967,2345,3166,6824,15756,12851,13370,https://images.gr-assets.com/books/1398814332l/22188.jpg,https://images.gr-assets.com/books/1398814332s/22188.jpg\n2203,149572,149572,1274575,103,553271989,9780553271980.0,Frederick Forsyth,1972.0,The Odessa File,The Odessa File,en-US,4.1,42529,44032,512,167,941,8734,18634,15556,https://images.gr-assets.com/books/1348786945l/149572.jpg,https://images.gr-assets.com/books/1348786945s/149572.jpg\n2204,15823461,15823461,21553934,37,1400067685,9781400067690.0,Elizabeth Strout,2013.0,The Burgess Boys,The Burgess Boys,eng,3.54,39445,45050,5320,1323,4552,14797,17197,7181,https://images.gr-assets.com/books/1351213545l/15823461.jpg,https://images.gr-assets.com/books/1351213545s/15823461.jpg\n2205,23692271,23692271,18962767,109,,,Yuval Noah Harari,2011.0,קיצור תולדות האנושות‎‎,Sapiens: A Brief History of Humankind,eng,4.41,52846,71074,6685,996,1627,6468,19971,42012,https://images.gr-assets.com/books/1420585954l/23692271.jpg,https://images.gr-assets.com/books/1420585954s/23692271.jpg\n2207,10805160,10805160,15718578,2,1444705105,9781444705100.0,Tana French,2012.0,Broken Harbor,\"Broken Harbour (Dublin Murder Squad, #4)\",eng,3.92,36704,50491,5418,573,2100,11404,22954,13460,https://images.gr-assets.com/books/1336120776l/10805160.jpg,https://images.gr-assets.com/books/1336120776s/10805160.jpg\n2208,16001893,16001893,21763760,39,,9781301716720.0,M. Leighton,2013.0,Down to You,\"Down to You (The Bad Boys, #1)\",eng,4.05,59221,62467,3286,1078,2904,11881,22630,23974,https://images.gr-assets.com/books/1347544660l/16001893.jpg,https://images.gr-assets.com/books/1347544660s/16001893.jpg\n2209,569564,569564,3000541,828,517053616,9780517053610.0,William Shakespeare,1623.0,The Complete Works,The Complete Works,eng,4.49,39503,46010,726,448,695,4279,10908,29680,https://images.gr-assets.com/books/1327884293l/569564.jpg,https://images.gr-assets.com/books/1327884293s/569564.jpg\n2210,13651,13651,2684122,96,61054887,9780061054880.0,Ursula K. Le Guin,1974.0,The Dispossessed,The Dispossessed,eng,4.18,46660,53246,2959,720,2058,8107,18305,24056,https://images.gr-assets.com/books/1353467455l/13651.jpg,https://images.gr-assets.com/books/1353467455s/13651.jpg\n2211,935308,935308,2885250,142,1400031575,9781400031570.0,\"Henning Mankell, Steven T. Murray\",1991.0,Mördare utan ansikte,\"Faceless Killers (Kurt Wallander, #1)\",eng,3.78,43861,49558,2598,1030,3054,13488,20301,11685,https://images.gr-assets.com/books/1487941867l/935308.jpg,https://images.gr-assets.com/books/1487941867s/935308.jpg\n2212,7933437,7933437,11286470,80,385528043,9780385528050.0,John Grisham,2010.0,The Confession,The Confession,eng,3.81,41389,49934,5332,676,2946,13641,20684,11987,https://images.gr-assets.com/books/1320541779l/7933437.jpg,https://images.gr-assets.com/books/1320541779s/7933437.jpg\n2213,32424,32424,1396631,81,425192032,9780425192030.0,Dean Koontz,1988.0,Lightning,Lightning,eng,4.06,44424,47213,1631,421,1718,10272,17042,17760,https://images.gr-assets.com/books/1410030512l/32424.jpg,https://images.gr-assets.com/books/1410030512s/32424.jpg\n2214,21436,21436,2983256,99,1570425779,9781570425780.0,\"James Patterson, Keith David, Anthony Heald\",1997.0,Cat & Mouse,\"Cat and Mouse (Alex Cross, #4)\",en-GB,3.96,45217,50283,1059,309,1696,12523,20795,14960,https://images.gr-assets.com/books/1375828879l/21436.jpg,https://images.gr-assets.com/books/1375828879s/21436.jpg\n2215,80674,80674,160962,71,142408808,9780142408800.0,Judy Blume,1980.0,Superfudge,\"Superfudge (Fudge, #3)\",eng,3.98,50917,53118,1195,645,2297,13304,18252,18620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925060l/80674.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2216,28815474,28815474,48284103,59,735221081,9780735221090.0,Shari Lapena,2016.0,The Couple Next Door,The Couple Next Door,eng,3.74,63237,81542,8555,1833,6160,23022,30820,19707,https://images.gr-assets.com/books/1471502242l/28815474.jpg,https://images.gr-assets.com/books/1471502242s/28815474.jpg\n2217,11563110,11563110,14532305,33,61996181,9780061996180.0,Cynthia Hand,2012.0,Hallowed,\"Hallowed (Unearthly, #2)\",eng,4.15,58860,61307,4085,1021,2388,10205,20685,27008,https://images.gr-assets.com/books/1332883896l/11563110.jpg,https://images.gr-assets.com/books/1332883896s/11563110.jpg\n2218,17333324,17333324,24064628,43,031624662X,9780316246620.0,Ann Leckie,2013.0,Ancillary Justice,Ancillary Justice (Imperial Radch #1),eng,3.97,38747,47806,5950,1165,2589,8761,19345,15946,https://images.gr-assets.com/books/1397215917l/17333324.jpg,https://images.gr-assets.com/books/1397215917s/17333324.jpg\n2219,5038,5038,2583229,48,765340747,9780765340740.0,Terry Goodkind,2001.0,The Pillars of Creation,\"The Pillars of Creation (Sword of Truth, #7)\",en-GB,3.67,43424,45832,751,2183,5064,11996,12852,13737,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516742944l/5038.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2220,4122,4122,147916,40,60566108,9780060566100.0,\"James C. Collins, Jerry I. Porras\",1994.0,Built to Last: Successful Habits of Visionary Companies,Built to Last: Successful Habits of Visionary Companies,eng,3.98,39618,40804,433,1104,1906,8092,15414,14288,https://images.gr-assets.com/books/1412047084l/4122.jpg,https://images.gr-assets.com/books/1412047084s/4122.jpg\n2221,20758175,20758175,40090621,20,1616149981,9781616149990.0,Allen Eskens,2014.0,The Life We Bury,The Life We Bury,,3.93,35689,47968,5564,503,1971,10660,21902,12932,https://images.gr-assets.com/books/1437077793l/20758175.jpg,https://images.gr-assets.com/books/1437077793s/20758175.jpg\n2222,3412815,3412815,3453075,13,1595547169,9781595547160.0,Eric Wilson,2008.0,Fireproof,Fireproof,en-US,4.47,37258,37588,466,339,692,3702,9222,23633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777516l/3412815._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2223,295961,295961,2593744,81,140273344,9780140273340.0,Jack Higgins,1975.0,The Eagle Has Landed,\"The Eagle Has Landed (Liam Devlin, #1)\",,4.15,41677,43019,433,205,903,7953,17250,16708,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347958282l/295961.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2224,30273,30273,1183561,42,425201376,9780425201370.0,Laurell K. Hamilton,1996.0,The Lunatic Cafe,\"The Lunatic Cafe (Anita Blake, Vampire Hunter #4)\",eng,4.12,58023,63568,1144,433,2082,12571,22754,25728,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388609298l/30273.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2225,1857440,1857440,1858059,39,978970764,9780978970760.0,David Wong,2007.0,John Dies at the End,\"John Dies at the End (John Dies at the End, #1)\",eng,3.92,35387,45084,4728,1532,3228,8812,15451,16061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189289716l/1857440._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2226,17349,17349,252618,74,345409469,9780345409460.0,\"Carl Sagan, Ann Druyan\",1995.0,The Demon-Haunted World: Science as a Candle in the Dark,The Demon-Haunted World: Science as a Candle in the Dark,eng,4.27,40583,43024,1839,886,1432,5319,12986,22401,https://images.gr-assets.com/books/1405201597l/17349.jpg,https://images.gr-assets.com/books/1405201597s/17349.jpg\n2227,6408862,6408862,6597789,37,1906427135,9781906427140.0,Lucy Christopher,2009.0,Stolen: A Letter to My Captor,Stolen: A Letter to My Captor,eng,3.93,52435,57261,7331,1626,4221,11752,18533,21129,https://images.gr-assets.com/books/1311064295l/6408862.jpg,https://images.gr-assets.com/books/1311064295s/6408862.jpg\n2228,95558,95558,3333881,7,,,Stanisław Lem,1961.0,Solaris,Solaris,eng,3.97,41249,49241,2268,953,2939,10149,17610,17590,https://images.gr-assets.com/books/1498631519l/95558.jpg,https://images.gr-assets.com/books/1498631519s/95558.jpg\n2229,227603,227603,892616,30,1573225126,9781573225120.0,Elizabeth Wurtzel,1994.0,Prozac Nation,Prozac Nation,en-US,3.57,44408,46771,1526,1978,5481,14145,14063,11104,https://images.gr-assets.com/books/1282607176l/227603.jpg,https://images.gr-assets.com/books/1282607176s/227603.jpg\n2230,24784,24784,1122077,74,080508049X,9780805080490.0,Lloyd Alexander,1965.0,The Black Cauldron,The Black Cauldron (The Chronicles of Prydain #2),eng,4.13,49138,51195,1167,538,1298,9501,19253,20605,https://images.gr-assets.com/books/1405377996l/24784.jpg,https://images.gr-assets.com/books/1405377996s/24784.jpg\n2231,141565,141565,878268,34,525949690,9780525949700.0,Daniel J. Levitin,2006.0,This Is Your Brain on Music: The Science of a Human Obsession,This Is Your Brain on Music: The Science of a Human Obsession,,3.86,37465,39436,1266,1771,2677,8997,11758,14233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922939l/141565.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2232,17888952,17888952,25035204,51,62294377,9780062294370.0,Mitch Albom,2013.0,The First Phone Call from Heaven,The First Phone Call from Heaven,eng,3.73,38957,43318,4466,1318,3523,12207,14618,11652,https://images.gr-assets.com/books/1380034020l/17888952.jpg,https://images.gr-assets.com/books/1380034020s/17888952.jpg\n2233,61115,61115,904703,30,031242681X,9780312426810.0,Augusten Burroughs,2006.0,Possible Side Effects,Possible Side Effects,en-US,3.97,38243,39653,1351,411,1619,9269,15626,12728,https://images.gr-assets.com/books/1412064839l/61115.jpg,https://images.gr-assets.com/books/1412064839s/61115.jpg\n2234,17884042,17884042,25047176,30,1400065755,9781400065750.0,Anna Quindlen,2014.0,Still Life with Bread Crumbs,Still Life with Bread Crumbs,eng,3.63,35682,41321,4309,1778,3116,12154,16017,8256,https://images.gr-assets.com/books/1403168088l/17884042.jpg,https://images.gr-assets.com/books/1403168088s/17884042.jpg\n2235,16322,16322,626006,240,1579126243,9781579126250.0,Agatha Christie,1936.0,The ABC Murders,\"The A.B.C. Murders (Hercule Poirot, #13)\",eng,3.97,49513,57370,2159,250,1906,14323,23443,17448,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733983l/16322.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2236,280111,280111,19119100,1101,310902711,9780310902710.0,Anonymous,1909.0,Holy Bible: New International Version,Holy Bible: New International Version,eng,4.61,40430,45994,1804,1637,1131,2091,3664,37471,https://images.gr-assets.com/books/1382581321l/280111.jpg,https://images.gr-assets.com/books/1382581321s/280111.jpg\n2237,10993282,10993282,15911884,39,451235843,9780451235850.0,J.R. Ward,2012.0,Lover Reborn,\"Lover Reborn (Black Dagger Brotherhood, #10)\",eng,4.35,57866,64189,4414,457,1589,7834,19247,35062,https://images.gr-assets.com/books/1319144072l/10993282.jpg,https://images.gr-assets.com/books/1319144072s/10993282.jpg\n2238,110391,110391,846763,57,380800829,9780380800830.0,Julia Quinn,2000.0,The Duke and I,\"The Duke and I (Bridgertons, #1)\",en-US,4.11,57839,61923,2634,985,2190,10984,22723,25041,https://images.gr-assets.com/books/1379594717l/110391.jpg,https://images.gr-assets.com/books/1379594717s/110391.jpg\n2239,68378,68378,879061,60,786930705,9780786930710.0,\"Margaret Weis, Tracy Hickman\",1985.0,Dragons of Spring Dawning,\"Dragons of Spring Dawning (Dragonlance: Chronicles, #3)\",eng,4.12,39928,44116,450,412,1621,8275,15702,18106,https://images.gr-assets.com/books/1312062224l/68378.jpg,https://images.gr-assets.com/books/1312062224s/68378.jpg\n2240,5517,5517,3154525,56,375508333,9780375508330.0,Lorraine Hansberry,1959.0,A Raisin in the Sun,A Raisin in the Sun,,3.72,44237,50909,2052,1278,4480,14213,18335,12603,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165522672l/5517.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2241,40445,40445,2095852,60,345457692,9780345457690.0,Richard K. Morgan,2002.0,Altered Carbon,\"Altered Carbon (Takeshi Kovacs, #1)\",eng,4.1,41505,46772,2685,563,2007,7929,17793,18480,https://images.gr-assets.com/books/1387128955l/40445.jpg,https://images.gr-assets.com/books/1387128955s/40445.jpg\n2242,34993,34993,5054706,71,425184226,9780425184230.0,Tom Clancy,1991.0,The Sum of All Fears,\"The Sum of All Fears (Jack Ryan Universe, #7)\",,3.99,43888,46810,544,301,1643,10970,19113,14783,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388250477l/34993.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2244,17131869,17131869,23857485,24,1607066920,9781607066930.0,\"Brian K. Vaughan, Fiona Staples\",2013.0,\"Saga, Volume Two\",\"Saga, Vol. 2 (Saga, #2)\",eng,4.57,56122,58127,4594,142,374,3059,17397,37155,https://images.gr-assets.com/books/1486028954l/17131869.jpg,https://images.gr-assets.com/books/1486028954s/17131869.jpg\n2245,231562,231562,224289,79,440241014,9780440241010.0,Lee Child,2004.0,The Enemy,\"The Enemy (Jack Reacher, #8)\",en-US,4.15,42205,51036,1986,258,1041,8563,22069,19105,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210939l/231562.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2246,20604826,24724602,38053447,38,393244660,9780393244660.0,Michael   Lewis,2014.0,Flash Boys: A Wall Street Revolt,Flash Boys: A Wall Street Revolt,eng,4.12,18379,43613,3223,509,1293,7088,18473,16250,https://images.gr-assets.com/books/1404963230l/20604826.jpg,https://images.gr-assets.com/books/1404963230s/20604826.jpg\n2247,193755,193755,565494,87,375701214,9780375701210.0,\"Jean-Dominique Bauby, Jeremy Leggatt\",1997.0,Le Scaphandre et le Papillon,The Diving Bell and the Butterfly,en-US,4.01,41037,45508,3657,572,2098,9483,17444,15911,https://images.gr-assets.com/books/1336930564l/193755.jpg,https://images.gr-assets.com/books/1336930564s/193755.jpg\n2248,13538641,13538641,19100984,23,805096663,9780805096670.0,\"Bill O'Reilly, Martin Dugard\",2012.0,Killing Kennedy: The End of Camelot,Killing Kennedy: The End of Camelot,eng,4.05,35799,40216,3844,888,1435,7031,16420,14442,https://images.gr-assets.com/books/1337689366l/13538641.jpg,https://images.gr-assets.com/books/1337689366s/13538641.jpg\n2250,10538,10538,2252299,63,076791936X,9780767919360.0,Bill Bryson,2006.0,The Life and Times of The Thunderbolt Kid: A Memoir,The Life and Times of the Thunderbolt Kid,,3.93,42680,46658,4015,709,2386,10824,18212,14527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389761724l/10538.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2251,7159515,7159515,7383770,71,312595670,9780312595680.0,Chevy Stevens,2010.0,Still Missing,Still Missing,en-US,3.96,44223,50637,6113,912,2478,10467,20403,16377,https://images.gr-assets.com/books/1260468195l/7159515.jpg,https://images.gr-assets.com/books/1260468195s/7159515.jpg\n2252,4912,4912,1779262,85,6551815,9780006551810.0,Frank McCourt,1999.0,'Tis: A Memoir,\"'Tis (Frank McCourt, #2)\",eng,3.66,40726,46748,1919,652,3689,15825,17256,9326,https://images.gr-assets.com/books/1375947803l/4912.jpg,https://images.gr-assets.com/books/1375947803s/4912.jpg\n2253,39020,39020,38742,37,1400032059,9781400032050.0,Charles C. Mann,2005.0,1491: New Revelations of the Americas Before Columbus,1491: New Revelations of the Americas Before Columbus,eng,4.01,41815,43649,2811,1186,2008,8065,16264,16126,https://images.gr-assets.com/books/1327865228l/39020.jpg,https://images.gr-assets.com/books/1327865228s/39020.jpg\n2254,22489107,22489107,41928590,27,1250060559,9781250060560.0,Marissa Meyer,2015.0,Fairest,\"Fairest (The Lunar Chronicles, #3.5)\",eng,4.02,59545,65495,10066,502,2399,13714,27395,21485,https://images.gr-assets.com/books/1460846345l/22489107.jpg,https://images.gr-assets.com/books/1460846345s/22489107.jpg\n2255,361459,361459,1805379,50,679763309,9780679763310.0,Kay Redfield Jamison,1995.0,An Unquiet Mind: A Memoir of Moods and Madness,An Unquiet Mind: A Memoir of Moods and Madness,eng,4.03,41102,44200,2513,716,1971,8800,16428,16285,https://images.gr-assets.com/books/1350028748l/361459.jpg,https://images.gr-assets.com/books/1350028748s/361459.jpg\n2257,14940,14940,461400,70,451218590,9780451218600.0,Edward Albee,1962.0,Who's Afraid of Virginia Woolf?,Who's Afraid of Virginia Woolf?,eng,4.09,45045,48063,1096,761,2266,8889,16237,19910,https://images.gr-assets.com/books/1327962277l/14940.jpg,https://images.gr-assets.com/books/1327962277s/14940.jpg\n2258,1128434,1128434,2293675,123,575077832,9780575077840.0,Andrzej Sapkowski,1993.0,Ostatnie życzenie,\"The Last Wish (The Witcher, #1)\",eng,4.2,36262,54045,3124,449,1530,8014,20729,23323,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1181224890l/1128434._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2259,17841,17841,11221066,201,015603297X,9780156032970.0,\"Umberto Eco, William Weaver\",1988.0,Il pendolo di Foucault,Foucault's Pendulum,en-US,3.89,40829,48898,2649,1633,3603,10343,16318,17001,https://images.gr-assets.com/books/1396645125l/17841.jpg,https://images.gr-assets.com/books/1396645125s/17841.jpg\n2260,270067,270067,261916,35,067056172X,9780670561730.0,Don Freeman,1978.0,A Pocket for Corduroy,A Pocket for Corduroy,en-US,4.29,47277,47522,232,394,1357,7830,12355,25586,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921247l/270067.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2261,21445,21445,3132603,70,1594831114,9781594831120.0,\"James Patterson, Maxine Paetro\",2006.0,The 5th Horseman,\"The 5th Horseman (Women's Murder Club, #5)\",,4.03,45097,50553,1525,264,1519,11287,20628,16855,https://images.gr-assets.com/books/1396631487l/21445.jpg,https://images.gr-assets.com/books/1396631487s/21445.jpg\n2262,153008,153008,2990010,45,330493744,9780330493740.0,Jacqueline Carey,2001.0,Kushiel's Dart,\"Kushiel's Dart (Phèdre's Trilogy, #1)\",eng,4.04,52071,57278,3369,2434,3584,8925,16441,25894,https://images.gr-assets.com/books/1328168291l/153008.jpg,https://images.gr-assets.com/books/1328168291s/153008.jpg\n2263,7501962,7501962,6801520,37,1595551387,9781595551380.0,Eric Metaxas,2009.0,\"Bonhoeffer: Pastor, Martyr, Prophet, Spy\",\"Bonhoeffer: Pastor, Martyr, Prophet, Spy\",eng,4.23,35611,38613,2924,1234,1342,4577,11574,19886,https://images.gr-assets.com/books/1298218180l/7501962.jpg,https://images.gr-assets.com/books/1298218180s/7501962.jpg\n2264,11746513,11746513,16696160,33,345527712,9780345527710.0,Janet Evanovich,2011.0,Explosive Eighteen,\"Explosive Eighteen (Stephanie Plum, #18)\",eng,3.92,52993,59894,4637,503,3147,15891,21582,18771,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407001977l/11746513.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2265,6686092,6686092,6881422,38,61449091,9780061449090.0,Michael  Grant,2010.0,Lies,\"Lies (Gone, #3)\",en-US,4.09,48506,51981,2084,825,2264,9924,17479,21489,https://images.gr-assets.com/books/1257814886l/6686092.jpg,https://images.gr-assets.com/books/1257814886s/6686092.jpg\n2266,672493,672493,203894,314,875093663,9780875093670.0,A.W. Tozer,1948.0,Pursuit of God,The Pursuit of God,,4.38,35078,40548,1172,680,939,4417,10773,23739,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387714034l/672493.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2267,9659607,9659607,14547221,34,373210361,9780373210370.0,Julie Kagawa,2011.0,The Iron Knight,\"The Iron Knight (The Iron Fey, #4)\",eng,4.23,64066,66309,4391,857,2489,10177,19543,33243,https://images.gr-assets.com/books/1375920888l/9659607.jpg,https://images.gr-assets.com/books/1375920888s/9659607.jpg\n2268,462033,462033,976403,40,142004332,9780142004330.0,Jacqueline Winspear,2003.0,Maisie Dobbs,\"Maisie Dobbs (Maisie Dobbs, #1)\",en-US,3.91,49820,54118,5293,1040,2705,12324,21811,16238,https://images.gr-assets.com/books/1312066155l/462033.jpg,https://images.gr-assets.com/books/1312066155s/462033.jpg\n2270,5453,5453,838640,52,385729367,9780385729370.0,Ann Brashares,2007.0,Forever in Blue: The Fourth Summer of the Sisterhood,\"Forever in Blue: The Fourth Summer of the Sisterhood (Sisterhood, #4)\",eng,3.8,56113,60415,1702,937,4036,17477,21599,16366,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389829324l/5453.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2271,34527,34527,3312754,73,552153257,9780552153260.0,Terry Pratchett,1996.0,Feet of Clay,\"Feet of Clay (Discworld, #19; City Watch, #3)\",,4.26,46370,53657,1047,59,644,7988,21680,23286,https://images.gr-assets.com/books/1320490628l/34527.jpg,https://images.gr-assets.com/books/1320490628s/34527.jpg\n2272,7822895,7822895,6814263,41,307594777,9780307594780.0,\"Stieg Larsson, Reg Keeland\",2005.0,\"Män som hatar kvinnor, Flickan som lekte med elden, Luftslottet som sprängdes\",\"The Millennium Trilogy (Millennium Trilogy, #1-3)\",eng,4.46,29944,38916,1702,293,546,2971,12123,22983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1275608877l/7822895.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2273,29981261,29981261,47426931,21,,,Dot Hutchison,2016.0,The Butterfly Garden,The Butterfly Garden (The Collector #1),eng,4.07,53568,56042,5415,1260,2670,9453,20290,22369,https://images.gr-assets.com/books/1461392121l/29981261.jpg,https://images.gr-assets.com/books/1461392121s/29981261.jpg\n2274,9370,9370,1231351,29,1842430343,9781842430350.0,Tom Robbins,1990.0,Skinny Legs and All,Skinny Legs and All,,4.03,32991,36509,1288,490,1508,7482,13828,13201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554143869l/9370.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2275,5604848,5604848,5776219,31,61583219,9780061583220.0,Jeaniene Frost,2009.0,Destined for an Early Grave,\"Destined for an Early Grave (Night Huntress, #4)\",en-US,4.34,63734,67682,2406,568,1415,8251,21669,35779,https://images.gr-assets.com/books/1315175949l/5604848.jpg,https://images.gr-assets.com/books/1315175949s/5604848.jpg\n2276,16134782,16134782,21962320,25,,,R.K. Lilley,2012.0,In Flight,\"In Flight (Up in the Air, #1)\",eng,4.1,64984,65654,3181,1655,3308,10492,21693,28506,https://images.gr-assets.com/books/1397321579l/16134782.jpg,https://images.gr-assets.com/books/1397321579s/16134782.jpg\n2277,13128,13128,3295810,99,316159794,9780316159790.0,James Patterson,2006.0,Cross,\"Cross (Alex Cross, #12)\",eng,3.99,42476,46069,1680,423,1812,10713,18062,15059,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194831l/13128.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2278,19448,19448,2610030,58,64472779,9780064472780.0,Meg Cabot,2002.0,All-American Girl,\"All-American Girl (All-American Girl, #1)\",eng,3.73,55938,58653,1821,1010,4854,17921,19909,14959,https://images.gr-assets.com/books/1291882422l/19448.jpg,https://images.gr-assets.com/books/1291882422s/19448.jpg\n2279,27,27,3164459,57,380713802,9780380713810.0,Bill Bryson,1991.0,Neither Here Nor There: Travels in Europe,Neither Here nor There: Travels in Europe,en-US,3.88,42170,45390,2168,874,2545,11191,17477,13303,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187396l/27.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2280,23228,23228,1118789,39,375832998,9780375832990.0,David Levithan,2003.0,Boy Meets Boy,Boy Meets Boy,eng,3.85,48960,50739,3159,1916,3569,12041,15760,17453,https://images.gr-assets.com/books/1356335082l/23228.jpg,https://images.gr-assets.com/books/1356335082s/23228.jpg\n2281,17349023,17349023,24034597,27,61941026,9780061941020.0,Wally Lamb,2013.0,We Are Water,We Are Water,eng,3.79,35457,42626,5238,1057,2917,10538,17625,10489,https://images.gr-assets.com/books/1361329815l/17349023.jpg,https://images.gr-assets.com/books/1361329815s/17349023.jpg\n2282,3393124,3393124,3787812,38,316002895,9780316002900.0,James Patterson,2009.0,Max ,\"Max (Maximum Ride, #5)\",en-US,4.07,57039,60734,2139,1222,3669,11482,17874,26487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441219978l/3393124._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2283,7778981,7778981,10695325,54,312656262,9780312656260.0,Alexandra Adornetto,2010.0,Halo,\"Halo (Halo, #1)\",en-US,3.67,56216,58840,4209,4554,6224,13124,15096,19842,https://images.gr-assets.com/books/1278885735l/7778981.jpg,https://images.gr-assets.com/books/1278885735s/7778981.jpg\n2284,95186,95186,563837,79,802142818,9780802142820.0,Kiran Desai,2006.0,The Inheritance of Loss,The Inheritance of Loss,eng,3.41,37967,40545,3409,1784,5351,13957,13427,6026,https://images.gr-assets.com/books/1327909065l/95186.jpg,https://images.gr-assets.com/books/1327909065s/95186.jpg\n2285,13813,13813,15940,57,586066888,9780586066880.0,Raymond E. Feist,1986.0,A Darkness at Sethanon ,\"A Darkness At Sethanon (The Riftwar Saga, #4)\",en-GB,4.17,45104,48282,494,241,1114,8352,18881,19694,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429041258l/13813.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2286,16640,16640,746264,429,812969901,9780812969900.0,\"Johann Wolfgang von Goethe, Burton Pike\",1774.0,Die Leiden des jungen Werthers,The Sorrows of Young Werther,eng,3.63,37293,53664,2541,2485,5787,14517,17330,13545,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920896l/16640.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2287,3570231,3570231,3612435,37,61583073,9780061583070.0,Jeaniene Frost,2008.0,At Grave's End,\"At Grave's End (Night Huntress, #3)\",en-US,4.31,65397,69822,2429,548,1575,9148,22859,35692,https://images.gr-assets.com/books/1448167943l/3570231.jpg,https://images.gr-assets.com/books/1448167943s/3570231.jpg\n2288,24687,24687,2434074,41,375758992,9780375759000.0,Alexandra Fuller,2001.0,Don't Let's Go to the Dogs Tonight: An African Childhood,Don't Let's Go to the Dogs Tonight,eng,3.96,39298,41866,2942,636,2054,9046,16862,13268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194903l/24687.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2289,41424,41424,2321285,39,64404773,9780064404780.0,Robin McKinley,1978.0,Beauty: A Retelling of the Story of Beauty and the Beast,Beauty: A Retelling of the Story of Beauty and the Beast,eng,4.05,54512,61236,4417,790,2684,12956,21024,23782,https://images.gr-assets.com/books/1294192311l/41424.jpg,https://images.gr-assets.com/books/1294192311s/41424.jpg\n2290,6604712,6604712,3149322,7,316069906,9780316069910.0,Jonathan Safran Foer,2009.0,Eating Animals,Eating Animals,eng,4.18,43238,47980,5125,481,1554,7200,18429,20316,https://images.gr-assets.com/books/1327877480l/6604712.jpg,https://images.gr-assets.com/books/1327877480s/6604712.jpg\n2291,355917,355917,3245408,71,60577363,9780060577360.0,\"Angie Sage, Mark Zug\",2006.0,Flyte,\"Flyte (Septimus Heap, #2)\",en-US,3.99,54400,56604,1472,751,2754,13034,19940,20125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442694368l/355917._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2292,13637412,13637412,19249727,14,6140105234,9786140105230.0,\"سعود السنعوسي, Saud Alsanousi\",2012.0,ساق البامبو [Saq al-Bambu],ساق البامبو,ara,4.25,38969,39776,7069,551,1210,5222,13626,19167,https://images.gr-assets.com/books/1336743682l/13637412.jpg,https://images.gr-assets.com/books/1336743682s/13637412.jpg\n2293,10429092,10429092,13282366,34,62026488,9780062026480.0,Rae Carson,2011.0,The Girl of Fire and Thorns,\"The Girl of Fire and Thorns (Fire and Thorns, #1)\",en-US,3.81,57551,61934,6054,2367,4601,14195,22269,18502,https://images.gr-assets.com/books/1323448113l/10429092.jpg,https://images.gr-assets.com/books/1323448113s/10429092.jpg\n2294,7137327,7137327,7400809,32,312650086,9780312650090.0,Ann Aguirre,2011.0,Enclave,\"Enclave (Razorland, #1)\",eng,3.92,55155,58102,4692,1642,3379,12548,20995,19538,https://images.gr-assets.com/books/1327877657l/7137327.jpg,https://images.gr-assets.com/books/1327877657s/7137327.jpg\n2295,4806,4806,1755348,79,802714625,9780802714630.0,\"Dava Sobel, Neil Armstrong\",1995.0,Longitude,Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time,eng,3.95,38151,42215,1892,770,1872,9381,16959,13233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462711l/4806.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2296,232145,232145,2589885,96,751530492,9780751530490.0,Patricia Cornwell,1997.0,Unnatural Exposure,\"Unnatural Exposure (Kay Scarpetta, #8)\",en-GB,4.05,43531,46232,512,263,1343,10370,17973,16283,https://images.gr-assets.com/books/1383293921l/232145.jpg,https://images.gr-assets.com/books/1383293921s/232145.jpg\n2297,14706,14706,16721,260,553213482,9780553213480.0,\"Johann Wolfgang von Goethe, Peter Salm\",1808.0,Faust. Eine Tragödie,Faust: First Part,eng,3.93,43276,48935,815,881,3226,11099,16802,16927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435405022l/14706._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2298,296662,296662,15653,22,684818868,9780684818860.0,James W. Loewen,1995.0,Lies My Teacher Told Me : Everything Your American History Textbook Got Wrong,Lies My Teacher Told Me,eng,3.96,37903,41542,2240,835,2139,8915,15812,13841,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255592395l/296662.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2299,45108,45108,2960725,45,553582461,9780553582470.0,Robin Hobb,2003.0,Fool's Fate,\"Fool's Fate (Tawny Man, #3)\",,4.38,43985,48391,1174,229,760,5239,16366,25797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181998l/45108.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2300,3217221,3217221,3251160,33,1600102379,9781600102370.0,\"Joe Hill, Gabriel Rodríguez\",2008.0,Welcome to Lovecraft,\"Locke & Key, Vol. 1: Welcome to Lovecraft\",en-US,4.18,46590,50048,3216,1524,1762,6528,16384,23850,https://images.gr-assets.com/books/1377304780l/3217221.jpg,https://images.gr-assets.com/books/1377304780s/3217221.jpg\n2301,6043849,6043849,6219422,63,1406310263,9781406310270.0,Patrick Ness,2009.0,The Ask and the Answer,\"The Ask and the Answer (Chaos Walking, #2)\",eng,4.2,45578,53229,5069,707,1733,7884,18639,24266,https://images.gr-assets.com/books/1408312960l/6043849.jpg,https://images.gr-assets.com/books/1408312960s/6043849.jpg\n2302,73062,73062,2103634,101,446363251,9780446363260.0,Alexandra Ripley,1991.0,Scarlett: The Sequel to Margaret Mitchell's Gone With the Wind,Scarlett,eng,3.44,38992,47722,2290,3596,7106,13480,11819,11721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438534619l/73062._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2303,30241,30241,1098613,44,425205673,9780425205680.0,Laurell K. Hamilton,1996.0,Bloody Bones,\"Bloody Bones (Anita Blake, Vampire Hunter #5)\",eng,4.1,56782,61727,1073,467,2244,12656,21538,24822,https://images.gr-assets.com/books/1304126691l/30241.jpg,https://images.gr-assets.com/books/1304126691s/30241.jpg\n2304,46165,46165,2520849,607,684843781,9780684843780.0,F. Scott Fitzgerald,1920.0,This Side of Paradise,This Side of Paradise,eng,3.68,40074,47633,2777,1137,4298,14047,17247,10904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574566410l/46165.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2305,11797365,11797365,16750147,71,670023329,9780670023320.0,Blaine Harden,2012.0,Escape from Camp 14: One Man's Remarkable Odyssey from North Korea to Freedom in the West ,Escape from Camp 14: One Man's Remarkable Odyssey from North Korea to Freedom in the West,eng,3.99,37392,42712,4268,582,1468,9050,18139,13473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954566l/11797365.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2306,30263,30263,1341883,42,006057299X,9780060572990.0,Kim Harrison,2005.0,Every Which Way But Dead,\"Every Which Way But Dead (The Hollows, #3)\",en-US,4.29,56023,59163,1240,350,1124,8181,20850,28658,https://images.gr-assets.com/books/1347819379l/30263.jpg,https://images.gr-assets.com/books/1347819379s/30263.jpg\n2307,25852870,25852870,26428236,32,1400068320,9781400068330.0,Curtis Sittenfeld,2016.0,Eligible,\"Eligible: A Modern Retelling of Pride and Prejudice (The Austen Project, #4)\",eng,3.63,37189,48112,7714,1687,4181,13563,19683,8998,https://images.gr-assets.com/books/1460477855l/25852870.jpg,https://images.gr-assets.com/books/1460477855s/25852870.jpg\n2308,6988014,6988014,3502133,30,039333712X,9780393337130.0,Sarah Thornton,2008.0,Seven Days in the Art World,Seven Days in the Art World,,3.54,26047,38298,564,4113,3823,8953,9901,11508,https://images.gr-assets.com/books/1358748500l/6988014.jpg,https://images.gr-assets.com/books/1358748500s/6988014.jpg\n2309,597790,597790,5725966,126,7246226,9780007246230.0,\"J.R.R. Tolkien, Christopher Tolkien, Alan Lee\",2007.0,The Children of Húrin,The Children of Húrin,eng,3.94,39551,47873,2413,653,2726,11037,17884,15573,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390692771l/597790.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2310,78427,78427,2393600,32,785289089,9780785289080.0,Dave Ramsey,2003.0,The Total Money Makeover: A Proven Plan for Financial Fitness,The Total Money Makeover: A Proven Plan for Financial Fitness,,4.29,37689,43267,3614,484,1197,5755,13875,21956,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441590984l/78427._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2311,61549,61549,1872003,63,316058432,9780316058440.0,\"Richard Atwater, Florence Atwater, Robert Lawson\",1938.0,Mr. Popper's Penguins,Mr. Popper's Penguins,eng,3.95,48964,51787,2031,807,2750,12745,17157,18328,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185174l/61549._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2312,234724,234724,2393951,41,765340054,9780765340050.0,Orson Scott Card,2002.0,Shadow Puppets,\"Shadow Puppets (Ender's Shadow, #3)\",,3.88,43517,46456,930,503,2455,12056,18521,12921,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405003131l/234724.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2313,19103097,19103097,24330801,29,,,Lev Grossman,2014.0,The Magician's Land,\"The Magician's Land (The Magicians, #3)\",eng,4.16,40799,44257,4039,257,1082,6785,19244,16889,https://images.gr-assets.com/books/1455089828l/19103097.jpg,https://images.gr-assets.com/books/1455089828s/19103097.jpg\n2314,10979,10979,1595500,136,679732268,9780679732270.0,William Faulkner,1932.0,Light in August,Light in August,en-US,3.93,42101,44421,1948,1258,2863,9000,15803,15497,https://images.gr-assets.com/books/1355360091l/10979.jpg,https://images.gr-assets.com/books/1355360091s/10979.jpg\n2315,24335,24335,1835542,60,64408671,9780064408680.0,\"E.B. White, Fred Marcellino\",1970.0,The Trumpet of the Swan,The Trumpet of the Swan,eng,4.06,53191,55219,1651,862,2468,11566,18121,22202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348904255l/24335.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2316,13641208,13641208,19256026,45,812993802,9780812993810.0,George Saunders,2013.0,Tenth of December,Tenth of December,eng,3.96,39183,43549,5730,1307,2928,7848,15773,15693,https://images.gr-assets.com/books/1349967540l/13641208.jpg,https://images.gr-assets.com/books/1349967540s/13641208.jpg\n2317,6944032,6944032,4112814,61,312593554,9780312593550.0,Sherrilyn Kenyon,2002.0,Night Pleasures,\"Night Pleasures (Dark-Hunter, #1)\",en-US,4.23,25985,61939,2339,756,2013,9319,20275,29576,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441663482l/6944032._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2318,998,998,5210,43,671015206,9780671015210.0,\"Thomas J. Stanley, William D. Danko\",1995.0,The Millionaire Next Door: The Surprising Secrets of America's Wealthy,The Millionaire Next Door: The Surprising Secrets of Americas Wealthy,eng,4.0,43937,46748,2049,645,2318,10382,16665,16738,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348313018l/998.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2319,5267365,5267365,5334682,49,1423116380,9781423116390.0,Ally Carter,2009.0,Don't Judge a Girl by Her Cover,\"Don't Judge a Girl by Her Cover (Gallagher Girls, #3)\",en-US,4.2,55517,58508,2389,618,1784,9930,19190,26986,https://images.gr-assets.com/books/1359827132l/5267365.jpg,https://images.gr-assets.com/books/1359827132s/5267365.jpg\n2320,14318,14318,20014,79,743244583,9780743244590.0,Bob Dylan,2004.0,Chronicles: Volume One,\"Chronicles, Vol. 1\",eng,3.98,35468,38117,1350,1010,2024,7643,13330,14110,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348218030l/14318.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2321,26,26,1888943,47,60920084,9780060920080.0,Bill Bryson,1989.0,The Lost Continent: Travels in Small-Town America,The Lost Continent: Travels in Small Town America,en-US,3.83,40254,42202,2119,1100,2653,10395,16124,11930,https://images.gr-assets.com/books/1404042682l/26.jpg,https://images.gr-assets.com/books/1404042682s/26.jpg\n2322,9500416,9500416,14385974,40,140006712X,9781400067120.0,Lisa See,2011.0,Dreams of Joy (Shanghai Girls #2),Dreams of Joy (Shanghai Girls #2),en-CA,4.06,43863,47087,4272,328,1478,8818,20993,15470,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934242l/9500416._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2323,43326,43326,1298936,74,446607207,9780446607210.0,Sidney Sheldon,1998.0,Tell Me Your Dreams,Tell Me Your Dreams,eng,3.93,34445,36904,1312,466,2032,9076,13508,11822,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390331844l/43326.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2324,8248,8248,2933942,68,60885416,9780060885410.0,\"Laura Ingalls Wilder, Garth Williams\",1939.0,By the Shores of Silver Lake,\"By the Shores of Silver Lake  (Little House, #5)\",,4.16,51640,56585,866,500,1384,10796,19795,24110,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449666l/8248.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2325,18630,18630,1494157,49,61053562,9780061053570.0,Iain M. Banks,1988.0,The Player of Games,\"The Player of Games (Culture, #2)\",eng,4.26,36505,42993,1790,237,916,5528,17064,19248,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922873l/18630.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2327,21343,21343,22516,67,787960756,9780787960760.0,Patrick Lencioni,2002.0,The Five Dysfunctions of a Team,The Five Dysfunctions of a Team: A Leadership Fable,eng,4.01,40239,43176,2106,835,1908,8766,16139,15528,https://images.gr-assets.com/books/1400841022l/21343.jpg,https://images.gr-assets.com/books/1400841022s/21343.jpg\n2328,23940,23940,24861,73,142003166,9780142003170.0,\"William S. Burroughs, Oliver  Harris, Allen Ginsberg\",1953.0,Junky,Junky,eng,3.85,39031,43506,1201,663,2595,11285,17095,11868,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920565l/23940.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2329,313605,313605,1394134,83,140157352,9780140157350.0,\"Roger Fisher, William Ury, Bruce Patton\",1981.0,Getting to Yes: Negotiating agreement without giving in,Getting to Yes: Negotiating an Agreement Without Giving In,en-US,3.88,37205,40026,1113,772,2219,10217,14455,12363,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442289862l/313605._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2330,16136959,16136959,21965727,13,,,R.K. Lilley,2012.0,Mile high (Up In The Air #2),\"Mile High (Up in the Air, #2)\",en-GB,4.21,60279,60600,1869,884,2374,8952,19554,28836,https://images.gr-assets.com/books/1352489991l/16136959.jpg,https://images.gr-assets.com/books/1352489991s/16136959.jpg\n2331,25111004,25111004,40214925,25,1501110349,9781501110340.0,Colleen Hoover,2015.0,November 9,November 9,en-US,4.41,53321,59828,10670,853,1617,5629,15492,36237,https://images.gr-assets.com/books/1447138036l/25111004.jpg,https://images.gr-assets.com/books/1447138036s/25111004.jpg\n2332,29639736,29639736,46247179,15,,,Kerry Lonsdale,2016.0,Everything We Keep,\"Everything We Keep (Everything We Keep, #1)\",eng,3.84,69018,69567,3734,2693,5079,15682,23180,22933,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1459205790l/29639736._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2333,15724654,15724654,21400430,17,,,Samantha Towle,2012.0,The Mighty Storm,\"The Mighty Storm (The Storm, #1)\",eng,4.19,61203,63706,3469,1312,2558,9189,20475,30172,https://images.gr-assets.com/books/1345793260l/15724654.jpg,https://images.gr-assets.com/books/1345793260s/15724654.jpg\n2334,11250317,11250317,16176791,64,1408816032,9781408816040.0,Madeline Miller,2011.0,The Song of Achilles,The Song of Achilles,eng,4.27,45373,58401,8419,921,2043,7529,17577,30331,https://images.gr-assets.com/books/1331154660l/11250317.jpg,https://images.gr-assets.com/books/1331154660s/11250317.jpg\n2335,29405093,29405093,48759154,30,1501139886,9781501139890.0,Amy Schumer,2016.0,The Girl with the Lower Back Tattoo,The Girl with the Lower Back Tattoo,eng,3.76,47809,54101,5840,1288,3467,14704,21986,12656,https://images.gr-assets.com/books/1462657819l/29405093.jpg,https://images.gr-assets.com/books/1462657819s/29405093.jpg\n2336,99944,99944,1492580,596,140449183,9780140449180.0,\"Krishna-Dwaipayana Vyasa, Simon Brodbeck, Juan Mascaró\",-400.0,भगवद्गीता [Bhagavadgītā],The Bhagavad Gita,eng,4.1,33225,42094,1316,1009,2097,7686,12170,19132,https://images.gr-assets.com/books/1383059639l/99944.jpg,https://images.gr-assets.com/books/1383059639s/99944.jpg\n2337,431,431,2343071,102,143039830,9780143039840.0,\"Paul Auster, Art Spiegelman\",1987.0,The New York Trilogy,The New York Trilogy,eng,3.92,34730,42965,2418,807,2663,9082,17098,13315,https://images.gr-assets.com/books/1386924429l/431.jpg,https://images.gr-assets.com/books/1386924429s/431.jpg\n2338,89763,89763,1510338,34,043912042X,9780439120420.0,Pam Muñoz Ryan,2000.0,Esperanza Rising,Esperanza Rising,eng,3.91,49106,50698,4620,1135,3130,11642,17972,16819,https://images.gr-assets.com/books/1328869043l/89763.jpg,https://images.gr-assets.com/books/1328869043s/89763.jpg\n2339,5114,5114,1839410,89,316766941,9780316766940.0,J.D. Salinger,1955.0,\"Raise High the Roof Beam, Carpenters / Seymour: An Introduction\",\"Raise High the Roof Beam, Carpenters & Seymour: An Introduction\",eng,4.11,36751,40410,1373,360,1483,7692,14592,16283,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390770647l/5114.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2340,7455,7455,3297002,91,446617687,9780446617680.0,Candace Bushnell,1996.0,Sex and the City,Sex and the City,,3.37,39710,42366,1590,4183,6983,11189,8999,11012,https://images.gr-assets.com/books/1344270731l/7455.jpg,https://images.gr-assets.com/books/1344270731s/7455.jpg\n2341,30244,30244,4197,34,425209067,9780425209070.0,Laurell K. Hamilton,1997.0,\"The Killing Dance (Anita Blake, Vampire Hunter, #6)\",\"The Killing Dance (Anita Blake, Vampire Hunter, #6)\",en-US,4.12,54997,60019,1104,576,2303,11614,20375,25151,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388609299l/30244.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2342,12321,12321,338580,658,014044923X,9780140449240.0,\"Friedrich Nietzsche, R.J. Hollingdale, Michael Tanner\",1886.0,Jenseits von Gut und Böse: Vorspiel einer Philosophie der Zukunft,Beyond Good and Evil,eng,4.01,37181,43322,1080,841,2112,8750,15897,15722,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607391l/12321.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2343,108077,108077,4593761,52,044022800X,9780440228000.0,Christopher Paul Curtis,1995.0,The Watsons Go to Birmingham - 1963,The Watsons Go to Birmingham - 1963,eng,3.95,44830,46431,3568,1023,2962,10043,15859,16544,https://images.gr-assets.com/books/1320496341l/108077.jpg,https://images.gr-assets.com/books/1320496341s/108077.jpg\n2344,497199,497199,1132770,80,876852630,9780876852640.0,Charles Bukowski,1975.0,Factotum,Factotum,,3.96,37376,40444,1213,457,1875,8979,16585,12548,https://images.gr-assets.com/books/1407706616l/497199.jpg,https://images.gr-assets.com/books/1407706616s/497199.jpg\n2345,10215349,10215349,15114912,40,373210515,9780373210510.0,Julie Kagawa,2012.0,The Immortal Rules,\"The Immortal Rules (Blood of Eden, #1)\",eng,4.1,52376,56265,5673,1495,2534,9215,18420,24601,https://images.gr-assets.com/books/1323357921l/10215349.jpg,https://images.gr-assets.com/books/1323357921s/10215349.jpg\n2346,5632446,5632446,5803859,3,446546933,9780446546940.0,Dave Cullen,2009.0,Columbine,Columbine,eng,4.26,45029,48941,6131,547,1084,5926,18857,22527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442939134l/5632446._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2347,31340,31340,2926033,54,99471434,9780099471430.0,Anne Rice,1993.0,Lasher,\"Lasher (Lives of the Mayfair Witches, #2)\",eng,3.84,45760,49919,786,995,3683,13087,16887,15267,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924775l/31340.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2349,15814872,15814872,21585027,50,525953728,9780525953720.0,\"Mark Owen, Kevin Maurer\",2012.0,No Easy Day: The Firsthand Account of the Mission That Killed Osama Bin Laden,No Easy Day: The Firsthand Account of the Mission That Killed Osama Bin Laden,en-US,3.95,32267,37842,3561,424,1854,8781,14847,11936,https://images.gr-assets.com/books/1345815909l/15814872.jpg,https://images.gr-assets.com/books/1345815909s/15814872.jpg\n2350,13056159,13056159,18221250,40,1594487014,9781594487020.0,Laura Moriarty,2012.0,The Chaperone,The Chaperone,en-US,3.84,42112,45889,5063,484,2044,11777,21463,10121,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442892878l/13056159._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2351,232123,232123,1427152,108,684193957,9780684193950.0,Patricia Cornwell,1992.0,All That Remains,\"All That Remains (Kay Scarpetta, #3)\",en-US,4.05,46604,50110,788,167,1101,11394,20921,16527,https://images.gr-assets.com/books/1341835948l/232123.jpg,https://images.gr-assets.com/books/1341835948s/232123.jpg\n2352,10596,10596,955346,110,451191013,9780451191010.0,\"Richard Bachman, Stephen King\",1996.0,The Regulators,The Regulators,eng,3.63,49405,53263,903,1642,5634,16854,15840,13293,https://images.gr-assets.com/books/1364033309l/10596.jpg,https://images.gr-assets.com/books/1364033309s/10596.jpg\n2353,25101,25101,25854,35,1563890356,9781563890350.0,\"Neil Gaiman, Matt Wagner, George Pratt, Dick Giordano, Kelley Jones, P. Craig Russell, Mike Dringenberg, Malcolm Jones III, Todd Klein, Harlan Ellison\",1990.0,The Sandman: Season of Mists,Season of Mists (The Sandman #4),eng,4.54,44811,50459,1261,132,367,3403,14685,31872,https://images.gr-assets.com/books/1327937313l/25101.jpg,https://images.gr-assets.com/books/1327937313s/25101.jpg\n2354,13130,13130,2513160,53,316013935,9780316013930.0,\"James Patterson, Andrew Gross\",2006.0,Judge & Jury,Judge & Jury,eng,3.98,38516,40618,890,413,1663,9837,15021,13684,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440619495l/13130._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2355,54539,54539,3049535,762,1416500340,9781416500350.0,George Eliot,1861.0,Silas Marner: The Weaver of Raveloe,Silas Marner,,3.6,48196,55276,2616,2514,5601,16073,18493,12595,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347323528l/54539.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2356,13644052,13644052,19259997,32,1622660757,9781622660760.0,Jennifer L. Armentrout,2013.0,Origin,\"Origin (Lux, #4)\",eng,4.44,63533,68716,6750,504,1349,6750,19216,40897,https://images.gr-assets.com/books/1398100888l/13644052.jpg,https://images.gr-assets.com/books/1398100888s/13644052.jpg\n2357,13839,13839,908398,32,375760393,9780375760400.0,Michael Pollan,2001.0,The Botany of Desire: A Plant's-Eye View of the World,The Botany of Desire: A Plant's-Eye View of the World,en-CA,4.05,37200,38145,2753,445,1529,7265,15258,13648,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403642467l/13839.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2358,7930335,7930335,11254781,50,316123536,9780316123530.0,\"Kami Garcia, Margaret Stohl\",2012.0,Beautiful Redemption,\"Beautiful Redemption (Caster Chronicles, #4)\",eng,3.94,48268,56107,3949,1008,3513,12988,19082,19516,https://images.gr-assets.com/books/1331049809l/7930335.jpg,https://images.gr-assets.com/books/1331049809s/7930335.jpg\n2359,6746018,6746018,41374289,103,1439152780,9781439152780.0,Kate Morton,2010.0,The Distant Hours,The Distant Hours,eng,3.87,46498,52817,6263,958,3221,12672,21056,14910,https://images.gr-assets.com/books/1358273860l/6746018.jpg,https://images.gr-assets.com/books/1358273860s/6746018.jpg\n2360,23125266,23125266,42673812,64,751554154,9780751554150.0,Clare Mackintosh,2016.0,I Let You Go,I Let You Go,en-GB,4.09,39990,53710,7154,587,1796,8957,23119,19251,https://images.gr-assets.com/books/1429875945l/23125266.jpg,https://images.gr-assets.com/books/1429875945s/23125266.jpg\n2361,325128,325128,963266,849,439295785,9780439295790.0,Robert Louis Stevenson,1886.0,Kidnapped,\"Kidnapped (David Balfour, #1)\",,3.78,44150,48520,1319,906,3358,14044,17370,12842,https://images.gr-assets.com/books/1328869457l/325128.jpg,https://images.gr-assets.com/books/1328869457s/325128.jpg\n2362,85431,85431,857093,34,306814250,9780306814260.0,H.G. Bissinger,1988.0,\"Friday Night Lights: A Town, a Team, and a Dream\",\"Friday Night Lights: A Town, a Team, and a Dream\",,4.11,35799,39185,1835,808,1603,6623,13558,16593,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266468877l/85431.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2363,180066,180066,3099735,33,618683356,9780618683350.0,David Sheff,2007.0,Beautiful Boy: A Father's Journey Through His Son's Meth Addiction,Beautiful Boy: A Father's Journey Through His Son's Addiction,en-US,4.03,36682,38205,3325,356,1491,7850,15553,12955,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438824993l/180066._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2364,12900174,12900174,17572318,42,,,Abbi Glines,2011.0,\"The Vincent Brothers (The Vincent Boys, #1)\",\"The Vincent Boys (The Vincent Boys, #1)\",eng,3.98,62029,66263,3653,1720,3787,13230,22607,24919,https://images.gr-assets.com/books/1327184585l/12900174.jpg,https://images.gr-assets.com/books/1327184585s/12900174.jpg\n2365,261240,261240,1405544,98,1594561869,9781594561860.0,Edgar Allan Poe,1846.0,The Cask of Amontillado,The Cask of Amontillado,eng,4.09,48364,50207,924,413,1928,9964,18501,19401,https://images.gr-assets.com/books/1327936575l/261240.jpg,https://images.gr-assets.com/books/1327936575s/261240.jpg\n2366,1715,1715,2870411,437,014044789X,9780140447900.0,\"Ovid, David Raeburn, Denis Feeney\",8.0,Metamorphoses,Metamorphoses,eng,4.03,42590,47948,1121,680,2239,10119,16766,18144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420818932l/1715.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2367,11206,11206,1408023,58,452274427,9780452274430.0,Julia Alvarez,1994.0,In the Time of the Butterflies,In the Time of the Butterflies,eng,4.13,39917,43803,3168,412,1369,7363,17645,17014,https://images.gr-assets.com/books/1411410276l/11206.jpg,https://images.gr-assets.com/books/1411410276s/11206.jpg\n2368,77398,77398,879027,34,743203631,9780743203630.0,Robert Morgan,1999.0,Gap Creek : The Story Of A Marriage (Oprah's Book Club),Gap Creek,en-US,3.71,42122,43630,1406,788,3123,13790,16083,9846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438354175l/77398._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2369,9680718,9680718,14568639,26,983157200,9780983157200.0,Jennifer L. Armentrout,2011.0,Half-Blood,\"Half-Blood (Covenant, #1)\",eng,4.16,60629,64557,5284,1647,2580,9829,20463,30038,https://images.gr-assets.com/books/1311865840l/9680718.jpg,https://images.gr-assets.com/books/1311865840s/9680718.jpg\n2370,93263,93263,2131999,2,1582404119,9781582404110.0,\"Bo Hampton, Tracey Hampton, Washington Irving\",1993.0,The Legend of Sleepy Hollow,The Legend of Sleepy Hollow (Graphic Novel),eng,3.96,43183,43186,400,558,2151,10844,14704,14929,https://images.gr-assets.com/books/1171253283l/93263.jpg,https://images.gr-assets.com/books/1171253283s/93263.jpg\n2371,27126,27126,27777,14,451217608,9780451217610.0,Jen Lancaster,2006.0,\"Bitter is the New Black : Confessions of a Condescending, Egomaniacal, Self-Centered Smartass, Or, Why You Should Never Carry A Prada Bag to the Unemployment Office\",\"Bitter Is the New Black: Confessions of a Condescending, Egomaniacal, Self-Centered Smartass, Or, Why You Should Never Carry A Prada Bag to the Unemployment Office\",eng,3.9,41884,43007,4092,1503,3107,9034,14033,15330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183618l/27126.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2372,12716613,12716613,17851429,75,399159371,9780399159370.0,Nora Roberts,2012.0,The Witness,The Witness,,4.19,40943,49415,4008,448,1380,7822,18688,21077,https://images.gr-assets.com/books/1329921937l/12716613.jpg,https://images.gr-assets.com/books/1329921937s/12716613.jpg\n2373,21718,21718,2590340,96,380820889,9780380820890.0,Karin Slaughter,2001.0,Blindsighted,\"Blindsighted (Grant County, #1)\",eng,4.1,41857,46667,1923,577,1487,8425,18229,17949,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390283925l/21718.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2374,292408,292408,283706,37,140169300,9780140169300.0,Wallace Stegner,1971.0,Angle of Repose,Angle of Repose,eng,4.27,40289,42204,3560,634,1540,5279,13032,21719,https://images.gr-assets.com/books/1329151576l/292408.jpg,https://images.gr-assets.com/books/1329151576s/292408.jpg\n2375,18989,18989,2491780,195,743457900,9780743457900.0,John le Carré,1974.0,\"Tinker, Tailor, Soldier, Spy\",\"Tinker, Tailor, Soldier, Spy\",,4.04,40871,49461,2990,944,2374,8842,19134,18167,https://images.gr-assets.com/books/1327889127l/18989.jpg,https://images.gr-assets.com/books/1327889127s/18989.jpg\n2376,99085,99085,810431,22,142501107,9780142501110.0,Brian Jacques,2000.0,Lord Brocktree,\"Lord Brocktree (Redwall, #13)\",en-US,3.95,42764,43355,206,1055,2177,10081,14817,15225,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442624011l/99085._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2377,13253276,13253276,18454415,38,62072064,9780062072060.0,Veronica Rossi,2013.0,Through the Ever Night,\"Through the Ever Night (Under the Never Sky, #2)\",en-CA,4.17,54902,58814,4142,869,1805,9007,21950,25183,https://images.gr-assets.com/books/1340892848l/13253276.jpg,https://images.gr-assets.com/books/1340892848s/13253276.jpg\n2378,712313,712313,698575,50,316018589,9780316018590.0,Elin Hilderbrand,2007.0,Barefoot,Barefoot,en-US,3.77,39531,42369,2599,545,2542,12874,16693,9715,https://images.gr-assets.com/books/1344271499l/712313.jpg,https://images.gr-assets.com/books/1344271499s/712313.jpg\n2379,6520,6520,471326,37,1594481954,9781594481960.0,James Frey,2005.0,My Friend Leonard,My Friend Leonard,,3.83,34996,36676,1589,700,2536,9761,12977,10702,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182556l/6520.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2380,72159,72159,69862,67,811216012,9780811216010.0,Tennessee Williams,1955.0,Cat on a Hot Tin Roof,Cat on a Hot Tin Roof,eng,4.07,43781,45995,726,526,1855,8915,17075,17624,https://images.gr-assets.com/books/1389369390l/72159.jpg,https://images.gr-assets.com/books/1389369390s/72159.jpg\n2381,1829709,1829709,3236104,47,316002860,9780316002870.0,James Patterson,2008.0,The Final Warning,\"The Final Warning (Maximum Ride, #4)\",en-US,3.86,55993,59761,2513,2201,5369,13265,16935,21991,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440631506l/1829709._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2382,45109,45109,2960727,52,553582453,9780553582450.0,Robin Hobb,2002.0,The Golden Fool,\"Golden Fool (Tawny Man, #2)\",eng,4.32,43700,48376,823,164,776,5853,18214,23369,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182007l/45109.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2383,204276,204276,15254937,94,446614459,9780446614450.0,David Baldacci,2003.0,Split Second,\"Split Second (Sean King & Michelle Maxwell, #1)\",en-US,3.98,38387,44168,1833,458,1461,9675,19459,13115,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432495543l/204276._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2384,9681098,9681098,14183705,71,316069353,9780316069360.0,Michael Connelly,2011.0,The Fifth Witness,\"The Fifth Witness (Mickey Haller, #5; Harry Bosch Universe, #20)\",eng,4.17,37594,43750,2557,163,740,7000,19488,16359,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439836790l/9681098._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2385,91981,91981,840191,53,756402697,9780756402690.0,Tad Williams,1988.0,The Dragonbone Chair,\"The Dragonbone Chair (Memory, Sorrow, and Thorn, #1)\",en-US,3.95,45102,48280,1207,1222,2895,10178,16980,17005,https://images.gr-assets.com/books/1477417642l/91981.jpg,https://images.gr-assets.com/books/1477417642s/91981.jpg\n2387,71776,71776,1222486,51,1589190629,9781589190630.0,Jan Karon,1994.0,At Home in Mitford (Mitford Years #1),\"At Home in Mitford (Mitford Years, #1)\",eng,4.11,44509,47156,2777,1116,2204,8210,14575,21051,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924130l/71776.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2388,6828896,6828896,7039054,36,446563048,9780446563050.0,Tony Hsieh,2010.0,\"Delivering Happiness: A Path to Profits, Passion, and Purpose\",\"Delivering Happiness: A Path to Profits, Passion, and Purpose\",,4.01,37601,39681,1820,1434,1964,7063,13582,15638,https://images.gr-assets.com/books/1344267716l/6828896.jpg,https://images.gr-assets.com/books/1344267716s/6828896.jpg\n2389,542414,542414,1779383,58,142405787,9780142405790.0,Anthony Horowitz,2004.0,Scorpia,\"Scorpia (Alex Rider, #5)\",eng,4.16,44197,45902,1147,357,1586,8377,15847,19735,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257255l/542414.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2390,18712886,18712886,24267689,62,62290363,9780062290370.0,Erika Johansen,2014.0,The Queen of the Tearling,\"The Queen of the Tearling (The Queen of the Tearling, #1)\",eng,4.02,42472,54253,7889,1295,2432,9114,22223,19189,https://images.gr-assets.com/books/1417685148l/18712886.jpg,https://images.gr-assets.com/books/1417685148s/18712886.jpg\n2391,3552023,3552023,3594131,39,545060427,9780545060420.0,Gordon Korman,2008.0,\"One False Note (The 39 Clues, Book 2)\",\"One False Note (The 39 Clues, #2)\",eng,3.88,41970,44210,1511,1286,2890,11020,13620,15394,https://images.gr-assets.com/books/1357211034l/3552023.jpg,https://images.gr-assets.com/books/1357211034s/3552023.jpg\n2392,46777,46777,1460966,12,689867042,9780689867040.0,Holly Black,2002.0,Tithe: A Modern Faerie Tale,\"Tithe (Modern Faerie Tales, #1)\",eng,3.73,57326,60348,3156,2799,5604,15129,18101,18715,https://images.gr-assets.com/books/1342120818l/46777.jpg,https://images.gr-assets.com/books/1342120818s/46777.jpg\n2393,455930,455930,22852,90,515133310,9780515133320.0,Lee Child,2001.0,Echo Burning,\"Echo Burning (Jack Reacher, #5)\",en-US,3.98,38524,48311,2090,311,1787,11056,20682,14475,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388386347l/455930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2394,1895792,1895792,6807768,32,61140988,9780061140980.0,L.J. Smith,2007.0,The Fury and Dark Reunion,\"The Fury / Dark Reunion (The Vampire Diaries, #3-4)\",en-US,3.74,51745,54315,1762,2144,5695,14228,14472,17776,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347454337l/1895792.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2395,24378015,24378015,42942273,15,,,\"Colleen Hoover, Tarryn Fisher\",2015.0,Never Never,\"Never Never (Never Never, #1)\",en-US,4.12,54590,55980,8438,905,2298,9272,20013,23492,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428934147l/24378015.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2396,15818362,15818362,14106097,70,62197266,9780062197270.0,Elizabeth Haynes,2011.0,Into the Darkest Corner,Into the Darkest Corner,eng,4.1,20725,44965,4782,696,1644,7376,18194,17055,https://images.gr-assets.com/books/1355923186l/15818362.jpg,https://images.gr-assets.com/books/1355923186s/15818362.jpg\n2397,76237,76237,187956,2,140079076,9780140079070.0,\"Richard Lancelyn Green, Ronald Knox, Julian Symons, Various\",1985.0,The Further Adventures of Sherlock Holmes (Classic Crime),The Further Adventures of Sherlock Holmes: After Sir Arthur Conan Doyle (Classic Crime),,4.4,36863,36872,36,286,457,4096,11411,20622,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170889427l/76237._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2398,79378,79378,22566,91,446605484,9780446605490.0,James Patterson,2000.0,Roses Are Red,\"Roses are Red (Alex Cross, #6)\",en-US,4.02,44383,47337,1074,249,1377,10942,19473,15296,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437948895l/79378._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2399,43893,43893,1443364,47,765344300,9780765344300.0,Terry Goodkind,2003.0,\"Naked Empire (Sword of Truth, #8)\",\"Naked Empire (Sword of Truth, #8)\",en-GB,3.82,39682,42066,548,1519,3639,9953,12891,14064,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182014l/43893.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2400,92147,92147,1467817,67,60765240,9780060765250.0,James Rollins,2005.0,Map of Bones,\"Map of Bones (Sigma Force, #2)\",eng,4.06,42828,45531,1312,759,1907,8591,17054,17220,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564764099l/92147.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2401,22571540,22571540,42038027,68,525953507,9780525953500.0,Harlan Coben,2015.0,The Stranger,The Stranger,eng,3.85,32333,43269,3807,659,2378,10895,18136,11201,https://images.gr-assets.com/books/1408564426l/22571540.jpg,https://images.gr-assets.com/books/1408564426s/22571540.jpg\n2402,1537534,1537534,1205579,50,60887397,9780060887390.0,Sara Shepard,2008.0,Unbelievable,\"Unbelievable (Pretty Little Liars, #4)\",en-US,4.06,46722,50026,1856,594,2354,10544,16409,20125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518061137l/1537534._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2403,45195,45195,4574850,194,014144116X,9780141441160.0,\"E.M. Forster, Oliver Stallybrass, Pankaj Mishra\",1924.0,A Passage to India,A Passage to India,eng,3.66,46675,52900,2446,1581,4821,15168,19530,11800,https://images.gr-assets.com/books/1421883612l/45195.jpg,https://images.gr-assets.com/books/1421883612s/45195.jpg\n2404,19549841,19549841,17375239,56,,,Rachel Hartman,2012.0,Seraphina,\"Seraphina (Seraphina, #1)\",eng,3.98,33510,59999,7002,1627,3021,11407,22754,21190,https://images.gr-assets.com/books/1387577872l/19549841.jpg,https://images.gr-assets.com/books/1387577872s/19549841.jpg\n2405,26046,26046,668492,66,515141658,9780515141660.0,Nora Roberts,2006.0,Morrigan's Cross,\"Morrigan's Cross (Circle Trilogy, #1)\",eng,4.14,43455,45161,1189,817,1946,8062,13690,20646,https://images.gr-assets.com/books/1457728199l/26046.jpg,https://images.gr-assets.com/books/1457728199s/26046.jpg\n2406,49824,49824,927520,125,553381644,9780553381640.0,Jean M. Auel,1985.0,The Mammoth Hunters,\"The Mammoth Hunters (Earth's Children, #3)\",en-US,3.88,44834,51363,1268,646,3246,13554,18120,15797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257676l/49824.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2407,2903736,2903736,2930878,18,441016383,9780441016390.0,Jim Butcher,2008.0,Princeps' Fury,\"Princeps' Fury (Codex Alera, #5)\",en-US,4.35,42827,46826,871,176,637,5199,17307,23507,https://images.gr-assets.com/books/1315082776l/2903736.jpg,https://images.gr-assets.com/books/1315082776s/2903736.jpg\n2408,73968,73968,816372,114,380017601,9780380017610.0,Erich Segal,1970.0,Love Story,\"Love Story (Love Story, #1)\",,3.6,41177,44679,2237,1796,5239,12807,13839,10998,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388812297l/73968.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2409,858513,858513,2394502,25,688147321,9780688147330.0,Kevin Henkes,1991.0,Chrysanthemum,Chrysanthemum,en-US,4.31,43520,43898,1365,499,1344,6227,11635,24193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348668136l/858513.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2410,11808950,11808950,16762455,12,62085611,9780062085610.0,Wendy Higgins,2012.0,Sweet Evil,\"Sweet Evil (Sweet, #1)\",eng,4.13,58879,61003,5063,1915,2907,9290,18336,28555,https://images.gr-assets.com/books/1337613719l/11808950.jpg,https://images.gr-assets.com/books/1337613719s/11808950.jpg\n2411,21484,21484,1936731,61,316952664,9780316952670.0,Herman Wouk,1971.0,The Winds of War,\"The Winds of War (The Henry Family, #1)\",en-US,4.36,41940,43439,1181,240,738,5055,14396,23010,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442187661l/21484._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2412,12341557,12341557,15678889,76,,,\"Stephen King, Jae Lee\",2012.0,The Wind Through the Keyhole,\"The Wind Through the Keyhole (The Dark Tower, #4.5)\",eng,4.14,35888,46620,4162,315,1269,7928,18952,18156,https://images.gr-assets.com/books/1328001524l/12341557.jpg,https://images.gr-assets.com/books/1328001524s/12341557.jpg\n2413,68527,68527,881821,86,60887184,9780060887190.0,Bernard Cornwell,2004.0,The Last Kingdom,\"The Last Kingdom (The Saxon Stories, #1)\",en-US,4.23,38890,46911,2730,310,974,6480,18897,20250,https://images.gr-assets.com/books/1407107780l/68527.jpg,https://images.gr-assets.com/books/1407107780s/68527.jpg\n2414,81948,81948,79122,31,887307280,9780887307290.0,Michael E. Gerber,1985.0,The E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It,The E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It,,3.98,37671,39123,1202,1442,2196,7417,12745,15323,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435673032l/81948._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2415,281235,281235,1142982,45,1416928170,9781416928170.0,\"James Howe, Deborah Howe, Alan Daniel\",1979.0,Bunnicula: A Rabbit-Tale of Mystery,\"Bunnicula (Bunnicula, #1)\",eng,3.83,50699,52667,1775,1673,3711,13598,16396,17289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348802537l/281235.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2416,66678,66678,282950,47,786939834,9780786939830.0,R.A. Salvatore,1990.0,Exile ,\"Exile (Forgotten Realms: The Dark Elf Trilogy, #2; Legend of Drizzt, #2)\",eng,4.24,37728,41383,674,177,1035,6489,14649,19033,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389680240l/66678.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2417,11947829,11947829,17385456,55,1250006333,9781250006330.0,Amanda Hocking,2012.0,Ascend,\"Ascend (Trylle, #3)\",en-US,4.08,26350,53836,3408,918,2675,10081,17542,22620,https://images.gr-assets.com/books/1397955256l/11947829.jpg,https://images.gr-assets.com/books/1397955256s/11947829.jpg\n2418,10822858,10822858,7211561,111,525952489,9780525952480.0,\"Jussi Adler-Olsen, Lisa Hartford\",2007.0,Kvinden i buret,\"The Keeper of Lost Causes (Department Q, #1)\",eng,3.98,36825,46392,3954,762,1777,9089,20939,13825,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270380l/10822858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2419,23876,23876,366351,6,517405091,9780517405090.0,Gabriel García Márquez,1994.0,Del amor y otros demonios,Of Love and Other Demons,eng,3.98,29639,40858,1762,380,1753,9228,16583,12914,https://images.gr-assets.com/books/1324357590l/23876.jpg,https://images.gr-assets.com/books/1324357590s/23876.jpg\n2421,1297985,1297985,2304379,68,676979785,9780676979790.0,Oliver Sacks,2007.0,Musicophilia: Tales of Music and the Brain,Musicophilia: Tales of Music and the Brain,eng,3.88,38152,41030,1905,1447,2585,9250,13740,14008,https://images.gr-assets.com/books/1320494159l/1297985.jpg,https://images.gr-assets.com/books/1320494159s/1297985.jpg\n2422,25526965,25526965,45313982,55,1501129740,9781501129740.0,Stephen King,2016.0,End of Watch,\"End of Watch (Bill Hodges Trilogy, #3)\",eng,4.09,33780,45355,5113,331,1462,8173,19057,16332,https://images.gr-assets.com/books/1468705472l/25526965.jpg,https://images.gr-assets.com/books/1468705472s/25526965.jpg\n2423,3684856,3684856,3793700,45,60590319,9780060590310.0,Christopher Moore,2009.0,Fool,Fool,en-US,3.96,41502,43889,3161,963,2575,9218,15528,15605,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434220875l/3684856._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2424,69136,69136,1164024,57,743298853,9780743298860.0,John Connolly,2006.0,The Book of Lost Things,The Book of Lost Things,eng,3.98,43086,50517,6441,780,2742,10409,19156,17430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253367l/69136.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2425,49195,49195,775862,50,140003003X,9781400030030.0,Bill Clinton,2004.0,My Life,My Life,eng,3.72,35852,37311,1049,1455,2819,10284,12894,9859,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431741967l/49195._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2426,59952,59952,899481,33,1569714029,9781569714030.0,\"Frank Miller, Lynn Varley\",1998.0,300,300,en-US,3.93,38323,38782,712,888,2312,8897,13227,13458,https://images.gr-assets.com/books/1438711575l/59952.jpg,https://images.gr-assets.com/books/1438711575s/59952.jpg\n2427,6697305,6697305,6892987,28,545060494,9780545060490.0,Linda Sue Park,2010.0,Storm Warning,\"Storm Warning (The 39 Clues, #9)\",eng,3.98,39115,40422,582,1473,2267,8525,11445,16712,https://images.gr-assets.com/books/1357211087l/6697305.jpg,https://images.gr-assets.com/books/1357211087s/6697305.jpg\n2428,6950688,6950688,7185126,41,1423128206,9781423128200.0,Ally Carter,2010.0,Only the Good Spy Young,\"Only the Good Spy Young (Gallagher Girls, #4)\",en-US,4.29,51772,54139,2246,551,1448,7546,17067,27527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441070330l/6950688._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2429,455941,455941,224290,77,440241006,9780440241000.0,Lee Child,2003.0,The Persuader,\"Persuader (Jack Reacher, #7)\",eng,4.09,37434,46967,2055,214,1069,8920,20844,15920,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174926770l/455941._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2431,1991039,1991039,1994708,139,8203180728,9788203180730.0,\"Jo Nesbø, Don Bartlett\",1997.0,Flaggermusmannen,\"Flaggermusmannen (Harry Hole, #1)\",nor,3.56,22230,48143,3957,1478,4686,16180,16807,8992,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236348090l/1991039.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2432,407234,407234,3355824,59,515143804,9780515143800.0,Nora Roberts,2007.0,\"Blood Brothers (Sign of Seven, #1)\",\"Blood Brothers (Sign of Seven, #1)\",eng,4.15,42696,44116,1545,609,1731,7801,14058,19917,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177488l/407234.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2433,10912,10912,3349571,54,425185508,9780425185510.0,Jodi Picoult,1995.0,Picture Perfect,Picture Perfect,en-GB,3.52,41631,44719,2490,1226,4901,15975,14519,8098,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924655l/10912.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2434,294963,294963,286213,28,1591162203,9781591162210.0,\"Nobuhiro Watsuki, Kenichiro Yagi\",1994.0,るろうに剣心 1,\"Rurouni Kenshin, Vol. 1: Meiji Swordsman Romantic Story (Rurouni Kenshin, #1)\",eng,4.33,36765,36994,261,558,1125,4828,9531,20952,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273758l/294963.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2435,9888775,9888775,14780777,15,1402262272,9781402262270.0,Miranda Kenneally,2011.0,Catching Jordan,Catching Jordan,eng,3.85,50383,51787,3234,1832,3906,12187,15880,17982,https://images.gr-assets.com/books/1327875803l/9888775.jpg,https://images.gr-assets.com/books/1327875803s/9888775.jpg\n2436,18600,18600,876314,62,60730552,9780060730550.0,Joe Simpson,1988.0,Touching the Void: The True Story of One Man's Miraculous Survival,Touching the Void: The True Story of One Man's Miraculous Survival,eng,4.2,36048,37885,1318,405,927,5750,14490,16313,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442800485l/18600.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2437,15784909,15784909,21502991,22,,,Colleen Hoover,2013.0,This Girl,\"This Girl (Slammed, #3)\",eng,4.18,58808,61186,5787,913,2706,9851,18712,29004,https://images.gr-assets.com/books/1364326075l/15784909.jpg,https://images.gr-assets.com/books/1364326075s/15784909.jpg\n2438,205330,205330,198687,11,670869392,9780670869400.0,Simms Taback,1997.0,There Was an Old Lady Who Swallowed a Fly,There Was an Old Lady Who Swallowed a Fly,,4.2,41867,41902,719,728,1915,7494,9974,21791,https://images.gr-assets.com/books/1172674507l/205330.jpg,https://images.gr-assets.com/books/1172674507s/205330.jpg\n2439,2255,2255,856599,53,1932073205,9781932073200.0,Dan Millman,1980.0,Way of the Peaceful Warrior: A Book That Changes Lives,Way of the Peaceful Warrior: A Book That Changes Lives,en-US,4.13,34136,36716,1579,727,1749,6140,11511,16589,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423514049l/2255.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2440,12781,12781,1434467,129,312270828,9780312270830.0,Salman Rushdie,1988.0,The Satanic Verses,The Satanic Verses,eng,3.71,37354,42878,3036,2132,3911,10161,14645,12029,https://images.gr-assets.com/books/1281988101l/12781.jpg,https://images.gr-assets.com/books/1281988101s/12781.jpg\n2441,6178648,6178648,6358552,53,385523904,9780385523900.0,Barbara Demick,2009.0,Nothing to Envy: Ordinary Lives in North Korea,Nothing to Envy: Ordinary Lives in North Korea,eng,4.42,37284,44099,5488,318,533,3272,15958,24018,https://images.gr-assets.com/books/1320449375l/6178648.jpg,https://images.gr-assets.com/books/1320449375s/6178648.jpg\n2442,866222,866222,856917,46,60753943,9780060753950.0,\"Jack Welch, Suzy Welch\",1992.0,Winning,Winning,,3.8,33160,33860,556,1525,2269,8119,11485,10462,https://images.gr-assets.com/books/1366775828l/866222.jpg,https://images.gr-assets.com/books/1366775828s/866222.jpg\n2443,17158596,17158596,23582083,36,,,Gail McHugh,2013.0,Collide,\"Collide (Collide, #1)\",eng,4.24,55720,58679,4562,1204,2220,7627,18053,29575,https://images.gr-assets.com/books/1359831056l/17158596.jpg,https://images.gr-assets.com/books/1359831056s/17158596.jpg\n2444,3860977,3860977,3906123,37,618620117,9780618620110.0,Jonah Lehrer,2009.0,How We Decide,How We Decide,en-US,3.81,32507,33753,1401,1134,2113,8554,12116,9836,https://images.gr-assets.com/books/1382946716l/3860977.jpg,https://images.gr-assets.com/books/1382946716s/3860977.jpg\n2445,91661,91661,891863,58,553381520,9780553381530.0,Laurie R. King,1994.0,The Beekeeper's Apprentice,\"The Beekeeper's Apprentice (Mary Russell, #1)\",en-US,4.08,46665,53691,4823,1064,2257,9331,19782,21257,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1590945421l/91661._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2446,356321,356321,2682241,43,394805755,9780394805760.0,\"Jean de Brunhoff, Merle S. Haas\",1931.0,\"Histoire de Babar, le petit éléphant\",The Story of Babar,en-US,4.07,50976,51147,328,932,2481,10843,14467,22424,https://images.gr-assets.com/books/1353333493l/356321.jpg,https://images.gr-assets.com/books/1353333493s/356321.jpg\n2447,8458018,8458018,13322179,53,385735332,9780385735340.0,Michael Scott,2011.0,The Warlock,\"The Warlock (The Secrets of the Immortal Nicholas Flamel, #5)\",eng,4.17,41271,43749,1618,442,1479,7495,14929,19404,https://images.gr-assets.com/books/1386634577l/8458018.jpg,https://images.gr-assets.com/books/1386634577s/8458018.jpg\n2448,6316821,6316821,6502096,20,044101769X,9780441017690.0,Jim Butcher,2008.0,First Lord's Fury,\"First Lord's Fury (Codex Alera, #6)\",eng,4.37,41816,45772,1261,167,723,5056,15763,24063,https://images.gr-assets.com/books/1327903582l/6316821.jpg,https://images.gr-assets.com/books/1327903582s/6316821.jpg\n2449,6834410,6834410,7045390,59,385343663,9780385343660.0,Tom Rachman,2010.0,The Imperfectionists,The Imperfectionists,eng,3.54,36571,41966,5536,1199,4308,13687,16368,6404,https://images.gr-assets.com/books/1327935648l/6834410.jpg,https://images.gr-assets.com/books/1327935648s/6834410.jpg\n2450,16151178,16151178,21547521,31,,,Katja Millay,2012.0,The Sea of Tranquility,The Sea of Tranquility,eng,4.34,52982,65924,8606,1238,2097,7130,17726,37733,https://images.gr-assets.com/books/1465919812l/16151178.jpg,https://images.gr-assets.com/books/1465919812s/16151178.jpg\n2451,9517,9517,6127168,29,375714669,9780375714660.0,\"Marjane Satrapi, Anjali Singh\",2001.0,Persepolis 2 ,\"Persepolis 2: The Story of a Return (Persepolis, #2)\",eng,4.23,45718,46982,1991,301,1157,6932,17596,20996,https://images.gr-assets.com/books/1327865598l/9517.jpg,https://images.gr-assets.com/books/1327865598s/9517.jpg\n2452,64217,64217,968512,99,61020656,9780061020650.0,Terry Pratchett,1989.0,Pyramids,\"Pyramids (Discworld, #7)\",en-US,3.88,44710,52074,1275,282,2577,14505,20281,14429,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439098306l/64217._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2453,149302,149302,144096,63,586064176,9780586064180.0,Raymond E. Feist,1985.0,Silverthorn,\"Silverthorn (The Riftwar Saga, #3)\",en-GB,4.06,42148,45820,591,271,1453,9587,18606,15903,https://images.gr-assets.com/books/1272603402l/149302.jpg,https://images.gr-assets.com/books/1272603402s/149302.jpg\n2454,1314332,1314332,3128767,90,385613466,9780385613460.0,Jenny Downham,2007.0,Before I Die,Before I Die,eng,3.84,38551,46571,3910,1164,3574,11493,15471,14869,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348002855l/1314332.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2455,6728738,6728738,6924954,74,670021652,9780670021660.0,Elizabeth Gilbert,2009.0,Committed: A Skeptic Makes Peace with Marriage,Committed: A Skeptic Makes Peace with Marriage,eng,3.39,37410,41510,4796,2063,5938,13932,12826,6751,https://images.gr-assets.com/books/1472258183l/6728738.jpg,https://images.gr-assets.com/books/1472258183s/6728738.jpg\n2456,104378,104378,100634,42,142401765,9780142401770.0,Sarah Dessen,1999.0,Keeping the Moon,Keeping the Moon,en-US,3.86,51537,53992,2454,844,3603,14783,17841,16921,https://images.gr-assets.com/books/1359205648l/104378.jpg,https://images.gr-assets.com/books/1359205648s/104378.jpg\n2457,18080920,18080920,25389330,13,62285637,9780062285640.0,Veronica Roth,2013.0,Four: The Transfer,\"The Transfer (Divergent, #0.1)\",eng,4.19,42240,47872,2918,439,1597,8396,15513,21927,https://images.gr-assets.com/books/1420493627l/18080920.jpg,https://images.gr-assets.com/books/1420493627s/18080920.jpg\n2458,43887,43887,3028732,42,765344319,9780765344310.0,Terry Goodkind,2004.0,\"Chainfire (Sword of Truth, #9)\",\"Chainfire (Sword of Truth, #9)\",en-US,3.95,38743,40856,564,1146,2726,8448,13118,15418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442855514l/43887._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2459,129650,129650,2897158,19,375413405,9780375413410.0,\"Julia Child, Simone Beck, Louisette Bertholle\",1961.0,Mastering the Art of French Cooking,Mastering the Art of French Cooking,en-US,4.33,34055,35315,434,631,902,4422,9757,19603,https://images.gr-assets.com/books/1333577773l/129650.jpg,https://images.gr-assets.com/books/1333577773s/129650.jpg\n2460,9876989,9876989,8097252,19,1421540320,9781421540320.0,\"Kazue Kato, John Werry\",2009.0,青の祓魔師 1,\"Blue Exorcist, Vol. 1  (Blue Exorcist, #1)\",eng,4.36,39464,39852,473,492,1101,5033,10098,23128,https://images.gr-assets.com/books/1432642113l/9876989.jpg,https://images.gr-assets.com/books/1432642113s/9876989.jpg\n2461,604803,604803,1025414,45,765315238,9780765315240.0,Terry Goodkind,2007.0,\"Confessor (Sword of Truth, #11)\",\"Confessor (Sword of Truth, #11)\",en-US,4.08,37862,40294,845,1115,2265,6850,12256,17808,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442796715l/604803._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2462,88815,88815,725380,86,151013047,9780151013040.0,Mohsin Hamid,2007.0,The Reluctant Fundamentalist,The Reluctant Fundamentalist,eng,3.67,33879,40953,4713,768,3367,12197,16905,7716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441985417l/88815._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2463,12432220,12432220,16221764,31,545284139,9780545284130.0,Jennifer A. Nielsen,2012.0,The False Prince,The False Prince (The Ascendance Trilogy #1),eng,4.22,49667,52979,7080,753,1650,7374,18485,24717,https://images.gr-assets.com/books/1333227435l/12432220.jpg,https://images.gr-assets.com/books/1333227435s/12432220.jpg\n2464,85386,85386,802269,92,449911659,9780449911660.0,John Updike,1960.0,\"Rabbit, Run\",\"Rabbit, Run (Rabbit Angstrom #1)\",eng,3.57,39485,42551,2641,2145,4626,11883,14610,9287,https://images.gr-assets.com/books/1333578676l/85386.jpg,https://images.gr-assets.com/books/1333578676s/85386.jpg\n2465,56627,56627,152688,46,1400077427,9781400077430.0,Daniel Todd Gilbert,2006.0,Stumbling on Happiness,Stumbling on Happiness,eng,3.82,37601,39381,2166,980,2832,10042,13956,11571,https://images.gr-assets.com/books/1327947323l/56627.jpg,https://images.gr-assets.com/books/1327947323s/56627.jpg\n2466,400412,400412,15306654,65,015694877X,9780156948780.0,T.S. Eliot,1922.0,The Waste Land and Other Poems,The Waste Land and Other Poems,en-US,4.23,38462,41178,618,645,1395,6067,12798,20273,https://images.gr-assets.com/books/1372992691l/400412.jpg,https://images.gr-assets.com/books/1372992691s/400412.jpg\n2467,201146,201146,506009,33,590319671,9780590319680.0,\"Else Holmelund Minarik, Maurice Sendak\",1957.0,Little Bear,Little Bear,eng,4.22,46731,47541,407,548,1650,8559,13043,23741,https://images.gr-assets.com/books/1318518124l/201146.jpg,https://images.gr-assets.com/books/1318518124s/201146.jpg\n2468,206172,206172,15570165,133,146000110,9780146000120.0,Edgar Allan Poe,1842.0,The Pit and the Pendulum,The Pit and the Pendulum,eng,4.15,40289,47612,581,371,1361,8463,17826,19591,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172678940l/206172._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2469,34529,34529,1185086,75,055215315X,9780552153160.0,Terry Pratchett,1992.0,Lords and Ladies,\"Lords and Ladies (Discworld, #14; Witches #4)\",eng,4.14,43980,50692,997,117,1132,9814,19985,19644,https://images.gr-assets.com/books/1469186110l/34529.jpg,https://images.gr-assets.com/books/1469186110s/34529.jpg\n2470,62530,62530,819104,56,552152676,9780552152680.0,Terry Pratchett,2006.0,Thud!,\"Thud! (Discworld, #34; City Watch #7)\",eng,4.29,44496,49726,1256,139,785,6963,18468,23371,https://images.gr-assets.com/books/1320495268l/62530.jpg,https://images.gr-assets.com/books/1320495268s/62530.jpg\n2471,28876,28876,726205,72,345481283,9780345481280.0,Naomi Novik,2006.0,His Majesty's Dragon,\"His Majesty's Dragon (Temeraire, #1)\",eng,4.05,48381,54314,4441,672,2238,10114,21932,19358,https://images.gr-assets.com/books/1376392909l/28876.jpg,https://images.gr-assets.com/books/1376392909s/28876.jpg\n2472,444304,444304,1092293,4,689859368,9780689859370.0,\"Holly Black, Tony DiTerlizzi\",2003.0,The Field Guide,\"The Field Guide (The Spiderwick Chronicles, #1)\",eng,3.85,56913,58671,2574,1123,3690,16228,19308,18322,https://images.gr-assets.com/books/1358701476l/444304.jpg,https://images.gr-assets.com/books/1358701476s/444304.jpg\n2474,1303,1303,1297604,66,140280197,9780140280200.0,\"Robert Greene, Joost Elffers\",1988.0,The 48 Laws of Power,The 48 Laws of Power,,4.18,37613,40152,2166,927,1790,5953,12041,19441,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385228992l/1303.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2475,41667,41667,2682098,54,142401110,9780142401120.0,Jean Craighead George,1959.0,My Side of the Mountain ,\"My Side of the Mountain (Mountain, #1)\",eng,4.03,47002,50618,2441,904,2181,10419,18138,18976,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204221l/41667.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2476,3392089,3392089,3723657,40,749080973,9780749080980.0,\"Susanna Kearsley, Rosalyn Landor\",2008.0,The Winter Sea,\"The Winter Sea (Slains, #1)\",eng,4.07,39572,47784,5615,747,2018,8563,18478,17978,https://images.gr-assets.com/books/1410915489l/3392089.jpg,https://images.gr-assets.com/books/1410915489s/3392089.jpg\n2477,5861926,5861926,6034082,32,545135702,9780545135700.0,Peter Lerangis,2009.0,The Sword Thief,\"The Sword Thief (The 39 Clues, #3)\",eng,3.87,41021,42573,1112,1584,2869,10292,12408,15420,https://images.gr-assets.com/books/1357211037l/5861926.jpg,https://images.gr-assets.com/books/1357211037s/5861926.jpg\n2478,85437,20454107,944350,75,451159535,9780451159530.0,Robin Cook,1977.0,Coma,Coma,eng,3.86,29071,41540,567,431,2125,11625,15950,11409,https://images.gr-assets.com/books/1309286934l/85437.jpg,https://images.gr-assets.com/books/1309286934s/85437.jpg\n2479,46945,46945,526038,39,1560252480,9781560252480.0,\"Hubert Selby Jr., Darren Aronofsky, Richard Price\",1978.0,Requiem for a Dream,Requiem for a Dream,eng,4.1,37995,39392,935,724,1428,6791,14658,15791,https://images.gr-assets.com/books/1353949849l/46945.jpg,https://images.gr-assets.com/books/1353949849s/46945.jpg\n2481,76401,76401,1240262,100,805066691,9780805066690.0,Dee Brown,1970.0,Bury My Heart at Wounded Knee: An Indian History of the American West,Bury My Heart at Wounded Knee: An Indian History of the American West,,4.21,40565,43523,2277,541,1285,6571,15305,19821,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1604058784l/76401._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2482,128066,128066,815447,65,057506708X,9780575067080.0,\"Władysław Szpilman, Anthea Bell\",1946.0,Śmierć Miasta ,\"The Pianist: The Extraordinary Story of One Man's Survival in Warsaw, 1939–45\",,4.24,43578,46509,824,844,1252,6179,15780,22454,https://images.gr-assets.com/books/1491050715l/128066.jpg,https://images.gr-assets.com/books/1491050715s/128066.jpg\n2483,16033902,16033902,21805183,49,425267040,9780425267040.0,Maya Banks,2013.0,Rush,\"Rush (Breathless, #1)\",eng,3.97,53937,58570,3667,1661,3491,11831,19796,21791,https://images.gr-assets.com/books/1359943771l/16033902.jpg,https://images.gr-assets.com/books/1359943771s/16033902.jpg\n2484,3052106,3052106,17943436,6,1411415930,9781411415940.0,\"Ian Edginton, Oscar Wilde, I.N.J. Culbard\",2009.0,The Picture of Dorian Gray: A Graphic Novel ,The Picture of Dorian Gray: A Graphic Novel,eng,4.12,40650,40835,104,794,1689,7380,12975,17997,https://images.gr-assets.com/books/1328766635l/3052106.jpg,https://images.gr-assets.com/books/1328766635s/3052106.jpg\n2485,11557,11557,2947187,33,671741039,9780671741040.0,Robert McCammon,1987.0,Swan Song,Swan Song,eng,4.28,38018,41722,2390,614,1445,5486,12216,21961,https://images.gr-assets.com/books/1445981000l/11557.jpg,https://images.gr-assets.com/books/1445981000s/11557.jpg\n2486,22522805,22522805,41115424,32,030727103X,9780307271040.0,Kazuo Ishiguro,2015.0,The Buried Giant,The Buried Giant,eng,3.42,31271,38992,6044,1963,5493,12284,12871,6381,https://images.gr-assets.com/books/1451444392l/22522805.jpg,https://images.gr-assets.com/books/1451444392s/22522805.jpg\n2487,68494,68494,3221410,63,345459407,9780345459400.0,China Miéville,2000.0,Perdido Street Station,\"Perdido Street Station (Bas-Lag, #1)\",eng,3.96,41058,46378,3853,1511,3067,8134,16603,17063,https://images.gr-assets.com/books/1393537963l/68494.jpg,https://images.gr-assets.com/books/1393537963s/68494.jpg\n2488,4070493,4070493,4117634,31,1599903385,9781599903380.0,Carrie Jones,2008.0,Need,\"Need (Need, #1)\",eng,3.71,54819,56427,3582,2844,5660,14185,15946,17792,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436293030l/4070493._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2489,2442,2442,929672,81,61020613,9780061020610.0,Terry Pratchett,1991.0,Witches Abroad,\"Witches Abroad (Discworld, #12; Witches #3)\",eng,4.2,47875,54661,1345,154,1181,9481,20682,23163,https://images.gr-assets.com/books/1403326937l/2442.jpg,https://images.gr-assets.com/books/1403326937s/2442.jpg\n2490,721012,721012,18197624,302,014043769X,9780140437690.0,\"Geoffrey Crayon, Washington Irving, William L. Hedges\",1819.0,\"The Sketch Book of Geoffrey Crayon, Gent\",The Legend of Sleepy Hollow and Other Stories,eng,3.93,42952,45496,437,449,2192,11813,16501,14541,https://images.gr-assets.com/books/1309285607l/721012.jpg,https://images.gr-assets.com/books/1309285607s/721012.jpg\n2491,117,117,3634575,86,441328008,9780441328000.0,Frank Herbert,1984.0,Heretics of Dune,Heretics of Dune (Dune Chronicles #5),eng,3.83,40415,43369,612,715,3037,11673,15212,12732,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186151l/117.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2492,772852,772852,2094533,62,515090255,9780515090250.0,\"David Wilkerson, John Sherrill, Elizabeth Sherrill\",1963.0,The Cross and the Switchblade,The Cross and the Switchblade,,4.2,37349,38100,441,459,1318,6470,11593,18260,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347295767l/772852.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2493,346087,346087,6614434,22,441015271,9780441015280.0,Jim Butcher,2007.0,Captain's Fury,\"Captain's Fury (Codex Alera, #4)\",eng,4.38,42769,46923,966,117,523,4802,17644,23837,https://images.gr-assets.com/books/1315083292l/346087.jpg,https://images.gr-assets.com/books/1315083292s/346087.jpg\n2494,9912994,9912994,14805540,58,385671105,9780385671100.0,Chuck Palahniuk,2011.0,Damned,\"Damned (Damned, #1)\",eng,3.38,33787,38350,3331,2237,5457,12700,11466,6490,https://images.gr-assets.com/books/1296236310l/9912994.jpg,https://images.gr-assets.com/books/1296236310s/9912994.jpg\n2495,222458,222458,1139031,22,439443822,9780439443820.0,Cynthia Lord,2006.0,Rules,Rules,,3.96,42950,44489,4000,723,2549,9936,15896,15385,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434685354l/222458._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2496,8584686,8584686,13438215,37,307263991,9780307264000.0,Karen Russell,2011.0,Swamplandia!,Swamplandia!,eng,3.21,38955,43331,7023,3098,7852,14358,12750,5273,https://images.gr-assets.com/books/1320536498l/8584686.jpg,https://images.gr-assets.com/books/1320536498s/8584686.jpg\n2497,49353,49353,449477,98,075280944X,9780752809440.0,Michael Connelly,1995.0,The Last Coyote,\"The Last Coyote (Harry Bosch, #4; Harry Bosch Universe, #4)\",eng,4.21,37717,44054,1364,127,582,6438,19648,17259,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170358620l/49353._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2498,2715,2715,73206,43,142001619,9780142001620.0,Mark Kurlansky,2002.0,Salt: A World History,Salt: A World History,eng,3.73,39402,40735,2640,1381,3530,10799,14127,10898,https://images.gr-assets.com/books/1414608893l/2715.jpg,https://images.gr-assets.com/books/1414608893s/2715.jpg\n2499,31173,31173,40852693,483,037575850X,9780375758510.0,\"Charlotte Brontë, A.S. Byatt, Μαρία Λαϊνά, Ignes Sodre\",1853.0,Villette,Villette,eng,3.75,41793,48000,2731,1438,4142,13066,15929,13425,https://images.gr-assets.com/books/1320412741l/31173.jpg,https://images.gr-assets.com/books/1320412741s/31173.jpg\n2500,10552338,10552338,15458989,34,61977969,9780061977960.0,Neal Stephenson,2011.0,Reamde,Reamde,eng,3.96,34839,39957,4221,633,2116,8116,16451,12641,https://images.gr-assets.com/books/1305993115l/10552338.jpg,https://images.gr-assets.com/books/1305993115s/10552338.jpg\n2501,34502,34502,1107935,74,057506689X,9780575066890.0,Terry Pratchett,1994.0,Soul Music,\"Soul Music (Discworld, #16; Death, #3)\",eng,4.02,43626,51279,1172,203,1892,12008,19757,17419,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168566175l/34502.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2502,14740588,14740588,20387074,33,,,Janet Evanovich,2012.0,Notorious Nineteen,\"Notorious Nineteen (Stephanie Plum, #19)\",eng,3.9,42656,52396,5011,348,2413,14528,20138,14969,https://images.gr-assets.com/books/1345653049l/14740588.jpg,https://images.gr-assets.com/books/1345653049s/14740588.jpg\n2503,6117055,6117055,6295163,55,059306173X,9780593061730.0,Richard Dawkins,2009.0,The Greatest Show on Earth: The Evidence for Evolution,The Greatest Show on Earth: The Evidence for Evolution,en-GB,4.16,34088,37106,1620,872,1112,5169,13850,16103,https://images.gr-assets.com/books/1302127919l/6117055.jpg,https://images.gr-assets.com/books/1302127919s/6117055.jpg\n2504,392297,392297,3696736,66,1593072937,9781593072930.0,Frank Miller,1992.0,Sin City Volume 1: The Hard Goodbye,\"Sin City, Vol. 1: The Hard Goodbye (Sin City, #1)\",eng,4.16,40866,42454,792,652,1471,6658,15444,18229,https://images.gr-assets.com/books/1470924635l/392297.jpg,https://images.gr-assets.com/books/1470924635s/392297.jpg\n2505,356896,356896,347061,100,055327757X,9780553277580.0,Og Mandino,1968.0,The Greatest Salesman in the World,The Greatest Salesman in the World,eng,4.19,35971,37674,969,637,1635,6134,10899,18369,https://images.gr-assets.com/books/1403192719l/356896.jpg,https://images.gr-assets.com/books/1403192719s/356896.jpg\n2506,3758,3758,2503304,178,014200202X,9780142002020.0,Ian Fleming,1953.0,Casino Royale,\"Casino Royale (James Bond, #1)\",eng,3.73,39150,46774,3074,738,3128,14342,18248,10318,https://images.gr-assets.com/books/1497801490l/3758.jpg,https://images.gr-assets.com/books/1497801490s/3758.jpg\n2507,83144,83144,12615171,95,6513220,9780006513220.0,Paullina Simons,2001.0,The Bronze Horseman,\"The Bronze Horseman (The Bronze Horseman, #1)\",eng,4.34,37369,48539,6085,1198,2005,4963,11371,29002,https://images.gr-assets.com/books/1327921996l/83144.jpg,https://images.gr-assets.com/books/1327921996s/83144.jpg\n2508,11346,11346,3207953,72,452283868,9780452283860.0,Toni Morrison,1973.0,Sula,Sula,en-US,3.86,37196,42187,2324,756,2441,10601,16513,11876,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441578153l/11346._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2509,17999892,25843420,24748164,41,,,A.G. Riddle,2013.0,The Atlantis Gene,\"The Atlantis Gene (The Origin Mystery, #1)\",eng,3.69,20626,40455,2909,1360,3530,10874,15087,9604,https://images.gr-assets.com/books/1385398066l/17999892.jpg,https://images.gr-assets.com/books/1385398066s/17999892.jpg\n2510,7148256,7148256,7413156,74,1416563725,9781416563720.0,Philippa Gregory,2010.0,The Red Queen,\"The Red Queen (The Plantagenet and Tudor Novels, #3)\",eng,3.74,42128,49044,3912,681,3444,14944,18717,11258,https://images.gr-assets.com/books/1281335912l/7148256.jpg,https://images.gr-assets.com/books/1281335912s/7148256.jpg\n2511,6642402,6642402,6836876,36,425233383,9780425233380.0,Julie James,2010.0,Something About You,\"Something About You (FBI/US Attorney, #1)\",eng,3.94,47720,49849,2103,1385,2450,10784,18245,16985,https://images.gr-assets.com/books/1327933063l/6642402.jpg,https://images.gr-assets.com/books/1327933063s/6642402.jpg\n2512,105552,105552,2363835,25,7169914,9780007169920.0,Dr. Seuss,1970.0,Mr. Brown Can Moo! Can You?,Mr. Brown Can Moo! Can You?,en-US,4.11,41437,43269,626,561,2227,9067,11245,20169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349097703l/105552.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2513,10607,10607,1738813,104,034547063X,9780345470640.0,\"Stephen King, Peter Straub\",2001.0,Black House ,\"Black House (The Talisman, #2)\",eng,3.99,40734,44826,1227,722,2405,9632,15995,16072,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263466l/10607.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2514,15719,15719,2371238,42,785123113,9780785123120.0,\"Neil Gaiman, Andy Kubert, Richard Isanove, Peter Sanderson\",2003.0,Marvel 1602,Marvel 1602,eng,3.93,43541,46190,1344,1074,2566,10389,16829,15332,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385102624l/15719.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2515,26722,26722,27405,38,743270371,9780743270370.0,Vince Flynn,2006.0,Act of Treason,\"Act of Treason (Mitch Rapp, #9)\",en-US,4.28,34242,36818,775,350,694,4651,13743,17380,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441133916l/26722._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2516,13330761,13330761,18538203,33,307959945,9780307959940.0,Peter Heller,2012.0,The Dog Stars,The Dog Stars,,3.9,33465,40825,5883,938,2258,8685,16876,12068,https://images.gr-assets.com/books/1388122817l/13330761.jpg,https://images.gr-assets.com/books/1388122817s/13330761.jpg\n2517,19494,19494,1177001,216,,9780743442530.0,John le Carré,1963.0,The Spy Who Came In from the Cold,The Spy Who Came In from the Cold,eng,4.05,37557,45652,2712,318,1680,8752,19424,15478,https://images.gr-assets.com/books/1327719782l/19494.jpg,https://images.gr-assets.com/books/1327719782s/19494.jpg\n2518,133664,133664,6614430,33,441013406,9780441013400.0,Jim Butcher,2005.0,Academ's Fury,\"Academ's Fury (Codex Alera, #2)\",eng,4.27,43941,47672,1321,142,781,6265,19369,21115,https://images.gr-assets.com/books/1381026900l/133664.jpg,https://images.gr-assets.com/books/1381026900s/133664.jpg\n2519,13162,13162,22599,73,446676438,9780446676430.0,James Patterson,1998.0,When the Wind Blows,\"When the Wind Blows (When the Wind Blows, #1)\",eng,3.92,39948,41722,1333,896,2319,9965,14533,14009,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179407l/13162.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2520,6443834,6443834,18525442,76,4103534222,9784103534230.0,\"Haruki Murakami, 村上 春樹\",2009.0,1Q84 Book 1 [Ichi-kyū-hachi-yon],\"1Q84 BOOK 1 (1Q84, #1)\",jpn,3.96,32323,36769,1280,1325,2014,6601,13628,13201,https://images.gr-assets.com/books/1329955413l/6443834.jpg,https://images.gr-assets.com/books/1329955413s/6443834.jpg\n2521,4004,4004,6186633,171,722534876,9780722534880.0,\"Paulo Coelho, Alan R. Clarke\",1987.0,O Diário de um Mago,The Pilgrimage,eng,3.64,28283,35504,1451,1566,3821,9822,10998,9297,https://images.gr-assets.com/books/1307909268l/4004.jpg,https://images.gr-assets.com/books/1307909268s/4004.jpg\n2522,383028,383028,584889,77,385336691,9780385336700.0,Lee Child,2006.0,The Hard Way,\"The Hard Way (Jack Reacher, #10)\",en-US,4.14,36240,44962,1935,149,761,7672,20234,16146,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440269806l/383028._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2523,231821,231821,1757548,74,440226708,9780440226700.0,Sheila Burnford,1960.0,The Incredible Journey,The Incredible Journey,eng,4.16,42094,43213,712,417,1281,8145,14522,18848,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388607402l/231821.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2524,13529,13529,2643796,17,143036661,9780143036660.0,Geraldine Brooks,2004.0,March,March,en-US,3.73,43737,45824,5216,1147,3471,12361,18270,10575,https://images.gr-assets.com/books/1327935441l/13529.jpg,https://images.gr-assets.com/books/1327935441s/13529.jpg\n2525,13359067,13359067,18587348,54,307749606,9780307749600.0,\"Lee Child, Dick Hill\",2012.0,A Wanted Man,\"A Wanted Man (Jack Reacher, #17)\",eng,4.0,33264,44026,3339,347,1700,9745,18193,14041,https://images.gr-assets.com/books/1333623254l/13359067.jpg,https://images.gr-assets.com/books/1333623254s/13359067.jpg\n2526,22369,22369,23395,7,1401209149,9781401209150.0,\"Grant Morrison, Frank Quitely\",2007.0,All-Star Superman (Volume 1),\"All-Star Superman, Vol. 1\",eng,4.06,35061,35648,610,1306,2042,6313,9600,16387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293260l/22369.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2527,12177850,12177850,21619530,31,1780484259,9781780484260.0,George R.R. Martin,2000.0,A Song of Ice and Fire,\"A Song of Ice and Fire (A Song of Ice and Fire, #1-5)\",eng,4.63,20567,37017,1406,186,357,1851,8085,26538,https://images.gr-assets.com/books/1339340118l/12177850.jpg,https://images.gr-assets.com/books/1339340118s/12177850.jpg\n2528,16158558,16158558,21998974,52,425259854,9780425259860.0,Nora Roberts,2013.0,Dark Witch,\"Dark Witch (The Cousins O'Dwyer Trilogy, #1)\",eng,3.91,33481,43326,3641,1221,2934,9894,13945,15332,https://images.gr-assets.com/books/1480131721l/16158558.jpg,https://images.gr-assets.com/books/1480131721s/16158558.jpg\n2529,7198988,7198988,7859868,63,312590970,9780312590970.0,Alyson Noel,2010.0,Dark Flame,\"Dark Flame (The Immortals, #4)\",eng,3.73,51250,53645,1805,2400,5698,13679,13943,17925,https://images.gr-assets.com/books/1362336376l/7198988.jpg,https://images.gr-assets.com/books/1362336376s/7198988.jpg\n2530,25734248,25734248,45424866,68,1101990260,9781101990260.0,Fiona Barton,2016.0,The Widow,The Widow,eng,3.49,36504,48265,5692,1257,4915,17948,17226,6919,https://images.gr-assets.com/books/1449178687l/25734248.jpg,https://images.gr-assets.com/books/1449178687s/25734248.jpg\n2531,6255144,6255144,6438210,33,545060451,9780545060460.0,Patrick Carman,2009.0,The Black Circle,\"The Black Circle (The 39 Clues, #5)\",en-US,4.0,42084,42610,705,1025,2229,9613,12392,17351,https://images.gr-assets.com/books/1357211043l/6255144.jpg,https://images.gr-assets.com/books/1357211043s/6255144.jpg\n2532,15820748,15820748,21549783,20,62248162,9780062248170.0,Kiera Cass,2013.0,The Prince,\"The Prince (The Selection, #0.5)\",,3.93,51454,55572,3588,844,3552,13728,17701,19747,https://images.gr-assets.com/books/1354127071l/15820748.jpg,https://images.gr-assets.com/books/1354127071s/15820748.jpg\n2533,16069030,16069030,21861552,39,374384681,9780374384680.0,Marie Rutkoski,2014.0,The Winner's Curse,\"The Winner's Curse (The Winner's Trilogy, #1)\",eng,4.03,56635,65183,9748,1427,3122,11564,25269,23801,https://images.gr-assets.com/books/1377023523l/16069030.jpg,https://images.gr-assets.com/books/1377023523s/16069030.jpg\n2534,71332,71332,69081,57,679766758,9780679766760.0,Sapphire,1996.0,Push,Push,eng,3.82,36207,41582,5572,1140,2859,10225,15640,11718,https://images.gr-assets.com/books/1414633395l/71332.jpg,https://images.gr-assets.com/books/1414633395s/71332.jpg\n2535,17465515,17465515,26129550,67,1609451341,9781609451350.0,\"Elena Ferrante, Ann Goldstein\",2012.0,Storia del nuovo cognome,The Story of a New Name (The Neapolitan Novels #2),eng,4.37,33395,43753,3822,207,632,4162,16700,22052,https://images.gr-assets.com/books/1501012849l/17465515.jpg,https://images.gr-assets.com/books/1501012849s/17465515.jpg\n2536,70539,70539,615175,104,345413970,9780345413970.0,Arthur C. Clarke,1982.0,2010: Odyssey Two,\"2010: Odyssey Two (Space Odyssey, #2)\",eng,3.89,36907,40756,812,231,1756,10978,17282,10509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271989l/70539.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2537,6406018,6406018,6594903,15,759530017,9780759530010.0,Atsushi Ohkubo,2004.0,ソウルイーター 1,\"Soul Eater, Vol. 01 (Soul Eater, #1)\",en-US,4.3,34289,34473,354,532,1299,4899,8255,19488,https://images.gr-assets.com/books/1443900841l/6406018.jpg,https://images.gr-assets.com/books/1443900841s/6406018.jpg\n2538,15803059,15803059,21587729,18,1451645821,9781451645830.0,William Kent Krueger,2013.0,Ordinary Grace,Ordinary Grace,eng,4.14,34720,42584,6121,377,1096,6442,18751,15918,https://images.gr-assets.com/books/1358264094l/15803059.jpg,https://images.gr-assets.com/books/1358264094s/15803059.jpg\n2539,14839,14839,3238533,89,446611778,9780446611770.0,David Baldacci,2001.0,Last Man Standing,Last Man Standing,eng,4.03,36265,38118,708,401,1245,7983,15634,12855,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388373688l/14839.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2540,118944,118944,114515,20,1596431520,9781596431520.0,Gene Luen Yang,2006.0,American Born Chinese,American Born Chinese,eng,3.88,47824,49910,5799,1166,3049,11590,19020,15085,https://images.gr-assets.com/books/1317066615l/118944.jpg,https://images.gr-assets.com/books/1317066615s/118944.jpg\n2541,1335184,1335184,1324719,3,307001040,9780307001050.0,\"Eugene Bradley Coco, Ron Dias, Walt Disney Company\",1960.0,Peter Pan (Little Golden Book),Peter Pan (A Little Golden Book),eng,4.32,38907,38911,76,508,1199,6020,8775,22409,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388943253l/1335184.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2542,15990969,15990969,21747190,34,991686004,9780991686000.0,K.A. Tucker,2012.0,Ten Tiny Breaths,\"Ten Tiny Breaths (Ten Tiny Breaths, #1)\",eng,4.16,54718,59991,5039,1110,2386,9118,20669,26708,https://images.gr-assets.com/books/1368808763l/15990969.jpg,https://images.gr-assets.com/books/1368808763s/15990969.jpg\n2543,7141642,7141642,7405757,67,1400065453,9781400065460.0,David Mitchell,2010.0,The Thousand Autumns of Jacob de Zoet,The Thousand Autumns of Jacob de Zoet,eng,4.03,36021,42312,5175,859,2105,7073,17293,14982,https://images.gr-assets.com/books/1320540908l/7141642.jpg,https://images.gr-assets.com/books/1320540908s/7141642.jpg\n2544,18525,18525,756664,371,486282082,9780486282080.0,Christopher Marlowe,1604.0,The Tragical History of the Life and Death of Doctor Faustus,Dr. Faustus,eng,3.79,39518,45003,1126,774,3448,12430,16245,12106,https://images.gr-assets.com/books/1392156779l/18525.jpg,https://images.gr-assets.com/books/1392156779s/18525.jpg\n2545,84145,84145,991924,43,312984839,9780312984830.0,Sherrilyn Kenyon,2003.0,Dance with the Devil,Dance with the Devil (Dark-Hunter #3),eng,4.39,51282,54588,1710,221,911,6346,16880,30230,https://images.gr-assets.com/books/1388703603l/84145.jpg,https://images.gr-assets.com/books/1388703603s/84145.jpg\n2546,6614,6614,2713437,71,786887079,9780786887070.0,Candace Bushnell,2005.0,Lipstick Jungle,Lipstick Jungle,eng,3.39,35792,37339,945,2213,5372,12502,10083,7169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390589010l/6614.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2547,79379,79379,1827952,76,446611212,9780446611210.0,James Patterson,2001.0,Violets Are Blue,\"Violets Are Blue (Alex Cross, #7)\",eng,3.94,41555,44214,940,400,1758,11115,17683,13258,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440196942l/79379._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2548,180116,180116,1899199,69,671791540,9780671791540.0,\"Anthony Robbins, Tony Robbins, Frederick L. Covan\",1992.0,\"Awaken the Giant Within: How to Take Immediate Control of Your Mental, Emotional, Physical and Financial Destiny!\",\"Awaken the Giant Within: How to Take Immediate Control of Your Mental, Emotional, Physical and Financial Destiny!\",eng,4.1,33586,35804,831,767,1646,6524,11057,15810,https://images.gr-assets.com/books/1415677371l/180116.jpg,https://images.gr-assets.com/books/1415677371s/180116.jpg\n2549,30246,30246,1136422,35,515134457,9780515134450.0,Laurell K. Hamilton,1998.0,\"Blue Moon (Anita Blake, Vampire Hunter, #8)\",\"Blue Moon (Anita Blake, Vampire Hunter, #8)\",en-US,4.04,52170,55094,909,760,2838,11599,17959,21938,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436996677l/30246._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2550,30242,30242,2534676,45,515134473,9780515134480.0,Laurell K. Hamilton,1998.0,\"Burnt Offerings (Anita Blake, Vampire Hunter, #7)\",\"Burnt Offerings (Anita Blake, Vampire Hunter, #7)\",en-US,4.07,53980,57065,887,585,2597,11971,19204,22708,https://images.gr-assets.com/books/1289528358l/30242.jpg,https://images.gr-assets.com/books/1289528358s/30242.jpg\n2551,19286669,19286669,27334868,23,1250010713,9781250010710.0,Diane Chamberlain,2014.0,The Silent Sister,\"The Silent Sister (Riley MacPherson, #1)\",eng,3.93,31741,41004,4201,439,1683,9336,18384,11162,https://images.gr-assets.com/books/1406526579l/19286669.jpg,https://images.gr-assets.com/books/1406526579s/19286669.jpg\n2552,9597,9597,1005005,91,385333781,9780385333790.0,Kurt Vonnegut Jr.,1952.0,Player Piano,Player Piano,eng,3.85,34362,36724,1365,280,1863,10065,15319,9197,https://images.gr-assets.com/books/1488041609l/9597.jpg,https://images.gr-assets.com/books/1488041609s/9597.jpg\n2553,10155,10155,1098725,727,812967259,9780812967260.0,Arthur Conan Doyle,1912.0,The Lost World ,\"The Lost World (Professor Challenger, #1)\",,3.92,39169,44585,1440,375,1987,11879,17079,13265,https://images.gr-assets.com/books/1320504012l/10155.jpg,https://images.gr-assets.com/books/1320504012s/10155.jpg\n2554,34511,34511,2073281,58,,,Terry Pratchett,2003.0,Monstrous Regiment,\"Monstrous Regiment (Discworld, #31; Industrial Revolution, #3)\",eng,4.18,38851,48251,1286,270,1529,8216,17450,20786,https://images.gr-assets.com/books/1375908503l/34511.jpg,https://images.gr-assets.com/books/1375908503s/34511.jpg\n2555,60931,60931,1049657,40,807083690,9780807083700.0,Octavia E. Butler,1979.0,Kindred,Kindred,eng,4.18,43332,47766,5809,437,1577,7155,18225,20372,https://images.gr-assets.com/books/1339423248l/60931.jpg,https://images.gr-assets.com/books/1339423248s/60931.jpg\n2556,8282,8282,3327855,70,60885424,9780060885430.0,\"Laura Ingalls Wilder, Garth Williams\",1940.0,\"The Long Winter (Little House, #6)\",\"The Long Winter (Little House, #6)\",,4.16,54443,59849,1283,1030,1791,10614,19848,26566,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449683l/8282.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2557,525488,944267,55483783,60,310247454,9780310247460.0,\"Henry Cloud, John Townsend\",1992.0,Boundaries,\"Boundaries: When to Say Yes, How to Say No to Take Control of Your Life\",en-US,4.19,19619,34413,1632,594,1297,5445,10837,16240,https://images.gr-assets.com/books/1406403521l/525488.jpg,https://images.gr-assets.com/books/1406403521s/525488.jpg\n2558,17378508,17378508,24170141,25,545424968,9780545424970.0,Maggie Stiefvater,2014.0,\"Blue Lily, Lily Blue\",\"Blue Lily, Lily Blue (The Raven Cycle, #3)\",eng,4.32,56637,62547,8312,316,1095,7286,23370,30480,https://images.gr-assets.com/books/1477103826l/17378508.jpg,https://images.gr-assets.com/books/1477103826s/17378508.jpg\n2559,43945,43945,911489,127,99399016,9780099399020.0,\"Philip Roth, Luca Marinelli\",1969.0,Portnoy's Complaint,Portnoy's Complaint,,3.69,35855,42172,2104,1514,3886,11149,15064,10559,https://images.gr-assets.com/books/1327929440l/43945.jpg,https://images.gr-assets.com/books/1327929440s/43945.jpg\n2560,815716,815716,467474,57,785274316,9780785274320.0,\"John C. Maxwell, Zig Ziglar\",1998.0,The 21 Irrefutable Laws of Leadership,The 21 Irrefutable Laws of Leadership: Follow Them and People Will Follow You,eng,4.12,30255,31981,765,583,1283,5630,10674,13811,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440064752l/815716._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2561,51019,51019,1019987,97,385491026,9780385491020.0,Margaret Atwood,1988.0,Cat's Eye,Cat's Eye,eng,3.92,42317,45091,2468,626,2206,10727,18149,13383,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385207977l/51019.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2562,15783307,15783307,21500353,13,,,J. Sterling,2012.0,The Perfect Game,\"The Perfect Game (The Perfect Game, #1)\",eng,3.97,50442,52594,2982,1784,3105,10113,17664,19928,https://images.gr-assets.com/books/1345824139l/15783307.jpg,https://images.gr-assets.com/books/1345824139s/15783307.jpg\n2563,7540092,7540092,7160343,62,1406310271,9781406310280.0,Patrick Ness,2010.0,Monsters of Men,\"Monsters of Men (Chaos Walking, #3)\",eng,4.25,43024,48311,4917,984,1772,6447,14107,25001,https://images.gr-assets.com/books/1467392755l/7540092.jpg,https://images.gr-assets.com/books/1467392755s/7540092.jpg\n2564,8647,8647,4088,34,1841492051,9781841492060.0,Orson Scott Card,2005.0,Shadow of the Giant,\"Shadow of the Giant (Ender's Shadow, #4)\",eng,3.98,37479,41690,885,372,1795,9330,16805,13388,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165699277l/8647._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2565,10128428,10128428,14826219,26,545027896,9780545027890.0,Brian Selznick,2011.0,Wonderstruck,Wonderstruck,eng,4.16,42530,43731,5619,1077,1656,6518,14502,19978,https://images.gr-assets.com/books/1327885739l/10128428.jpg,https://images.gr-assets.com/books/1327885739s/10128428.jpg\n2566,748862,748862,276238,30,446519138,9780446519140.0,Sarah Ban Breathnach,1995.0,Simple Abundance:  A Daybook of Comfort and Joy,Simple Abundance:  A Daybook of Comfort and Joy,en-US,3.96,32751,33386,513,641,1940,7866,10456,12483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431058847l/748862.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2567,9917938,9917938,14692536,54,1442429984,9781442429990.0,Moira Young,2011.0,Blood Red Road ,\"Blood Red Road (Dust Lands, #1)\",eng,3.94,47690,52256,5562,2426,3239,9333,17437,19821,https://images.gr-assets.com/books/1293651959l/9917938.jpg,https://images.gr-assets.com/books/1293651959s/9917938.jpg\n2568,13131,13131,15302,72,316014796,9780316014790.0,\"James Patterson, Maxine Paetro\",2007.0,The 6th Target,\"The 6th Target (Women's Murder Club, #6)\",en-US,4.02,41500,45657,1499,260,1602,10352,18377,15066,https://images.gr-assets.com/books/1336275870l/13131.jpg,https://images.gr-assets.com/books/1336275870s/13131.jpg\n2569,40395,40395,1129624,558,143104888,9780143104890.0,\"Edgar Rice Burroughs, John Seelye\",1912.0,A Princess of Mars,\"A Princess of Mars (Barsoom, #1)\",en-GB,3.8,34536,42872,2994,848,2797,12057,15670,11500,https://images.gr-assets.com/books/1332272118l/40395.jpg,https://images.gr-assets.com/books/1332272118s/40395.jpg\n2570,17262203,17262203,17613051,44,385528787,9780385528790.0,Margaret Atwood,2013.0,MaddAddam,\"MaddAddam (MaddAddam, #3)\",eng,3.98,33861,41975,4289,391,1819,9039,17713,13013,https://images.gr-assets.com/books/1366394020l/17262203.jpg,https://images.gr-assets.com/books/1366394020s/17262203.jpg\n2571,77770,77770,4132,65,60264802,9780060264800.0,\"Laura Ingalls Wilder, Garth Williams\",1943.0,These Happy Golden Years,\"These Happy Golden Years (Little House, #8)\",eng,4.17,51432,53811,966,500,1793,10015,17506,23997,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389579632l/77770.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2572,19596,19596,24386,21,812971426,9780812971420.0,Victoria Finlay,2003.0,Color: A Natural History of the Palette,Color: A Natural History of the Palette,en-US,3.74,42256,42661,514,3370,3712,9265,10472,15842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427998243l/19596.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2573,5357,5357,1588709,90,99481685,9780099481680.0,John Grisham,2001.0,Skipping Christmas,Skipping Christmas,eng,3.47,39486,45691,3496,1793,6012,15826,13273,8787,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347598629l/5357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2575,12022079,12022079,16987689,27,312577206,9780312577210.0,Kristin Hannah,2012.0,Home Front,Home Front,eng,4.12,36972,41284,4442,478,1286,7087,16462,15971,https://images.gr-assets.com/books/1344319152l/12022079.jpg,https://images.gr-assets.com/books/1344319152s/12022079.jpg\n2576,16117506,16117506,21935683,40,1476731535,9781476731540.0,Christina Lauren,2013.0,Beautiful Stranger,\"Beautiful Stranger (Beautiful Bastard, #2)\",eng,4.24,55764,60515,3358,523,1742,8534,21657,28059,https://images.gr-assets.com/books/1359073239l/16117506.jpg,https://images.gr-assets.com/books/1359073239s/16117506.jpg\n2577,127459,127459,3072872,37,385730306,9780385730300.0,Libba Bray,2007.0,The Sweet Far Thing,\"The Sweet Far Thing (Gemma Doyle, #3)\",eng,3.97,54602,57128,3573,1279,3746,11932,18530,21641,https://images.gr-assets.com/books/1358704741l/127459.jpg,https://images.gr-assets.com/books/1358704741s/127459.jpg\n2578,5197,5197,950736,39,375702709,9780375702710.0,Ernest J. Gaines,1993.0,A Lesson Before Dying,A Lesson Before Dying,en-US,3.93,40651,42113,2565,634,2319,9793,16119,13248,https://images.gr-assets.com/books/1405866945l/5197.jpg,https://images.gr-assets.com/books/1405866945s/5197.jpg\n2579,178357,178357,459137,8,349119759,9780349119760.0,David Sedaris,1998.0,SantaLand Diaries,SantaLand Diaries,en-US,4.33,38297,38509,393,284,797,4876,12574,19978,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349066296l/178357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2580,24820165,24820165,44460981,58,1455520616,9781455520620.0,Nicholas Sparks,2015.0,See Me,See Me,eng,3.93,31774,40830,3841,784,2412,9314,14890,13430,https://images.gr-assets.com/books/1439564033l/24820165.jpg,https://images.gr-assets.com/books/1439564033s/24820165.jpg\n2581,7415016,7415016,9351456,66,385342047,9780385342050.0,Sophie Kinsella,2010.0,Mini Shopaholic,\"Mini Shopaholic (Shopaholic, #6)\",eng,3.7,40137,45244,2843,1039,4010,13627,15228,11340,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191918l/7415016.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2584,393199,393199,2374970,164,015626224X,9780156262250.0,George Orwell,1933.0,Down and Out in Paris and London,Down and Out in Paris and London,en-US,4.1,34739,40499,2633,199,1194,7293,17621,14192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347697665l/393199.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2585,6081685,6081685,6258392,18,1427814031,9781427814040.0,Hiro Fujiwara,2006.0,会長はメイド様! 1,\"Maid-sama! Vol. 01 (Maid-sama!, #1)\",eng,4.4,36028,36535,409,491,1130,4239,8017,22658,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452777l/6081685.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2586,381102,381102,981140,10,1551924013,9781551924010.0,Nick Bantock,1991.0,Griffin & Sabine: An Extraordinary Correspondence,Griffin and Sabine (Griffin & Sabine #1),eng,4.01,36496,38462,1029,1687,2142,6727,11476,16430,https://images.gr-assets.com/books/1356716196l/381102.jpg,https://images.gr-assets.com/books/1356716196s/381102.jpg\n2587,14061957,14061957,19699754,33,080509461X,9780805094620.0,Leigh Bardugo,2014.0,Ruin and Rising,\"Ruin and Rising (Shadow and Bone, #3)\",eng,4.17,56836,64410,9218,728,2162,10158,23691,27671,https://images.gr-assets.com/books/1392398530l/14061957.jpg,https://images.gr-assets.com/books/1392398530s/14061957.jpg\n2588,3503947,3503947,3545602,18,9773513912,,أحمد خالد توفيق,2008.0,يوتوبيا,يوتوبيا,ara,3.9,31669,32536,3824,997,2111,6760,11945,10723,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1214056271l/3503947.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2589,421549,421549,3361285,50,743294254,9780743294260.0,Jennifer Weiner,2000.0,Certain Girls,Certain Girls (Cannie Shapiro #2),eng,3.7,39334,41186,2732,770,3159,12945,15187,9125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264315l/421549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2590,13152194,13152194,18330294,28,030794932X,9780307949320.0,Cheryl Strayed,2012.0,Tiny Beautiful Things: Advice on Love and Life from Dear Sugar,Tiny Beautiful Things: Advice on Love and Life from Dear Sugar,,4.29,33979,39789,4859,575,1246,5163,11950,20855,https://images.gr-assets.com/books/1339807006l/13152194.jpg,https://images.gr-assets.com/books/1339807006s/13152194.jpg\n2591,743599,743599,21900569,46,440244161,9780440244160.0,Karen Marie Moning,1999.0,Beyond the Highland Mist,\"Beyond the Highland Mist (Highlander, #1)\",eng,3.99,51854,55674,2610,1410,3320,11531,17621,21792,https://images.gr-assets.com/books/1348924088l/743599.jpg,https://images.gr-assets.com/books/1348924088s/743599.jpg\n2592,15654,15654,1353958,42,451203267,9780451203270.0,Ann Rule,1980.0,The Stranger Beside Me,The Stranger Beside Me: Ted Bundy The Shocking Inside Story,en-GB,4.13,35824,39253,1791,362,1265,7215,14491,15920,https://images.gr-assets.com/books/1330072383l/15654.jpg,https://images.gr-assets.com/books/1330072383s/15654.jpg\n2593,3054684,3054684,3085581,46,61284408,9780061284400.0,Claudia Gray,2009.0,Stargazer,\"Stargazer (Evernight, #2)\",eng,3.8,49050,51143,1382,1581,4238,13442,15417,16465,https://images.gr-assets.com/books/1306376986l/3054684.jpg,https://images.gr-assets.com/books/1306376986s/3054684.jpg\n2594,7668,7668,2045220,93,606298231,9780606298230.0,Michael Crichton,1992.0,Rising Sun,Rising Sun,eng,3.61,38179,41025,713,714,3550,14199,14925,7637,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165637857l/7668._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2595,136167,136167,1030360,81,440060672,9780440060670.0,Sidney Sheldon,1973.0,The Other Side of Midnight,The Other Side of Midnight (Midnight #1),eng,3.89,34570,36728,755,367,2028,9932,13281,11120,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172077093l/136167.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2596,7936809,7936809,14180015,77,316069485,9780316069490.0,Michael Connelly,2010.0,The Reversal,\"The Reversal (Harry Bosch, #16; Mickey Haller, #4; Harry Bosch Universe, #19)\",eng,4.13,34973,41619,2529,137,747,7303,19000,14432,https://images.gr-assets.com/books/1421934033l/7936809.jpg,https://images.gr-assets.com/books/1421934033s/7936809.jpg\n2597,10065,10065,551030,30,380731509,9780380731500.0,\"Louis Sachar, Joel Schick\",1989.0,Wayside School is Falling Down,Wayside School Is Falling Down (Wayside School #2),eng,4.17,45631,46884,765,558,1595,8558,14675,21498,https://images.gr-assets.com/books/1405055796l/10065.jpg,https://images.gr-assets.com/books/1405055796s/10065.jpg\n2598,7274337,7274337,8419478,39,307713547,9780307713540.0,\"Julie Orringer, Arthur Morey\",2010.0,The Invisible Bridge,The Invisible Bridge,eng,4.19,35122,39430,4331,501,1386,5490,14904,17149,https://images.gr-assets.com/books/1274139506l/7274337.jpg,https://images.gr-assets.com/books/1274139506s/7274337.jpg\n2599,15861491,15861491,21611266,40,61974618,9780061974620.0,Pittacus Lore,2013.0,The Fall of Five,\"The Fall of Five (Lorien Legacies, #4)\",eng,4.24,41533,46153,3453,257,1127,7059,16613,21097,https://images.gr-assets.com/books/1375365364l/15861491.jpg,https://images.gr-assets.com/books/1375365364s/15861491.jpg\n2600,56759,56759,2390173,577,141439785,9780141439780.0,\"Thomas Hardy, Keith Wilson\",1886.0,The Mayor of Casterbridge,The Mayor of Casterbridge,eng,3.8,40063,44215,1629,1357,3095,11048,16393,12322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388276915l/56759.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2601,8732,8732,1665907,101,,9780141962820.0,John Steinbeck,1933.0,The Red Pony,The Red Pony,,3.42,37535,40566,1519,2695,4650,13343,12506,7372,https://images.gr-assets.com/books/1391231816l/8732.jpg,https://images.gr-assets.com/books/1391231816s/8732.jpg\n2602,498389,498389,968931,122,99478536,9780099478540.0,Jo Nesbø,2003.0,Marekors ,\"The Devil's Star (Harry Hole, #5)\",eng,4.03,32907,40620,1887,453,1184,7729,18559,12695,https://images.gr-assets.com/books/1328611163l/498389.jpg,https://images.gr-assets.com/books/1328611163s/498389.jpg\n2603,5159,5159,2606620,52,425169693,9780425169700.0,Alice Hoffman,1997.0,Here on Earth ,Here on Earth,eng,3.68,38954,39937,1347,870,3080,12676,14796,8515,https://images.gr-assets.com/books/1388299278l/5159.jpg,https://images.gr-assets.com/books/1388299278s/5159.jpg\n2604,119091,119091,2926089,61,679436545,9780679436550.0,\"Anne Rice, Tim Curry\",1994.0,Taltos,\"Taltos (Lives of the Mayfair Witches, #3)\",,3.78,40915,44430,589,1122,3857,12039,13982,13430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328041605l/119091.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2605,190361,190361,2477403,32,,9780515134510.0,Laurell K. Hamilton,2000.0,\"Obsidian Butterfly (Anita Blake, Vampire Hunter, #9)\",\"Obsidian Butterfly (Anita Blake, Vampire Hunter, #9)\",eng,4.08,51571,54248,1303,938,2960,10342,16741,23267,https://images.gr-assets.com/books/1327139907l/190361.jpg,https://images.gr-assets.com/books/1327139907s/190361.jpg\n2606,9268487,9268487,14150105,33,345503821,9780345503820.0,Peter V. Brett,2013.0,The Daylight War,\"The Daylight War (Demon Cycle, #3)\",eng,4.23,34419,39164,1816,371,1163,5360,14433,17837,https://images.gr-assets.com/books/1360777092l/9268487.jpg,https://images.gr-assets.com/books/1360777092s/9268487.jpg\n2607,1248179,1248179,2934427,98,385515049,9780385515050.0,John Grisham,2008.0,The Appeal,The Appeal,en-US,3.58,39100,41931,3678,1102,3975,14287,14732,7835,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422456542l/1248179.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2608,13830,13830,1123089,48,689878583,9780689878590.0,Tamora Pierce,1986.0,The Woman Who Rides Like a Man,\"The Woman Who Rides Like a Man (Song of the Lioness, #3)\",en-US,4.2,53413,57255,1144,439,1616,9814,19397,25989,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425711705l/13830.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2609,8680417,9317452,13552476,52,034552425X,9780345524260.0,Ben Aaronovitch,2011.0,Rivers of London,\"Midnight Riot (Peter Grant, #1)\",eng,3.92,21519,48677,5298,838,2411,10496,20808,14124,https://images.gr-assets.com/books/1389055317l/8680417.jpg,https://images.gr-assets.com/books/1389055317s/8680417.jpg\n2610,9303,9303,1065212,50,60090375,9780060090370.0,Marian Keyes,1996.0,Lucy Sullivan is Getting Married,Lucy Sullivan Is Getting Married,en-US,3.74,38473,39904,725,974,2944,11832,13783,10371,https://images.gr-assets.com/books/1407707569l/9303.jpg,https://images.gr-assets.com/books/1407707569s/9303.jpg\n2611,34501,34501,2889659,73,055255264X,9780552552650.0,Terry Pratchett,2004.0,A Hat Full of Sky,\"A Hat Full of Sky (Discworld, #32; Tiffany Aching, #2)\",eng,4.29,43460,49173,1400,232,960,6673,17623,23685,https://images.gr-assets.com/books/1319037274l/34501.jpg,https://images.gr-assets.com/books/1319037274s/34501.jpg\n2612,50365,50365,1651078,55,60786523,9780060786530.0,Vikram Seth,1993.0,A Suitable Boy,\"A Suitable Boy (A Suitable Boy, #1)\",en-US,4.1,33973,35509,1714,685,1650,6032,12254,14888,https://images.gr-assets.com/books/1329421639l/50365.jpg,https://images.gr-assets.com/books/1329421639s/50365.jpg\n2613,22738563,22738563,42278179,49,,,Chimamanda Ngozi Adichie,2014.0,We Should All Be Feminists,We Should All Be Feminists,eng,4.47,46048,58660,7218,349,769,4862,17453,35227,https://images.gr-assets.com/books/1430821222l/22738563.jpg,https://images.gr-assets.com/books/1430821222s/22738563.jpg\n2614,8087906,8087906,10974973,20,1841497975,9781841497980.0,Patricia Briggs,2011.0,River Marked,\"River Marked (Mercy Thompson, #6)\",en-GB,4.26,52220,62360,3174,243,1303,8992,23173,28649,https://images.gr-assets.com/books/1305738320l/8087906.jpg,https://images.gr-assets.com/books/1305738320s/8087906.jpg\n2615,4135,4135,7838,19,446578843,9780446578840.0,Amy Sedaris,2006.0,I Like You: Hospitality Under the Influence,I Like You: Hospitality Under the Influence,eng,3.87,34212,34919,1412,853,2349,8406,12278,11033,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923960l/4135.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2616,22320,22320,2455062,48,425198685,9780425198680.0,William Gibson,2003.0,Pattern Recognition,\"Pattern Recognition (Blue Ant, #1)\",eng,3.86,34917,37818,1851,581,2188,9491,15252,10306,https://images.gr-assets.com/books/1288326931l/22320.jpg,https://images.gr-assets.com/books/1288326931s/22320.jpg\n2617,21936809,21936809,41240456,55,62267523,9780062267530.0,Peter  Swanson,2015.0,The Kind Worth Killing,The Kind Worth Killing,eng,4.03,35225,43845,5526,503,1567,8049,19937,13789,https://images.gr-assets.com/books/1417981750l/21936809.jpg,https://images.gr-assets.com/books/1417981750s/21936809.jpg\n2618,11525,11525,141,28,761104844,9780761104840.0,Patricia Schultz,2003.0,\"1,000 Places to See Before You Die\",\"1,000 Places to See Before You Die\",,3.83,33025,33805,450,902,2333,8984,10877,10709,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387718704l/11525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2619,355916,355916,3192037,63,60577371,9780060577380.0,\"Angie Sage, Mark Zug\",2007.0,Physik,\"Physik (Septimus Heap, #3)\",en-US,3.99,42838,44757,1106,615,2177,10244,15801,15920,https://images.gr-assets.com/books/1398052658l/355916.jpg,https://images.gr-assets.com/books/1398052658s/355916.jpg\n2620,6667,6667,113746,102,141311401,9780141311400.0,\"Roald Dahl, Quentin Blake\",1984.0,Boy: Tales of Childhood,Boy: Tales of Childhood,eng,4.09,38240,43021,2134,453,1516,7991,16674,16387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165604288l/6667._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2621,10890,10890,14837,12,385496095,9780385496090.0,Anne Lamott,1999.0,Traveling Mercies: Some Thoughts on Faith,Traveling Mercies: Some Thoughts on Faith,en-CA,4.15,36466,37537,2197,474,1317,6020,14006,15720,https://images.gr-assets.com/books/1403182174l/10890.jpg,https://images.gr-assets.com/books/1403182174s/10890.jpg\n2622,184657,184657,2751330,39,1416548009,9781416548000.0,Vince Flynn,2004.0,Memorial Day,\"Memorial Day (Mitch Rapp, #7)\",eng,4.3,31864,34797,760,278,647,4271,12675,16926,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172522994l/184657._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2623,13836,13836,1171314,42,1416903437,9781416903440.0,Tamora Pierce,1992.0,\"Wild Magic (Immortals, #1)\",\"Wild Magic (Immortals, #1)\",en-US,4.32,52165,56178,1473,305,1163,7675,17873,29162,https://images.gr-assets.com/books/1166573613l/13836.jpg,https://images.gr-assets.com/books/1166573613s/13836.jpg\n2624,30013,30013,1128436,95,,,Isaac Asimov,1988.0,Prelude to Foundation,Prelude to Foundation,eng,4.05,40342,45586,1048,330,1770,9695,17406,16385,https://images.gr-assets.com/books/1335782474l/30013.jpg,https://images.gr-assets.com/books/1335782474s/30013.jpg\n2625,56728,56728,900984,26,1859855423,9781859855420.0,Max Lucado,1997.0,You Are Special: A Story for Everyone,\"You Are Special (Wemmicksville, #1)\",eng,4.45,41052,42349,1036,541,1027,4314,9506,26961,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348346102l/56728.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2626,18798983,18798983,26724902,42,399171614,9780399171610.0,Renee Ahdieh,2015.0,The Wrath & the Dawn,\"The Wrath and the Dawn (The Wrath and the Dawn, #1)\",eng,4.19,58175,64871,11884,1376,2738,8655,21498,30604,https://images.gr-assets.com/books/1417956963l/18798983.jpg,https://images.gr-assets.com/books/1417956963s/18798983.jpg\n2627,6260997,6260997,6444203,28,307267148,9780307267150.0,\"Nicholas D. Kristof, Sheryl WuDunn\",2008.0,Half the Sky: Turning Oppression into Opportunity for Women Worldwide,Half the Sky: Turning Oppression into Opportunity for Women Worldwide,eng,4.31,37270,40427,4627,441,1098,5050,12776,21062,https://images.gr-assets.com/books/1320486170l/6260997.jpg,https://images.gr-assets.com/books/1320486170s/6260997.jpg\n2628,10798418,10798418,15293391,55,316127256,9780316127260.0,\"Daniel Handler, Maira Kalman\",2011.0,Why We Broke Up,Why We Broke Up,eng,3.49,41202,45720,6387,2558,5891,13476,14245,9550,https://images.gr-assets.com/books/1348728685l/10798418.jpg,https://images.gr-assets.com/books/1348728685s/10798418.jpg\n2629,18243700,18243700,25691778,26,1408852594,9781408852590.0,Sarah J. Maas,2014.0,The Assassin's Blade,\"The Assassin's Blade (Throne of Glass, #0.1-0.5)\",eng,4.48,53227,62872,7538,288,731,5143,19194,37516,https://images.gr-assets.com/books/1384362444l/18243700.jpg,https://images.gr-assets.com/books/1384362444s/18243700.jpg\n2630,2807199,2807199,2833088,37,1400064759,9781400064760.0,Curtis Sittenfeld,2008.0,American Wife,American Wife,eng,3.72,38537,41909,5568,822,3047,11813,17742,8485,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441087673l/2807199._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2631,29394,29394,6614461,27,441014348,9780441014350.0,Jim Butcher,2006.0,Cursor's Fury,\"Cursor's Fury (Codex Alera, #3)\",eng,4.36,41344,45918,1126,130,537,4858,17448,22945,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360145l/29394.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2632,334176,334176,3349153,44,449912558,9780449912550.0,Mary Doria Russell,1996.0,The Sparrow,\"The Sparrow (The Sparrow, #1)\",eng,4.17,40781,43902,5540,1005,2008,5868,14511,20510,https://images.gr-assets.com/books/1230829367l/334176.jpg,https://images.gr-assets.com/books/1230829367s/334176.jpg\n2633,10910,10910,3349593,43,743422449,9780743422440.0,Jodi Picoult,1996.0,Mercy,Mercy,en-GB,3.57,37252,39731,2502,1329,4347,12696,13167,8192,https://images.gr-assets.com/books/1299040130l/10910.jpg,https://images.gr-assets.com/books/1299040130s/10910.jpg\n2634,20727654,20727654,40051132,20,1477823832,9781477823840.0,Charlie N. Holmberg,2014.0,The Paper Magician,\"The Paper Magician (The Paper Magician Trilogy, #1)\",eng,3.63,25934,41333,4844,1057,4070,12691,14867,8648,https://images.gr-assets.com/books/1405618531l/20727654.jpg,https://images.gr-assets.com/books/1405618531s/20727654.jpg\n2635,6023056,6023056,6198519,69,61728977,9780061728980.0,Steve Harvey,2009.0,\"Act Like a Lady, Think Like a Man\",\"Act Like a Lady, Think Like a Man: What Men Really Think About Love, Relationships, Intimacy, and Commitment\",,3.82,29059,32877,2328,1462,2887,7462,9337,11729,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348951893l/6023056.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2637,89724,89724,847007,79,143039970,9780143039980.0,\"Shirley Jackson, Jonathan Lethem\",1962.0,We Have Always Lived in the Castle,We Have Always Lived in the Castle,eng,4.05,43602,51375,6521,630,2274,9697,20283,18491,https://images.gr-assets.com/books/1415357189l/89724.jpg,https://images.gr-assets.com/books/1415357189s/89724.jpg\n2639,2761626,2761626,2787335,99,316166294,9780316166290.0,Michael Connelly,2008.0,The Brass Verdict,\"The Brass Verdict (Harry Bosch, #14; Mickey Haller, #2; Harry Bosch Universe, #17)\",eng,4.08,36497,42830,2722,110,719,7939,20783,13279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442889420l/2761626._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2640,216442,216442,463790,54,553560719,9780553560720.0,Timothy Zahn,1992.0,Star Wars: Dark Force Rising,Dark Force Rising,en-US,4.14,37197,39976,806,179,1088,7368,15725,15616,https://images.gr-assets.com/books/1451092000l/216442.jpg,https://images.gr-assets.com/books/1451092000s/216442.jpg\n2641,17262159,17262159,23756807,78,385344341,9780385344340.0,Lee Child,2013.0,Never Go Back ,\"Never Go Back (Jack Reacher, #18)\",eng,4.02,27578,42885,3558,328,1392,8949,18578,13638,https://images.gr-assets.com/books/1467947214l/17262159.jpg,https://images.gr-assets.com/books/1467947214s/17262159.jpg\n2642,183656,183656,3155307,29,60575808,9780060575810.0,Gail Carson Levine,2001.0,The Two Princesses of Bamarre,The Two Princesses of Bamarre,eng,4.02,55218,57531,2091,734,2728,12869,19278,21922,https://images.gr-assets.com/books/1442734248l/183656.jpg,https://images.gr-assets.com/books/1442734248s/183656.jpg\n2643,228630,228630,2063986,79,60929782,9780060929790.0,\"Richard Wright, Jerry W. Ward Jr.\",1945.0,Black Boy: A Record of Youth and Childhood,Black Boy,en-US,4.02,36840,39863,1466,702,1847,7818,14957,14539,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440889513l/228630._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2644,5167,5167,2028071,38,446678457,9780446678450.0,Lalita Tademy,2001.0,Cane River,Cane River,en-US,4.04,38013,39960,1813,421,1549,8290,15458,14242,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442965580l/5167._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2645,43884,43884,6745547,46,765305240,9780765305240.0,Terry Goodkind,2006.0,\"Phantom (Sword of Truth, #10)\",\"Phantom (Sword of Truth, #10)\",,3.99,35131,37945,481,981,2280,7627,12488,14569,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574449879l/43884.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2646,29582,29582,532290,96,553587579,9780553587580.0,Isaac Asimov,1986.0,Foundation and Earth,Foundation and Earth (Foundation #5),eng,4.02,39003,42930,848,419,1929,9075,16412,15095,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389759320l/29582.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2647,10058,10058,2618496,45,553384155,9780553384150.0,\"James D. Bradley, Ron Powers\",2000.0,Flags of Our Fathers,Flags of Our Fathers,,4.18,37561,39430,1365,655,1178,5988,14273,17336,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923564l/10058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2648,99111,99111,95547,58,525444475,9780525444470.0,\"A.A. Milne, Ernest H. Shepard\",1926.0,Winnie-the-Pooh & The House at Pooh Corner,\"The World of Winnie-the-Pooh (Winnie-the-Pooh, #1-2)\",eng,4.43,32504,41109,625,444,871,4481,10208,25105,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348200401l/99111.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2649,112803,112803,1744912,208,807059099,9780807059100.0,Mahatma Gandhi,1940.0,An Autobiography or The Story of My Experiments with Truth,The Story of My Experiments With Truth,eng,4.07,28177,33088,1369,708,1526,6116,11252,13486,https://images.gr-assets.com/books/1320560971l/112803.jpg,https://images.gr-assets.com/books/1320560971s/112803.jpg\n2650,2265,2265,2468379,54,425179613,9780425179610.0,\"Lance Armstrong, Sally Jenkins\",1999.0,It's Not About the Bike: My Journey Back to Life,It's Not About the Bike: My Journey Back to Life,en-US,3.72,31963,33545,1881,1222,2315,9062,12918,8028,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433639489l/2265._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2651,45546,45546,99507,38,074347788X,9780743477890.0,Stephen E. Ambrose,1996.0,Undaunted Courage,Undaunted Courage: The Pioneering First Mission to Explore America's Wild Frontier,eng,4.22,32875,36942,1942,470,1041,5124,13491,16816,https://images.gr-assets.com/books/1408925996l/45546.jpg,https://images.gr-assets.com/books/1408925996s/45546.jpg\n2652,18803640,18803640,26732095,1,224097008,9780224097000.0,Helen Macdonald,2015.0,H is for Hawk,H is for Hawk,eng,3.74,30841,38297,6017,1541,3416,9135,13715,10490,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442151714l/18803640._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2653,21423525,21423525,40733229,81,034089699X,9780340896990.0,David Nicholls,2014.0,Us,Us,eng,3.66,28856,37037,4002,982,2950,10819,15059,7227,https://images.gr-assets.com/books/1406116779l/21423525.jpg,https://images.gr-assets.com/books/1406116779s/21423525.jpg\n2654,66695,66695,231584,46,1560760478,9781560760470.0,R.A. Salvatore,1990.0,Sojourn (Dark Elf #3),\"Sojourn (Forgotten Realms: The Dark Elf Trilogy, #3; Legend of Drizzt, #3)\",eng,4.23,38242,42248,572,269,1177,6763,14574,19465,https://images.gr-assets.com/books/1322861953l/66695.jpg,https://images.gr-assets.com/books/1322861953s/66695.jpg\n2656,6218007,6218007,6398659,11,1421527553,9781421527550.0,\"Karuho Shiina, Tomo Kimura\",2006.0,君に届け 1,\"Kimi ni Todoke: From Me to You, Vol. 1\",eng,4.23,37369,37519,395,842,1559,5681,9404,20033,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348703553l/6218007.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2657,182425,182425,1133939,54,553580221,9780553580230.0,Dean Koontz,1999.0,False Memory,False Memory,en-US,3.87,36882,38019,995,740,2241,9882,13648,11508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447589l/182425.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2658,34510,34510,1229354,78,552152943,9780552152940.0,Terry Pratchett,1990.0,Moving Pictures,\"Moving Pictures (Discworld, #10; Industrial Revolution, #1)\",eng,3.91,42892,50047,1041,339,2464,13318,18963,14963,https://images.gr-assets.com/books/1320456553l/34510.jpg,https://images.gr-assets.com/books/1320456553s/34510.jpg\n2659,12513614,12513614,17499464,21,,2940011444940.0,C.J. Roberts,2011.0,Captive in the Dark,\"Captive in the Dark (The Dark Duet, #1)\",eng,4.01,55542,59443,5525,2712,3461,9720,18383,25167,https://images.gr-assets.com/books/1315343569l/12513614.jpg,https://images.gr-assets.com/books/1315343569s/12513614.jpg\n2661,2082136,2082136,2398516,45,393064646,9780393064640.0,Mary Roach,2008.0,Bonk: The Curious Coupling of Science and Sex,Bonk: The Curious Coupling of Science and Sex,en-US,3.83,38157,41808,4005,806,2534,10882,16474,11112,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348226205l/2082136.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2662,544257,544257,531546,42,451222385,9780451222380.0,Rachel Caine,2007.0,Midnight Alley,\"Midnight Alley (The Morganville Vampires, #3)\",eng,4.11,49083,51853,1363,721,2084,10100,16566,22382,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182869l/544257.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2663,23278537,23278537,42866547,7,553418777,9780553418770.0,\"Nina George, Simon Pare\",2013.0,Das Lavendelzimmer ,The Little Paris Bookshop,eng,3.51,34383,44080,7292,2033,5745,13308,13863,9131,https://images.gr-assets.com/books/1412462018l/23278537.jpg,https://images.gr-assets.com/books/1412462018s/23278537.jpg\n2664,13562049,13562049,19137260,70,224097377,9780224097380.0,Ian McEwan,2012.0,Sweet Tooth,Sweet Tooth,eng,3.4,32637,40143,5477,1649,5207,14109,13883,5295,https://images.gr-assets.com/books/1344373046l/13562049.jpg,https://images.gr-assets.com/books/1344373046s/13562049.jpg\n2665,17333880,17333880,24065237,30,,,Abbi Glines,2013.0,\"Twisted Perfection (Perfection, #1)\",\"Twisted Perfection (Rosemary Beach, #5; Perfection, #1)\",eng,4.26,57408,59633,3931,606,1761,8044,20604,28618,https://images.gr-assets.com/books/1360904964l/17333880.jpg,https://images.gr-assets.com/books/1360904964s/17333880.jpg\n2666,19675,19675,5054711,63,6479758,9780006479760.0,Tom Clancy,1996.0,Executive Orders,\"Executive Orders (Jack Ryan Universe, #9)\",eng,4.04,35513,38559,505,394,1460,8003,14865,13837,https://images.gr-assets.com/books/1419127064l/19675.jpg,https://images.gr-assets.com/books/1419127064s/19675.jpg\n2667,8592946,8592946,13462590,30,310321913,9780310321910.0,Ann Voskamp,2011.0,One Thousand Gifts,One Thousand Gifts: A Dare to Live Fully Right Where You Are,eng,4.03,33960,35216,2918,1492,2377,5805,9323,16219,https://images.gr-assets.com/books/1393970725l/8592946.jpg,https://images.gr-assets.com/books/1393970725s/8592946.jpg\n2668,156427,156427,3279468,1,747545251,9780747545260.0,Robert Bloch,1959.0,Psycho,Psycho,eng,4.09,36153,39808,1437,480,1434,7834,14255,15805,https://images.gr-assets.com/books/1393286878l/156427.jpg,https://images.gr-assets.com/books/1393286878s/156427.jpg\n2669,45100,45100,1476156,56,000649885X,9780006498860.0,Robin Hobb,1998.0,Ship of Magic,\"Ship of Magic (Liveship Traders, #1)\",eng,4.12,37381,43191,1647,501,1564,7308,16594,17224,https://images.gr-assets.com/books/1360507722l/45100.jpg,https://images.gr-assets.com/books/1360507722s/45100.jpg\n2670,148337,148337,2781685,61,1560254556,9781560254550.0,\"Alistair MacLean, Clint Willis\",1967.0,Where Eagles Dare ,Where Eagles Dare ,,4.12,35233,36287,321,259,940,7069,14108,13911,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348212543l/148337.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2671,41977,41977,3152550,82,99498596,9780099498600.0,Maeve Binchy,1990.0,Circle of Friends,Circle of Friends,eng,4.0,43936,47875,1469,381,1670,10917,19654,15253,https://images.gr-assets.com/books/1342486126l/41977.jpg,https://images.gr-assets.com/books/1342486126s/41977.jpg\n2672,23513349,23513349,43116473,27,1502784270,9781502784280.0,Rupi Kaur,2014.0,milk and honey,Milk and Honey,eng,4.27,73104,82204,10042,1693,3821,10197,21243,45250,https://images.gr-assets.com/books/1491595510l/23513349.jpg,https://images.gr-assets.com/books/1491595510s/23513349.jpg\n2673,5720,5720,5054705,59,425170349,9780425170340.0,Tom Clancy,1998.0,Rainbow Six,\"Rainbow Six (Jack Ryan Universe, #10)\",en-US,4.07,35278,38307,850,437,1668,7494,14076,14632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179305l/5720.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2674,16788,16788,3262727,71,60515228,9780060515220.0,Neil Gaiman,2006.0,Fragile Things: Short Fictions and Wonders,Fragile Things: Short Fictions and Wonders,eng,4.02,38942,46100,3045,299,1602,9585,20227,14387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924550l/16788.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2675,8196732,8196732,13043611,70,749942010,9780749942010.0,Rosamund Lupton,2010.0,Sister,Sister,eng,3.77,35893,41576,4636,884,2862,10945,16975,9910,https://images.gr-assets.com/books/1320189763l/8196732.jpg,https://images.gr-assets.com/books/1320189763s/8196732.jpg\n2676,20518872,20518872,25696480,42,765377063,9780765377070.0,\"Liu Cixin, Ken Liu\",2007.0,三体,\"The Three-Body Problem (Remembrance of Earth’s Past, #1)\",eng,4.0,33409,43588,5733,642,2292,8246,17466,14942,https://images.gr-assets.com/books/1415428227l/20518872.jpg,https://images.gr-assets.com/books/1415428227s/20518872.jpg\n2677,48002,48002,46982,62,61031321,9780061031330.0,Terry Pratchett,2001.0,Thief of Time,\"Thief of Time (Discworld, #26; Death, #5)\",eng,4.25,42002,47762,1117,114,857,7462,18057,21272,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177603l/48002.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2678,154798,154798,1950026,37,1401201911,9781401201910.0,\"Mark Millar, Kilian Plunkett, Andrew Robinson, Walden Wong, Dave Johnson\",2003.0,Superman: Red Son,Superman: Red Son,eng,4.17,35438,37007,1480,498,1350,5961,12842,16356,https://images.gr-assets.com/books/1298557533l/154798.jpg,https://images.gr-assets.com/books/1298557533s/154798.jpg\n2679,227593,227593,2060095,38,385721420,9780385721420.0,Julia Glass,2002.0,Three Junes,Three Junes,eng,3.56,35677,37045,2273,1049,3687,12450,13101,6758,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924179l/227593.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2681,1858013,1858013,2306323,39,525950494,9780525950490.0,Timothy J. Keller,2007.0,The Reason for God: Belief in an Age of Skepticism,The Reason for God: Belief in an Age of Skepticism,eng,4.2,31692,33938,1606,915,1296,4551,10606,16570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185497l/1858013.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2682,12891107,12891107,17382436,28,1937007472,9781937007480.0,Mark  Lawrence,2012.0,King of Thorns,\"King of Thorns (The Broken Empire, #2)\",en-US,4.2,33941,39403,1929,386,1125,5672,15235,16985,https://images.gr-assets.com/books/1322539112l/12891107.jpg,https://images.gr-assets.com/books/1322539112s/12891107.jpg\n2683,12160906,12160906,17131961,54,1250000971,9781250000970.0,Jeffrey Archer,2012.0,The Sins of the Father,\"The Sins of the Father (The Clifton Chronicles, #2)\",eng,4.01,27456,37091,2578,325,1331,7571,16131,11733,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934235l/12160906._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2685,3047849,3047849,3078640,38,61566128,9780061566130.0,Sara Shepard,2009.0,Killer ,\"Killer (Pretty Little Liars, #6)\",eng,4.07,39702,42312,1431,580,2026,8910,13031,17765,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1246065139l/3047849.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2686,4898,4898,1848380,60,1591396190,9781591396190.0,\"W. Chan Kim, Renée Mauborgne\",2004.0,Blue Ocean Strategy: How to Create Uncontested Market Space and Make Competition Irrelevant,Blue Ocean Strategy: How To Create Uncontested Market Space And Make The Competition Irrelevant,,3.86,30665,32514,679,1260,2079,7414,11117,10644,https://images.gr-assets.com/books/1416445924l/4898.jpg,https://images.gr-assets.com/books/1416445924s/4898.jpg\n2687,6431790,6431790,6682611,40,316036196,9780316036190.0,James Patterson,2010.0,Fang,\"Fang (Maximum Ride, #6)\",eng,4.07,48964,51208,2533,1165,3214,9252,14779,22798,https://images.gr-assets.com/books/1344269411l/6431790.jpg,https://images.gr-assets.com/books/1344269411s/6431790.jpg\n2688,8546358,8546358,13414212,34,553807226,9780553807230.0,Sarah Addison Allen,2011.0,The Peach Keeper ,The Peach Keeper,en-US,3.84,45468,49478,6009,558,2970,13446,19213,13291,https://images.gr-assets.com/books/1320549305l/8546358.jpg,https://images.gr-assets.com/books/1320549305s/8546358.jpg\n2689,815234,815234,359311,36,152026320,9780152026320.0,\"Audrey Wood, Don    Wood\",1984.0,The Napping House,The Napping House,,4.27,37773,38717,1089,618,1375,5771,10297,20656,https://images.gr-assets.com/books/1410229873l/815234.jpg,https://images.gr-assets.com/books/1410229873s/815234.jpg\n2691,33453,33453,2015399,37,60590297,9780060590290.0,Christopher Moore,2007.0,You Suck ,\"You Suck (A Love Story, #2)\",eng,3.82,38818,41307,2586,642,2350,11214,16749,10352,https://images.gr-assets.com/books/1331323414l/33453.jpg,https://images.gr-assets.com/books/1331323414s/33453.jpg\n2692,18104607,18104607,25423130,41,,,Jamie McGuire,2014.0,Beautiful Oblivion,\"Beautiful Oblivion (The Maddox Brothers, #1)\",eng,4.13,54391,58308,6034,944,2685,9691,19581,25407,https://images.gr-assets.com/books/1398284779l/18104607.jpg,https://images.gr-assets.com/books/1398284779s/18104607.jpg\n2693,77711,77711,1253374,67,812515285,9780812515280.0,Vernor Vinge,1992.0,A Fire Upon The Deep,\"A Fire Upon the Deep (Zones of Thought, #1)\",eng,4.13,37986,40508,1801,654,1672,6494,14506,17182,https://images.gr-assets.com/books/1333915005l/77711.jpg,https://images.gr-assets.com/books/1333915005s/77711.jpg\n2694,6709,6709,3437032,17,1577311957,9781577311960.0,Eckhart Tolle,1999.0,\"Practicing the Power of Now: Essential Teachings, Meditations, and Exercises from The Power of Now\",\"Practicing the Power of Now: Essential Teachings, Meditations, and Exercises from the Power of Now\",,4.25,29256,30308,410,504,1098,4426,8710,15570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178295l/6709.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2695,19469,19469,816295,36,038532328X,9780385323280.0,Caroline B. Cooney,1990.0,The Face on the Milk Carton,\"The Face on the Milk Carton (Janie Johnson, #1)\",en-US,3.72,43334,45923,2293,916,3922,14176,15194,11715,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2696,413158,413158,402389,17,067984483X,9780679844840.0,Robert Lopshire,1960.0,Put Me in the Zoo,Put Me in the Zoo,eng,4.13,38809,39657,375,717,1979,7932,10010,19019,https://images.gr-assets.com/books/1327947254l/413158.jpg,https://images.gr-assets.com/books/1327947254s/413158.jpg\n2697,6448470,6448470,10823062,51,61935085,9780061935080.0,Sophie Jordan,2010.0,\"Firelight (Firelight, #1)\",\"Firelight (Firelight, #1)\",en-US,3.88,51815,54550,4384,1628,4187,12409,17053,19273,https://images.gr-assets.com/books/1269737893l/6448470.jpg,https://images.gr-assets.com/books/1269737893s/6448470.jpg\n2698,9809,9809,68476,125,156453800,9780156453810.0,\"Italo Calvino, William Weaver\",1972.0,Le città invisibili,Invisible Cities,eng,4.19,32253,39121,2844,462,1614,5967,13026,18052,https://images.gr-assets.com/books/1468623303l/9809.jpg,https://images.gr-assets.com/books/1468623303s/9809.jpg\n2699,11096647,11096647,16018629,27,,,Jessica Park,2011.0,Flat-Out Love ,\"Flat-Out Love (Flat-Out Love, #1)\",eng,4.01,47644,51947,5104,1237,2838,9609,18808,19455,https://images.gr-assets.com/books/1333821470l/11096647.jpg,https://images.gr-assets.com/books/1333821470s/11096647.jpg\n2700,17905709,17905709,25086415,63,1741666708,9781741666700.0,Richard Flanagan,2013.0,The Narrow Road to the Deep North,The Narrow Road to the Deep North,eng,4.0,25197,34935,4927,959,2131,6017,12567,13261,https://images.gr-assets.com/books/1374734363l/17905709.jpg,https://images.gr-assets.com/books/1374734363s/17905709.jpg\n2701,26582,26582,1049526,51,452281423,9780452281420.0,\"A.N. Roquelaure, Anne Rice\",1983.0,The Claiming of Sleeping Beauty,\"The Claiming of Sleeping Beauty (Sleeping Beauty, #1)\",en-US,3.28,38387,42828,3713,5675,6382,11096,9727,9948,https://images.gr-assets.com/books/1340735794l/26582.jpg,https://images.gr-assets.com/books/1340735794s/26582.jpg\n2702,6114607,6114607,6292672,4,143116231,9780143116230.0,Jennifer Worth,2002.0, Call the midwife : a true story of the East End in the 1950s,\"The Midwife: A Memoir of Birth, Joy, and Hard Times\",en-US,4.17,19176,39141,5112,291,809,5844,17076,15121,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442450890l/6114607._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2703,10882,10882,1999152,42,222109073X,9782221090730.0,Hunter S. Thompson,1966.0,Hell's Angels,Hell's Angels: A Strange and Terrible Saga,fre,4.0,27819,33303,1173,176,1203,7385,14227,10312,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166334569l/10882._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2704,9758764,9758764,14648079,27,1451617720,9781451617730.0,Jennifer Weiner,2010.0,Then Came You,Then Came You,en-US,3.69,36469,38893,2729,627,2658,12689,15264,7655,https://images.gr-assets.com/books/1308787263l/9758764.jpg,https://images.gr-assets.com/books/1308787263s/9758764.jpg\n2706,73070,73070,2268839,47,380776839,9780380776830.0,Susan Elizabeth Phillips,1994.0,It Had to Be You,\"It Had to Be You (Chicago Stars, #1)\",eng,4.04,45961,49486,1754,1316,2177,9293,17170,19530,https://images.gr-assets.com/books/1297088239l/73070.jpg,https://images.gr-assets.com/books/1297088239s/73070.jpg\n2707,13707738,13707738,14420600,45,393343448,9780393343440.0,Michael   Lewis,2011.0,Boomerang: Travels in the New Third World,Boomerang: Travels in the New Third World,eng,3.87,15616,32446,1933,884,1655,7380,13241,9286,https://images.gr-assets.com/books/1345046879l/13707738.jpg,https://images.gr-assets.com/books/1345046879s/13707738.jpg\n2708,7227174,7227174,7415348,31,743294270,9780743294270.0,Jennifer Weiner,2010.0,Fly Away Home,Fly Away Home,eng,3.66,37026,39401,2405,611,2880,13387,14748,7775,https://images.gr-assets.com/books/1267210300l/7227174.jpg,https://images.gr-assets.com/books/1267210300s/7227174.jpg\n2709,14662,14662,1028281,685,140447644,9780140447640.0,\"Stendhal, Roger Gard\",1830.0,Le Rouge et le Noir,The Red and the Black,eng,3.87,33346,42298,1273,1115,3015,9927,14536,13705,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254311l/14662.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2710,16183,16183,3459181,51,743269268,9780743269260.0,Philippa Gregory,2004.0,The Virgin's Lover,\"The Virgin's Lover (The Plantagenet and Tudor Novels, #13)\",en-US,3.69,40065,43438,2065,719,3480,13699,16114,9426,https://images.gr-assets.com/books/1441424964l/16183.jpg,https://images.gr-assets.com/books/1441424964s/16183.jpg\n2711,332775,332775,323310,49,340893605,9780340893610.0,Catherine Fisher,2007.0,Incarceron,\"Incarceron (Incarceron, #1)\",eng,3.64,43524,52010,5087,1964,5218,14616,17892,12320,https://images.gr-assets.com/books/1327414514l/332775.jpg,https://images.gr-assets.com/books/1327414514s/332775.jpg\n2712,10800916,10800916,14442368,20,312624689,9780312624680.0,C.C. Hunter,2011.0,Awake at Dawn,\"Awake at Dawn (Shadow Falls, #2)\",en-US,4.29,46269,47959,1660,421,1364,6712,14662,24800,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546084540l/10800916.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2713,452157,452157,440780,10,451213041,9780451213040.0,Bev Vincent,2004.0,The Road to the Dark Tower: Exploring Stephen King's Magnum Opus,The Road to the Dark Tower: Exploring Stephen King's Magnum Opus,,4.29,32163,32226,53,757,1055,4518,7686,18210,https://images.gr-assets.com/books/1309204235l/452157.jpg,https://images.gr-assets.com/books/1309204235s/452157.jpg\n2714,9462795,9462795,10862992,47,62011995,9780062011990.0,Josephine Angelini,2011.0,Starcrossed,\"Starcrossed (Starcrossed, #1)\",en-US,4.08,49448,55202,4837,1687,2999,9061,17058,24397,https://images.gr-assets.com/books/1358266716l/9462795.jpg,https://images.gr-assets.com/books/1358266716s/9462795.jpg\n2715,7739934,7739934,10545964,55,312590989,9780312590990.0,Alyson Noel,2010.0,Night Star,\"Night Star (The Immortals, #5)\",eng,3.82,43998,45867,1347,1791,4301,10858,12187,16730,https://images.gr-assets.com/books/1362336383l/7739934.jpg,https://images.gr-assets.com/books/1362336383s/7739934.jpg\n2716,67238,67238,1207563,46,553282980,9780553282990.0,N.H. Kleinbaum,1988.0,Dead Poets Society ,Dead Poets Society,eng,4.21,33645,37221,752,395,1238,5735,12617,17236,https://images.gr-assets.com/books/1359814692l/67238.jpg,https://images.gr-assets.com/books/1359814692s/67238.jpg\n2718,63720,63720,819126,61,552154229,9780552154220.0,Terry Pratchett,1999.0,The Fifth Elephant,\"The Fifth Elephant (Discworld, #24; City Watch, #5)\",eng,4.24,40138,47106,969,101,726,7320,18629,20330,https://images.gr-assets.com/books/1327961702l/63720.jpg,https://images.gr-assets.com/books/1327961702s/63720.jpg\n2719,1524173,1524173,6627897,54,1741661285,9781741661290.0,John Flanagan,2006.0,The Sorcerer in the North,\"The Sorcerer in the North (Ranger's Apprentice, #5)\",eng,4.25,39795,45418,1327,470,996,6829,15486,21637,https://images.gr-assets.com/books/1327918728l/1524173.jpg,https://images.gr-assets.com/books/1327918728s/1524173.jpg\n2720,639864,639864,2066960,210,876120834,9780876120840.0,Paramahansa Yogananda,1946.0,Autobiography of a Yogi,Autobiography of a Yogi,en-US,4.22,26713,31616,1408,752,1391,4587,8413,16473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347427162l/639864.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2721,9595650,9595650,14482685,29,345522494,9780345522500.0,Kevin Hearne,2011.0,\"Hexed (Iron Druid Chronicles, #2)\",\"Hexed (The Iron Druid Chronicles, #2)\",eng,4.22,39926,44505,2245,210,834,6658,17967,18836,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235604l/9595650.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2722,1325218,1325218,145600,29,590431978,9780590431970.0,\"Alvin Schwartz, Stephen Gammell\",1981.0,Scary Stories to Tell in the Dark,\"Scary Stories to Tell in the Dark (Scary Stories, #1)\",eng,4.05,38879,40077,1512,763,2190,8472,11376,17276,https://images.gr-assets.com/books/1440189576l/1325218.jpg,https://images.gr-assets.com/books/1440189576s/1325218.jpg\n2723,26109394,26109394,45536239,42,525955097,9780525955090.0,Harlan Coben,2016.0,Fool Me Once,Fool Me Once,eng,3.9,30788,45468,4096,913,2458,10459,18044,13594,https://images.gr-assets.com/books/1443190440l/26109394.jpg,https://images.gr-assets.com/books/1443190440s/26109394.jpg\n2724,27323,27323,1014091,102,679721037,9780679721030.0,John Hersey,1946.0,Hiroshima,Hiroshima,eng,3.94,41338,43336,2062,738,2184,9825,16758,13831,https://images.gr-assets.com/books/1499717742l/27323.jpg,https://images.gr-assets.com/books/1499717742s/27323.jpg\n2725,6316171,6316171,6501420,33,316041440,9780316041450.0,Jennifer Brown,2009.0,Hate List,Hate List,eng,4.03,39677,44189,4285,872,2179,8483,15813,16842,https://images.gr-assets.com/books/1479653095l/6316171.jpg,https://images.gr-assets.com/books/1479653095s/6316171.jpg\n2727,3873,3873,2011826,66,517223120,9780517223120.0,Karen Armstrong,1975.0,\"A History of God: The 4,000-Year Quest of Judaism, Christianity, and Islam\",\"A History of God: The 4,000-Year Quest of Judaism, Christianity, and Islam\",eng,3.85,32506,34576,1143,1625,2189,7599,11380,11783,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924363l/3873.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2728,16131032,16131032,17606564,35,316129070,9780316129080.0,James S.A. Corey,2013.0,Abaddon's Gate,\"Abaddon's Gate (The Expanse, #3)\",eng,4.18,27860,39495,2417,142,712,5701,18187,14753,https://images.gr-assets.com/books/1407572059l/16131032.jpg,https://images.gr-assets.com/books/1407572059s/16131032.jpg\n2729,5932,5932,2103337,179,143039962,9780143039970.0,\"Pablo Neruda, W.S. Merwin, Cristina García\",1924.0,Veinte poemas de amor y una canción desesperada,Twenty Love Poems and a Song of Despair,eng,4.33,31606,37910,1505,520,1003,4472,11501,20414,https://images.gr-assets.com/books/1447622711l/5932.jpg,https://images.gr-assets.com/books/1447622711s/5932.jpg\n2730,382549,382549,17028815,76,425116840,9780425116840.0,Tom Clancy,1988.0,The Cardinal of the Kremlin,\"The Cardinal of the Kremlin (Jack Ryan Universe, #5)\",en-US,4.01,37672,39699,507,188,1344,9279,15970,12918,https://images.gr-assets.com/books/1319381380l/382549.jpg,https://images.gr-assets.com/books/1319381380s/382549.jpg\n2731,1062516,1062516,562143,15,590930028,9780590930020.0,David Shannon,1998.0,\"No, David!\",\"No, David!\",en-US,4.11,36963,37186,1885,1110,2172,6499,9026,18379,https://images.gr-assets.com/books/1360058223l/1062516.jpg,https://images.gr-assets.com/books/1360058223s/1062516.jpg\n2732,18414,18414,2798280,810,140449108,9780140449100.0,\"Thomas More, Paul Turner\",1516.0,\"Libellus vere aureus, nec minus salutaris quam festivus, de optimo rei publicae statu deque nova insula Utopia\",Utopia,eng,3.5,36680,44234,1887,1177,5222,15801,14313,7721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190168l/18414.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2733,1099301,1099301,1086172,46,316113662,9780316113660.0,\"Pseudonymous Bosch, Gilbert Ford\",2007.0,The Name of This Book Is Secret,\"The Name of This Book Is Secret (Secret, #1)\",en-US,4.04,39440,42190,3180,1043,2144,8129,13529,17345,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442896331l/1099301._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2734,18053060,18053060,25337746,20,62280678,9780062280670.0,Danielle  Paige,2014.0,Dorothy Must Die,\"Dorothy Must Die (Dorothy Must Die, #1)\",eng,3.84,44785,49019,7881,1455,3568,11035,18176,14785,https://images.gr-assets.com/books/1381437107l/18053060.jpg,https://images.gr-assets.com/books/1381437107s/18053060.jpg\n2735,16429,16429,944272,67,553804790,9780553804800.0,Dean Koontz,2006.0,The Husband,The Husband,eng,3.8,36233,38254,1638,561,2435,11052,14284,9922,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257740l/16429.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2736,7048800,7048800,7299170,45,385501129,9780385501120.0,Aimee Bender,2010.0,The Particular Sadness of Lemon Cake,The Particular Sadness of Lemon Cake,eng,3.19,42885,48388,9036,3263,9025,17055,13468,5577,https://images.gr-assets.com/books/1320541766l/7048800.jpg,https://images.gr-assets.com/books/1320541766s/7048800.jpg\n2737,6588,6588,1877371,80,446610224,9780446610220.0,James Patterson,2003.0,The Big Bad Wolf  ,\"The Big Bad Wolf  (Alex Cross, #9)\",en-US,3.97,37060,40235,938,320,1590,9647,16019,12659,https://images.gr-assets.com/books/1388328154l/6588.jpg,https://images.gr-assets.com/books/1388328154s/6588.jpg\n2738,533465,533465,1482438,45,385722206,9780385722210.0,\"Dai Sijie, Ina Rilke\",2000.0,Balzac et la Petite Tailleuse chinoise,Balzac and the Little Chinese Seamstress,en-US,3.63,39927,43440,3558,686,3659,14466,17027,7602,https://images.gr-assets.com/books/1403188885l/533465.jpg,https://images.gr-assets.com/books/1403188885s/533465.jpg\n2739,18813642,18813642,26563816,25,62282719,9780062282710.0,Roxane Gay,2014.0,Bad Feminist ,Bad Feminist,eng,3.91,41012,43890,5030,1046,2612,9283,17369,13580,https://images.gr-assets.com/books/1421292744l/18813642.jpg,https://images.gr-assets.com/books/1421292744s/18813642.jpg\n2740,226709,226709,3311862,79,671729470,9780671729480.0,V.C. Andrews,1980.0,Petals on the Wind,\"Petals on the Wind (Dollanganger, #2)\",en-US,3.82,40354,44314,1667,955,3458,11845,14517,13539,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1588089714l/226709._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2741,6690,6690,824600,125,375814256,9780375814260.0,\"Roald Dahl, Quentin Blake\",1975.0,Danny: The Champion of the World,Danny the Champion of the World,,4.07,39802,45049,1844,496,1933,9393,15259,17968,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437500743l/6690._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2743,19351043,19351043,27411330,22,,,Noelle Stevenson,2015.0,Nimona,Nimona,eng,4.2,44825,51980,6660,1830,1857,6056,16529,25708,https://images.gr-assets.com/books/1412626919l/19351043.jpg,https://images.gr-assets.com/books/1412626919s/19351043.jpg\n2744,1192,1192,5387,4,1400052580,9781400052580.0,Giada De Laurentiis,2005.0,Everyday Italian: 125 Simple and Delicious Recipes,Everyday Italian: 125 Simple and Delicious Recipes,,3.97,32751,32871,209,1008,1636,6966,10955,12306,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385089184l/1192.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2745,6537,6537,1455041,108,425204693,9780425204700.0,Patricia Cornwell,1995.0,From Potter's Field,\"From Potter's Field (Kay Scarpetta, #6)\",eng,4.02,41377,43955,636,211,1356,10272,17581,14535,https://images.gr-assets.com/books/1309209800l/6537.jpg,https://images.gr-assets.com/books/1309209800s/6537.jpg\n2746,84736,84736,3267280,85,446619035,9780446619040.0,James Patterson,2005.0,\"Mary, Mary\",\"Mary, Mary (Alex Cross, #11)\",eng,3.93,36926,39428,1136,301,1679,10270,15431,11747,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388217078l/84736.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2747,15055,15055,1411520,66,,,Jeanette Winterson,1985.0,Oranges Are Not the Only Fruit,Oranges Are Not the Only Fruit,eng,3.75,35082,40314,1912,1086,3147,10727,15204,10150,https://images.gr-assets.com/books/1267717580l/15055.jpg,https://images.gr-assets.com/books/1267717580s/15055.jpg\n2748,16139641,16139641,21970115,8,,,R.K. Lilley,2013.0,Grounded (Up In The Air #3),\"Grounded (Up in the Air, #3)\",en-GB,4.29,53089,53385,2252,666,1739,6995,16258,27727,https://images.gr-assets.com/books/1358701028l/16139641.jpg,https://images.gr-assets.com/books/1358701028s/16139641.jpg\n2749,19427193,7977973,7364012,10,8188575704,9788188575700.0,Ravinder Singh,2007.0,I Too Had A Love Story,I Too Had a Love Story,eng,3.64,24307,29161,1616,2021,3266,6759,8385,8730,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439162367l/19427193.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2750,25051,25051,2208078,31,64401480,9780064401490.0,\"Betty MacDonald, Alexandra Boiger\",1947.0,Mrs. Piggle-Wiggle,\"Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle, #1)\",eng,4.16,44068,45128,1080,847,1639,8082,13512,21048,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180885l/25051.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2751,58962,58962,449499,99,312941919,9780312941920.0,Michael Connelly,1997.0,Trunk Music,\"Trunk Music (Harry Bosch, #5; Harry Bosch Universe, #6)\",eng,4.15,34702,40002,1105,105,626,6805,18196,14270,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926044l/58962.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2752,18505796,18505796,26365939,29,62265423,9780062265420.0,Dan   Harris,2014.0,\"10% Happier: How I Tamed the Voice in My Head, Reduced Stress Without Losing My Edge, and Found Self-Help That Actually Works\",\"10% Happier: How I Tamed the Voice in My Head, Reduced Stress Without Losing My Edge, and Found Self-Help That Actually Works\",eng,3.93,33969,39748,3485,1106,2034,7948,15912,12748,https://images.gr-assets.com/books/1451446393l/18505796.jpg,https://images.gr-assets.com/books/1451446393s/18505796.jpg\n2753,120230,120230,115766,4,1400054346,9781400054340.0,\"Ina Garten, Quentin Bacon\",2006.0,Barefoot Contessa at Home: Everyday Recipes You'll Make Over and Over Again,Barefoot Contessa at Home: Everyday Recipes You'll Make Over and Over Again,,4.16,32611,32744,178,944,1094,4974,10514,15218,https://images.gr-assets.com/books/1320557161l/120230.jpg,https://images.gr-assets.com/books/1320557161s/120230.jpg\n2754,32504,32504,1473598,105,446690449,9780446690450.0,Michael Connelly,1998.0,Blood Work,\"Blood Work (Harry Bosch Universe, #8; Terry McCaleb #1)\",eng,4.11,34296,37494,999,216,892,6907,16077,13402,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442528004l/32504._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2755,41821,41821,1253407,100,1857989341,9781857989340.0,Isaac Asimov,1972.0,The Gods Themselves,The Gods Themselves,eng,4.08,35247,39537,1150,299,1350,7879,15381,14628,https://images.gr-assets.com/books/1351076141l/41821.jpg,https://images.gr-assets.com/books/1351076141s/41821.jpg\n2758,13570,13570,15710,15,345470575,9780345470580.0,\"CLAMP, Anthony Gerard\",2004.0,ツバサ-RESERVoir CHRoNiCLE- 1,\"Tsubasa: RESERVoir CHRoNiCLE, Vol. 01\",eng,4.12,34661,34843,330,941,1862,6018,9162,16860,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920662l/13570.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2759,8962,8962,724928,86,316905712,9780316905720.0,Darren Shan,2000.0,\"Cirque Du Freak (Cirque du Freak, #1) \",\"A Living Nightmare (Cirque Du Freak, #1)\",,4.07,38753,43056,2916,658,2227,8592,13698,17881,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953294l/8962.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2760,297627,297627,797,36,1563898586,9781563898590.0,\"Alan Moore, Kevin O'Neill\",2000.0,\"The League of Extraordinary Gentlemen, Vol. I\",\"The League of Extraordinary Gentlemen, Vol. 1\",eng,3.93,40404,41818,1201,687,2255,9526,16088,13262,https://images.gr-assets.com/books/1327894724l/297627.jpg,https://images.gr-assets.com/books/1327894724s/297627.jpg\n2761,169756,169756,163928,32,763622591,9780763622600.0,M.T. Anderson,2002.0,Feed,Feed,eng,3.54,42426,44867,5504,2832,5218,12155,14364,10298,https://images.gr-assets.com/books/1327891005l/169756.jpg,https://images.gr-assets.com/books/1327891005s/169756.jpg\n2763,752900,752900,2936587,304,486275485,9780486275480.0,\"Euripides, Rex Warner\",-431.0,Mήδεια,Medea,en-GB,3.83,40237,42957,1037,709,3123,11554,14888,12683,https://images.gr-assets.com/books/1328868366l/752900.jpg,https://images.gr-assets.com/books/1328868366s/752900.jpg\n2764,6342491,6342491,6528619,28,1423118235,9781423118240.0,Cinda Williams Chima,2009.0,The Demon King,\"The Demon King (Seven Realms, #1)\",en-US,4.2,46756,49524,4018,950,1559,6794,17605,22616,https://images.gr-assets.com/books/1379482652l/6342491.jpg,https://images.gr-assets.com/books/1379482652s/6342491.jpg\n2765,821056,821056,1128612,83,842314296,9780842314300.0,Hannah Hurnard,1955.0,Hinds' Feet on High Places,Hinds' Feet on High Places,,4.3,33398,35312,933,590,1234,4784,9071,19633,https://images.gr-assets.com/books/1312284337l/821056.jpg,https://images.gr-assets.com/books/1312284337s/821056.jpg\n2766,38333,38333,2283546,24,037542380X,9780375423800.0,Charles Burns,1995.0,Black Hole,Black Hole,eng,3.83,33070,34624,1849,1162,2634,7995,11859,10974,https://images.gr-assets.com/books/1327895219l/38333.jpg,https://images.gr-assets.com/books/1327895219s/38333.jpg\n2767,19358975,19358975,27422060,22,1607069318,9781607069320.0,\"Brian K. Vaughan, Fiona Staples\",2014.0,\"Saga, Volume Three\",\"Saga, Vol. 3 (Saga, #3)\",eng,4.56,47549,49016,3506,145,358,2805,14440,31268,https://images.gr-assets.com/books/1486028973l/19358975.jpg,https://images.gr-assets.com/books/1486028973s/19358975.jpg\n2768,20263040,20263040,27228790,64,804178747,9780804178750.0,Lee Child,2014.0,Personal,\"Personal (Jack Reacher, #19)\",eng,3.9,19107,39053,3156,496,2013,9620,15703,11221,https://images.gr-assets.com/books/1468705564l/20263040.jpg,https://images.gr-assets.com/books/1468705564s/20263040.jpg\n2769,15994634,15994634,21763986,32,1250028647,9781250028650.0,Therese Anne Fowler,2013.0,Z: A Novel of Zelda Fitzgerald,Z: A Novel of Zelda Fitzgerald,eng,3.82,27563,36787,4020,685,2028,9256,15941,8877,https://images.gr-assets.com/books/1396815892l/15994634.jpg,https://images.gr-assets.com/books/1396815892s/15994634.jpg\n2770,4979,4979,1119459,64,081297736X,9780812977360.0,Kurt Vonnegut Jr.,2005.0,A Man Without a Country,A Man Without a Country,eng,4.07,29859,32094,2044,192,1229,6362,12567,11744,https://images.gr-assets.com/books/1330997432l/4979.jpg,https://images.gr-assets.com/books/1330997432s/4979.jpg\n2771,17667452,6780660,6982184,25,,,Catherine Ryan Hyde,2009.0,When I Found You,When I Found You,en,3.92,16032,32004,2506,355,1490,7550,13561,9048,https://images.gr-assets.com/books/1377009785l/17667452.jpg,https://images.gr-assets.com/books/1377009785s/17667452.jpg\n2772,25893693,25893693,45775594,20,1101883073,9781101883080.0,Martha Hall Kelly,2016.0,Lilac Girls,Lilac Girls,eng,4.31,42421,55514,6679,562,1142,5877,21014,26919,https://images.gr-assets.com/books/1462850258l/25893693.jpg,https://images.gr-assets.com/books/1462850258s/25893693.jpg\n2773,552894,552894,2208374,57,316017701,9780316017700.0,\"James Patterson, Maxine Paetro\",2008.0,7th Heaven,\"7th Heaven (Women's Murder Club, #7)\",eng,4.06,38503,42493,1604,176,1181,9121,17415,14600,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438907237l/552894._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2774,23664710,23664710,43272201,48,593073894,9780593073900.0,Lee Child,2015.0,Make Me,\"Make Me (Jack Reacher, #20)\",en-US,3.95,20999,37423,3420,578,1752,8085,15404,11604,https://images.gr-assets.com/books/1467905395l/23664710.jpg,https://images.gr-assets.com/books/1467905395s/23664710.jpg\n2775,18428067,18428067,19926928,49,770436420,9780770436420.0,Anthony Marra,2013.0,A Constellation of Vital Phenomena,A Constellation of Vital Phenomena,eng,4.13,23374,35300,5576,714,1622,5348,12392,15224,https://images.gr-assets.com/books/1408313066l/18428067.jpg,https://images.gr-assets.com/books/1408313066s/18428067.jpg\n2776,13496738,13496738,19040270,23,,,Abbi Glines,2012.0,While It Lasts,\"While It Lasts (Sea Breeze, #3)\",eng,4.24,49620,51999,2236,419,1371,7547,18393,24269,https://images.gr-assets.com/books/1332261619l/13496738.jpg,https://images.gr-assets.com/books/1332261619s/13496738.jpg\n2777,13414676,13414676,18713903,41,307594033,9780307594040.0,Will Schwalbe,2012.0,The End of Your Life Bookclub,The End of Your Life Book Club,eng,3.81,35412,39636,6644,1016,2905,9783,14960,10972,https://images.gr-assets.com/books/1333576665l/13414676.jpg,https://images.gr-assets.com/books/1333576665s/13414676.jpg\n2778,1672727,1672727,1667738,17,1416913184,9781416913180.0,Lauren Barnholdt,2007.0,Two-Way Street,Two-Way Street,,3.8,42028,42774,1848,1186,3709,11189,13153,13537,https://images.gr-assets.com/books/1381750633l/1672727.jpg,https://images.gr-assets.com/books/1381750633s/1672727.jpg\n2779,16001443,16001443,21763059,25,,,Raine Miller,2012.0,All in,\"All In (The Blackstone Affair, #2)\",eng,4.11,48278,50265,2033,790,2267,8838,17309,21061,https://images.gr-assets.com/books/1358492101l/16001443.jpg,https://images.gr-assets.com/books/1358492101s/16001443.jpg\n2780,1814843,1814843,6627899,44,174166134X,9781741661350.0,John Flanagan,2006.0,The Siege of Macindaw,\"The Siege of Macindaw (Ranger's Apprentice, #6)\",eng,4.33,37607,41857,1195,223,721,5474,13990,21449,https://images.gr-assets.com/books/1327445821l/1814843.jpg,https://images.gr-assets.com/books/1327445821s/1814843.jpg\n2782,22416,22416,23442,13,1563894459,9781563894460.0,\"Warren Ellis, Darick Robertston, Garth Ennis\",1998.0,\"Transmetropolitan, Vol. 1: Back on the Street\",\"Transmetropolitan, Vol. 1: Back on the Street (Transmetropolitan, #1)\",eng,4.23,30790,34691,868,774,1426,4709,10068,17714,https://images.gr-assets.com/books/1320606005l/22416.jpg,https://images.gr-assets.com/books/1320606005s/22416.jpg\n2783,13833,13833,3094151,35,1416903372,9781416903380.0,Tamora Pierce,1994.0,\"Emperor Mage (Immortals, #3)\",\"Emperor Mage (Immortals, #3)\",en-US,4.3,44115,47156,629,323,895,6746,15496,23696,https://images.gr-assets.com/books/1166573612l/13833.jpg,https://images.gr-assets.com/books/1166573612s/13833.jpg\n2784,8099187,8099187,12842742,39,307590615,9780307590620.0,George W. Bush,2010.0,Decision Points,Decision Points,eng,3.77,28943,31666,2557,1293,1906,7652,12627,8188,https://images.gr-assets.com/books/1320428975l/8099187.jpg,https://images.gr-assets.com/books/1320428975s/8099187.jpg\n2785,6387565,6387565,6575836,67,,,\"James Patterson, Gabrielle Charbonnet\",2009.0,Witch & Wizard,\"Witch & Wizard (Witch & Wizard, #1)\",eng,3.57,28291,47545,4345,2892,5695,12892,13690,12376,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1245083022l/6387565.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2786,386286,386286,778444,71,64400581,9780064400590.0,\"Jean Craighead George, John Schoenherr\",1972.0,Julie of the Wolves,\"Julie of the Wolves (Julie of the Wolves, #1)\",eng,3.79,46442,47637,1320,1153,3483,13085,16549,13367,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565576794l/386286._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2787,37743,37743,746503,47,033039780X,9780330397800.0,Judy Blume,1975.0,Forever . . .,Forever . . .,eng,3.63,42164,46688,3377,1806,4941,13816,14493,11632,https://images.gr-assets.com/books/1327962165l/37743.jpg,https://images.gr-assets.com/books/1327962165s/37743.jpg\n2788,22609391,22609391,42099162,30,1476728747,9781476728740.0,David McCullough,2015.0,The Wright Brothers,The Wright Brothers,eng,4.16,35786,41469,4425,984,1232,5673,15914,17666,https://images.gr-assets.com/books/1430942575l/22609391.jpg,https://images.gr-assets.com/books/1430942575s/22609391.jpg\n2789,31231,31231,2254814,67,752858556,9780752858560.0,Robert Ludlum,1979.0,The Matarese Circle,The Matarese Circle (Matarese #1),,4.03,32016,33144,264,246,1106,7377,13100,11315,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348885108l/31231.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2790,3147367,3147367,3178858,17,1400063256,9781400063250.0,Jon Meacham,2008.0,American Lion: Andrew Jackson in the White House,American Lion: Andrew Jackson in the White House,en-US,3.76,32564,33439,1378,1309,2419,8198,12414,9099,https://images.gr-assets.com/books/1320480904l/3147367.jpg,https://images.gr-assets.com/books/1320480904s/3147367.jpg\n2791,15842230,15842230,21412154,45,446573051,9780446573050.0,David Baldacci,2012.0,The Forgotten,\"The Forgotten (John Puller, #2)\",eng,4.07,27953,37559,2540,270,1065,6957,16796,12471,https://images.gr-assets.com/books/1350923777l/15842230.jpg,https://images.gr-assets.com/books/1350923777s/15842230.jpg\n2792,16065004,16065004,21855448,25,765378558,9780765378550.0,Brandon Sanderson,2015.0,Shadows of Self,\"Shadows of Self (Mistborn, #5)\",eng,4.3,32170,40479,2804,85,469,4687,17295,17943,https://images.gr-assets.com/books/1435053013l/16065004.jpg,https://images.gr-assets.com/books/1435053013s/16065004.jpg\n2793,17262155,17262155,23858953,89,345807952,9780345807950.0,Helen Fielding,2013.0,Mad About the Boy,\"Mad About the Boy (Bridget Jones, #3)\",eng,3.32,30713,39587,5593,2230,5980,13827,11828,5722,https://images.gr-assets.com/books/1374883586l/17262155.jpg,https://images.gr-assets.com/books/1374883586s/17262155.jpg\n2794,30633,30633,14816053,85,6280897,9780006280900.0,C.S. Lewis,1960.0,The Four Loves,The Four Loves,en-US,4.16,29684,32510,1109,444,1001,5530,11563,13972,https://images.gr-assets.com/books/1276287504l/30633.jpg,https://images.gr-assets.com/books/1276287504s/30633.jpg\n2795,20639274,32822135,26343327,41,,,Mia Sheridan,2014.0,Archer's Voice,Archer's Voice,eng,4.45,53131,60020,7779,553,1382,5524,15336,37225,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390778440l/20639274.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2796,11010251,11010251,15929266,39,042524413X,9780425244140.0,Alyson Richman,2011.0,The Lost Wife,The Lost Wife,eng,4.2,33427,35931,3949,295,767,5091,15125,14653,https://images.gr-assets.com/books/1394994929l/11010251.jpg,https://images.gr-assets.com/books/1394994929s/11010251.jpg\n2797,10505,10505,2094829,50,847826465,9780847826470.0,\"Umberto Eco, Girolamo De Michele, Alastair McEwen\",2004.0,Storia della bellezza,History of Beauty,eng,3.77,33893,34445,169,2959,2615,6651,9310,12910,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926937l/10505.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2798,18765,18765,4232388,152,067972477X,9780679724770.0,Robert Graves,1934.0,\"I, Claudius\",\"I, Claudius (Claudius, #1)\",eng,4.27,38484,41903,1862,425,1092,5360,14800,20226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185810l/18765.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2799,13326831,13326831,18534001,42,547959109,9780547959110.0,Joelle Charbonneau,2013.0,The Testing,\"The Testing (The Testing, #1)\",eng,4.05,38142,42840,5339,680,1918,7943,16551,15748,https://images.gr-assets.com/books/1363452191l/13326831.jpg,https://images.gr-assets.com/books/1363452191s/13326831.jpg\n2800,17908462,17908462,25092132,27,345542886,9780345542880.0,Janet Evanovich,2013.0,Takedown Twenty,\"Takedown Twenty (Stephanie Plum, #20)\",en-US,3.75,36002,45765,4970,674,3508,14114,15618,11851,https://images.gr-assets.com/books/1373758461l/17908462.jpg,https://images.gr-assets.com/books/1373758461s/17908462.jpg\n2801,13628209,13628209,19234450,17,1469984016,9781469984020.0,Kirsty Moseley,2011.0,The Boy Who Sneaks in My Bedroom Window,The Boy Who Sneaks in My Bedroom Window,en-GB,3.95,50929,55355,4371,3493,3945,8704,14811,24402,https://images.gr-assets.com/books/1398682775l/13628209.jpg,https://images.gr-assets.com/books/1398682775s/13628209.jpg\n2802,13829,13829,3056999,23,037581468X,9780375814690.0,Tamora Pierce,2006.0,Terrier,\"Terrier (Beka Cooper, #1)\",eng,4.16,48028,49845,1594,1282,1973,7618,15689,23283,https://images.gr-assets.com/books/1398029898l/13829.jpg,https://images.gr-assets.com/books/1398029898s/13829.jpg\n2803,8788554,8788554,13662358,41,312662750,9780312662750.0,Darynda Jones,2011.0,First Grave on the Right,\"First Grave on the Right (Charley Davidson, #1)\",en-US,4.07,50689,57415,6132,1403,2758,9980,19654,23620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442963675l/8788554._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2804,18039963,18039963,21979139,28,1451651694,9781451651690.0,\"Amanda Lindhout, Sara Corbett\",2013.0,A House in the Sky,A House in the Sky,eng,4.2,29369,33140,3574,481,955,4513,12644,14547,https://images.gr-assets.com/books/1370379455l/18039963.jpg,https://images.gr-assets.com/books/1370379455s/18039963.jpg\n2805,9615347,9615347,14279456,18,1596437138,9781596437140.0,Vera Brosgol,2011.0,Anya's Ghost,Anya's Ghost,eng,3.88,39477,42209,3671,1218,2300,9907,15715,13069,https://images.gr-assets.com/books/1316739317l/9615347.jpg,https://images.gr-assets.com/books/1316739317s/9615347.jpg\n2806,9912,9912,814440,68,067978148X,9780679781490.0,Bret Easton Ellis,1987.0,The Rules of Attraction,The Rules of Attraction,eng,3.71,29456,32395,1102,699,2615,9441,12328,7312,https://images.gr-assets.com/books/1468426907l/9912.jpg,https://images.gr-assets.com/books/1468426907s/9912.jpg\n2807,30262,30262,2756601,47,60572973,9780060572980.0,Kim Harrison,2005.0,\"The Good, the Bad, and the Undead\",\"The Good, the Bad, and the Undead (The Hollows, #2)\",en-US,4.26,49321,52969,1641,253,1014,7909,19521,24272,https://images.gr-assets.com/books/1391023304l/30262.jpg,https://images.gr-assets.com/books/1391023304s/30262.jpg\n2808,66693,66693,66280,44,786942460,9780786942470.0,R.A. Salvatore,1988.0,The Crystal Shard,\"The Crystal Shard (Forgotten Realms: Icewind Dale, #1; Legend of Drizzt, #4)\",eng,4.13,32300,35843,691,238,1304,6804,12712,14785,https://images.gr-assets.com/books/1331146192l/66693.jpg,https://images.gr-assets.com/books/1331146192s/66693.jpg\n2809,44597,25622780,142647,97,140274219,9780140274220.0,Jean Rhys,1966.0,Wide Sargasso Sea,Wide Sargasso Sea,eng,3.56,21053,45338,3625,1715,5110,13735,15418,9360,https://images.gr-assets.com/books/1327870846l/44597.jpg,https://images.gr-assets.com/books/1327870846s/44597.jpg\n2810,16286,16286,1816475,94,316296198,9780316296200.0,John Fowles,1965.0,The Magus,The Magus,en-US,4.04,32914,37237,2038,1050,2211,6360,12018,15598,https://images.gr-assets.com/books/1441323311l/16286.jpg,https://images.gr-assets.com/books/1441323311s/16286.jpg\n2811,189811,189811,1458832,46,552148032,9780552148030.0,David Eddings,1988.0,King of the Murgos,\"King of the Murgos (The Malloreon, #2)\",en-GB,4.1,40098,43122,249,274,1508,8788,15679,16873,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172550298l/189811.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2812,402014,402014,171330,54,60288132,9780060288140.0,Louise Rennison,2000.0,\"It's OK, I'm Wearing Really Big Knickers! (Confessions of Georgia Nicolson, #2)\",\"On the Bright Side, I'm Now the Girlfriend of a Sex God (Confessions of Georgia Nicolson, #2)\",,3.96,39114,42692,888,685,2393,10345,13728,15541,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400220733l/402014.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2813,20821614,20821614,39913517,45,1476785597,9781476785590.0,Caroline Kepnes,2014.0,You,\"You (You, #1)\",eng,3.83,36383,43868,7892,1561,3095,9358,16925,12929,https://images.gr-assets.com/books/1411958102l/20821614.jpg,https://images.gr-assets.com/books/1411958102s/20821614.jpg\n2814,13618440,13618440,19221595,67,316134074,9780316134070.0,Laini Taylor,2014.0,Dreams of Gods & Monsters,\"Dreams of Gods & Monsters (Daughter of Smoke & Bone, #3)\",eng,4.23,47315,56702,8247,528,1924,8159,19339,26752,https://images.gr-assets.com/books/1461353810l/13618440.jpg,https://images.gr-assets.com/books/1461353810s/13618440.jpg\n2815,1205297,1205297,3090264,66,385525001,9780385525010.0,John Grisham,2007.0,Playing For Pizza,Playing for Pizza,en-US,3.41,34577,36850,3642,1436,5072,13273,10948,6121,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435592714l/1205297._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2816,9284655,9284655,7156226,50,1402784031,9781402784030.0,Colleen Houck,2011.0,Tiger's Curse,\"Tiger's Curse (The Tiger Saga, #1)\",eng,4.07,46077,48734,5262,2482,3220,6975,11651,24406,https://images.gr-assets.com/books/1327878915l/9284655.jpg,https://images.gr-assets.com/books/1327878915s/9284655.jpg\n2817,105,105,3634569,72,441102670,9780441102680.0,Frank Herbert,1985.0,Chapterhouse: Dune,Chapterhouse: Dune (Dune Chronicles #6),eng,3.89,34822,37155,552,676,2612,9170,12496,12201,https://images.gr-assets.com/books/1260954505l/105.jpg,https://images.gr-assets.com/books/1260954505s/105.jpg\n2818,20821284,20821284,39959105,17,399252517,9780399252520.0,Jacqueline Woodson,2014.0,Brown Girl Dreaming,Brown Girl Dreaming,eng,4.11,33779,37633,5349,1732,1625,4992,11824,17460,https://images.gr-assets.com/books/1424308405l/20821284.jpg,https://images.gr-assets.com/books/1424308405s/20821284.jpg\n2820,3476,3476,1004778,27,142000205,9780142000200.0,Gwyn Hyman Rubio,1998.0,Icy Sparks,Icy Sparks,eng,3.68,34128,34951,1103,737,2819,10815,12979,7601,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442880927l/3476._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2821,77394,77394,1133797,6,553213180,9780553213190.0,L.M. Montgomery,1917.0,Rainbow Valley,\"Anne's House of Dreams (Anne of Green Gables, #5)\",eng,4.12,57062,60826,1389,872,2177,11467,20526,25784,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442471048l/77394._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2822,75024,75024,1703824,68,345476166,9780345476170.0,Steve Berry,2006.0,The Templar Legacy,\"The Templar Legacy (Cotton Malone, #1)\",en-US,3.81,35804,39121,1729,843,2479,10458,14921,10420,https://images.gr-assets.com/books/1413393638l/75024.jpg,https://images.gr-assets.com/books/1413393638s/75024.jpg\n2823,89165,89165,1300421,55,449000656,9780449000660.0,Sue Grafton,1993.0,J is for Judgment (Kinsey Millhone #10),\"J is for Judgment (Kinsey Millhone, #10)\",eng,4.01,39214,41729,525,250,1003,10593,16261,13622,https://images.gr-assets.com/books/1315138239l/89165.jpg,https://images.gr-assets.com/books/1315138239s/89165.jpg\n2824,4836308,4836308,4901516,68,1401340903,9781401340900.0,Katherine Howe,2009.0,The Physick Book of Deliverance Dane,The Physick Book of Deliverance Dane,en-US,3.7,41284,45352,5539,1041,3900,13233,16803,10375,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442770048l/4836308._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2825,55401,55401,3898716,54,765310023,9780765310030.0,Steven Erikson,2000.0,Deadhouse Gates,\"Deadhouse Gates (The Malazan Book of the Fallen, #2)\",eng,4.25,34042,39031,1433,488,1239,5126,13350,18828,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385272744l/55401.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2826,17983690,17983690,25216800,42,1743342373,9781743342370.0,Kylie Scott,2013.0,Lick,\"Lick (Stage Dive, #1)\",eng,4.15,54585,64019,5374,815,2203,10197,24238,26566,https://images.gr-assets.com/books/1421855031l/17983690.jpg,https://images.gr-assets.com/books/1421855031s/17983690.jpg\n2827,78982,78982,1952681,80,312997132,9780312997140.0,Jeffrey Archer,1976.0,\"Not a Penny More, Not a Penny Less\",\"Not a Penny More, Not a Penny Less\",,4.0,28853,31207,864,238,1124,7056,12746,10043,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187539l/78982.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2828,2315892,2315892,2322406,63,575082453,9780575082460.0,Joe Abercrombie,2009.0,Best Served Cold,Best Served Cold,eng,4.16,36268,41201,1908,440,1356,6346,15971,17088,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347732723l/2315892.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2829,18635113,18635113,24946905,66,62309668,9780062309660.0,Emma Healey,2014.0,Elizabeth Is Missing,Elizabeth Is Missing,eng,3.7,26931,38225,5096,939,3055,10623,15355,8253,https://images.gr-assets.com/books/1388883559l/18635113.jpg,https://images.gr-assets.com/books/1388883559s/18635113.jpg\n2830,154424,154424,2874081,42,1416505016,9781416505010.0,Vince Flynn,2005.0,Consent to Kill,\"Consent to Kill (Mitch Rapp, #8)\",en-US,4.36,30675,33651,811,197,424,3629,12053,17348,https://images.gr-assets.com/books/1403880384l/154424.jpg,https://images.gr-assets.com/books/1403880384s/154424.jpg\n2831,8171378,8171378,13341052,26,679444327,9780679444330.0,Isabel Wilkerson,2010.0,The Warmth of Other Suns: The Epic Story of America's Great Migration ,The Warmth of Other Suns: The Epic Story of America's Great Migration,eng,4.31,31308,34610,4594,502,1069,3883,10772,18384,https://images.gr-assets.com/books/1433354252l/8171378.jpg,https://images.gr-assets.com/books/1433354252s/8171378.jpg\n2832,20706317,20706317,25807847,51,316399620,9780316399620.0,Claire North,2014.0,The First Fifteen Lives of Harry August,The First Fifteen Lives of Harry August,eng,4.04,22327,36973,5236,826,1866,6187,14323,13771,https://images.gr-assets.com/books/1407712314l/20706317.jpg,https://images.gr-assets.com/books/1407712314s/20706317.jpg\n2833,13623012,13623012,18067409,116,62206281,9780062206280.0,Carlos Ruiz Zafón,2011.0,El prisionero del cielo,\"The Prisoner of Heaven (The Cemetery of Forgotten Books, #3)\",,3.96,27987,40395,3922,248,1802,9358,16853,12134,https://images.gr-assets.com/books/1335994402l/13623012.jpg,https://images.gr-assets.com/books/1335994402s/13623012.jpg\n2834,11366,11366,1884932,68,345476093,9780345476100.0,\"Barbara W. Tuchman, Robert K. Massie\",1962.0,The Guns of August,The Guns of August,eng,4.18,35147,37695,1674,845,1281,5342,12858,17369,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431760956l/11366._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2835,937249,937249,978952,48,671047345,9780671047340.0,Vince Flynn,2001.0,Separation of Power,\"Separation of Power (Mitch Rapp, #5)\",en-US,4.32,30081,33186,709,127,462,4008,12628,15961,https://images.gr-assets.com/books/1314830847l/937249.jpg,https://images.gr-assets.com/books/1314830847s/937249.jpg\n2836,71865,71865,1253352,78,439829100,9780439829110.0,John Marsden,1993.0,\"Tomorrow, When the War Began\",\"Tomorrow, When the War Began (Tomorrow, #1)\",en-US,4.05,36501,40883,2574,718,1937,7428,15236,15564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214812l/71865.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2837,6514074,6514074,6705842,58,1599951495,9781599951490.0,\"Robert M. Edsel, Bret Witter\",2009.0,\"Monuments Men: Allied Heroes, Nazi Thieves and the Greatest Treasure Hunt in History \",\"The Monuments Men: Allied Heroes, Nazi Thieves, and the Greatest Treasure Hunt in History\",en-US,3.75,30583,35215,3282,1426,2577,8985,12646,9581,https://images.gr-assets.com/books/1344270659l/6514074.jpg,https://images.gr-assets.com/books/1344270659s/6514074.jpg\n2838,18140047,18140047,25484455,60,374346674,9780374346680.0,Ava Dellaira,2014.0,Love Letters to the Dead,Love Letters to the Dead,eng,3.82,38701,45914,6385,1588,3744,10770,15186,14626,https://images.gr-assets.com/books/1497096111l/18140047.jpg,https://images.gr-assets.com/books/1497096111s/18140047.jpg\n2839,10776793,2535743,2543266,24,,,Helen Bryan,2007.0,War Brides,War Brides,en-CA,3.75,16565,33982,3139,778,2585,9308,12850,8461,https://images.gr-assets.com/books/1341794666l/10776793.jpg,https://images.gr-assets.com/books/1341794666s/10776793.jpg\n2840,27071490,27071490,47113792,56,1101947136,9781101947140.0,Yaa Gyasi,2016.0,Homegoing,Homegoing,eng,4.41,41524,49984,7846,214,743,4520,17394,27113,https://images.gr-assets.com/books/1448108591l/27071490.jpg,https://images.gr-assets.com/books/1448108591s/27071490.jpg\n2841,7237456,7237456,8159756,36,393068471,9780393068470.0,Mary Roach,2010.0,Packing for Mars: The Curious Science of Life in the Void ,Packing for Mars: The Curious Science of Life in the Void,en-US,3.93,35724,38592,3737,861,1817,8333,15749,11832,https://images.gr-assets.com/books/1290480157l/7237456.jpg,https://images.gr-assets.com/books/1290480157s/7237456.jpg\n2842,3410425,3410425,3450678,51,446195502,9780446195510.0,David Baldacci,2008.0,Divine Justice,\"Divine Justice (Camel Club, #4)\",en-US,4.17,35071,38072,1281,236,768,6103,16164,14801,https://images.gr-assets.com/books/1336266873l/3410425.jpg,https://images.gr-assets.com/books/1336266873s/3410425.jpg\n2843,3918010,3918010,3963458,30,785132619,9780785132620.0,\"Mark Millar, John Romita Jr., Rob Liefeld\",2010.0,Kick-Ass,\"Kick-Ass (Kick-Ass, #1)\",eng,4.04,30688,32579,874,732,1596,6073,11366,12812,https://images.gr-assets.com/books/1343964935l/3918010.jpg,https://images.gr-assets.com/books/1343964935s/3918010.jpg\n2844,408615,408615,69191,47,1401908977,9781401908970.0,\"Immaculée Ilibagiza, Steve Erwin\",2006.0,Left to Tell: Discovering God Amidst the Rwandan Holocaust,Left to Tell: Discovering God Amidst the Rwandan Holocaust,eng,4.43,30270,31952,4644,303,540,3066,9238,18805,https://images.gr-assets.com/books/1328860563l/408615.jpg,https://images.gr-assets.com/books/1328860563s/408615.jpg\n2845,6686101,6686101,6881431,36,61449121,9780061449120.0,Michael  Grant,2011.0,Plague,\"Plague (Gone, #4)\",en-US,4.18,38819,41996,1869,642,1552,6573,14031,19198,https://images.gr-assets.com/books/1277829926l/6686101.jpg,https://images.gr-assets.com/books/1277829926s/6686101.jpg\n2846,5344,5344,6751955,773,321107217,9780321107210.0,Charles Dickens,1854.0,Hard Times: For These Times,Hard Times,eng,3.5,34675,42170,2098,1604,4753,14259,13967,7587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348651243l/5344.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2847,16033842,16033842,21805083,131,2877068161,9782877068160.0,Joël Dicker,2011.0,La Vérité sur l'affaire Harry Quebert,La Vérité sur l'affaire Harry Quebert,fre,3.94,14610,40614,5284,1626,2707,7257,14067,14957,https://images.gr-assets.com/books/1347987605l/16033842.jpg,https://images.gr-assets.com/books/1347987605s/16033842.jpg\n2848,3722183,3722183,42652219,58,316176532,9780316176540.0,Kate Atkinson,2015.0,A God in Ruins,A God in Ruins,eng,3.92,26604,34179,4886,908,1977,6958,13336,11000,https://images.gr-assets.com/books/1451442002l/3722183.jpg,https://images.gr-assets.com/books/1451442002s/3722183.jpg\n2849,6681454,6681454,14597518,77,052595158X,9780525951580.0,Harlan Coben,2010.0,Caught,Caught,,3.98,34168,39054,2918,285,1353,8842,17024,11550,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437773409l/6681454._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2850,46202,46202,1254584,54,373802498,9780373802490.0,Maria V. Snyder,2006.0,Magic Study,\"Magic Study (Study, #2)\",eng,4.06,48234,56503,3955,461,2157,11204,22337,20344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350824l/46202.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2851,667985,667985,2148984,14,1931514925,9781931514930.0,\"CLAMP, Shirley Kubo\",2001.0,ちょびっツ #1,\"Chobits, Vol. 1\",eng,4.05,34149,34322,257,1089,2071,6685,8499,15978,https://images.gr-assets.com/books/1487723428l/667985.jpg,https://images.gr-assets.com/books/1487723428s/667985.jpg\n2852,57891,57891,2786327,36,156931778X,9781569317780.0,\"Koushun Takami, Yuji Oniki\",1999.0,バトル・ロワイアル,Battle Royale,eng,4.24,35641,41193,3994,441,1298,5660,14240,19554,https://images.gr-assets.com/books/1331235272l/57891.jpg,https://images.gr-assets.com/books/1331235272s/57891.jpg\n2853,5126859,5126859,5193717,31,553807218,9780553807220.0,Sarah Addison Allen,2010.0,The Girl Who Chased the Moon,The Girl Who Chased the Moon,en-US,3.97,41049,46294,5757,320,1925,10749,19058,14242,https://images.gr-assets.com/books/1320483463l/5126859.jpg,https://images.gr-assets.com/books/1320483463s/5126859.jpg\n2854,107301,107301,276591,114,1842323008,9781842323010.0,Nevil Shute,1950.0,A Town Like Alice,A Town Like Alice,eng,4.12,36007,39705,2706,354,1195,7236,15396,15524,https://images.gr-assets.com/books/1327957610l/107301.jpg,https://images.gr-assets.com/books/1327957610s/107301.jpg\n2856,2485785,2485785,1544939,43,778325318,9780778325310.0,Diane Chamberlain,2006.0,The Secret Life Of CeeCee Wilkes,The Secret Life of CeeCee Wilkes,eng,4.09,32490,37581,3342,467,1251,6556,15560,13747,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554365788l/2485785.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2857,188230,188230,2570338,72,445406518,9780445406510.0,Elizabeth Peters,1975.0,Crocodile on the Sandbank,Crocodile on the Sandbank (Amelia Peabody #1),en-US,4.02,44395,46927,3175,882,2150,9526,16802,17567,https://images.gr-assets.com/books/1306096774l/188230.jpg,https://images.gr-assets.com/books/1306096774s/188230.jpg\n2858,6070950,6070950,6247416,68,425230074,9780425230080.0,Nora Roberts,2009.0,Bed of Roses,\"Bed of Roses (Bride Quartet, #2)\",eng,4.11,45089,48488,2014,317,1708,9506,17704,19253,https://images.gr-assets.com/books/1316972420l/6070950.jpg,https://images.gr-assets.com/books/1316972420s/6070950.jpg\n2859,19670,19670,17028842,57,425147584,9780425147580.0,Tom Clancy,1994.0,Debt of Honor,\"Debt of Honor (Jack Ryan Universe, #8)\",en-US,4.03,34952,36617,431,283,1264,7984,14650,12436,https://images.gr-assets.com/books/1310086695l/19670.jpg,https://images.gr-assets.com/books/1310086695s/19670.jpg\n2860,17343,17343,2072983,70,156904365,9780156904360.0,C.S. Lewis,1956.0,Till We Have Faces,Till We Have Faces,en-US,4.19,36758,39194,3172,442,1642,6364,12481,18265,https://images.gr-assets.com/books/1381692105l/17343.jpg,https://images.gr-assets.com/books/1381692105s/17343.jpg\n2861,224500,224500,1275528,91,142406120,9780142406120.0,Anthony Horowitz,2001.0,Point Blanc,\"Point Blank (Alex Rider, #2)\",en-US,4.1,39296,42482,1837,254,1568,8523,15503,16634,https://images.gr-assets.com/books/1375494413l/224500.jpg,https://images.gr-assets.com/books/1375494413s/224500.jpg\n2862,15676,15676,359553,62,425181111,9780425181120.0,Dean Koontz,1986.0,Strangers,Strangers,,3.98,34661,36258,575,445,1477,8708,13232,12396,https://images.gr-assets.com/books/1308458895l/15676.jpg,https://images.gr-assets.com/books/1308458895s/15676.jpg\n2863,93794,93794,2153394,45,451209338,9780451209340.0,Daniel Silva,2000.0,The Kill Artist,\"The Kill Artist (Gabriel Allon, #1)\",eng,4.0,31579,36365,1501,845,1439,7180,14473,12428,https://images.gr-assets.com/books/1391616227l/93794.jpg,https://images.gr-assets.com/books/1391616227s/93794.jpg\n2864,490867,490867,2318048,20,1844280594,9781844280600.0,Mo Willems,2004.0,Knuffle Bunny:  A Cautionary Tale,\"Knuffle Bunny: A Cautionary Tale (Knuffle Bunny, #1)\",eng,4.26,37886,39422,2110,771,1492,5512,10413,21234,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347373870l/490867.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2865,47558,47558,3211551,8,747541604,9780747541610.0,Edward Gorey,1963.0,The Gashlycrumb Tinies,\"The Gashlycrumb Tinies (The Vinegar Works, #1)\",eng,4.23,37054,38430,682,1192,1741,5141,9414,20942,https://images.gr-assets.com/books/1327933644l/47558.jpg,https://images.gr-assets.com/books/1327933644s/47558.jpg\n2866,13147230,13147230,18164154,43,62067753,9780062067750.0,\"Terry Pratchett, Stephen Baxter\",2012.0,The Long Earth,\"The Long Earth (The Long Earth, #1)\",eng,3.74,32313,38437,4017,809,2979,10583,15127,8939,https://images.gr-assets.com/books/1335532694l/13147230.jpg,https://images.gr-assets.com/books/1335532694s/13147230.jpg\n2867,1319,1319,722104,29,446691437,9780446691440.0,\"Steven Pressfield, Robert McKee\",2002.0,The War of Art: Break Through the Blocks and Win Your Inner Creative Battles,The War of Art: Break Through the Blocks & Win Your Inner Creative Battles,en-US,4.07,31399,37038,3578,992,2088,6294,11688,15976,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1574272133l/1319._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2869,11438,11438,2739837,72,679723056,9780679723060.0,Raymond Carver,1981.0,What We Talk About When We Talk About Love: Stories,What We Talk About When We Talk About Love,eng,4.22,29807,33517,2056,330,1099,4670,12177,15241,https://images.gr-assets.com/books/1475474209l/11438.jpg,https://images.gr-assets.com/books/1475474209s/11438.jpg\n2870,104379,104379,1070158,39,670061107,9780670061100.0,Sarah Dessen,1996.0,That Summer,That Summer,eng,3.49,43723,46291,2367,1839,6448,15690,12010,10304,https://images.gr-assets.com/books/1309197116l/104379.jpg,https://images.gr-assets.com/books/1309197116s/104379.jpg\n2871,10790290,10790290,15702572,21,316187747,9780316187750.0,Michael J. Sullivan,2011.0,Theft of Swords,\"Theft of Swords (The Riyria Revelations, #1-2)\",eng,4.21,33076,37062,2631,405,1064,4971,14512,16110,https://images.gr-assets.com/books/1307959785l/10790290.jpg,https://images.gr-assets.com/books/1307959785s/10790290.jpg\n2872,17286747,17286747,23845712,25,1250010691,9781250010700.0,Diane Chamberlain,2013.0,Necessary Lies,\"Necessary Lies (Necessary Lies, #1)\",eng,4.21,32761,37189,3992,398,816,4805,15590,15580,https://images.gr-assets.com/books/1362226103l/17286747.jpg,https://images.gr-assets.com/books/1362226103s/17286747.jpg\n2873,218467,218467,1842237,29,449208133,9780449208140.0,\"Larry Niven, Jerry Pournelle\",1977.0,Lucifer's Hammer,Lucifer's Hammer,en-US,3.98,33228,34997,1156,446,1640,7814,13231,11866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268115l/218467.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2874,114144,114144,1353111,74,425205754,9780425205750.0,Nora Roberts,1996.0,Montana Sky,Montana Sky,eng,4.07,36576,38610,861,306,1461,8475,13421,14947,https://images.gr-assets.com/books/1309197209l/114144.jpg,https://images.gr-assets.com/books/1309197209s/114144.jpg\n2875,31548,31548,2547187,343,451530179,9780451530170.0,\"W. Somerset Maugham, Benjamin DeMott, Maeve Binchy\",1915.0,Of Human Bondage,Of Human Bondage,eng,4.11,33028,38515,2567,587,1726,6508,13571,16123,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924695l/31548.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2876,18879761,18879761,26881966,54,451471474,9780451471480.0,Gayle Forman,2015.0,I Was Here,I Was Here,eng,3.78,38196,42970,5386,854,2828,12095,16301,10892,https://images.gr-assets.com/books/1405960366l/18879761.jpg,https://images.gr-assets.com/books/1405960366s/18879761.jpg\n2879,153542,153542,1069773,40,395169615,9780395169610.0,Virginia Lee Burton,1938.0,Mike Mulligan and His Steam Shovel,Mike Mulligan and His Steam Shovel,,4.2,42632,43735,525,569,1637,7816,12366,21347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924293l/153542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2881,116296,116296,144656,61,61161640,9780061161640.0,Terry Pratchett,2007.0,Making Money,\"Making Money (Discworld, #36; Moist Von Lipwig, #2)\",en-US,4.23,39419,45091,1490,118,846,7222,17340,19565,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440503111l/116296._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2882,7074000,7074000,7327847,64,1423368991,9781423368990.0,Nora Roberts,2010.0,Happy Ever After,\"Happy Ever After (Bride Quartet, #4)\",eng,4.17,40323,45829,2024,306,1460,8200,15969,19894,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587799584l/7074000._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2883,10908,10908,1069959,44,140230270,9780140230280.0,Jodi Picoult,1993.0,Harvesting the Heart,Harvesting the Heart,eng,3.59,35064,37783,2461,977,3826,12403,13074,7503,https://images.gr-assets.com/books/1309198959l/10908.jpg,https://images.gr-assets.com/books/1309198959s/10908.jpg\n2884,16150830,16150830,21986942,35,1423157516,9781423157520.0,Alexandra Bracken,2013.0,Never Fade,\"Never Fade (The Darkest Minds, #2)\",eng,4.33,46332,49465,4807,399,1180,5785,16493,25608,https://images.gr-assets.com/books/1368460550l/16150830.jpg,https://images.gr-assets.com/books/1368460550s/16150830.jpg\n2885,3257136,3257136,3292360,103,446407410,9780446407410.0,\"Vicki Myron, Bret Witter\",2008.0,Dewey: The Small-Town Library Cat Who Touched the World,Dewey: The Small-Town Library Cat Who Touched the World,eng,3.85,40356,43295,5439,987,3336,10995,13816,14161,https://images.gr-assets.com/books/1398144610l/3257136.jpg,https://images.gr-assets.com/books/1398144610s/3257136.jpg\n2886,16248113,16248113,21599439,40,62104896,9780062104890.0,Soman Chainani,2013.0,The School for Good and Evil,\"The School for Good and Evil (The School for Good and Evil, #1)\",eng,4.0,35890,39917,4713,1617,2495,7040,11963,16802,https://images.gr-assets.com/books/1490529205l/16248113.jpg,https://images.gr-assets.com/books/1490529205s/16248113.jpg\n2887,30259,30259,477836,37,60788380,9780060788380.0,Kim Harrison,2007.0,For a Few Demons More ,\"For a Few Demons More (The Hollows, #5)\",en-US,4.33,44879,48461,1184,215,777,6181,16815,24473,https://images.gr-assets.com/books/1319592584l/30259.jpg,https://images.gr-assets.com/books/1319592584s/30259.jpg\n2888,20821043,20821043,21598636,44,670026328,9780670026330.0,Tana French,2014.0,The Secret Place,\"The Secret Place (Dublin Murder Squad, #5)\",eng,3.83,30834,38667,4883,729,2363,9360,16607,9608,https://images.gr-assets.com/books/1396671263l/20821043.jpg,https://images.gr-assets.com/books/1396671263s/20821043.jpg\n2889,6604209,6604209,6798109,15,076536543X,9780765365440.0,Brandon Sanderson,2009.0,Mistborn Trilogy Boxed Set,\"Mistborn Trilogy Boxed Set (Mistborn, #1-3)\",en-US,4.55,22917,32376,982,130,425,2185,8517,21119,https://images.gr-assets.com/books/1257442247l/6604209.jpg,https://images.gr-assets.com/books/1257442247s/6604209.jpg\n2891,6545536,6545536,6737901,26,545060486,9780545060490.0,Gordon Korman,2010.0,The Emperor's Code,\"The Emperor's Code (The 39 Clues, #8)\",eng,4.04,36068,36546,518,845,1691,8075,10580,15355,https://images.gr-assets.com/books/1357211054l/6545536.jpg,https://images.gr-assets.com/books/1357211054s/6545536.jpg\n2892,808853,808853,251371,21,618164413,9780618164420.0,\"Margret Rey, H.A. Rey\",1969.0,The Complete Adventures of Curious George,The Complete Adventures of Curious George,,4.23,39453,39802,165,605,1457,6747,10540,20453,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348191831l/808853.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2893,11082037,11082037,15547563,74,316069418,9780316069410.0,Michael Connelly,2011.0,The Drop,\"The Drop (Harry Bosch, #17; Harry Bosch Universe, #21)\",eng,4.14,32426,39023,2452,145,697,6513,17892,13776,https://images.gr-assets.com/books/1327935031l/11082037.jpg,https://images.gr-assets.com/books/1327935031s/11082037.jpg\n2894,500503,500503,488611,10,189221301X,645573003012.0,Naoko Takeuchi,1992.0,美少女戦士セーラームーン 1 [Bishōjo Senshi Sailor Moon 1],\"Sailor Moon, #1 (Sailor Moon, #1)\",eng,4.29,34951,35192,391,996,1385,4754,7181,20876,https://images.gr-assets.com/books/1327981776l/500503.jpg,https://images.gr-assets.com/books/1327981776s/500503.jpg\n2896,13436373,13436373,18940474,8,545326990,9780545327000.0,\"Raina Telgemeier, Gurihiru\",2012.0,Drama,Drama,eng,4.14,42759,44842,3596,1152,2028,7558,12801,21303,https://images.gr-assets.com/books/1330157763l/13436373.jpg,https://images.gr-assets.com/books/1330157763s/13436373.jpg\n2897,3110,3110,824686,18,074326004X,9780743260050.0,Sarah Vowell,2005.0,Assassination Vacation,Assassination Vacation,en-US,3.98,32176,34125,3408,523,1545,6889,14274,10894,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440616283l/3110._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2898,92121,92121,1383240,79,380014300,9780380014310.0,Roger Zelazny,1970.0,Nine Princes in Amber,Nine Princes in Amber (The Chronicles of Amber #1),en-US,4.1,37961,40090,1354,736,1990,7001,12982,17381,https://images.gr-assets.com/books/1416090973l/92121.jpg,https://images.gr-assets.com/books/1416090973s/92121.jpg\n2899,18144053,18144053,25491380,30,1451693567,9781451693560.0,Alice Hoffman,2014.0,The Museum of Extraordinary Things,The Museum of Extraordinary Things,eng,3.73,29805,35357,4834,744,2646,9804,14517,7646,https://images.gr-assets.com/books/1392575125l/18144053.jpg,https://images.gr-assets.com/books/1392575125s/18144053.jpg\n2900,3220405,3220405,3465687,31,765304961,9780765304960.0,Orson Scott Card,2008.0,\"Ender in Exile (The Ender Quintet, #2)\",\"Ender in Exile (Ender's Saga, #1.2)\",en-US,3.89,29389,38419,1889,437,1830,10017,15486,10649,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442883678l/3220405._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2901,421129,421129,2523603,38,042519485X,9780425194850.0,MaryJanice Davidson,2004.0,Undead and Unwed,\"Undead and Unwed (Undead, #1)\",en-US,3.81,45634,47820,2489,1524,3539,12154,15722,14881,https://images.gr-assets.com/books/1298768655l/421129.jpg,https://images.gr-assets.com/books/1298768655s/421129.jpg\n2902,4005,4005,19254211,143,722536542,9780722536540.0,Paulo Coelho,1996.0,O Monte Cinco,The Fifth Mountain,eng,3.61,26060,30977,1238,1220,3366,9197,9601,7593,https://images.gr-assets.com/books/1358268472l/4005.jpg,https://images.gr-assets.com/books/1358268472s/4005.jpg\n2903,35519,35519,971052,46,385418868,9780385418870.0,\"Joseph Campbell, Bill Moyers\",1988.0,The Power of Myth,The Power of Myth,en-GB,4.3,32337,33914,1282,391,939,4456,10578,17550,https://images.gr-assets.com/books/1327878742l/35519.jpg,https://images.gr-assets.com/books/1327878742s/35519.jpg\n2904,21418013,21418013,26115712,29,765375869,9780765375860.0,John Scalzi,2014.0,Lock In,\"Lock In (Lock In, #1)\",eng,3.85,31073,35213,4161,793,1630,8108,16141,8541,https://images.gr-assets.com/books/1438701397l/21418013.jpg,https://images.gr-assets.com/books/1438701397s/21418013.jpg\n2905,17380041,17380041,24080996,64,385351232,9780385351230.0,Jo Baker,2013.0,Longbourn,Longbourn,eng,3.62,32744,38006,6169,1163,3408,11297,15145,6993,https://images.gr-assets.com/books/1452268403l/17380041.jpg,https://images.gr-assets.com/books/1452268403s/17380041.jpg\n2906,21412202,21412202,27029851,1,1476764026,9781476764020.0,\"Cary Elwes, Joe Layden, Various, Rob Reiner\",2014.0,As You Wish: Inconceivable Tales from the Making of The Princess Bride,As You Wish: Inconceivable Tales from the Making of The Princess Bride,eng,4.08,31886,34379,6019,811,1143,5803,13229,13393,https://images.gr-assets.com/books/1418103917l/21412202.jpg,https://images.gr-assets.com/books/1418103917s/21412202.jpg\n2907,773276,773276,2992071,36,399230033,9780399230040.0,Peggy Rathmann,1994.0,\"Good Night, Gorilla\",\"Good Night, Gorilla\",,4.2,37948,38692,796,511,1544,6784,10585,19268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347227009l/773276.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2908,13522285,13522285,19082966,36,62217135,9780062217130.0,Robyn Schneider,2013.0,\"Severed Heads, Broken Hearts\",The Beginning of Everything,eng,3.78,35150,40765,4726,969,3198,10685,15020,10893,https://images.gr-assets.com/books/1366395005l/13522285.jpg,https://images.gr-assets.com/books/1366395005s/13522285.jpg\n2909,6389704,6389704,6578095,34,054506046X,9780545060460.0,Jude Watson,2009.0,\"In Too Deep (The 39 Clues, Book 6)\",\"In Too Deep (The 39 Clues, #6)\",eng,4.02,35694,37137,628,814,1801,8381,11076,15065,https://images.gr-assets.com/books/1357211047l/6389704.jpg,https://images.gr-assets.com/books/1357211047s/6389704.jpg\n2910,138269,138269,985716,73,1840187166,9781840187170.0,\"Frank W. Abagnale, Stan Redding\",1980.0,Catch Me If You Can,Catch Me If You Can: The True Story of a Real Fake,eng,4.05,32048,36201,1757,357,1326,7352,14245,12921,https://images.gr-assets.com/books/1358730242l/138269.jpg,https://images.gr-assets.com/books/1358730242s/138269.jpg\n2911,30248,30248,2644676,38,515133876,9780515133880.0,Laurell K. Hamilton,2001.0,\"Narcissus in Chains (Anita Blake, Vampire Hunter, #10)\",\"Narcissus in Chains (Anita Blake, Vampire Hunter, #10)\",eng,3.89,46567,49456,1017,1601,4209,10920,14041,18685,https://images.gr-assets.com/books/1386179578l/30248.jpg,https://images.gr-assets.com/books/1386179578s/30248.jpg\n2913,16099159,16099159,21908552,32,345545834,9780345545830.0,J. Kenner,2013.0,Claim Me,\"Claim Me (Stark Trilogy, #2)\",eng,4.21,42238,46089,1715,388,1525,7160,15887,21129,https://images.gr-assets.com/books/1358614559l/16099159.jpg,https://images.gr-assets.com/books/1358614559s/16099159.jpg\n2914,3483,3483,910619,52,067003777X,9780670037770.0,Marisha Pessl,2006.0,Special Topics in Calamity Physics,Special Topics in Calamity Physics,eng,3.7,29369,34307,4754,1342,3151,8523,12585,8706,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442699779l/3483._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2915,18498558,18498558,26186624,49,62259652,9780062259650.0,Josh Malerman,2014.0,Bird Box,Bird Box,eng,3.98,31735,40619,6471,718,2042,7826,16827,13206,https://images.gr-assets.com/books/1383949470l/18498558.jpg,https://images.gr-assets.com/books/1383949470s/18498558.jpg\n2916,12476820,12476820,17461183,37,62071041,9780062071040.0,Dan Wells,2012.0,Partials,\"Partials (Partials Sequence, #1)\",en-US,3.94,42493,44946,4291,1114,2521,9279,16910,15122,https://images.gr-assets.com/books/1337468746l/12476820.jpg,https://images.gr-assets.com/books/1337468746s/12476820.jpg\n2917,72223,72223,3222858,19,618773479,9780618773470.0,Timothy Egan,2006.0,The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl,The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl,en-US,4.04,32275,34295,3997,613,1502,6167,13510,12503,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441676713l/72223._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2918,17802747,17802747,24904359,29,758278454,9780758278460.0,Ellen Marie Wiseman,2013.0,What She Left Behind,What She Left Behind,eng,3.86,22933,31350,3619,679,2176,7116,12361,9018,https://images.gr-assets.com/books/1373226871l/17802747.jpg,https://images.gr-assets.com/books/1373226871s/17802747.jpg\n2919,3047850,3047850,3821158,42,006156608X,9780061566080.0,Sara Shepard,2008.0,Wicked,\"Wicked (Pretty Little Liars, #5)\",eng,4.04,38461,41509,1489,467,2030,9372,13291,16349,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236780950l/3047850.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2920,184655,184655,2127844,46,1416516352,9781416516350.0,Vince Flynn,1999.0,Transfer of Power,\"Transfer of Power (Mitch Rapp, #3)\",eng,4.31,28647,33735,1570,155,519,4006,13209,15846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442152192l/184655._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2921,395090,395090,1185316,67,60931728,9780060931730.0,Sylvia Plath,1965.0,Ariel,Ariel,eng,4.23,35566,38547,1072,626,1195,5497,12507,18722,https://images.gr-assets.com/books/1442258738l/395090.jpg,https://images.gr-assets.com/books/1442258738s/395090.jpg\n2922,13223349,13223349,18412501,27,1401235417,9781401235410.0,\"Scott Snyder, Greg Capullo, Jonathan Glapion\",2012.0,\"Batman, Volume 1: The Court of Owls\",\"Batman, Volume 1: The Court of Owls\",eng,4.3,30617,33150,1447,423,827,3934,11175,16791,https://images.gr-assets.com/books/1342307351l/13223349.jpg,https://images.gr-assets.com/books/1342307351s/13223349.jpg\n2923,33457,33457,2915038,47,60735422,9780060735420.0,Christopher Moore,1992.0,Practical Demonkeeping,\"Practical Demonkeeping (Pine Cove, #1)\",en-US,3.81,33593,35844,1377,427,1898,10613,13910,8996,https://images.gr-assets.com/books/1429229158l/33457.jpg,https://images.gr-assets.com/books/1429229158s/33457.jpg\n2924,46438,46438,143448,99,451219953,9780451219950.0,Raymond Khoury,2006.0,The Last Templar,\"The Last Templar (Templar, #1)\",eng,3.57,33675,35769,1482,1154,3603,11658,12251,7103,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284037l/46438.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2925,6534932,6534932,6727073,11,345518519,9780345518510.0,Kathy Griffin,2009.0,Official Book Club Selection: A Memoir According to Kathy Griffin,Official Book Club Selection: A Memoir According to Kathy Griffin,en-US,3.8,31685,32718,1426,1304,2120,8243,11250,9801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428806540l/6534932.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2926,240976,240976,3428728,112,60932147,9780060932140.0,\"Milan Kundera, Aaron Asher\",1979.0,Kniha smíchu a zapomnění,The Book of Laughter and Forgetting,eng,4.01,28159,32303,1396,375,1322,6550,13528,10528,https://images.gr-assets.com/books/1446568718l/240976.jpg,https://images.gr-assets.com/books/1446568718s/240976.jpg\n2927,479415,479415,467825,111,440222656,9780440222650.0,Nicholas Evans,1995.0,The Horse Whisperer,The Horse Whisperer,en-US,3.77,38033,42843,1603,1032,3367,11494,15447,11503,https://images.gr-assets.com/books/1320410310l/479415.jpg,https://images.gr-assets.com/books/1320410310s/479415.jpg\n2928,46191,9201647,2572759,50,1580627560,9781580627570.0,Sherry Argov,2009.0,Why Men Love Bitches: From Doormat to Dreamgirl - A Woman's Guide to Holding Her Own In A Relationship,Why Men Love Bitches: From Doormat to Dreamgirl—A Woman's Guide to Holding Her Own in a Relationship,,3.89,26662,28618,1467,1258,2194,6076,7993,11097,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180512l/46191.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2929,3047851,3047851,3078642,23,61566179,9780061566170.0,Sara Shepard,2010.0,Wanted,\"Wanted (Pretty Little Liars, #8)\",en-US,4.15,36207,38098,1537,526,1683,7138,11004,17747,https://images.gr-assets.com/books/1325823986l/3047851.jpg,https://images.gr-assets.com/books/1325823986s/3047851.jpg\n2930,1225621,1225621,1214135,29,60788704,9780060788700.0,Kim Harrison,2008.0,The Outlaw Demon Wails ,\"The Outlaw Demon Wails (The Hollows, #6)\",en-US,4.38,44119,47549,1088,149,596,5323,16276,25205,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434582373l/1225621._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2931,433567,433567,4243538,566,048627263X,9780486272630.0,\"Edwin A. Abbott, Banesh Hoffmann\",1884.0,Flatland: A Romance of Many Dimensions,Flatland: A Romance of Many Dimensions,en-US,3.81,31377,39272,2864,952,2808,10004,14405,11103,https://images.gr-assets.com/books/1435435775l/433567.jpg,https://images.gr-assets.com/books/1435435775s/433567.jpg\n2932,7728889,7728889,10501517,48,031612611X,9780316126110.0,Libba Bray,2012.0,The Diviners,\"The Diviners (The Diviners, #1)\",en-US,3.96,44513,48730,7351,1529,2761,9098,18094,17248,https://images.gr-assets.com/books/1336424966l/7728889.jpg,https://images.gr-assets.com/books/1336424966s/7728889.jpg\n2933,3798703,3798703,3842894,38,375851798,9780375851800.0,Tim Tharp,2008.0,The Spectacular Now,The Spectacular Now,eng,3.53,30125,36245,4075,1264,4125,11625,12568,6663,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441898584l/3798703._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2934,14142,14142,1561022,172,61129739,9780061129740.0,\"Erich Fromm, Peter D. Kramer, Rainer Funk\",1956.0,The Art of Loving,The Art of Loving,eng,4.01,29048,33263,1269,854,1739,6528,11105,13037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438550243l/14142._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2935,537070,537070,2432390,45,043979143X,9780439791430.0,Suzanne Collins,2007.0,Gregor and the Code of Claw,\"Gregor and the Code of Claw (Underland Chronicles, #5)\",,4.25,33286,35387,1624,645,990,4751,11340,17661,https://images.gr-assets.com/books/1365854331l/537070.jpg,https://images.gr-assets.com/books/1365854331s/537070.jpg\n2936,64218,64218,59951,80,380821214,9780380821210.0,Terry Pratchett,1990.0,Eric,\"Eric (Discworld, #9; Rincewind #4)\",en-US,3.72,37938,44358,1207,340,3278,14872,15802,10066,https://images.gr-assets.com/books/1377865202l/64218.jpg,https://images.gr-assets.com/books/1377865202s/64218.jpg\n2937,25102,25102,810826,33,1563890933,9781563890930.0,\"Neil Gaiman, Shawn McManus, Colleen Doran, Bryan Talbot, George Pratt, Stan Woch, Dick Giordano, Todd Klein\",1993.0,The Sandman: A Game of You,A Game of You (The Sandman #5),eng,4.43,37211,41935,1037,117,586,4105,13376,23751,https://images.gr-assets.com/books/1312279891l/25102.jpg,https://images.gr-assets.com/books/1312279891s/25102.jpg\n2938,9302,9302,426620,59,60731486,9780060731490.0,Marian Keyes,2004.0,The Other Side of the Story,The Other Side of the Story,,3.77,32185,34440,895,644,2229,10239,12589,8739,https://images.gr-assets.com/books/1407107814l/9302.jpg,https://images.gr-assets.com/books/1407107814s/9302.jpg\n2939,16729,16729,2707941,57,553381539,9780553381540.0,Pat Conroy,1975.0,Beach Music,Beach Music,eng,4.13,33220,35585,2396,515,1511,6104,12108,15347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426903848l/16729.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2940,46601,46601,522675,27,842313079,9780842313070.0,Francine Rivers,1994.0,\"An Echo in the Darkness (Mark of the Lion, #2)\",\"An Echo in the Darkness (Mark of the Lion, #2)\",en-US,4.6,32386,33451,1311,130,359,2138,7372,23452,https://images.gr-assets.com/books/1481920193l/46601.jpg,https://images.gr-assets.com/books/1481920193s/46601.jpg\n2941,16429619,16429619,22617247,16,,,Mary E. Pearson,2014.0,The Kiss of Deception,\"The Kiss of Deception (The Remnant Chronicles, #1)\",eng,4.06,46096,51124,7571,1223,2570,8546,18447,20338,https://images.gr-assets.com/books/1389804901l/16429619.jpg,https://images.gr-assets.com/books/1389804901s/16429619.jpg\n2942,42933,42933,1755754,92,440184622,9780440184620.0,James Clavell,1966.0,Tai-Pan,\"Tai-Pan (Asian Saga, #2)\",eng,4.25,34158,36219,721,156,779,5456,13375,16453,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1577989362l/42933._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2943,8573020,8573020,13441827,36,399157220,9780399157230.0,Eleanor Brown,2011.0,The Weird Sisters,The Weird Sisters,en-US,3.36,35752,39982,5929,1436,5258,15573,13103,4612,https://images.gr-assets.com/books/1280449598l/8573020.jpg,https://images.gr-assets.com/books/1280449598s/8573020.jpg\n2944,34498,34498,280092,61,413771164,9780413771160.0,Terry Pratchett,2000.0,The Truth,\"The Truth (Discworld, #25; Industrial Revolution, #2)\",eng,4.25,37045,42622,975,97,596,6395,16950,18584,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347487127l/34498.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2945,10762469,10762469,15455523,53,312358342,9780312358340.0,Tom Perrotta,2011.0,The Leftovers,The Leftovers,en-US,3.38,31583,36284,5095,1192,4787,13437,12904,3964,https://images.gr-assets.com/books/1404872433l/10762469.jpg,https://images.gr-assets.com/books/1404872433s/10762469.jpg\n2946,66354,66354,64339,66,60920432,9780060920430.0,Mihaly Csikszentmihalyi,1990.0,Flow: The Psychology of Optimal Experience,Flow: The Psychology of Optimal Experience,eng,4.1,28619,32107,1485,605,1399,5507,11395,13201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432253110l/66354._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2949,693016,693016,679345,52,312949804,9780312949810.0,Lisa Kleypas,2007.0,Mine Till Midnight,\"Mine Till Midnight (The Hathaways, #1)\",eng,4.08,44104,46442,1776,630,1649,8801,17560,17802,https://images.gr-assets.com/books/1380326170l/693016.jpg,https://images.gr-assets.com/books/1380326170s/693016.jpg\n2950,96123,96123,2486632,63,1416522913,9781416522910.0,\"Carl Bernstein, Bob Woodward\",1974.0,All the President's Men,All the President's Men,eng,4.17,30919,34696,1019,448,948,5460,13410,14430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347805228l/96123.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2952,20564,20564,3277447,529,141439629,9780141439620.0,\"George Eliot, A.S. Byatt\",1860.0,The Mill on the Floss,The Mill on the Floss,eng,3.77,36017,38983,1424,1205,3019,10102,13708,10949,https://images.gr-assets.com/books/1394285531l/20564.jpg,https://images.gr-assets.com/books/1394285531s/20564.jpg\n2953,7334201,7334201,8996782,49,1400066409,9781400066410.0,Gary Shteyngart,2010.0,Super Sad True Love Story,Super Sad True Love Story,eng,3.44,29946,33332,4362,1893,4351,9933,11361,5794,https://images.gr-assets.com/books/1320540909l/7334201.jpg,https://images.gr-assets.com/books/1320540909s/7334201.jpg\n2955,13570854,13570854,19151084,37,451239350,9780451239360.0,J.R. Ward,2013.0,Lover at Last,\"Lover at Last (Black Dagger Brotherhood, #11)\",eng,4.3,45447,51967,5707,549,1718,6860,15095,27745,https://images.gr-assets.com/books/1339084717l/13570854.jpg,https://images.gr-assets.com/books/1339084717s/13570854.jpg\n2957,121732,121732,877675,77,6280838,9780006280840.0,C.S. Lewis,1955.0,Surprised by Joy: The Shape of My Early Life,Surprised by Joy: The Shape of My Early Life,eng,4.14,33698,35986,1156,612,1261,6142,12367,15604,https://images.gr-assets.com/books/1381407473l/121732.jpg,https://images.gr-assets.com/books/1381407473s/121732.jpg\n2958,24113,24113,850076,48,465026567,9780465026560.0,Douglas R. Hofstadter,1979.0,\"Gödel, Escher, Bach: An Eternal Golden Braid\",\"Gödel, Escher, Bach: An Eternal Golden Braid\",eng,4.3,31616,33510,1383,642,1234,4068,9200,18366,https://images.gr-assets.com/books/1428732588l/24113.jpg,https://images.gr-assets.com/books/1428732588s/24113.jpg\n2959,153780,153780,1142872,25,375828788,9780375828780.0,Tamora Pierce,2004.0,Trickster's Queen,\"Trickster's Queen (Daughter of the Lioness, #2)\",eng,4.28,45843,47476,795,379,1359,6900,14858,23980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388188723l/153780.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2961,8953,8953,2049173,43,439286069,9780439286060.0,Rodman Philbrick,1993.0,Freak the Mighty,\"Freak the Mighty (Freak The Mighty, #1)\",eng,3.98,34587,35493,3302,820,2063,7351,11982,13277,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440388999l/8953._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2962,15790873,15790873,18529702,40,316212822,9780316212820.0,Jennifer E. Smith,2013.0,This Is What Happy Looks Like,\"This Is What Happy Looks Like (This is What Happy Looks Like, #1)\",eng,3.69,40369,43044,4687,1096,3778,12941,14877,10352,https://images.gr-assets.com/books/1344444283l/15790873.jpg,https://images.gr-assets.com/books/1344444283s/15790873.jpg\n2963,53817,53817,1616396,40,310245656,9780310245650.0,Philip Yancey,1997.0,What's So Amazing About Grace?,What's So Amazing About Grace?,en-US,4.21,28501,29655,842,544,944,4374,9690,14103,https://images.gr-assets.com/books/1328050483l/53817.jpg,https://images.gr-assets.com/books/1328050483s/53817.jpg\n2964,10816297,10816297,15729967,35,1416595201,9781416595200.0,Vince Flynn,2012.0,Kill Shot,\"Kill Shot (Mitch Rapp, #2)\",eng,4.3,28845,32995,1583,134,525,4144,12755,15437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390441073l/10816297.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2965,74389,74389,1377315,116,553381652,9780553381660.0,Jean M. Auel,1990.0,The Plains of Passage,\"The Plains of Passage (Earth's Children, #4)\",en-US,3.77,36663,42228,1038,730,3581,12152,13945,11820,https://images.gr-assets.com/books/1324059606l/74389.jpg,https://images.gr-assets.com/books/1324059606s/74389.jpg\n2966,17733898,17733898,21986528,70,1419711326,9781419711330.0,Jeff Kinney,2013.0,Hard Luck,\"Hard Luck (Diary of a Wimpy Kid, #8)\",eng,4.28,32069,37382,2377,751,1381,5290,9296,20664,https://images.gr-assets.com/books/1376473492l/17733898.jpg,https://images.gr-assets.com/books/1376473492s/17733898.jpg\n2967,9838,9838,1052584,92,316159417,9780316159420.0,\"Åsne Seierstad, Ingrid Christopherson\",2002.0,Bokhandleren i Kabul,The Bookseller of Kabul,en-US,3.76,30531,33890,2664,512,2168,9889,13752,7569,https://images.gr-assets.com/books/1388611939l/9838.jpg,https://images.gr-assets.com/books/1388611939s/9838.jpg\n2968,833710,833710,1726608,46,743437314,9780743437320.0,D.J. MacHale,2002.0,The Merchant of Death,\"The Merchant of Death (Pendragon, #1)\",eng,3.93,38633,40104,1723,1135,2545,8772,13355,14297,https://images.gr-assets.com/books/1351196725l/833710.jpg,https://images.gr-assets.com/books/1351196725s/833710.jpg\n2969,4703581,4703581,4767909,57,345497511,9780345497510.0,China Miéville,2009.0,The City & The City,The City & the City,eng,3.91,29577,37328,4285,688,2024,8155,15584,10877,https://images.gr-assets.com/books/1320475957l/4703581.jpg,https://images.gr-assets.com/books/1320475957s/4703581.jpg\n2970,128759,128759,1080365,74,1416510567,9781416510570.0,Kathy Reichs,2001.0,Fatal Voyage,\"Fatal Voyage (Temperance Brennan, #4)\",,4.04,35970,39167,869,310,1057,8588,15979,13233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1219072994l/128759.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2971,4345498,4345498,4393420,32,441017029,9780441017030.0,Ilona Andrews,2009.0,Magic Strikes,\"Magic Strikes (Kate Daniels, #3)\",eng,4.44,51165,55278,2573,264,624,4964,18124,31302,https://images.gr-assets.com/books/1221738233l/4345498.jpg,https://images.gr-assets.com/books/1221738233s/4345498.jpg\n2972,15748898,17348308,21441527,30,1478322306,9781478322310.0,Chelsea M. Cameron,2012.0,My Favorite Mistake,\"My Favorite Mistake (My Favorite Mistake, #1)\",en-US,4.01,30177,51892,2371,1064,2578,10251,19032,18967,https://images.gr-assets.com/books/1361713404l/15748898.jpg,https://images.gr-assets.com/books/1361713404s/15748898.jpg\n2973,124918,124918,120317,76,425176088,9780425176080.0,Arthur Hailey,1968.0,Airport,Airport,eng,3.92,30040,31152,324,356,1559,7920,11612,9705,https://images.gr-assets.com/books/1309288724l/124918.jpg,https://images.gr-assets.com/books/1309288724s/124918.jpg\n2974,7201913,7201913,7889455,39,446545244,9780446545240.0,James Patterson,2011.0,Angel,\"Angel (Maximum Ride, #7)\",en-US,4.02,39938,43494,1888,1259,2863,8237,12334,18801,https://images.gr-assets.com/books/1272836170l/7201913.jpg,https://images.gr-assets.com/books/1272836170s/7201913.jpg\n2975,4983,4983,13908787,2,791071685,9780791071690.0,\"Harold Bloom, Terry Southern, David H. Goldsmith, James Lundquist, Lawrence R. Broer, Peter J. Reed, Loree Rackstraw, William S. Doxey, Jerome Klinkowitz, Richard Giannone, John L. Simons, Leonard Mustazza, Zoltan Ab di-Nagy, Peter Freese, Wendy B. Faris\",2002.0,Kurt Vonnegut's Cat Cradle,Kurt Vonnegut's Cat's Cradle (Modern Critical Interpretations),eng,4.35,27519,27533,184,174,370,3130,9902,13957,https://images.gr-assets.com/books/1297118346l/4983.jpg,https://images.gr-assets.com/books/1297118346s/4983.jpg\n2976,91248,91248,632895,55,192751077,9780192751070.0,\"Beverly Cleary, Alan Tiegreen\",1975.0,Ramona the Brave ,\"Ramona the Brave (Ramona, #3)\",eng,4.09,42479,44092,558,665,1536,9090,14624,18177,https://images.gr-assets.com/books/1408925322l/91248.jpg,https://images.gr-assets.com/books/1408925322s/91248.jpg\n2977,216422,216422,397139,48,553564927,9780553564920.0,Timothy Zahn,1993.0,Star Wars: The Last Command,The Last Command,eng,4.2,33145,35623,835,165,880,5792,13478,15308,https://images.gr-assets.com/books/1451092026l/216422.jpg,https://images.gr-assets.com/books/1451092026s/216422.jpg\n2978,13578175,13578175,19161502,20,1616960922,9781616960930.0,Brandon Sanderson,2012.0,The Emperor's Soul,The Emperor's Soul,eng,4.33,33634,39282,2989,84,477,4536,15386,18799,https://images.gr-assets.com/books/1343059311l/13578175.jpg,https://images.gr-assets.com/books/1343059311s/13578175.jpg\n2979,2906039,2906039,2927243,79,1416584080,9781416584090.0,Stephen King,2008.0,Just After Sunset,Just After Sunset,eng,3.85,34722,38319,2133,361,1925,10705,15299,10029,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348108664l/2906039.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2980,201114,201114,3231932,35,786851716,9780786851710.0,Patricia McCormick,2006.0,Sold,Sold,eng,4.19,36389,38446,4792,277,1069,6022,14839,16239,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442850952l/201114._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2981,552887,552887,3357637,69,316015059,9780316015060.0,James Patterson,2007.0,Double Cross,\"Double Cross (Alex Cross, #13)\",eng,3.99,34189,36805,1366,268,1418,8438,14878,11803,https://images.gr-assets.com/books/1256839349l/552887.jpg,https://images.gr-assets.com/books/1256839349s/552887.jpg\n2982,27822,27822,1795311,57,192838997,9780192839000.0,\"Alexander Pushkin, James E. Falen\",1833.0,Евгений Онегин: Роман в стихах ,Eugene Onegin,eng,4.08,33240,37931,921,537,2010,7368,11935,16081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388373138l/27822.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2983,13138635,13138635,18315607,31,1423171020,9781423171030.0,\"Amie Kaufman, Meagan Spooner\",2013.0,These Broken Stars,\"These Broken Stars (Starbound, #1)\",eng,3.93,44488,48016,7148,1514,2778,9686,17553,16485,https://images.gr-assets.com/books/1383578978l/13138635.jpg,https://images.gr-assets.com/books/1383578978s/13138635.jpg\n2984,2986865,2986865,3017319,62,670062278,9780670062270.0,Alison Goodman,2008.0,The Two Pearls of Wisdom,\"Eon: Dragoneye Reborn (Eon, #1)\",en-US,3.98,42802,47738,3935,1136,2572,9453,17390,17187,https://images.gr-assets.com/books/1299076175l/2986865.jpg,https://images.gr-assets.com/books/1299076175s/2986865.jpg\n2985,4538,4538,4242,42,689862210,9780689862210.0,E.L. Konigsburg,1996.0,The View from Saturday,The View from Saturday,,3.74,36803,38226,1748,1549,3151,9697,12950,10879,https://images.gr-assets.com/books/1476944774l/4538.jpg,https://images.gr-assets.com/books/1476944774s/4538.jpg\n2986,7933615,7933615,16003318,49,312594429,9780312594430.0,\"P.C. Cast, Kristin Cast\",2012.0,Hidden,\"Hidden (House of Night, #10)\",en-US,3.98,38594,42232,1990,1161,2920,8997,11649,17505,https://images.gr-assets.com/books/1340127630l/7933615.jpg,https://images.gr-assets.com/books/1340127630s/7933615.jpg\n2987,11454587,11454587,15249128,34,1423121325,9781423121330.0,Rachel Hawkins,2012.0,Spell Bound,\"Spell Bound (Hex Hall, #3)\",eng,4.09,48116,50645,3799,596,2132,9995,17324,20598,https://images.gr-assets.com/books/1313010167l/11454587.jpg,https://images.gr-assets.com/books/1313010167s/11454587.jpg\n2988,32979,32979,151480,44,1557091552,9781557091550.0,\"Carolyn Keene, Russell H. Tandy, Sara Paretsky\",1930.0,\"The Secret of the Old Clock (Nancy Drew Mystery Stories, #1)\",\"The Secret of the Old Clock (Nancy Drew, #1)\",eng,3.98,44256,48913,2169,556,2146,12581,16244,17386,https://images.gr-assets.com/books/1351534678l/32979.jpg,https://images.gr-assets.com/books/1351534678s/32979.jpg\n2989,33810,33810,2309,62,446679089,9780446679080.0,Nelson DeMille,1997.0,Plum Island,\"Plum Island (John Corey, #1)\",eng,4.03,30595,34509,1692,319,1210,6917,14875,11188,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460212l/33810.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2990,325421,325421,803204,263,60775971,9780060775970.0,\"Hugh Lofting, Michael Hague\",1920.0,The Story of Doctor Dolittle,\"The Story of Doctor Dolittle (Doctor Dolittle, #1)\",,3.98,36867,38819,554,534,2013,9528,12311,14433,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173762816l/325421._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2991,10911,10911,3349802,42,743454510,9780743454510.0,Jodi Picoult,2003.0,Second Glance,Second Glance,en-US,3.79,33486,36700,2361,663,2519,10432,13360,9726,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442728010l/10911._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2992,94803,94803,1231891,54,069401298X,9780694012980.0,Arnold Lobel,1971.0,Frog and Toad Together,\"Frog and Toad Together (Frog and Toad, #2)\",eng,4.21,34172,34874,437,486,1346,6152,9121,17769,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388457665l/94803.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2993,6219656,6219656,15161007,25,1563127873,9781563127880.0,Shirley Jackson,1948.0,The Lottery,The Lottery,eng,4.09,38448,40031,1615,535,1669,7411,14322,16094,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348757577l/6219656.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2994,58822,58822,523148,56,345459202,9780345459210.0,Adriana Trigiani,2000.0,Big Stone Gap,\"Big Stone Gap (Big Stone Gap, #1)\",eng,3.86,34200,36781,2539,488,2015,9879,14273,10126,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390406115l/58822.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2995,74824,74824,1407664,62,345485750,9780345485760.0,Steve Berry,2007.0,The Alexandria Link,\"The Alexandria Link (Cotton Malone, #2)\",eng,3.92,31070,32945,1056,574,1602,7779,13082,9908,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387711944l/74824.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n2996,7896345,7896345,11137563,25,61797022,9780061797030.0,Kelley Armstrong,2011.0,The Gathering,\"The Gathering (Darkness Rising, #1)\",en-US,4.03,48722,50913,3153,736,2363,10676,17891,19247,https://images.gr-assets.com/books/1277820938l/7896345.jpg,https://images.gr-assets.com/books/1277820938s/7896345.jpg\n2997,9833184,9833184,18752242,25,1595143203,9781595143200.0,Richelle Mead,2013.0,The Fiery Heart,\"The Fiery Heart (Bloodlines, #4)\",eng,4.39,49513,53804,4920,310,1020,5935,16768,29771,https://images.gr-assets.com/books/1383243238l/9833184.jpg,https://images.gr-assets.com/books/1383243238s/9833184.jpg\n2998,6479550,6479550,6670775,26,441018521,9780441018530.0,Ilona Andrews,2010.0,Magic Bleeds,\"Magic Bleeds (Kate Daniels, #4)\",eng,4.46,50637,54376,2463,255,581,4663,17244,31633,https://images.gr-assets.com/books/1407110429l/6479550.jpg,https://images.gr-assets.com/books/1407110429s/6479550.jpg\n2999,25152052,25152052,44854000,57,1501116975,9781501116970.0,\"Isabel Allende, Nick Caistor, Amanda Hopkinson\",2015.0,El amante japonés,The Japanese Lover,eng,3.8,23737,35347,4336,694,2294,9239,14388,8732,https://images.gr-assets.com/books/1501991754l/25152052.jpg,https://images.gr-assets.com/books/1501991754s/25152052.jpg\n3000,47990,47990,1128623,65,552154164,9780552154160.0,Terry Pratchett,1997.0,Jingo,\"Jingo (Discworld, #21; City Watch, #4)\",eng,4.11,35961,42670,937,121,1102,8701,16963,15783,https://images.gr-assets.com/books/1327921813l/47990.jpg,https://images.gr-assets.com/books/1327921813s/47990.jpg\n3001,704043,704043,690332,53,553589377,9780553589380.0,Lara Adrian,2007.0,Kiss of Midnight,\"Kiss of Midnight (Midnight Breed,  #1)\",eng,3.93,48695,52656,2530,1473,3353,11458,17308,19064,https://images.gr-assets.com/books/1327884885l/704043.jpg,https://images.gr-assets.com/books/1327884885s/704043.jpg\n3002,32071,32071,3173046,570,375753737,9780375753730.0,\"D.H. Lawrence, Geoff Dyer\",1913.0,Sons and Lovers,Sons and Lovers,en-US,3.61,33792,38681,1503,1428,3821,11545,13426,8461,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924291l/32071.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3003,8155,8155,87,61,031235326X,9780312353260.0,Barbara Taylor Bradford,1979.0,A Woman of Substance ,A Woman of Substance (Emma Harte Saga #1),eng,4.16,31309,32932,614,412,1129,5996,10664,14731,https://images.gr-assets.com/books/1330029941l/8155.jpg,https://images.gr-assets.com/books/1330029941s/8155.jpg\n3004,15757434,15757434,21450735,17,,2940014979630.0,Nicole  Williams,2012.0,Crash,\"Crash (Crash, #1)\",eng,4.02,49133,54383,3120,1409,2833,10080,19110,20951,https://images.gr-assets.com/books/1342588706l/15757434.jpg,https://images.gr-assets.com/books/1342588706s/15757434.jpg\n3005,15791154,15791154,21512735,51,1455521213,9781455521210.0,David Baldacci,2013.0,The Hit,\"The Hit (Will Robie, #2)\",eng,4.05,25123,35810,2513,259,1016,6941,16182,11412,https://images.gr-assets.com/books/1361749502l/15791154.jpg,https://images.gr-assets.com/books/1361749502s/15791154.jpg\n3006,22200,22200,879764,72,441013678,9780441013680.0,William Gibson,1986.0,Count Zero,\"Count Zero (Sprawl, #2)\",en-US,4.0,32238,35681,799,161,1189,8089,15370,10872,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390358225l/22200.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3007,24472,24472,2328437,53,140006466X,9781400064660.0,Lisa See,2007.0,Peony in Love,Peony in Love,eng,3.59,34044,37399,4089,1469,4139,10908,12729,8154,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438435175l/24472._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3008,5231173,5231173,5298464,18,316051594,9780316051590.0,Sarah Ockler,2009.0,Twenty Boy Summer,Twenty Boy Summer,en-US,3.89,35435,36917,2485,956,2760,8749,11413,13039,https://images.gr-assets.com/books/1342447832l/5231173.jpg,https://images.gr-assets.com/books/1342447832s/5231173.jpg\n3009,81922,81922,42235,84,446677477,9780446677480.0,\"Robert T. Kiyosaki, Sharon L. Lechter\",1998.0,Cashflow Quadrant: Rich Dad's Guide to Financial Freedom,Rich Dad's Cashflow Quadrant: Rich Dad's Guide to Financial Freedom,vie,4.05,24907,27477,718,560,1360,5288,9087,11182,https://images.gr-assets.com/books/1483023081l/81922.jpg,https://images.gr-assets.com/books/1483023081s/81922.jpg\n3010,7058405,7058405,1395190,130,1605980927,9781605980930.0,\"Camilla Läckberg, Steven T. Murray\",2004.0,Isprinsessan,\"The Ice Princess (Patrik Hedström, #1)\",eng,3.69,29913,39710,3024,1010,3143,11386,15624,8547,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347445122l/7058405.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3011,22649,22649,2363,38,767907817,9780767907810.0,Jane Green,2000.0,Bookends,Bookends,eng,3.7,32755,33762,847,741,2549,10873,11676,7923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258584l/22649.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3013,88071,88071,18279847,33,765316978,9780765316970.0,John Scalzi,2007.0,The Last Colony,The Last Colony (Old Man's War #3),en-US,4.03,29154,35957,1724,115,761,7306,17444,10331,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437660786l/88071._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3014,826582,826582,976480,12,60283289,9780060283280.0,\"Laura Joffe Numeroff, Felicia Bond\",2002.0, ,If You Take a Mouse to School,en-US,4.26,32340,32503,362,323,1108,5652,8155,17265,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347941764l/826582.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3015,18593175,18631291,26338696,18,147677143X,9781476771430.0,Colleen Hoover,2013.0,Finding Cinderella,\"Finding Cinderella (Hopeless, #2.5)\",eng,4.3,42821,49378,5454,518,1621,6491,14830,25918,https://images.gr-assets.com/books/1380847885l/18593175.jpg,https://images.gr-assets.com/books/1380847885s/18593175.jpg\n3016,9298,9298,510806,60,60086246,9780060086240.0,Marian Keyes,1999.0,Last Chance Saloon,Last Chance Saloon,en-US,3.78,32255,34161,755,593,2184,10221,12236,8927,https://images.gr-assets.com/books/1407708818l/9298.jpg,https://images.gr-assets.com/books/1407708818s/9298.jpg\n3017,17156015,17156015,23577838,13,148234873X,9781482348740.0,Georgia Cates,2013.0,Beauty from Pain,\"Beauty from Pain (Beauty, #1)\",eng,4.25,46668,50200,3263,653,1603,6727,16731,24486,https://images.gr-assets.com/books/1360699932l/17156015.jpg,https://images.gr-assets.com/books/1360699932s/17156015.jpg\n3018,43339,43339,1671961,93,1416507779,9781416507770.0,Mary Higgins Clark,1975.0,Where Are the Children?,Where Are the Children?,,4.0,34816,36306,908,322,1433,8680,13353,12518,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257386l/43339.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3020,7723,7723,19196823,205,1593080298,9781593080300.0,\"Franz Kafka, Jason Baker, Donna Freed\",1915.0,Die Verwandlung und andere Erzählungen,The Metamorphosis and Other Stories,eng,4.01,29817,39100,1268,666,2005,7699,14546,14184,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925094l/7723.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3021,218357,218357,1183462,38,006079156X,9780060791570.0,Thrity Umrigar,2006.0,The Space Between Us,The Space Between Us,en-US,3.98,30326,32348,3208,289,1237,6938,14364,9520,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925898l/218357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3022,3049,3049,2954048,193,451528182,9780451528190.0,\"Unknown, Burton Raffel, Neil D. Isaacs\",1390.0,Gawayn and þe Grene Knyȝt,Sir Gawain and the Green Knight ,,3.68,36477,42642,1159,726,3617,13667,15046,9586,https://images.gr-assets.com/books/1309282183l/3049.jpg,https://images.gr-assets.com/books/1309282183s/3049.jpg\n3023,4921,4921,4476508,747,140621334,9780140621330.0,Jerome K. Jerome,1889.0,Three Men in a Boat (To Say Nothing of the Dog),\"Three Men in a Boat (Three Men, #1)\",eng,3.9,30250,38799,3051,896,2523,8895,13589,12896,https://images.gr-assets.com/books/1392791656l/4921.jpg,https://images.gr-assets.com/books/1392791656s/4921.jpg\n3024,214614,214614,234706,37,345326490,9780345326490.0,Edward Abbey,1968.0,Desert Solitaire,Desert Solitaire,en-US,4.22,27723,29658,1826,469,1021,4255,9676,14237,https://images.gr-assets.com/books/1399583343l/214614.jpg,https://images.gr-assets.com/books/1399583343s/214614.jpg\n3025,6419,6419,1087783,24,312306342,9780312306340.0,Janet Evanovich,2007.0,Plum Lovin',\"Plum Lovin' (Stephanie Plum, #12.5)\",en-US,3.7,43643,45570,1431,840,4270,14590,13736,12134,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442873718l/6419._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3026,56454,56454,55015,23,159562015X,9781595620160.0,Tom Rath,2007.0,Strengths Finder 2.0,Strengths Finder 2.0,en-US,3.92,30199,33076,1611,642,2035,7712,11697,10990,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440946880l/56454._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3027,9570,9570,1105820,30,1842431293,9781842431290.0,Tom Robbins,1971.0,Another Roadside Attraction,Another Roadside Attraction,en-US,3.97,25777,27937,857,301,1328,6419,10667,9222,https://images.gr-assets.com/books/1327866271l/9570.jpg,https://images.gr-assets.com/books/1327866271s/9570.jpg\n3028,92163,1853145,1952547,45,517223546,9780517223540.0,Edward Rutherfurd,1987.0,Sarum: The Novel of England,Sarum: The Novel of England,eng,4.07,28292,34364,1194,567,1587,6389,12185,13636,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470349l/92163.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3029,43328,43328,1475717,85,6178731,9780006178740.0,Sidney Sheldon,1980.0,Rage of Angels,Rage of Angels,eng,3.91,27196,29867,868,317,1648,7667,10942,9293,https://images.gr-assets.com/books/1356445383l/43328.jpg,https://images.gr-assets.com/books/1356445383s/43328.jpg\n3031,9395215,9395215,14278985,49,142998192X,9781429981930.0,Alyson Noel,2011.0,Everlasting,\"Everlasting (The Immortals, #6)\",eng,3.92,38185,40766,1683,1655,3321,8402,10599,16789,https://images.gr-assets.com/books/1362336387l/9395215.jpg,https://images.gr-assets.com/books/1362336387s/9395215.jpg\n3033,586472,586472,907221,44,553381350,9780553381350.0,Tom Wolfe,1979.0,The Right Stuff,The Right Stuff,eng,4.23,30701,32960,935,330,780,4710,12237,14903,https://images.gr-assets.com/books/1393654700l/586472.jpg,https://images.gr-assets.com/books/1393654700s/586472.jpg\n3034,129645,129645,912164,48,312349998,9780312350000.0,Madeleine Wickham,2000.0,Cocktails for Three,Cocktails for Three,en-US,3.38,30415,32265,1043,1356,4451,12253,8856,5349,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442849180l/129645._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3035,32255,32255,2692184,78,345476980,9780345476980.0,Tess Gerritsen,2006.0,Vanish,\"Vanish (Rizzoli & Isles, #5)\",en-US,4.13,37045,41361,1251,411,1035,7310,16559,16046,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198630l/32255.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3036,33441,33441,1684116,32,006056668X,9780060566680.0,Christopher Moore,2003.0,\"Fluke: Or, I Know Why the Winged Whale Sings\",\"Fluke: Or, I Know Why the Winged Whale Sings\",eng,3.73,32675,33997,1935,575,2584,10228,12515,8095,https://images.gr-assets.com/books/1168444068l/33441.jpg,https://images.gr-assets.com/books/1168444068s/33441.jpg\n3038,7362158,7362158,9152917,42,1594487561,9781594487570.0,Jean Kwok,2010.0,Girl in Translation,Girl in Translation,eng,3.96,34823,37579,4732,295,1354,8267,17347,10316,https://images.gr-assets.com/books/1347022887l/7362158.jpg,https://images.gr-assets.com/books/1347022887s/7362158.jpg\n3039,17565845,17565845,24500875,43,62014552,9780062014560.0,Lauren Oliver,2014.0,Panic,\"Panic (Panic, #1)\",eng,3.56,39875,43338,5879,1237,4436,14163,15632,7870,https://images.gr-assets.com/books/1374066076l/17565845.jpg,https://images.gr-assets.com/books/1374066076s/17565845.jpg\n3040,13146214,13146214,18323697,32,,,Abbi Glines,2012.0,Because of Low,\"Because of Low (Sea Breeze, #2)\",eng,4.14,48344,50782,2196,428,1672,8782,19344,20556,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1322924946l/13146214.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3042,217432,217432,969953,46,345450744,9780345450750.0,Kristin Hannah,2003.0,Between Sisters,Between Sisters,eng,4.0,28020,31393,1525,317,1078,7146,12638,10214,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240280l/217432.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3043,17920175,17920175,25114804,38,1477808701,9781477808700.0,Blake Crouch,2013.0,Wayward,\"Wayward (Wayward Pines, #2)\",eng,4.12,19208,33543,2067,210,738,5608,15169,11818,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388363926l/17920175.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3044,1375896,1375896,2080750,56,60882077,9780060882080.0,\"Angie Sage, Mark Zug\",2008.0,Queste,\"Queste (Septimus Heap, #4)\",,4.04,40562,42070,925,637,1945,8785,14500,16203,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440956685l/1375896._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3045,23305614,23305614,42860694,64,553536516,9780553536520.0,Sophie Kinsella,2015.0,Finding Audrey,Finding Audrey,eng,3.82,38226,43951,6643,863,2596,11241,18080,11171,https://images.gr-assets.com/books/1466835008l/23305614.jpg,https://images.gr-assets.com/books/1466835008s/23305614.jpg\n3046,603422,603422,589992,15,913668680,9780913668690.0,Mollie Katzen,1977.0,\"The Moosewood Cookbook: Recipes from Moosewood Restaurant, Ithaca, New York\",\"The Moosewood Cookbook: Recipes from Moosewood Restaurant, Ithaca, New York\",eng,3.95,34502,36020,383,1080,2083,7568,11945,13344,https://images.gr-assets.com/books/1344370160l/603422.jpg,https://images.gr-assets.com/books/1344370160s/603422.jpg\n3047,105551,105551,2736849,33,7158475,9780007158480.0,Dr. Seuss,1965.0,Fox in Socks,Fox in Socks,eng,4.04,40369,44084,1044,880,2670,9636,11377,19521,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1603122427l/105551._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3048,2517,2517,2150886,140,375706852,9780375706850.0,\"Orhan Pamuk, Erdağ M. Göknar\",1998.0,Benim Adım Kırmızı,My Name is Red,eng,3.83,27314,33212,3006,1012,2554,7479,12290,9877,https://images.gr-assets.com/books/1374015288l/2517.jpg,https://images.gr-assets.com/books/1374015288s/2517.jpg\n3049,78250,78250,2029104,112,671227424,9780671227420.0,Carlos Castaneda,1968.0,The Teachings of Don Juan: A Yaqui Way of Knowledge,The Teachings of Don Juan: A Yaqui Way of Knowledge ,en-US,3.94,27784,30576,849,741,1884,6764,10389,10798,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266931l/78250.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3050,9509287,9509287,14395005,52,446573108,9780446573110.0,David Baldacci,2011.0,The Sixth Man,\"The Sixth Man (Sean King & Michelle Maxwell, #5)\",en-US,4.13,29257,33829,1598,237,848,5810,14453,12481,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441837587l/9509287._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3051,193093,193093,2324536,35,689878362,9780689878370.0,Marcia Brown,1947.0,Stone Soup (Stories to Go!),Stone Soup,,4.23,37313,37755,516,263,1091,6883,11092,18426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389316444l/193093.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3052,213647,213647,1072532,25,786839171,9780786839180.0,Cinda Williams Chima,2006.0,The Warrior Heir,\"The Warrior Heir (The Heir Chronicles, #1)\",en-US,3.95,40346,41907,2807,744,2310,9379,15418,14056,https://images.gr-assets.com/books/1360575642l/213647.jpg,https://images.gr-assets.com/books/1360575642s/213647.jpg\n3053,19004663,19004663,27026852,27,345542924,9780345542920.0,Janet Evanovich,2014.0,Top Secret Twenty-One,\"Top Secret Twenty-One (Stephanie Plum, #21)\",eng,3.79,31294,40241,4094,489,2568,12273,14307,10604,https://images.gr-assets.com/books/1394500766l/19004663.jpg,https://images.gr-assets.com/books/1394500766s/19004663.jpg\n3054,2223324,2223324,498223,11,075791084X,9780757910840.0,John   Williams,2003.0,Harry Potter and the Chamber of Secrets: Sheet Music for Flute with C.D,Harry Potter and the Chamber of Secrets: Sheet Music for Flute with C.D,,4.61,29409,29421,31,345,310,1940,5396,21430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347429015l/2223324.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3055,16791,16791,3138069,14,1852864982,9781852864990.0,\"Neil Gaiman, Chris Bachalo, Mark Buckingham, Tori Amos\",1993.0,Death: the High Cost of Living,Death: The High Cost of Living Collected,eng,4.21,34252,35481,454,717,1105,5387,11246,17026,https://images.gr-assets.com/books/1366407293l/16791.jpg,https://images.gr-assets.com/books/1366407293s/16791.jpg\n3056,229123,229123,3158544,38,310241634,9780310241640.0,Catherine Marshall,1967.0,Christy,Christy,,4.2,37963,40343,1342,471,1306,6581,13288,18697,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389406901l/229123.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3057,13623150,13623150,19226840,19,62208195,9780062208190.0,Tahereh Mafi,2012.0,Destroy Me,\"Destroy Me (Shatter Me, #1.5)\",eng,4.27,46793,49101,5147,555,1479,6969,15277,24821,https://images.gr-assets.com/books/1340398466l/13623150.jpg,https://images.gr-assets.com/books/1340398466s/13623150.jpg\n3059,40745,40745,40330,49,1400062756,9781400062750.0,Carol S. Dweck,2006.0,Mindset: The New Psychology of Success,Mindset: The New Psychology of Success,en-US,4.04,31174,37162,3668,661,1889,7058,13356,14198,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436227012l/40745._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3060,5972040,5972040,6145101,32,545060443,9780545060450.0,Jude Watson,2009.0,\"Beyond the Grave (The 39 Clues, #4)\",Beyond the Grave (The 39 Clues #4),eng,3.92,37475,38202,834,1098,2334,9181,11452,14137,https://images.gr-assets.com/books/1385209619l/5972040.jpg,https://images.gr-assets.com/books/1385209619s/5972040.jpg\n3061,26435,26435,2976220,81,6280935,9780006280930.0,C.S. Lewis,1940.0,The Problem of Pain,The Problem of Pain,eng,4.12,29179,31440,1207,493,1065,5529,11394,12959,https://images.gr-assets.com/books/1328546308l/26435.jpg,https://images.gr-assets.com/books/1328546308s/26435.jpg\n3062,2527900,2527900,2535409,46,300122233,9780300122240.0,\"Richard H. Thaler, Cass R. Sunstein\",2008.0,\"Nudge: Improving Decisions About Health, Wealth, and Happiness\",\"Nudge: Improving Decisions About Health, Wealth, and Happiness\",eng,3.8,29552,32763,1478,634,2277,8824,12271,8757,https://images.gr-assets.com/books/1328828013l/2527900.jpg,https://images.gr-assets.com/books/1328828013s/2527900.jpg\n3063,210329,210329,1530651,96,1416949658,9781416949660.0,Susan Cooper,1973.0,The Dark Is Rising,\"The Dark Is Rising (The Dark is Rising, #2)\",eng,4.07,39881,43237,1807,851,2090,8199,14295,17802,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349051230l/210329.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3064,23754479,23754479,43369154,66,374239215,9780374239210.0,Jonathan Franzen,2015.0,Purity,Purity,eng,3.59,24811,30459,3742,1169,2969,8717,11863,5741,https://images.gr-assets.com/books/1438958976l/23754479.jpg,https://images.gr-assets.com/books/1438958976s/23754479.jpg\n3065,32446,32446,2200649,51,451205421,9780451205420.0,\"Richard Paige, Dean Koontz\",1985.0,The Door to December,The Door to December,en-US,3.94,30599,31957,608,337,1722,8166,10980,10752,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257941l/32446.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3066,53625,53625,1831604,70,747266921,9780747266920.0,James Patterson,2002.0,Four Blind Mice,\"Four Blind Mice (Alex Cross, #8)\",en-US,3.98,33668,37078,744,231,1216,9105,15172,11354,https://images.gr-assets.com/books/1408929456l/53625.jpg,https://images.gr-assets.com/books/1408929456s/53625.jpg\n3067,3975186,3975186,4020951,48,312364105,9780312364110.0,Kristin Hannah,2009.0,True Colors,True Colors,,3.89,31276,34222,2724,418,1813,8585,13553,9853,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893974l/3975186._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3068,9595,9595,815535,65,385334230,9780385334240.0,Kurt Vonnegut Jr.,1976.0,Slapstick,\"Slapstick, or Lonesome No More!\",eng,3.87,27371,29477,1043,307,1623,7741,11690,8116,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1514342815l/9595._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3069,38315,38315,3119175,46,812975219,9780812975220.0,Nassim Nicholas Taleb,2001.0,Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets,Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets,eng,4.05,28674,30789,1207,565,1461,5571,11342,11850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180506l/38315.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3070,14975,14975,1225097,106,425213978,9780425213970.0,Kate Mosse,2005.0,Labyrinth,\"Labyrinth (Languedoc, #1)\",eng,3.55,36237,40163,2670,1932,4495,11979,13233,8524,https://images.gr-assets.com/books/1312498906l/14975.jpg,https://images.gr-assets.com/books/1312498906s/14975.jpg\n3071,7493,7493,1290896,29,375705244,9780375705240.0,Joseph J. Ellis,2000.0,Founding Brothers: The Revolutionary Generation,Founding Brothers: The Revolutionary Generation,en-GB,3.92,31610,32657,1520,840,1668,6941,13065,10143,https://images.gr-assets.com/books/1388791106l/7493.jpg,https://images.gr-assets.com/books/1388791106s/7493.jpg\n3072,76679,76679,3046979,92,553565079,9780553565070.0,Isaac Asimov,1993.0,Forward the Foundation,Forward the Foundation (Foundation: Prequel #2),eng,4.13,31686,34420,584,174,1011,6747,12881,13607,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430055209l/76679.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3073,6919272,6919272,7146989,68,3401063472,9783401063480.0,Kerstin Gier,2010.0,Saphirblau,\"Saphirblau (Edelstein-Trilogie, #2)\",ger,4.19,25767,53718,4359,360,1569,8515,20563,22711,https://images.gr-assets.com/books/1327251290l/6919272.jpg,https://images.gr-assets.com/books/1327251290s/6919272.jpg\n3074,16142053,16142053,21973918,24,307700666,9780307700670.0,Lawrence Wright,2013.0,\"Going Clear: Scientology, Hollywood, and the Prison of Belief\",\"Going Clear: Scientology, Hollywood, and the Prison of Belief\",eng,4.02,26117,30503,3890,570,1134,5375,13495,9929,https://images.gr-assets.com/books/1358119149l/16142053.jpg,https://images.gr-assets.com/books/1358119149s/16142053.jpg\n3075,7619292,7619292,10090991,43,759529434,9780759529430.0,\"Young Kim, Stephenie Meyer\",2010.0,Twilight: The Graphic Novel,\"Twilight: The Graphic Novel, Vol. 1 (Twilight: The Graphic Novel, #1)\",en-US,3.74,37292,38329,1915,3745,3298,7559,8272,15455,https://images.gr-assets.com/books/1317294278l/7619292.jpg,https://images.gr-assets.com/books/1317294278s/7619292.jpg\n3076,56034,56034,1816464,137,99478331,9780099478330.0,John Fowles,1969.0,The French Lieutenant's Woman,The French Lieutenant's Woman,eng,3.85,34897,38743,1237,826,2384,9452,15018,11063,https://images.gr-assets.com/books/1466630905l/56034.jpg,https://images.gr-assets.com/books/1466630905s/56034.jpg\n3077,732562,732562,678243,303,486223051,9780486223060.0,\"Samuel Taylor Coleridge, Gustave Doré\",1798.0,The Rime of the Ancient Mariner,The Rime of the Ancient Mariner,eng,3.93,37299,39669,713,706,2618,9315,13212,13818,https://images.gr-assets.com/books/1436976206l/732562.jpg,https://images.gr-assets.com/books/1436976206s/732562.jpg\n3078,240130,240130,844184,42,920236162,9780920236160.0,\"Robert Munsch, Michael Martchenko\",1980.0,The Paper Bag Princess,The Paper Bag Princess,en-GB,4.32,38040,39765,1562,471,1173,5354,11071,21696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912856l/240130.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3079,163977,163977,890203,145,582461502,9780582461500.0,John Steinbeck,1935.0,Tortilla Flat,Tortilla Flat,eng,3.82,30048,34569,1776,440,2050,9607,13515,8957,https://images.gr-assets.com/books/1400859671l/163977.jpg,https://images.gr-assets.com/books/1400859671s/163977.jpg\n3080,23814,23814,575986,555,812966295,9780812966300.0,H. Rider Haggard,1885.0,King Solomon's Mines,\"King Solomon's Mines (Allan Quatermain, #1)\",eng,3.8,31191,36163,1413,541,2334,10364,13516,9408,https://images.gr-assets.com/books/1418964233l/23814.jpg,https://images.gr-assets.com/books/1418964233s/23814.jpg\n3081,12647642,12647642,17760917,13,,,Tina Reber,2012.0,Love Unrehearsed,\"Love Unrehearsed (Love, #2)\",eng,4.26,42280,42818,1828,572,1336,5836,13736,21338,https://images.gr-assets.com/books/1347242126l/12647642.jpg,https://images.gr-assets.com/books/1347242126s/12647642.jpg\n3082,25105,25105,40666827,29,1563891379,9781563891370.0,\"Neil Gaiman, Jill Thompson, Vince Locke, Peter Straub\",1994.0,The Sandman: Brief Lives,Brief Lives (The Sandman #7),eng,4.55,36487,40495,936,159,344,2757,11185,26050,https://images.gr-assets.com/books/1339922078l/25105.jpg,https://images.gr-assets.com/books/1339922078s/25105.jpg\n3083,3934321,3934321,3979878,61,61720771,9780061720770.0,L.J. Smith,2009.0,The Return: Nightfall,\"Nightfall (The Vampire Diaries: The Return, #1)\",en-US,3.57,40213,44297,1651,3057,5863,11610,10507,13260,https://images.gr-assets.com/books/1347414391l/3934321.jpg,https://images.gr-assets.com/books/1347414391s/3934321.jpg\n3084,3467,3467,2529035,41,375828257,9780375828260.0,Jeanne DuPrau,2004.0,The People of Sparks,\"The People of Sparks (Book of Ember, #2)\",eng,3.65,40859,43334,3059,707,3659,14746,15372,8850,https://images.gr-assets.com/books/1397931991l/3467.jpg,https://images.gr-assets.com/books/1397931991s/3467.jpg\n3085,5954,5954,955995,214,374506841,9780374506840.0,\"Hermann Hesse, Ursule Molinaro\",1930.0,Narziß und Goldmund,Narcissus and Goldmund,eng,4.19,25544,32779,1318,319,1134,5204,11464,14658,https://images.gr-assets.com/books/1374680750l/5954.jpg,https://images.gr-assets.com/books/1374680750s/5954.jpg\n3086,25106,25106,181895,36,1563891069,9781563891070.0,\"Neil Gaiman, Bryan Talbot, Stan Woch, P. Craig Russell, Shawn McManus, John Watkiss, Jill Thompson, Duncan Eagleson, Kent Williams, Todd Klein\",1990.0,The Sandman: Fables and Reflections,Fables and Reflections (The Sandman #6),eng,4.45,35930,40028,892,116,413,3743,12737,23019,https://images.gr-assets.com/books/1311961999l/25106.jpg,https://images.gr-assets.com/books/1311961999s/25106.jpg\n3087,17199504,17199504,19248070,71,1620401398,9781620401390.0,Samantha Shannon,2013.0,The Bone Season,\"The Bone Season (The Bone Season, #1)\",eng,3.75,27652,42533,6748,1624,3738,10112,15207,11852,https://images.gr-assets.com/books/1421412990l/17199504.jpg,https://images.gr-assets.com/books/1421412990s/17199504.jpg\n3088,31250,31250,80851,442,141439963,9780141439970.0,\"Charles Dickens, Helen Small, Stephen Wall\",1855.0,Little Dorrit,Little Dorrit,eng,3.97,33997,36523,1184,918,1978,7645,12815,13167,https://images.gr-assets.com/books/1496619146l/31250.jpg,https://images.gr-assets.com/books/1496619146s/31250.jpg\n3089,175004,175004,1356744,65,142406139,9780142406140.0,Anthony Horowitz,2003.0,Eagle Strike,\"Eagle Strike (Alex Rider, #4)\",,4.11,37051,38844,1078,273,1342,7748,13891,15590,https://images.gr-assets.com/books/1373920729l/175004.jpg,https://images.gr-assets.com/books/1373920729s/175004.jpg\n3090,50833,581811,1203845,79,739418378,9780739418380.0,Jacqueline Susann,1966.0,Valley of the Dolls,Valley of the Dolls,en-US,3.7,25210,37222,2632,978,3480,10717,12522,9525,https://images.gr-assets.com/books/1328281855l/50833.jpg,https://images.gr-assets.com/books/1328281855s/50833.jpg\n3091,12657,12657,1251662,56,375760385,9780375760390.0,James A. Michener,1965.0,The Source,The Source,eng,4.3,31499,33099,1092,296,906,4489,10412,16996,https://images.gr-assets.com/books/1412531751l/12657.jpg,https://images.gr-assets.com/books/1412531751s/12657.jpg\n3092,4954,4954,2641412,45,1400033543,9781400033550.0,Dave Eggers,2002.0,You Shall Know Our Velocity!,You Shall Know Our Velocity!,eng,3.62,23985,25405,1524,811,2545,7627,8914,5508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925932l/4954.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3093,3438000,3438000,3479009,17,9770907375,,\"Radwa Ashour, رضوى عاشور\",1994.0,ثلاثية غرناطة,ثلاثية غرناطة,ara,4.29,27568,28954,5475,463,903,3261,9444,14883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503755688l/3438000.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3094,201126,201126,1974395,93,689853491,9780689853490.0,\"Michael Rosen, Helen Oxenbury\",1989.0,We're Going on a Bear Hunt,We're Going on a Bear Hunt,eng,4.27,32869,34254,1091,389,1194,5261,9430,17980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274854l/201126.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3095,6339989,6339989,10954714,8,1595142711,9781595142720.0,Richelle Mead,2009.0,Vampire Academy Collection,\"Vampire Academy Collection (Vampire Academy, #1-3)\",,4.61,30166,30509,182,285,426,2082,5168,22548,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424313761l/6339989.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3096,673657,673657,418832,45,345352661,9780345352670.0,David Eddings,1985.0,Guardians of the West,\"Guardians of the West (The Malloreon, #1)\",en-US,4.09,37943,40022,425,269,1525,8183,14516,15529,https://images.gr-assets.com/books/1342528416l/673657.jpg,https://images.gr-assets.com/books/1342528416s/673657.jpg\n3097,7076706,7076706,7330987,62,399156577,9780399156570.0,Nora Roberts,2010.0,The Search,The Search,eng,4.11,34973,38603,2210,353,1290,7240,14427,15293,https://images.gr-assets.com/books/1302725483l/7076706.jpg,https://images.gr-assets.com/books/1302725483s/7076706.jpg\n3098,13147,13147,2172512,75,446613371,9780446613380.0,\"James Patterson, Howard Roughan\",2005.0,Honeymoon,\"Honeymoon (Honeymoon, #1)\",eng,3.81,30756,33846,1861,517,2260,9605,12341,9123,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199852l/13147.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3099,45252,45252,987015,39,345461622,9780345461630.0,Peter F. Hamilton,2004.0,Pandora's Star,Pandora's Star,eng,4.24,28386,32175,1606,383,995,4099,11868,14830,https://images.gr-assets.com/books/1440699949l/45252.jpg,https://images.gr-assets.com/books/1440699949s/45252.jpg\n3100,322351,322351,816361,45,440421853,9780440421860.0,Thomas Rockwell,1973.0,How to Eat Fried Worms,How to Eat Fried Worms,eng,3.75,37888,39209,853,1070,3108,11838,11890,11303,https://images.gr-assets.com/books/1320519921l/322351.jpg,https://images.gr-assets.com/books/1320519921s/322351.jpg\n3101,269322,269322,11775,5,439224063,9780439224060.0,\"Edgar Allan Poe, Philip Pullman\",1845.0,The Raven and Other Poems,The Raven and other poems,en-US,4.3,34428,34591,288,301,786,4906,10922,17676,https://images.gr-assets.com/books/1297913274l/269322.jpg,https://images.gr-assets.com/books/1297913274s/269322.jpg\n3102,6335026,6335026,6520850,62,077832740X,9780778327400.0,Heather Gudenkauf,2008.0,The Weight of Silence,The Weight of Silence,eng,3.93,33235,35125,3525,352,1625,8172,14991,9985,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348679436l/6335026.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3103,22522808,22522808,41947380,40,62330268,9780062330260.0,Neil Gaiman,2015.0,Trigger Warning: Short Fictions and Disturbances,Trigger Warning: Short Fictions and Disturbances,eng,3.92,29215,36263,4380,743,1738,7795,15225,10762,https://images.gr-assets.com/books/1415036119l/22522808.jpg,https://images.gr-assets.com/books/1415036119s/22522808.jpg\n3104,106590,106590,1733479,16,068482535X,9780684825360.0,David Herbert Donald,1995.0,Lincoln,Lincoln,eng,4.17,25995,26449,425,485,845,4047,9285,11787,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1543429790l/106590._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3105,1811543,1811543,1810889,33,441015832,9780441015830.0,Ilona Andrews,2008.0,Magic Burns,\"Magic Burns (Kate Daniels, #2)\",en-US,4.33,50899,55367,2651,253,757,6689,20587,27081,https://images.gr-assets.com/books/1311280284l/1811543.jpg,https://images.gr-assets.com/books/1311280284s/1811543.jpg\n3106,3698,3698,1469913,135,143039024,9780143039020.0,\"Graham Greene, Robert  Stone\",1955.0,The Quiet American,The Quiet American,eng,3.96,30395,34078,2105,278,1386,7443,15431,9540,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3107,16062211,16062211,21850432,19,1480114480,9781480114490.0,Katie Ashley,2012.0,The Proposition,\"The Proposition (The Proposition, #1)\",eng,4.05,43605,46676,2368,834,2062,8802,17168,17810,https://images.gr-assets.com/books/1355433171l/16062211.jpg,https://images.gr-assets.com/books/1355433171s/16062211.jpg\n3108,6541,6541,2408,102,425213382,9780425213380.0,Patricia Cornwell,1996.0,Cause of Death,\"Cause of Death (Kay Scarpetta, #7)\",en-US,3.93,35742,38137,649,289,1604,9915,14963,11366,https://images.gr-assets.com/books/1327632787l/6541.jpg,https://images.gr-assets.com/books/1327632787s/6541.jpg\n3109,77430,77430,722040,104,393307050,9780393307050.0,Patrick O'Brian,1969.0,Master and Commander,Master and Commander,eng,4.1,31215,35391,2471,571,1645,6101,12271,14803,https://images.gr-assets.com/books/1467992540l/77430.jpg,https://images.gr-assets.com/books/1467992540s/77430.jpg\n3110,969275,969275,954172,36,575077352,9780575077360.0,Akira Toriyama,1985.0,孫悟空と仲間たち,\"Dragon Ball, Vol. 1: The Monkey King (Dragon Ball, #1)\",eng,4.42,27382,28050,300,433,782,3109,5875,17851,https://images.gr-assets.com/books/1442541694l/969275.jpg,https://images.gr-assets.com/books/1442541694s/969275.jpg\n3111,89187,89187,219037,46,441009425,9780441009430.0,Alastair Reynolds,2000.0,Revelation Space,Revelation Space,eng,3.97,30332,32980,1487,546,1680,6722,13424,10608,https://images.gr-assets.com/books/1405532042l/89187.jpg,https://images.gr-assets.com/books/1405532042s/89187.jpg\n3112,7134202,7134202,7397180,54,316096156,9780316096160.0,\"James Patterson, Maxine Paetro\",2010.0,Private,\"Private (Private, #1)\",eng,3.88,31061,35260,2044,674,1955,8880,13118,10633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247223l/7134202.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3113,8205669,8205669,11083239,28,312652917,9780312652910.0,Janet Evanovich,2009.0,Wicked Appetite,\"Wicked Appetite (Lizzy & Diesel, #1)\",en-US,3.77,38918,42639,4033,1202,3495,11614,14082,12246,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442876280l/8205669._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3114,6054449,6054449,6230260,64,1416980067,9781416980060.0,Rachel Renée Russell,2009.0,Tales from a Not-So-Fabulous Life,\"Tales from a Not-So-Fabulous Life (Dork Diaries, #1)\",eng,4.16,31712,35781,2453,1199,1989,5522,8140,18931,https://images.gr-assets.com/books/1370064528l/6054449.jpg,https://images.gr-assets.com/books/1370064528s/6054449.jpg\n3115,14384,14384,16422,52,1416509879,9781416509880.0,Kresley Cole,2006.0,A Hunger Like No Other,A Hunger Like No Other (Immortals After Dark #2),eng,4.21,49298,53312,2666,826,1858,8086,17040,25502,https://images.gr-assets.com/books/1357616154l/14384.jpg,https://images.gr-assets.com/books/1357616154s/14384.jpg\n3116,10345927,10345927,15248718,35,159514398X,9781595143980.0,Beth Revis,2012.0,A Million Suns ,\"A Million Suns (Across the Universe, #2)\",eng,4.04,42620,45477,3824,891,2052,8715,16498,17321,https://images.gr-assets.com/books/1330214586l/10345927.jpg,https://images.gr-assets.com/books/1330214586s/10345927.jpg\n3117,28251,28251,2122285,67,1841493155,9781841493150.0,Trudi Canavan,2002.0,The High Lord,\"The High Lord (Black Magician Trilogy, #3)\",eng,4.15,33784,38888,1208,341,1373,6631,14369,16174,https://images.gr-assets.com/books/1327357942l/28251.jpg,https://images.gr-assets.com/books/1327357942s/28251.jpg\n3118,17383934,17383934,15778974,60,62107313,9780062107310.0,Amy Tan,2013.0,The Valley of Amazement,The Valley of Amazement,eng,3.6,27628,32532,4313,1327,3404,9266,11605,6930,https://images.gr-assets.com/books/1362956150l/17383934.jpg,https://images.gr-assets.com/books/1362956150s/17383934.jpg\n3119,3465,3465,7258,54,446694851,9780446694860.0,\"Nicholas Sparks, Micah Sparks\",2004.0,Three Weeks with My Brother,Three Weeks With My Brother,eng,4.01,32208,33910,2654,674,1880,6982,11287,13087,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440179668l/3465._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3120,24781,24781,1561725,62,080508052X,9780805080520.0,Lloyd Alexander,1968.0,The High King ,The High King (The Chronicles of Prydain #5),eng,4.26,41448,42870,897,443,837,6482,14622,20486,https://images.gr-assets.com/books/1407209964l/24781.jpg,https://images.gr-assets.com/books/1407209964s/24781.jpg\n3121,9462812,9462812,10280032,32,62004018,9780062004020.0,Amy Plum,2011.0,Die for Me,\"Die for Me (Revenants, #1)\",eng,4.0,45756,48246,4319,1373,3235,9396,14472,19770,https://images.gr-assets.com/books/1358427893l/9462812.jpg,https://images.gr-assets.com/books/1358427893s/9462812.jpg\n3122,77295,77295,37467,75,394724550,9780394724550.0,Anne Morrow Lindbergh,1955.0,Gift from the Sea,Gift from the Sea,,4.18,30741,34056,3103,433,1446,5629,10767,15781,https://images.gr-assets.com/books/1328312670l/77295.jpg,https://images.gr-assets.com/books/1328312670s/77295.jpg\n3123,2159,2159,1734580,71,452287081,9780452287080.0,John Perkins,2004.0,Confessions of an Economic Hit Man,Confessions of an Economic Hit Man,en-US,3.83,19726,26245,3036,663,1851,6174,10056,7501,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565872483l/2159._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3124,426504,426504,1007116,135,802130305,9780802130300.0,\"Jorge Luis Borges, Anthony Kerrigan, Anthony Bonner\",1944.0,Ficciones,Ficciones,en-US,4.47,28657,34337,1561,265,750,3053,8890,21379,https://images.gr-assets.com/books/1388197956l/426504.jpg,https://images.gr-assets.com/books/1388197956s/426504.jpg\n3125,37304,37304,412645,31,425141233,9780425141240.0,John Sandford,1993.0,Winter Prey,\"Winter Prey (Lucas Davenport, #5)\",eng,4.24,31336,32778,473,118,472,4965,12978,14245,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204668l/37304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3126,4625,4625,8238,63,684843323,9780684843320.0,Ernest Hemingway,1925.0,The Complete Short Stories of Ernest Hemingway,The Complete Short Stories,en-US,4.28,28129,30304,684,388,770,3779,10307,15060,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523546158l/4625._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3127,50033,50033,1627774,136,671037706,9780671037700.0,Ray Bradbury,1957.0,Dandelion Wine,\"Dandelion Wine (Green Town, #1)\",eng,4.08,32867,39979,3226,730,1958,7453,13001,16837,https://images.gr-assets.com/books/1374049845l/50033.jpg,https://images.gr-assets.com/books/1374049845s/50033.jpg\n3128,43782,43782,43191,57,009947137X,9780099471370.0,Anne Rice,1989.0,The Mummy,The Mummy (Ramses the Damned #1),eng,3.81,34795,38317,850,812,3206,10236,12090,11973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347523787l/43782.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3129,6570502,6570502,6763564,56,385528752,9780385528760.0,\"Chip Heath, Dan Heath\",2010.0,Switch: How to Change Things When Change Is Hard,Switch: How to Change Things When Change Is Hard,eng,4.02,26820,30210,2072,672,1379,5703,11524,10932,https://images.gr-assets.com/books/1422839688l/6570502.jpg,https://images.gr-assets.com/books/1422839688s/6570502.jpg\n3130,24228353,24228353,42938354,9,,,Sejal Badani,2015.0,Trail of Broken Wings,Trail of Broken Wings,eng,3.94,25413,27597,2010,587,1536,5576,11113,8785,https://images.gr-assets.com/books/1427135077l/24228353.jpg,https://images.gr-assets.com/books/1427135077s/24228353.jpg\n3131,243705,243705,1816452,123,99470470,9780099470470.0,John Fowles,1963.0,The Collector,The Collector,eng,3.99,32129,37123,2315,497,1721,7744,14808,12353,https://images.gr-assets.com/books/1394828024l/243705.jpg,https://images.gr-assets.com/books/1394828024s/243705.jpg\n3133,9594,33586715,6835609,69,99267543,9780099267550.0,Kurt Vonnegut Jr.,1997.0,Timequake,Timequake,eng,3.71,23562,28238,1240,479,2338,8403,10686,6332,https://images.gr-assets.com/books/1405784951l/9594.jpg,https://images.gr-assets.com/books/1405784951s/9594.jpg\n3134,13540215,13540215,19102940,31,006218850X,9780062188500.0,Amanda Coplin,2012.0,The Orchardist,The Orchardist,,3.75,30121,34309,5163,745,2501,9212,13808,8043,https://images.gr-assets.com/books/1335562453l/13540215.jpg,https://images.gr-assets.com/books/1335562453s/13540215.jpg\n3135,17262366,17262366,23859166,41,767919408,9780767919400.0,Bill Bryson,2013.0,One Summer: America 1927,\"One Summer: America, 1927\",eng,4.06,27237,32545,4011,565,1114,5500,13918,11448,https://images.gr-assets.com/books/1380292864l/17262366.jpg,https://images.gr-assets.com/books/1380292864s/17262366.jpg\n3136,41967,41967,1004459,74,752876821,9780752876820.0,Maeve Binchy,1996.0,Evening Class,Evening Class,en-GB,3.98,32639,34551,856,202,1225,8694,13528,10902,https://images.gr-assets.com/books/1368673760l/41967.jpg,https://images.gr-assets.com/books/1368673760s/41967.jpg\n3137,34919,34919,201738,45,1857239016,9781857239010.0,Terry Brooks,1993.0,The Talismans of Shannara,\"The Talismans of Shannara (Heritage of Shannara, #4)\",eng,4.01,32139,33753,162,439,1428,7537,12367,11982,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168573644l/34919.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3138,65840,65840,2946564,187,808516965,9780808516960.0,L.M. Montgomery,1936.0,Anne of Windy Poplars,\"Anne of Windy Poplars (Anne of Green Gables, #4)\",,4.04,47657,52139,1346,469,2127,11712,18256,19575,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348613064l/65840.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3139,226378,226378,166902,317,014044176X,9780140441760.0,\"Mikhail Lermontov, Paul Foote\",1840.0,Герой нашего времени,A Hero of Our Time,eng,4.11,29747,33953,983,499,1558,6234,11100,14562,https://images.gr-assets.com/books/1344023178l/226378.jpg,https://images.gr-assets.com/books/1344023178s/226378.jpg\n3140,9943,9943,3014463,30,084230052X,9780842300520.0,Francine Rivers,1997.0,The Atonement Child,The Atonement Child,en-US,4.26,29250,30412,1083,321,949,4364,9593,15185,https://images.gr-assets.com/books/1406513472l/9943.jpg,https://images.gr-assets.com/books/1406513472s/9943.jpg\n3141,6862,6862,933082,97,385494246,9780385494240.0,Ian McEwan,1998.0,Amsterdam,Amsterdam,,3.41,30469,34352,2553,1038,4225,13087,11759,4243,https://images.gr-assets.com/books/1403191209l/6862.jpg,https://images.gr-assets.com/books/1403191209s/6862.jpg\n3142,40923,40923,210239,24,812966007,9780812966010.0,Edmund Morris,2001.0,Theodore Rex,Theodore Rex,eng,4.16,29474,30577,866,556,1079,4598,11118,13226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177930l/40923.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3143,10222,10222,114,59,031215125X,9780312151260.0,M.M. Kaye,1978.0,The Far Pavilions,The Far Pavilions,en-US,4.2,33348,34522,1044,302,1071,5665,11733,15751,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403391799l/10222.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3144,2211221,2211221,2217009,72,385340567,9780385340560.0,Lee Child,2008.0,Nothing to Lose,\"Nothing to Lose (Jack Reacher, #12)\",en-US,3.9,31780,38198,1981,480,2161,9160,15125,11272,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441312964l/2211221._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3145,17448960,17448960,24333050,27,,2940016356940.0,Jasinda Wilder,2013.0,Falling Into You,\"Falling into You (Falling, #1)\",eng,4.04,43246,48373,4232,1103,2498,8616,17101,19055,https://images.gr-assets.com/books/1363055080l/17448960.jpg,https://images.gr-assets.com/books/1363055080s/17448960.jpg\n3146,20819682,20819682,40165571,88,1101874082,9781101874080.0,Paulo Coelho,2014.0,Adultério,Adultery,eng,3.01,24797,32317,3412,3996,6824,10484,6761,4252,https://images.gr-assets.com/books/1406247571l/20819682.jpg,https://images.gr-assets.com/books/1406247571s/20819682.jpg\n3147,22443261,22443261,15035866,38,,,Brandon Sanderson,2013.0,The Rithmatist ,\"The Rithmatist (The Rithmatist, #1)\",eng,4.25,15977,36047,4864,156,652,4730,15170,15339,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402239963l/22443261.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3148,42172,42172,1085294,23,312289510,9780312289520.0,Donna VanLiere,2001.0,The Christmas Shoes,The Christmas Shoes (Christmas Hope #1),en-US,4.22,29216,29417,801,552,981,4677,8355,14852,https://images.gr-assets.com/books/1434144615l/42172.jpg,https://images.gr-assets.com/books/1434144615s/42172.jpg\n3149,196613,196613,3378802,36,762424931,9780762424930.0,\"Rory Freedman, Kim Barnouin\",2005.0,\"Skinny Bitch: A No-Nonsense, Tough-Love Guide for Savvy Girls Who Want to Stop Eating Crap and Start Looking Fabulous!\",Skinny Bitch,en-US,3.34,26665,29089,4034,2817,4432,8117,7358,6365,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442470447l/196613._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3150,12299419,12299419,17276473,21,,,Kristen Ashley,2011.0,\"Mystery Man (Dream Man, #1)\",\"Mystery Man (Dream Man, #1)\",eng,4.25,53263,57382,3921,1247,1910,7279,17939,29007,https://images.gr-assets.com/books/1483487036l/12299419.jpg,https://images.gr-assets.com/books/1483487036s/12299419.jpg\n3151,899962,899962,885147,19,395181585,9780395181580.0,\"Margret Rey, H.A. Rey\",1966.0,Curious George Goes to the Hospital,Curious George Goes to the Hospital,eng,4.22,32218,32397,127,491,1223,5840,7948,16895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347580591l/899962.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3152,2054761,2054761,2059929,7,553805096,9780553805090.0,Alice Schroeder,2008.0,The Snowball: Warren Buffett and the Business of Life,The Snowball: Warren Buffett and the Business of Life,eng,4.05,27007,28104,912,875,1266,4806,9687,11470,https://images.gr-assets.com/books/1320458276l/2054761.jpg,https://images.gr-assets.com/books/1320458276s/2054761.jpg\n3153,107779,107779,2642843,70,743452925,9780743452920.0,Julie Garwood,1989.0,The Bride,\"The Bride (Lairds' Fiancées, #1)\",eng,4.26,39925,44409,1672,595,1345,6414,13624,22431,https://images.gr-assets.com/books/1334369134l/107779.jpg,https://images.gr-assets.com/books/1334369134s/107779.jpg\n3154,2836109,2836109,2862215,40,1741662095,9781741662090.0,John Flanagan,2007.0,Erak's Ransom,\"Erak's Ransom (Ranger's Apprentice, #7)\",eng,4.31,34286,38983,1188,295,816,5298,12753,19821,https://images.gr-assets.com/books/1327918666l/2836109.jpg,https://images.gr-assets.com/books/1327918666s/2836109.jpg\n3155,18114060,18114060,25441290,73,525953493,9780525953490.0,Harlan Coben,2014.0,Missing Υou,Missing You,eng,3.95,24925,33190,3222,372,1335,7150,14937,9396,https://images.gr-assets.com/books/1373737793l/18114060.jpg,https://images.gr-assets.com/books/1373737793s/18114060.jpg\n3156,11691,11691,2701142,1,375706860,9780375706870.0,\"Orhan Pamuk, Maureen Freely\",2002.0,Kar,Snow,eng,3.55,27132,30451,2965,1480,3439,8534,10871,6127,https://images.gr-assets.com/books/1357684424l/11691.jpg,https://images.gr-assets.com/books/1357684424s/11691.jpg\n3157,6348045,6348045,6534539,40,1741663024,9781741663020.0,John Flanagan,2009.0,Halt's Peril,\"Halt's Peril (Ranger's Apprentice, #9)\",eng,4.38,33782,37525,994,246,681,4358,11472,20768,https://images.gr-assets.com/books/1327902875l/6348045.jpg,https://images.gr-assets.com/books/1327902875s/6348045.jpg\n3158,715834,715834,1238418,101,345447867,9780345447870.0,Tess Gerritsen,2002.0,The Apprentice,\"The Apprentice (Rizzoli & Isles, #2)\",eng,4.14,32519,38256,1658,158,852,6850,16148,14248,https://images.gr-assets.com/books/1467859772l/715834.jpg,https://images.gr-assets.com/books/1467859772s/715834.jpg\n3159,1127996,1127996,1425869,76,307098222,9780307098220.0,Betty Crocker,1969.0,Betty Crocker's Cookbook,Betty Crocker's Cookbook,eng,4.25,27892,29108,266,410,896,4740,8058,15004,https://images.gr-assets.com/books/1431198491l/1127996.jpg,https://images.gr-assets.com/books/1431198491s/1127996.jpg\n3160,359410,359410,349532,42,312367465,9780312367470.0,Gabrielle Zevin,2005.0,Elsewhere,Elsewhere,en-US,3.91,40906,43141,4669,954,3013,9711,14537,14926,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442686280l/359410._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3161,11737271,11737271,16686457,81,525952276,9780525952280.0,Harlan Coben,2012.0,Stay Close,Stay Close,eng,3.87,29812,32817,2055,472,1599,8353,13546,8847,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347702195l/11737271.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3162,13133,13133,1872234,57,316117366,9780316117360.0,\"James Patterson, Michael Ledwidge\",2007.0,The Quickie,The Quickie,eng,3.82,30608,32975,2180,856,2432,8518,11259,9910,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442870790l/13133._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3163,45169,45169,1384747,76,316013943,9780316013950.0,\"James Patterson, Michael Ledwidge\",2007.0,Step on a Crack,\"Step on a Crack (Michael Bennett, #1)\",en-US,4.0,31435,34218,1532,353,1170,7892,13571,11232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442786367l/45169._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3164,15937108,15937108,19034797,36,803738552,9780803738550.0,Holly Goldberg Sloan,2013.0,Counting by 7s,Counting by 7s,eng,4.16,33097,36886,5500,774,1229,5301,13720,15862,https://images.gr-assets.com/books/1396225872l/15937108.jpg,https://images.gr-assets.com/books/1396225872s/15937108.jpg\n3166,139417,139417,3341459,55,345490657,9780345490650.0,Laurell K. Hamilton,2000.0,\"A Kiss of Shadows (Merry Gentry, #1)\",\"A Kiss of Shadows (Merry Gentry, #1)\",eng,4.01,42358,46913,1604,1250,2878,9177,14421,19187,https://images.gr-assets.com/books/1486707201l/139417.jpg,https://images.gr-assets.com/books/1486707201s/139417.jpg\n3167,777211,777211,2751321,45,743453964,9780743453970.0,Vince Flynn,2003.0,Executive Power,\"Executive Power (Mitch Rapp, #6)\",en-US,4.33,28205,30930,654,100,432,3846,11419,15133,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442431876l/777211._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3168,6781956,6781956,7332055,65,1423368886,9781423368880.0,\"Nora Roberts, Angela Dawe\",2010.0,Savor the Moment,\"Savor the Moment (Bride Quartet, #3)\",eng,4.13,37877,43777,1797,226,1374,8444,16044,17689,https://images.gr-assets.com/books/1415065163l/6781956.jpg,https://images.gr-assets.com/books/1415065163s/6781956.jpg\n3169,157076,157076,151586,121,1599869691,9781599869700.0,Richard Connell,1924.0,The Most Dangerous Game,The Most Dangerous Game,,3.91,31944,34194,1030,447,1806,8512,12901,10528,https://images.gr-assets.com/books/1386885674l/157076.jpg,https://images.gr-assets.com/books/1386885674s/157076.jpg\n3170,954674,954674,939584,20,765319853,9780765319850.0,Cory Doctorow,2008.0,Little Brother,Little Brother,en-US,3.94,36779,39657,5103,887,2295,8089,15532,12854,https://images.gr-assets.com/books/1349673129l/954674.jpg,https://images.gr-assets.com/books/1349673129s/954674.jpg\n3171,136081,136081,3888720,68,1400095921,9781400095930.0,Jeff Lindsay,2005.0,Dearly Devoted Dexter,\"Dearly Devoted Dexter (Dexter, #2)\",eng,3.84,31937,36156,1936,397,2024,9817,14773,9145,https://images.gr-assets.com/books/1327896144l/136081.jpg,https://images.gr-assets.com/books/1327896144s/136081.jpg\n3172,304079,304079,965212,28,62509594,9780062509600.0,\"Jalaluddin Rumi, Coleman Barks\",1273.0,Essential Rumi,The Essential Rumi,,4.44,26575,28379,696,203,473,2904,7988,16811,https://images.gr-assets.com/books/1391414844l/304079.jpg,https://images.gr-assets.com/books/1391414844s/304079.jpg\n3173,22716194,22716194,42243412,24,147671777X,9781476717780.0,Lisa Genova,2015.0,Inside the O'Briens,Inside the O'Briens,eng,3.98,27221,31577,4531,318,1206,6518,14327,9208,https://images.gr-assets.com/books/1423486279l/22716194.jpg,https://images.gr-assets.com/books/1423486279s/22716194.jpg\n3174,175983,175983,836462,39,765348802,9780765348810.0,Steven Erikson,2001.0,Memories of Ice,\"Memories of Ice (The Malazan Book of the Fallen, #3)\",eng,4.39,29796,33291,1076,238,682,3401,10531,18439,https://images.gr-assets.com/books/1316729348l/175983.jpg,https://images.gr-assets.com/books/1316729348s/175983.jpg\n3175,2029927,2029927,2313023,53,553807056,9780553807060.0,Dean Koontz,2008.0,Odd Hours,\"Odd Hours (Odd Thomas, #4)\",eng,3.92,32880,36362,2036,422,2088,9027,13099,11726,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204532l/2029927.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3176,261122,261122,253091,47,451220897,9780451220900.0,Rachel Caine,2007.0,The Dead Girls' Dance,\"The Dead Girls' Dance (The Morganville Vampires, #2)\",eng,4.06,46247,49499,1758,736,2273,10253,16301,19936,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182865l/261122.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3177,13834,13834,1112038,29,141690817X,9781416908170.0,Tamora Pierce,1996.0,\"The Realms of the Gods (Immortals, #4)\",\"The Realms of the Gods (Immortals, #4)\",en-US,4.32,41233,44104,677,233,1026,6329,13418,23098,https://images.gr-assets.com/books/1262375414l/13834.jpg,https://images.gr-assets.com/books/1262375414s/13834.jpg\n3178,4922079,4922079,4987669,34,765317583,9780765317580.0,William R. Forstchen,2009.0,One Second After,\"One Second After (After, #1)\",eng,3.92,26331,33725,4756,1028,2275,6653,12025,11744,https://images.gr-assets.com/books/1316728333l/4922079.jpg,https://images.gr-assets.com/books/1316728333s/4922079.jpg\n3179,385706,385706,860418,53,439656249,9780439656240.0,Suzanne Collins,2005.0,Gregor and the Curse of the Warmbloods,\"Gregor and the Curse of the Warmbloods (Underland Chronicles, #3)\",eng,4.2,31854,34501,1280,375,813,5632,12527,15154,https://images.gr-assets.com/books/1397852674l/385706.jpg,https://images.gr-assets.com/books/1397852674s/385706.jpg\n3180,9279177,9279177,12922551,36,374193681,9780374193680.0,David Levithan,2011.0,The Lover's Dictionary,The Lover's Dictionary,en-US,3.89,34771,38652,4849,676,2473,9299,14184,12020,https://images.gr-assets.com/books/1312055996l/9279177.jpg,https://images.gr-assets.com/books/1312055996s/9279177.jpg\n3181,32525,32525,1166071,46,155050907,9780155050910.0,\"Helen Gardner, Fred S. Kleiner, Christin J. Mamiya\",1926.0,Art Through the Ages ,Art Through the Ages ,eng,3.84,23738,26181,136,1805,1934,5154,7003,10285,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168391513l/32525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3182,15567,15567,1352033,70,1857231325,9781857231330.0,Terry Brooks,1985.0,The Wishsong of Shannara ,\"The Wishsong of Shannara (The Original Shannara Trilogy, #3)\",eng,3.97,36303,39153,577,437,1876,9188,14699,12953,https://images.gr-assets.com/books/1328325115l/15567.jpg,https://images.gr-assets.com/books/1328325115s/15567.jpg\n3183,2498983,2498983,2506307,55,373772327,9780373772320.0,Gena Showalter,2008.0,The Darkest Kiss,The Darkest Kiss (Lords of the Underworld #2),eng,4.26,43594,45469,1597,392,1360,6628,14616,22473,https://images.gr-assets.com/books/1399691671l/2498983.jpg,https://images.gr-assets.com/books/1399691671s/2498983.jpg\n3184,2200877,2200877,2854106,38,553805495,9780553805500.0,Sarah Addison Allen,2008.0,The Sugar Queen,The Sugar Queen,en-US,3.98,37734,42123,4900,353,1861,9554,16723,13632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440154317l/2200877._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3185,9761771,9761771,14651123,22,983157227,9780983157230.0,Jennifer L. Armentrout,2012.0,Pure,\"Pure (Covenant, #2)\",eng,4.34,44665,47501,3098,456,1114,5539,15220,25172,https://images.gr-assets.com/books/1296780419l/9761771.jpg,https://images.gr-assets.com/books/1296780419s/9761771.jpg\n3186,126381,126381,1057017,87,7189885,9780007189880.0,Chimamanda Ngozi Adichie,2003.0,Purple Hibiscus,Purple Hibiscus,,4.11,29416,34222,3265,226,869,5742,15295,12090,https://images.gr-assets.com/books/1329431038l/126381.jpg,https://images.gr-assets.com/books/1329431038s/126381.jpg\n3187,113429,113429,3173608,51,743299396,9780743299400.0,Miranda July,2005.0,No One Belongs Here More Than You,No One Belongs Here More Than You,,3.81,24717,27817,3225,790,2209,6564,10116,8138,https://images.gr-assets.com/books/1341079226l/113429.jpg,https://images.gr-assets.com/books/1341079226s/113429.jpg\n3188,9595620,9595620,14482655,28,345522486,9780345522480.0,Kevin Hearne,2011.0,Hammered,\"Hammered (The Iron Druid Chronicles, #3)\",eng,4.22,33950,38123,1861,169,921,5796,14889,16348,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438221107l/9595620._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3189,14383,14383,1097825,39,1416509887,9781416509880.0,Kresley Cole,2006.0,No Rest for the Wicked,No Rest for the Wicked (Immortals After Dark #3),en-CA,4.3,42026,44844,1388,243,1065,6113,14784,22639,https://images.gr-assets.com/books/1357615569l/14383.jpg,https://images.gr-assets.com/books/1357615569s/14383.jpg\n3190,3313418,3313418,3351033,39,1416599398,9781416599400.0,Vince Flynn,2008.0,Extreme Measures,\"Extreme Measures (Mitch Rapp, #11)\",eng,4.32,32211,35081,826,326,666,4119,12351,17619,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349014258l/3313418.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3191,23093367,23093367,42643523,23,1632150778,9781632150780.0,\"Brian K. Vaughan, Fiona Staples\",2014.0,\"Saga, Volume Four\",\"Saga, Vol. 4 (Saga, #4)\",eng,4.47,38069,38963,3198,166,368,2986,12932,22511,https://images.gr-assets.com/books/1486028981l/23093367.jpg,https://images.gr-assets.com/books/1486028981s/23093367.jpg\n3192,18528454,18528454,26234107,37,1476759545,9781476759550.0,Jamie McGuire,2013.0,A Beautiful Wedding,\"A Beautiful Wedding (Beautiful, #2.5)\",eng,4.08,41359,47475,3241,752,2472,9202,14978,20071,https://images.gr-assets.com/books/1384555141l/18528454.jpg,https://images.gr-assets.com/books/1384555141s/18528454.jpg\n3193,16071701,16071701,21865808,21,307272591,9780307272590.0,Carl Hiaasen,2013.0,Bad Monkey,Bad Monkey,eng,3.66,27437,31640,3789,826,2245,9739,12824,6006,https://images.gr-assets.com/books/1359148688l/16071701.jpg,https://images.gr-assets.com/books/1359148688s/16071701.jpg\n3194,16099180,16099180,21908528,25,1400068312,9781400068320.0,Curtis Sittenfeld,2013.0,Sisterland,Sisterland,en-US,3.35,29553,32375,4387,1069,4476,12533,10707,3590,https://images.gr-assets.com/books/1362466425l/16099180.jpg,https://images.gr-assets.com/books/1362466425s/16099180.jpg\n3195,6224826,6224826,6405538,63,1594488878,9781594488870.0,Nick Hornby,2009.0,\"Juliet, Naked\",\"Juliet, Naked\",en-US,3.48,30200,34667,3545,658,3504,13277,13021,4207,https://images.gr-assets.com/books/1480092420l/6224826.jpg,https://images.gr-assets.com/books/1480092420s/6224826.jpg\n3196,801178,801178,1958046,91,1558749209,9781558749210.0,\"Jack Canfield, Mark Victor Hansen\",1993.0,Chicken Soup for the Soul,Chicken Soup for the Soul,eng,3.94,28664,30141,632,818,1850,6916,9273,11284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348985789l/801178.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3197,7039,7039,1005422,76,349116652,9780349116660.0,Alexander McCall Smith,2000.0,Tears of the Giraffe,\"Tears of the Giraffe (No. 1 Ladies' Detective Agency, #2)\",en-GB,3.95,35205,40316,2273,157,1059,9863,18670,10567,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348567024l/7039.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3198,49350,49350,449511,112,044661758X,9780446617580.0,Michael Connelly,1994.0,The Concrete Blonde,\"The Concrete Blonde (Harry Bosch, #3; Harry Bosch Universe, #3)\",eng,4.12,30286,36464,1557,100,578,6491,17061,12234,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388241215l/49350.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3200,34541,34541,1494234,63,61051586,9780061051590.0,Terry Pratchett,1998.0,Carpe Jugulum,Carpe Jugulum (Discworld #23; Witches #6),eng,4.12,35605,41634,917,121,1021,8200,16617,15675,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388895900l/34541.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3201,6388558,6388558,6576853,24,,,Kresley Cole,2006.0,The Warlord Wants Forever,The Warlord Wants Forever (Immortals After Dark #1),eng,4.09,42767,45294,1611,1131,2249,7998,13831,20085,https://images.gr-assets.com/books/1254801341l/6388558.jpg,https://images.gr-assets.com/books/1254801341s/6388558.jpg\n3202,9601,9601,6582745,63,038533351X,9780385333510.0,Kurt Vonnegut Jr.,1987.0,Bluebeard,Bluebeard,en-US,4.02,27011,28764,1065,140,881,6495,12029,9219,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1516339874l/9601.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3203,120253,120253,115789,7,684847817,9780684847820.0,\"Brian Froud, Terry Windling\",1998.0,\"Good Faeries, Bad Faeries\",Good Faeries/Bad Faeries,en-US,3.88,35068,35215,119,2110,2692,7128,8702,14583,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348748756l/120253.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3205,550844,550844,538087,66,451822196,9780451822190.0,\"Stephen King, Bernie Wrightson\",1983.0,Cycle of the Werewolf,Cycle of the Werewolf,eng,3.62,30993,36400,1044,687,3635,12773,11097,8208,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1565642120l/550844.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3206,91357,91357,1310677,30,142401099,9780142401100.0,Jane Yolen,1988.0,The Devil's Arithmetic,The Devil's Arithmetic,eng,4.04,39419,41100,1890,881,1713,8038,14526,15942,https://images.gr-assets.com/books/1342046407l/91357.jpg,https://images.gr-assets.com/books/1342046407s/91357.jpg\n3207,248787,248787,241063,63,312347294,9780312347290.0,Alan Weisman,2007.0,The World Without Us,The World Without Us,eng,3.79,28549,30591,3048,745,2202,7770,11829,8045,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441986417l/248787._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3208,239186,239186,1605,29,375708278,9780375708280.0,Erik Larson,1999.0,\"Isaac's Storm: A Man, a Time, and the Deadliest Hurricane in History\",\"Isaac's Storm: A Man, a Time, and the Deadliest Hurricane in History\",en-US,4.05,29695,33342,2680,311,1140,6639,13795,11457,https://images.gr-assets.com/books/1403179592l/239186.jpg,https://images.gr-assets.com/books/1403179592s/239186.jpg\n3209,23341607,23341607,42901131,25,316334529,9780316334520.0,Elin Hilderbrand,2015.0,The Rumor,The Rumor,eng,3.69,22876,29687,2515,478,1885,9678,12035,5611,https://images.gr-assets.com/books/1418769681l/23341607.jpg,https://images.gr-assets.com/books/1418769681s/23341607.jpg\n3210,18839,18839,6057225,355,141184272,9780141184270.0,Virginia Woolf,1928.0,Orlando: A Biography,Orlando,en-GB,3.86,32846,39286,2196,1050,2917,9208,13521,12590,https://images.gr-assets.com/books/1443118010l/18839.jpg,https://images.gr-assets.com/books/1443118010s/18839.jpg\n3211,2410506,2410506,2417683,87,000723368X,9780007233690.0,Cecelia Ahern,2008.0,Thanks for the Memories,Thanks for the Memories,eng,3.69,31617,34851,1861,976,3153,10241,11747,8734,https://images.gr-assets.com/books/1328019535l/2410506.jpg,https://images.gr-assets.com/books/1328019535s/2410506.jpg\n3212,298230,298230,2222441,448,140432108,9780140432110.0,\"Anne Brontë, Angeline Goreau\",1847.0,Agnes Grey,Agnes Grey,,3.65,33926,38553,2003,849,3268,12639,13615,8182,https://images.gr-assets.com/books/1400875530l/298230.jpg,https://images.gr-assets.com/books/1400875530s/298230.jpg\n3213,26050,26050,3038377,74,399153721,9780399153720.0,Nora Roberts,2006.0,Angels Fall,Angels Fall,en-US,3.98,34484,36711,1140,285,1556,9030,13673,12167,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442931263l/26050._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3214,6339304,6339304,6525245,37,1416595163,9781416595170.0,Vince Flynn,2009.0,Pursuit of Honor,\"Pursuit of Honor (Mitch Rapp, #12)\",en-US,4.35,27137,29795,828,168,451,3332,10793,15051,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440180728l/6339304._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3215,2299110,2299110,3202442,31,312362153,9780312362160.0,Sherrilyn Kenyon,2008.0,\"Acheron (Dark-Hunter, #15) - Part 1\",Acheron (Dark-Hunter #14),en-US,4.59,44623,47736,3240,441,840,3238,8823,34394,https://images.gr-assets.com/books/1437687512l/2299110.jpg,https://images.gr-assets.com/books/1437687512s/2299110.jpg\n3216,6135237,6135237,6264122,32,038541305X,9780385413050.0,Pat Conroy,2009.0,South of Broad,South of Broad,eng,3.78,31640,34426,5027,1155,2740,8310,12594,9627,https://images.gr-assets.com/books/1320532445l/6135237.jpg,https://images.gr-assets.com/books/1320532445s/6135237.jpg\n3217,171102,171102,2307275,23,676977731,9780676977740.0,Ami McKay,2006.0,The Birth House,The Birth House,,3.99,29721,32573,2360,290,1234,6898,14338,9813,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172385530l/171102._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3218,3657138,3657138,3700340,45,1416953582,9781416953590.0,Lisa McMann,2009.0,Fade,\"Fade (Wake, #2)\",eng,3.95,42540,44487,2316,783,2782,10371,14608,15943,https://images.gr-assets.com/books/1293805966l/3657138.jpg,https://images.gr-assets.com/books/1293805966s/3657138.jpg\n3219,775346,775346,1808852,84,1400031699,9781400031700.0,Donna Tartt,2002.0,The Little Friend,The Little Friend,eng,3.43,28978,33799,3244,1732,4727,10584,10673,6083,https://images.gr-assets.com/books/1327936589l/775346.jpg,https://images.gr-assets.com/books/1327936589s/775346.jpg\n3220,3165162,3165162,3197005,5,1423113497,9781423113490.0,Rick Riordan,2008.0,Percy Jackson and the Olympians Boxed Set,\"Percy Jackson and the Olympians (Percy Jackson and the Olympians, #1-3)\",eng,4.58,32496,33031,509,286,418,2411,6699,23217,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181482l/3165162.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3221,2133795,2133795,2596626,35,803733062,9780803733060.0,Ingrid Law,2008.0,Savvy,\"Savvy (Savvy, #1)\",en-US,3.96,37593,38549,3517,742,2129,8420,13711,13547,https://images.gr-assets.com/books/1480110534l/2133795.jpg,https://images.gr-assets.com/books/1480110534s/2133795.jpg\n3222,4452257,4452257,4500484,6,034551176X,9780345511770.0,Bill Simmons,2009.0,The Book of Basketball: The NBA According to The Sports Guy,The Book of Basketball: The NBA According to The Sports Guy,en-US,4.16,24245,25096,838,735,1012,3838,7481,12030,https://images.gr-assets.com/books/1320424763l/4452257.jpg,https://images.gr-assets.com/books/1320424763s/4452257.jpg\n3223,13151,13151,3236105,76,446613355,9780446613350.0,James Patterson,2004.0,London Bridges,\"London Bridges (Alex Cross, #10)\",en-US,3.92,32455,34843,846,368,1689,8800,13401,10585,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439049145l/13151._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3224,2750180,2750180,2775877,36,,,عائض القرني,2003.0,لا تحزن,لا تحزن,ara,4.15,18825,24957,2031,935,1258,3573,6519,12672,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1202202276l/2750180.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3225,634583,634583,620871,21,8173711461,9788173711470.0,\"A.P.J. Abdul Kalam, Arun Tiwari\",1999.0,Wings of Fire: An Autobiography,Wings of Fire: An Autobiography,en-US,4.19,24450,26675,848,258,785,4068,10002,11562,https://images.gr-assets.com/books/1295670969l/634583.jpg,https://images.gr-assets.com/books/1295670969s/634583.jpg\n3226,11401915,11401915,16334474,28,62113933,9780062113930.0,\"L.J. Smith, Kevin Williamson, Julie Plec\",2011.0,The Ripper,\"The Ripper (The Vampire Diaries: Stefan's Diaries, #4)\",,4.22,27432,27795,172,890,1389,4250,5400,15866,https://images.gr-assets.com/books/1314846147l/11401915.jpg,https://images.gr-assets.com/books/1314846147s/11401915.jpg\n3227,13588394,13588394,19175796,33,159420411X,9781594204110.0,Nate Silver,2012.0,The Signal and the Noise: Why So Many Predictions Fail - But Some Don't,The Signal and the Noise: Why So Many Predictions Fail - But Some Don't,eng,3.96,26888,30613,2374,417,1355,6365,13246,9230,https://images.gr-assets.com/books/1355058876l/13588394.jpg,https://images.gr-assets.com/books/1355058876s/13588394.jpg\n3228,25614492,25614492,27126244,45,399160302,9780399160300.0,Ruta Sepetys,2016.0,Salt to the Sea,Salt to the Sea,eng,4.36,39406,45184,9031,300,749,4368,16513,23254,https://images.gr-assets.com/books/1437084512l/25614492.jpg,https://images.gr-assets.com/books/1437084512s/25614492.jpg\n3229,16319,16319,3038784,211,157912626X,9781579126260.0,Agatha Christie,1942.0,The Body in the Library,\"The Body in the Library (Miss Marple, #3)\",eng,3.85,36188,42578,1812,316,1921,12547,16998,10796,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733809l/16319.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3230,119,119,4479,7,618212906,9780618212900.0,Gary Russell,2002.0,The Lord of the Rings: The Art of The Fellowship of the Ring,The Lord of the Rings: The Art of The Fellowship of the Ring,en-US,4.59,24340,24412,67,211,220,1751,5011,17219,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347803870l/119.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3231,8379374,8379374,13235522,24,1402244428,9781402244420.0,Olivia Cunning,2010.0,\"Backstage Pass (Sinners on Tour, #1)\",\"Backstage Pass (Sinners on Tour, #1)\",eng,4.05,50044,52679,3291,1603,2763,8903,17634,21776,https://images.gr-assets.com/books/1348192403l/8379374.jpg,https://images.gr-assets.com/books/1348192403s/8379374.jpg\n3232,189182,189182,802423,36,448421658,9780448421650.0,\"Marjorie Flack, Kurt Wiese\",1933.0,The Story About Ping,The Story About Ping,en-US,4.15,36193,36740,418,537,1424,6993,10851,16935,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193120l/189182.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3233,8274537,8274537,13122821,53,1416986561,9781416986560.0,Rachel Renée Russell,2010.0,Tales from a Not-So-Popular Party Girl,\"Tales from a Not-So-Popular Party Girl (Dork Diaries, #2)\",,4.28,26210,29099,1036,625,1236,4110,6470,16658,https://images.gr-assets.com/books/1370064608l/8274537.jpg,https://images.gr-assets.com/books/1370064608s/8274537.jpg\n3234,8252,8252,1366740,62,60885386,9780060885380.0,\"Laura Ingalls Wilder, Garth Williams\",1933.0,Farmer Boy,\"Farmer Boy (Little House, #3)\",,4.05,39863,45289,1525,569,1980,10002,15023,17715,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388446891l/8252.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3235,7108725,7108725,7367737,43,1591842808,9781591842800.0,Simon Sinek,2009.0,Start with Why: How Great Leaders Inspire Everyone to Take Action,Start with Why: How Great Leaders Inspire Everyone to Take Action,,4.07,32899,36466,2119,881,1839,6334,12067,15345,https://images.gr-assets.com/books/1360936414l/7108725.jpg,https://images.gr-assets.com/books/1360936414s/7108725.jpg\n3236,17345258,17345258,24084454,36,1400065941,9781400065940.0,Fannie Flagg,2013.0,The All-Girl Filling Station's Last Reunion,The All-Girl Filling Station's Last Reunion,eng,3.97,26878,32916,5015,497,1306,6927,14195,9991,https://images.gr-assets.com/books/1373052495l/17345258.jpg,https://images.gr-assets.com/books/1373052495s/17345258.jpg\n3237,25354,25354,51364,34,452287057,9780452287050.0,Dorothy Allison,1992.0,Bastard Out of Carolina,Bastard Out of Carolina,eng,4.09,27358,32549,2173,434,1236,5699,12861,12319,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424648725l/25354.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3238,9464733,9464733,10808145,23,439895979,9780439895970.0,Libba Bray,2011.0,Beauty Queens,Beauty Queens,eng,3.6,39455,41669,6436,2969,4636,9960,12565,11539,https://images.gr-assets.com/books/1289410187l/9464733.jpg,https://images.gr-assets.com/books/1289410187s/9464733.jpg\n3239,4699575,6665847,4763873,49,525951113,9780525951120.0,Daniel Suarez,2006.0, Daemon,\"Daemon (Daemon, #1)\",en-US,4.17,18104,30198,2655,485,1268,4318,10720,13407,https://images.gr-assets.com/books/1432909825l/4699575.jpg,https://images.gr-assets.com/books/1432909825s/4699575.jpg\n3240,4035,4035,1732833,57,446677124,9780446677130.0,Scott Turow,1990.0,The Burden of Proof,The Burden of Proof,eng,4.05,29103,29820,222,199,813,6351,12394,10063,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425756834l/4035.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3241,22299763,22299763,42090179,29,,,Leigh Bardugo,2016.0,Crooked Kingdom,\"Crooked Kingdom (Six of Crows, #2)\",eng,4.62,44289,54160,10047,158,392,2732,13092,37786,https://images.gr-assets.com/books/1456172607l/22299763.jpg,https://images.gr-assets.com/books/1456172607s/22299763.jpg\n3242,758153,758153,1492360,67,375714383,9780375714380.0,Joy Adamson,1960.0,Born Free: A Lioness of Two Worlds,\"Born Free: A Lioness of Two Worlds (Story of Elsa, #1)\",,4.17,28820,29385,229,366,812,5365,9892,12950,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406563918l/758153.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3243,333867,333867,1398442,84,679767800,9780679767800.0,\"Alfred Bester, Neil Gaiman\",1955.0,The Stars My Destination,The Stars My Destination,en-US,4.13,29055,32968,1955,439,1419,5658,11411,14041,https://images.gr-assets.com/books/1433671750l/333867.jpg,https://images.gr-assets.com/books/1433671750s/333867.jpg\n3245,15839984,15839984,21580669,20,62224735,9780062224740.0,Rosamund Hodge,2014.0,Cruel Beauty,\"Cruel Beauty (Cruel Beauty Universe, #1)\",eng,3.74,45721,49354,7813,1590,4430,12549,17361,13424,https://images.gr-assets.com/books/1371652590l/15839984.jpg,https://images.gr-assets.com/books/1371652590s/15839984.jpg\n3246,11289,11289,13799,54,553572989,9780553572990.0,Dan Simmons,1997.0,The Rise of Endymion,\"The Rise of Endymion (Hyperion Cantos, #4)\",eng,4.16,30135,32910,1040,402,1364,5345,11259,14540,https://images.gr-assets.com/books/1329609799l/11289.jpg,https://images.gr-assets.com/books/1329609799s/11289.jpg\n3247,3977,3977,1882574,58,553572946,9780553572940.0,Dan Simmons,1996.0,Endymion,\"Endymion (Hyperion Cantos, #3)\",eng,4.14,30664,33572,969,273,1201,5556,12997,13545,https://images.gr-assets.com/books/1329611385l/3977.jpg,https://images.gr-assets.com/books/1329611385s/3977.jpg\n3248,920607,920607,905641,27,734406940,9780734406940.0,Shaun Tan,2006.0,The Arrival,The Arrival,eng,4.33,33764,36400,3436,678,1186,4142,9897,20497,https://images.gr-assets.com/books/1312827620l/920607.jpg,https://images.gr-assets.com/books/1312827620s/920607.jpg\n3249,15704486,15704486,21366542,35,385743602,9780385743600.0,Brandon Sanderson,2016.0,Calamity,\"Calamity (The Reckoners, #3)\",eng,4.2,27146,33909,3310,93,680,5383,14098,13655,https://images.gr-assets.com/books/1437098338l/15704486.jpg,https://images.gr-assets.com/books/1437098338s/15704486.jpg\n3250,10873,10873,1028908,43,786891076,9780786891080.0,Steve Martin,2000.0,Shopgirl: A Novella,Shopgirl,en-US,3.42,28063,32356,2489,1096,4324,11512,10723,4701,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442525303l/10873._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3252,24580,24580,41261371,202,451528646,9780451528640.0,Mark Twain,1876.0,Tom Sawyer & Huckleberry Finn,The Adventures of Tom Sawyer & Adventures of Huckleberry Finn,en-US,4.07,30228,33289,521,527,1430,6451,11744,13137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1597509702l/24580.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3253,15701217,15701217,18450578,31,307596907,9780307596900.0,Claire Messud,2013.0,The Woman Upstairs,The Woman Upstairs,eng,3.31,25135,27351,3274,2075,4281,8683,7697,4615,https://images.gr-assets.com/books/1345666863l/15701217.jpg,https://images.gr-assets.com/books/1345666863s/15701217.jpg\n3254,74731,74731,4116777,54,60842350,9780060842350.0,Christopher Moore,2004.0,The Stupidest Angel: A Heartwarming Tale of Christmas Terror,\"The Stupidest Angel: A Heartwarming Tale of Christmas Terror (Pine Cove, #3)\",en-US,3.82,32000,34999,2641,785,2421,9087,12713,9993,https://images.gr-assets.com/books/1331320721l/74731.jpg,https://images.gr-assets.com/books/1331320721s/74731.jpg\n3255,4708,4708,2432116,522,743451503,9780743451500.0,F. Scott Fitzgerald,1922.0,The Beautiful and Damned,The Beautiful and Damned,,3.75,26597,33692,2050,632,2522,9543,12851,8144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347567298l/4708.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3256,27037,27037,1427207,843,192833723,9780192833720.0,\"Augustine of Hippo, Henry Chadwick, Albert Cook Outler\",397.0,Confessiones Sancti Patris nostri Augustini,Confessions,,3.88,25674,33636,1554,1163,2513,7408,10523,12029,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266454051l/27037.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3257,23602562,23602562,43166999,37,1101875895,9781101875900.0,Kent Haruf,2015.0,Our Souls at Night,Our Souls at Night,,3.96,26249,33831,5858,488,1746,6807,14388,10402,https://images.gr-assets.com/books/1418766517l/23602562.jpg,https://images.gr-assets.com/books/1418766517s/23602562.jpg\n3258,116012,116012,1461164,74,515130389,9780515130390.0,Nora Roberts,2000.0,Carolina Moon,Carolina Moon,eng,4.02,33719,35180,699,276,1338,8343,12574,12649,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347331523l/116012.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3259,16138688,16138688,18151238,26,1594486247,9781594486240.0,Cathy Marie Buchanan,2012.0,The Painted Girls,The Painted Girls,eng,3.61,26798,29304,2855,1332,2612,8420,10799,6141,https://images.gr-assets.com/books/1352484200l/16138688.jpg,https://images.gr-assets.com/books/1352484200s/16138688.jpg\n3260,13402447,13402447,18634320,11,,,Chanda Hahn,2011.0,UnEnchanted,\"UnEnchanted (An Unfortunate Fairy Tale, #1)\",eng,3.89,35287,35716,3458,976,2591,8277,11482,12390,https://images.gr-assets.com/books/1327819697l/13402447.jpg,https://images.gr-assets.com/books/1327819697s/13402447.jpg\n3261,7897478,7897478,11141306,18,,,Sarah Silverman,2010.0,\"The Bedwetter: Stories of Courage, Redemption and Pee\",\"The Bedwetter: Stories of Courage, Redemption, and Pee\",eng,3.52,27706,30176,1949,1207,3272,10126,9864,5707,https://images.gr-assets.com/books/1269295414l/7897478.jpg,https://images.gr-assets.com/books/1269295414s/7897478.jpg\n3262,2247142,2247142,1817520,139,393332144,9780393332150.0,Patricia Highsmith,1955.0,The Talented Mr. Ripley,\"The Talented Mr. Ripley (Ripley, #1)\",eng,3.93,16536,37505,2155,540,1821,8374,15903,10867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435426615l/2247142._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3263,8662836,8662836,13534308,28,802720870,9780802720870.0,Simone Elkeles,2011.0,Chain Reaction,\"Chain Reaction (Perfect Chemistry, #3)\",eng,4.12,47773,49673,2651,1015,2419,8872,14647,22720,https://images.gr-assets.com/books/1327881446l/8662836.jpg,https://images.gr-assets.com/books/1327881446s/8662836.jpg\n3264,390711,390711,1486259,53,440164842,9780440164840.0,James Clavell,1981.0,Noble House,\"Noble House (Asian Saga, #5)\",en-US,4.23,30367,31751,396,157,699,5099,11538,14258,https://images.gr-assets.com/books/1365185986l/390711.jpg,https://images.gr-assets.com/books/1365185986s/390711.jpg\n3265,28866,28866,2609827,42,843955287,9780843955290.0,Christine Feehan,1999.0,Dark Prince,\"Dark Prince (Dark, #1)\",eng,4.01,38879,42434,2077,1831,2802,7349,11509,18943,https://images.gr-assets.com/books/1405352801l/28866.jpg,https://images.gr-assets.com/books/1405352801s/28866.jpg\n3266,4634266,4634266,4684374,14,,9784088745530.0,Masashi Kishimoto,2008.0,NARUTO -ナルト- 巻ノ四十三 ,NARUTO -ナルト- 巻ノ四十三,jpn,4.57,26364,26971,147,259,480,2170,4863,19199,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1221281979l/4634266.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3267,16131077,16131077,21956898,62,316216852,9780316216850.0,Lauren Beukes,2013.0,The Shining Girls,The Shining Girls,eng,3.49,28006,32360,4446,1503,3688,10301,11216,5652,https://images.gr-assets.com/books/1352227705l/16131077.jpg,https://images.gr-assets.com/books/1352227705s/16131077.jpg\n3268,1128178,32722510,2915978,52,393061728,9780393061730.0,Diane Ackerman,2007.0,The Zookeeper's Wife: A War Story,The Zookeeper's Wife,eng,3.44,20056,46005,7070,1922,5882,15489,15445,7267,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347606702l/1128178.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3269,24499258,24499258,44094715,37,812998685,9780812998690.0,David Mitchell,2015.0,Slade House,Slade House,eng,3.82,24898,31410,4629,544,1624,7871,14209,7162,https://images.gr-assets.com/books/1446777435l/24499258.jpg,https://images.gr-assets.com/books/1446777435s/24499258.jpg\n3270,18170143,18170143,25488999,49,316253014,9780316253020.0,Chris Hadfield,2013.0,An Astronaut’s Guide to Life on Earth,An Astronaut's Guide to Life on Earth,eng,4.14,25474,29675,2831,627,1025,4534,10905,12584,https://images.gr-assets.com/books/1380495144l/18170143.jpg,https://images.gr-assets.com/books/1380495144s/18170143.jpg\n3271,2321296,2321296,2327820,46,006121468X,9780061214680.0,Melissa Marr,2008.0,\"Ink Exchange (Wicked Lovely, #2)\",\"Ink Exchange (Wicked Lovely, #2)\",eng,3.68,48264,50916,2861,1521,5439,14688,15408,13860,https://images.gr-assets.com/books/1275693727l/2321296.jpg,https://images.gr-assets.com/books/1275693727s/2321296.jpg\n3272,6621287,6621287,6815455,9,,9789953891220.0,\"أحلام مستغانمي, Ahlam Mosteghanemi\",2009.0,نسيان كوم,com نسيان,ara,3.73,24884,25123,2318,1742,2648,5440,6147,9146,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1247786907l/6621287.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3273,5347,5347,6365798,66,99468190,9780099468200.0,John Grisham,2003.0,Bleachers,Bleachers,eng,3.46,27719,30977,1576,1205,4038,10776,9245,5713,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920942l/5347.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3274,206962,206962,894153,32,7158491,9780007158490.0,Dr. Seuss,1963.0,Hop on Pop,Hop On Pop,eng,3.95,37324,40069,1023,689,2570,10318,10812,15680,https://images.gr-assets.com/books/1327947739l/206962.jpg,https://images.gr-assets.com/books/1327947739s/206962.jpg\n3276,103983,103983,1443938,66,142406147,9780142406140.0,Anthony Horowitz,2002.0,Skeleton Key,\"Skeleton Key (Alex Rider, #3)\",en-US,4.06,37232,39330,1188,306,1505,8546,14053,14920,https://images.gr-assets.com/books/1306076661l/103983.jpg,https://images.gr-assets.com/books/1306076661s/103983.jpg\n3277,43930,43930,14596509,83,440236738,9780440236730.0,Harlan Coben,2002.0,Gone for Good,Gone for Good,eng,4.1,29777,33482,1759,197,847,6057,14641,11740,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200178l/43930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3278,45101,45101,2571145,53,6498868,9780006498860.0,Robin Hobb,1999.0,The Mad Ship,\"The Mad Ship (Liveship Traders, #2)\",en-GB,4.21,30724,34918,892,192,905,5289,13528,15004,https://images.gr-assets.com/books/1328628210l/45101.jpg,https://images.gr-assets.com/books/1328628210s/45101.jpg\n3279,722864,722864,709098,21,590414275,9780590414270.0,\"Joanna Cole, Bruce Degen\",1989.0,Inside the Human Body,\"Inside the Human Body (The Magic School Bus, #3)\",eng,4.26,30884,30932,287,418,1114,5147,7577,16676,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177016l/722864.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3280,126507,126507,1805500,92,446611638,9780446611630.0,Michael Connelly,2003.0,Lost Light,\"Lost Light (Harry Bosch, #9; Harry Bosch Universe, #11)\",eng,4.15,29745,34476,1122,107,503,5871,15465,12530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388241213l/126507.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3281,20578940,20578940,19205879,69,545522250,9780545522250.0,\"Holly Black, Cassandra Clare\",2014.0,The Iron Trial,\"The Iron Trial (Magisterium, #1)\",eng,3.95,33510,41273,5202,1463,2108,8229,14840,14633,https://images.gr-assets.com/books/1396560808l/20578940.jpg,https://images.gr-assets.com/books/1396560808s/20578940.jpg\n3282,12962439,12962439,18120108,25,044042321X,9780440423220.0,\"Daniel Abraham, George R.R. Martin, Tommy Patterson\",2011.0,A Game of Thrones - The Graphic Novel Volume 1,\"A Game of Thrones: The Graphic Novel, Vol. 1\",eng,4.48,25533,26951,808,244,484,2292,7087,16844,https://images.gr-assets.com/books/1369052110l/12962439.jpg,https://images.gr-assets.com/books/1369052110s/12962439.jpg\n3283,7091370,7091370,7347624,68,61728918,9780061728910.0,Candace Bushnell,2010.0,The Carrie Diaries,\"The Carrie Diaries (The Carrie Diaries, #1)\",en-US,3.57,30468,33160,2360,1282,3848,10460,9939,7631,https://images.gr-assets.com/books/1366214548l/7091370.jpg,https://images.gr-assets.com/books/1366214548s/7091370.jpg\n3284,5181,5181,2471173,23,671042572,9780671042580.0,Bret Lott,1991.0,Jewel (Oprah's Book Club) ,Jewel,,3.64,31851,32731,587,763,2803,10719,11586,6860,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165518059l/5181.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3286,228258,228258,709793,41,842329218,9780842329220.0,\"Tim LaHaye, Jerry B. Jenkins\",1996.0,Tribulation Force: The Continuing Drama of Those Left Behind,\"Tribulation Force (Left Behind, #2)\",eng,3.94,30592,32195,797,906,2002,6948,10569,11770,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441204541l/228258._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3287,7015635,7015635,7261546,48,014311638X,9780143116390.0,Michael Pollan,2008.0,Food Rules,Food Rules: An Eater's Manual,en-US,3.99,30577,33151,3044,349,1485,7565,12460,11292,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348526224l/7015635.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3288,20316309,20316309,21468729,10,,9789776376440.0,خولة حمدي,2012.0,في قلبي أنثى عبرية,في قلبي أنثى عبرية,ara,4.04,22912,29041,4547,1267,1873,4402,8354,13145,https://images.gr-assets.com/books/1387912700l/20316309.jpg,https://images.gr-assets.com/books/1387912700s/20316309.jpg\n3289,263147,263147,255085,26,60093366,9780060093360.0,Ellen Schreiber,2003.0,Vampire Kisses,\"Vampire Kisses (Vampire Kisses, #1)\",en-US,3.69,43323,44598,2082,2613,5117,11246,10281,15341,https://images.gr-assets.com/books/1345950574l/263147.jpg,https://images.gr-assets.com/books/1345950574s/263147.jpg\n3290,16044981,16044981,21823194,32,312577214,9780312577220.0,Kristin Hannah,2013.0,Fly Away,\"Fly Away (Firefly Lane, #2)\",eng,3.94,27109,31959,3221,391,1656,7474,12371,10067,https://images.gr-assets.com/books/1355338978l/16044981.jpg,https://images.gr-assets.com/books/1355338978s/16044981.jpg\n3291,28689,28689,1000406,49,756402972,9780756402980.0,Tad Williams,1990.0,Stone of Farewell,\"Stone of Farewell (Memory, Sorrow, and Thorn, #2)\",en-US,4.09,32709,35044,422,384,1377,6449,13369,13465,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441754723l/28689._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3292,76104,76104,73626,17,517203383,9780517203380.0,\"Adrian Conan Doyle, John Dickson Carr\",1954.0,The Exploits of Sherlock Holmes,The Exploits of Sherlock Holmes,eng,4.4,26232,26370,75,225,448,2965,7561,15171,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554631048l/76104.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3293,176839,176839,1445239,37,812976185,9780812976180.0,Anna Quindlen,1994.0,One True Thing,One True Thing,,4.01,30831,32454,1096,214,965,7197,13926,10152,https://images.gr-assets.com/books/1320401814l/176839.jpg,https://images.gr-assets.com/books/1320401814s/176839.jpg\n3294,23156040,23156040,26579483,56,1609452232,9781609452230.0,\"Elena Ferrante, Ann Goldstein\",2013.0,Storia di chi fugge e di chi resta,Those Who Leave and Those Who Stay (The Neapolitan Novels #3),eng,4.29,24967,33660,2690,168,562,4024,13395,15511,https://images.gr-assets.com/books/1411338052l/23156040.jpg,https://images.gr-assets.com/books/1411338052s/23156040.jpg\n3295,28250,28250,1293084,69,1841493147,9781841493140.0,Trudi Canavan,2002.0,The Novice,\"The Novice (Black Magician Trilogy, #2)\",eng,4.07,32944,38264,1039,271,1324,7454,15682,13533,https://images.gr-assets.com/books/1327357280l/28250.jpg,https://images.gr-assets.com/books/1327357280s/28250.jpg\n3296,97782,97782,2926759,57,316016381,9780316016380.0,Joshua Ferris,2007.0,Then We Came to the End,Then We Came to the End,eng,3.45,23614,28197,4523,1309,3631,8810,9886,4561,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442800496l/97782._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3297,17202452,17202452,23678657,31,098836946X,9780988369470.0,Monica  Murphy,2013.0,One Week Girlfriend,\"One Week Girlfriend (One Week Girlfriend, #1)\",eng,3.94,44678,48199,3191,1017,2697,10157,18429,15899,https://images.gr-assets.com/books/1361553462l/17202452.jpg,https://images.gr-assets.com/books/1361553462s/17202452.jpg\n3298,45102,45102,2501194,53,553575651,9780553575650.0,Robin Hobb,2000.0,Ship of Destiny,\"Ship of Destiny (Liveship Traders, #3)\",en-US,4.21,34271,38169,1011,431,1125,5651,13899,17063,https://images.gr-assets.com/books/1403180325l/45102.jpg,https://images.gr-assets.com/books/1403180325s/45102.jpg\n3299,15990489,15990489,21746515,45,140911399X,9781409114000.0,Maeve Binchy,2012.0,A Week in Winter,A Week in Winter,en-GB,3.79,25371,32533,4641,405,1850,9334,13675,7269,https://images.gr-assets.com/books/1346827587l/15990489.jpg,https://images.gr-assets.com/books/1346827587s/15990489.jpg\n3300,13154952,13154952,18245549,44,385536073,9780385536070.0,John Grisham,2012.0,Calico Joe,Calico Joe,,3.8,27244,31685,3872,620,1971,8531,12698,7865,https://images.gr-assets.com/books/1329430545l/13154952.jpg,https://images.gr-assets.com/books/1329430545s/13154952.jpg\n3301,282356,282356,273909,10,1591163293,9781591163300.0,\"Hisaya Nakajo, David Ury\",1997.0,花ざかりの君たちへ 1,\"Hana-Kimi, Vol. 1 (Hana-Kimi, #1)\",en-US,4.16,30403,30508,283,924,1480,4968,7426,15710,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186378l/282356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3302,13928,13928,1897725,49,765343436,9780765343440.0,Juliet Marillier,1999.0,Daughter of the Forest,\"Daughter of the Forest  (Sevenwaters, #1)\",eng,4.28,39792,43242,3186,703,1287,5510,13357,22385,https://images.gr-assets.com/books/1343589988l/13928.jpg,https://images.gr-assets.com/books/1343589988s/13928.jpg\n3303,556511,556511,997631,34,399229191,9780399229190.0,Eric Carle,1984.0,The Very Busy Spider ,The Very Busy Spider,en-US,4.19,31537,32002,558,345,1027,6083,9146,15401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348983154l/556511.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3304,37738,37738,244031,36,9991373764,9789991373770.0,Judy Blume,1978.0,Freckle Juice,Freckle Juice,eng,3.82,34579,36363,779,672,2412,10944,11224,11111,https://images.gr-assets.com/books/1295888341l/37738.jpg,https://images.gr-assets.com/books/1295888341s/37738.jpg\n3305,7155145,7155145,7421862,35,1591843162,9781591843160.0,Seth Godin,2010.0,Linchpin: Are You Indispensable?,Linchpin: Are You Indispensable?,en-US,3.87,26555,28121,1462,1014,1960,6021,9680,9446,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442610563l/7155145._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3306,34053,34053,2475078,598,517266555,9780517266560.0,Rudyard Kipling,1902.0,Just So Stories for Little Children,Just So Stories,,4.09,35708,38592,1020,431,1511,7688,13308,15654,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546075870l/34053.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3307,78508,78508,980007,24,767913736,9780767913740.0,Candice Millard,2005.0,The River of Doubt: Theodore Roosevelt's Darkest Journey,The River of Doubt: Theodore Roosevelt's Darkest Journey,en-US,4.16,30894,33114,3208,515,1018,5011,12750,13820,https://images.gr-assets.com/books/1430014768l/78508.jpg,https://images.gr-assets.com/books/1430014768s/78508.jpg\n3308,4477,4477,2710546,31,312421702,9780312421700.0,\"Atul Gawande, Susanne Kuhlmann-Krieg\",2002.0,Complications: A Surgeon's Notes on an Imperfect Science,Complications: A Surgeon's Notes on an Imperfect Science,en-US,4.23,26267,27901,1977,168,579,3800,11337,12017,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441151524l/4477._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3309,7779059,7779059,10351697,17,045146365X,9780451463650.0,Jim Butcher,2010.0,Side Jobs: Stories From The Dresden Files,\"Side Jobs: Stories from the Dresden Files (The Dresden Files, #12.5)\",eng,4.23,33738,37329,1680,69,515,5726,15346,15673,https://images.gr-assets.com/books/1269115846l/7779059.jpg,https://images.gr-assets.com/books/1269115846s/7779059.jpg\n3310,497164,497164,799260,64,374521344,9780374521350.0,\"Roland Barthes, Richard Howard\",1980.0,La chambre claire. Note sur la photographie,Camera Lucida: Reflections on Photography,,3.92,26754,28476,413,1191,2000,5810,8269,11206,https://images.gr-assets.com/books/1312018081l/497164.jpg,https://images.gr-assets.com/books/1312018081s/497164.jpg\n3311,690866,690866,747996,57,080411109X,9780804111100.0,Amy Tan,1995.0,The Hundred Secret Senses,The Hundred Secret Senses,en-US,3.98,32002,34934,1419,269,1232,8092,14830,10511,https://images.gr-assets.com/books/1327869967l/690866.jpg,https://images.gr-assets.com/books/1327869967s/690866.jpg\n3312,23638955,23638955,43243536,52,778317706,9780778317710.0,Mary Kubica,2015.0,Pretty Baby,Pretty Baby,eng,3.75,24685,30632,3196,524,1962,8622,13039,6485,https://images.gr-assets.com/books/1438274437l/23638955.jpg,https://images.gr-assets.com/books/1438274437s/23638955.jpg\n3313,2595138,2595138,3149511,68,385524943,9780385524940.0,Andrew Davidson,2008.0,The Gargoyle,The Gargoyle,eng,3.96,32699,37446,5069,1096,2464,7113,12851,13922,https://images.gr-assets.com/books/1368598513l/2595138.jpg,https://images.gr-assets.com/books/1368598513s/2595138.jpg\n3314,823,823,1610031,36,60593083,9780060593090.0,Neal Stephenson,2003.0,Quicksilver,\"Quicksilver (The Baroque Cycle, #1)\",en-US,3.92,27675,30689,1776,997,2281,5852,10667,10892,https://images.gr-assets.com/books/1377095669l/823.jpg,https://images.gr-assets.com/books/1377095669s/823.jpg\n3316,176327,176327,1142385,36,810959259,9780810959260.0,\"Michael Buckley, Peter Ferguson\",2005.0,The Fairy-Tale Detectives,\"The Fairy-Tale Detectives (The Sisters Grimm, #1)\",en-US,4.01,38655,40754,2869,896,2005,8726,13385,15742,https://images.gr-assets.com/books/1349272153l/176327.jpg,https://images.gr-assets.com/books/1349272153s/176327.jpg\n3317,149847,149847,9789407,6,552144290,9780552144290.0,\"Terry Pratchett, Stephen Briggs\",1996.0,Mort - playtext,Mort: The Play,eng,4.29,27706,27993,90,92,409,3952,10355,13185,https://images.gr-assets.com/books/1353573597l/149847.jpg,https://images.gr-assets.com/books/1353573597s/149847.jpg\n3318,6909544,6909544,7134814,27,1596435690,9781596435700.0,Caragh M. O'Brien,2010.0,Birthmarked,\"Birthmarked (Birthmarked, #1)\",en-US,3.89,37656,40821,3427,1008,2554,9200,15157,12902,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442562480l/6909544._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3319,284440,284440,909082,77,61231150,9780061231160.0,\"Derek Landy, Tom Percival\",2007.0,Skulduggery Pleasant,\"Skulduggery Pleasant (Skulduggery Pleasant, #1)\",eng,4.21,32785,38882,3119,561,1362,5927,12525,18507,https://images.gr-assets.com/books/1334279051l/284440.jpg,https://images.gr-assets.com/books/1334279051s/284440.jpg\n3320,31818,31818,1283844,41,156717204,9780156717200.0,Andy Warhol,1975.0,The Philosophy of Andy Warhol (From A to B and Back Again),The Philosophy of Andy Warhol (From A to B and Back Again),,3.77,24879,25292,370,1578,1983,5830,7217,8684,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423704668l/31818.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3321,7805,7805,1222661,94,141185260,9780141185260.0,Vladimir Nabokov,1962.0,Pale Fire,Pale Fire,eng,4.19,26377,30819,1865,610,1328,4507,9431,14943,https://images.gr-assets.com/books/1388155863l/7805.jpg,https://images.gr-assets.com/books/1388155863s/7805.jpg\n3322,89788,89788,851956,79,452285453,9780452285450.0,Tracy Chevalier,2003.0,The Lady and the Unicorn,The Lady and the Unicorn,eng,3.67,32490,35143,1607,824,2933,10941,12748,7697,https://images.gr-assets.com/books/1311281285l/89788.jpg,https://images.gr-assets.com/books/1311281285s/89788.jpg\n3323,5338,5338,17348487,132,140439056,9780140439050.0,\"Charles Dickens, Michael Slater\",1843.0,A Christmas Carol and Other Christmas Writings,A Christmas Carol and Other Christmas Writings,eng,4.13,28675,32002,578,402,1203,6014,10711,13672,https://images.gr-assets.com/books/1388952779l/5338.jpg,https://images.gr-assets.com/books/1388952779s/5338.jpg\n3324,18007533,18007533,25273867,2,385351836,9780385351840.0,B.J. Novak,2014.0,One More Thing: Stories and Other Stories,One More Thing: Stories and Other Stories,eng,3.66,28922,31333,3937,1263,2984,8478,11175,7433,https://images.gr-assets.com/books/1393786903l/18007533.jpg,https://images.gr-assets.com/books/1393786903s/18007533.jpg\n3326,5212771,5212771,5280008,38,451227190,9780451227200.0,Rachel Caine,2009.0,Carpe Corpus,\"Carpe Corpus (The Morganville Vampires, #6)\",eng,4.21,41536,43570,937,452,1381,7418,13655,20664,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214475l/5212771.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3327,16120760,16120760,23906880,56,7491433,9780007491440.0,Nathan Filer,2013.0,The Shock of the Fall,The Shock of the Fall,eng,3.79,21798,33088,3633,637,2363,8743,13049,8296,https://images.gr-assets.com/books/1356034436l/16120760.jpg,https://images.gr-assets.com/books/1356034436s/16120760.jpg\n3328,13597728,13597728,19187769,33,62220969,9780062220970.0,Madeleine Roux,2013.0,Asylum,\"Asylum (Asylum, #1)\",eng,3.64,29687,33348,4166,1417,3844,9236,9741,9110,https://images.gr-assets.com/books/1371333892l/13597728.jpg,https://images.gr-assets.com/books/1371333892s/13597728.jpg\n3329,24388326,24388326,44934568,39,385540353,9780385540350.0,Margaret Atwood,2015.0,The Heart Goes Last,The Heart Goes Last,eng,3.37,26841,32276,4411,1212,4338,12047,10766,3913,https://images.gr-assets.com/books/1493598486l/24388326.jpg,https://images.gr-assets.com/books/1493598486s/24388326.jpg\n3330,30260,30260,2346717,38,60788194,9780060788190.0,Kim Harrison,2006.0,A Fistful of Charms,\"A Fistful of Charms (The Hollows, #4)\",eng,4.28,43181,46272,1168,193,900,6612,16441,22126,https://images.gr-assets.com/books/1348805978l/30260.jpg,https://images.gr-assets.com/books/1348805978s/30260.jpg\n3331,213367,213367,2404919,27,1590521196,9781590521200.0,John Piper,1986.0,Desiring God: Meditations of a Christian Hedonist,Desiring God: Meditations of a Christian Hedonist,,4.19,25099,25962,615,723,1036,3585,7808,12810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924844l/213367.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3332,12813630,12813630,17962903,30,316213101,9780316213100.0,Holly Black,2013.0,The Coldest Girl in Coldtown,The Coldest Girl in Coldtown,eng,3.86,37682,40976,6279,1253,2891,9233,14556,13043,https://images.gr-assets.com/books/1367312471l/12813630.jpg,https://images.gr-assets.com/books/1367312471s/12813630.jpg\n3333,13079,13079,817175,42,446615129,9780446615130.0,Carl Hiaasen,2004.0,Skinny Dip,Skinny Dip,eng,3.79,29862,32615,2605,357,1700,9398,14260,6900,https://images.gr-assets.com/books/1375588741l/13079.jpg,https://images.gr-assets.com/books/1375588741s/13079.jpg\n3334,23492741,23492741,43082583,22,1451693591,9781451693590.0,Alice Hoffman,2015.0,The Marriage of Opposites,The Marriage of Opposites,eng,3.86,29179,35046,3256,1528,1858,7192,13765,10703,https://images.gr-assets.com/books/1438581390l/23492741.jpg,https://images.gr-assets.com/books/1438581390s/23492741.jpg\n3336,2295829,2295829,2302138,41,451224639,9780451224640.0,Rachel Caine,2008.0,Feast of Fools,\"Feast of Fools (The Morganville Vampires, #4)\",eng,4.17,43435,45953,1227,446,1547,8457,14841,20662,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182868l/2295829.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3337,13545075,13545075,13096117,35,1442423684,9781442423690.0,Neal Shusterman,2012.0,UnWholly,\"UnWholly (Unwind, #2)\",,4.25,33679,37355,3752,366,848,5028,13864,17249,https://images.gr-assets.com/books/1337871062l/13545075.jpg,https://images.gr-assets.com/books/1337871062s/13545075.jpg\n3338,6751,6751,2207382,26,316156116,9780316156110.0,David Foster Wallace,2005.0,Consider the Lobster,Consider the Lobster and Other Essays,eng,4.25,26551,29562,2283,248,717,3541,11853,13203,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388854217l/6751.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3339,7005865,7005865,7250253,51,1423128192,9781423128200.0,Eoin Colfer,2010.0,The Atlantis Complex,\"The Atlantis Complex (Artemis Fowl, #7)\",en-US,3.97,39307,42321,1675,636,2476,9661,14456,15092,https://images.gr-assets.com/books/1274866326l/7005865.jpg,https://images.gr-assets.com/books/1274866326s/7005865.jpg\n3340,43781,43781,2925968,54,345422406,9780345422410.0,Anne Rice,2000.0,Merrick,Merrick (The Vampire Chronicles #7),eng,3.71,32734,34850,510,738,3019,10610,11690,8793,https://images.gr-assets.com/books/1170230458l/43781.jpg,https://images.gr-assets.com/books/1170230458s/43781.jpg\n3341,18739426,18739426,26616838,21,,,Brandon Sanderson,2016.0,The Bands of Mourning,\"The Bands of Mourning (Mistborn, #6)\",eng,4.45,28866,33232,2379,42,249,2519,12186,18236,https://images.gr-assets.com/books/1450134973l/18739426.jpg,https://images.gr-assets.com/books/1450134973s/18739426.jpg\n3342,11987,11987,855563,35,679733736,9780679733740.0,\"Albert Camus, Justin O'Brien\",1942.0,Le Mythe de Sisyphe,The Myth of Sisyphus and Other Essays,eng,4.18,30221,30895,797,268,912,4970,11489,13256,https://images.gr-assets.com/books/1401656886l/11987.jpg,https://images.gr-assets.com/books/1401656886s/11987.jpg\n3343,16071745,16071745,23587857,28,345532740,9780345532750.0,Lauren Graham,2013.0,\"Someday, Someday, Maybe \",\"Someday, Someday, Maybe\",eng,3.49,30829,34830,4527,886,3434,13182,12528,4800,https://images.gr-assets.com/books/1480527588l/16071745.jpg,https://images.gr-assets.com/books/1480527588s/16071745.jpg\n3344,12204,12204,14527,64,486275507,9780486275500.0,Robert Frost,1916.0,Mountain Interval,The Road Not Taken and Other Poems,,4.27,30193,31403,275,274,742,4748,10263,15376,https://images.gr-assets.com/books/1415677882l/12204.jpg,https://images.gr-assets.com/books/1415677882s/12204.jpg\n3345,19547856,19547856,27679579,55,62348671,9780062348680.0,Becky Albertalli,2015.0,Simon vs. the Homo Sapiens Agenda,Simon vs. the Homo Sapiens Agenda,eng,4.26,53570,60327,10986,926,1573,7378,21499,28951,https://images.gr-assets.com/books/1402915678l/19547856.jpg,https://images.gr-assets.com/books/1402915678s/19547856.jpg\n3346,383206,383206,816009,253,014043478X,9780140434780.0,\"Elizabeth Gaskell, Pam Morris\",1866.0,Wives and Daughters,Wives and Daughters,eng,4.07,32029,34605,1847,552,1305,6441,13142,13165,https://images.gr-assets.com/books/1348267609l/383206.jpg,https://images.gr-assets.com/books/1348267609s/383206.jpg\n3347,12558285,12558285,17562095,22,1419704281,9781419704280.0,A.G. Howard,2013.0,Splintered,\"Splintered (Splintered, #1)\",eng,3.96,37225,41708,6562,1634,2907,7663,12796,16708,https://images.gr-assets.com/books/1340134213l/12558285.jpg,https://images.gr-assets.com/books/1340134213s/12558285.jpg\n3348,153540,153540,31274,33,395181569,9780395181560.0,Virginia Lee Burton,1942.0,The Little House,The Little House,eng,4.29,34002,34429,898,509,1094,5136,8915,18775,https://images.gr-assets.com/books/1363184334l/153540.jpg,https://images.gr-assets.com/books/1363184334s/153540.jpg\n3349,6174,6174,851110,134,684826801,9780684826810.0,\"Primo Levi, Stuart J. Woolf, Philip Roth\",1947.0,Se questo è un uomo,Survival in Auschwitz,eng,4.28,25625,32801,1182,354,802,4436,11061,16148,https://images.gr-assets.com/books/1414374949l/6174.jpg,https://images.gr-assets.com/books/1414374949s/6174.jpg\n3350,500743,500743,488848,19,1423104870,9781423104870.0,Cinda Williams Chima,2007.0,The Wizard Heir,\"The Wizard Heir (The Heir Chronicles, #2)\",en-US,4.14,33653,35076,1300,345,1130,6203,12914,14484,https://images.gr-assets.com/books/1298426467l/500743.jpg,https://images.gr-assets.com/books/1298426467s/500743.jpg\n3351,32831,32831,1167706,661,812972120,9780812972120.0,\"Jules Verne, Caleb Carr, Jordan Stump\",1874.0,L'île mystérieuse,\"The Mysterious Island (Extraordinary Voyages, #12)\",eng,4.08,26440,34387,1214,395,1377,6940,11977,13698,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388278046l/32831.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3352,321577,321577,19815,50,014029628X,9780140296280.0,Susan Vreeland,1999.0,Girl in Hyacinth Blue,Girl in Hyacinth Blue,en-US,3.72,31883,33042,1641,556,2293,10352,12602,7239,https://images.gr-assets.com/books/1364742503l/321577.jpg,https://images.gr-assets.com/books/1364742503s/321577.jpg\n3353,457762,457762,446280,50,067166154X,9780671661540.0,William Steig,1969.0,Sylvester and the Magic Pebble,Sylvester and the Magic Pebble,eng,4.14,36260,36897,1208,776,1548,6713,10631,17229,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328018633l/457762.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3354,9542439,9542439,14428801,61,184737459X,9781847374590.0,Philippa Gregory,2011.0,The Lady of the Rivers,\"The Lady of the Rivers (The Plantagenet and Tudor Novels, #1)\",eng,3.96,31744,38053,2776,444,1672,8821,14984,12132,https://images.gr-assets.com/books/1327946219l/9542439.jpg,https://images.gr-assets.com/books/1327946219s/9542439.jpg\n3355,8437667,8437667,14598314,70,525952063,9780525952060.0,Harlan Coben,2011.0,Live Wire,Live Wire (Myron Bolitar #10),eng,4.07,28849,31734,1545,235,911,6262,13361,10965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395350143l/8437667.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3356,818811,818811,2782429,31,767927567,9780767927570.0,\"Carolyn Jessop, Laura Palmer\",2007.0,Escape,Escape,en-US,3.96,28581,30543,4148,348,1322,7112,12163,9598,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442640131l/818811._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3357,15154,15154,867691,87,044653109X,9780446531090.0,David Baldacci,2006.0,The Collectors,\"The Collectors (Camel Club, #2)\",en-US,4.01,29596,32869,1417,278,1082,6907,14410,10192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166671030l/15154.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3358,841628,841628,13319085,18,330316117,9780330316120.0,Douglas Adams,1986.0,\"The Hitchhiker's Guide to the Galaxy: The Trilogy of Four (Hitchhiker's Guide, #1-4)\",The Hitchhiker's Guide to the Galaxy: A Trilogy in Four Parts,eng,4.51,27855,29642,452,220,534,2417,7287,19184,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348461082l/841628.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3359,78876,78876,968513,68,575058080,9780575058090.0,Terry Pratchett,1995.0,Maskerade,\"Maskerade (Discworld, #18; Witches #5)\",eng,4.06,34094,40060,913,99,1071,8913,16295,13682,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170961678l/78876._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3360,219205,219205,958463,57,345348656,9780345348650.0,Stephen R. Donaldson,1977.0,Lord Foul's Bane,\"Lord Foul's Bane (The Chronicles of Thomas Covenant the Unbeliever, #1)\",en-US,3.71,31771,34944,1272,2423,3066,7293,11463,10699,https://images.gr-assets.com/books/1333217655l/219205.jpg,https://images.gr-assets.com/books/1333217655s/219205.jpg\n3361,50937,50937,49725,38,684852861,9780684852870.0,\"Marcus Buckingham, Curt Coffman\",1998.0,\"First, Break All the Rules: What the World's Greatest Managers Do Differently \",\"First, Break All the Rules: What the World's Greatest Managers Do Differently\",eng,3.92,27207,27673,495,808,1521,6207,9707,9430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357545l/50937._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3362,47994,47994,583688,59,552154180,9780552154180.0,Terry Pratchett,1998.0,The Last Continent,\"The Last Continent (Discworld, #22; Rincewind #6)\",eng,3.99,32861,38285,784,218,1584,9242,14677,12564,https://images.gr-assets.com/books/1332672492l/47994.jpg,https://images.gr-assets.com/books/1332672492s/47994.jpg\n3364,205476,205476,3119231,48,60512636,9780060512640.0,\"Thornton Wilder, Donald Margulies, Tappan Wilder\",1938.0,Our Town: A Play in Three Acts,Our Town,eng,3.63,35296,36824,1231,1448,4106,10490,11312,9468,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442891231l/205476.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3365,3047848,3047848,3078639,32,61566152,9780061566160.0,Sara Shepard,2010.0,Heartless,\"Heartless (Pretty Little Liars, #7)\",eng,4.1,32754,35118,1221,414,1577,7180,10989,14958,https://images.gr-assets.com/books/1265496817l/3047848.jpg,https://images.gr-assets.com/books/1265496817s/3047848.jpg\n3366,32501,32501,1359182,97,316734950,9780316734950.0,Michael Connelly,2006.0,Echo Park,\"Echo Park (Harry Bosch, #12; Harry Bosch Universe, #14)\",eng,4.07,30066,34695,1421,101,629,6789,16322,10854,https://images.gr-assets.com/books/1168391416l/32501.jpg,https://images.gr-assets.com/books/1168391416s/32501.jpg\n3367,113138,113138,1369417,80,446522597,9780446522600.0,David Baldacci,1997.0,The Winner,The Winner,eng,4.06,27904,31429,1345,339,1212,6151,12376,11351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347754561l/113138.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3369,94319,94319,90923,49,142407380,9780142407390.0,Anthony Horowitz,2005.0,Ark Angel,\"Ark Angel (Alex Rider, #6)\",eng,4.11,33935,35573,1022,301,1344,6990,12285,14653,https://images.gr-assets.com/books/1311648941l/94319.jpg,https://images.gr-assets.com/books/1311648941s/94319.jpg\n3370,68811,68811,517524,171,3522168577,9783522168570.0,Michael Ende,1973.0,Momo,Momo,ger,4.29,28857,34528,1639,337,1003,4606,11089,17493,https://images.gr-assets.com/books/1420905611l/68811.jpg,https://images.gr-assets.com/books/1420905611s/68811.jpg\n3371,20423680,20423680,29915182,26,,,Blake Crouch,2014.0,The Last Town,\"The Last Town (Wayward Pines, #3)\",eng,4.09,29258,30206,2332,241,1023,5502,12415,11025,https://images.gr-assets.com/books/1399508172l/20423680.jpg,https://images.gr-assets.com/books/1399508172s/20423680.jpg\n3372,23009402,23009402,42576172,22,451474708,9780451474700.0,Sarah Dessen,2015.0,Saint Anything,Saint Anything,eng,4.05,35111,37819,4929,524,1357,7382,15083,13473,https://images.gr-assets.com/books/1414680105l/23009402.jpg,https://images.gr-assets.com/books/1414680105s/23009402.jpg\n3373,13320466,13320466,18526942,49,385350287,9780385350280.0,Ayana Mathis,2012.0,The Twelve Tribes of Hattie,The Twelve Tribes of Hattie,eng,3.46,28058,31252,4690,924,3567,11497,10720,4544,https://images.gr-assets.com/books/1354713124l/13320466.jpg,https://images.gr-assets.com/books/1354713124s/13320466.jpg\n3374,16434,16434,944262,49,553584502,9780553584510.0,Dean Koontz,2004.0,The Taking,The Taking,en-US,3.78,29721,31301,1487,947,2601,8146,10281,9326,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924207l/16434.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3375,226706,226706,464419,74,671729454,9780671729460.0,V.C. Andrews,1981.0,If There Be Thorns,\"If There Be Thorns (Dollanganger, #3)\",eng,3.75,33086,35445,836,710,3117,10676,10715,10227,https://images.gr-assets.com/books/1321684186l/226706.jpg,https://images.gr-assets.com/books/1321684186s/226706.jpg\n3376,228696,228696,3070357,17,399214577,9780399214580.0,\"Jane Yolen, John Schoenherr\",1987.0,Owl Moon,Owl Moon,eng,4.2,33642,33746,1732,590,1272,5541,9608,16735,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390829388l/228696.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3377,12857,12857,4356972,664,812966937,9780812966930.0,\"Fyodor Dostoyevsky, Constance Garnett, Gary Saul Morson\",1866.0, Игрок ,The Gambler,eng,3.88,21358,32540,1400,260,1483,8607,13833,8357,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348607722l/12857.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3378,13413589,13413589,15955708,20,441020011,9780441020010.0,Patricia Briggs,2013.0,Frost Burned,\"Frost Burned (Mercy Thompson, #7)\",eng,4.35,36759,48091,3077,100,529,5338,18677,23447,https://images.gr-assets.com/books/1344299919l/13413589.jpg,https://images.gr-assets.com/books/1344299919s/13413589.jpg\n3379,59145,59145,72392,650,039397166X,9780393971670.0,Honoré de Balzac,1834.0,Le Père Goriot,Père Goriot,en-US,3.82,26070,33729,1091,722,2448,8503,12543,9513,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389768126l/59145.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3380,3522419,3522419,3023538,145,61655503,9780061655500.0,\"Jo Nesbø, Don Bartlett\",2002.0,Sorgenfri,\"Nemesis (Harry Hole, #4)\",eng,3.98,31265,39109,2014,435,1304,8243,17946,11181,https://images.gr-assets.com/books/1327312660l/3522419.jpg,https://images.gr-assets.com/books/1327312660s/3522419.jpg\n3381,31426,31426,1003095,21,808595040,9780808595040.0,\"Sylvia Plath, Ted Hughes\",1981.0,The Collected Poems,The Collected Poems,,4.2,26295,28046,368,495,924,4289,9112,13226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168276210l/31426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3382,84151,84151,2980277,40,312992424,9780312992420.0,Sherrilyn Kenyon,2004.0,Night Play,\"Night Play (Dark-Hunter #5, Were-Hunter #1)\",eng,4.36,41837,44458,1368,220,805,5573,14153,23707,https://images.gr-assets.com/books/1316131575l/84151.jpg,https://images.gr-assets.com/books/1316131575s/84151.jpg\n3383,9086994,23454277,13965275,123,,9788575425770.0,Paulo Coelho,2010.0,Aleph,Aleph,por,3.37,17563,26206,2426,1854,3928,8195,7031,5198,https://images.gr-assets.com/books/1397502326l/9086994.jpg,https://images.gr-assets.com/books/1397502326s/9086994.jpg\n3384,12351649,12351649,17912072,15,,9780983212550.0,R.L. Mathewson,2011.0,Perfection,\"Perfection (Neighbor from Hell, #2)\",eng,4.16,50146,54721,2483,612,1893,8852,19987,23377,https://images.gr-assets.com/books/1406578931l/12351649.jpg,https://images.gr-assets.com/books/1406578931s/12351649.jpg\n3385,6687247,6687247,6882582,30,670021253,9780670021250.0,Andrew Ross Sorkin,2008.0,Too Big to Fail The Inside Story of How Wall Street and Washington Fought to Save the Financial System from Crisis - and Lost,Too Big to Fail: The Inside Story of How Wall Street and Washington Fought to Save the Financial System from Crisis — and Themselves,en-US,4.09,25493,27389,1142,340,991,4894,10929,10235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347504190l/6687247.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3386,1470232,1470232,1461175,45,345467531,9780345467540.0,Kristin Hannah,2006.0,Magic Hour,Magic Hour,eng,4.1,27778,31208,2343,263,920,5687,12903,11435,https://images.gr-assets.com/books/1320542057l/1470232.jpg,https://images.gr-assets.com/books/1320542057s/1470232.jpg\n3387,4796,4796,2359336,129,143039482,9780143039490.0,\"John Steinbeck, Susan Shillinglaw\",1961.0,The Winter of our Discontent,The Winter of Our Discontent,eng,3.99,28050,30997,1538,362,1389,6734,12292,10220,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197029l/4796.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3388,373755,373755,1595511,107,679732187,9780679732180.0,William Faulkner,1936.0,\"Absalom, Absalom!\",\"Absalom, Absalom!\",eng,3.96,30283,32324,1589,1222,2115,6149,10046,12792,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388474680l/373755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3389,22510983,22510983,41954714,69,141357274,9780141357270.0,\"Zoe Sugg, Siobhan Curham\",2014.0,Girl Online,\"Girl Online (Girl Online, #1)\",eng,3.77,37177,41605,5306,2206,3965,9427,11652,14355,https://images.gr-assets.com/books/1410112710l/22510983.jpg,https://images.gr-assets.com/books/1410112710s/22510983.jpg\n3390,205821,205821,1231594,34,1416940286,9781416940290.0,Carol Ryrie Brink,1935.0,Caddie Woodlawn,Caddie Woodlawn  (Caddie Woodlawn #1),eng,3.99,37689,39183,1171,708,1832,8859,13505,14279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388281233l/205821.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3392,139855,139855,276686,30,083081650X,9780830816510.0,J.I. Packer,1973.0,Knowing God,Knowing God,eng,4.31,29848,30710,659,453,826,4007,8786,16638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348545196l/139855.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3393,68396,68396,66291,37,786938250,9780786938250.0,R.A. Salvatore,1990.0,The Halfling's Gem,\"The Halfling's Gem (Forgotten Realms: Icewind Dale, #3; Legend of Drizzt, #6)\",en-US,4.15,27105,29872,305,146,901,5572,10813,12440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388973637l/68396.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3394,2177236,2177236,14592071,96,525950608,9780525950610.0,Harlan Coben,2008.0,Hold Tight,Hold Tight,en-US,3.94,30180,33433,2241,256,1173,8187,14689,9128,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433737434l/2177236._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3395,71252,71252,2647,29,1563892049,9781563892040.0,\"Neil Gaiman, Marc Hempel, Richard Case, D'Israeli, Teddy Kristiansen, Glyn Dillon, Charles Vess, Dean Ormston, Kevin Nowlan, Todd Klein, Frank McConnell\",1996.0,The Sandman: The Kindly Ones,The Kindly Ones (The Sandman #9),eng,4.59,32544,35998,926,83,291,2165,9153,24306,https://images.gr-assets.com/books/1339922887l/71252.jpg,https://images.gr-assets.com/books/1339922887s/71252.jpg\n3396,25103,25103,1009277,30,1563891700,9781563891700.0,\"Neil Gaiman, Mike Allred, Gary Amaro, Mark Buckingham, David Giordano, Tony Harris, Steve Leialoha, Vince Locke, Shea Anton Pensa, Alec Stevens, Bryan Talbot, John Watkiss, Todd Klein, Michael Zulli, Stephen King\",1995.0,The Sandman: Worlds' End,Worlds' End (The Sandman #8),eng,4.48,32362,35957,779,91,370,3255,10821,21420,https://images.gr-assets.com/books/1339922260l/25103.jpg,https://images.gr-assets.com/books/1339922260s/25103.jpg\n3397,826845,826845,910927,81,140013083,9780140013080.0,John Wyndham,1955.0,The Chrysalids,The Chrysalids,en-US,3.92,29364,33232,1523,635,1773,7445,13195,10184,https://images.gr-assets.com/books/1271095852l/826845.jpg,https://images.gr-assets.com/books/1271095852s/826845.jpg\n3399,81939,81939,1769615,44,1878424440,9781878424440.0,Miguel Ruiz,1999.0,The Mastery of Love: A Practical Guide to the Art of Relationship (Toltec Wisdom Book),The Mastery of Love: A Practical Guide to the Art of Relationship --Toltec Wisdom Book,,4.25,24162,25974,819,351,908,3909,7596,13210,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348195310l/81939.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3400,29641,29641,267229,94,99478447,9780099478450.0,\"Graham Greene, Monica Ali\",1951.0,The End of the Affair,The End of the Affair,eng,3.96,29372,34226,3089,432,1860,7434,13453,11047,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328010344l/29641.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3401,25205422,25205422,44918047,24,145161781X,9781451617820.0,Jennifer Weiner,2015.0,Who Do You Love,Who Do You Love,eng,3.74,22026,27607,2607,468,1716,8131,11470,5822,https://images.gr-assets.com/books/1432136838l/25205422.jpg,https://images.gr-assets.com/books/1432136838s/25205422.jpg\n3402,739840,739840,881085,101,067166607X,9780671666070.0,\"Felix Salten, Barbara Cooney\",1923.0,Bambi - Eine Lebensgeschichte aus dem Walde,Bambi,eng,4.1,28655,29219,468,562,1534,5772,7887,13464,https://images.gr-assets.com/books/1344401718l/739840.jpg,https://images.gr-assets.com/books/1344401718s/739840.jpg\n3403,59924,59924,425872,57,60512741,9780060512740.0,Ursula K. Le Guin,1971.0,The Lathe of Heaven,The Lathe of Heaven,en-US,4.09,29562,34168,2100,247,1093,6408,13869,12551,https://images.gr-assets.com/books/1433084322l/59924.jpg,https://images.gr-assets.com/books/1433084322s/59924.jpg\n3404,1362,1362,488198,262,140449086,9780140449080.0,\"Herodotus, Aubrey de Sélincourt, John M. Marincola\",-440.0,Ἰστορίαι,The Histories,eng,3.97,28870,31985,864,879,1766,6820,10568,11952,https://images.gr-assets.com/books/1399225547l/1362.jpg,https://images.gr-assets.com/books/1399225547s/1362.jpg\n3405,17798287,30164950,24897280,32,,,K. Bromberg,2013.0,Driven,\"Driven (Driven, #1)\",eng,4.31,41454,45074,3515,804,1464,5135,13126,24545,https://images.gr-assets.com/books/1366000080l/17798287.jpg,https://images.gr-assets.com/books/1366000080s/17798287.jpg\n3406,18402,18402,2164481,77,034549038X,9780345490380.0,Matthew Pearl,2003.0,The Dante Club,The Dante Club,en-US,3.38,31035,33728,2206,1822,4320,11905,10640,5041,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1397659377l/18402.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3407,46544,46544,2982200,86,553382616,9780553382620.0,Jean M. Auel,2002.0,The Shelters of Stone,\"The Shelters of Stone (Earth's Children, #5)\",en-US,3.8,31333,35501,1085,925,3208,9091,11187,11090,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424490852l/46544.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3408,5292853,5292853,5360280,24,044101738X,9780441017390.0,Patricia Briggs,2009.0,Hunting Ground,\"Hunting Ground (Alpha & Omega, #2)\",eng,4.27,44487,48187,1712,166,961,7228,17387,22445,https://images.gr-assets.com/books/1375461295l/5292853.jpg,https://images.gr-assets.com/books/1375461295s/5292853.jpg\n3409,5356711,5356711,5424205,117,61750441,9780061750440.0,Paulo Coelho,2008.0,O vencedor está só,The Winner Stands Alone,en-US,3.37,22229,25828,1687,1635,3782,8475,7285,4651,https://images.gr-assets.com/books/1358266380l/5356711.jpg,https://images.gr-assets.com/books/1358266380s/5356711.jpg\n3410,133430,133430,14948,41,449214192,9780449214190.0,James A. Michener,1974.0,Centennial,Centennial,en-US,4.21,31235,32598,655,221,772,5451,11560,14594,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348125094l/133430.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3411,6261522,6261522,6196751,24,61779814,9780061779820.0,Kimberly Derting,2010.0,The Body Finder,\"The Body Finder (The Body Finder, #1)\",en-US,3.96,43203,44814,3793,1159,2863,9247,14666,16879,https://images.gr-assets.com/books/1358266631l/6261522.jpg,https://images.gr-assets.com/books/1358266631s/6261522.jpg\n3412,6870,6870,31779,86,99481243,9780099481250.0,Ian McEwan,1997.0,Enduring Love,Enduring Love,eng,3.62,26390,30399,1722,1031,2795,8773,11868,5932,https://images.gr-assets.com/books/1313656531l/6870.jpg,https://images.gr-assets.com/books/1313656531s/6870.jpg\n3413,36071,36071,35982,64,684802031,9780684802040.0,\"Stephen R. Covey, A. Roger Merrill, Rebecca R. Merrill\",1993.0,\"First Things First: To Live, to Love, to Learn, to Leave a Legacy\",First Things First,eng,4.06,26813,27414,340,425,1034,5514,9840,10601,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440528321l/36071._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3414,28541,28541,1171182,55,141692499X,9781416925000.0,Anne McCaffrey,1976.0,Dragonsong ,\"Dragonsong (Harper Hall, #1)\",eng,4.24,35694,39716,1092,191,897,6460,13955,18213,https://images.gr-assets.com/books/1407659596l/28541.jpg,https://images.gr-assets.com/books/1407659596s/28541.jpg\n3415,595375,595375,274128,21,374404143,9780374404150.0,Nancy Garden,1982.0,Annie on My Mind,Annie on My Mind,eng,3.97,29278,30742,1296,1117,1773,6282,9228,12342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360021l/595375.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3416,6428887,6428887,6618328,72,61929379,9780061929370.0,Michael Crichton,2009.0,Pirate Latitudes,Pirate Latitudes,eng,3.41,27904,32497,3554,1167,4361,11875,10330,4764,https://images.gr-assets.com/books/1332304096l/6428887.jpg,https://images.gr-assets.com/books/1332304096s/6428887.jpg\n3417,328854,328854,1971553,47,375724834,9780375724830.0,Jonathan Lethem,1999.0,Motherless Brooklyn,Motherless Brooklyn,en-GB,3.91,23614,25320,2117,259,1257,5842,11198,6764,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348254729l/328854.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3418,714902,714902,853421,40,552555703,9780552555710.0,Malorie Blackman,2001.0,Noughts & Crosses,\"Noughts & Crosses (Noughts & Crosses, #1)\",en-GB,4.23,27725,33891,2446,551,1329,4542,10860,16609,https://images.gr-assets.com/books/1443903273l/714902.jpg,https://images.gr-assets.com/books/1443903273s/714902.jpg\n3419,152519,152519,330710,341,486419312,9780486419310.0,Harriet Jacobs,1861.0,Incidents in the Life of a Slave Girl Written by Herself,Incidents in the Life of a Slave Girl,eng,4.08,24744,32172,1685,430,1287,6330,11468,12657,https://images.gr-assets.com/books/1418788224l/152519.jpg,https://images.gr-assets.com/books/1418788224s/152519.jpg\n3420,8519822,8519822,13386590,45,385735359,9780385735350.0,Michael Scott,2012.0,The Enchantress,\"The Enchantress (The Secrets of the Immortal Nicholas Flamel, #6)\",eng,4.24,30171,32568,2040,338,1112,4872,10296,15950,https://images.gr-assets.com/books/1317844406l/8519822.jpg,https://images.gr-assets.com/books/1317844406s/8519822.jpg\n3421,8255917,8255917,13103688,26,1594202664,9781594202670.0,Ron Chernow,2010.0,Washington: A Life,Washington: A Life,eng,4.09,28598,30023,1414,1149,1207,4525,9990,13152,https://images.gr-assets.com/books/1348969179l/8255917.jpg,https://images.gr-assets.com/books/1348969179s/8255917.jpg\n3422,16070521,16070521,21863888,1,,,Kristen Proby,2012.0,Come Away with Me,\"Come Away with Me (With Me in Seattle, #1)\",eng,3.94,52083,52434,3106,1732,3484,10561,17245,19412,https://images.gr-assets.com/books/1350383614l/16070521.jpg,https://images.gr-assets.com/books/1350383614s/16070521.jpg\n3423,785092,785092,771090,57,60763280,9780060763280.0,T. Harv Eker,2005.0,Secrets of the Millionaire Mind: Mastering the Inner Game of Wealth,Secrets of the Millionaire Mind: Mastering the Inner Game of Wealth,,4.14,25389,26963,779,542,1154,4852,7897,12518,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347940515l/785092.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3424,12866426,12866426,17575444,18,312624697,9780312624700.0,C.C. Hunter,2012.0,\"Taken at Dusk (Shadow Falls, #3)\",\"Taken at Dusk (Shadow Falls, #3)\",eng,4.33,36683,38390,1394,299,914,4915,11772,20490,https://images.gr-assets.com/books/1320918098l/12866426.jpg,https://images.gr-assets.com/books/1320918098s/12866426.jpg\n3425,16707,16707,2045395,50,3423124172,9783423124170.0,\"Michael Chabon, Hans Hermann\",1995.0,Wonder Boys,Wonder Boys,ger,3.93,24365,29212,1664,328,1377,6459,12814,8234,https://images.gr-assets.com/books/1380670205l/16707.jpg,https://images.gr-assets.com/books/1380670205s/16707.jpg\n3427,10464963,10464963,15369956,64,307700003,9780307700000.0,Julie Otsuka,2011.0,The Buddha in the Attic,The Buddha in the Attic,eng,3.59,28149,33356,5368,968,3435,10188,12337,6428,https://images.gr-assets.com/books/1327878988l/10464963.jpg,https://images.gr-assets.com/books/1327878988s/10464963.jpg\n3428,8680,8680,1117682,38,055337933X,9780553379330.0,Tom Robbins,2000.0,Fierce Invalids Home From Hot Climates,Fierce Invalids Home from Hot Climates,en-US,4.01,22847,23623,1107,361,1244,4854,8388,8776,https://images.gr-assets.com/books/1327866336l/8680.jpg,https://images.gr-assets.com/books/1327866336s/8680.jpg\n3429,18007535,18007535,25273993,37,385538499,9780385538500.0,Jennifer McMahon,2014.0,The Winter People,The Winter People,eng,3.76,27234,31204,4671,515,1886,8907,13279,6617,https://images.gr-assets.com/books/1377582922l/18007535.jpg,https://images.gr-assets.com/books/1377582922s/18007535.jpg\n3430,8428069,8428069,13291270,29,61869708,9780061869710.0,Sara Shepard,2010.0,The Lying Game,\"The Lying Game (The Lying Game, #1)\",en-US,3.96,32296,34286,2665,804,2142,7466,11008,12866,https://images.gr-assets.com/books/1316916749l/8428069.jpg,https://images.gr-assets.com/books/1316916749s/8428069.jpg\n3431,32258,32258,1009035,88,034545894X,9780345458940.0,Tess Gerritsen,2004.0,Body Double,\"Body Double (Rizzoli & Isles, #4)\",en-US,4.16,30834,35633,1349,114,656,6159,15084,13620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177497l/32258.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3432,18143905,18143905,25539400,27,147675361X,9781476753610.0,Marina Keegan,2014.0,The Opposite of Loneliness,The Opposite of Loneliness: Essays and Stories,eng,3.82,19771,31370,3394,581,2213,8325,11334,8917,https://images.gr-assets.com/books/1401056149l/18143905.jpg,https://images.gr-assets.com/books/1401056149s/18143905.jpg\n3433,6613956,6613956,3873004,111,670021482,9780670021480.0,\"Paolo Giordano, Shaun Whiteside\",2008.0,La solitudine dei numeri primi,The Solitude of Prime Numbers,eng,3.58,19734,34894,3285,1403,3875,9883,12564,7169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442465089l/6613956._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3434,15835685,15835685,21573427,16,,2940015136290.0,Nicole  Williams,2012.0,Clash,\"Clash (Crash, #2)\",eng,4.17,40519,42747,1869,519,1537,6882,14945,18864,https://images.gr-assets.com/books/1345393364l/15835685.jpg,https://images.gr-assets.com/books/1345393364s/15835685.jpg\n3435,17349203,17349203,23686035,55,62224077,9780062224070.0,\"Neil Gaiman, Skottie Young\",2013.0,\"Fortunately, the Milk\",\"Fortunately, the Milk\",eng,4.04,30500,35367,5636,1005,1493,6261,12852,13756,https://images.gr-assets.com/books/1380963103l/17349203.jpg,https://images.gr-assets.com/books/1380963103s/17349203.jpg\n3436,20898019,20898019,41250341,21,078519021X,9780785190220.0,\"G. Willow Wilson, Adrian Alphona\",2014.0,\"Ms. Marvel, Vol. 1: No Normal\",\"Ms. Marvel, Vol. 1: No Normal\",eng,4.13,53515,55083,4137,1618,1993,8194,18951,24327,https://images.gr-assets.com/books/1413031883l/20898019.jpg,https://images.gr-assets.com/books/1413031883s/20898019.jpg\n3437,178476,178476,172416,38,425212866,9780425212870.0,Nalini Singh,2006.0,Slave to Sensation,Slave to Sensation (Psy-Changeling #1),en-US,4.12,44076,48116,2968,1149,1948,8019,15742,21258,https://images.gr-assets.com/books/1403541641l/178476.jpg,https://images.gr-assets.com/books/1403541641s/178476.jpg\n3438,18711993,18711993,26571674,5,,9786144320650.0,أثير عبدالله النشمي,2013.0,فلتغفرى,فلتغفري,ara,3.5,23407,24600,2831,2243,3330,5954,6007,7066,https://images.gr-assets.com/books/1382532147l/18711993.jpg,https://images.gr-assets.com/books/1382532147s/18711993.jpg\n3439,89716,89716,2952174,44,142403709,9780142403710.0,Gennifer Choldenko,2004.0,Al Capone Does My Shirts,\"Al Capone Does My Shirts (Al Capone at Alcatraz, #1)\",eng,3.83,33400,34472,3229,625,2199,9030,13345,9273,https://images.gr-assets.com/books/1309198452l/89716.jpg,https://images.gr-assets.com/books/1309198452s/89716.jpg\n3440,6723348,6723348,6919505,85,61558222,9780061558220.0,\"Guillermo del Toro, Chuck Hogan\",2009.0,The Fall,\"The Fall (The Strain Trilogy, #2)\",eng,3.8,25774,31255,2173,381,1805,8904,12817,7348,https://images.gr-assets.com/books/1327934155l/6723348.jpg,https://images.gr-assets.com/books/1327934155s/6723348.jpg\n3441,17378527,17378527,24170172,24,545424984,9780545424980.0,Maggie Stiefvater,2016.0,The Raven King,\"The Raven King (The Raven Cycle, #4)\",eng,4.32,42427,46455,9014,363,1331,5848,14677,24236,https://images.gr-assets.com/books/1477103790l/17378527.jpg,https://images.gr-assets.com/books/1477103790s/17378527.jpg\n3442,13152287,13152287,17885255,54,449010880,9780449010880.0,\"Pamela Druckerman, Abby Craden\",2012.0,Bringing up Bébé,Bringing Up Bébé: One American Mother Discovers the Wisdom of French Parenting,eng,3.95,18276,29616,3863,296,1121,6340,13941,7918,https://images.gr-assets.com/books/1327009243l/13152287.jpg,https://images.gr-assets.com/books/1327009243s/13152287.jpg\n3443,6538,6538,1100254,68,425192733,9780425192730.0,Patricia Cornwell,2002.0,Portrait of a Killer: Jack The Ripper - Case Closed,Portrait of a Killer: Jack the Ripper - Case Closed,eng,3.44,28506,29768,1311,1998,4123,9041,7953,6653,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388307107l/6538.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3444,448873,448873,1069505,4,60824972,9780060824980.0,Megan Whalen Turner,1996.0,The Thief,\"The Thief (The Queen's Thief, #1)\",eng,3.92,40807,43691,4973,1027,2577,9880,15787,14420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427740839l/448873.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3445,235718,235718,228316,43,758216416,9780758216410.0,Richelle Mead,2007.0,Succubus Blues,\"Succubus Blues (Georgina Kincaid, #1)\",en-GB,3.94,43289,47172,2705,1129,2819,10247,16411,16566,https://images.gr-assets.com/books/1361624810l/235718.jpg,https://images.gr-assets.com/books/1361624810s/235718.jpg\n3446,8874743,8874743,13750414,64,755379284,9780755379290.0,Sarah Winman,2011.0,When God Was a Rabbit,When God Was a Rabbit,eng,3.67,24660,28868,2744,878,2704,8143,10586,6557,https://images.gr-assets.com/books/1311417203l/8874743.jpg,https://images.gr-assets.com/books/1311417203s/8874743.jpg\n3447,18003300,18003300,25266150,10,473235501,9780473235500.0,Lang Leav,2013.0,Love & Misadventure,Love & Misadventure,eng,4.05,28782,30703,2530,1175,1920,5133,8570,13905,https://images.gr-assets.com/books/1370084153l/18003300.jpg,https://images.gr-assets.com/books/1370084153s/18003300.jpg\n3448,6515834,6515834,6707636,18,1434767957,9781434767950.0,\"Francis Chan, Danae Yankoski\",2009.0,The Forgotten God: Reversing Our Tragic Neglect of the Holy Spirit,Forgotten God: Reversing Our Tragic Neglect of the Holy Spirit,,4.17,27044,28347,1049,405,909,4725,9799,12509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438720585l/6515834._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3449,85392,85392,1086625,42,671023187,9780671023190.0,Vince Flynn,1997.0,Term Limits,Term Limits,eng,4.3,25200,27378,1081,230,560,3393,9793,13402,https://images.gr-assets.com/books/1311847654l/85392.jpg,https://images.gr-assets.com/books/1311847654s/85392.jpg\n3450,7948230,7948230,11552215,26,60594667,9780060594660.0,Tom Franklin,2009.0,\"Crooked Letter, Crooked Letter\",\"Crooked Letter, Crooked Letter\",en-US,3.82,28875,33217,4324,397,1577,8640,15590,7013,https://images.gr-assets.com/books/1292689648l/7948230.jpg,https://images.gr-assets.com/books/1292689648s/7948230.jpg\n3451,46199,46199,1208289,220,486422453,9780486422460.0,\"Rainer Maria Rilke, Reginald Snell, Franz Xaver Kappus\",1929.0,Briefe an einen jungen Dichter,Letters to a Young Poet,en-US,4.34,25066,32449,2219,273,851,3971,9818,17536,https://images.gr-assets.com/books/1321994947l/46199.jpg,https://images.gr-assets.com/books/1321994947s/46199.jpg\n3452,439275,439275,3091320,94,64472795,9780064472790.0,Meg Cabot,2001.0,Princess in the Spotlight,\"Princess in the Spotlight (The Princess Diaries, #2)\",eng,3.67,41713,45261,1292,650,3871,15760,14436,10544,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389100014l/439275._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3453,12425532,12425532,17375535,20,1250003326,9781250003320.0,Anna Banks,2012.0,Of Poseidon,\"Of Poseidon (The Syrena Legacy, #1)\",eng,4.04,38535,40540,4225,1108,2153,7443,13085,16751,https://images.gr-assets.com/books/1327879889l/12425532.jpg,https://images.gr-assets.com/books/1327879889s/12425532.jpg\n3454,84140,6567284,81269,50,312984820,9780312984820.0,Sherrilyn Kenyon,2002.0,\"Night Embrace (Dark-Hunter, #2)\",Night Embrace (Dark-Hunter #2),en-US,4.25,29663,47936,1481,271,1231,7525,16207,22702,https://images.gr-assets.com/books/1171050611l/84140.jpg,https://images.gr-assets.com/books/1171050611s/84140.jpg\n3456,80566,80566,2666214,37,61340634,9780061340640.0,Ann Patchett,2007.0,Run,Run,eng,3.53,29231,31561,4245,605,3105,11178,12264,4409,https://images.gr-assets.com/books/1327362631l/80566.jpg,https://images.gr-assets.com/books/1327362631s/80566.jpg\n3457,203220,203220,2089235,667,879234628,9780879234620.0,\"Charles Baudelaire, Richard Howard\",1857.0,Les Fleurs du mal,Les Fleurs du Mal,eng,4.26,27124,34683,899,424,1017,4770,11237,17235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388667125l/203220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3458,16169737,16169737,22016392,34,345543068,9780345543070.0,\"Janet Evanovich, Lee Goldberg\",2013.0,The Heist,\"The Heist (Fox and O'Hare, #1)\",eng,3.78,29834,35674,3431,904,2391,9694,13440,9245,https://images.gr-assets.com/books/1371429330l/16169737.jpg,https://images.gr-assets.com/books/1371429330s/16169737.jpg\n3459,49540,49540,3280025,146,192838679,9780192838670.0,\"Pierre-Ambroise Choderlos de Laclos, Douglas Parmée\",1782.0,Les Liaisons dangereuses,Les Liaisons dangereuses,eng,4.07,28428,34396,1066,521,1522,6535,12206,13612,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298425654l/49540.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3460,164531,164531,2880113,407,486410226,9780486410230.0,E. Nesbit,1906.0,The Railway Children,The Railway Children,eng,3.99,35196,39237,973,670,1777,8936,13704,14150,https://images.gr-assets.com/books/1328865877l/164531.jpg,https://images.gr-assets.com/books/1328865877s/164531.jpg\n3461,26245853,26245853,46239650,37,1455566020,9781455566020.0,David Baldacci,2016.0,The Last Mile,\"The Last Mile (Amos Decker, #2)\",eng,4.22,17326,34436,2562,303,749,4608,14200,14576,https://images.gr-assets.com/books/1450227326l/26245853.jpg,https://images.gr-assets.com/books/1450227326s/26245853.jpg\n3463,8559047,8559047,13427398,22,441020429,9780441020420.0,Ilona Andrews,2011.0,Magic Slays,\"Magic Slays (Kate Daniels, #5)\",eng,4.43,44588,48341,2285,190,510,4518,16137,26986,https://images.gr-assets.com/books/1288727226l/8559047.jpg,https://images.gr-assets.com/books/1288727226s/8559047.jpg\n3464,5128,5128,1771312,81,60595183,9780060595180.0,Aldous Huxley,1956.0,The Doors of Perception & Heaven and Hell,The Doors of Perception & Heaven and Hell,eng,3.96,24213,27581,840,250,1360,6570,10522,8879,https://images.gr-assets.com/books/1375947566l/5128.jpg,https://images.gr-assets.com/books/1375947566s/5128.jpg\n3465,315519,315519,503099,51,440174244,9780440174240.0,Irwin Shaw,1969.0,\"Rich Man, Poor Man\",\"Rich Man, Poor Man\",,4.15,28024,28770,234,183,765,5530,10300,11992,https://images.gr-assets.com/books/1353725186l/315519.jpg,https://images.gr-assets.com/books/1353725186s/315519.jpg\n3466,25817531,25817531,41344566,49,62413864,9780062413860.0,Gilly Macmillan,2015.0,What She Knew (Burnt Paper Sky),What She Knew,,3.89,25865,39097,3520,455,1769,9383,17518,9972,https://images.gr-assets.com/books/1441801604l/25817531.jpg,https://images.gr-assets.com/books/1441801604s/25817531.jpg\n3467,13495034,13495034,19042633,69,316069434,9780316069430.0,Michael Connelly,2012.0,The Black Box,\"The Black Box (Harry Bosch, #18; Harry Bosch Universe, #22)\",eng,4.09,25288,33022,2547,134,718,6169,15071,10930,https://images.gr-assets.com/books/1344765247l/13495034.jpg,https://images.gr-assets.com/books/1344765247s/13495034.jpg\n3468,5180,5180,1959357,22,425162443,9780425162450.0,Sheri Reynolds,1995.0,The Rapture of Canaan,The Rapture of Canaan,eng,3.8,30267,30649,773,498,1961,8686,11496,8008,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442420479l/5180._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3469,38169,38169,37962,49,60741872,9780060741880.0,Pat Frank,1959.0,\"Alas, Babylon\",\"Alas, Babylon\",eng,4.07,28386,31267,2480,352,1208,5846,12327,11534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440605255l/38169._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3470,184661,184661,3267366,39,743499697,9780743499700.0,Vince Flynn,2000.0,The Third Option,\"The Third Option (Mitch Rapp, #4)\",eng,4.26,24598,28774,820,122,472,3994,11317,12869,https://images.gr-assets.com/books/1314830587l/184661.jpg,https://images.gr-assets.com/books/1314830587s/184661.jpg\n3471,1238684,1238684,1384641,22,439846803,9780439846810.0,Kazu Kibuishi,2008.0,The Stonekeeper,\"The Stonekeeper (Amulet, #1)\",eng,4.15,32830,35082,3233,493,1344,6340,11302,15603,https://images.gr-assets.com/books/1327866356l/1238684.jpg,https://images.gr-assets.com/books/1327866356s/1238684.jpg\n3472,284996,284996,886814,41,374515360,9780374515360.0,Flannery O'Connor,1971.0,The Complete Stories,The Complete Stories,eng,4.44,27352,29267,1222,308,568,2593,8231,17567,https://images.gr-assets.com/books/1489956381l/284996.jpg,https://images.gr-assets.com/books/1489956381s/284996.jpg\n3473,6780439,6780439,285261,17,1847386823,9781847386820.0,L.J. Smith,1991.0,Dark Reunion,\"Dark Visions (Dark Visions, #1-3)\",eng,4.19,33023,34790,1050,545,1488,6040,9472,17245,https://images.gr-assets.com/books/1296605183l/6780439.jpg,https://images.gr-assets.com/books/1296605183s/6780439.jpg\n3474,18138189,18138189,25481154,40,425265625,9780425265630.0,Anthony  Ryan,2014.0,Tower Lord,\"Tower Lord (Raven's Shadow, #2)\",eng,4.19,23765,29269,1402,246,805,4257,11856,12105,https://images.gr-assets.com/books/1382486392l/18138189.jpg,https://images.gr-assets.com/books/1382486392s/18138189.jpg\n3475,5355136,5355136,5422627,40,312380720,9780312380720.0,Lisa Scottoline,2009.0,Look Again,Look Again,en-US,3.85,29598,34098,3979,405,1962,8968,13878,8885,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442935418l/5355136._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3476,4264,4264,2961920,76,1573226882,9781573226880.0,Nick Hornby,1992.0,Fever Pitch,Fever Pitch,eng,3.72,25374,28121,1210,786,2213,7983,10272,6867,https://images.gr-assets.com/books/1426114203l/4264.jpg,https://images.gr-assets.com/books/1426114203s/4264.jpg\n3477,31343,31343,2926330,67,8466302948,9788466302940.0,Anne Rice,1998.0,Pandora,\"Pandora (New Tales of the Vampires, #1)\",spa,3.73,33383,37086,672,823,3436,11000,11390,10437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390793244l/31343.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3478,12700306,12700306,16669362,26,345533623,9780345533620.0,Kevin Hearne,2012.0,Tricked,\"Tricked (The Iron Druid Chronicles, #4)\",eng,4.25,30578,34563,1492,110,555,4914,13914,15070,https://images.gr-assets.com/books/1324455119l/12700306.jpg,https://images.gr-assets.com/books/1324455119s/12700306.jpg\n3479,106393,106393,1241552,21,1416521690,9781416521690.0,Sister Souljah,1999.0,The Coldest Winter Ever,The Coldest Winter Ever,en-US,4.47,23737,25276,1880,311,657,2282,5552,16474,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1589833933l/106393._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3480,402843,402843,231282,57,834800799,9780834800790.0,Shunryu Suzuki,1970.0,\"Zen Mind, Beginner's Mind\",\"Zen Mind, Beginner's Mind: Informal Talks on Zen Meditation and Practice\",en-GB,4.23,24481,26327,860,263,803,4126,8593,12542,https://images.gr-assets.com/books/1392992935l/402843.jpg,https://images.gr-assets.com/books/1392992935s/402843.jpg\n3481,25489025,25489025,18449744,64,553448188,9780553448180.0,\"Han Kang, Deborah     Smith\",2007.0,채식주의자 ,The Vegetarian,eng,3.59,27242,37107,5925,995,3564,11558,14631,6359,https://images.gr-assets.com/books/1478196580l/25489025.jpg,https://images.gr-assets.com/books/1478196580s/25489025.jpg\n3482,333538,333538,17778410,409,805211063,9780805211060.0,\"Franz Kafka, Mark Harman, Regaip Minareci, Şerif Yeşilbucak\",1926.0,Das Schloß,The Castle,eng,3.97,25043,31641,1272,664,1843,6426,11624,11084,https://images.gr-assets.com/books/1331696371l/333538.jpg,https://images.gr-assets.com/books/1331696371s/333538.jpg\n3483,15985373,15985373,21528629,27,425256855,9780425256860.0,Mark  Lawrence,2013.0,Emperor of Thorns,\"Emperor of Thorns (The Broken Empire, #3)\",eng,4.27,21143,30338,1793,217,724,4070,11088,14239,https://images.gr-assets.com/books/1352546239l/15985373.jpg,https://images.gr-assets.com/books/1352546239s/15985373.jpg\n3484,5206937,5206937,6627040,167,1605977276,9781605977270.0,Jonathan Swift,1729.0,A Modest Proposal,A Modest Proposal,,4.05,31485,33704,799,418,1391,6840,12582,12473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348659670l/5206937.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3485,51299,51299,563115,28,307265773,9780307265780.0,Sam Harris,2006.0,Letter to a Christian Nation,Letter to a Christian Nation,eng,4.04,25570,27251,1476,1001,1271,4485,9462,11032,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385089375l/51299.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3486,6441509,6441509,6631450,56,006172081X,9780061720820.0,L.J. Smith,2010.0,The Vampire Diaries: The Return: Shadow Souls ,\"Shadow Souls (The Vampire Diaries: The Return, #2)\",en-US,3.79,31445,34134,1026,1588,3491,8083,8250,12722,https://images.gr-assets.com/books/1347424332l/6441509.jpg,https://images.gr-assets.com/books/1347424332s/6441509.jpg\n3487,781046,781046,767067,26,670060291,9780670060290.0,Susane Colasanti,2006.0,When It Happens,When It Happens,en-US,3.74,32443,33534,1226,1092,3139,9215,9979,10109,https://images.gr-assets.com/books/1268350521l/781046.jpg,https://images.gr-assets.com/books/1268350521s/781046.jpg\n3488,40929,40929,40514,24,375756787,9780375756790.0,Edmund Morris,1979.0,The Rise of Theodore Roosevelt ,The Rise of Theodore Roosevelt,eng,4.25,26920,28423,1339,726,866,3377,9063,14391,https://images.gr-assets.com/books/1452010007l/40929.jpg,https://images.gr-assets.com/books/1452010007s/40929.jpg\n3489,24983,24983,2439628,60,553562738,9780553562740.0,Connie Willis,1992.0,Doomsday Book,\"Doomsday Book (Oxford Time Travel, #1)\",eng,4.03,33000,36611,3789,878,1955,6508,13125,14145,https://images.gr-assets.com/books/1403972500l/24983.jpg,https://images.gr-assets.com/books/1403972500s/24983.jpg\n3490,20767918,20767918,40105061,7,1455521191,9781455521200.0,David Baldacci,2014.0,The Escape,\"The Escape (John Puller, #3)\",eng,4.14,18073,29683,2317,265,771,4660,12864,11123,https://images.gr-assets.com/books/1404163742l/20767918.jpg,https://images.gr-assets.com/books/1404163742s/20767918.jpg\n3491,20342617,20342617,28323940,18,812994523,9780812994520.0,Bryan Stevenson,2014.0,Just Mercy: A Story of Justice and Redemption,Just Mercy: A Story of Justice and Redemption,eng,4.58,27173,32008,5356,223,371,1791,7720,21903,https://images.gr-assets.com/books/1420795201l/20342617.jpg,https://images.gr-assets.com/books/1420795201s/20342617.jpg\n3492,110694,110694,418854,40,552148067,9780552148060.0,David Eddings,1991.0,The Seeress of Kell,\"The Seeress of Kell (The Malloreon, #5)\",eng,4.12,32127,34838,283,210,1192,6830,12458,14148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1569076652l/110694._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3493,34452,34452,2176901,75,446520594,9780446520590.0,Brian L. Weiss,1988.0,\"Many Lives, Many Masters\",\"Many Lives, Many Masters: The True Story of a Prominent Psychiatrist, His Young Patient, and the Past Life Therapy That Changed Both Their Lives\",eng,4.17,18956,25806,2069,514,1100,4036,8120,12036,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390099381l/34452.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3494,20881071,20881071,40221440,61,316225932,9780316225940.0,Michael Connelly,2014.0,The Burning Room,\"The Burning Room (Harry Bosch, #19; Harry Bosch Universe, #24)\",eng,4.05,18672,30377,2699,259,876,5793,13754,9695,https://images.gr-assets.com/books/1392997140l/20881071.jpg,https://images.gr-assets.com/books/1392997140s/20881071.jpg\n3495,84699,84699,81738,43,385512058,9780385512050.0,Keith Ferrazzi,2005.0,\"Never Eat Alone: And Other Secrets to Success, One Relationship at a Time\",\"Never Eat Alone: And Other Secrets to Success, One Relationship at a Time\",,3.8,25826,27137,981,922,2179,6756,8734,8546,https://images.gr-assets.com/books/1320417949l/84699.jpg,https://images.gr-assets.com/books/1320417949s/84699.jpg\n3496,6871617,6871617,7087993,24,61783188,9780061783180.0,Jeaniene Frost,2011.0,\"This Side of the Grave (Night Huntress, #5)\",\"This Side of the Grave (Night Huntress, #5)\",eng,4.28,45825,49424,2225,268,1046,7136,17054,23920,https://images.gr-assets.com/books/1282659107l/6871617.jpg,https://images.gr-assets.com/books/1282659107s/6871617.jpg\n3497,153784,153784,1375705,26,679889175,9780679889180.0,Tamora Pierce,1999.0,First Test,\"First Test (Protector of the Small, #1)\",eng,4.24,40036,42783,1086,239,1086,6998,14394,20066,https://images.gr-assets.com/books/1320478357l/153784.jpg,https://images.gr-assets.com/books/1320478357s/153784.jpg\n3498,1162022,1162022,6479100,37,670070297,9780670070300.0,Melina Marchetta,2006.0,On the Jellicoe Road,On the Jellicoe Road,eng,4.15,33398,40596,6182,1326,2088,5953,11232,19997,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1212708945l/1162022.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3499,3061,3061,6924,14,395530075,9780395530080.0,\"Kimon Nicolaides, Mamie Harmon\",1941.0,The Natural Way to Draw,The Natural Way to Draw,en-US,3.88,30880,30957,50,1709,2349,6567,7798,12534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438525559l/3061._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3500,66692,66692,215324,43,088038672X,9780880386720.0,R.A. Salvatore,1989.0,Streams of Silver (Icewind Dale #2),\"Streams of Silver (Forgotten Realms: Icewind Dale, #2; Legend of Drizzt, #5)\",eng,4.14,26237,28939,359,135,901,5503,10612,11788,https://images.gr-assets.com/books/1457322786l/66692.jpg,https://images.gr-assets.com/books/1457322786s/66692.jpg\n3501,16249,16249,507242,21,345475690,9780345475700.0,Lorna Landvik,2003.0,Angry Housewives Eating Bon Bons,Angry Housewives Eating Bon Bons,eng,3.78,28453,30443,2943,599,2157,8319,11680,7688,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200872l/16249.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3502,16052012,16052012,26323812,37,076366040X,9780763660410.0,\"Kate DiCamillo, K.G. Campbell\",2013.0,Flora and Ulysses: The Illuminated Adventures,Flora and Ulysses: The Illuminated Adventures,eng,3.87,27839,29283,4460,1243,2034,6236,9589,10181,https://images.gr-assets.com/books/1424980670l/16052012.jpg,https://images.gr-assets.com/books/1424980670s/16052012.jpg\n3503,158119,158119,3242779,94,140130866X,9781401308670.0,Cecelia Ahern,2005.0,If You Could See Me Now,If You Could See Me Now,en-US,3.84,28891,32562,1913,831,2531,8128,10555,10517,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412709926l/158119.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3504,67,67,1062798,42,61159174,9780061159180.0,Edward P. Jones,2003.0,The Known World,The Known World,eng,3.82,26550,29459,2825,831,2186,6907,11005,8530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538134660l/67._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3505,38462,38462,814207,60,141186356,9780141186350.0,James     Baldwin,1956.0,Giovanni's Room,Giovanni's Room,eng,4.21,24202,29377,2249,317,902,4250,10600,13308,https://images.gr-assets.com/books/1501485157l/38462.jpg,https://images.gr-assets.com/books/1501485157s/38462.jpg\n3506,856917,856917,3874446,9,1421500167,9781421500160.0,Yuu Watase,, 絶対彼氏 (Zettai Kareshi) 1,\"Absolute Boyfriend, Vol. 1\",eng,4.01,29385,29550,400,1197,2156,5661,6559,13977,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389466159l/856917.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3507,17333227,17333227,23863053,59,316069515,9780316069520.0,Michael Connelly,2013.0,The Gods of Guilt,\"The Gods of Guilt (Mickey Haller, #6; Harry Bosch Universe, #23)\",eng,4.09,21903,30414,2884,173,663,5443,14082,10053,https://images.gr-assets.com/books/1362529630l/17333227.jpg,https://images.gr-assets.com/books/1362529630s/17333227.jpg\n3508,12749,12749,4830806,749,142437964,9780142437960.0,\"Marcel Proust, Simon Vance, Lydia Davis\",1913.0,Du côté de chez Swann,\"Swann's Way (In Search of Lost Time, #1)\",eng,4.14,24595,31697,2371,987,1689,4576,9097,15348,https://images.gr-assets.com/books/1452956236l/12749.jpg,https://images.gr-assets.com/books/1452956236s/12749.jpg\n3509,682920,682920,8501,41,859536599,9780859536590.0,\"Don    Wood, Audrey Wood\",1984.0,\"The Little Mouse, the Red Ripe Strawberry, and the Big Hungry Bear\",\"The Little Mouse, the Red Ripe Strawberry, and the Big Hungry Bear\",en-US,4.31,30926,31762,745,365,989,4738,8078,17592,https://images.gr-assets.com/books/1413750983l/682920.jpg,https://images.gr-assets.com/books/1413750983s/682920.jpg\n3510,30245,30245,2953328,49,515136816,9780515136810.0,Laurell K. Hamilton,2003.0,\"Cerulean Sins (Anita Blake, Vampire Hunter, #11)\",\"Cerulean Sins (Anita Blake, Vampire Hunter, #11)\",en-US,3.84,40737,43242,770,1399,3806,10312,12696,15029,https://images.gr-assets.com/books/1396595697l/30245.jpg,https://images.gr-assets.com/books/1396595697s/30245.jpg\n3511,149196,149196,874452,133,553280589,9780553280590.0,\"Isabel Allende, Margaret Sayers Peden\",1987.0,Eva Luna,Eva Luna,,3.95,27534,30614,951,264,1299,7368,12519,9164,https://images.gr-assets.com/books/1478631242l/149196.jpg,https://images.gr-assets.com/books/1478631242s/149196.jpg\n3512,9634967,9634967,14247828,57,385533853,9780385533850.0,Daniel H. Wilson,2011.0,Robopocalypse,\"Robopocalypse (Robopocalypse, #1)\",eng,3.67,25914,30366,3794,950,2768,8423,11440,6785,https://images.gr-assets.com/books/1327885891l/9634967.jpg,https://images.gr-assets.com/books/1327885891s/9634967.jpg\n3513,32432,32432,2880211,67,553579754,9780553579760.0,Dean Koontz,1998.0,Fear Nothing ,\"Fear Nothing (Moonlight Bay, #1)\",eng,3.99,28875,30240,848,428,1437,6910,10752,10713,https://images.gr-assets.com/books/1168390806l/32432.jpg,https://images.gr-assets.com/books/1168390806s/32432.jpg\n3514,6547187,6547187,6579128,25,61583227,9780061583220.0,Jeaniene Frost,2010.0,First Drop of Crimson,\"First Drop of Crimson (Night Huntress World, #1)\",eng,4.15,43188,46284,2115,507,1629,8178,15975,19995,https://images.gr-assets.com/books/1255471887l/6547187.jpg,https://images.gr-assets.com/books/1255471887s/6547187.jpg\n3515,1434105,1434105,3776367,25,312377630,9780312377630.0,Janet Evanovich,2008.0,Plum Lucky ,\"Plum Lucky (Stephanie Plum, #13.5)\",en-US,3.72,39872,41623,1650,658,3789,13177,12795,11204,https://images.gr-assets.com/books/1217483848l/1434105.jpg,https://images.gr-assets.com/books/1217483848s/1434105.jpg\n3516,2334751,2334751,2080189,57,718149122,9780718149120.0,Marian Keyes,2008.0,This Charming Man,This Charming Man,eng,3.75,28095,30202,1376,907,2409,8207,10557,8122,https://images.gr-assets.com/books/1328451976l/2334751.jpg,https://images.gr-assets.com/books/1328451976s/2334751.jpg\n3517,4110198,4110198,4157374,61,1846052580,9781846052580.0,\"James Patterson, Maxine Paetro\",2009.0,The 8th Confession,\"The 8th Confession (Women's Murder Club, #8)\",,4.02,29973,35392,1427,195,1144,8134,14178,11741,https://images.gr-assets.com/books/1408315092l/4110198.jpg,https://images.gr-assets.com/books/1408315092s/4110198.jpg\n3518,51070,51070,2866062,96,60533994,9780060533990.0,Sue Townsend,1982.0,\"The Secret Diary of Adrian Mole, Aged 13 3/4\",\"The Secret Diary of Adrian Mole, Aged 13 3/4  (Adrian Mole, #1)\",eng,3.85,28952,32901,1144,542,2123,8339,12576,9321,https://images.gr-assets.com/books/1285269220l/51070.jpg,https://images.gr-assets.com/books/1285269220s/51070.jpg\n3519,31196,31196,2095259,152,1400034205,9781400034210.0,W. Somerset Maugham,1944.0,The Razor's Edge,The Razor's Edge,eng,4.18,25267,28640,2172,222,910,4563,10773,12172,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925123l/31196.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3520,47559,47559,2375439,7,399504338,9780399504330.0,Edward Gorey,1972.0,Amphigorey,\"Amphigorey (Amphigorey, #1)\",eng,4.08,28815,28941,299,1465,1671,4259,7325,14221,https://images.gr-assets.com/books/1327649608l/47559.jpg,https://images.gr-assets.com/books/1327649608s/47559.jpg\n3521,14498,14498,3899092,16,1401210074,9781401210080.0,\"Mike Carey, Glenn Fabry, Neil Gaiman\",1996.0,Neverwhere Graphic Novel,Neil Gaiman's Neverwhere,eng,4.21,29375,29935,457,259,819,4568,10893,13396,https://images.gr-assets.com/books/1309582431l/14498.jpg,https://images.gr-assets.com/books/1309582431s/14498.jpg\n3522,4447622,4447622,4495840,33,451226259,9780451226260.0,Chloe Neill,2009.0,Some Girls Bite,\"Some Girls Bite (Chicagoland Vampires, #1)\",eng,4.01,46825,49916,2986,1366,2415,9302,17940,18893,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441402786l/4447622._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3523,17143,17143,1027995,56,141185910,9780141185910.0,James     Baldwin,1953.0,Go Tell It on the Mountain,Go Tell It on the Mountain,en-GB,4.0,27845,30729,1414,480,1392,6363,12021,10473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348424233l/17143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3524,27000,27000,1918119,5,142004030,9780142004040.0,Jasper Fforde,2002.0,Lost in a Good Book,\"Lost in a Good Book (Thursday Next, #2)\",eng,4.14,37873,41906,2328,195,892,7187,18393,15239,https://images.gr-assets.com/books/1419889476l/27000.jpg,https://images.gr-assets.com/books/1419889476s/27000.jpg\n3525,16113737,16113737,22016567,59,812994868,9780812994860.0,\"Naoki Higashida, K.A. Yoshida, David Mitchell\",2005.0,自閉症の僕が跳びはねる理由～会話のできない中学生がつづる内なる心～,The Reason I Jump: The Inner Voice of a Thirteen-Year-Old Boy with Autism,eng,3.78,25504,29725,3983,735,2281,8038,10549,8122,https://images.gr-assets.com/books/1384018847l/16113737.jpg,https://images.gr-assets.com/books/1384018847s/16113737.jpg\n3526,26252859,26252859,46249638,55,148473274X,9781484732750.0,Rick Riordan,2016.0,The Hidden Oracle,\"The Hidden Oracle (The Trials of Apollo, #1)\",eng,4.33,45127,51872,6928,356,1017,6245,17944,26310,https://images.gr-assets.com/books/1449765273l/26252859.jpg,https://images.gr-assets.com/books/1449765273s/26252859.jpg\n3527,7039218,7039218,7288100,23,006178320X,9780061783200.0,Jeaniene Frost,2012.0,\"Once Burned (Night Prince, #1)\",\"Once Burned (Night Prince, #1)\",en-US,4.24,44106,47895,3510,530,1373,6839,16375,22778,https://images.gr-assets.com/books/1335738276l/7039218.jpg,https://images.gr-assets.com/books/1335738276s/7039218.jpg\n3528,24911006,24911006,44518635,20,385538731,9780385538730.0,Jon Krakauer,2015.0,Missoula: Rape and the Justice System in a College Town,Missoula: Rape and the Justice System in a College Town,eng,4.06,24270,27522,4114,407,824,4719,12286,9286,https://images.gr-assets.com/books/1491227618l/24911006.jpg,https://images.gr-assets.com/books/1491227618s/24911006.jpg\n3529,509784,509784,1407851,123,449016196,9780449016190.0,Isaac Asimov,1955.0,The End of Eternity,The End of Eternity,eng,4.21,26560,31390,1433,161,797,5075,11667,13690,https://images.gr-assets.com/books/1405527675l/509784.jpg,https://images.gr-assets.com/books/1405527675s/509784.jpg\n3530,371787,371787,968049,47,345369351,9780345369350.0,David Eddings,1989.0,Sorceress of Darshiva,\"Sorceress of Darshiva (The Malloreon, #4)\",eng,4.09,34086,35680,215,191,1265,7339,13168,13717,https://images.gr-assets.com/books/1342438281l/371787.jpg,https://images.gr-assets.com/books/1342438281s/371787.jpg\n3531,65497,65497,63547,31,553805592,9780553805600.0,Janette Oke,1979.0,\"Love Comes Softly (Love Comes Softly, #1)\",\"Love Comes Softly (Love Comes Softly, #1)\",eng,4.22,28690,30663,1023,384,1126,4953,9000,15200,https://images.gr-assets.com/books/1273177650l/65497.jpg,https://images.gr-assets.com/books/1273177650s/65497.jpg\n3532,18666047,18666047,25641726,52,804178321,9780804178330.0,Joe Abercrombie,2014.0,Half a King,\"Half a King (Shattered Sea, #1)\",eng,3.98,23911,31921,3643,263,1084,6543,15046,8985,https://images.gr-assets.com/books/1389378321l/18666047.jpg,https://images.gr-assets.com/books/1389378321s/18666047.jpg\n3533,78987,78987,1839081,67,312997140,9780312997140.0,Jeffrey Archer,1982.0,The Prodigal Daughter,\"The Prodigal Daughter (Kane & Abel, #2)\",en-US,3.92,25523,27363,602,206,1198,6943,11230,7786,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924362l/78987.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3534,12652457,12652457,17766175,25,,,Brent Weeks,2014.0,The Broken Eye,\"The Broken Eye (Lightbringer, #3)\",eng,4.46,27754,30003,1401,77,328,2288,10202,17108,https://images.gr-assets.com/books/1376583941l/12652457.jpg,https://images.gr-assets.com/books/1376583941s/12652457.jpg\n3535,53022,53022,629495,52,684807319,9780684807320.0,\"W.B. Yeats, Richard J. Finneran\",1997.0,The Collected Poems of W.B. Yeats,The Collected Poems of W.B. Yeats,en-US,4.25,28327,29532,336,316,832,4345,9662,14377,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436919797l/53022._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3536,153800,153800,1031900,23,,,Tamora Pierce,2002.0,Lady Knight ,\"Lady Knight (Protector of the Small, #4)\",,4.3,37403,40076,681,258,998,5725,12671,20424,https://images.gr-assets.com/books/1215394344l/153800.jpg,https://images.gr-assets.com/books/1215394344s/153800.jpg\n3537,627984,627984,614327,66,446577391,9780446577400.0,David Baldacci,2007.0,Stone Cold,\"Stone Cold (Camel Club, #3)\",eng,4.11,27510,30707,1372,153,701,5559,13504,10790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556721751l/627984._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3538,3831279,3831279,3876012,16,,,أحمد مراد,2007.0,ڤيرتيجو,ڤيرتيجو,ara,3.72,17001,22554,1619,676,1731,6389,8142,5616,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216693777l/3831279.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3539,1215290,1215290,1203733,13,307020711,9780307020710.0,\"Barbara Shook Hazen, Robert Lewis May, Richard Scarry\",1958.0,Rudolph the Red-Nosed Reindeer,Rudolph the Red-Nosed Reindeer,en-US,4.3,33355,33435,83,424,1122,5515,7386,18988,https://images.gr-assets.com/books/1330095176l/1215290.jpg,https://images.gr-assets.com/books/1330095176s/1215290.jpg\n3540,9555,9555,693417,80,679750533,9780679750540.0,\"Haruki Murakami, Jay Rubin, Alfred Birnbaum\",1993.0,象の消滅 [Zō no shōmetsu],The Elephant Vanishes,eng,3.88,23950,27800,1604,202,1218,7205,12169,7006,https://images.gr-assets.com/books/1391384346l/9555.jpg,https://images.gr-assets.com/books/1391384346s/9555.jpg\n3541,218427,218427,1668837,53,345475836,9780345475830.0,Frederik Pohl,1977.0,Gateway,\"Gateway (Heechee Saga, #1)\",eng,4.07,29685,31975,1138,366,1204,6245,12257,11903,https://images.gr-assets.com/books/1441698400l/218427.jpg,https://images.gr-assets.com/books/1441698400s/218427.jpg\n3542,15014,15014,2051713,55,71401946,9780071401940.0,\"Kerry Patterson, Joseph Grenny, Ron McMillan, Al Switzler, Stephen R. Covey\",2001.0,Crucial Conversations: Tools for Talking When Stakes are High,Crucial Conversations: Tools for Talking When Stakes Are High,eng,4.0,26172,28982,1635,596,1402,6003,10502,10479,https://images.gr-assets.com/books/1497193248l/15014.jpg,https://images.gr-assets.com/books/1497193248s/15014.jpg\n3543,25669,25669,3285909,36,385418493,9780385418490.0,Thomas Cahill,1995.0,How the Irish Saved Civilization: The Untold Story of Ireland's Heroic Role from the Fall of Rome to the Rise of Medieval Europe  ,How the Irish Saved Civilization,en-US,3.81,29586,30368,1299,829,2096,7678,11116,8649,https://images.gr-assets.com/books/1403191471l/25669.jpg,https://images.gr-assets.com/books/1403191471s/25669.jpg\n3545,13615414,13615414,19216563,32,393081575,9780393081570.0,Mary Roach,2013.0,Gulp: Adventures on the Alimentary Canal,Gulp: Adventures on the Alimentary Canal,eng,3.92,27523,30237,3840,640,1498,6646,12345,9108,https://images.gr-assets.com/books/1352232547l/13615414.jpg,https://images.gr-assets.com/books/1352232547s/13615414.jpg\n3546,53645,53645,52320,22,767903382,9780767903390.0,Ruth Reichl,1998.0,Tender at the Bone: Growing Up at the Table,Tender at the Bone: Growing Up at the Table,eng,4.05,27718,28891,2110,202,820,5674,12708,9487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388325309l/53645.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3547,34492,34492,583590,64,60890312,9780060890320.0,Terry Pratchett,2006.0,Wintersmith,\"Wintersmith (Discworld, #35; Tiffany Aching, #3)\",eng,4.22,33917,39304,1294,140,885,6171,15104,17004,https://images.gr-assets.com/books/1290229201l/34492.jpg,https://images.gr-assets.com/books/1290229201s/34492.jpg\n3548,22327,22327,1097376,23,743457587,9780743457580.0,William  Gibson,1956.0,The Miracle Worker,The Miracle Worker,en-US,4.21,28617,29330,312,395,931,4678,9521,13805,https://images.gr-assets.com/books/1419184250l/22327.jpg,https://images.gr-assets.com/books/1419184250s/22327.jpg\n3549,16033906,16033906,21805187,44,425267067,9780425267070.0,Maya Banks,2013.0,Fever,\"Fever (Breathless, #2)\",en-GB,4.01,39102,42617,2273,872,2601,8365,14183,16596,https://images.gr-assets.com/books/1359944376l/16033906.jpg,https://images.gr-assets.com/books/1359944376s/16033906.jpg\n3550,783291,783291,1584738,63,316677469,9780316677460.0,Alice Sebold,2007.0,The Almost Moon,The Almost Moon,eng,2.67,28299,31183,5223,5670,8233,9978,5312,1990,https://images.gr-assets.com/books/1310421579l/783291.jpg,https://images.gr-assets.com/books/1310421579s/783291.jpg\n3551,41913,41913,1142,80,307279901,9780307279900.0,P.D. James,1992.0,The Children of Men,The Children of Men,eng,3.69,28139,32197,2377,770,2727,9256,12476,6968,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271989l/41913.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3552,91953,91953,680963,364,140431950,9780140431960.0,\"Thomas Hobbes, C.B. Macpherson\",1651.0,\"Leviathan or The Matter, Forme and Power of a Common Wealth Ecclesiasticall and Civil\",Leviathan,eng,3.66,26284,28699,505,850,2688,8639,9692,6830,https://images.gr-assets.com/books/1326788684l/91953.jpg,https://images.gr-assets.com/books/1326788684s/91953.jpg\n3553,20454672,20454672,32042085,42,1455581127,9781455581120.0,Sandra Brown,2014.0,Mean Streak,Mean Streak,eng,4.04,24245,29990,3287,482,1293,5438,12221,10556,https://images.gr-assets.com/books/1399916694l/20454672.jpg,https://images.gr-assets.com/books/1399916694s/20454672.jpg\n3554,17880708,30166117,25040765,19,,,K. Bromberg,2013.0,Fueled,\"Fueled (Driven, #2)\",eng,4.51,37667,40629,2751,249,650,3261,10372,26097,https://images.gr-assets.com/books/1375489908l/17880708.jpg,https://images.gr-assets.com/books/1375489908s/17880708.jpg\n3555,2195289,2195289,2201026,18,159448306X,9781594483070.0,Sloane Crosley,2008.0,I Was Told There'd Be Cake,I Was Told There'd Be Cake,eng,3.45,29695,30641,3643,1183,4083,10453,9658,5264,https://images.gr-assets.com/books/1311282474l/2195289.jpg,https://images.gr-assets.com/books/1311282474s/2195289.jpg\n3556,17157,17157,1850916,55,307277747,9780307277750.0,Antonia Fraser,2001.0,Marie Antoinette: The Journey,Marie Antoinette: The Journey,en-US,3.91,24158,26393,1029,625,1401,6212,9588,8567,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200308l/17157.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3557,161099,161099,870671,48,006440174X,9780064401750.0,Michelle Magorian,1981.0,\"Good Night, Mr. Tom\",\"Good Night, Mr. Tom\",eng,4.28,24828,30394,1360,306,889,3984,10064,15151,https://images.gr-assets.com/books/1282757902l/161099.jpg,https://images.gr-assets.com/books/1282757902s/161099.jpg\n3558,7600924,7600924,10018976,29,1862308160,9781862308170.0,Tabitha Suzuma,2010.0,Forbidden,Forbidden,eng,4.06,37204,43227,7840,1570,2750,6745,12439,19723,https://images.gr-assets.com/books/1394239949l/7600924.jpg,https://images.gr-assets.com/books/1394239949s/7600924.jpg\n3559,18209454,18209454,25630244,16,804170703,9780804170700.0,\"Rob Thomas, Jennifer Graham\",2014.0,The Thousand-Dollar Tan Line,\"The Thousand-Dollar Tan Line (Veronica Mars, #1)\",eng,3.99,28789,32491,4051,692,1128,6442,13845,10384,https://images.gr-assets.com/books/1393100477l/18209454.jpg,https://images.gr-assets.com/books/1393100477s/18209454.jpg\n3560,703,703,911456,76,1400079497,9781400079490.0,Philip Roth,2004.0,The Plot Against America,The Plot Against America,eng,3.71,26262,29204,2482,633,2295,8049,12301,5926,https://images.gr-assets.com/books/1327711853l/703.jpg,https://images.gr-assets.com/books/1327711853s/703.jpg\n3561,144977,144977,1100660,55,786888768,9780786888760.0,J.R. Moehringer,2005.0,The Tender Bar: A Memoir,The Tender Bar,eng,3.93,23055,25277,2393,298,1446,5717,10005,7811,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348917147l/144977.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3562,201345,201345,1193907,29,441001866,9780441001870.0,Brian Jacques,1993.0,Martin the Warrior,\"Martin the Warrior (Redwall, #6)\",eng,4.13,34640,35402,405,277,997,6966,12885,14277,https://images.gr-assets.com/books/1327877608l/201345.jpg,https://images.gr-assets.com/books/1327877608s/201345.jpg\n3563,7801229,7801229,9842102,22,1423118243,9781423118240.0,Cinda Williams Chima,2010.0,The Exiled Queen,\"The Exiled Queen (Seven Realms, #2)\",en-US,4.34,33789,35709,2048,247,617,3888,12880,18077,https://images.gr-assets.com/books/1285276245l/7801229.jpg,https://images.gr-assets.com/books/1285276245s/7801229.jpg\n3564,691520,691520,1422202,54,446697338,9780446697330.0,\"Danny Sugerman, Jerry Hopkins\",1980.0,No One Here Gets Out Alive,No One Here Gets Out Alive,,3.92,28436,29569,643,468,1500,7373,10704,9524,https://images.gr-assets.com/books/1344270704l/691520.jpg,https://images.gr-assets.com/books/1344270704s/691520.jpg\n3565,17461,17461,847402,61,1416927832,9781416927840.0,\"Marguerite Henry, Wesley Dennis\",1947.0,Misty of Chincoteague,\"Misty of Chincoteague (Misty, #1)\",eng,4.04,35181,36515,860,546,1578,7953,12349,14089,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279096l/17461.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3566,14316,14316,2166883,61,812974018,9780812974010.0,David Mitchell,2006.0,Black Swan Green,Black Swan Green,,3.97,25728,29339,2806,301,1274,6167,12790,8807,https://images.gr-assets.com/books/1320562118l/14316.jpg,https://images.gr-assets.com/books/1320562118s/14316.jpg\n3567,22686,22686,2714838,44,452287146,9780452287140.0,Jane Green,2004.0,The Other Woman,The Other Woman,eng,3.68,26584,27432,677,645,2177,8843,9402,6365,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409800838l/22686.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3568,15171,15171,17077,23,965030067,9780965030070.0,Haven Kimmel,2001.0,\"A Girl Named Zippy: Growing up Small in Mooreland, Indiana \",A Girl Named Zippy,,3.79,27928,30263,3487,667,2258,8151,10858,8329,https://images.gr-assets.com/books/1334082673l/15171.jpg,https://images.gr-assets.com/books/1334082673s/15171.jpg\n3569,43325,43325,2781124,71,,9780446354740.0,Sidney Sheldon,1994.0,Nothing Lasts Forever,Nothing Lasts Forever,eng,3.82,23336,25068,624,271,1558,7388,9129,6722,https://images.gr-assets.com/books/1344265620l/43325.jpg,https://images.gr-assets.com/books/1344265620s/43325.jpg\n3570,4820,4820,461542,35,670037605,9780670037600.0,Nathaniel Philbrick,2006.0,\"Mayflower: A Story of Courage, Community, and War\",\"Mayflower: A Story of Courage, Community, and War\",eng,3.86,25752,27463,2126,547,1573,6686,10958,7699,https://images.gr-assets.com/books/1474488130l/4820.jpg,https://images.gr-assets.com/books/1474488130s/4820.jpg\n3571,435045,435045,423977,32,1416547037,9781416547040.0,Kresley Cole,2007.0,Wicked Deeds on a Winter's Night (Immortals After Dark #4),Wicked Deeds on a Winter's Night (Immortals After Dark #4),en-CA,4.37,40001,42628,1347,253,780,4949,13535,23111,https://images.gr-assets.com/books/1357614752l/435045.jpg,https://images.gr-assets.com/books/1357614752s/435045.jpg\n3572,6462,6462,1615,25,1400032539,9781400032530.0,Joseph J. Ellis,2004.0,His Excellency: George Washington,His Excellency: George Washington,eng,3.9,27178,27987,1087,1234,1327,5548,10905,8973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925509l/6462.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3573,22323,22323,2457086,54,60539828,9780060539820.0,\"William Gibson, Bruce Sterling\",1986.0,Burning Chrome and Other Stories,\"Burning Chrome (Sprawl, #0)\",eng,4.05,27359,29134,569,139,897,6278,11926,9894,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349075772l/22323.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3574,7569223,7569223,9910301,57,7311001,9780007311000.0,Lauren Weisberger,2010.0,Last Night at Chateau Marmont,Last Night at Chateau Marmont,en-GB,3.51,25002,27284,1134,994,3304,9351,8093,5542,https://images.gr-assets.com/books/1269790764l/7569223.jpg,https://images.gr-assets.com/books/1269790764s/7569223.jpg\n3575,1728744,1728744,1726198,1,1579731813,9781579731820.0,\"A.L. Singer, Walt Disney Company\",1974.0,Sleeping Beauty,\"Sleeping Beauty (Disney Princess, 5)\",eng,4.32,27469,27468,69,360,986,4330,5656,16136,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1187481320l/1728744.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3576,13638570,13638570,19251641,26,,,Rebecca Donovan,2013.0,\"Out of Breath (Breathing, #3)\",\"Out of Breath (Breathing, #3)\",en,4.32,39310,40753,3626,421,1170,5095,12521,21546,https://images.gr-assets.com/books/1367613888l/13638570.jpg,https://images.gr-assets.com/books/1367613888s/13638570.jpg\n3577,8965,8965,3124176,78,,9780316905720.0,Darren Shan,2000.0,\"The Vampire's Assistant (Cirque du Freak, #2) \",\"The Vampire's Assistant (Cirque Du Freak, #2)\",,4.12,29943,33100,1272,245,1364,6433,11227,13831,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255813244l/8965.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3578,104089,104089,1907200,53,451457765,9780451457770.0,Guy Gavriel Kay,1990.0,Tigana,Tigana,eng,4.12,30831,33262,1925,764,1566,5362,10826,14744,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348738842l/104089.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3579,8765,8765,2516574,52,307264556,9780307264560.0,Nora Ephron,2006.0,I Feel Bad About My Neck: And Other Thoughts on Being a Woman,I Feel Bad about My Neck: And Other Thoughts on Being a Woman,en-US,3.65,29749,33019,4306,788,3111,10181,11733,7206,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1558101309l/8765._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3580,78950,78950,2180439,475,1406954365,9781406954360.0,Louisa May Alcott,1871.0,\"Little Men, or Life at Plumfield with Jo's Boys\",\"Little Men (Little Women, #2)\",eng,3.84,36501,41312,1241,530,2599,11590,14805,11788,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1575357839l/78950.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3581,415,415,866393,66,143039946,9780143039940.0,Thomas Pynchon,1973.0,Gravity's Rainbow,Gravity's Rainbow,eng,4.03,24990,28232,2466,1465,1916,4066,7569,13216,https://images.gr-assets.com/books/1414969925l/415.jpg,https://images.gr-assets.com/books/1414969925s/415.jpg\n3582,173526,173526,863196,29,1576737160,9781576737160.0,\"Brennan Manning, Michael W. Smith, Rich Mullins\",1990.0,\"The Ragamuffin Gospel: Good News for the Bedraggled, Beat-Up, and Burnt Out\",\"The Ragamuffin Gospel: Good News for the Bedraggled, Beat-Up, and Burnt Out\",eng,4.23,24568,26144,1030,388,968,3819,8116,12853,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266488592l/173526.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3583,93728,93728,2728247,91,64472809,9780064472810.0,Meg Cabot,2001.0,Princess in Love,\"Princess in Love (The Princess Diaries, #3)\",eng,3.76,39306,42817,1143,582,3298,13744,13553,11640,https://images.gr-assets.com/books/1271682172l/93728.jpg,https://images.gr-assets.com/books/1271682172s/93728.jpg\n3584,429138,429138,434726,86,312954468,9780312954470.0,Wilbur Smith,1993.0,River God,\"River God (Ancient Egypt, #1)\",eng,4.2,24920,27459,1125,390,967,4230,9143,12729,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192405l/429138.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3585,140963,140963,467254,388,679743626,9780679743620.0,Willa Cather,1913.0,O Pioneers!,O Pioneers!,eng,3.84,30973,35489,2232,931,2265,8561,13588,10144,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388956566l/140963.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3586,1237300,1237300,2826418,67,805079831,9780805079840.0,Naomi Klein,2006.0,The Shock Doctrine: The Rise of Disaster Capitalism,The Shock Doctrine: The Rise of Disaster Capitalism,en-US,4.22,24111,27056,2120,448,929,3616,9230,12833,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590618l/1237300._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3587,21094993,21094993,25605044,104,7557906,9780007557900.0,\"Jonas Jonasson, Rachel Willson-Broyles\",2013.0,Analfabeten som kunde räkna,The Girl Who Saved the King of Sweden,eng,3.74,18072,29833,3240,676,2408,8053,11632,7064,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587991944l/21094993._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3588,3686,3686,994121,23,60572159,9780060572150.0,Ann Patchett,2004.0,Truth & Beauty: A Friendship,Truth and Beauty,eng,3.94,26344,28242,2655,429,1441,6400,11198,8774,https://images.gr-assets.com/books/1410140355l/3686.jpg,https://images.gr-assets.com/books/1410140355s/3686.jpg\n3589,13369678,13369678,18598990,40,,,Abbi Glines,2012.0,The Vincent Brothers,\"The Vincent Brothers (The Vincent Boys, #2)\",eng,4.13,40788,44525,2320,613,1780,7711,15321,19100,https://images.gr-assets.com/books/1330071594l/13369678.jpg,https://images.gr-assets.com/books/1330071594s/13369678.jpg\n3590,35743,35743,922581,192,99483505,9780099483500.0,Günter Grass,1959.0,Die Blechtrommel,The Tin Drum,eng,3.96,25332,30989,1317,1019,2095,5747,10436,11692,https://images.gr-assets.com/books/1327945103l/35743.jpg,https://images.gr-assets.com/books/1327945103s/35743.jpg\n3592,7544603,7544603,9823592,61,3401063480,9783401063480.0,Kerstin Gier,2010.0,Smaragdgrün,\"Smaragdgrün (Edelstein-Trilogie, #3)\",ger,4.2,22620,47351,4532,352,1629,7539,16432,21399,https://images.gr-assets.com/books/1345808677l/7544603.jpg,https://images.gr-assets.com/books/1345808677s/7544603.jpg\n3593,248484,248484,2081992,30,1599900513,9781599900510.0,\"Shannon Hale, James Noel Smith\",2007.0,Book of a Thousand Days,Book of a Thousand Days,en-US,3.95,40060,42095,5637,492,2059,9444,17009,13091,https://images.gr-assets.com/books/1362875998l/248484.jpg,https://images.gr-assets.com/books/1362875998s/248484.jpg\n3594,194366,194366,2445338,680,192123173,9780192123180.0,Arthur Conan Doyle,1905.0,The Return of Sherlock Holmes,The Return of Sherlock Holmes,eng,4.3,31572,37400,961,158,549,5101,13619,17973,https://images.gr-assets.com/books/1374680848l/194366.jpg,https://images.gr-assets.com/books/1374680848s/194366.jpg\n3595,23522,23522,2625557,111,316341517,9780316341520.0,\"Edith Hamilton, Steele Savage\",1942.0,Mythology,Mythology: Timeless Tales of Gods and Heroes,en-US,3.98,30804,35584,1658,568,1657,7703,13515,12141,https://images.gr-assets.com/books/1305000423l/23522.jpg,https://images.gr-assets.com/books/1305000423s/23522.jpg\n3596,401679,401679,731703,18,670059838,9780670059840.0,Anna Dewdney,2005.0,\"Llama, Llama Red Pajama\",Llama Llama Red Pajama,,4.27,31129,31456,1007,431,1097,4673,8486,16769,https://images.gr-assets.com/books/1309211387l/401679.jpg,https://images.gr-assets.com/books/1309211387s/401679.jpg\n3597,23577,23577,344426,31,452285216,9780452285220.0,Al Franken,2003.0,Lies and the Lying Liars Who Tell Them: A Fair and Balanced Look at the Right,Lies & the Lying Liars Who Tell Them: A Fair & Balanced Look at the Right,en-US,3.81,24071,26255,827,651,1466,6950,10385,6803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438778188l/23577.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3598,597,597,2226163,25,743264460,9780743264460.0,Chuck Klosterman,2005.0,Killing Yourself to Live: 85% of a True Story,Killing Yourself to Live: 85% of a True Story,en-US,3.85,23015,23614,1108,457,1414,5826,9442,6475,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1523544180l/597._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3599,26827675,26827675,46857936,12,110188696X,9781101886960.0,\"Leah Remini, Rebecca Paley\",2015.0,Troublemaker: Surviving Hollywood and Scientology,Troublemaker: Surviving Hollywood and Scientology,eng,3.98,25172,31771,3803,600,1169,6455,13433,10114,https://images.gr-assets.com/books/1491248986l/26827675.jpg,https://images.gr-assets.com/books/1491248986s/26827675.jpg\n3600,9589,9589,1683551,76,425161293,9780425161300.0,Kurt Vonnegut Jr.,1990.0,Hocus Pocus,Hocus Pocus,,3.81,23046,25483,845,201,1290,7373,10818,5801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391684344l/9589.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3601,55398,55398,836472,39,765348810,9780765348810.0,Steven Erikson,2004.0,House of Chains,\"House of Chains (The Malazan Book of the Fallen, #4)\",eng,4.32,25023,27910,758,174,528,3188,10383,13637,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1548490548l/55398._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3602,6662883,6662883,6857668,13,785129219,9780785129220.0,\"Eric Shanower, Skottie Young, L. Frank Baum\",2010.0,Oz: The Wonderful Wizard of Oz,Oz: The Wonderful Wizard of Oz,eng,4.08,24529,24970,501,616,1137,4654,7736,10827,https://images.gr-assets.com/books/1336571208l/6662883.jpg,https://images.gr-assets.com/books/1336571208s/6662883.jpg\n3603,6667514,6667514,6862414,30,805091742,9780805091750.0,Atul Gawande,2009.0,The Checklist Manifesto: How to Get Things Right,The Checklist Manifesto: How to Get Things Right,,4.02,23778,28234,2701,282,1164,5714,11489,9585,https://images.gr-assets.com/books/1312061594l/6667514.jpg,https://images.gr-assets.com/books/1312061594s/6667514.jpg\n3604,682761,682761,239601,31,068817776X,9780688177770.0,\"Edith Hahn Beer, Susan Dworkin, Susan Sarandon, Julia Ormond, Rory Kennedy\",1999.0,The Nazi Officer's Wife: How One Jewish Woman Survived The Holocaust,The Nazi Officer's Wife: How One Jewish Woman Survived the Holocaust,eng,4.14,22207,29275,2239,365,734,4544,12323,11309,https://images.gr-assets.com/books/1177117840l/682761.jpg,https://images.gr-assets.com/books/1177117840s/682761.jpg\n3606,6361871,6361871,6548987,7,61658197,9780061658200.0,Ree Drummond,2008.0,The Pioneer Woman Cooks: Recipes from an Accidental Ranch Wife,The Pioneer Woman Cooks: Recipes from an Accidental Country Girl,,4.18,28720,29107,777,904,1104,4141,8603,14355,https://images.gr-assets.com/books/1366775743l/6361871.jpg,https://images.gr-assets.com/books/1366775743s/6361871.jpg\n3607,13644055,13644055,19260000,32,1622662644,9781622662650.0,Jennifer L. Armentrout,2014.0,Opposition,\"Opposition (Lux, #5)\",eng,4.43,40399,47980,5724,327,1049,4856,13051,28697,https://images.gr-assets.com/books/1398694101l/13644055.jpg,https://images.gr-assets.com/books/1398694101s/13644055.jpg\n3608,30271,30271,2963636,34,515139750,9780515139750.0,Laurell K. Hamilton,2004.0,\"Incubus Dreams (Anita Blake, Vampire Hunter, #12)\",\"Incubus Dreams (Anita Blake, Vampire Hunter, #12)\",eng,3.78,39200,41654,891,1901,4171,9739,11320,14523,https://images.gr-assets.com/books/1362831466l/30271.jpg,https://images.gr-assets.com/books/1362831466s/30271.jpg\n3609,22435,22435,23464,55,965900584,9780965900580.0,Brian Greene,2003.0,\"The Fabric of the Cosmos: Space, Time and the Texture of Reality\",\"The Fabric of the Cosmos: Space, Time, and the Texture of Reality\",eng,4.11,24060,26155,794,489,806,4273,10366,10221,https://images.gr-assets.com/books/1435242004l/22435.jpg,https://images.gr-assets.com/books/1435242004s/22435.jpg\n3610,31099,31099,1177386,45,767912241,9780767912240.0,Jane Green,2001.0,Babyville,Babyville,en-US,3.61,27650,28323,559,770,2576,9745,9171,6061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264317l/31099.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3611,6202318,6202318,6382800,44,441017835,9780441017840.0,Charlaine Harris,2009.0,A Touch of Dead,\"A Touch of Dead (Sookie Stackhouse, #4.1, #4.3, #5.1, #7.1, #8.1)\",eng,3.82,36102,41598,1852,484,2859,12470,13658,12127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390540031l/6202318.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3612,380975,380975,2696002,54,449000664,9780449000660.0,Sue Grafton,1994.0,K is for Killer,\"K is for Killer (Kinsey Millhone, #11)\",,3.98,30752,32701,525,195,908,8494,12974,10130,https://images.gr-assets.com/books/1315138307l/380975.jpg,https://images.gr-assets.com/books/1315138307s/380975.jpg\n3613,11507,11507,924688,64,1400031044,9781400031050.0,Chaim Potok,1972.0,My Name Is Asher Lev,My Name Is Asher Lev,eng,4.19,29273,30833,2300,306,987,4736,11453,13351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385056726l/11507.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3614,27528,27528,534981,41,078622469X,9780786224690.0,\"Tim LaHaye, Jerry B. Jenkins\",1997.0,Nicolae: The Rise of Antichrist,\"Nicolae (Left Behind, #3)\",en-US,3.95,27152,29643,618,733,1788,6577,9696,10849,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433068715l/27528.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3615,15793184,15793184,21515148,41,1250014522,9781250014530.0,Julie Kibler,2012.0,Calling Me Home,Calling Me Home,eng,4.21,24070,27182,4045,267,760,3846,10477,11832,https://images.gr-assets.com/books/1359803797l/15793184.jpg,https://images.gr-assets.com/books/1359803797s/15793184.jpg\n3616,6289920,6289920,6474277,44,451228219,9780451228220.0,J.R. Ward,2009.0,Covet,\"Covet (Fallen Angels, #1)\",eng,3.89,38911,41959,2500,1072,2853,9764,14017,14253,https://images.gr-assets.com/books/1373165689l/6289920.jpg,https://images.gr-assets.com/books/1373165689s/6289920.jpg\n3617,6600137,6600137,6793984,21,1599903423,9781599903420.0,Carrie Jones,2010.0,Captivate,\"Captivate (Need, #2)\",eng,3.94,36772,37464,1470,846,2550,8641,11367,14060,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893132l/6600137._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3618,4961048,4961048,5026857,22,1439102252,9781439102250.0,Carrie Fisher,2008.0,Wishful Drinking,Wishful Drinking,eng,3.71,29934,35641,4526,842,3066,10365,12828,8540,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347698159l/4961048.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3619,21717,21717,2479325,72,385339461,9780385339470.0,Karin Slaughter,2006.0,Triptych,\"Triptych (Will Trent, #1)\",en-US,4.14,29406,33730,1689,442,888,5483,13652,13265,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442531921l/21717._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3620,300225,300225,291389,83,1568650949,9781568650940.0,Sidney Sheldon,1977.0,Bloodline,Bloodline,,3.79,23726,25295,585,332,1670,7491,9262,6540,https://images.gr-assets.com/books/1298570618l/300225.jpg,https://images.gr-assets.com/books/1298570618s/300225.jpg\n3621,352921,352921,343141,55,312352565,9780312352560.0,Louise Penny,2007.0,A Fatal Grace,\"A Fatal Grace (Chief Inspector Armand Gamache, #2)\",en-US,4.11,27437,34910,3321,179,698,5972,16372,11689,https://images.gr-assets.com/books/1327918653l/352921.jpg,https://images.gr-assets.com/books/1327918653s/352921.jpg\n3622,7156505,7156505,7162888,56,316036277,9780316036280.0,\"James Patterson, Maxine Paetro\",2010.0,The 9th Judgment,\"The 9th Judgment  (Women's Murder Club, #9)\",eng,4.08,28593,34516,1531,188,982,7069,14041,12236,https://images.gr-assets.com/books/1336275493l/7156505.jpg,https://images.gr-assets.com/books/1336275493s/7156505.jpg\n3623,13353667,13353667,21754877,66,1846058295,9781846058300.0,\"James Patterson, Michael Ledwidge\",2012.0,Zoo,Zoo,en-GB,3.43,24768,31467,4463,2055,4334,9544,9090,6444,https://images.gr-assets.com/books/1355175463l/13353667.jpg,https://images.gr-assets.com/books/1355175463s/13353667.jpg\n3624,9465845,9465845,14279652,12,545290597,9780545290590.0,\"Rick Riordan, Gordon Korman, Peter Lerangis, Jude Watson\",2011.0,Vespers Rising,\"Vespers Rising (The 39 Clues, #11)\",eng,4.12,28203,29274,556,530,1316,5871,7924,13633,https://images.gr-assets.com/books/1357211079l/9465845.jpg,https://images.gr-assets.com/books/1357211079s/9465845.jpg\n3625,29501,29501,2399497,32,393327655,9780393327660.0,Sam Harris,2004.0,\"The End of Faith: Religion, Terror, and the Future of Reason\",\"The End of Faith: Religion, Terror, and the Future of Reason\",en-US,3.93,24578,26202,1410,1059,1556,4959,9273,9355,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1408542906l/29501.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3626,1902241,1902241,1903936,36,805076689,9780805076680.0,Mary E. Pearson,2008.0,The Adoration of Jenna Fox,\"The Adoration of Jenna Fox (Jenna Fox Chronicles, #1)\",eng,3.7,36754,40079,4445,1272,3440,11358,14053,9956,https://images.gr-assets.com/books/1388715600l/1902241.jpg,https://images.gr-assets.com/books/1388715600s/1902241.jpg\n3628,24812,24812,25599,14,740748475,9780740748480.0,Bill Watterson,2005.0,The Complete Calvin and Hobbes,The Complete Calvin and Hobbes,eng,4.82,28900,29968,861,120,154,693,3117,25884,https://images.gr-assets.com/books/1473064526l/24812.jpg,https://images.gr-assets.com/books/1473064526s/24812.jpg\n3629,23686,23686,4057187,6,1569319626,9781569319630.0,Rumiko Takahashi,1988.0,\"Ranma ½, Volume 1\",\"Ranma ½, Vol. 1 (Ranma ½ (US 2nd), #1)\",eng,4.15,26303,26603,259,545,1241,4803,7085,12929,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349047176l/23686.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3630,2815590,2815590,2841515,51,61470856,9780061470850.0,Ron Rash,2008.0,Serena,Serena,eng,3.52,25082,29211,3857,1154,3319,9003,10657,5078,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347430224l/2815590.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3631,94799,94799,1484198,28,038549565X,9780385495650.0,Hampton Sides,2001.0,Ghost Soldiers: The Epic Account of World War II's Greatest Rescue Mission,Ghost Soldiers: The Epic Account of World War II's Greatest Rescue Mission,,4.17,23873,24785,1134,343,696,3893,9263,10590,https://images.gr-assets.com/books/1320454587l/94799.jpg,https://images.gr-assets.com/books/1320454587s/94799.jpg\n3632,12007,12007,1494156,37,185723135X,9781857231360.0,Iain M. Banks,1990.0,Use of Weapons,\"Use of Weapons (Culture, #3)\",en-GB,4.18,26350,29256,1242,206,961,4641,10884,12564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587400756l/12007.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3633,17267122,18775257,23876664,32,,,Gail McHugh,2013.0,Pulse,\"Pulse (Collide, #2)\",eng,4.29,32128,40760,3093,524,1352,5374,12151,21359,https://images.gr-assets.com/books/1369753154l/17267122.jpg,https://images.gr-assets.com/books/1369753154s/17267122.jpg\n3634,115076,115076,3000860,34,452287898,9780452287890.0,Marisa de los Santos,2005.0,Love Walked In,Love Walked In,eng,3.69,28712,29698,4084,710,2525,8669,11047,6747,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442893276l/115076._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3635,92143,92143,88871,14,188896314X,9781888963140.0,Jeff Smith,1991.0,Bone: The Complete Cartoon Epic in One Volume,Bone: The Complete Edition,eng,4.42,27721,28263,1301,262,673,2958,7549,16821,https://images.gr-assets.com/books/1483068004l/92143.jpg,https://images.gr-assets.com/books/1483068004s/92143.jpg\n3636,2479827,2479827,2487028,22,375846158,9780375846150.0,Christopher Paolini,2008.0,\"Eragon, Eldest & Brisingr (Inheritance, #1-3)\",\"Eragon, Eldest & Brisingr (Inheritance, #1-3)\",eng,4.2,25623,27681,550,628,1220,4138,7801,13894,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348466270l/2479827.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3637,5941233,5941233,6113733,15,1416983082,9781416983090.0,Christopher Pike,1998.0,Thirst No. 1,\"Thirst No. 1: The Last Vampire, Black Blood, and Red Dice (Thirst, #1)\",en-US,3.82,30154,30841,1586,2004,2842,6265,7401,12329,https://images.gr-assets.com/books/1327887604l/5941233.jpg,https://images.gr-assets.com/books/1327887604s/5941233.jpg\n3638,11741,11741,1056302,58,312424094,9780312424090.0,Marilynne Robinson,1980.0,Housekeeping,Housekeeping,en-US,3.82,28416,30569,4061,958,2798,6994,9860,9959,https://images.gr-assets.com/books/1327882949l/11741.jpg,https://images.gr-assets.com/books/1327882949s/11741.jpg\n3639,511614,511614,1703703,89,760704066,9780760704070.0,\"Dodie Smith, Michael Dooling\",1956.0,The Hundred and One Dalmatians,\"The 101 Dalmatians (The Hundred and One Dalmatians, #1)\",eng,4.11,27717,29311,634,326,1327,6086,8652,12920,https://images.gr-assets.com/books/1387310637l/511614.jpg,https://images.gr-assets.com/books/1387310637s/511614.jpg\n3640,119389,119389,291433,83,6174426,9780006174420.0,Sidney Sheldon,1987.0,Windmills of the Gods,Windmills of the Gods,en-GB,3.82,23333,24637,502,265,1587,7160,9003,6622,https://images.gr-assets.com/books/1405239745l/119389.jpg,https://images.gr-assets.com/books/1405239745s/119389.jpg\n3641,747746,747746,1650517,31,1416556052,9781416556050.0,F. Scott Fitzgerald,1922.0,The Curious Case of Benjamin Button,The Curious Case of Benjamin Button,en-GB,3.53,30313,34715,2887,591,3578,13074,11805,5667,https://images.gr-assets.com/books/1331235364l/747746.jpg,https://images.gr-assets.com/books/1331235364s/747746.jpg\n3642,38262,38262,3214982,641,1853260738,9781853260740.0,Daniel Defoe,1722.0,The Fortunes and Misfortunes of the Famous Moll Flanders,Moll Flanders,eng,3.5,30379,34246,1187,1351,4068,11525,10738,6564,https://images.gr-assets.com/books/1338130955l/38262.jpg,https://images.gr-assets.com/books/1338130955s/38262.jpg\n3643,175675,175675,551195,105,812978188,9780812978190.0,E.L. Doctorow,1974.0,Ragtime,Ragtime,eng,3.88,26815,30434,1840,582,1706,7341,12086,8719,https://images.gr-assets.com/books/1320531790l/175675.jpg,https://images.gr-assets.com/books/1320531790s/175675.jpg\n3644,35921,35921,965345,37,1416509372,9781416509370.0,David Weber,1992.0,On Basilisk Station ,\"On Basilisk Station (Honor Harrington, #1)\",eng,4.11,28970,33182,1521,552,1281,5669,12074,13606,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390456253l/35921.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3645,3272165,3272165,3308349,50,7240198,9780007240200.0,Ben Goldacre,2008.0,\"Bad Science: Quacks, Hacks, and Big Pharma Flacks\",Bad Science,eng,4.07,22692,27021,1433,589,1188,4439,10259,10546,https://images.gr-assets.com/books/1327251503l/3272165.jpg,https://images.gr-assets.com/books/1327251503s/3272165.jpg\n3646,80642,80642,1824603,33,143036610,9780143036620.0,Ruth Reichl,2005.0,Garlic and Sapphires: The Secret Life of a Critic in Disguise,Garlic and Sapphires: The Secret Life of a Critic in Disguise,eng,3.92,26542,27906,3110,207,1123,6742,12330,7504,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436980266l/80642._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3647,6891433,23355220,7112263,117,,9788203195520.0,Jo Nesbø,2009.0,\"Panserhjerte (Harry Hole, #8)\",\"Panserhjerte (Harry Hole, #8)\",nor,4.08,10991,30903,2370,227,799,5498,14278,10101,https://images.gr-assets.com/books/1408635770l/6891433.jpg,https://images.gr-assets.com/books/1408635770s/6891433.jpg\n3648,24094,24094,1090193,34,1416903445,9781416903440.0,Tamora Pierce,1993.0,\"Wolf-Speaker (Immortals, #2)\",\"Wolf-Speaker (Immortals, #2)\",eng,4.21,37448,40639,705,206,1043,7054,13842,18494,https://images.gr-assets.com/books/1495451734l/24094.jpg,https://images.gr-assets.com/books/1495451734s/24094.jpg\n3650,6748,6748,574,46,316925284,9780316925280.0,David Foster Wallace,1996.0,A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments,A Supposedly Fun Thing I'll Never Do Again:  Essays and Arguments,en-GB,4.28,23272,26763,2098,266,656,3045,10238,12558,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438206388l/6748._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3651,98413,98413,2346477,20,1421501082,9781421501090.0,Ai Yazawa,2000.0,NANA―ナナ― 1,\"Nana, Vol. 1 (Nana, #1)\",en-US,4.21,28627,28853,377,915,1421,4105,6771,15641,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388701565l/98413.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3652,298567,298567,3496896,79,60766204,9780060766210.0,\"Joseph Delaney, Patrick  Arrasmith\",2004.0,\"The Spook's Apprentice (The Last Apprentice / Wardstone Chronicles, #1)\",\"Revenge of the Witch (The Last Apprentice / Wardstone Chronicles, #1)\",eng,3.97,27305,33913,2705,512,1631,7713,12636,11421,https://images.gr-assets.com/books/1381497933l/298567.jpg,https://images.gr-assets.com/books/1381497933s/298567.jpg\n3653,32257,32257,2130353,82,553815024,9780553815020.0,Tess Gerritsen,2003.0,The Sinner,\"The Sinner (Rizzoli & Isles, #3)\",eng,4.12,28283,33396,1316,110,627,6298,14314,12047,https://images.gr-assets.com/books/1277923817l/32257.jpg,https://images.gr-assets.com/books/1277923817s/32257.jpg\n3654,6250169,6250169,6432996,64,61161705,9780061161700.0,Terry Pratchett,2009.0,Unseen Academicals,\"Unseen Academicals (Discworld, #37; Rincewind #8)\",eng,3.97,30330,36127,1610,251,1536,8519,14401,11420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388348045l/6250169.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3655,11071466,11071466,15992791,30,1416990674,9781416990670.0,Morgan Matson,2012.0,Second Chance Summer,Second Chance Summer,eng,4.16,31983,34910,4483,478,1343,5767,11944,15378,https://images.gr-assets.com/books/1337189920l/11071466.jpg,https://images.gr-assets.com/books/1337189920s/11071466.jpg\n3656,381704,381704,98,61,1401359604,9781401359610.0,Plum Sykes,2004.0,Bergdorf Blondes,Bergdorf Blondes,en-US,3.26,23795,25822,1267,2020,4428,8669,6144,4561,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441219737l/381704.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3657,17162,17162,1122617,66,375829873,9780375829870.0,Robert Cormier,1974.0,The Chocolate War,\"The Chocolate War (Chocolate War, #1)\",eng,3.48,31633,33735,2583,1877,4015,10535,10799,6509,https://images.gr-assets.com/books/1333120554l/17162.jpg,https://images.gr-assets.com/books/1333120554s/17162.jpg\n3658,14118,14118,16201,7,736421971,9780736421970.0,\"Teddy Slater, Ron Dias, Ric González\",1991.0,Beauty and the Beast (Little Golden Book),Beauty and the Beast (Disney),,4.4,26454,26524,110,312,756,3486,5370,16600,https://images.gr-assets.com/books/1395619448l/14118.jpg,https://images.gr-assets.com/books/1395619448s/14118.jpg\n3659,22836957,22836957,1026225,67,125006662X,9781250066630.0,Michael Punke,2002.0,The Revenant,The Revenant,,3.92,19289,28741,3162,238,1142,6638,13449,7274,https://images.gr-assets.com/books/1409498796l/22836957.jpg,https://images.gr-assets.com/books/1409498796s/22836957.jpg\n3660,25104,25104,2021847,32,1563892871,9781563892880.0,\"Neil Gaiman, Michael Zulli, Jon J. Muth, Charles Vess, Mikal Gilmore\",1996.0,The Sandman: The Wake,The Wake (The Sandman #10),eng,4.53,32360,35466,849,144,361,2718,9582,22661,https://images.gr-assets.com/books/1339922545l/25104.jpg,https://images.gr-assets.com/books/1339922545s/25104.jpg\n3661,2615,2615,1468535,32,60521996,9780060522000.0,Clayton M. Christensen,1997.0,The Innovator's Dilemma: The Revolutionary Book that Will Change the Way You Do Business (Collins Business Essentials),The Innovator's Dilemma: The Revolutionary Book that Will Change the Way You Do Business (Collins Business Essentials),,4.0,21997,24443,681,837,1281,4400,8442,9483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347654027l/2615.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3662,765281,765281,751354,6,030700113X,9780307001140.0,\"Teddy Slater, Bill Langley, Ron Dias, Walt Disney Company\",1940.0,Lady and the Tramp (Little Golden Book),Lady and the Tramp,eng,4.36,28011,28017,62,288,802,4210,6044,16673,https://images.gr-assets.com/books/1420795364l/765281.jpg,https://images.gr-assets.com/books/1420795364s/765281.jpg\n3663,153795,153795,1142883,25,,,Tamora Pierce,2001.0,Squire,\"Squire (Protector of the Small, #3)\",eng,4.27,37110,39934,614,214,960,6132,13178,19450,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215394320l/153795.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3664,1821571,1821571,2066979,49,1406309354,9781406309360.0,Anthony Horowitz,2007.0,Snakehead,\"Snakehead (Alex Rider, #7)\",eng,4.15,32743,34398,853,321,1209,6211,11862,14795,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349007138l/1821571.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3665,10560331,10560331,15467094,33,1423147947,9781423147950.0,Ally Carter,2012.0,\"Out of Sight, Out of Time\",\"Out of Sight, Out of Time (Gallagher Girls, #5)\",eng,4.35,39918,41849,2296,552,959,4904,12333,23101,https://images.gr-assets.com/books/1314135923l/10560331.jpg,https://images.gr-assets.com/books/1314135923s/10560331.jpg\n3666,15778138,15778138,21491232,19,,,Abbi Glines,2012.0,Just for Now,\"Just for Now (Sea Breeze, #4)\",eng,4.25,39625,42132,1942,335,1055,6072,14936,19734,https://images.gr-assets.com/books/1348461168l/15778138.jpg,https://images.gr-assets.com/books/1348461168s/15778138.jpg\n3667,17286958,17286958,24243170,22,805098542,9780805098550.0,\"Bill O'Reilly, Martin Dugard\",2013.0,Killing Jesus: A History ,Killing Jesus: A History,eng,3.89,18107,24754,2718,822,1497,5368,8916,8151,https://images.gr-assets.com/books/1361640009l/17286958.jpg,https://images.gr-assets.com/books/1361640009s/17286958.jpg\n3668,183822,183822,868206,64,60580674,9780060580670.0,James Rollins,2004.0,Sandstorm,\"Sandstorm (Sigma Force, #1)\",eng,3.94,29665,32954,1398,509,1651,7552,12741,10501,https://images.gr-assets.com/books/1305960920l/183822.jpg,https://images.gr-assets.com/books/1305960920s/183822.jpg\n3669,173673,173673,167753,65,670869759,9780670869760.0,Foundation for Inner Peace,1975.0,A Course in Miracles,A Course in Miracles,,4.17,17015,22780,425,751,1148,3489,5445,11947,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172417770l/173673.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3670,18656030,18656030,26109318,27,031621762X,9780316217620.0,James S.A. Corey,2014.0,Cibola Burn,\"Cibola Burn (The Expanse, #4)\",eng,4.12,21551,28995,1831,125,658,4845,13412,9955,https://images.gr-assets.com/books/1405023040l/18656030.jpg,https://images.gr-assets.com/books/1405023040s/18656030.jpg\n3671,353814,353814,1832566,49,751531189,9780751531180.0,Nelson DeMille,1988.0,The Charm School,The Charm School,en-GB,4.26,25706,27577,1086,175,632,4014,9884,12872,https://images.gr-assets.com/books/1337601423l/353814.jpg,https://images.gr-assets.com/books/1337601423s/353814.jpg\n3672,332631,332631,1584086,19,1401200761,9781401200760.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",2003.0,Y: The Last Man Vol. 2: Cycles,\"Y: The Last Man, Vol. 2: Cycles (Y: The Last Man, #2)\",eng,4.23,30504,31168,764,241,747,4406,11897,13877,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189635l/332631.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3673,3475268,3475268,3516587,33,61138010,9780061138010.0,Kim Harrison,2009.0,\"White Witch, Black Curse\",\"White Witch, Black Curse (The Hollows, #7)\",en-US,4.35,38315,41420,1080,158,678,5049,14243,21292,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442365029l/3475268._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3674,19793,19793,2713696,38,1401902162,9781401902160.0,Wayne W. Dyer,2004.0,‎The Power of Intention‎,The Power of Intention: Learning to Co-create Your World Your Way,,4.18,22361,23395,527,430,815,3811,7390,10949,https://images.gr-assets.com/books/1347598399l/19793.jpg,https://images.gr-assets.com/books/1347598399s/19793.jpg\n3675,93426,93426,2468245,25,609809644,9780609809650.0,Jack Weatherford,2004.0,Genghis Khan and the Making of the Modern World,Genghis Khan and the Making of the Modern World,eng,4.01,25452,26779,1672,608,1139,5085,10496,9451,https://images.gr-assets.com/books/1320531289l/93426.jpg,https://images.gr-assets.com/books/1320531289s/93426.jpg\n3676,126609,126609,2437051,354,393960420,9780393960430.0,Theodore Dreiser,1900.0,Sister Carrie,Sister Carrie,eng,3.72,27401,30478,1149,945,2595,8311,10678,7949,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387666415l/126609.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3677,9409469,9409469,14293500,24,,,Cinda Williams Chima,2011.0,The Gray Wolf Throne,\"The Gray Wolf Throne (Seven Realms, #3)\",eng,4.39,31763,33984,1729,263,516,3389,11303,18513,https://images.gr-assets.com/books/1312142235l/9409469.jpg,https://images.gr-assets.com/books/1312142235s/9409469.jpg\n3678,1362193,1362193,1987965,44,9793062797,9789793062790.0,Andrea Hirata,2005.0,Laskar Pelangi,\"Laskar Pelangi (Tetralogi Laskar Pelangi, #1)\",ind,4.15,18311,20105,2524,326,671,3270,7244,8594,https://images.gr-assets.com/books/1489732961l/1362193.jpg,https://images.gr-assets.com/books/1489732961s/1362193.jpg\n3679,7904429,7904429,11165674,23,1934964387,9781934964380.0,Bryan Lee O'Malley,2010.0,\"Scott Pilgrim, Volume 6: Scott Pilgrim's Finest Hour\",\"Scott Pilgrim, Volume 6: Scott Pilgrim's Finest Hour\",eng,4.41,29308,30430,1148,108,515,3233,9509,17065,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348186871l/7904429.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3680,31623,31623,1454733,87,425198731,9780425198740.0,Patricia Cornwell,2003.0,Blow Fly,\"Blow Fly (Kay Scarpetta, #12)\",en-US,3.74,29283,31454,734,789,2636,8874,10692,8463,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389270705l/31623.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3681,33443,33443,1127060,43,758213506,9780758213500.0,Joanne Fluke,2000.0,Chocolate Chip Cookie Murder,\"Chocolate Chip Cookie Murder (Hannah Swensen, #1)\",eng,3.72,31242,34234,2260,1071,2719,10272,10962,9210,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389411047l/33443.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3682,9729504,9729504,14618372,33,61988340,9780061988350.0,Mitchell Zuckoff,2011.0,Lost in Shangri-la,\"Lost in Shangri-la: A True Story of Survival, Adventure, and the Most Incredible Rescue Mission of World War II\",eng,3.82,27776,31504,2481,681,1665,8359,12792,8007,https://images.gr-assets.com/books/1299264036l/9729504.jpg,https://images.gr-assets.com/books/1299264036s/9729504.jpg\n3683,7247854,7247854,8246153,44,316051640,9780316051640.0,Sam Kean,2010.0,\"The Disappearing Spoon: And Other True Tales of Madness, Love, and the History of the World from the Periodic Table of the Elements\",\"The Disappearing Spoon: And Other True Tales of Madness, Love, and the History of the World from the Periodic Table of the Elements\",eng,3.9,26820,29561,2815,841,1692,6443,11280,9305,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438018063l/7247854._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3684,52635,52635,1093522,48,61002828,9780061002820.0,Clive Barker,1986.0,The Hellbound Heart,The Hellbound Heart,eng,4.02,25074,28209,1132,345,1113,6134,10674,9943,https://images.gr-assets.com/books/1327312426l/52635.jpg,https://images.gr-assets.com/books/1327312426s/52635.jpg\n3685,17704903,17704903,24752715,13,345534522,9780345534520.0,\"Bill Dedman, Paul Clark Newell Jr.\",2013.0,Empty Mansions: The Mysterious Life of Huguette Clark and the Spending of a Great American Fortune,Empty Mansions: The Mysterious Life of Huguette Clark and the Spending of a Great American Fortune,eng,3.76,22819,26466,3015,822,1752,6951,10282,6659,https://images.gr-assets.com/books/1367929741l/17704903.jpg,https://images.gr-assets.com/books/1367929741s/17704903.jpg\n3686,6457081,6457081,6647405,56,7178379,9780007178380.0,Tracy Chevalier,2009.0,Remarkable Creatures,Remarkable Creatures ,eng,3.81,29667,33230,3817,465,1926,9047,13797,7995,https://images.gr-assets.com/books/1327161912l/6457081.jpg,https://images.gr-assets.com/books/1327161912s/6457081.jpg\n3687,3558003,3558003,3600162,39,451225724,9780451225730.0,Rachel Caine,2008.0,Lord of Misrule,\"Lord of Misrule (The Morganville Vampires, #5)\",en-US,4.18,38874,41199,1046,368,1375,7557,13190,18709,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214471l/3558003.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3688,39031,39031,817317,77,446611239,9780446611240.0,\"Douglas Preston, Lincoln Child\",2001.0,The Cabinet of Curiosities,\"The Cabinet of Curiosities (Pendergast, #3)\",eng,4.26,29003,32428,1695,145,673,4477,12359,14774,https://images.gr-assets.com/books/1169235779l/39031.jpg,https://images.gr-assets.com/books/1169235779s/39031.jpg\n3689,498641,498641,2133549,233,883681056,630809681058.0,Brother Lawrence,1691.0,The Practice of the Presence of God,The Practice of the Presence of God,,4.32,23889,26303,715,317,691,3562,7427,14306,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347467147l/498641.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3690,12191246,12191246,17156027,9,,,Lee Child,2011.0,Second Son,\"Second Son (Jack Reacher, #15.5)\",,3.95,24230,29081,801,759,1449,6323,10418,10132,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1311907335l/12191246.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3692,9820,9820,1488871,41,037575931X,9780375759310.0,Wallace Stegner,1987.0,Crossing to Safety,Crossing to Safety,eng,4.16,25578,28323,3872,272,1107,4474,10341,12129,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436043179l/9820._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3693,9440448,9440448,14325072,25,399157387,9780399157390.0,John Sandford,2011.0,Buried Prey,\"Buried Prey (Lucas Davenport, #21)\",eng,4.23,24695,27371,1146,132,502,3966,11093,11678,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439147974l/9440448._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3694,13497505,13497505,19041763,20,1400203759,9781400203760.0,Bob Goff,2012.0,Discover an Incredible Life in an Ordinary World,Love Does: Discover a Secretly Incredible Life in an Ordinary World,en-US,4.25,25791,27426,2034,546,1087,3742,7584,14467,https://images.gr-assets.com/books/1335237698l/13497505.jpg,https://images.gr-assets.com/books/1335237698s/13497505.jpg\n3695,106835,106835,102974,57,60555661,9780060555660.0,\"Benjamin Graham, Jason Zweig, Warren Buffett\",2003.0,The Intelligent Investor,The Intelligent Investor (Collins Business Essentials),eng,4.27,29825,32192,894,419,894,4321,10529,16029,https://images.gr-assets.com/books/1409602421l/106835.jpg,https://images.gr-assets.com/books/1409602421s/106835.jpg\n3696,2095,2095,1978857,80,055380202X,9780553802020.0,Stephen Hawking,2001.0,The Universe in a Nutshell,The Universe in a Nutshell,en-US,4.13,23596,25207,644,197,793,4505,9792,9920,https://images.gr-assets.com/books/1159814395l/2095.jpg,https://images.gr-assets.com/books/1159814395s/2095.jpg\n3697,9300768,9300768,12879765,56,316123358,9780316123360.0,Joe Abercrombie,2011.0,The Heroes,\"The Heroes (First Law World, #5)\",eng,4.26,24964,29467,1434,194,696,3918,11010,13649,https://images.gr-assets.com/books/1375671200l/9300768.jpg,https://images.gr-assets.com/books/1375671200s/9300768.jpg\n3698,1001896,1001896,818039,56,590225170,9780590225180.0,Blanche Fisher Wright,1916.0,The Real Mother Goose,The Real Mother Goose,,4.33,31643,32047,255,275,829,4913,8055,17975,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439507704l/1001896._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3699,5296,5296,130598,347,048641423X,9780486414230.0,Oscar Wilde,1893.0,An Ideal Husband,An Ideal Husband,en-US,4.03,29952,31461,806,272,1045,6685,12772,10687,https://images.gr-assets.com/books/1417045098l/5296.jpg,https://images.gr-assets.com/books/1417045098s/5296.jpg\n3700,42058,42058,2913597,620,192839934,9780192839930.0,\"William Shakespeare, John Jowett\",1591.0,The Tragedy of King Richard the Third,Richard III,,3.92,29182,34610,1201,545,2222,8272,12044,11527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328043960l/42058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3701,22557520,22557520,26102134,72,1476792488,9781476792480.0,Anna Todd,2014.0,After,\"After (After, #1)\",eng,3.74,32027,38360,4589,3671,3432,6845,9557,14855,https://images.gr-assets.com/books/1438077259l/22557520.jpg,https://images.gr-assets.com/books/1438077259s/22557520.jpg\n3702,1966969,1966969,1970128,46,778325342,9780778325340.0,Maria V. Snyder,2008.0,Fire Study,\"Fire Study (Study, #3)\",en-US,3.95,40523,44726,3321,598,2800,10233,15772,15323,https://images.gr-assets.com/books/1357064290l/1966969.jpg,https://images.gr-assets.com/books/1357064290s/1966969.jpg\n3703,11734,11734,1118624,76,99282194,9780099282200.0,Philip Roth,2000.0,The Human Stain,\"The Human Stain (The American Trilogy, #3)\",eng,3.84,21724,26018,1634,616,1658,6136,10447,7161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953496l/11734.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3704,16303287,16303287,22436394,44,1442495995,9781442496000.0,\"Cassandra Clare, Sarah Rees Brennan, Maureen Johnson, Cassandra Jean\",2014.0,The Bane Chronicles,The Bane Chronicles,eng,4.2,36885,41828,4141,562,1289,6521,14344,19112,https://images.gr-assets.com/books/1395159015l/16303287.jpg,https://images.gr-assets.com/books/1395159015s/16303287.jpg\n3705,409918,409918,2661517,93,446699543,9780446699550.0,Michael Connelly,2004.0,The Narrows,\"The Narrows (Harry Bosch, #10; Harry Bosch Universe, #12)\",eng,4.09,26274,31205,1155,95,556,5795,14709,10050,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442594230l/409918._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3706,13312527,13312527,18518411,24,,,Tarryn Fisher,2011.0,The Opportunist,\"The Opportunist (Love Me with Lies, #1)\",eng,4.22,38511,41741,5316,947,1688,5340,12879,20887,https://images.gr-assets.com/books/1374526831l/13312527.jpg,https://images.gr-assets.com/books/1374526831s/13312527.jpg\n3707,14096,14096,1276408,57,1401307787,9781401307780.0,Jon Kabat-Zinn,1994.0,\"Wherever You Go, There You Are: Mindfulness Meditation in Everyday Life\",\"Wherever You Go, There You Are: Mindfulness Meditation in Everyday Life\",en-US,4.11,24259,26071,1047,386,971,4616,9545,10553,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440661171l/14096._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3708,50144,50144,1543818,92,802142443,9780802142440.0,\"Banana Yoshimoto, Megan Backus\",1988.0,キッチン [Kitchen],Kitchen,eng,3.83,25797,30991,2344,494,2020,8075,12057,8345,https://images.gr-assets.com/books/1327904393l/50144.jpg,https://images.gr-assets.com/books/1327904393s/50144.jpg\n3709,123543,123543,2517460,74,312999526,9780312999520.0,Eric Van Lustbader,2003.0,Robert Ludlum's The Bourne Legacy,\"The Bourne Legacy (Jason Bourne, #4)\",eng,3.86,23352,24627,464,547,1340,6190,9529,7021,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392350704l/123543.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3710,129619,129619,1601384,39,743474155,9780743474150.0,Judith McNaught,1989.0,A Kingdom of Dreams ,\"A Kingdom of Dreams (Westmoreland, #1)\",eng,4.25,34308,36064,1420,486,1153,5288,11131,18006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285802l/129619.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3711,7095831,7095831,7352929,43,316056219,9780316056210.0,Paolo Bacigalupi,2010.0,Ship Breaker,\"Ship Breaker (Ship Breaker, #1)\",eng,3.74,31911,34277,4077,969,2439,9270,13610,7989,https://images.gr-assets.com/books/1327874074l/7095831.jpg,https://images.gr-assets.com/books/1327874074s/7095831.jpg\n3712,385742,385742,860408,59,439650763,9780439650760.0,Suzanne Collins,2004.0,Gregor and the Prophecy of Bane,\"Gregor and the Prophecy of Bane (Underland Chronicles, #2)\",eng,4.17,29586,32127,1683,235,691,5583,12541,13077,https://images.gr-assets.com/books/1337457481l/385742.jpg,https://images.gr-assets.com/books/1337457481s/385742.jpg\n3713,85733,85733,3373979,55,316159786,9780316159780.0,\"James Patterson, Peter de Jonge\",2006.0,Beach Road,Beach Road,eng,3.81,27240,28425,1381,576,1884,7938,10120,7907,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387705973l/85733.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3714,9802372,13595639,14037039,36,399256601,9780399256610.0,Maureen Johnson,2011.0,The Name of the Star,\"The Name of the Star (Shades of London, #1)\",,3.9,22842,40957,4756,933,2360,9197,15774,12693,https://images.gr-assets.com/books/1327880449l/9802372.jpg,https://images.gr-assets.com/books/1327880449s/9802372.jpg\n3715,325085,325085,4993095,138,140435123,9780140435120.0,\"Charles Dickens, Mark Ford\",1839.0,Nicholas Nickleby,Nicholas Nickleby,eng,3.89,30272,33384,1100,671,1886,8152,12330,10345,https://images.gr-assets.com/books/1352758388l/325085.jpg,https://images.gr-assets.com/books/1352758388s/325085.jpg\n3716,4673605,4673605,4724052,6,345506405,9780345506400.0,\"Dean Koontz, Kevin J. Anderson, Chuck Dixon, Brett Booth\",2008.0,Dean Koontz's Frankenstein: Prodigal Son Volume 1 (Frankenstein),\"Dean Koontz's Frankenstein, Volume 1: Prodigal Son\",eng,4.09,25349,25399,141,588,1255,4603,7798,11155,https://images.gr-assets.com/books/1320410883l/4673605.jpg,https://images.gr-assets.com/books/1320410883s/4673605.jpg\n3717,12651,12651,702720,340,143037498,9780143037490.0,\"Jean-Jacques Rousseau, Maurice Cranston\",1762.0,Du contrat social: ou Principes du droit politique,The Social Contract,eng,3.75,24397,27347,525,591,2070,7813,9998,6875,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197284l/12651.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3718,3002300,3002300,3032794,26,1416905855,9781416905850.0,Laurie Halse Anderson,2008.0,Chains,\"Chains (Seeds of America, #1)\",eng,4.09,32493,33961,4202,584,1291,5870,13084,13132,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348415444l/3002300.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3719,53447,53447,5793,149,9871144261,9789871144270.0,Ernesto Sabato,1948.0,El túnel,El túnel,spa,4.04,23161,28256,1618,385,1433,5352,10494,10592,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170423850l/53447._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3720,110331,110331,707252,424,451528816,9780451528810.0,\"Alexander Hamilton, James Madison, John Jay, Philo-Publius, Clinton Rossiter, Charles R. Kessler\",1787.0,The Federalist,The Federalist Papers,eng,4.05,24648,28020,569,448,1394,5786,9205,11187,https://images.gr-assets.com/books/1327865541l/110331.jpg,https://images.gr-assets.com/books/1327865541s/110331.jpg\n3721,272315,272315,1219372,18,316009857,9780316009850.0,Julie Anne Peters,2007.0,Keeping You a Secret,Keeping You a Secret,,3.98,25864,26475,967,807,1750,5505,7501,10912,https://images.gr-assets.com/books/1358442201l/272315.jpg,https://images.gr-assets.com/books/1358442201s/272315.jpg\n3722,25242224,25242224,43024334,49,1609452860,9781609452860.0,\"Elena Ferrante, Ann Goldstein\",2014.0,Storia della bambina perduta,\"The Story of the Lost Child (The Neapolitan Novels, #4)\",eng,4.39,21358,29371,2790,185,496,2930,9876,15884,https://images.gr-assets.com/books/1499781984l/25242224.jpg,https://images.gr-assets.com/books/1499781984s/25242224.jpg\n3723,1629601,1629601,1623714,31,786838183,9780786838190.0,E. Lockhart,2008.0,The Disreputable History of Frankie Landau-Banks,The Disreputable History of Frankie Landau-Banks,en-US,3.82,35300,38836,4763,1129,2708,9298,14421,11280,https://images.gr-assets.com/books/1313980820l/1629601.jpg,https://images.gr-assets.com/books/1313980820s/1629601.jpg\n3724,6578507,6578507,6771932,50,143145444,9780143145450.0,\"Sarah Blake, Orlagh Cassidy\",2009.0,The Postmistress,The Postmistress,eng,3.3,30320,35271,5127,1474,5324,13532,11074,3867,https://images.gr-assets.com/books/1409169468l/6578507.jpg,https://images.gr-assets.com/books/1409169468s/6578507.jpg\n3725,10790277,10790277,15702555,18,316187704,9780316187700.0,Michael J. Sullivan,2010.0,Rise of Empire,\"Rise of Empire (The Riyria Revelations, #3-4)\",eng,4.35,25757,28832,1215,110,381,3016,11157,14168,https://images.gr-assets.com/books/1307960500l/10790277.jpg,https://images.gr-assets.com/books/1307960500s/10790277.jpg\n3726,657371,657371,643459,23,1416913629,9781416913630.0,Nic Sheff,2008.0,Tweak: Growing Up On Methamphetamines,Tweak: Growing Up On Methamphetamines,en-US,3.93,23544,24997,2161,517,1603,5687,8442,8748,https://images.gr-assets.com/books/1259233004l/657371.jpg,https://images.gr-assets.com/books/1259233004s/657371.jpg\n3727,10836728,10836728,15750881,32,316098795,9780316098790.0,Daniel O'Malley,2012.0,The Rook,\"The Rook (The Checquy Files, #1)\",eng,4.12,27569,32622,4807,560,1317,4788,12909,13048,https://images.gr-assets.com/books/1327619585l/10836728.jpg,https://images.gr-assets.com/books/1327619585s/10836728.jpg\n3728,44170,44170,918951,28,803731531,9780803731530.0,Frank Beddor,2004.0,The Looking Glass Wars,\"The Looking Glass Wars (The Looking Glass Wars, #1)\",en-US,3.93,34581,37993,3522,819,2286,8286,13789,12813,https://images.gr-assets.com/books/1354845928l/44170.jpg,https://images.gr-assets.com/books/1354845928s/44170.jpg\n3729,2241558,2241558,3134352,42,1416549129,9781416549120.0,Philippa Gregory,2008.0,The Other Queen,\"The Other Queen (The Plantagenet and Tudor Novels, #15)\",eng,3.62,32105,35390,2457,824,3452,11431,12245,7438,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192598l/2241558.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3730,6261961,6261961,6439665,65,61843407,9780061843400.0,Joyce Maynard,2009.0,Labor Day,Labor Day,en-GB,3.55,23043,28166,3148,732,2560,9538,11085,4251,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441909727l/6261961._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3731,7576115,7576115,9934116,54,385611072,9780385611080.0,Terry Pratchett,2010.0,I Shall Wear Midnight,\"I Shall Wear Midnight (Discworld, #38; Tiffany Aching, #4)\",eng,4.35,30945,35603,1803,128,549,4334,12431,18161,https://images.gr-assets.com/books/1328232764l/7576115.jpg,https://images.gr-assets.com/books/1328232764s/7576115.jpg\n3732,17831614,17831614,24948167,37,,,Christina Lauren,2013.0,Beautiful Player,\"Beautiful Player (Beautiful Bastard, #3)\",eng,4.38,42635,44352,3049,267,901,4736,14247,24201,https://images.gr-assets.com/books/1375285002l/17831614.jpg,https://images.gr-assets.com/books/1375285002s/17831614.jpg\n3733,18077903,18077903,25384143,40,812993012,9780812993010.0,\"Ed Catmull, Amy Wallace\",2009.0,\"Creativity, Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration\",\"Creativity, Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration\",eng,4.24,25488,29097,2343,470,847,3829,9949,14002,https://images.gr-assets.com/books/1400863577l/18077903.jpg,https://images.gr-assets.com/books/1400863577s/18077903.jpg\n3734,91760,91760,88526,20,810959542,9780810959540.0,\"Frida Kahlo, Carlos Fuentes, Sarah M. Lowe\",1995.0,El diario de Frida Kahlo: Un íntimo autorretrato ,The Diary of Frida Kahlo: An Intimate Self-Portrait,eng,3.88,25038,25315,243,1971,1772,4236,6585,10751,https://images.gr-assets.com/books/1407009131l/91760.jpg,https://images.gr-assets.com/books/1407009131s/91760.jpg\n3735,11580,11580,14011,14,452253802,9780452253800.0,\"Stephen King, Bernie Wrightson, Michele Wrightson\",1982.0,Creepshow,Creepshow,en-US,4.06,27690,28429,134,750,1503,5768,7734,12674,https://images.gr-assets.com/books/1332002598l/11580.jpg,https://images.gr-assets.com/books/1332002598s/11580.jpg\n3736,10785687,10785687,15697851,8,62101897,9780062101890.0,Bob McCabe,2011.0,Harry Potter Page to Screen: The Complete Filmmaking Journey,Harry Potter Page to Screen: The Complete Filmmaking Journey,,4.56,27361,27610,369,477,480,2151,4630,19872,https://images.gr-assets.com/books/1317345385l/10785687.jpg,https://images.gr-assets.com/books/1317345385s/10785687.jpg\n3737,29925,29925,30342,27,1841580651,9781841580650.0,Jeff Shaara,1996.0,Gods and Generals,\"Gods and Generals (The Civil War Trilogy, #1)\",eng,4.05,25515,27141,574,402,1081,5241,10527,9890,https://images.gr-assets.com/books/1330062676l/29925.jpg,https://images.gr-assets.com/books/1330062676s/29925.jpg\n3738,2712967,2712967,2738513,52,373773102,9780373773110.0,Gena Showalter,2008.0,The Darkest Pleasure,The Darkest Pleasure (Lords of the Underworld #3),eng,4.28,38040,39466,1150,254,933,5776,12901,19602,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390666521l/2712967.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3739,151370,151370,1575861,41,312368577,9780312368580.0,Madeleine L'Engle,1986.0,Many Waters,\"Many Waters (A Wrinkle in Time Quintet, #4)\",en-US,4.01,33049,35400,1100,450,1712,7615,12828,12795,https://images.gr-assets.com/books/1330360643l/151370.jpg,https://images.gr-assets.com/books/1330360643s/151370.jpg\n3740,598159,598159,872798,25,805017585,9780805017590.0,\"Bill Martin Jr., Eric Carle\",2003.0,\"Panda Bear, Panda Bear, What Do You See?\",\"Panda Bear, Panda Bear, What Do You See?\",en-US,4.21,27402,27717,237,297,1047,5177,7085,14111,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235284l/598159.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3741,8701129,8701129,11557753,47,553807250,9780553807260.0,Lisa Gardner,2011.0,Love You More,\"Love You More (Tessa Leoni, #1; Detective D.D. Warren, #5)\",eng,4.15,27629,31201,2160,177,688,5104,13435,11797,https://images.gr-assets.com/books/1385141722l/8701129.jpg,https://images.gr-assets.com/books/1385141722s/8701129.jpg\n3742,792161,792161,1575365,98,439796636,9780439796640.0,Michael Morpurgo,1982.0,War Horse,\"War Horse (War Horse, #1)\",eng,4.13,24952,31591,3828,311,1148,5520,11838,12774,https://images.gr-assets.com/books/1360677423l/792161.jpg,https://images.gr-assets.com/books/1360677423s/792161.jpg\n3743,336161,336161,502982,43,64434508,9780064434510.0,Eric Carle,1977.0,The Grouchy Ladybug,The Grouchy Ladybug,,4.09,26716,27238,775,484,1371,5582,7594,12207,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1510010469l/336161._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3744,21685,21685,22786,63,156029022,9780156029020.0,Dennis Lehane,1994.0,A Drink Before the War,\"A Drink Before the War (Kenzie & Gennaro, #1)\",en-US,3.96,25800,29551,1639,331,1108,6521,13083,8508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921356l/21685.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3745,657034,657034,643122,56,312368461,9780312368460.0,Chelsea Cain,2007.0,Heartsick,\"Heartsick (Archie Sheridan & Gretchen Lowell, #1)\",eng,3.92,27974,30217,2546,719,1568,6888,11291,9751,https://images.gr-assets.com/books/1317065387l/657034.jpg,https://images.gr-assets.com/books/1317065387s/657034.jpg\n3746,12820360,12820360,17969941,23,1609089464,9781609089470.0,Julianne Donaldson,2012.0,Edenbrooke,\"Edenbrooke (Edenbrooke, #1)\",eng,4.34,28536,30220,6929,306,744,3395,9743,16032,https://images.gr-assets.com/books/1371398291l/12820360.jpg,https://images.gr-assets.com/books/1371398291s/12820360.jpg\n3747,16248311,16248311,21892573,44,62257838,9780062257830.0,Kathleen Tessaro,2013.0,The Perfume Collector,The Perfume Collector,eng,3.97,22544,27430,3065,331,967,5627,12714,7791,https://images.gr-assets.com/books/1358532124l/16248311.jpg,https://images.gr-assets.com/books/1358532124s/16248311.jpg\n3748,15704001,23016317,21365702,22,,,Tara Sivec,2012.0,\"Seduction and Snacks (Chocolate Lovers, #1)\",\"Seduction and Snacks (Chocolate Lovers, #1)\",eng,4.14,32972,44255,5383,1308,2351,6542,12693,21361,https://images.gr-assets.com/books/1371178840l/15704001.jpg,https://images.gr-assets.com/books/1371178840s/15704001.jpg\n3750,39030,39030,65004,71,765354950,9780765354950.0,\"Douglas Preston, Lincoln Child\",1997.0,Reliquary,\"Reliquary (Pendergast, #2)\",en-US,4.0,27362,31006,1044,184,1173,7109,12384,10156,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922100l/39030.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3751,8459594,8459594,13323806,19,140006872X,9781400068720.0,Gabrielle Hamilton,2001.0,\"Blood, Bones and Butter: The Inadvertent Education of a Reluctant Chef\",\"Blood, Bones, and Butter: The Inadvertent Education of a Reluctant Chef\",en-US,3.71,24531,26676,3381,669,2246,7428,10210,6123,https://images.gr-assets.com/books/1327889966l/8459594.jpg,https://images.gr-assets.com/books/1327889966s/8459594.jpg\n3752,140302,477597,1952109,141,,,Agatha Christie,1924.0,Poirot Investigates,\"Poirot Investiga (Hércules Poirot, #3)\",spa,4.07,15476,29408,779,216,1003,6529,10450,11210,https://images.gr-assets.com/books/1359475912l/140302.jpg,https://images.gr-assets.com/books/1359475912s/140302.jpg\n3753,10,10,21457570,6,439827604,9780439827610.0,J.K. Rowling,2005.0,\"Harry Potter Collection (Harry Potter, #1-6)\",\"Harry Potter Collection (Harry Potter, #1-6)\",eng,4.73,24618,26274,882,203,186,946,3891,21048,https://images.gr-assets.com/books/1328867351l/10.jpg,https://images.gr-assets.com/books/1328867351s/10.jpg\n3754,30016,30016,1583154,109,586010165,9780586010170.0,Isaac Asimov,1957.0,The Naked Sun,The Naked Sun (Robot #2),en-US,4.12,26532,31536,913,61,584,5820,14039,11032,https://images.gr-assets.com/books/1335782263l/30016.jpg,https://images.gr-assets.com/books/1335782263s/30016.jpg\n3755,114230,114230,15956900,431,974607800,9780974607800.0,Herman Melville,1853.0,\"Bartleby, the Scrivener: A Story of Wall Street\",Bartleby the Scrivener,eng,3.9,26265,31730,1915,710,2028,7207,11693,10092,https://images.gr-assets.com/books/1320404048l/114230.jpg,https://images.gr-assets.com/books/1320404048s/114230.jpg\n3756,23512999,23512999,43116154,54,1501111671,9781501111680.0,Stephen King,2015.0,The Bazaar of Bad Dreams,The Bazaar of Bad Dreams,eng,3.92,22054,28439,3384,395,1213,6521,12347,7963,https://images.gr-assets.com/books/1468705688l/23512999.jpg,https://images.gr-assets.com/books/1468705688s/23512999.jpg\n3757,9835731,9835731,7184205,129,374173958,9780374173950.0,\"Lars Kepler, Ann Long\",2009.0,Hypnotisören,\"The Hypnotist (Joona Linna, #1)\",eng,3.63,23690,30432,2942,1083,2985,8649,11008,6707,https://images.gr-assets.com/books/1482166605l/9835731.jpg,https://images.gr-assets.com/books/1482166605s/9835731.jpg\n3758,76658,76658,900764,19,345338588,9780345338590.0,Piers Anthony,1983.0,On a Pale Horse,\"On a Pale Horse (Incarnations of Immortality, #1)\",en-US,4.13,29492,30555,1264,320,1065,5332,11300,12538,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210126l/76658.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3759,4902793,4902793,4968304,1,441017770,9780441017780.0,Charlaine Harris,2008.0,\"Sookie Stackhouse, Books 1-7\",\"Sookie Stackhouse 7-copy Boxed Set (Sookie Stackhouse, #1-7)\",,4.43,25359,25359,359,389,591,2613,5934,15832,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348741686l/4902793.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3760,43324,43324,2024958,72,7165161,9780007165160.0,Sidney Sheldon,1985.0,The Sands of Time,Are You Afraid of the Dark?,eng,3.64,21443,22906,707,520,2117,7426,7837,5006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388485229l/43324.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3761,25378,25378,26119,16,60989157,9780060989160.0,\"Tommy Lee, Vince Neil, Nikki Sixx, Neil Strauss, Mick Mars, Tommy Lee\",2001.0,The Dirt: Confessions of the World's Most Notorious Rock Band,The Dirt: Confessions of the World's Most Notorious Rock Band,en-GB,4.16,22482,23915,1478,411,893,3898,7900,10813,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184697l/25378.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3762,7797,7797,10846,16,7169973,9780007169980.0,\"Theo LeSieg, Roy McKie\",1961.0,Ten Apples Up on Top,Ten Apples Up On Top!,eng,4.11,28034,29020,471,439,1517,6152,7340,13572,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349125208l/7797.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3763,331319,331319,6170936,139,451527704,9780451527710.0,\"Theodore Dreiser, Richard R. Lingeman\",1925.0,An American Tragedy ,An American Tragedy,eng,3.94,25665,26988,956,752,1697,5683,9246,9610,https://images.gr-assets.com/books/1309283443l/331319.jpg,https://images.gr-assets.com/books/1309283443s/331319.jpg\n3764,4645,4645,621924,125,684862212,9780684862220.0,Ernest Hemingway,1938.0,The Snows of Kilimanjaro and Other Stories,The Snows of Kilimanjaro and Other Stories,eng,3.88,21365,27093,1030,388,1539,6693,10765,7708,https://images.gr-assets.com/books/1400889884l/4645.jpg,https://images.gr-assets.com/books/1400889884s/4645.jpg\n3766,9503336,9503336,14331040,33,031609966X,9780316099660.0,Elin Hilderbrand,2011.0,Silver Girl,Silver Girl,en-US,3.87,24819,27355,1819,268,1224,7284,11488,7091,https://images.gr-assets.com/books/1344270562l/9503336.jpg,https://images.gr-assets.com/books/1344270562s/9503336.jpg\n3767,22896,22896,4030671,48,425190374,9780425190370.0,Alice Hoffman,1995.0,Practical Magic,Practical Magic,eng,3.8,32994,36006,2549,601,2531,9916,13285,9673,https://images.gr-assets.com/books/1490354120l/22896.jpg,https://images.gr-assets.com/books/1490354120s/22896.jpg\n3768,13536649,13536649,16669363,18,034553364X,9780345533650.0,Kevin Hearne,2012.0,Trapped ,\"Trapped (The Iron Druid Chronicles, #5)\",eng,4.28,27544,31223,1312,80,511,4158,12311,14163,https://images.gr-assets.com/books/1346092123l/13536649.jpg,https://images.gr-assets.com/books/1346092123s/13536649.jpg\n3769,9475,9475,361223,51,439474299,9780439474290.0,Jenny Nimmo,2002.0,Midnight for Charlie Bone,\"Midnight for Charlie Bone (The Children of the Red King, #1)\",en-US,3.79,32917,34055,1614,922,2582,9164,11326,10061,https://images.gr-assets.com/books/1328868798l/9475.jpg,https://images.gr-assets.com/books/1328868798s/9475.jpg\n3770,23395680,23395680,26653661,37,553499114,9780553499120.0,\"Amie Kaufman, Jay Kristoff\",2015.0,Illuminae,\"Illuminae (The Illuminae Files, #1)\",eng,4.32,44500,49187,13008,879,1732,5262,14328,26986,https://images.gr-assets.com/books/1443433956l/23395680.jpg,https://images.gr-assets.com/books/1443433956s/23395680.jpg\n3771,140671,140671,390334,31,812521390,9780812521400.0,Glen Cook,1984.0,The Black Company,\"The Black Company (The Chronicles of the Black Company, #1)\",eng,3.96,27392,29013,1250,762,1662,5770,10645,10174,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389929874l/140671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3772,42986,42986,376293,42,316954993,9780316954990.0,Herman Wouk,1978.0,War and Remembrance,\"War and Remembrance (The Henry Family, #2)\",eng,4.38,26633,28009,684,98,414,3212,9250,15035,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422331351l/42986.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3773,37034,37034,2127172,90,1567921892,9781567921890.0,\"Susan Hill, John Lawrence\",1983.0,The Woman in Black,The Woman in Black,eng,3.68,24200,33361,4070,732,3039,9986,11982,7622,https://images.gr-assets.com/books/1327869942l/37034.jpg,https://images.gr-assets.com/books/1327869942s/37034.jpg\n3774,239810,239810,1632383,43,64402754,9780064402750.0,Barbara Robinson,1972.0,The Best Christmas Pageant Ever,The Best Christmas Pageant Ever (The Herdmans #1),en-US,4.18,32516,34896,2076,597,1332,5718,10680,16569,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177116l/239810.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3776,9827,9827,1899209,81,385333765,9780385333760.0,James Clavell,1962.0,King Rat,\"King Rat (Asian Saga, #4)\",eng,4.1,25071,27378,646,155,853,5448,10580,10342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388889819l/9827.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3777,8811134,8811134,13685368,35,61449156,9780061449150.0,Michael  Grant,2012.0,Fear,\"Fear (Gone, #5)\",en-US,4.25,33178,35940,1785,521,1130,4973,11375,17941,https://images.gr-assets.com/books/1309186708l/8811134.jpg,https://images.gr-assets.com/books/1309186708s/8811134.jpg\n3779,327255,327255,1493348,75,99642611,9780099642620.0,Frederick Forsyth,1984.0,The Fourth Protocol,The Fourth Protocol,en-GB,3.99,24896,25907,220,184,721,5949,11255,7798,https://images.gr-assets.com/books/1351838040l/327255.jpg,https://images.gr-assets.com/books/1351838040s/327255.jpg\n3780,10990,10990,2489807,64,770429459,9780770429450.0,Diana Gabaldon,2003.0,Lord John and the Private Matter,\"Lord John and the Private Matter (Lord John Grey, #1)\",eng,3.66,28653,32182,1388,913,2967,10145,10334,7823,https://images.gr-assets.com/books/1320485657l/10990.jpg,https://images.gr-assets.com/books/1320485657s/10990.jpg\n3781,9681214,9681214,14569146,27,373210264,9780373210270.0,Aimee Carter,2011.0,The Goddess Test,\"The Goddess Test (Goddess Test, #1)\",eng,3.83,44328,47080,4839,1755,3909,10846,14765,15805,https://images.gr-assets.com/books/1387217173l/9681214.jpg,https://images.gr-assets.com/books/1387217173s/9681214.jpg\n3782,36086,36086,1008989,27,1594489254,9781594489260.0,Steven Johnson,2006.0,The Ghost Map,\"The Ghost Map: The Story of London's Most Terrifying Epidemic - and How It Changed Science, Cities, and the Modern World\",eng,3.91,24895,27232,2592,534,1464,6213,10670,8351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430524696l/36086.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3783,9297774,9297774,14180376,21,62048503,9780062048510.0,Anna Carey,2011.0,Eve,\"Eve (Eve, #1)\",en-US,3.69,34746,37764,3334,1480,3697,10229,11950,10408,https://images.gr-assets.com/books/1389188190l/9297774.jpg,https://images.gr-assets.com/books/1389188190s/9297774.jpg\n3784,18353714,18353714,25779088,45,1455521205,9781455521200.0,David Baldacci,2014.0,The Target,\"The Target (Will Robie, #3)\",eng,4.04,18115,28155,2044,286,920,5470,12191,9288,https://images.gr-assets.com/books/1391463804l/18353714.jpg,https://images.gr-assets.com/books/1391463804s/18353714.jpg\n3785,52372,52372,768174,67,141187166,9780141187170.0,Susan Sontag,1973.0,On Photography,On Photography,eng,3.84,22611,24496,468,1666,1609,4529,7771,8921,https://images.gr-assets.com/books/1328061531l/52372.jpg,https://images.gr-assets.com/books/1328061531s/52372.jpg\n3786,504420,504420,1206921,39,074327041X,9780743270410.0,Vince Flynn,2007.0,Protect and Defend,\"Protect and Defend (Mitch Rapp, #10)\",en-US,4.34,23952,26763,714,116,393,3173,9658,13423,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429284131l/504420.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3787,5182,5182,846655,28,140244824,9780140244820.0,Mary McGarry Morris,1995.0,Songs in Ordinary Time,Songs in Ordinary Time,eng,3.68,27034,27328,489,857,2112,8250,9765,6344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1590718454l/5182.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3788,40067,40067,1757108,39,1400080665,9781400080660.0,Erik Larson,2006.0,Thunderstruck,Thunderstruck,en-US,3.67,24760,27979,3402,347,1952,9255,11516,4909,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435981040l/40067._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3789,1168341,1168341,1239736,61,385520697,9780385520690.0,Michio Kaku,2008.0,\"Physics of the Impossible: A Scientific Exploration of the World of Phasers, Force Fields, Teleportation, and Time Travel\",\"Physics of the Impossible: A Scientific Exploration into the World of Phasers, Force Fields, Teleportation, and Time Travel\",eng,4.07,22251,24597,1024,605,964,4342,8934,9752,https://images.gr-assets.com/books/1320469147l/1168341.jpg,https://images.gr-assets.com/books/1320469147s/1168341.jpg\n3790,15595,15595,168119,33,006440630X,9780064406310.0,Karen Cushman,1995.0,The Midwife's Apprentice,The Midwife's Apprentice,eng,3.71,33217,34145,1439,756,2537,10586,12275,7991,https://images.gr-assets.com/books/1305983479l/15595.jpg,https://images.gr-assets.com/books/1305983479s/15595.jpg\n3791,40200,40200,1210026,5,1841954314,9781841954320.0,Michel Faber,2002.0,The Crimson Petal and the White,The Crimson Petal and the White,eng,3.87,24932,30695,2682,1071,2318,6468,10610,10228,https://images.gr-assets.com/books/1408937589l/40200.jpg,https://images.gr-assets.com/books/1408937589s/40200.jpg\n3792,4701,4701,2201178,78,385520514,9780385520520.0,Mark Haddon,2006.0,A Spot of Bother,A Spot of Bother,eng,3.46,23676,28130,2925,859,3216,10056,10123,3876,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428506021l/4701.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3793,8709524,8709524,18752278,26,1595143211,9781595143210.0,Richelle Mead,2014.0,Silver Shadows,\"Silver Shadows (Bloodlines, #5)\",en-US,4.37,38152,42572,4250,228,898,4922,13522,23002,https://images.gr-assets.com/books/1389304070l/8709524.jpg,https://images.gr-assets.com/books/1389304070s/8709524.jpg\n3794,16255,16255,815206,61,552998761,9780552998760.0,Armistead Maupin,1978.0,Tales of the City,\"Tales of the City (Tales of the City, #1)\",eng,4.06,23666,27676,1872,460,1282,5278,9881,10775,https://images.gr-assets.com/books/1483075229l/16255.jpg,https://images.gr-assets.com/books/1483075229s/16255.jpg\n3795,100924,100924,3148586,81,7157169,9780007157170.0,C.S. Lewis,1943.0,Perelandra,\"Perelandra (Space Trilogy, #2)\",en-US,3.97,26791,31492,1644,481,2016,6904,10570,11521,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388623162l/100924.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3796,5510384,5510384,5625827,10,1416950079,9781416950070.0,Ellen Hopkins,2009.0,Tricks,\"Tricks (Tricks, #1)\",eng,4.29,28687,29370,1587,405,975,4143,8072,15775,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347236052l/5510384.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3797,7673,7673,997260,84,60891564,9780060891560.0,Michael Crichton,1976.0,Eaters of the Dead,Eaters of the Dead,,3.64,24885,28593,1196,751,2738,8799,10056,6249,https://images.gr-assets.com/books/1388369310l/7673.jpg,https://images.gr-assets.com/books/1388369310s/7673.jpg\n3798,11100431,11100431,16022532,19,316187712,9780316187720.0,Michael J. Sullivan,2012.0,Heir of Novron,\"Heir of Novron (The Riyria Revelations, #5-6)\",eng,4.46,25185,28151,1507,119,344,2314,8956,16418,https://images.gr-assets.com/books/1307960132l/11100431.jpg,https://images.gr-assets.com/books/1307960132s/11100431.jpg\n3800,3863861,3863861,3909033,26,425224201,9780425224200.0,Julie James,2008.0,Just the Sexiest Man Alive,Just the Sexiest Man Alive,en-US,3.94,36473,38100,1929,926,2017,8414,13961,12782,https://images.gr-assets.com/books/1342552584l/3863861.jpg,https://images.gr-assets.com/books/1342552584s/3863861.jpg\n3801,9436746,9436746,14321334,45,316036269,9780316036270.0,\"James Patterson, Maxine Paetro\",2011.0,10th Anniversary,\"10th Anniversary (Women's Murder Club, #10)\",eng,4.05,27052,32557,1691,253,1140,6909,12600,11655,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789160l/9436746.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3802,922991,922991,2248317,87,755309510,9780755309510.0,Victoria Hislop,2005.0,The Island,The Island,en-GB,3.99,23415,26842,2022,529,1435,5310,9997,9571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349030764l/922991.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3803,32441,32441,1443220,52,553804812,9780553804810.0,Dean Koontz,1989.0,The Good Guy,The Good Guy,eng,3.81,27061,28576,1366,401,1647,8173,11134,7221,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257720l/32441.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3804,64948,64948,442705,65,042520992X,9780425209930.0,Dean Koontz,1980.0,Whispers,Whispers,en-US,3.9,26304,27346,469,342,1392,7421,9691,8500,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388638928l/64948.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3805,6777616,6777616,6665121,63,385342314,9780385342320.0,Alan Bradley,2010.0,The Weed That Strings the Hangman's Bag,\"The Weed That Strings the Hangman's Bag (Flavia de Luce, #2)\",eng,3.99,33519,37597,4480,186,977,8450,17485,10499,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266442l/6777616.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3806,32422,32422,613832,77,425203891,9780425203900.0,Dean Koontz,1992.0,Hideaway,Hideaway,eng,3.82,27511,28645,469,352,1581,8621,10473,7618,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257014l/32422.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3807,634407,634407,3127921,79,312956738,9780312956740.0,\"Ian Rankin, Mircea Pricăjan\",1987.0,Knots & Crosses,\"Knots and Crosses (Inspector Rebus, #1)\",eng,3.83,26055,29834,1392,460,1521,8004,12390,7459,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388781809l/634407.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3808,48464,48464,783228,1,151365040,9780151365040.0,Flannery O'Connor,1953.0,\"A Good Man Is Hard to Find, and Other Stories\",A Good Man is Hard to Find and Other Stories,,4.24,25504,29992,1615,337,970,4098,10210,14377,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251628l/48464.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3809,138396,138396,133406,35,1582404135,9781582404130.0,\"Robert Kirkman, Charlie Adlard\",2004.0,\"The Walking Dead, Vol. 2: Miles Behind Us\",\"The Walking Dead, Vol. 02: Miles Behind Us\",en-GB,4.25,26082,29647,1325,105,564,4272,11550,13156,https://images.gr-assets.com/books/1298563748l/138396.jpg,https://images.gr-assets.com/books/1298563748s/138396.jpg\n3810,3828382,3828382,3873014,31,1591842336,9781591842330.0,Seth Godin,2008.0,Tribes: We Need You to Lead Us,Tribes: We Need You to Lead Us,en-US,3.84,23803,24850,1334,808,1697,5868,8865,7612,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347711639l/3828382.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3811,46815,46815,1256238,42,60858796,9780060858800.0,Marya Hornbacher,1997.0,Wasted: A Memoir of Anorexia and Bulimia ,Wasted: A Memoir of Anorexia and Bulimia,eng,3.99,25452,26466,1102,512,1585,5707,8570,10092,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181134l/46815.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3814,6547188,6547188,6739626,20,61138037,9780061138030.0,Kim Harrison,2010.0,Black Magic Sanction,\"Black Magic Sanction (The Hollows, #8)\",eng,4.39,36216,39273,1149,135,538,4238,13520,20842,https://images.gr-assets.com/books/1310918991l/6547188.jpg,https://images.gr-assets.com/books/1310918991s/6547188.jpg\n3815,11505008,11505008,16440712,51,1609611543,9781609611540.0,William  Davis,2011.0,\"Wheat Belly: Lose the Wheat, Lose the Weight, and Find Your Path Back to Health \",\"Wheat Belly: Lose the Wheat, Lose the Weight, and Find Your Path Back to Health\",eng,3.71,21263,24684,2242,1011,2062,6561,8379,6671,https://images.gr-assets.com/books/1317793840l/11505008.jpg,https://images.gr-assets.com/books/1317793840s/11505008.jpg\n3816,18500665,18500665,19250719,28,,,Susan Ee,2015.0,End of Days,\"End of Days (Penryn & the End of Days, #3)\",eng,4.1,27238,39601,5686,497,1891,7198,13468,16547,https://images.gr-assets.com/books/1423384676l/18500665.jpg,https://images.gr-assets.com/books/1423384676s/18500665.jpg\n3817,36315,36315,1813320,8,345350804,9780345350800.0,\"H.P. Lovecraft, August Derleth, Robert Bloch\",1963.0,The Best of H.P. Lovecraft ,The Best of H.P. Lovecraft: Bloodcurdling Tales of Horror and the Macabre,eng,4.31,25841,26093,523,226,611,3290,8631,13335,https://images.gr-assets.com/books/1333214256l/36315.jpg,https://images.gr-assets.com/books/1333214256s/36315.jpg\n3818,82192,82192,1864677,71,60548258,9780060548250.0,Mary  Stewart,1970.0,The Crystal Cave,\"The Crystal Cave (Arthurian Saga, #1)\",en-US,4.12,34643,36328,1325,294,1175,6673,13794,14392,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439344566l/82192._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3819,8138071,8138071,12934445,18,61138061,9780061138060.0,Kim Harrison,2011.0,Pale Demon,\"Pale Demon (The Hollows, #9)\",en-US,4.45,35141,38529,1697,165,401,3495,12334,22134,https://images.gr-assets.com/books/1280381240l/8138071.jpg,https://images.gr-assets.com/books/1280381240s/8138071.jpg\n3820,160149,160149,6750943,41,141182342,9780141182350.0,\"H.P. Lovecraft, S.T. Joshi\",1926.0,The Call of Cthulhu and Other Weird Stories,The Call of Cthulhu and Other Weird Stories,en-US,4.25,25663,27568,868,221,775,3876,9773,12923,https://images.gr-assets.com/books/1320618937l/160149.jpg,https://images.gr-assets.com/books/1320618937s/160149.jpg\n3821,15015,15015,16955,79,399142789,9780399142790.0,Neale Donald Walsch,1995.0,\"Conversations with God, An Uncommon Dialogue: Living in the World with Honesty, Courage, and Love, Book 1\",\"Conversations with God: An Uncommon Dialogue, Book 1\",eng,4.15,21977,22988,1115,750,1119,3495,6307,11317,https://images.gr-assets.com/books/1327944254l/15015.jpg,https://images.gr-assets.com/books/1327944254s/15015.jpg\n3822,23705512,23705512,43314655,18,1476785651,9781476785650.0,\"Felicia Day, Joss Whedon\",2015.0,You're Never Weird on the Internet (Almost),You're Never Weird on the Internet (Almost),eng,4.14,28276,31630,4659,799,1135,4585,11341,13770,https://images.gr-assets.com/books/1440565049l/23705512.jpg,https://images.gr-assets.com/books/1440565049s/23705512.jpg\n3823,7926569,7926569,11240905,46,316120553,9780316120560.0,\"James Patterson, Michael Ledwidge\",2011.0,Now You See Her,Now You See Her,en-US,3.98,23426,27052,2208,316,1145,6160,10705,8726,https://images.gr-assets.com/books/1435387035l/7926569.jpg,https://images.gr-assets.com/books/1435387035s/7926569.jpg\n3824,268601,268601,3241481,83,425150984,9780425150990.0,J.D. Robb,1995.0,Glory in Death,\"Glory in Death (In Death, #2)\",eng,4.25,35158,39956,1777,121,677,6205,15174,17779,https://images.gr-assets.com/books/1309282048l/268601.jpg,https://images.gr-assets.com/books/1309282048s/268601.jpg\n3825,16002136,16002136,21502266,15,785165622,9780785165620.0,\"Matt Fraction, David Aja, Javier Pulido, Matt Hollingsworth, Chris Eliopoulos, Alan Davis\",2013.0,\"Hawkeye, Volume 1: My Life as a Weapon\",\"Hawkeye, Volume 1: My Life as a Weapon\",eng,4.17,31993,32727,1781,1155,1134,4262,10558,15618,https://images.gr-assets.com/books/1360413248l/16002136.jpg,https://images.gr-assets.com/books/1360413248s/16002136.jpg\n3826,11312,11312,742,70,068987121X,9780689871210.0,Susan Cooper,1965.0,\"Over Sea, Under Stone\",\"Over Sea, Under Stone (The Dark Is Rising, #1)\",,3.85,34020,37339,1732,740,2184,9763,13869,10783,https://images.gr-assets.com/books/1443993959l/11312.jpg,https://images.gr-assets.com/books/1443993959s/11312.jpg\n3827,6375845,6375845,16256422,25,1401223176,9781401223180.0,\"Jeph Loeb, Jim Lee, Scott Williams, Alex Sinclair, Richard Starkings\",2002.0,Absolute Batman Hush,Batman: Hush,eng,4.29,24125,26366,1098,206,752,3455,8838,13115,https://images.gr-assets.com/books/1342295000l/6375845.jpg,https://images.gr-assets.com/books/1342295000s/6375845.jpg\n3828,11299,11299,6179815,81,375713271,9780375713280.0,\"Haruki Murakami, Jay Rubin\",2000.0,神の子どもたちはみな踊る,After the Quake,eng,3.78,22682,27483,1932,224,1496,8209,11858,5696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271916l/11299.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3829,6405929,6405929,6594813,60,316018783,9780316018780.0,James Patterson,2009.0,\"I, Alex Cross\",\"I, Alex Cross (Alex Cross, #16)\",eng,3.98,27046,30448,1549,295,1227,7037,12058,9831,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391200811l/6405929.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3830,53498,53498,984829,30,64409597,9780064409600.0,Sharon Creech,2001.0,Love That Dog,\"Love That Dog (Jack, #1)\",en-US,4.01,30254,30977,3482,750,1929,6240,9465,12593,https://images.gr-assets.com/books/1415581593l/53498.jpg,https://images.gr-assets.com/books/1415581593s/53498.jpg\n3831,73864,73864,969470,43,452281903,9780452281900.0,Dave Pelzer,1999.0,A Man Named Dave: A Story of Triumph and Forgiveness,A Man Named Dave (Dave Pelzer #3),en-US,3.87,23605,25649,999,445,1942,6950,7537,8775,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440803504l/73864._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3832,121927,121927,7313984,43,515142816,9780515142820.0,Laurell K. Hamilton,2006.0,\"Danse Macabre (Anita Blake, Vampire Hunter, #14)\",\"Danse Macabre (Anita Blake, Vampire Hunter, #14)\",eng,3.81,36848,39211,806,1596,3750,9051,10973,13841,https://images.gr-assets.com/books/1289499526l/121927.jpg,https://images.gr-assets.com/books/1289499526s/121927.jpg\n3833,40425,40425,1774048,461,809599813,9780809599810.0,Edgar Rice Burroughs,1912.0,Tarzan of the Apes,\"Tarzan of the Apes (Tarzan, #1)\",eng,3.88,27529,32325,1977,558,1970,8236,11543,10018,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349074111l/40425.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3834,127586,127586,2886933,64,345341678,9780345341680.0,Anne McCaffrey,1978.0,\"The White Dragon (Pern: Dragonriders of Pern, #3)\",\"The White Dragon (Pern, #3)\",,4.17,33172,35821,655,174,1022,6685,12640,15300,https://images.gr-assets.com/books/1307994871l/127586.jpg,https://images.gr-assets.com/books/1307994871s/127586.jpg\n3835,26023,26023,26733,12,451221257,9780451221250.0,Jen Lancaster,2007.0,\"Bright Lights, Big Ass: A Self-Indulgent, Surly, Ex-Sorority Girl's Guide to Why it Often Sucks in the City, or Who are These Idiots and Why Do They All Live Next Door to Me?\",\"Bright Lights, Big Ass: A Self-Indulgent, Surly, Ex-Sorority Girl's Guide to Why It Often Sucks in the City, or Who Are These Idiots and Why Do They All Live Next Door to Me?\",eng,4.07,26690,27140,1653,613,1256,4956,9069,11246,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925110l/26023.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3836,74998,74998,1359249,39,074974801X,9780749748010.0,Enid Blyton,1943.0,The Magic Faraway Tree,\"The Magic Faraway Tree (The Faraway Tree, #2)\",eng,4.29,26364,27511,520,423,892,3848,7438,14910,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389353760l/74998.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3837,17650,17650,1119196,74,385491034,9780385491040.0,Margaret Atwood,1993.0,The Robber Bride,The Robber Bride,eng,3.82,29797,31921,1662,438,1812,8559,13396,7716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263287l/17650.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3838,2679633,2679633,2704935,29,044640103X,9780446401040.0,Larissa Ione,2008.0,Pleasure Unbound,\"Pleasure Unbound (Demonica, #1)\",eng,4.07,40836,43009,2267,1049,2062,7466,14769,17663,https://images.gr-assets.com/books/1289064020l/2679633.jpg,https://images.gr-assets.com/books/1289064020s/2679633.jpg\n3839,1388813,1388813,1378890,45,553589393,9780553589400.0,Lara Adrian,2007.0,Midnight Awakening ,\"Midnight Awakening (Midnight Breed, #3)\",eng,4.25,34491,36732,1008,254,953,5598,12419,17508,https://images.gr-assets.com/books/1343539714l/1388813.jpg,https://images.gr-assets.com/books/1343539714s/1388813.jpg\n3840,542639,542639,1666984,14,500275823,9780500275820.0,Robert Hughes,1980.0,The Shock of the New,The Shock of the New,,3.73,21410,21603,100,1785,1809,4452,5889,7668,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175649708l/542639._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3841,1611988,1611988,3062843,52,312379293,9780312379290.0,Jeffrey Archer,2008.0,A Prisoner of Birth,A Prisoner of Birth,en-US,4.09,21932,25192,1865,190,771,4656,10478,9097,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442339900l/1611988._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3842,6424184,6424184,6613427,10,1416983090,9781416983100.0,Christopher Pike,2010.0,Thirst No. 2,\"Thirst No. 2: Phantom, Evil Thirst, and Creatures of Forever (Thirst, #2)\",en-US,4.06,26045,26569,587,979,1795,4803,6131,12861,https://images.gr-assets.com/books/1327900390l/6424184.jpg,https://images.gr-assets.com/books/1327900390s/6424184.jpg\n3843,125963,125963,2564512,38,1595543414,9781595543420.0,Ted Dekker,2003.0,Thr3e,Thr3e,,4.08,24907,26938,1618,512,1268,4975,9064,11119,https://images.gr-assets.com/books/1380856492l/125963.jpg,https://images.gr-assets.com/books/1380856492s/125963.jpg\n3844,347610,347610,937922,38,618001905,9780618001900.0,Adam Hochschild,1998.0,King Leopold's Ghost,King Leopold's Ghost,en-US,4.15,25021,26401,1786,453,901,3910,10021,11116,https://images.gr-assets.com/books/1348621563l/347610.jpg,https://images.gr-assets.com/books/1348621563s/347610.jpg\n3845,10830444,10830444,15744431,42,,,\"James Patterson, David Ellis\",2012.0,Guilty Wives,Guilty Wives,eng,3.82,22665,26625,2530,816,1865,6439,9549,7956,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328322404l/10830444.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3846,12283261,12283261,17259372,31,1451635753,9781451635750.0,\"Jodi Picoult, Samantha van Leer\",2012.0,Between the Lines,\"Between the Lines (Between the Lines, #1)\",eng,3.58,29791,33343,4891,1447,4020,9832,9857,8187,https://images.gr-assets.com/books/1326314890l/12283261.jpg,https://images.gr-assets.com/books/1326314890s/12283261.jpg\n3847,10059498,10059498,14955690,31,778329860,9780778329860.0,Diane Chamberlain,2011.0,The Midwife's Confession,The Midwife's Confession,eng,4.05,24283,28570,2933,290,1003,5411,12249,9617,https://images.gr-assets.com/books/1323870279l/10059498.jpg,https://images.gr-assets.com/books/1323870279s/10059498.jpg\n3848,9635657,9635657,14523019,51,,,Rachel Renée Russell,2011.0,Tales From a Not-So-Talented Pop Star,\"Tales from a Not-So-Talented Pop Star (Dork Diaries, #3)\",eng,4.31,22337,25003,866,532,954,3388,5579,14550,https://images.gr-assets.com/books/1370064614l/9635657.jpg,https://images.gr-assets.com/books/1370064614s/9635657.jpg\n3849,10138607,10138607,15036678,19,375424148,9780375424140.0,Craig Thompson,2011.0,Habibi,Habibi,eng,4.04,27673,28417,2801,935,1624,4927,8831,12100,https://images.gr-assets.com/books/1327899014l/10138607.jpg,https://images.gr-assets.com/books/1327899014s/10138607.jpg\n3850,11093329,11093329,16015218,87,316196991,9780316196990.0,Anthony Horowitz,2011.0,The House of Silk,\"The House of Silk (Sherlock Holmes, #1)\",eng,3.95,23541,29174,3266,551,1256,6201,12330,8836,https://images.gr-assets.com/books/1327877129l/11093329.jpg,https://images.gr-assets.com/books/1327877129s/11093329.jpg\n3851,33808,33808,2319,67,446679097,9780446679090.0,Nelson DeMille,2000.0,The Lion's Game,\"The Lion's Game (John Corey, #2)\",,4.17,23780,26582,1080,215,682,4064,10942,10679,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440720718l/33808._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3852,9761778,9761778,14651130,23,1937053148,9781937053150.0,Jennifer L. Armentrout,2012.0,Deity,\"Deity (Covenant, #3)\",eng,4.41,39069,41597,2952,451,835,4202,12021,24088,https://images.gr-assets.com/books/1323658176l/9761778.jpg,https://images.gr-assets.com/books/1323658176s/9761778.jpg\n3854,6236809,6236809,6419529,13,1421527642,9781421527640.0,\"Kanoko Sakurakouji, JN Productions, Pancha Diaz\",2007.0,\"Black Bird, Volume 1\",\"Black Bird, Vol. 01 (Black Bird, #1)\",eng,4.08,27196,27291,483,1182,1762,4473,6150,13724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348717424l/6236809.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3855,28678119,28678119,48870448,34,,,\"Erin Watt, Elle Kennedy, Jen Frederick\",2016.0,Paper Princess,\"Paper Princess (The Royals, #1)\",eng,4.08,34831,41366,5460,1456,2164,6381,12999,18366,https://images.gr-assets.com/books/1476744953l/28678119.jpg,https://images.gr-assets.com/books/1476744953s/28678119.jpg\n3856,37426,37426,828476,45,312315732,9780312315730.0,Tom Perrotta,2004.0,Little Children,Little Children,,3.61,24109,26333,2100,600,2405,8214,10664,4450,https://images.gr-assets.com/books/1327556734l/37426.jpg,https://images.gr-assets.com/books/1327556734s/37426.jpg\n3857,99894,99894,815712,81,394402677,9780394402670.0,Ira Levin,1976.0,The Boys from Brazil,The Boys from Brazil,eng,4.05,25448,27308,552,160,818,5776,11165,9389,https://images.gr-assets.com/books/1328882615l/99894.jpg,https://images.gr-assets.com/books/1328882615s/99894.jpg\n3858,884288,884288,22431183,69,61056901,9780061056900.0,Terry Pratchett,1994.0,Interesting Times,\"Interesting Times (Discworld, #17; Rincewind #5)\",en-US,4.17,26733,31905,667,126,661,5613,12693,12812,https://images.gr-assets.com/books/1430881376l/884288.jpg,https://images.gr-assets.com/books/1430881376s/884288.jpg\n3859,2003625,2003625,2007518,36,1416576754,9781416576750.0,Kresley Cole,2008.0,Dark Desires After Dusk,Dark Desires After Dusk (Immortals After Dark #6),en-CA,4.38,35300,37539,1138,145,617,4334,12218,20225,https://images.gr-assets.com/books/1327887013l/2003625.jpg,https://images.gr-assets.com/books/1327887013s/2003625.jpg\n3861,13330603,13330603,18538253,25,385534795,9780385534800.0,Chris Bohjalian,2012.0,The Sandcastle Girls,The Sandcastle Girls,,3.86,26623,29203,4212,503,1602,6820,12702,7576,https://images.gr-assets.com/books/1332018541l/13330603.jpg,https://images.gr-assets.com/books/1332018541s/13330603.jpg\n3862,7091713,7091713,7241833,27,451229738,9780451229730.0,\"Rachel Caine, Cynthia Holloway\",2010.0,Kiss of Death,\"Kiss of Death (The Morganville Vampires, #8)\",eng,4.22,33464,35314,980,327,1116,6065,10828,16978,https://images.gr-assets.com/books/1270564957l/7091713.jpg,https://images.gr-assets.com/books/1270564957s/7091713.jpg\n3863,17828418,17828418,24941747,32,162704017X,9781627040170.0,Laurelin Paige,2013.0,Fixed on You,\"Fixed on You (Fixed, #1)\",eng,4.16,37797,42149,2460,549,1431,6719,15473,17977,https://images.gr-assets.com/books/1368076802l/17828418.jpg,https://images.gr-assets.com/books/1368076802s/17828418.jpg\n3864,3173558,3173558,3206010,15,759529515,9780759529520.0,\"James Patterson, NaRae Lee\",2009.0,\"Maximum Ride: The Manga, Vol. 1\",\"Maximum Ride, Vol. 1 (Maximum Ride: The Manga, #1)\",eng,4.24,26254,26495,1106,647,1208,3910,6128,14602,https://images.gr-assets.com/books/1299863638l/3173558.jpg,https://images.gr-assets.com/books/1299863638s/3173558.jpg\n3865,12099007,12099007,17067735,72,1455806935,9781455806940.0,\"Nora Roberts, MacLeod Andrews\",2012.0,The Last Boyfriend,\"The Last Boyfriend (Inn BoonsBoro, #2)\",eng,4.06,26861,34274,2098,216,1230,7349,12983,12496,https://images.gr-assets.com/books/1334384607l/12099007.jpg,https://images.gr-assets.com/books/1334384607s/12099007.jpg\n3866,10776592,10776592,15688402,53,156947981X,9781569479810.0,\"Lene Kaaberbøl, Agnete Friis\",2008.0,Drengen i kufferten,\"The Boy in the Suitcase (Nina Borg, #1)\",eng,3.6,21666,27066,2907,700,2179,8978,10626,4583,https://images.gr-assets.com/books/1320545877l/10776592.jpg,https://images.gr-assets.com/books/1320545877s/10776592.jpg\n3867,22571552,22571552,43062778,41,1594487138,9781594487130.0,Jon Ronson,2015.0,So You’ve Been Publicly Shamed,So You've Been Publicly Shamed,eng,3.91,22484,27846,3335,371,1098,6251,12947,7179,https://images.gr-assets.com/books/1413749614l/22571552.jpg,https://images.gr-assets.com/books/1413749614s/22571552.jpg\n3868,81779,81779,1488719,458,140449272,9780140449270.0,\"Plato, Christopher Gill\",-385.0,Συμπόσιον,The Symposium,eng,4.01,22413,28002,914,367,1425,5939,10145,10126,https://images.gr-assets.com/books/1359922039l/81779.jpg,https://images.gr-assets.com/books/1359922039s/81779.jpg\n3869,11711,11711,426037,60,571215165,9780571215160.0,D.B.C. Pierre,2003.0,Vernon God Little,Vernon God Little,eng,3.58,22284,24473,1180,1298,2534,6613,8700,5328,https://images.gr-assets.com/books/1339082247l/11711.jpg,https://images.gr-assets.com/books/1339082247s/11711.jpg\n3870,76867,76867,3094994,98,446667900,9780446667910.0,Michael Connelly,2000.0,A Darkness More Than Night,\"A Darkness More Than Night (Harry Bosch, #7; Terry McCaleb, #2; Harry Bosch Universe, #9)\",eng,4.12,25552,31123,1151,137,609,5609,13854,10914,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437930956l/76867._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3871,80670,80670,2908333,52,142408794,9780142408800.0,Judy Blume,1972.0,Otherwise Known as Sheila the Great,Otherwise Known as Sheila the Great (Fudge #2),,3.94,31847,33148,602,369,1552,8886,11265,11076,https://images.gr-assets.com/books/1416181295l/80670.jpg,https://images.gr-assets.com/books/1416181295s/80670.jpg\n3872,58098,58098,505856,27,684843269,9780684843260.0,Ntozake Shange,1975.0,For Colored Girls Who Have Considered Suicide When the Rainbow Is Enuf ,for colored girls who have considered suicide/when the rainbow is enuf,en-US,4.27,24288,24834,575,341,760,3590,7369,12774,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524175075l/58098._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3873,26236956,26236956,46227741,46,399175164,9780399175170.0,Nora Roberts,2016.0,The Obsession,The Obsession,eng,4.18,25318,37511,3257,909,1343,5262,12585,17412,https://images.gr-assets.com/books/1444838367l/26236956.jpg,https://images.gr-assets.com/books/1444838367s/26236956.jpg\n3874,30228,30228,2722196,28,515140872,9780515140870.0,Laurell K. Hamilton,2006.0,\"Micah (Anita Blake, Vampire Hunter, #13)\",\"Micah (Anita Blake, Vampire Hunter, #13)\",en-US,3.62,37410,38534,842,2323,4989,9990,9063,12169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403105892l/30228.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3875,7060582,7060582,7312508,22,451230647,9780451230640.0,Chloe Neill,2010.0,Twice Bitten ,\"Twice Bitten (Chicagoland Vampires, #3)\",eng,4.23,38287,40583,1525,384,1123,6234,14041,18801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441494976l/7060582._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3876,320167,320167,865958,88,751525359,9780751525360.0,Patricia Cornwell,2000.0,The Last Precinct,\"The Last Precinct (Kay Scarpetta, #11)\",eng,3.83,26250,28674,440,404,1819,8031,10437,7983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348336603l/320167.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3877,10047589,10047589,14943502,22,307596850,9780307596860.0,Jennifer Close,2011.0,Girls in White Dresses,Girls in White Dresses,eng,3.12,25167,27866,2984,2392,5526,9757,6717,3474,https://images.gr-assets.com/books/1320442277l/10047589.jpg,https://images.gr-assets.com/books/1320442277s/10047589.jpg\n3878,92780,92780,847348,60,143039598,9780143039590.0,\"Stella Gibbons, Lynne Truss, Roz Chast\",1932.0,Cold Comfort Farm,Cold Comfort Farm,eng,3.92,28260,33239,2520,740,1975,7461,12189,10874,https://images.gr-assets.com/books/1416161594l/92780.jpg,https://images.gr-assets.com/books/1416161594s/92780.jpg\n3879,12842134,12842134,17992883,41,,,Gayle Forman,2013.0,Just One Year,\"Just One Year (Just One Day, #2)\",eng,3.9,31517,34354,3763,656,2160,8039,12649,10850,https://images.gr-assets.com/books/1375129683l/12842134.jpg,https://images.gr-assets.com/books/1375129683s/12842134.jpg\n3880,17876897,17876897,25032522,58,1250109302,9781250109310.0,Sylvia Day,2016.0,One With You,\"One with You (Crossfire, #5)\",eng,4.04,29564,38501,4023,1026,2321,7060,11734,16360,https://images.gr-assets.com/books/1458742883l/17876897.jpg,https://images.gr-assets.com/books/1458742883s/17876897.jpg\n3883,33458,33458,1573176,39,60735457,9780060735460.0,Christopher Moore,1999.0,The Lust Lizard of Melancholy Cove,\"The Lust Lizard of Melancholy Cove (Pine Cove, #2)\",en-US,3.85,26312,27603,1195,232,1410,7793,10969,7199,https://images.gr-assets.com/books/1168444147l/33458.jpg,https://images.gr-assets.com/books/1168444147s/33458.jpg\n3884,154091,154091,1263322,63,553281747,9780553281740.0,William Gibson,1988.0,Mona Lisa Overdrive,\"Mona Lisa Overdrive (Sprawl, #3)\",eng,3.97,26410,28511,611,147,942,6865,12193,8364,https://images.gr-assets.com/books/1374778887l/154091.jpg,https://images.gr-assets.com/books/1374778887s/154091.jpg\n3886,18553,18553,2351167,41,044022912X,9780440229120.0,Theodore Taylor,1969.0,The Cay,\"The Cay (The Cay, #1)\",en-US,3.74,25832,27304,2041,855,2358,7433,9173,7485,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197101l/18553.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3888,3238153,3238153,3272800,14,316025054,9780316025060.0,Justina Chen,2009.0,North of Beautiful,North of Beautiful,en-US,3.92,32034,32800,2110,1063,2329,6939,10229,12240,https://images.gr-assets.com/books/1479868327l/3238153.jpg,https://images.gr-assets.com/books/1479868327s/3238153.jpg\n3889,77554,77554,1820281,71,014023313X,9780140233130.0,Carol Shields,1993.0,The Stone Diaries,The Stone Diaries,eng,3.84,27989,30095,1459,572,1931,7485,11710,8397,https://images.gr-assets.com/books/1285159303l/77554.jpg,https://images.gr-assets.com/books/1285159303s/77554.jpg\n3890,838917,18054709,16419428,27,736908552,9780736908560.0,Stormie Omartian,1997.0,The Power of a Praying Woman,The Power of a Praying Woman,,4.38,10970,20872,183,208,483,2643,5376,12162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178808089l/838917._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3891,1087075,1087075,1402076,38,312364687,9780312364690.0,Beth Harbison,2007.0,Shoe Addicts Anonymous ,\"Shoe Addicts Anonymous (Shoe Addict, #1)\",eng,3.57,24029,24866,882,1259,2686,7556,7451,5914,https://images.gr-assets.com/books/1311992714l/1087075.jpg,https://images.gr-assets.com/books/1311992714s/1087075.jpg\n3892,124509,124509,2607049,140,385315147,9780385315140.0,\"Peter Høeg, Tiina Nunnally\",1992.0,Frøken Smillas fornemmelse for sne,Smilla's Sense of Snow,eng,3.73,25868,31843,1764,956,2633,8240,12347,7667,https://images.gr-assets.com/books/1485595488l/124509.jpg,https://images.gr-assets.com/books/1485595488s/124509.jpg\n3893,135611,135611,892448,58,60740221,9780060740220.0,Bill Bryson,2007.0,Shakespeare: The World as Stage ,Shakespeare: The World as Stage,en-US,3.79,25343,29299,2327,700,1626,8001,11844,7128,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434075816l/135611._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3894,9282,9282,26163,47,440235162,9780440235160.0,Nicholas Evans,2001.0,The Smoke Jumper,The Smoke Jumper,eng,4.05,25668,26423,686,372,1080,5498,9437,10036,https://images.gr-assets.com/books/1403193693l/9282.jpg,https://images.gr-assets.com/books/1403193693s/9282.jpg\n3895,4570768,4570768,4620119,22,803733569,9780803733560.0,Julia Hoban,2009.0,Willow,Willow,en-US,3.94,28342,29766,1908,1030,2217,6034,8645,11840,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428890977l/4570768.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3896,56073,56073,480368,58,743222253,9780743222260.0,Hillary Rodham Clinton,2003.0,Living History,Living History,en-US,3.75,23870,24813,953,939,1726,6602,8830,6716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442705677l/56073._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3897,106076,106076,1399464,23,1563898683,9781563898690.0,\"Jeph Loeb, Tim Sale\",2000.0,Batman: Dark Victory,Batman: Dark Victory,eng,4.11,22838,23600,591,286,804,4184,8980,9346,https://images.gr-assets.com/books/1327940341l/106076.jpg,https://images.gr-assets.com/books/1327940341s/106076.jpg\n3898,7821828,7821828,10861805,64,374105979,9780374105980.0,Edmund de Waal,2009.0,The Hare with Amber Eyes: A Family's Century of Art and Loss,The Hare With Amber Eyes: A Family's Century of Art and Loss,eng,3.85,21885,26024,2602,1302,2052,5240,8148,9282,https://images.gr-assets.com/books/1316730175l/7821828.jpg,https://images.gr-assets.com/books/1316730175s/7821828.jpg\n3899,76664,76664,2501416,46,034525855X,9780345258560.0,Piers Anthony,1977.0,A Spell for Chameleon,A Spell for Chameleon (Xanth #1),,3.93,29962,32601,1242,520,1699,7899,11888,10595,https://images.gr-assets.com/books/1476435403l/76664.jpg,https://images.gr-assets.com/books/1476435403s/76664.jpg\n3900,857501,857501,19838,13,679890483,9780679890480.0,\"Al Perkins, Eric Gurney\",1969.0,\"Hand, Hand, Fingers, Thumb\",\"Hand, Hand, Fingers, Thumb\",,4.22,24029,24508,364,401,1090,4246,5843,12928,https://images.gr-assets.com/books/1397803649l/857501.jpg,https://images.gr-assets.com/books/1397803649s/857501.jpg\n3901,11861062,11861062,16484218,58,385742371,9780385742380.0,Lissa Price,2012.0,Starters,\"Starters (Starters, #1)\",eng,3.91,32143,35524,4102,720,2174,8127,13140,11363,https://images.gr-assets.com/books/1358435131l/11861062.jpg,https://images.gr-assets.com/books/1358435131s/11861062.jpg\n3902,1611656,1611656,1605350,31,141654707X,9781416547080.0,Kresley Cole,2008.0,Dark Needs at Night's Edge,Dark Needs at Night's Edge (Immortals After Dark #5),eng,4.32,36250,38554,1199,181,824,5181,12532,19836,https://images.gr-assets.com/books/1357613946l/1611656.jpg,https://images.gr-assets.com/books/1357613946s/1611656.jpg\n3903,38787,38787,1786290,155,802133908,9780802133910.0,\"Juan Rulfo, Margaret Sayers Peden, Susan Sontag\",1955.0,Pedro Páramo,Pedro Páramo,eng,4.04,20450,26383,1716,570,1544,4921,8656,10692,https://images.gr-assets.com/books/1500663791l/38787.jpg,https://images.gr-assets.com/books/1500663791s/38787.jpg\n3904,77391,77391,1404690,166,553213156,9780553213160.0,L.M. Montgomery,1939.0,Anne of Ingleside,\"Anne of Ingleside (Anne of Green Gables, #6)\",en-US,4.05,36641,38569,814,249,1593,8660,13635,14432,https://images.gr-assets.com/books/1285712495l/77391.jpg,https://images.gr-assets.com/books/1285712495s/77391.jpg\n3905,1779929,1779929,2328657,30,1401303366,9781401303360.0,Kelly Corrigan,2005.0,The Middle Place,The Middle Place,,3.85,24282,25515,2842,324,1523,6778,10004,6886,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347969743l/1779929.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3906,43928,43928,14597342,71,385340605,9780385340600.0,Harlan Coben,1995.0,Deal Breaker,Deal Breaker (Myron Bolitar #1),eng,3.94,28921,34124,1851,511,1181,7784,14873,9775,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389110688l/43928.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3907,34080,34080,389834,157,393974995,9780393975000.0,\"T.S. Eliot, Michael North\",1922.0,The Waste Land,The Waste Land,eng,4.11,29008,31657,718,727,1526,5361,9983,14060,https://images.gr-assets.com/books/1327910597l/34080.jpg,https://images.gr-assets.com/books/1327910597s/34080.jpg\n3908,22875451,22875451,42439906,13,1455557102,9781455557100.0,\"Heather Cocks, Jessica  Morgan\",2015.0,The Royal We,The Royal We,eng,3.8,25312,28583,4222,751,1929,7071,11415,7417,https://images.gr-assets.com/books/1421107274l/22875451.jpg,https://images.gr-assets.com/books/1421107274s/22875451.jpg\n3909,861326,861326,3363,50,380815575,9780380815580.0,Julia Quinn,2000.0,The Viscount Who Loved Me,\"The Viscount Who Loved Me (Bridgertons, #2)\",eng,4.19,35591,38804,1577,167,866,6518,15189,16064,https://images.gr-assets.com/books/1379594308l/861326.jpg,https://images.gr-assets.com/books/1379594308s/861326.jpg\n3910,9531,9531,3204657,42,078683787X,9780786837880.0,\"Dave Barry, Ridley Pearson, Greg Call\",2006.0,Peter and the Shadow Thieves,\"Peter and the Shadow Thieves (Peter and the Starcatchers, #2)\",en-US,4.15,29555,30821,1289,310,951,5480,11230,12850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441850204l/9531._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3911,531989,531989,3230496,50,1573226068,9781573226070.0,Junot Díaz,1996.0,Drown,Drown,,4.05,23295,25110,2031,189,850,4736,11089,8246,https://images.gr-assets.com/books/1313700390l/531989.jpg,https://images.gr-assets.com/books/1313700390s/531989.jpg\n3913,28634,28634,2776625,105,057114456X,9780571144560.0,Milan Kundera,1990.0,Nesmrtelnost,Immortality,en-US,4.12,18574,23114,1180,206,859,4186,8619,9244,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388507539l/28634.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3914,15793074,15793074,21503547,43,125000098X,9781250000990.0,Jeffrey Archer,2013.0,Best Kept Secret,\"Best Kept Secret (The Clifton Chronicles, #3)\",eng,3.94,18673,26496,1980,240,1094,6448,11057,7657,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388637155l/15793074.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3915,910863,910863,47562,27,076534825X,9780765348260.0,Robert Charles Wilson,2005.0,Spin,\"Spin (Spin, #1)\",en-US,4.01,26015,28088,1851,303,1192,5673,11716,9204,https://images.gr-assets.com/books/1406383726l/910863.jpg,https://images.gr-assets.com/books/1406383726s/910863.jpg\n3916,12083,12083,809292,57,300093055,9780300093060.0,Eugene O'Neill,1956.0,Long Day's Journey Into Night,Long Day's Journey Into Night,eng,4.07,27215,28590,669,479,1403,5394,9803,11511,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252659l/12083.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3917,74928,74928,2099558,24,159307056X,9781593070560.0,\"Kohta Hirano, Duane Johnson\",1998.0,ヘルシング 1,\"Hellsing, Vol. 01 (Hellsing, #1)\",eng,4.28,23895,24032,235,442,883,3443,6063,13201,https://images.gr-assets.com/books/1403205185l/74928.jpg,https://images.gr-assets.com/books/1403205185s/74928.jpg\n3918,228261,228261,122831,36,842329250,9780842329260.0,\"Tim LaHaye, Jerry B. Jenkins\",1998.0,Soul Harvest: The World Takes Sides,\"Soul Harvest: The World Takes Sides (Left Behind, #4)\",en-US,3.95,25675,26752,451,647,1595,6083,8553,9874,https://images.gr-assets.com/books/1406513506l/228261.jpg,https://images.gr-assets.com/books/1406513506s/228261.jpg\n3919,123106,123106,2019821,24,670061018,9780670061010.0,Laurie Halse Anderson,2007.0,Twisted,Twisted,eng,3.83,29573,30650,2727,534,2228,8166,10852,8870,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347459741l/123106.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3920,4692,4692,1612436,120,751503894,9780751503890.0,Noah Gordon,1986.0,The Physician,\"The Physician (Cole Family Trilogy, #1)\",eng,4.35,19310,25952,1369,199,595,2884,8579,13695,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389582565l/4692.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3921,21337,21337,4809336,46,141591561X,9781415915620.0,\"Dean Koontz, Kevin J. Anderson, Scott Brick\",2005.0,Dean Koontz's Frankenstein: Prodigal Son,\"Prodigal Son (Dean Koontz's Frankenstein, #1)\",eng,4.01,25871,29075,1403,403,1340,6147,10855,10330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167321609l/21337._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3922,122125,122125,1268257,25,590316818,9780590316810.0,\"Jane Yolen, Mark Teague\",2000.0,How Do Dinosaurs Say Goodnight?,How Do Dinosaurs Say Good Night?,eng,4.13,27968,28188,584,360,1260,5582,8101,12885,https://images.gr-assets.com/books/1278431558l/122125.jpg,https://images.gr-assets.com/books/1278431558s/122125.jpg\n3923,867247,867247,1318780,77,517415283,9780517415280.0,\"Miyamoto Musashi, Victor Harris\",1645.0,五輪書 [Go Rin no Sho],A Book of Five Rings: The Classic Guide to Strategy,,4.09,19246,24699,959,234,1070,4903,8431,10061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440367630l/867247._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3924,281433,281433,2575902,49,345405137,9780345405140.0,Dean Koontz,1996.0,Ticktock,Tick Tock,,3.71,25679,27621,839,799,2307,8096,9241,7178,https://images.gr-assets.com/books/1310582919l/281433.jpg,https://images.gr-assets.com/books/1310582919s/281433.jpg\n3925,573201,573201,41691,60,553278002,9780553278000.0,Robert Ludlum,1988.0,The Icarus Agenda,The Icarus Agenda,en-US,3.93,24170,24573,129,199,905,6541,9780,7148,https://images.gr-assets.com/books/1403167832l/573201.jpg,https://images.gr-assets.com/books/1403167832s/573201.jpg\n3926,7098304,7098304,7355830,25,1439123128,9781439123130.0,Kresley Cole,2010.0,Demon From the Dark ,Demon from the Dark (Immortals After Dark #10),eng,4.47,34257,36412,1257,142,518,3305,10591,21856,https://images.gr-assets.com/books/1357611692l/7098304.jpg,https://images.gr-assets.com/books/1357611692s/7098304.jpg\n3927,18108281,18108281,24749971,39,,,J.R. Ward,2014.0,The King,\"The King (Black Dagger Brotherhood, #12)\",eng,4.37,17398,38218,4240,265,957,4500,11290,21206,https://images.gr-assets.com/books/1371919011l/18108281.jpg,https://images.gr-assets.com/books/1371919011s/18108281.jpg\n3928,21031,21031,162267,105,60748125,9780060748130.0,Irvin D. Yalom,1992.0,When Nietzsche Wept: A Novel of Obsession,When Nietzsche Wept,eng,4.25,18054,25419,1316,239,763,3396,8956,12065,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388423612l/21031.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3929,365990,365990,1930437,54,394574753,9780394574750.0,Cormac McCarthy,1994.0,The Crossing ,\"The Crossing (The Border Trilogy, #2)\",eng,4.11,21586,23936,1526,177,775,4254,9658,9072,https://images.gr-assets.com/books/1327197531l/365990.jpg,https://images.gr-assets.com/books/1327197531s/365990.jpg\n3930,19068,19068,2919427,447,140449493,9780140449500.0,\"Aristotle, J.A.K. Thomson, Jonathan Barnes, Hugh Tredennick\",-350.0,Ἠθικὰ Νικομάχεια ,The Nicomachean Ethics,eng,3.91,19380,25469,626,534,1557,6091,8682,8605,https://images.gr-assets.com/books/1472992134l/19068.jpg,https://images.gr-assets.com/books/1472992134s/19068.jpg\n3932,29802,29802,30222,30,193266422X,9781932664220.0,Bryan Lee O'Malley,2006.0,\"Scott Pilgrim, Volume 3: Scott Pilgrim & The Infinite Sadness\",\"Scott Pilgrim, Volume 3: Scott Pilgrim & The Infinite Sadness\",,4.29,28569,30451,986,102,564,4154,11228,14403,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348130575l/29802.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3933,14990,14990,2398507,34,393329127,9780393329120.0,Mary Roach,2005.0,Spook: Science Tackles the Afterlife,Spook: Science Tackles the Afterlife,en-US,3.57,26306,27737,2306,802,3023,9144,9144,5624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401287778l/14990.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3934,171547,171547,24839,182,1420925806,9781420925810.0,William Blake,1789.0,Songs of Innocence and of Experience,Songs of Innocence and of Experience,en-US,4.11,26608,29506,541,336,1263,5566,10005,12336,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348408738l/171547.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3935,306364,306364,1823893,50,312351623,9780312351620.0,Lisa Kleypas,2007.0,Sugar Daddy,\"Sugar Daddy (Travises, #1)\",en-US,4.0,31604,33684,1756,827,1747,6702,11692,12716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442765007l/306364._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3936,900065,900065,1405163,20,394856392,9780394856390.0,\"Stan Berenstain, Jan Berenstain\",1983.0,The Berenstain Bears and the Messy Room,The Berenstain Bears and the Messy Room,en-US,4.16,27997,28111,207,393,1093,5710,7224,13691,https://images.gr-assets.com/books/1344371748l/900065.jpg,https://images.gr-assets.com/books/1344371748s/900065.jpg\n3937,349473,349473,1322982,78,141655484X,9781416554840.0,\"Richard Bachman, Stephen King\",2007.0,Blaze,Blaze,en-US,3.65,27673,30127,1230,620,2684,10146,9697,6980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442600647l/349473._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3938,286507,286507,2987777,43,345363310,9780345363310.0,David Eddings,1988.0,Demon Lord of Karanda,\"Demon Lord of Karanda (The Malloreon, #3)\",en-US,4.05,30618,32305,213,177,1195,7264,11949,11720,https://images.gr-assets.com/books/1342528740l/286507.jpg,https://images.gr-assets.com/books/1342528740s/286507.jpg\n3939,2693801,2693801,2719129,57,500237514,9780500237520.0,\"H.W. Janson, Anthony F. Janson\",1962.0,History of Art,History of Art,eng,3.8,22146,22534,96,1695,1709,4555,5994,8581,https://images.gr-assets.com/books/1330064588l/2693801.jpg,https://images.gr-assets.com/books/1330064588s/2693801.jpg\n3940,7202831,7202831,7897982,67,034551548X,9780345515480.0,Tess Gerritsen,2010.0,Ice Cold,\"Ice Cold (Rizzoli & Isles, #8)\",en-US,4.14,24651,30184,1831,161,724,5467,12104,11728,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441916230l/7202831.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3941,68520,68520,115813,80,312156960,9780312156960.0,Bernard Cornwell,1995.0,The Winter King,\"The Winter King (The Warlord Chronicles, #1)\",eng,4.27,23540,27374,1166,217,615,3704,9852,12986,https://images.gr-assets.com/books/1311987677l/68520.jpg,https://images.gr-assets.com/books/1311987677s/68520.jpg\n3942,59969,59969,272524,40,1593072945,9781593072940.0,Frank Miller,1993.0,Sin City: A Dame to Kill For,\"Sin City, Vol. 2: A Dame to Kill For (Sin City, #2)\",eng,4.16,23170,24012,386,251,720,3961,9097,9983,https://images.gr-assets.com/books/1470924735l/59969.jpg,https://images.gr-assets.com/books/1470924735s/59969.jpg\n3943,544424,544424,531712,24,738710180,9780738710180.0,Simone Elkeles,2007.0,Leaving Paradise,\"Leaving Paradise (Leaving Paradise, #1)\",eng,4.02,37323,38657,2292,688,2184,7723,13132,14930,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207436l/544424.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3944,475276,475276,463514,13,159182799X,9781591827990.0,Yukiru Sugisaki,1997.0,ディー・エヌ・エンジェル 1,\"D.N.Angel, Vol. 1 (D.N.Angel, #1)\",en-US,4.01,25247,25424,137,689,1837,5301,6275,11322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429639856l/475276.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3945,226791,226791,3181762,80,446604844,9780446604840.0,David Baldacci,1996.0,Total Control,Total Control,en-US,4.06,24438,26728,663,214,728,5604,11006,9176,https://images.gr-assets.com/books/1344266875l/226791.jpg,https://images.gr-assets.com/books/1344266875s/226791.jpg\n3946,6411016,6411016,6599953,49,979528534,9780979528540.0,Karl Marlantes,2009.0,Matterhorn: A Novel of the Vietnam War,Matterhorn,eng,4.25,22525,26574,2664,509,907,3153,8970,13035,https://images.gr-assets.com/books/1431983015l/6411016.jpg,https://images.gr-assets.com/books/1431983015s/6411016.jpg\n3947,2159225,2159225,2927650,38,316057800,9780316057810.0,\"Trenton Lee Stewart, Diana Sudyka\",2008.0,The Mysterious Benedict Society and the Perilous Journey,\"The Mysterious Benedict Society and the Perilous Journey (The Mysterious Benedict Society, #2)\",en-US,4.19,31395,33844,2145,237,879,5610,12486,14632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442804083l/2159225._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3948,37526,37526,1493394,599,743484878,9780743484880.0,\"William Shakespeare, Barbara A. Mowat, Paul Werstine\",1599.0,The Cronicle History of Henry the fift,Henry V,eng,3.87,29341,33067,941,575,2457,8314,11156,10565,https://images.gr-assets.com/books/1331563646l/37526.jpg,https://images.gr-assets.com/books/1331563646s/37526.jpg\n3949,19083,19083,14746717,355,486414248,9780486414250.0,Aristotle,-350.0,Politics,Politics,eng,3.91,22128,24041,289,439,1424,5899,8275,8004,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391135988l/19083.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3950,522776,522776,2712410,74,553805460,9780553805470.0,Jordan Belfort,2007.0,The Wolf of Wall Street,The Wolf of Wall Street,eng,3.67,18289,22765,1915,965,2221,5972,7835,5772,https://images.gr-assets.com/books/1320489812l/522776.jpg,https://images.gr-assets.com/books/1320489812s/522776.jpg\n3951,174834,174834,2723088,55,684815001,9780684815010.0,Dietrich Bonhoeffer,1937.0,Nachfolge,The Cost of Discipleship,eng,4.35,23544,24401,807,198,555,2801,7717,13130,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281510l/174834.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3952,29430012,29430012,45743836,29,670026190,9780670026200.0,Amor Towles,2016.0,A Gentleman in Moscow,A Gentleman in Moscow,eng,4.37,33394,46320,7226,517,1244,4654,14274,25631,https://images.gr-assets.com/books/1459524472l/29430012.jpg,https://images.gr-assets.com/books/1459524472s/29430012.jpg\n3953,6792458,6792458,6996712,18,1595581030,9781595581040.0,Michelle Alexander,2010.0,The New Jim Crow: Mass Incarceration in the Age of Colorblindness,The New Jim Crow: Mass Incarceration in the Age of Colorblindness,eng,4.49,23205,27002,3438,186,432,2003,7860,16521,https://images.gr-assets.com/books/1328751532l/6792458.jpg,https://images.gr-assets.com/books/1328751532s/6792458.jpg\n3954,32585,32585,3135610,53,486431681,9780486431680.0,\"Knut Hamsun, George Egerton\",1890.0,Sult,Hunger,eng,4.09,21394,28142,1932,369,1275,4849,10474,11175,https://images.gr-assets.com/books/1456243307l/32585.jpg,https://images.gr-assets.com/books/1456243307s/32585.jpg\n3955,18465852,18465852,26124107,28,385350848,9780385350850.0,Cristina Henriquez,2014.0,The Book of Unknown Americans,The Book of Unknown Americans,eng,3.85,22461,25028,3233,277,1209,6327,11344,5871,https://images.gr-assets.com/books/1413655729l/18465852.jpg,https://images.gr-assets.com/books/1413655729s/18465852.jpg\n3957,64865,64865,1963457,73,312939000,9780312939010.0,Sue Grafton,1985.0,B is for Burglar,\"B is for Burglar  (Kinsey Millhone, #2)\",eng,3.83,32733,35653,1233,176,1344,11237,14412,8484,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789165l/64865.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3958,3289281,3289281,3325741,50,316154857,9780316154860.0,Kate Atkinson,2008.0,When Will There Be Good News?,\"When Will There Be Good News? (Jackson Brodie, #3)\",en-US,3.97,25366,28875,2637,366,1096,5875,13164,8374,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441378919l/3289281._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3959,3134981,3134981,3166405,24,1401215815,9781401215810.0,\"Brian Azzarello, Lee Bermejo\",2008.0,Joker,The Joker,eng,4.04,23033,23967,764,438,1351,4656,7782,9740,https://images.gr-assets.com/books/1334501983l/3134981.jpg,https://images.gr-assets.com/books/1334501983s/3134981.jpg\n3960,359375,359375,349497,80,1401359795,9781401359800.0,\"Sergei Lukyanenko, Andrew Bromfield\",1998.0,Ночной дозор ,Night Watch (Watch #1),eng,3.97,25574,32363,1834,503,1708,6635,12853,10664,https://images.gr-assets.com/books/1351342315l/359375.jpg,https://images.gr-assets.com/books/1351342315s/359375.jpg\n3961,17402288,17402288,24237023,34,385350813,9780385350820.0,Jenny Offill,2014.0,Dept. of Speculation,Dept. of Speculation,eng,3.72,20253,24533,3938,776,2257,6130,9259,6111,https://images.gr-assets.com/books/1367929545l/17402288.jpg,https://images.gr-assets.com/books/1367929545s/17402288.jpg\n3962,22544024,22544024,41824847,10,451419928,9780451419930.0,Susan Meissner,2015.0,Secrets of a Charmed Life,Secrets of a Charmed Life,eng,4.17,21375,25643,3102,236,569,3741,11265,9832,https://images.gr-assets.com/books/1403809486l/22544024.jpg,https://images.gr-assets.com/books/1403809486s/22544024.jpg\n3963,85448,85448,517820,52,553268929,9780553268930.0,Pat Conroy,1976.0,The Great Santini,The Great Santini,eng,4.13,22921,25196,971,220,743,4387,10145,9701,https://images.gr-assets.com/books/1442599829l/85448.jpg,https://images.gr-assets.com/books/1442599829s/85448.jpg\n3964,51606,51606,180461,77,806512814,9780806512820.0,Dalton Trumbo,1939.0,Johnny Got His Gun,Johnny Got His Gun,eng,4.16,24871,27071,1767,463,1053,4303,9131,12121,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925458l/51606.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3965,32502,32502,2449470,93,446607274,9780446607280.0,Michael Connelly,1999.0,Angels Flight,\"Angels Flight (Harry Bosch, #6; Harry Bosch Universe, #7)\",eng,4.13,25469,30538,1207,61,488,5280,14394,10315,https://images.gr-assets.com/books/1440615586l/32502.jpg,https://images.gr-assets.com/books/1440615586s/32502.jpg\n3966,4909,4909,3060322,71,743243781,9780743243780.0,Frank McCourt,2005.0,Teacher Man,\"Teacher Man (Frank McCourt, #3)\",en-CA,3.73,23736,26183,2065,398,1970,7967,9765,6083,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441149612l/4909._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3967,5489684,5489684,5557331,7,006177894X,9780061778940.0,Ellen Schreiber,2008.0,Vampire Kisses: The Beginning (Vampire Kisses Omnibus),\"Vampire Kisses: The Beginning (Vampire Kisses, #1-3)\",en-US,4.12,25698,25846,480,834,1665,4526,5274,13547,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442934678l/5489684._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3968,9307674,9307674,14190669,41,1423161610,9781423161620.0,Eoin Colfer,2012.0,The Last Guardian,\"The Last Guardian (Artemis Fowl, #8)\",eng,4.15,34459,36931,1983,689,1474,6129,11925,16714,https://images.gr-assets.com/books/1330969364l/9307674.jpg,https://images.gr-assets.com/books/1330969364s/9307674.jpg\n3969,414895,414895,2939507,129,345447980,9780345447980.0,\"Pierre Boulle, Xan Fielding\",1963.0,La planète des singes,Planet of the Apes,eng,3.91,22742,26274,1025,490,1408,6465,9507,8404,https://images.gr-assets.com/books/1320558901l/414895.jpg,https://images.gr-assets.com/books/1320558901s/414895.jpg\n3970,7600922,7600922,10018961,28,451231619,9780451231610.0,Rachel Caine,2010.0,Ghost Town,\"Ghost Town (The Morganville Vampires, #9)\",en-US,4.27,31362,33431,1125,262,900,5271,10146,16852,https://images.gr-assets.com/books/1268376325l/7600922.jpg,https://images.gr-assets.com/books/1268376325s/7600922.jpg\n3971,182496,182496,1279777,23,440132940,9780440132940.0,Belva Plain,1978.0,Evergreen,Evergreen,eng,3.98,23790,24231,247,256,1055,5970,8544,8406,https://images.gr-assets.com/books/1392996056l/182496.jpg,https://images.gr-assets.com/books/1392996056s/182496.jpg\n3972,356373,356373,346544,5,,,\"Henry T. Blackaby, Claude V. King, Richard Blackaby\",1976.0,Experiencing God : Knowing and Doing His Will - Workbook,\"Experiencing God: Knowing and Doing the Will of God, Workbook\",,4.32,21778,22050,224,326,726,2935,5734,12329,https://images.gr-assets.com/books/1293504214l/356373.jpg,https://images.gr-assets.com/books/1293504214s/356373.jpg\n3973,592657,592657,1257919,43,038531387X,9780385313870.0,James Dickey,1970.0,Deliverance,Deliverance,eng,3.86,24522,25570,978,607,1425,6173,10094,7271,https://images.gr-assets.com/books/1334998332l/592657.jpg,https://images.gr-assets.com/books/1334998332s/592657.jpg\n3974,28547,28547,2971170,45,689860072,9780689860070.0,Anne McCaffrey,1977.0,Dragonsinger,\"Dragonsinger (Harper Hall, #2)\",eng,4.26,31874,34877,608,104,658,5518,12332,16265,https://images.gr-assets.com/books/1410942014l/28547.jpg,https://images.gr-assets.com/books/1410942014s/28547.jpg\n3975,13049981,13049981,18214662,24,61996203,9780061996210.0,Cynthia Hand,2013.0,Boundless,\"Boundless (Unearthly, #3)\",eng,4.15,36433,38101,3716,566,1535,6503,12666,16831,https://images.gr-assets.com/books/1342208984l/13049981.jpg,https://images.gr-assets.com/books/1342208984s/13049981.jpg\n3976,29354916,29354916,49477649,47,,,John Grisham,2016.0,The Whistler,The Whistler,en-GB,3.87,34797,38967,3480,744,2189,9685,15286,11063,https://images.gr-assets.com/books/1462900031l/29354916.jpg,https://images.gr-assets.com/books/1462900031s/29354916.jpg\n3977,568454,568454,555516,13,1421506238,9781421506230.0,\"Katsura Hoshino, Mayumi Kobayashi\",2004.0,\"D.Gray-man, Volume 1\",\"D.Gray-man, Volume 01\",eng,4.21,23910,24060,231,485,1049,3715,6386,12425,https://images.gr-assets.com/books/1440124280l/568454.jpg,https://images.gr-assets.com/books/1440124280s/568454.jpg\n3978,41810,41810,905286,85,553299492,9780553299500.0,Isaac Asimov,1983.0,The Robots of Dawn,The Robots of Dawn (Robot #3),eng,4.13,26075,29192,840,103,677,5409,12275,10728,https://images.gr-assets.com/books/1351030933l/41810.jpg,https://images.gr-assets.com/books/1351030933s/41810.jpg\n3979,18431,18431,3805,82,440241359,9780440241360.0,\"Ian Caldwell, Dustin Thomason\",2004.0,The Rule of Four,The Rule of Four,eng,3.22,22724,28872,1984,1909,4958,10594,7787,3624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389185899l/18431.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3980,16718083,16718083,22957415,30,751552615,9780751552610.0,Jessica Sorensen,2013.0,The Redemption of Callie & Kayden,\"The Redemption of Callie & Kayden (The Coincidence, #2)\",eng,4.11,38452,43215,2952,468,1629,7787,16091,17240,https://images.gr-assets.com/books/1366785115l/16718083.jpg,https://images.gr-assets.com/books/1366785115s/16718083.jpg\n3982,32505,32505,590167,97,446699551,9780446699560.0,Michael Connelly,2005.0,The Closers,\"The Closers (Harry Bosch, #11; Harry Bosch Universe, #13)\",eng,4.08,24688,29798,1229,73,525,5740,14070,9390,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262627l/32505.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3983,275000,275000,1245366,63,60525592,9780060525590.0,Erin Hunter,2003.0,Fire and Ice,\"Fire and Ice (Warriors, #2)\",eng,4.36,30745,32641,1276,197,710,4307,9341,18086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924381l/275000.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3984,5509920,5509920,5620959,46,373773927,9780373773920.0,Gena Showalter,2009.0,The Darkest Whisper,The Darkest Whisper (Lords of the Underworld #4),eng,4.33,35144,36739,1036,170,706,4991,11953,18919,https://images.gr-assets.com/books/1351277969l/5509920.jpg,https://images.gr-assets.com/books/1351277969s/5509920.jpg\n3985,46190,46190,45332,22,1400083028,9781400083020.0,Rob Sheffield,2007.0,\"Love Is a Mix Tape: Life and Loss, One Song at a Time\",Love Is a Mix Tape,en-US,3.83,21971,24597,2403,611,1715,6230,8644,7397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437483494l/46190._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3986,14595,14595,1820137,28,802142648,9780802142640.0,\"Legs McNeil, Gillian McCain\",1996.0,Please Kill Me: The Uncensored Oral History of Punk,Please Kill Me: The Uncensored Oral History of Punk,en-US,4.16,20652,21763,902,542,818,3347,6989,10067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436668905l/14595._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3988,833549,833549,1451198,48,64440591,9780064440590.0,Arnold Lobel,1976.0,Frog and Toad All Year,\"Frog and Toad All Year (Frog and Toad, #3)\",en-US,4.34,28930,29452,198,259,769,4414,7194,16816,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410742437l/833549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3989,68418,68418,66312,16,786915889,9780786915880.0,R.A. Salvatore,1998.0,\"The Dark Elf Trilogy Collector's Edition (Forgotten Realms: Dark Elf Trilogy, #1-3)\",\"The Dark Elf Trilogy Collector's Edition (Forgotten Realms: Dark Elf Trilogy, #1-3; Legend of Drizzt, #1-3)\",eng,4.33,20722,22287,423,171,616,2897,6601,12002,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191945l/68418.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3990,30225,30225,1703667,37,425217248,9780425217240.0,Laurell K. Hamilton,2007.0,\"The Harlequin (Anita Blake, Vampire Hunter, #15)\",\"The Harlequin (Anita Blake, Vampire Hunter #15)\",en-US,3.9,35620,37781,819,1199,3090,8085,11138,14269,https://images.gr-assets.com/books/1257988532l/30225.jpg,https://images.gr-assets.com/books/1257988532s/30225.jpg\n3991,237320,237320,894503,27,64410471,9780064410470.0,Sarah Weeks,2004.0,So B. It,So B. It,eng,4.1,26658,27496,2467,324,1126,5244,9595,11207,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925805l/237320.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3992,1675216,1675216,3316094,30,1416954171,9781416954170.0,Margaret Peterson Haddix,2008.0,Found,\"Found (The Missing, #1)\",eng,3.97,30807,32955,3412,468,1745,7432,11819,11491,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437191875l/1675216._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3994,682745,682745,922689,22,,,Jim Carroll,1978.0,The Basketball Diaries 1963-1966,The Basketball Diaries,eng,3.98,23739,24293,414,380,1033,5445,9258,8177,https://images.gr-assets.com/books/1493867556l/682745.jpg,https://images.gr-assets.com/books/1493867556s/682745.jpg\n3995,59978,59978,2801584,33,,,Frank Miller,1996.0,Sin City: That Yellow Bastard,\"Sin City, Vol. 4: That Yellow Bastard (Sin City, #4)\",eng,4.22,22932,23547,257,270,640,3534,8400,10703,https://images.gr-assets.com/books/1471122291l/59978.jpg,https://images.gr-assets.com/books/1471122291s/59978.jpg\n3996,68458,68458,1877722,96,8370540791,9788370540790.0,Andrzej Sapkowski,1994.0,Krew elfów,\"Krew elfów (Saga o Wiedźminie, #3)\",pol,4.23,11981,29790,1135,152,709,4315,11554,13060,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227447452l/68458.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3997,6697,6697,851747,40,60759968,9780060759960.0,Rebecca Wells,1992.0,Little Altars Everywhere,Little Altars Everywhere,,3.55,25045,26559,901,532,2750,9728,8645,4904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428535264l/6697.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n3998,82747,82747,3241063,67,60512148,9780060512150.0,Marian Keyes,2002.0,Angels,\" Angels (Walsh Family, #3)\",en-US,3.73,25680,27576,680,573,2029,8418,9755,6801,https://images.gr-assets.com/books/1407711412l/82747.jpg,https://images.gr-assets.com/books/1407711412s/82747.jpg\n3999,8306745,8306745,13155786,26,141699792X,9781416997920.0,Brandon Mull,2011.0,A World Without Heroes,\"A World Without Heroes (Beyonders, #1)\",en-US,4.07,27160,28479,2513,646,1236,5155,9902,11540,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388338606l/8306745.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4000,5201089,5201089,6627900,43,1741663016,9781741663010.0,John Flanagan,2008.0,The Kings of Clonmel,\"The Kings of Clonmel (Ranger's Apprentice, #8)\",eng,4.29,30299,34595,971,323,715,4756,11454,17347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227576494l/5201089.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4001,25816688,29875363,40296144,42,62200631,9780062200630.0,Joe Hill,2016.0,The Fireman,The Fireman,eng,3.92,17052,27936,4707,608,1756,5728,11042,8802,https://images.gr-assets.com/books/1469316385l/25816688.jpg,https://images.gr-assets.com/books/1469316385s/25816688.jpg\n4002,19346451,19346451,26378005,43,62194720,9780062194720.0,Pittacus Lore,2014.0,The Revenge of Seven,\"The Revenge of Seven (Lorien Legacies, #5)\",eng,4.28,26075,29754,2460,158,581,4234,10602,14179,https://images.gr-assets.com/books/1398024854l/19346451.jpg,https://images.gr-assets.com/books/1398024854s/19346451.jpg\n4003,387749,387749,1434214,612,1934648205,9781934648210.0,Lew Wallace,1880.0,Ben-Hur: A Tale of the Christ,Ben-Hur: A Tale of the Christ,eng,4.02,25280,27622,751,496,1443,5827,9129,10727,https://images.gr-assets.com/books/1450180491l/387749.jpg,https://images.gr-assets.com/books/1450180491s/387749.jpg\n4004,9646,9646,2566499,151,156421178,9780156421170.0,\"George Orwell, Lionel Trilling\",1938.0,Homage to Catalonia,Homage to Catalonia,eng,4.14,22227,25881,1500,176,733,4407,10529,10036,https://images.gr-assets.com/books/1394868278l/9646.jpg,https://images.gr-assets.com/books/1394868278s/9646.jpg\n4005,251519,251519,1154583,52,446694843,9780446694840.0,Lolly Winston,2004.0,Good Grief,Good Grief,en-US,3.72,24273,25350,1330,449,1718,7963,9468,5752,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441110752l/251519._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4006,18635622,18635622,24992268,79,345533488,9780345533490.0,\"George R.R. Martin, Gary Gianni\",2013.0,A Knight of the Seven Kingdoms,\"A Knight of the Seven Kingdoms (The Tales of Dunk and Egg, #1-3)\",eng,4.19,20009,29445,2769,110,607,4513,12551,11664,https://images.gr-assets.com/books/1423281810l/18635622.jpg,https://images.gr-assets.com/books/1423281810s/18635622.jpg\n4007,7747263,7747263,7204808,24,1423121287,9781423121280.0,Melissa de la Cruz,2010.0,Misguided Angel,\"Misguided Angel (Blue Bloods, #5)\",en-US,3.93,33454,34938,1214,654,2382,8415,10762,12725,https://images.gr-assets.com/books/1322343431l/7747263.jpg,https://images.gr-assets.com/books/1322343431s/7747263.jpg\n4008,16109563,16109563,21882391,15,,2940044980980.0,Madeline Sheehan,2012.0,Undeniable,\"Undeniable (Undeniable, #1)\",eng,4.08,38501,44425,4428,1760,2327,6763,13460,20115,https://images.gr-assets.com/books/1356218855l/16109563.jpg,https://images.gr-assets.com/books/1356218855s/16109563.jpg\n4009,6613,6613,2548756,57,080213825X,9780802138260.0,Candace Bushnell,2000.0,Four Blondes,Four Blondes,,2.8,22278,23272,943,3921,5722,7219,3904,2506,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438538645l/6613._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4010,949709,949709,1224619,23,859537277,9780859537280.0,Pam Adams,1973.0,There Was an Old Lady Who Swallowed a Fly (Classic Board Books with Holes),There Was An Old Lady Who Swallowed A Fly (Classic Books),,4.2,26360,26636,266,393,1162,4986,6220,13875,https://images.gr-assets.com/books/1413746503l/949709.jpg,https://images.gr-assets.com/books/1413746503s/949709.jpg\n4011,28233082,28233082,48263544,27,,,Robert Bryndza,2016.0,The Girl In The Ice,\"The Girl In The Ice (Detective Erika Foster, #1)\",eng,3.95,33739,37924,2987,930,1867,7747,15080,12300,https://images.gr-assets.com/books/1450369120l/28233082.jpg,https://images.gr-assets.com/books/1450369120s/28233082.jpg\n4012,1270615,1270615,1259542,13,1593078226,9781593078220.0,\"Joss Whedon, Georges Jeanty\",2007.0,The Long Way Home,\"Buffy the Vampire Slayer: The Long Way Home (Season 8, #1)\",en-CA,3.96,26561,27015,997,708,1516,5950,8882,9959,https://images.gr-assets.com/books/1331332425l/1270615.jpg,https://images.gr-assets.com/books/1331332425s/1270615.jpg\n4013,7324659,7324659,8914542,34,61718947,9780061718950.0,Anthony Bourdain,2010.0,Medium Raw: A Bloody Valentine to the World of Food and the People Who Cook,Medium Raw: A Bloody Valentine to the World of Food and the People Who Cook,en-US,3.73,21973,24355,2102,442,1565,7263,9840,5245,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348947719l/7324659.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4014,3562,3562,1223124,137,055323370X,9780553233700.0,L.M. Montgomery,1923.0,Emily of New Moon,\"Emily of New Moon (Emily, #1)\",eng,4.09,33317,34636,1152,449,1371,6963,11736,14117,https://images.gr-assets.com/books/1327883976l/3562.jpg,https://images.gr-assets.com/books/1327883976s/3562.jpg\n4015,113205,113205,2470656,175,802150594,9780802150590.0,\"Mikhail Bulgakov, Mirra Ginsburg, Mikhail Bulgakov\",1925.0,Собачье сердце,Heart of a Dog,eng,4.14,20086,25687,1103,192,883,4552,9477,10583,https://images.gr-assets.com/books/1457906509l/113205.jpg,https://images.gr-assets.com/books/1457906509s/113205.jpg\n4016,676737,676737,1348308,48,679723110,9780679723110.0,John Gardner,1970.0,Grendel,Grendel,en-US,3.69,25787,26813,1550,1165,2544,6756,9262,7086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347871284l/676737.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4017,68528,68528,891875,78,61144835,9780061144840.0,Bernard Cornwell,2005.0,The Pale Rider,\"The Pale Horseman (The Saxon Stories, #2)\",en-US,4.27,21686,27061,1096,76,283,3463,11690,11549,https://images.gr-assets.com/books/1421710510l/68528.jpg,https://images.gr-assets.com/books/1421710510s/68528.jpg\n4018,64582,64582,62690,61,140092501,9780140092510.0,James Gleick,1987.0,Chaos: Making a New Science,Chaos: Making a New Science,eng,3.98,21703,23320,658,399,1054,5022,9039,7806,https://images.gr-assets.com/books/1327941595l/64582.jpg,https://images.gr-assets.com/books/1327941595s/64582.jpg\n4019,16982,16982,265304,41,785100490,9780785100490.0,\"Kurt Busiek, Alex Ross\",1993.0,Marvels,Marvels,eng,4.21,21636,22706,501,285,763,3624,7190,10844,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1509276500l/16982._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4020,13722902,13722902,19355962,62,193636574X,9781936365750.0,Dave Eggers,2012.0,A Hologram for the King,A Hologram for the King,eng,3.29,20094,22851,2774,759,3416,9129,7439,2108,https://images.gr-assets.com/books/1337179987l/13722902.jpg,https://images.gr-assets.com/books/1337179987s/13722902.jpg\n4021,10959277,10959277,15876972,40,1595144919,9781595144910.0,\"Jay Asher, Carolyn Mackler\",2011.0,The Future of Us,The Future of Us,en-US,3.58,32986,36771,5271,936,4160,11870,12327,7478,https://images.gr-assets.com/books/1366214559l/10959277.jpg,https://images.gr-assets.com/books/1366214559s/10959277.jpg\n4022,1713912,1713912,6634474,53,316024643,9780316024650.0,James Patterson,2008.0,Cross Country,\"Cross Country (Alex Cross, #14)\",eng,3.83,26068,29311,1708,744,2124,7254,10327,8862,https://images.gr-assets.com/books/1344270626l/1713912.jpg,https://images.gr-assets.com/books/1344270626s/1713912.jpg\n4023,6538757,6538757,6730978,14,1849231842,9781849231850.0,Kristen Ashley,2008.0,Rock Chick,\"Rock Chick (Rock Chick, #1)\",en-GB,4.2,41292,44989,3368,977,1773,6301,14306,21632,https://images.gr-assets.com/books/1266750153l/6538757.jpg,https://images.gr-assets.com/books/1266750153s/6538757.jpg\n4024,11366397,11366397,16297209,20,1442445807,9781442445800.0,Suzanne Young,2013.0,The Program,\"The Program (The Program, #1)\",eng,4.07,30517,32905,4437,753,1714,5710,11091,13637,https://images.gr-assets.com/books/1344986164l/11366397.jpg,https://images.gr-assets.com/books/1344986164s/11366397.jpg\n4026,45244,45244,44507,36,345461665,9780345461670.0,Peter F. Hamilton,2005.0,Judas Unchained,Judas Unchained,eng,4.3,20850,24333,901,142,492,2889,9266,11544,https://images.gr-assets.com/books/1316501189l/45244.jpg,https://images.gr-assets.com/books/1316501189s/45244.jpg\n4027,7035,7035,5913092,66,1400031362,9781400031370.0,Alexander McCall Smith,2001.0,Morality for Beautiful Girls,\"Morality for Beautiful Girls (No. 1 Ladies' Detective Agency, #3)\",eng,3.97,29574,32422,1507,74,697,8014,14913,8724,https://images.gr-assets.com/books/1379303019l/7035.jpg,https://images.gr-assets.com/books/1379303019s/7035.jpg\n4028,4570679,4570679,4620030,15,1416571736,9781416571740.0,Jennifer Echols,2009.0,Going Too Far,Going Too Far,en-US,3.93,35071,35666,1673,842,2356,8204,11260,13004,https://images.gr-assets.com/books/1276962788l/4570679.jpg,https://images.gr-assets.com/books/1276962788s/4570679.jpg\n4029,16240761,16240761,19110442,53,62120395,9780062120400.0,Philipp Meyer,2012.0,The Son,The Son,eng,3.98,19821,24320,3032,550,1278,4659,9423,8410,https://images.gr-assets.com/books/1355349098l/16240761.jpg,https://images.gr-assets.com/books/1355349098s/16240761.jpg\n4030,84132,84132,81223,28,312938810,9780312938820.0,Sherrilyn Kenyon,2007.0,The Dream Hunter,\"The Dream Hunter (Dark-Hunter #10, Dream-Hunter #1)\",en-US,4.06,34888,36336,867,436,1905,7657,11207,15131,https://images.gr-assets.com/books/1437696622l/84132.jpg,https://images.gr-assets.com/books/1437696622s/84132.jpg\n4031,33455,33455,3135654,27,60735449,9780060735450.0,\"Christopher Moore, Oliver Wyman\",1997.0,Island of the Sequined Love Nun,Island of the Sequined Love Nun,en-GB,3.78,25166,26364,1243,333,1661,7793,10233,6344,https://images.gr-assets.com/books/1168444146l/33455.jpg,https://images.gr-assets.com/books/1168444146s/33455.jpg\n4032,26114135,26114135,46061078,7,1250074134,9781250074130.0,Bryn Greenwood,2016.0,All the Ugly and Wonderful Things,All the Ugly and Wonderful Things,eng,4.12,30089,35184,5837,860,1416,4907,13523,14478,https://images.gr-assets.com/books/1500552983l/26114135.jpg,https://images.gr-assets.com/books/1500552983s/26114135.jpg\n4033,16101126,16101126,19144117,24,670785601,9780670785600.0,Sarah Dessen,2013.0,The Moon and More,The Moon and More,eng,3.63,29896,31583,3020,971,3100,9970,10172,7370,https://images.gr-assets.com/books/1426912781l/16101126.jpg,https://images.gr-assets.com/books/1426912781s/16101126.jpg\n4034,353,353,75443,53,,,Robert A. Heinlein,1973.0,Time Enough for Love,Time Enough for Love,eng,3.96,25603,27482,683,663,1766,5936,8866,10251,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1218664355l/353.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4035,3895,3895,7619,4,609602195,9780609602200.0,\"Ina Garten, Melanie Acevedo\",1999.0,The Barefoot Contessa Cookbook,The Barefoot Contessa Cookbook,en-GB,4.21,22497,22566,160,647,743,3098,6811,11267,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195329l/3895.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4036,7800188,7800188,10780344,50,1595143424,9781595143430.0,\"Kathy Reichs, Brendan Reichs\",2010.0,Virals,\"Virals (Virals, #1)\",en-US,3.94,30226,32237,2630,838,2068,6906,10864,11561,https://images.gr-assets.com/books/1278653923l/7800188.jpg,https://images.gr-assets.com/books/1278653923s/7800188.jpg\n4037,12902549,12902549,18056954,27,,,\"Laura Schroff, Alex Tresniowski, Valerie Salembier\",2010.0,\"An Invisible Thread: The True Story of an 11-Year-Old Panhandler, a Busy Sales Executive, and an Unlikely Meeting with Destiny\",\"An Invisible Thread: The True Story of an 11-Year-Old Panhandler, a Busy Sales Executive, and an Unlikely Meeting with Destiny\",eng,4.0,22781,24873,3581,181,1044,5304,10358,7986,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328320486l/12902549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4039,6365221,6365221,6552532,22,080508925X,9780805089260.0,Rhoda Janzen,2009.0,Mennonite in a Little Black Dress: A Memoir of Going Home,Mennonite in a Little Black Dress: A Memoir of Going Home,en-US,3.17,23096,27991,4191,1769,5123,10687,7474,2938,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440941806l/6365221._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4040,830791,830791,816448,72,446607711,9780446607710.0,David Baldacci,1998.0,The Simple Truth,The Simple Truth,en-US,4.03,23615,25084,567,172,639,5452,10706,8115,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436530071l/830791._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4041,26891429,26891429,17359681,3,034550500X,9780345505000.0,Justin Cronin,2016.0,The City of Mirrors,\"The City of Mirrors (The Passage, #3)\",eng,4.2,16352,26873,3555,246,848,3897,10172,11710,https://images.gr-assets.com/books/1447866792l/26891429.jpg,https://images.gr-assets.com/books/1447866792s/26891429.jpg\n4042,91249,91249,2494398,52,038072801X,9780380728020.0,Beverly Cleary,1984.0,Ramona Forever,\"Ramona Forever (Ramona, #7)\",,4.05,26685,28091,371,366,976,6410,9563,10776,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470149l/91249.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4043,5508,5508,318156,12,140369260,9780140369270.0,\"Ruud van der Rol, Rian Verhoeven, Anna Quindlen, Anne Frank, Tony Langham, Plym Peters\",1992.0,Anne Frank: Beyond the Diary - A Photographic Remembrance,Anne Frank: Beyond the Diary - A Photographic Remembrance,,4.25,22725,22852,181,499,720,3250,6564,11819,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345168l/5508.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4044,395962,395962,848910,34,765345048,9780765345040.0,Jacqueline Carey,2002.0,Kushiel's Chosen,\"Kushiel's Chosen (Phèdre's Trilogy, #2)\",en-US,4.31,28621,30505,829,296,807,3925,9665,15812,https://images.gr-assets.com/books/1395020871l/395962.jpg,https://images.gr-assets.com/books/1395020871s/395962.jpg\n4045,22874559,22874559,42438620,8,8129135728,9788129135730.0,Chetan Bhagat,2014.0,Half Girlfriend,Half Girlfriend,en-CA,3.16,22082,27146,2067,3207,5052,7855,6343,4689,https://images.gr-assets.com/books/1407223058l/22874559.jpg,https://images.gr-assets.com/books/1407223058s/22874559.jpg\n4046,233691,233691,2547429,7,836218310,9780836218310.0,Gary Larson,1984.0,The Far Side Gallery 3,The Far Side Gallery 3,,4.45,24199,24310,95,102,279,2602,6971,14356,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254730l/233691.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4047,52397,52397,59258,33,446675504,9780446675500.0,Octavia E. Butler,1993.0,\"Parable of the Sower (Earthseed, #1)\",\"Parable of the Sower (Earthseed, #1)\",eng,4.14,25577,28283,2689,346,1013,4698,10578,11648,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442169447l/52397._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4048,11872242,11872242,16829865,47,1846057914,9781846057920.0,\"James Patterson, Maxine Paetro\",2012.0,11th hour,\"11th Hour (Women's Murder Club, #11)\",eng,4.02,22697,29552,1792,163,979,6872,11771,9767,https://images.gr-assets.com/books/1328409443l/11872242.jpg,https://images.gr-assets.com/books/1328409443s/11872242.jpg\n4049,13151129,13151129,18329141,19,765329042,9780765329040.0,\"Orson Scott Card, Aaron Johnston\",2012.0,\"Earth Unaware (The First Formic War, #1) \",\"Earth Unaware (The First Formic War, #1)\",en-US,3.91,27961,29693,1214,1429,1471,5731,10678,10384,https://images.gr-assets.com/books/1327948408l/13151129.jpg,https://images.gr-assets.com/books/1327948408s/13151129.jpg\n4050,687278,687278,2464740,48,1570623449,9781570623450.0,Pema Chödrön,1996.0,When Things Fall Apart: Heart Advice for Difficult Times,When Things Fall Apart: Heart Advice for Difficult Times,,4.29,20761,23012,1315,339,652,2891,7237,11893,https://images.gr-assets.com/books/1320553046l/687278.jpg,https://images.gr-assets.com/books/1320553046s/687278.jpg\n4051,9999107,9999107,14894050,38,312658656,9780312658660.0,Daisy Goodwin,2010.0,My Last Duchess,The American Heiress,eng,3.41,23992,28874,3901,810,3518,11240,9569,3737,https://images.gr-assets.com/books/1307342832l/9999107.jpg,https://images.gr-assets.com/books/1307342832s/9999107.jpg\n4052,659612,659612,3311896,62,671729489,9780671729490.0,V.C. Andrews,1984.0,Seeds of Yesterday,\"Seeds of Yesterday (Dollanganger, #4)\",en-US,3.81,27307,29465,610,543,2413,8338,8977,9194,https://images.gr-assets.com/books/1321685100l/659612.jpg,https://images.gr-assets.com/books/1321685100s/659612.jpg\n4053,140131,140131,135094,4,736423125,9780736423120.0,\"Al Dempster, Milt Banta, Golden Books, Walt Disney Company\",1948.0,Three Little Pigs (Little Golden Book),The Three Little Pigs (Disney Classic),,4.19,25466,25545,136,354,1126,5095,5601,13369,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191633l/140131.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4054,60431,60431,58792,1,810933519,9780810933510.0,Andy Goldsworthy,1990.0,Andy Goldsworthy: A Collaboration with Nature,Andy Goldsworthy: A Collaboration with Nature,,3.95,20745,20745,105,1378,1383,3470,5096,9418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197300l/60431.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4055,608287,608287,1033961,37,60975776,9780060975780.0,Denis Johnson,1992.0,Jesus' Son: Stories,Jesus' Son,eng,4.15,20120,22546,1651,362,959,3507,7746,9972,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387705452l/608287.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4056,13573622,13573622,19154615,27,141659521X,9781416595210.0,Vince Flynn,2012.0,The Last Man,\"The Last Man (Mitch Rapp, #13)\",en-US,4.34,21240,25127,1303,123,397,2930,9103,12574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431210893l/13573622.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4057,9503,9503,1223399,64,034546401X,9780345464020.0,Amy Tan,2005.0,Saving Fish from Drowning: A Novel,Saving Fish from Drowning,eng,3.41,24579,26060,2586,1247,3379,8927,8374,4133,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388209360l/9503.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4058,13547381,13547381,19112521,28,1439164681,9781439164690.0,Lisa Genova,2012.0,Love Anthony,Love Anthony,eng,3.94,22838,25772,3736,292,1335,5892,10348,7905,https://images.gr-assets.com/books/1339757265l/13547381.jpg,https://images.gr-assets.com/books/1339757265s/13547381.jpg\n4059,641604,641604,155235,46,159184021X,9781591840210.0,Seth Godin,2003.0,Purple Cow: Transform Your Business by Being Remarkable,Purple Cow: Transform Your Business by Being Remarkable,eng,3.78,25230,26362,862,1247,1953,6239,8792,8131,https://images.gr-assets.com/books/1309203098l/641604.jpg,https://images.gr-assets.com/books/1309203098s/641604.jpg\n4060,16131489,16131489,27238158,56,399162437,9780399162440.0,Rick Yancey,2016.0,The Last Star,\"The Last Star (The 5th Wave, #3)\",eng,3.64,30324,36016,5377,1076,3951,10593,11769,8627,https://images.gr-assets.com/books/1444237685l/16131489.jpg,https://images.gr-assets.com/books/1444237685s/16131489.jpg\n4061,744615,744615,730764,24,1932664491,9781932664490.0,\"Bryan Lee O'Malley, Steve Buccellato\",2007.0,\"Scott Pilgrim, Volume 4: Scott Pilgrim Gets It Together\",\"Scott Pilgrim, Volume 4: Scott Pilgrim Gets It Together\",,4.32,27532,28873,808,137,463,3629,10445,14199,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348203290l/744615.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4062,426825,426825,69653,48,055327094X,9780553270940.0,Leon Uris,1970.0,QB VII,QB VII,eng,4.17,24396,25082,321,138,619,4520,9339,10466,https://images.gr-assets.com/books/1359742726l/426825.jpg,https://images.gr-assets.com/books/1359742726s/426825.jpg\n4063,24876258,24876258,24239884,19,451466802,9780451466810.0,Jim Butcher,2015.0,The Aeronaut's Windlass ,\"The Aeronaut's Windlass (The Cinder Spires, #1)\",eng,4.18,20845,25887,3252,306,863,3593,10293,10832,https://images.gr-assets.com/books/1425415066l/24876258.jpg,https://images.gr-assets.com/books/1425415066s/24876258.jpg\n4064,23529,23529,191464,37,861661419,9780861661410.0,\"Alan Moore, Eddie Campbell, Pete Mullins\",1999.0,From Hell,From Hell,eng,4.16,23971,26658,1246,397,1186,4184,8876,12015,https://images.gr-assets.com/books/1327894621l/23529.jpg,https://images.gr-assets.com/books/1327894621s/23529.jpg\n4065,86321,86321,1587685,67,739453823,9780739453830.0,Nora Roberts,2005.0,Black Rose,\"Black Rose (In the Garden, #2)\",eng,4.03,29058,31458,728,180,1229,7135,11681,11233,https://images.gr-assets.com/books/1298119100l/86321.jpg,https://images.gr-assets.com/books/1298119100s/86321.jpg\n4066,65910,65910,553563,39,553587692,9780553587690.0,Lisa Gardner,1997.0,The Perfect Husband,\"The Perfect Husband (Quincy & Rainie, #1)\",eng,4.01,26578,29902,1209,464,1284,6266,11450,10438,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388630844l/65910.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4067,113310,113310,268923,102,345366239,9780345366240.0,Katherine Neville,1988.0,The Eight,The Eight (The Eight #1),eng,3.92,22928,27460,2199,762,1913,5690,9488,9607,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263286l/113310.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4068,1499952,1499952,1710545,352,,,Jean Webster,1912.0,Daddy-Long-Legs       ,\"Daddy-Long-Legs (Daddy-Long-Legs, #1)\",eng,4.09,20889,28710,2796,363,1090,5527,10283,11447,https://images.gr-assets.com/books/1339593021l/1499952.jpg,https://images.gr-assets.com/books/1339593021s/1499952.jpg\n4069,161887,161887,2079577,26,152052216,9780152052220.0,Edith Pattou,2003.0,East,East,en-US,4.14,30596,32563,1966,435,1332,5793,10588,14415,https://images.gr-assets.com/books/1277997811l/161887.jpg,https://images.gr-assets.com/books/1277997811s/161887.jpg\n4070,127584,127584,2000164,73,345335082,9780345335080.0,Anne McCaffrey,1971.0,Dragonquest,\"Dragonquest (Pern, #2)\",en-US,4.09,31971,34688,604,127,987,7335,13438,12801,https://images.gr-assets.com/books/1307994633l/127584.jpg,https://images.gr-assets.com/books/1307994633s/127584.jpg\n4071,357636,357636,848942,156,393301583,9780393301590.0,\"Sigmund Freud, James Strachey, Peter Gay\",1930.0,Das Unbehagen in der Kultur,Civilization and Its Discontents,en-US,3.76,21447,24217,700,816,2057,6382,7918,7044,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438544596l/357636._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4072,12394068,12394068,17375206,88,1444737090,9781444737100.0,James Bowen,2012.0,A Street Cat Named Bob: How One Man and His Cat Found Hope on the Streets,A Street Cat Named Bob: How One Man and His Cat Found Hope on the Streets,eng,3.96,17971,27131,3539,483,1507,5973,9814,9354,https://images.gr-assets.com/books/1331779332l/12394068.jpg,https://images.gr-assets.com/books/1331779332s/12394068.jpg\n4073,17411703,17411703,23680376,32,345545850,9780345545860.0,J. Kenner,2013.0,Complete Me,\"Complete Me (Stark Trilogy, #3)\",eng,4.23,32212,36155,1570,307,1244,5470,12116,17018,https://images.gr-assets.com/books/1363420378l/17411703.jpg,https://images.gr-assets.com/books/1363420378s/17411703.jpg\n4074,19288321,19288321,26474462,29,553392425,9780553392420.0,Robin Hobb,2014.0,Fool's Assassin,\"Fool's Assassin (The Fitz and the Fool, #1)\",eng,4.35,15601,26014,2030,244,571,2645,8842,13712,https://images.gr-assets.com/books/1393886110l/19288321.jpg,https://images.gr-assets.com/books/1393886110s/19288321.jpg\n4075,31979,31979,154982,21,785115315,9780785115310.0,\"Joss Whedon, John Cassaday\",2004.0,\"Astonishing X-Men, Volume 1: Gifted\",\"Astonishing X-Men, Volume 1: Gifted\",eng,4.17,22373,22949,532,405,730,3667,7949,10198,https://images.gr-assets.com/books/1500464817l/31979.jpg,https://images.gr-assets.com/books/1500464817s/31979.jpg\n4076,5152561,5152561,5219564,36,006121471X,9780061214710.0,Melissa Marr,2009.0,Fragile Eternity,\"Fragile Eternity (Wicked Lovely, #3)\",en-US,3.83,37303,38998,1839,797,2965,10444,12617,12175,https://images.gr-assets.com/books/1327813714l/5152561.jpg,https://images.gr-assets.com/books/1327813714s/5152561.jpg\n4077,11227041,11227041,16152936,17,,,Kristen Ashley,2011.0,The Gamble,\"The Gamble (Colorado Mountain, #1)\",en-GB,4.29,42242,45047,3132,748,1211,5093,15053,22942,https://images.gr-assets.com/books/1327890208l/11227041.jpg,https://images.gr-assets.com/books/1327890208s/11227041.jpg\n4078,32628,32628,942597,44,006093316X,9780060933170.0,Clive Barker,1989.0,The Great and Secret Show,The Great and Secret Show (Book of the Art #1),eng,4.05,23328,25025,546,399,1112,4958,8897,9659,https://images.gr-assets.com/books/1407710558l/32628.jpg,https://images.gr-assets.com/books/1407710558s/32628.jpg\n4079,29,29,2170063,28,380715430,9780380715440.0,Bill Bryson,1990.0,The Mother Tongue: English and How It Got That Way,The Mother Tongue: English and How It Got That Way,en-US,3.95,24133,26951,1993,333,1280,6050,10985,8303,https://images.gr-assets.com/books/1388209925l/29.jpg,https://images.gr-assets.com/books/1388209925s/29.jpg\n4080,1918305,1918305,3344773,34,446580260,9780446580270.0,Eric    Weiner,2008.0,The Geography of Bliss: One Grump's Search for the Happiest Places in the World,The Geography of Bliss: One Grump's Search for the Happiest Places in the World,en-US,3.83,23023,25025,3099,439,1553,6370,10237,6426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347304179l/1918305.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4082,25564665,25564665,44707128,35,151166066X,9781511660660.0,Elle Kennedy,2015.0,The Mistake,\"The Mistake (Off-Campus, #2)\",eng,4.15,37148,43538,4083,295,1242,7194,17848,16959,https://images.gr-assets.com/books/1447598937l/25564665.jpg,https://images.gr-assets.com/books/1447598937s/25564665.jpg\n4083,73089,73089,2617385,51,60734566,9780060734560.0,Susan Elizabeth Phillips,2005.0,Match Me If You Can,\"Match Me If You Can (Chicago Stars, #6)\",eng,4.13,33805,35692,1458,317,1120,6368,13587,14300,https://images.gr-assets.com/books/1327154923l/73089.jpg,https://images.gr-assets.com/books/1327154923s/73089.jpg\n4084,59830,59830,3153342,75,749932821,9780749932820.0,Nora Roberts,2001.0,\"Heaven and Earth (Three Sisters Island, #2)\",\"Heaven and Earth (Three Sisters Island, #2)\",eng,4.13,28103,31458,788,142,922,6184,11519,12691,https://images.gr-assets.com/books/1345222134l/59830.jpg,https://images.gr-assets.com/books/1345222134s/59830.jpg\n4085,32430,32430,260358,79,425195481,9780425195480.0,Dean Koontz,1989.0,The Bad Place,The Bad Place,en-US,3.86,26848,28135,571,419,1576,7704,10137,8299,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388294158l/32430.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4086,17204568,17204568,21490715,27,,,Tracy Brogan,2012.0,Crazy Little Thing,\"Crazy Little Thing (Bell Harbor, #1)\",en-US,3.8,23854,24394,1875,556,1581,6545,9181,6531,https://images.gr-assets.com/books/1361951139l/17204568.jpg,https://images.gr-assets.com/books/1361951139s/17204568.jpg\n4087,187812,187812,3186888,42,60755865,9780060755870.0,Meg Cabot,2005.0,Avalon High,Avalon High,,3.8,37402,39658,2063,773,3194,10929,12930,11832,https://images.gr-assets.com/books/1172542154l/187812.jpg,https://images.gr-assets.com/books/1172542154s/187812.jpg\n4088,3609763,3609763,3652514,35,316043125,9780316043120.0,Stephenie Meyer,2011.0,The Twilight Saga: The Official Guide,\"The Twilight Saga: The Official Illustrated Guide (Twilight, #4.5)\",en-US,4.23,24065,25092,851,631,1246,4040,5055,14120,https://images.gr-assets.com/books/1344265906l/3609763.jpg,https://images.gr-assets.com/books/1344265906s/3609763.jpg\n4089,297135,297135,1563523,57,345483448,9780345483450.0,Kristin Hannah,2001.0,Summer Island,Summer Island,,3.97,22598,25494,1215,199,958,6037,10390,7910,https://images.gr-assets.com/books/1320540976l/297135.jpg,https://images.gr-assets.com/books/1320540976s/297135.jpg\n4090,64023,64023,1286037,53,60628391,9780060628390.0,Richard J. Foster,1978.0,Celebration of Discipline: The Path to Spiritual Growth,Celebration of Discipline: The Path to Spiritual Growth,en-US,4.18,23026,24048,696,488,886,3673,7807,11194,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440657038l/64023._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4091,517188,517188,6132856,103,60931736,9780060931740.0,Muriel Spark,1961.0,The Prime of Miss Jean Brodie ,The Prime of Miss Jean Brodie,eng,3.76,26538,31014,1752,638,2371,8614,11577,7814,https://images.gr-assets.com/books/1379598918l/517188.jpg,https://images.gr-assets.com/books/1379598918s/517188.jpg\n4092,138202,138202,2975988,19,609807900,9780609807900.0,Megan McCafferty,2001.0,\"Sloppy Firsts (Jessica Darling, #1)\",\"Sloppy Firsts (Jessica Darling, #1)\",eng,3.94,31757,32540,1822,881,1978,6964,11000,11717,https://images.gr-assets.com/books/1320531275l/138202.jpg,https://images.gr-assets.com/books/1320531275s/138202.jpg\n4093,13477676,13477676,19008613,37,316221333,9780316221340.0,Matthew Quick,2013.0,\"Forgive Me, Leonard Peacock\",\"Forgive Me, Leonard Peacock\",eng,3.93,27647,31077,4658,627,1848,6689,11947,9966,https://images.gr-assets.com/books/1370282544l/13477676.jpg,https://images.gr-assets.com/books/1370282544s/13477676.jpg\n4094,39963,39963,1207111,31,142401102,9780142401100.0,Richard Peck,1998.0,A Long Way From Chicago,\"A Long Way from Chicago (A Long Way from Chicago, #1)\",eng,3.92,27642,28541,2041,834,1790,6251,9708,9958,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195985l/39963.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4095,5575,5575,3035972,68,446609404,9780446609400.0,James Patterson,1980.0,Virgin,Cradle and All,eng,3.87,25426,27288,835,598,1605,7040,9474,8571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436538932l/5575._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4096,514313,514313,502278,47,743225708,9780743225700.0,Ben Mezrich,2002.0,Bringing Down the House: The Inside Story of Six M.I.T. Students Who Took Vegas for Millions,Bringing Down the House: The Inside Story of Six M.I.T. Students Who Took Vegas for Millions,,3.87,16455,19852,1739,158,885,5199,8785,4825,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348387571l/514313.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4097,18465566,18465566,26123543,17,1626720940,9781626720950.0,\"Mariko Tamaki, Jillian Tamaki\",2014.0,This One Summer,This One Summer,eng,3.67,29592,31965,3529,1588,2775,8554,10589,8459,https://images.gr-assets.com/books/1456895195l/18465566.jpg,https://images.gr-assets.com/books/1456895195s/18465566.jpg\n4098,13184572,13184572,18365161,25,,,Jennifer Weiner,2012.0,The Next Best Thing,The Next Best Thing,,3.46,24098,25699,2539,787,3151,9341,8263,4157,https://images.gr-assets.com/books/1334300363l/13184572.jpg,https://images.gr-assets.com/books/1334300363s/13184572.jpg\n4099,1883838,1883838,421308,20,1847371663,9781847371670.0,Nikki Sixx,2005.0,The Heroin Diaries: A Year in the Life of a Shattered Rock Star,The Heroin Diaries: A Year In The Life Of A Shattered Rock Star,en-GB,4.12,20531,22627,1551,457,1176,3922,6779,10293,https://images.gr-assets.com/books/1408936840l/1883838.jpg,https://images.gr-assets.com/books/1408936840s/1883838.jpg\n4100,4957350,4957350,5023150,53,1934137197,9781934137190.0,Paul Harding,2008.0,Tinkers,Tinkers,eng,3.37,21665,25135,4305,1520,3882,7998,7217,4518,https://images.gr-assets.com/books/1364258693l/4957350.jpg,https://images.gr-assets.com/books/1364258693s/4957350.jpg\n4101,15568,15568,34897,48,1857233808,9781857233800.0,Terry Brooks,1991.0,The Druid of Shannara,\"The Druid of Shannara (Heritage of Shannara, #2)\",eng,4.0,24815,26635,216,236,1055,6146,10154,9044,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390260857l/15568.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4102,22843341,22843341,42401641,21,1502446936,9781502446930.0,Penelope Ward,2014.0,Stepbrother Dearest,Stepbrother Dearest,eng,4.14,34347,42254,4577,798,1895,6585,14093,18883,https://images.gr-assets.com/books/1407407844l/22843341.jpg,https://images.gr-assets.com/books/1407407844s/22843341.jpg\n4103,14376,14376,1820798,73,140007780X,9781400077810.0,Alan Lightman,1992.0,Einstein's Dreams,Einstein's Dreams,eng,4.08,21241,24322,2520,359,1254,4438,8278,9993,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925066l/14376.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4104,5695,5695,1487216,455,679734511,9780679734510.0,\"Fyodor Dostoyevsky, Richard Pevear, Larissa Volokhonsky\",1872.0,Бесы,Demons,eng,4.26,20615,25745,956,281,798,3684,8291,12691,https://images.gr-assets.com/books/1386958613l/5695.jpg,https://images.gr-assets.com/books/1386958613s/5695.jpg\n4105,84144,84144,81234,35,749935871,9780749935870.0,Sherrilyn Kenyon,2004.0,Seize the Night,Seize the Night (Dark-Hunter #6),eng,4.36,29053,39269,1209,148,594,4920,13034,20573,https://images.gr-assets.com/books/1348418164l/84144.jpg,https://images.gr-assets.com/books/1348418164s/84144.jpg\n4108,85987,85987,3311687,93,60898488,9780060898490.0,\"Isabel Allende, Margaret Sayers Peden\",2000.0,Retrato en sepia,Portrait in Sepia,,3.93,21649,25203,1123,177,1041,6207,10819,6959,https://images.gr-assets.com/books/1379900929l/85987.jpg,https://images.gr-assets.com/books/1379900929s/85987.jpg\n4109,18301124,27237358,25789248,39,,9781301673870.0,Amy Harmon,2013.0,Making Faces,Making Faces,eng,4.36,25941,42130,6337,607,1256,4663,11327,24277,https://images.gr-assets.com/books/1378983590l/18301124.jpg,https://images.gr-assets.com/books/1378983590s/18301124.jpg\n4110,288644,288644,1121318,142,739467042,9780739467050.0,Vikas Swarup,2005.0,Q & A: Slumdog Millionaire,Q & A,eng,3.98,13986,25955,2541,384,1224,5351,10638,8358,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1225937144l/288644.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4112,789344,789344,1998683,38,553157248,9780553157250.0,Donald J. Sobol,1963.0,\"Encyclopedia Brown, Boy Detective (Encyclopedia Brown, #1)\",\"Encyclopedia Brown, Boy Detective (Encyclopedia Brown, #1)\",eng,4.03,30283,31891,582,521,1238,7284,10496,12352,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298650085l/789344.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4113,138685,138685,133702,72,330411969,9780330411970.0,C.J. Sansom,2003.0,Dissolution,\"Dissolution (Matthew Shardlake, #1)\",eng,4.08,22863,27657,1973,313,1012,5029,11227,10076,https://images.gr-assets.com/books/1329914905l/138685.jpg,https://images.gr-assets.com/books/1329914905s/138685.jpg\n4114,890143,890143,541421,25,689872992,9780689872990.0,Lisi Harrison,2004.0,\"The Clique (The Clique, #1)\",\"The Clique (The Clique, #1)\",en-GB,3.6,27783,28457,2359,1725,3465,7748,7084,8435,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347819098l/890143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4115,17910054,17910054,25095506,51,805092994,9780805093000.0,Elizabeth Kolbert,2014.0,The Sixth Extinction: An Unnatural History,The Sixth Extinction: An Unnatural History,eng,4.09,21113,24757,3053,488,837,3914,10137,9381,https://images.gr-assets.com/books/1372677697l/17910054.jpg,https://images.gr-assets.com/books/1372677697s/17910054.jpg\n4116,13325079,13325079,18531984,43,60885599,9780060885600.0,Ben Fountain,2012.0,Billy Lynn's Long Halftime Walk,Billy Lynn's Long Halftime Walk,eng,3.81,20778,24324,3185,667,1788,5615,9612,6642,https://images.gr-assets.com/books/1336052759l/13325079.jpg,https://images.gr-assets.com/books/1336052759s/13325079.jpg\n4117,99315,99315,95744,42,1594481717,9781594481710.0,Daniel H. Pink,2004.0,A Whole New Mind: Why Right-Brainers Will Rule the Future,A Whole New Mind: Why Right-Brainers Will Rule the Future,eng,3.95,20852,21946,1680,436,1232,4725,8076,7477,https://images.gr-assets.com/books/1309284710l/99315.jpg,https://images.gr-assets.com/books/1309284710s/99315.jpg\n4118,77160,77160,161332,91,1573223328,9781573223320.0,Lian Hearn,2002.0,Across the Nightingale Floor ,\"Across the Nightingale Floor (Tales of the Otori, #1)\",eng,4.06,23597,28539,1649,302,1172,5407,11424,10234,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438630231l/77160._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4119,2094,2094,16552333,89,553804367,9780553804360.0,\"Stephen Hawking, Leonard Mlodinow\",2005.0,A Briefer History of Time,A Briefer History of Time,eng,4.19,19838,22637,888,228,574,3555,8647,9633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924782l/2094.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4120,117047,117047,112713,66,141026162,9780141026170.0,Richard Dawkins,1986.0,The Blind Watchmaker: Why the Evidence of Evolution Reveals a Universe Without Design,The Blind Watchmaker: Why the Evidence of Evolution Reveals a Universe Without Design,eng,4.08,21141,23415,736,509,772,3960,9218,8956,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553577503l/117047._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4121,59822,59822,1820060,73,749932988,9780749932980.0,Nora Roberts,2002.0,\"Face the Fire (Three Sisters Island, #3)\",\"Face the Fire (Three Sisters Island, #3)\",eng,4.15,27206,30556,691,169,983,5868,10760,12776,https://images.gr-assets.com/books/1330175555l/59822.jpg,https://images.gr-assets.com/books/1330175555s/59822.jpg\n4122,17834834,17834834,13122191,17,1250046394,9781250046390.0,Ronald H. Balson,2010.0,Once We Were Brothers,Once We Were Brothers,en-GB,4.28,13856,23169,2563,277,764,2888,7402,11838,https://images.gr-assets.com/books/1376835596l/17834834.jpg,https://images.gr-assets.com/books/1376835596s/17834834.jpg\n4123,27401883,27401883,46189043,9,,,\"Emily Bleeker, Dan John Miller\",2016.0,When I'm Gone,When I'm Gone,eng,3.94,33348,34469,1876,1087,1901,7223,11925,12333,https://images.gr-assets.com/books/1465938298l/27401883.jpg,https://images.gr-assets.com/books/1465938298s/27401883.jpg\n4124,16435,16435,4536957,55,553588249,9780553588250.0,Dean Koontz,2004.0,Life Expectancy,Life Expectancy,eng,3.98,24584,26398,1578,299,1208,6179,9754,8958,https://images.gr-assets.com/books/1308458308l/16435.jpg,https://images.gr-assets.com/books/1308458308s/16435.jpg\n4125,2866413,2866413,2529437,18,1423110706,9781423110700.0,Cinda Williams Chima,2008.0,The Dragon Heir,\"The Dragon Heir (The Heir Chronicles, #3)\",eng,4.14,28845,29869,1067,335,1034,5354,10414,12732,https://images.gr-assets.com/books/1304657191l/2866413.jpg,https://images.gr-assets.com/books/1304657191s/2866413.jpg\n4126,7171876,7171876,6738352,11,1416950095,9781416950100.0,Ellen Hopkins,2010.0,\"Fallout (Crank, #3)\",\"Fallout (Crank, #3)\",eng,4.29,25592,26362,1448,187,882,3920,7580,13793,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432084125l/7171876._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4127,123598,123598,1454722,101,425175405,9780425175410.0,Patricia Cornwell,1999.0,Black Notice,\"Black Notice (Kay Scarpetta, #10)\",en-US,3.85,27472,29549,559,357,1721,8237,10920,8314,https://images.gr-assets.com/books/1388461944l/123598.jpg,https://images.gr-assets.com/books/1388461944s/123598.jpg\n4128,28449257,28449257,47261413,13,316393878,9780316393870.0,Emma Donoghue,2016.0,The Wonder,The Wonder,eng,3.65,26981,32092,4614,641,2569,9823,13277,5782,https://images.gr-assets.com/books/1463229441l/28449257.jpg,https://images.gr-assets.com/books/1463229441s/28449257.jpg\n4129,111218,111218,910444,33,345494857,9780345494860.0,Alison Weir,2006.0, Innocent Traitor,Innocent Traitor,eng,3.94,24976,26722,1589,384,1178,6171,10806,8183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388228144l/111218.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4130,4656,4656,1137643,81,345463153,9780345463160.0,John Irving,2001.0,The Fourth Hand,The Fourth Hand,eng,3.3,23277,24814,968,895,3524,10307,7541,2547,https://images.gr-assets.com/books/1375776688l/4656.jpg,https://images.gr-assets.com/books/1375776688s/4656.jpg\n4131,425123,425123,1234238,77,380730359,9780380730350.0,Dennis Lehane,1998.0,\"Gone, Baby, Gone\",\"Gone, Baby, Gone (Kenzie & Gennaro, #4)\",eng,4.14,23899,27150,1478,153,585,4333,12355,9724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234938l/425123.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4132,8957,8957,11852,66,,9780316905730.0,Darren Shan,2000.0,\"Tunnels of Blood (Cirque du Freak, #3) \",\"Tunnels of Blood (Cirque Du Freak, #3)\",,4.14,26287,28733,843,169,1028,5687,9497,12352,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449857l/8957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4133,217436,217436,210517,46,345471172,9780345471180.0,Kristin Hannah,1999.0,On Mystic Lake,On Mystic Lake,eng,3.95,23050,25050,1413,223,997,6147,10205,7478,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206921l/217436.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4134,78131,78131,75453,39,553581554,9780553581550.0,Iris Johansen,1999.0,The Killing Game,\"The Killing Game (Eve Duncan, #2)\",eng,4.18,24790,25473,408,126,541,4577,9698,10531,https://images.gr-assets.com/books/1314902885l/78131.jpg,https://images.gr-assets.com/books/1314902885s/78131.jpg\n4135,15768409,15768409,21474467,18,1442484233,9781442484240.0,Michelle Hodkin,2014.0,The Retribution of Mara Dyer,\"The Retribution of Mara Dyer (Mara Dyer, #3)\",eng,4.14,35910,38229,5714,570,1973,6560,11567,17559,https://images.gr-assets.com/books/1417969205l/15768409.jpg,https://images.gr-assets.com/books/1417969205s/15768409.jpg\n4136,3882,3882,7606,5,1400082544,9781400082540.0,Rachael Ray,2005.0,Rachael Ray 365: No Repeats--A Year of Deliciously Different Dinners (A 30-Minute Meal Cookbook),Rachael Ray 365: No Repeats: A Year of Deliciously Different Dinners,,3.68,21573,21631,146,1297,2045,5728,5694,6867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925636l/3882.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4137,2145681,2145681,2216670,31,312342020,9780312342030.0,Augusten Burroughs,2008.0,A Wolf at the Table,A Wolf at the Table,eng,3.7,22175,23524,1876,672,2072,6735,8114,5931,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388205251l/2145681.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4138,40290,40290,2771466,52,076534775X,9780765347760.0,Orson Scott Card,1987.0,Alvin Maker: Seventh Son,\"Seventh Son (Tales of Alvin Maker, #1)\",eng,3.86,26621,29331,1283,520,1857,7213,11405,8336,https://images.gr-assets.com/books/1327295457l/40290.jpg,https://images.gr-assets.com/books/1327295457s/40290.jpg\n4139,16697,16697,243634,42,60790598,9780060790590.0,Michael Chabon,1988.0,The Mysteries of Pittsburgh,The Mysteries of Pittsburgh,eng,3.63,19778,22220,1661,395,1952,7277,8515,4081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429934414l/16697.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4140,146274,146274,141162,26,60518502,9780060518510.0,James L. Swanson,2006.0,Manhunt: The 12-Day Chase for Lincoln's Killer,Manhunt: The 12-Day Chase for Lincoln's Killer,en-US,4.12,21927,23262,1993,206,721,3898,9610,8827,https://images.gr-assets.com/books/1344193262l/146274.jpg,https://images.gr-assets.com/books/1344193262s/146274.jpg\n4141,6631792,6631792,6826164,71,7233701,9780007233700.0,Cecelia Ahern,2009.0,The Book of Tomorrow,The Book of Tomorrow,eng,3.66,24885,28726,2541,808,2757,8735,9636,6790,https://images.gr-assets.com/books/1276970678l/6631792.jpg,https://images.gr-assets.com/books/1276970678s/6631792.jpg\n4142,10327303,10327303,14547795,25,1423147952,9781423147950.0,Ally Carter,2011.0,Uncommon Criminals,\"Uncommon Criminals (Heist Society, #2)\",,4.15,35104,36383,2180,461,1112,6353,13169,15288,https://images.gr-assets.com/books/1298155996l/10327303.jpg,https://images.gr-assets.com/books/1298155996s/10327303.jpg\n4143,18298225,18298225,25783143,14,62235672,9780062235670.0,Kasie West,2014.0,On the Fence,On the Fence,eng,4.04,30934,32599,3716,432,1372,6826,11660,12309,https://images.gr-assets.com/books/1383229604l/18298225.jpg,https://images.gr-assets.com/books/1383229604s/18298225.jpg\n4144,25153134,24833801,44476984,17,,,Mark  Edwards,2015.0,Follow You Home,Follow You Home,en-CA,3.86,15871,28787,2071,833,1931,6561,10571,8891,https://images.gr-assets.com/books/1432662633l/25153134.jpg,https://images.gr-assets.com/books/1432662633s/25153134.jpg\n4145,846984,846984,23288,31,375913750,9780375913750.0,Jerry Spinelli,2007.0,\"Love, Stargirl\",\"Love, Stargirl (Stargirl, #2)\",,3.8,30515,32275,2796,762,2663,8542,10466,9842,https://images.gr-assets.com/books/1320395760l/846984.jpg,https://images.gr-assets.com/books/1320395760s/846984.jpg\n4146,481446,481446,2897082,50,307381463,9780307381460.0,Michelle Moran,2007.0,Nefertiti,Nefertiti,en-US,4.07,24959,27885,2234,341,1191,5272,10551,10530,https://images.gr-assets.com/books/1320449831l/481446.jpg,https://images.gr-assets.com/books/1320449831s/481446.jpg\n4147,11709037,11709037,16656588,24,1592406599,9781592406590.0,David McRaney,2011.0,‎You Are Not So Smart‎,\"You Are Not So Smart: Why You Have Too Many Friends on Facebook, Why Your Memory Is Mostly Fiction, and 46 Other Ways You're Deluding Yourself\",en-US,3.85,20583,22226,1402,708,1418,5206,7980,6914,https://images.gr-assets.com/books/1391879112l/11709037.jpg,https://images.gr-assets.com/books/1391879112s/11709037.jpg\n4148,72854,72854,3098033,27,553578529,9780553578520.0,Sara Donati,1998.0,Into the Wilderness,\"Into the Wilderness (Wilderness, #1)\",eng,4.1,25293,27851,1751,544,1225,4589,9923,11570,https://images.gr-assets.com/books/1320395200l/72854.jpg,https://images.gr-assets.com/books/1320395200s/72854.jpg\n4149,1519,1519,2378,255,140443339,9780140443330.0,\"Aeschylus, Robert Fagles, William Bedell Stanford\",-458.0,Ὀρέστεια,\"The Oresteia  (Ορέστεια, #1-3)\",eng,3.99,24588,28162,705,323,1471,6415,9813,10140,https://images.gr-assets.com/books/1391822282l/1519.jpg,https://images.gr-assets.com/books/1391822282s/1519.jpg\n4150,17167084,17167084,23594240,25,312655479,9780312655470.0,Louise Penny,2013.0,How the Light Gets In,\"How the Light Gets In (Chief Inspector Armand Gamache, #9)\",eng,4.41,24325,28475,3475,223,540,2549,9225,15938,https://images.gr-assets.com/books/1364312402l/17167084.jpg,https://images.gr-assets.com/books/1364312402s/17167084.jpg\n4151,347656,347656,247323,30,1581344988,9781581344980.0,John Piper,2003.0,Don't Waste Your Life,Don't Waste Your Life,,4.11,20095,20722,597,505,987,3510,6524,9196,https://images.gr-assets.com/books/1369824233l/347656.jpg,https://images.gr-assets.com/books/1369824233s/347656.jpg\n4152,54984,54984,2731326,121,307376656,9780307376660.0,Ildefonso Falcones,2006.0,La catedral del mar,La catedral del mar,spa,4.05,18906,25313,1387,568,1350,4363,9007,10025,https://images.gr-assets.com/books/1366301973l/54984.jpg,https://images.gr-assets.com/books/1366301973s/54984.jpg\n4153,111222,111222,15542976,21,345425502,9780345425510.0,Alison Weir,1996.0,The Life of Elizabeth I,The Life of Elizabeth I,en-US,4.05,23628,24636,586,476,876,4646,9500,9138,https://images.gr-assets.com/books/1320433923l/111222.jpg,https://images.gr-assets.com/books/1320433923s/111222.jpg\n4154,747061,747061,733204,32,1592975038,9781592975040.0,The Church of Jesus Christ of Latter-day Saints,1950.0,\"The Book of Mormon, Doctrine and Covenants, the Pearl of Great Price\",\"Book of Mormon, Doctrine and Covenants, Pearl of Great Price\",,4.36,21692,23176,677,2606,672,838,750,18310,https://images.gr-assets.com/books/1396619969l/747061.jpg,https://images.gr-assets.com/books/1396619969s/747061.jpg\n4155,8163722,8163722,13007500,17,044657922X,9780446579220.0,\"Jon Stewart, Rory Albanese, Kevin Bleyer, Rich Bloomquist, Steve Bodow, Tim Carvell, Wyatt Cenac, Hallie Haglund, J.R. Havlan, David Javerbaum, Elliott Kalan, Josh Lieb, Sam Means, Jo Miller, John Oliver, Daniel Radosh, Jason Ross\",2010.0,Earth: A Visitor's Guide to the Human Race ,Earth (The Book): A Visitor's Guide to the Human Race,eng,3.91,23240,24039,1092,482,1381,5610,8845,7721,https://images.gr-assets.com/books/1344264519l/8163722.jpg,https://images.gr-assets.com/books/1344264519s/8163722.jpg\n4156,6315602,6315602,6500841,28,373210035,9780373210040.0,Rachel Vincent,2009.0,My Soul to Take,\"My Soul to Take (Soul Screamers, #1)\",eng,3.88,35680,37630,2547,1161,2509,8707,12385,12868,https://images.gr-assets.com/books/1454287869l/6315602.jpg,https://images.gr-assets.com/books/1454287869s/6315602.jpg\n4157,15019,15019,13649381,45,1571740562,9781571740560.0,Neale Donald Walsch,1996.0,Conversations With God. An Uncommon Dialogue. Book 2,\"Conversations With God: An Uncommon Dialogue, Book 2\",eng,4.1,19444,20073,226,532,999,3624,5679,9239,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328966l/15019.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4158,9413044,9413044,14297146,26,62071130,9780062071130.0,Brodi Ashton,2012.0,Everneath,\"Everneath (Everneath, #1)\",en-US,3.76,36153,38028,4343,1515,3361,9397,12189,11566,https://images.gr-assets.com/books/1340210035l/9413044.jpg,https://images.gr-assets.com/books/1340210035s/9413044.jpg\n4159,3400816,3400816,3440839,27,739328271,9780739328280.0,Janet Evanovich,2009.0,Plum Spooky,\"Plum Spooky (Stephanie Plum, #14.5)\",eng,3.77,32890,36564,2097,566,3027,10847,11786,10338,https://images.gr-assets.com/books/1320400804l/3400816.jpg,https://images.gr-assets.com/books/1320400804s/3400816.jpg\n4160,1426,1426,1179777,130,60527986,9780060527980.0,Paulo Coelho,1997.0,Manual do guerreiro da luz,Warrior of the Light,en-US,3.69,19063,22985,1101,1164,2488,5804,6405,7124,https://images.gr-assets.com/books/1359135200l/1426.jpg,https://images.gr-assets.com/books/1359135200s/1426.jpg\n4161,2548866,2548866,2556437,9,,,G. Norman Lippert,2007.0,James Potter and the Hall of Elders' Crossing ,\"James Potter and the Hall of Elders' Crossing (James Potter, #1)\",eng,3.78,21310,21423,2457,1270,1507,4756,7122,6768,https://images.gr-assets.com/books/1497650972l/2548866.jpg,https://images.gr-assets.com/books/1497650972s/2548866.jpg\n4162,2936415,2936415,2842871,31,385522266,9780385522270.0,Jon Krakauer,2008.0,Where Men Win Glory: The Odyssey of Pat Tillman,Where Men Win Glory: The Odyssey of Pat Tillman,en-US,4.03,21302,23444,2574,284,945,4488,9729,7998,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439088374l/2936415._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4163,824062,824062,2296068,45,800793013,9780800793010.0,\"Brother Andrew, Elizabeth Sherrill, John Sherrill\",1964.0,God's Smuggler,God's Smuggler,eng,4.32,22970,23589,603,305,537,3086,6974,12687,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347829238l/824062.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4164,9923372,9923372,14385352,24,307595129,9780307595130.0,J. Courtney Sullivan,2011.0,Maine,Maine,,3.34,23979,26907,3821,950,3838,10342,8746,3031,https://images.gr-assets.com/books/1295996313l/9923372.jpg,https://images.gr-assets.com/books/1295996313s/9923372.jpg\n4165,18660447,18660447,26479163,22,006233638X,9780062336380.0,Kasie West,2015.0,Fill-in boyfrined,The Fill-In Boyfriend,eng,3.92,31656,33366,4302,735,1916,7599,12148,10968,https://images.gr-assets.com/books/1414605032l/18660447.jpg,https://images.gr-assets.com/books/1414605032s/18660447.jpg\n4166,161426,161426,1132968,74,553376055,9780553376050.0,Meg Rosoff,2004.0,How I Live Now,How I Live Now,eng,3.58,28896,33294,4131,1558,3696,9438,11055,7547,https://images.gr-assets.com/books/1327870252l/161426.jpg,https://images.gr-assets.com/books/1327870252s/161426.jpg\n4167,47613,47613,1243291,39,439856264,9780439856260.0,Garth Nix,2003.0,Mister Monday,\"Mister Monday (The Keys to the Kingdom, #1)\",eng,3.77,28430,30722,1314,652,2230,8604,11221,8015,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298425074l/47613.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4168,9166559,9166559,14045698,37,778328791,9780778328800.0,Heather Gudenkauf,2011.0,These things hidden,These Things Hidden,,3.85,27030,28962,3006,453,1710,7323,11617,7859,https://images.gr-assets.com/books/1296001564l/9166559.jpg,https://images.gr-assets.com/books/1296001564s/9166559.jpg\n4169,852460,852460,837964,5,1561483397,9781561483400.0,\"Dawn J. Ranck, Phyllis Pellman Good\",2000.0,Fix-It and Forget-It Cookbook: Feasting with Your Slow Cooker,Fix-It and Forget-It Cookbook: Feasting with Your Slow Cooker,,3.85,22697,22857,114,556,1792,5994,6596,7919,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442758991l/852460._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4170,6006518,6006518,6181610,37,1595142517,9781595142510.0,\"Lili St. Crow, Lilith Saintcrow\",2009.0,Strange Angels,\"Strange Angels (Strange Angels, #1)\",eng,3.78,35169,36155,2089,1737,3266,8397,10468,12287,https://images.gr-assets.com/books/1331244487l/6006518.jpg,https://images.gr-assets.com/books/1331244487s/6006518.jpg\n4171,103342,103342,1017164,70,786886307,9780786886300.0,\"Malika Oufkir, Michèle Fitoussi\",1999.0,La Prisonnière,Stolen Lives: Twenty Years in a Desert Jail,eng,4.08,16134,23437,2655,299,989,4496,8315,9338,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442961301l/103342._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4172,6013511,6013511,5083472,63,399155813,9780399155820.0,Nora Roberts,2009.0,Black Hills,Black Hills,en-US,4.08,26676,28922,1316,243,1079,5930,10495,11175,https://images.gr-assets.com/books/1303019108l/6013511.jpg,https://images.gr-assets.com/books/1303019108s/6013511.jpg\n4173,91714,91714,577888,48,078512179X,9780785121790.0,\"Mark Millar, Steve McNiven, Dexter Vines, Morry Hollowell\",2006.0,Civil War: A Marvel Comics Event,Civil War: A Marvel Comics Event,eng,4.05,23851,26638,1502,348,1229,5151,9940,9970,https://images.gr-assets.com/books/1345813608l/91714.jpg,https://images.gr-assets.com/books/1345813608s/91714.jpg\n4174,609870,609870,596352,27,805421300,9780805421310.0,\"Kim Carpenter, John R. Perry, Krickitt Carpenter\",2000.0,The Vow: The Kim and Krickitt Carpenter Story,The Vow: The Kim & Krickitt Carpenter Story,eng,3.77,16705,23043,1817,824,2338,5858,6358,7665,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387752760l/609870.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4175,7171856,7171856,2534984,79,143913376X,9781439133770.0,Robert A. Heinlein,1951.0,The Puppet Masters,The Puppet Masters,eng,3.86,24641,26134,511,255,1323,7274,10149,7133,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348052588l/7171856.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4176,23212667,23212667,42755300,23,,,Megan Miranda,2016.0,All the Missing Girls,All the Missing Girls,eng,3.79,36522,42454,4825,632,2705,11673,17470,9974,https://images.gr-assets.com/books/1452098621l/23212667.jpg,https://images.gr-assets.com/books/1452098621s/23212667.jpg\n4177,921651,921651,746296,7,307119408,9780307119410.0,Mercer Mayer,1983.0,Just Go to Bed,Just Go to Bed,en-US,4.22,24452,24471,145,339,834,4400,6354,12544,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349015862l/921651.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4179,228063,228063,236439,14,345470583,9780345470580.0,\"CLAMP, William Flanagan\",2003.0,xxxHOLiC #1,\"xxxHolic, Vol. 1 (xxxHOLiC, #1)\",en-US,4.17,23323,23465,278,547,1145,3778,6307,11688,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216406l/228063.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4180,279692,279692,3350842,11,039541668X,9780395416690.0,\"Harry Allard, James  Marshall\",1982.0,Miss Nelson Is Back,\"Miss Nelson Is Back (Miss Nelson, #2)\",en-US,4.33,26289,26370,171,154,630,4216,6757,14613,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429278920l/279692.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4181,77505,77505,69059,46,553572393,9780553572390.0,Kim Stanley Robinson,1994.0,Green Mars,\"Green Mars (Mars Trilogy, #2)\",en-GB,3.91,24627,26338,654,458,1520,6205,9825,8330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389628152l/77505.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4182,28691,28691,2242650,12,756402980,9780756402980.0,Tad Williams,1993.0,\"To Green Angel Tower (Memory, Sorrow, and Thorn, #3)\",\"To Green Angel Tower (Memory, Sorrow, and Thorn, #3)\",eng,4.16,25997,26466,237,255,893,4543,9491,11284,https://images.gr-assets.com/books/1347824309l/28691.jpg,https://images.gr-assets.com/books/1347824309s/28691.jpg\n4183,45685,45685,3062141,295,744549515,9780744549520.0,\"Oscar Wilde, Inga Moore\",1887.0,The Canterville Ghost,The Canterville Ghost,eng,3.89,22152,29341,1528,258,1486,7785,11574,8238,https://images.gr-assets.com/books/1363935696l/45685.jpg,https://images.gr-assets.com/books/1363935696s/45685.jpg\n4184,18630542,18630542,17378014,16,345529375,9780345529370.0,\"Bryan Lee O'Malley, Nathan Fairbairn\",2014.0,Seconds: A Graphic Novel,Seconds,eng,4.07,20595,27672,2852,635,970,4517,11167,10383,https://images.gr-assets.com/books/1399502867l/18630542.jpg,https://images.gr-assets.com/books/1399502867s/18630542.jpg\n4185,16134551,16134551,21961950,14,,,Tijan,2012.0,Fallen Crest High,\"Fallen Crest High (Fallen Crest High, #1)\",en-GB,4.13,37150,37807,2472,1351,1985,5365,10834,18272,https://images.gr-assets.com/books/1355101275l/16134551.jpg,https://images.gr-assets.com/books/1355101275s/16134551.jpg\n4186,327246,327246,317884,14,1402735421,9781402735420.0,Jenő Barcsay,1953.0,Művészeti Anatómia,Anatomy for the Artist,,3.97,21640,21688,24,893,1421,4389,5692,9293,https://images.gr-assets.com/books/1328858785l/327246.jpg,https://images.gr-assets.com/books/1328858785s/327246.jpg\n4187,6572,6572,221202,23,044018293X,9780440182930.0,John Saul,1977.0,Suffer the Children,Suffer the Children,en-US,3.9,24533,24798,268,522,1465,6398,8075,8338,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925349l/6572.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4188,24137,24137,25037,49,60739428,9780060739420.0,Karen Cushman,1994.0,\"Catherine, Called Birdy\",\"Catherine, Called Birdy\",eng,3.7,31185,33034,1330,1043,2747,9642,11289,8313,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167520363l/24137._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4189,613283,613283,2194204,82,967673747,9780967673740.0,Jean Sasson,1992.0,Princess: A True Story of Life Behind the Veil in Saudi Arabia ,Princess: A True Story of Life Behind the Veil in Saudi Arabia,en-US,4.0,20019,24097,2219,348,1100,5071,9329,8249,https://images.gr-assets.com/books/1377538002l/613283.jpg,https://images.gr-assets.com/books/1377538002s/613283.jpg\n4190,15547,15547,287715,65,1857232569,9781857232560.0,Terry Brooks,1986.0,Magic Kingdom for Sale—Sold!,\"Magic Kingdom For Sale/Sold (Magic Kingdom of Landover, #1)\",eng,3.86,26995,29793,933,427,1927,7816,10696,8927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673242l/15547._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4191,68984,68984,2037992,199,553583182,9780553583180.0,\"Joseph Murphy, Ian McMahan\",1962.0,The Power of Your Subconscious Mind,The Power of Your Subconscious Mind,en-US,4.12,16951,22359,1054,555,1055,3761,6667,10321,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924010l/68984.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4192,31341,31341,2926067,53,99271494,9780099271500.0,Anne Rice,2001.0,Blood and Gold: The Vampire Marius,\"Blood And Gold (The Vampire Chronicles, #8)\",en-US,3.88,25780,28635,565,460,2010,7361,9469,9335,https://images.gr-assets.com/books/1168274792l/31341.jpg,https://images.gr-assets.com/books/1168274792s/31341.jpg\n4193,10816908,10816908,15730581,18,62026518,9780062026510.0,Rae Carson,2012.0,The Crown of Embers,\"The Crown of Embers (Fire and Thorns, #2)\",eng,4.2,32885,35272,2864,529,1014,5117,12931,15681,https://images.gr-assets.com/books/1335241091l/10816908.jpg,https://images.gr-assets.com/books/1335241091s/10816908.jpg\n4194,153785,153785,2665123,23,,,Tamora Pierce,2000.0,Page ,\"Page (Protector of the Small, #2)\",eng,4.22,33405,36330,591,145,914,6179,12607,16485,https://images.gr-assets.com/books/1215394280l/153785.jpg,https://images.gr-assets.com/books/1215394280s/153785.jpg\n4195,18170039,18170039,25538638,14,62317148,9780062317150.0,Kiera Cass,2014.0,The Guard,\"The Guard (The Selection, #2.5)\",eng,3.75,32401,34837,2017,751,3205,10414,9995,10472,https://images.gr-assets.com/books/1380307008l/18170039.jpg,https://images.gr-assets.com/books/1380307008s/18170039.jpg\n4196,816870,816870,2683165,58,440442508,9780440442510.0,\"Esther Forbes, Lynd Ward\",1943.0,Johnny Tremain,Johnny Tremain,en-US,3.62,30157,32906,1862,1656,3059,9461,10831,7899,https://images.gr-assets.com/books/1308964858l/816870.jpg,https://images.gr-assets.com/books/1308964858s/816870.jpg\n4197,172732,172732,818488,100,1876175702,9781876175700.0,\"Ernesto Che Guevara, Aleida Guevara March\",1993.0,Diarios de motocicleta: notas de viaje por América Latina,The Motorcycle Diaries: Notes on a Latin American Journey,eng,3.79,18964,23023,1265,345,1450,6536,9085,5607,https://images.gr-assets.com/books/1354902593l/172732.jpg,https://images.gr-assets.com/books/1354902593s/172732.jpg\n4199,125956,125956,1614882,49,1595540210,9781595540220.0,Ted Dekker,2003.0,Black 1. The Birth of Evil,\"Black: The Birth of Evil (The Circle, #1)\",eng,4.21,23496,25018,1530,369,911,3735,8060,11943,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268108l/125956.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4200,6437061,6437061,6626657,40,316043915,9780316043920.0,N.K. Jemisin,2010.0,The Hundred Thousand Kingdoms,\"The Hundred Thousand Kingdoms (Inheritance Trilogy, #1)\",eng,3.8,28989,32505,3710,899,2358,7824,12568,8856,https://images.gr-assets.com/books/1303143211l/6437061.jpg,https://images.gr-assets.com/books/1303143211s/6437061.jpg\n4201,857445,857445,325563,11,399226168,9780399226170.0,Peggy Rathmann,1995.0,Officer Buckle & Gloria (Hardcover),Officer Buckle & Gloria,eng,4.16,24578,25331,1373,430,1111,4583,7171,12036,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348468943l/857445.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4202,63033,63033,2503920,81,374191484,9780374191480.0,\"Roberto Bolaño, Natasha Wimmer\",1998.0,Los detectives salvajes,The Savage Detectives,en-US,4.09,17946,23550,2575,701,1425,3420,7440,10564,https://images.gr-assets.com/books/1342651149l/63033.jpg,https://images.gr-assets.com/books/1342651149s/63033.jpg\n4203,11300302,11300302,16227953,42,373210582,9780373210590.0,Gena Showalter,2012.0,Alice in Zombieland,\"Alice in Zombieland (White Rabbit Chronicles, #1)\",eng,4.05,30537,33340,4689,1274,1937,5427,9766,14936,https://images.gr-assets.com/books/1333628241l/11300302.jpg,https://images.gr-assets.com/books/1333628241s/11300302.jpg\n4204,6801582,6801582,7008092,48,61668060,9780061668070.0,Aprilynne Pike,2009.0,Spells,\"Spells (Wings, #2)\",en-US,3.99,34331,36223,1924,612,2047,8138,11888,13538,https://images.gr-assets.com/books/1328316409l/6801582.jpg,https://images.gr-assets.com/books/1328316409s/6801582.jpg\n4205,59151,59151,57593,287,1590171691,9781590171690.0,\"Stefan Zweig, Joel Rotenberg, Hans Hausmann, Dirk Muller, Peter Gay, Willy Trenk-Trebitsch, Mario Adorf, Gert Westphal\",1941.0,Schachnovelle,Chess Story,eng,4.28,16716,31061,1907,203,613,3867,12037,14341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924796l/59151.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4206,594361,594361,6533130,2,736420959,9780736420950.0,\"Justine Korman Fontes, Don Williams, Walt Disney Company\",1994.0,The Lion King (Little Golden Book),The Lion King: A little Golden Book,,4.46,23098,23102,80,205,545,2803,4333,15216,https://images.gr-assets.com/books/1320412442l/594361.jpg,https://images.gr-assets.com/books/1320412442s/594361.jpg\n4207,11198312,11198312,16505286,20,545324092,9780545324090.0,Gordon Korman,2011.0,The Medusa Plot,\"The Medusa Plot (39 Clues: Cahills vs. Vespers, #1)\",eng,4.07,24489,25090,566,741,1162,4878,7010,11299,https://images.gr-assets.com/books/1328836311l/11198312.jpg,https://images.gr-assets.com/books/1328836311s/11198312.jpg\n4208,266904,266904,2564478,45,,9780440420480.0,Jeanne Birdsall,2005.0,\"The Penderwicks: A Summer Tale of Four Sisters, Two Rabbits, and a Very Interesting Boy\",\"The Penderwicks: A Summer Tale of Four Sisters, Two Rabbits, and a Very Interesting Boy (The Penderwicks #1)\",eng,4.12,32251,33898,3757,471,1305,5976,11967,14179,https://images.gr-assets.com/books/1320508900l/266904.jpg,https://images.gr-assets.com/books/1320508900s/266904.jpg\n4209,7164343,7164343,7521142,40,044658083X,9780446580830.0,Nelson DeMille,2010.0,The Lion,\"The Lion (John Corey, #5)\",en-US,4.22,21564,23628,1051,155,516,3557,9220,10180,https://images.gr-assets.com/books/1259186800l/7164343.jpg,https://images.gr-assets.com/books/1259186800s/7164343.jpg\n4210,112754,112754,2746769,46,044023655X,9780440236560.0,Karen Marie Moning,2001.0,Kiss of the Highlander,\"Kiss of the Highlander (Highlander, #4)\",eng,4.31,32793,34840,1423,237,746,4640,11623,17594,https://images.gr-assets.com/books/1400966202l/112754.jpg,https://images.gr-assets.com/books/1400966202s/112754.jpg\n4211,12722468,12722468,17858422,21,1400067898,9781400067890.0,Sally Bedell Smith,2012.0,Elizabeth The Queen: The Life Of A Modern Monarch,Elizabeth the Queen: The Life of a Modern Monarch,eng,3.85,20063,20705,933,816,1334,4928,6679,6948,https://images.gr-assets.com/books/1324343095l/12722468.jpg,https://images.gr-assets.com/books/1324343095s/12722468.jpg\n4212,19101283,19101283,24342394,78,385351372,9780385351380.0,\"Jo Nesbø, Charlotte Barslund\",2014.0,Sønnen,The Son,eng,4.07,19393,25476,2270,355,834,4359,11025,8903,https://images.gr-assets.com/books/1390177620l/19101283.jpg,https://images.gr-assets.com/books/1390177620s/19101283.jpg\n4213,6839093,6839093,7050578,14,1607061597,9781607061600.0,\"John Layman, Rob Guillory\",2009.0,Taster's Choice,\"Chew, Vol. 1: Taster's Choice\",eng,4.0,27570,27899,1690,880,1378,4938,10351,10352,https://images.gr-assets.com/books/1409985990l/6839093.jpg,https://images.gr-assets.com/books/1409985990s/6839093.jpg\n4214,785453,785453,771451,38,440418518,9780440418510.0,Linda Sue Park,2001.0,A Single Shard,A Single Shard,eng,3.87,27345,28532,2059,896,1874,6499,10138,9125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348868705l/785453.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4215,29187,29187,852,48,786931582,9780786931580.0,\"Margaret Weis, Tracy Hickman\",1986.0,Time of the Twins,\"Time of the Twins (Dragonlance: Legends, #1)\",eng,4.13,24671,27264,313,142,937,5249,9846,11090,https://images.gr-assets.com/books/1390667790l/29187.jpg,https://images.gr-assets.com/books/1390667790s/29187.jpg\n4216,7743117,7743117,17836362,30,61779741,9780061779750.0,Christopher Moore,2012.0,Sacré Bleu: A Comedy d'Art,Sacré Bleu: A Comedy d'Art,en-CA,3.77,22559,25721,3234,813,2031,6411,9581,6885,https://images.gr-assets.com/books/1331321350l/7743117.jpg,https://images.gr-assets.com/books/1331321350s/7743117.jpg\n4217,331256,331256,1243896,98,575070536,9780575070530.0,\"Arkady Strugatsky, Boris Strugatsky, Antonina W. Bouis, Antonina W. Bouis, Theodore Sturgeon\",1972.0,Пикник на обочине,Roadside Picnic,eng,4.21,17689,25233,1518,206,817,3809,8997,11404,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173812259l/331256.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4218,2068676,2068676,2073911,32,006085202X,9780060852020.0,Meg Cabot,2008.0,Queen of Babble Gets Hitched,\"Queen of Babble Gets Hitched (Queen of Babble, #3)\",en-US,3.82,28734,29529,841,863,2003,7762,9959,8942,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435404778l/2068676._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4219,182381,182381,1016559,403,141439882,9780141439880.0,Elizabeth Gaskell,1853.0,Cranford,Cranford,eng,3.85,25805,29034,1710,673,1884,7339,10450,8688,https://images.gr-assets.com/books/1375746052l/182381.jpg,https://images.gr-assets.com/books/1375746052s/182381.jpg\n4220,11761,11761,2968156,71,330369954,9780330369950.0,Don DeLillo,1997.0,Underworld,Underworld,eng,3.92,19152,22303,1583,827,1665,4209,7422,8180,https://images.gr-assets.com/books/1334304280l/11761.jpg,https://images.gr-assets.com/books/1334304280s/11761.jpg\n4221,50140,50140,92349,62,140168125,9780140168130.0,\"Jack Kerouac, Aram Saroyan\",1962.0,Big Sur,Big Sur,eng,3.86,21875,23218,865,320,1370,6128,8830,6570,https://images.gr-assets.com/books/1428984256l/50140.jpg,https://images.gr-assets.com/books/1428984256s/50140.jpg\n4222,200572,200572,463407,263,1585678759,9781585678750.0,P.G. Wodehouse,1919.0,My Man Jeeves,\"My Man Jeeves (Jeeves, #1)\",eng,4.13,23020,26687,1423,277,798,4861,9935,10816,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348915558l/200572.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4223,6368610,6368610,6517530,25,61659223,9780061659220.0,Melissa Marr,2010.0,Radiant Shadows,\"Radiant Shadows (Wicked Lovely, #4)\",en-US,3.97,33385,34440,1338,732,2155,7625,10832,13096,https://images.gr-assets.com/books/1258758145l/6368610.jpg,https://images.gr-assets.com/books/1258758145s/6368610.jpg\n4224,13448656,13448656,18968802,14,,9781476248950.0,Kristen Ashley,2012.0,Motorcycle Man,\"Motorcycle Man (Dream Man, #4)\",eng,4.43,41818,45509,3213,572,994,4130,12411,27402,https://images.gr-assets.com/books/1337615202l/13448656.jpg,https://images.gr-assets.com/books/1337615202s/13448656.jpg\n4225,20980987,20980987,40358230,26,1455581089,9781455581080.0,Amanda Palmer,2014.0,\"The Art of Asking; or, How I Learned to Stop Worrying and Let People Help\",\"The Art of Asking; or, How I Learned to Stop Worrying and Let People Help\",eng,3.97,20075,22114,2349,1080,1341,3823,6721,9149,https://images.gr-assets.com/books/1408547261l/20980987.jpg,https://images.gr-assets.com/books/1408547261s/20980987.jpg\n4226,14288998,14288998,19928978,35,62072099,9780062072090.0,Veronica Rossi,2014.0,Into the Still Blue,\"Into the Still Blue (Under the Never Sky, #3)\",eng,4.17,33983,37218,3532,472,1199,5929,13613,16005,https://images.gr-assets.com/books/1417467183l/14288998.jpg,https://images.gr-assets.com/books/1417467183s/14288998.jpg\n4227,296302,296302,1139021,39,1594489173,9781594489170.0,Ann Brashares,2007.0,The Last Summer (of You and Me),The Last Summer (of You and Me),en-US,3.58,26094,27849,2427,955,3097,8773,8826,6198,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442116771l/296302._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4228,95406,95406,1433216,16,1563893126,9781563893120.0,\"Garth Ennis, Steve Dillon\",1997.0,Preacher Vol. 2: Until the End of the World,\"Preacher, Volume 2: Until the End of the World\",eng,4.28,24086,24603,423,419,768,3034,7707,12675,https://images.gr-assets.com/books/1309914965l/95406.jpg,https://images.gr-assets.com/books/1309914965s/95406.jpg\n4229,36,36,4414,12,618391002,9780618391000.0,\"Chris   Smith, Christopher Lee, Richard Taylor\",,The Lord of the Rings: Weapons and Warfare,The Lord of the Rings: Weapons and Warfare,eng,4.53,18788,18911,49,297,282,1556,3743,13033,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290346l/36.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4230,215543,215543,1946197,40,743437322,9780743437320.0,D.J. MacHale,2003.0,The Lost City of Faar,\"The Lost City of Faar (Pendragon, #2)\",eng,4.16,25401,26256,605,229,862,4722,9063,11380,https://images.gr-assets.com/books/1431400965l/215543.jpg,https://images.gr-assets.com/books/1431400965s/215543.jpg\n4231,31374,31374,1567538,89,553278029,9780553278030.0,Elizabeth  George,1988.0,A Great Deliverance,\"A Great Deliverance (Inspector Lynley, #1)\",en-US,4.06,28027,30202,1248,401,953,5705,12582,10561,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422723527l/31374.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4232,7194,7194,372756,129,,9780156032830.0,\"Arturo Pérez-Reverte, Sonia Soto\",1993.0,El club Dumas,The Club Dumas,eng,3.82,24090,27793,1541,536,1969,7087,10703,7498,https://images.gr-assets.com/books/1327896341l/7194.jpg,https://images.gr-assets.com/books/1327896341s/7194.jpg\n4233,248482,248482,1139000,25,1582349061,9781582349060.0,Shannon Hale,2004.0,Enna Burning,\"Enna Burning (The Books of Bayern, #2)\",eng,3.97,31710,33826,3375,279,1481,7973,13440,10653,https://images.gr-assets.com/books/1388286936l/248482.jpg,https://images.gr-assets.com/books/1388286936s/248482.jpg\n4235,21456940,21456940,40771304,2,,9789770932930.0,أحمد مراد,2014.0,1919,1919,ara,3.65,17330,17334,2421,838,1712,4619,5645,4520,https://images.gr-assets.com/books/1396549800l/21456940.jpg,https://images.gr-assets.com/books/1396549800s/21456940.jpg\n4236,105999,105999,1174365,59,380709589,9780380709590.0,\"Beverly Cleary, Paul O. Zelinsky\",1983.0,Dear Mr. Henshaw,\"Dear Mr. Henshaw (Leigh Botts, #1)\",eng,3.7,28979,29801,1248,917,2594,8946,9385,7959,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556608149l/105999.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4238,3378,3378,2851520,53,349108390,9780349108390.0,Douglas Coupland,1991.0,Generation X: Tales for an Accelerated Culture,Generation X: Tales for an Accelerated Culture,eng,3.73,20030,22904,942,480,1778,6596,8655,5395,https://images.gr-assets.com/books/1485623844l/3378.jpg,https://images.gr-assets.com/books/1485623844s/3378.jpg\n4239,23168277,23168277,42713530,33,802123457,9780802123460.0,Viet Thanh Nguyen,2015.0,The Sympathizer,The Sympathizer,eng,4.0,20972,28424,3889,523,1396,5361,11374,9770,https://images.gr-assets.com/books/1423543886l/23168277.jpg,https://images.gr-assets.com/books/1423543886s/23168277.jpg\n4240,16305,16305,907837,200,1579126286,9781579126280.0,Agatha Christie,1941.0,Evil Under the Sun,\"Evil Under the Sun (Hercule Poirot, #23)\",eng,3.94,28776,32094,954,145,1074,8515,13068,9292,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922974l/16305.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4241,17375956,17375956,23743714,18,,,Joanna Wylde,2013.0,Reaper's Property,\"Reaper's Property (Reapers MC, #1)\",eng,4.13,38499,46663,3336,984,1922,7370,16238,20149,https://images.gr-assets.com/books/1360943604l/17375956.jpg,https://images.gr-assets.com/books/1360943604s/17375956.jpg\n4242,164542,164542,3022662,63,60512628,9780060512620.0,\"Mary O'Hara, Dave Blossom\",1941.0,\"My Friend Flicka (Flicka, #1)\",\"My Friend Flicka (Flicka, #1)\",en-US,4.15,25180,25768,290,264,901,5094,8083,11426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429495342l/164542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4243,12326644,12326644,17305288,47,145162607X,9781451626070.0,\"Philippa Gregory, Mirjana Valent\",2012.0,The Kingmaker's Daughter,\"The Kingmaker's Daughter (The Plantagenet and Tudor Novels, #4)\",eng,3.95,24258,28940,2427,207,1090,6870,12606,8167,https://images.gr-assets.com/books/1332688725l/12326644.jpg,https://images.gr-assets.com/books/1332688725s/12326644.jpg\n4244,292275,292275,734246,265,1847024696,9781847024700.0,\"Henrik Ibsen, William Archer\",1890.0,Hedda Gabler,Hedda Gabler,eng,3.79,24567,26117,456,571,2029,6986,9271,7260,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348233987l/292275.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4245,1298205,1298205,2770233,47,736423095,9780736423090.0,Walt Disney Company,1940.0,Dumbo (Little Golden Book),Dumbo: A Little Golden Book,,4.29,23338,23750,61,317,886,4030,4934,13583,https://images.gr-assets.com/books/1320426193l/1298205.jpg,https://images.gr-assets.com/books/1320426193s/1298205.jpg\n4246,22698568,22698568,42216232,45,62290398,9780062290400.0,Erika Johansen,2015.0,The Invasion of the Tearling,\"The Invasion of the Tearling (The Queen of the Tearling, #2)\",eng,4.15,24341,29344,3535,238,825,4612,12431,11238,https://images.gr-assets.com/books/1461864829l/22698568.jpg,https://images.gr-assets.com/books/1461864829s/22698568.jpg\n4247,13256064,13256064,16202410,107,307960471,9780307960470.0,\"Jo Nesbø, Don Bartlett\",2011.0,Gjenferd,\"Phantom (Harry Hole, #9)\",,4.11,19526,25682,1993,255,761,4102,11404,9160,https://images.gr-assets.com/books/1333577303l/13256064.jpg,https://images.gr-assets.com/books/1333577303s/13256064.jpg\n4249,588369,588369,2977991,72,7198914,9780007198920.0,Cecelia Ahern,2006.0,A Place Called Here,A Place Called Here,eng,3.66,22074,26438,1616,914,2696,7650,8413,6765,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348943631l/588369.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4250,99664,99664,1069201,124,307277771,9780307277770.0,W. Somerset Maugham,1925.0,The Painted Veil,The Painted Veil,eng,3.9,24113,27630,2710,263,1424,6600,11756,7587,https://images.gr-assets.com/books/1320421719l/99664.jpg,https://images.gr-assets.com/books/1320421719s/99664.jpg\n4251,31337,31337,2925858,48,99446723,9780099446730.0,Anne Rice,2002.0,Blackwood Farm,\"Blackwood Farm (The Vampire Chronicles, #9)\",eng,3.85,24567,27159,625,699,2076,6697,8841,8846,https://images.gr-assets.com/books/1327522790l/31337.jpg,https://images.gr-assets.com/books/1327522790s/31337.jpg\n4252,832543,832543,1184118,42,609800140,9780609800140.0,Caroline Myss,1996.0,Anatomy of the Spirit: The Seven Stages of Power and Healing,Anatomy of the Spirit: The Seven Stages of Power and Healing,en-US,4.12,20720,21395,477,349,843,3861,7097,9245,https://images.gr-assets.com/books/1320424261l/832543.jpg,https://images.gr-assets.com/books/1320424261s/832543.jpg\n4253,7036,7036,2647331,62,349117047,9780349117040.0,Alexander McCall Smith,2002.0,The Kalahari Typing School for Men,\"The Kalahari Typing School for Men (No. 1 Ladies' Detective Agency, #4)\",eng,3.99,26837,30378,1265,88,638,7220,13885,8547,https://images.gr-assets.com/books/1380393680l/7036.jpg,https://images.gr-assets.com/books/1380393680s/7036.jpg\n4254,16158535,16158535,21998951,28,039916216X,9780399162170.0,Beatriz Williams,2013.0,A Hundred Summers,A Hundred Summers,eng,3.9,22006,24680,2502,430,1257,5662,10332,6999,https://images.gr-assets.com/books/1366561825l/16158535.jpg,https://images.gr-assets.com/books/1366561825s/16158535.jpg\n4255,25558608,25558608,45355236,48,,9780008250450.0,Sabaa Tahir,2016.0,A Torch Against the Night,\"A Torch Against the Night (An Ember in the Ashes, #2)\",eng,4.34,30535,35094,5543,164,690,3782,12809,17649,https://images.gr-assets.com/books/1463675717l/25558608.jpg,https://images.gr-assets.com/books/1463675717s/25558608.jpg\n4256,556136,556136,2586820,25,618724834,9780618724830.0,Gary D. Schmidt,2007.0,The Wednesday Wars,The Wednesday Wars,eng,4.06,26847,28812,4870,615,1354,4959,10715,11169,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442044636l/556136._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4257,227454,227454,2149493,39,786939842,9780786939850.0,R.A. Salvatore,1992.0,The Legacy,\"The Legacy (Forgotten Realms: Legacy of the Drow, #1; Legend of Drizzt, #7)\",eng,4.18,20882,23034,212,144,683,4005,8220,9982,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389897830l/227454.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4258,803171,803171,649854,16,525471340,9780525471350.0,Judy Schachner,2003.0,Skippyjon Jones,Skippyjon Jones,eng,4.25,26421,27420,1103,682,1243,3862,6362,15271,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437964397l/803171._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4259,9410421,9410421,14294481,68,399157441,9780399157450.0,Nora Roberts,2011.0,Chasing Fire,Chasing Fire,eng,4.09,26687,29133,1707,335,1163,5598,10444,11593,https://images.gr-assets.com/books/1302982596l/9410421.jpg,https://images.gr-assets.com/books/1302982596s/9410421.jpg\n4260,95887,95887,2203492,116,1576754227,9781576754220.0,Brian Tracy,2001.0,Eat That Frog!: 21 Great Ways to Stop Procrastinating and Get More Done in Less Time,Eat That Frog!: 21 Great Ways to Stop Procrastinating and Get More Done in Less Time,en-US,3.84,18288,23687,1906,676,1714,5701,8138,7458,https://images.gr-assets.com/books/1328854785l/95887.jpg,https://images.gr-assets.com/books/1328854785s/95887.jpg\n4261,4600,4600,477124,13,689861133,9780689861130.0,Sandra Boynton,1982.0,\"Moo, Baa, La La La!\",\"Moo, Baa, La La La!\",eng,4.19,26065,27425,500,415,1169,4888,7393,13560,https://images.gr-assets.com/books/1451996462l/4600.jpg,https://images.gr-assets.com/books/1451996462s/4600.jpg\n4262,342504,342504,332860,369,1585426016,9781585426010.0,Wallace D. Wattles,1910.0,The Science of Getting Rich,The Science of Getting Rich,eng,4.18,19433,20746,544,474,871,3411,5671,10319,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440958184l/342504._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4263,2277444,2277444,2312106,46,61230944,9780061230940.0,James Rollins,2008.0,The Last Oracle,\"The Last Oracle (Sigma Force, #5)\",eng,4.15,23103,24815,746,167,635,4231,9998,9784,https://images.gr-assets.com/books/1367511748l/2277444.jpg,https://images.gr-assets.com/books/1367511748s/2277444.jpg\n4264,2501458,2501458,2508823,29,,9789953890530.0,\"أحلام مستغانمي, Ahlam Mosteghanemi\",1993.0,ذاكرة الجسد,ذاكرة الجسد,ara,3.87,17717,20432,1794,913,1596,4318,6087,7518,https://images.gr-assets.com/books/1291756684l/2501458.jpg,https://images.gr-assets.com/books/1291756684s/2501458.jpg\n4265,101911,101911,99634,33,60897848,9780060897840.0,A. Manette Ansay,1994.0,Vinegar Hill (P.S.),Vinegar Hill,en-US,3.36,23966,24802,901,1051,3431,9384,7412,3524,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440121207l/101911._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4266,234501,234501,251634,47,055327418X,9780553274190.0,David Brin,1983.0,Startide Rising,\"Startide Rising (The Uplift Saga, #2)\",en-US,4.04,24179,25142,485,299,1096,5044,9535,9168,https://images.gr-assets.com/books/1476445711l/234501.jpg,https://images.gr-assets.com/books/1476445711s/234501.jpg\n4267,16282066,35534230,16680623,15,1481200577,9781481200580.0,Shelly Crane,2011.0,Significance,\"Significance (Significance, #1)\",eng,4.13,18579,37825,2685,1091,1873,5811,11401,17649,https://images.gr-assets.com/books/1434591910l/16282066.jpg,https://images.gr-assets.com/books/1434591910s/16282066.jpg\n4268,880,880,268880,109,812974611,9780812974610.0,Robert   Harris,2003.0,Pompeii,Pompeii,eng,3.79,22734,26679,1800,344,1682,7409,11015,6229,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189565l/880.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4269,25066991,25066991,44751809,38,1455536253,9781455536250.0,David Baldacci,2015.0,The Guilty,\"The Guilty (Will Robie, #4)\",eng,4.12,12597,24893,1824,336,786,3995,10104,9672,https://images.gr-assets.com/books/1435632658l/25066991.jpg,https://images.gr-assets.com/books/1435632658s/25066991.jpg\n4270,243685,243685,1167354,92,671201581,9780671201590.0,Bertrand Russell,1945.0,A History of Western Philosophy And Its Connection with Political and Social Circumstances from the Earliest Times to the Present Day,A History of Western Philosophy,en-US,4.05,20895,22493,686,523,1061,4006,7991,8912,https://images.gr-assets.com/books/1344399003l/243685.jpg,https://images.gr-assets.com/books/1344399003s/243685.jpg\n4271,13235,13235,6542114,6,517220776,9780517220770.0,Lewis Carroll,1884.0,Complete Works of Lewis Carroll,The Complete Stories and Poems,,4.34,23390,23417,30,236,586,3104,6495,12996,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920699l/13235.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4272,39542,39542,39249,20,786886811,9780786886810.0,Nigella Lawson,1998.0,How to Be a Domestic Goddess: Baking and the Art of Comfort Cooking,How to Be a Domestic Goddess: Baking and the Art of Comfort Cooking,,4.0,22647,23164,276,802,1213,4565,7148,9436,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388364849l/39542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4273,672875,672875,1361856,331,451528166,9780451528160.0,\"Thomas Malory, Keith Baines, Robert Graves\",1485.0,Le Morte d'Arthur,Le Morte d'Arthur: King Arthur and the Legends of the Round Table,eng,3.92,25879,29697,671,355,1507,7518,11147,9170,https://images.gr-assets.com/books/1309288301l/672875.jpg,https://images.gr-assets.com/books/1309288301s/672875.jpg\n4274,196764,196764,436014,20,1400052297,9781400052300.0,Cupcake Brown,2006.0,A Piece of Cake: A Memoir,A Piece of Cake,eng,4.15,20083,21149,1916,344,961,3517,6618,9709,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360391l/196764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4275,24782,24782,2628,60,805080511,9780805080510.0,Lloyd Alexander,1967.0,Taran Wanderer,Taran Wanderer (The Chronicles of Prydain #4),eng,4.14,29544,30932,781,277,901,5789,11319,12646,https://images.gr-assets.com/books/1406315774l/24782.jpg,https://images.gr-assets.com/books/1406315774s/24782.jpg\n4276,136637,136637,1369951,72,446612758,9780446612750.0,\"Douglas Preston, Lincoln Child\",2004.0,Brimstone,\"Brimstone (Pendergast, #5; Diogenes, #1)\",en-GB,4.12,24949,27528,977,149,738,4963,11371,10307,https://images.gr-assets.com/books/1369943498l/136637.jpg,https://images.gr-assets.com/books/1369943498s/136637.jpg\n4277,17529,17529,1063767,252,1598183605,9781598183600.0,Kate Douglas Wiggin,1903.0,Rebecca of Sunnybrook Farm,Rebecca of Sunnybrook Farm,,3.85,27831,29414,529,510,1942,8258,9472,9232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348026765l/17529.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4278,114166,114166,1823830,62,006056251X,9780060562520.0,Lisa Kleypas,2006.0,Devil in Winter ,\"Devil in Winter (Wallflowers, #3)\",en-US,4.26,38100,41949,2570,311,1043,6081,14681,19833,https://images.gr-assets.com/books/1309220205l/114166.jpg,https://images.gr-assets.com/books/1309220205s/114166.jpg\n4279,2169506,2169506,1785549,24,152063110,9780152063120.0,Susan Beth Pfeffer,2008.0,The Dead and the Gone,\"The Dead and the Gone (Last Survivors, #2)\",en-US,3.84,28910,31088,2987,564,2027,8381,11015,9101,https://images.gr-assets.com/books/1266309782l/2169506.jpg,https://images.gr-assets.com/books/1266309782s/2169506.jpg\n4280,125955,125955,1299706,39,1595540350,9781595540360.0,Ted Dekker,2004.0,White,\"White: The Great Pursuit (The Circle, #3)\",,4.3,23201,23972,597,206,621,3287,7425,12433,https://images.gr-assets.com/books/1380858193l/125955.jpg,https://images.gr-assets.com/books/1380858193s/125955.jpg\n4281,6758331,6758331,6954915,41,778303764,9780778303760.0,Gena Showalter,2010.0,\"The Darkest Passion (Lords of the Underworld, #5)\",The Darkest Passion (Lords of the Underworld #5),eng,4.37,32610,34290,1155,168,623,4157,10738,18604,https://images.gr-assets.com/books/1351278057l/6758331.jpg,https://images.gr-assets.com/books/1351278057s/6758331.jpg\n4282,4601396,4601396,4651129,50,385526342,9780385526340.0,Chuck Palahniuk,2009.0,Pygmy,Pygmy,eng,2.96,21242,22865,1782,3121,4811,7258,5192,2483,https://images.gr-assets.com/books/1320495043l/4601396.jpg,https://images.gr-assets.com/books/1320495043s/4601396.jpg\n4283,16130307,16130307,20391423,59,1439136637,9781439136640.0,Lauren Weisberger,2013.0,Revenge Wears Prada: The Devil Returns,\"Revenge Wears Prada: The Devil Returns (The Devil Wears Prada, #2)\",en-US,2.84,19210,24526,3352,3153,6351,8319,4564,2139,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440180884l/16130307._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4284,5693,5693,84298,61,553381008,9780553381010.0,\"Anton Chekhov, Richard Pevear, Larissa Volokhonsky\",1900.0,Рассказы и Повести,Selected Stories,eng,4.36,23027,24546,489,147,527,2891,7735,13246,https://images.gr-assets.com/books/1491936310l/5693.jpg,https://images.gr-assets.com/books/1491936310s/5693.jpg\n4285,7648269,7648269,10199919,22,1416591052,9781416591050.0,S.C. Gwynne,2010.0,\"Empire of the Summer Moon: Quanah Parker and the Rise and Fall of the Comanches, the Most Powerful Indian Tribe in American History\",\"Empire of the Summer Moon: Quanah Parker and the Rise and Fall of the Comanches, the Most Powerful Indian Tribe in American History\",,4.13,19423,22381,2472,394,820,3453,8640,9074,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395176404l/7648269.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4286,18999,18999,2144486,128,743455800,9780743455800.0,John le Carré,1979.0,Smiley's People,Smiley's People,,4.24,22691,25028,599,157,532,3656,9428,11255,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348407722l/18999.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4287,11433,11433,221844,32,842356223,9780842356220.0,\"Karen Kingsbury, Gary Smalley\",2002.0,Redemption,\"Redemption (Redemption, #1)\",eng,4.36,22101,22889,811,337,585,2667,6274,13026,https://images.gr-assets.com/books/1406514548l/11433.jpg,https://images.gr-assets.com/books/1406514548s/11433.jpg\n4288,64481,64481,3337093,43,152053107,9780152053110.0,Jennifer Donnelly,2003.0,A Northern Light,A Northern Light,en-US,3.83,29018,32172,3111,651,2080,8217,12474,8750,https://images.gr-assets.com/books/1376507768l/64481.jpg,https://images.gr-assets.com/books/1376507768s/64481.jpg\n4289,79705,79705,76935,40,786229071,9780786229080.0,\"Tim LaHaye, Jerry B. Jenkins\",1999.0,Apollyon: The Destroyer Is Unleashed,\"Apollyon (Left Behind, #5)\",en-US,3.97,23202,24979,379,593,1459,5515,8041,9371,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407891956l/79705.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4290,192893,192893,1090544,206,61043575,9780061043570.0,Dorothy L. Sayers,1923.0,Whose Body?,\"Whose Body?  (Lord Peter Wimsey, #1)\",eng,3.91,28214,31112,1609,648,1524,7507,11662,9771,https://images.gr-assets.com/books/1387573241l/192893.jpg,https://images.gr-assets.com/books/1387573241s/192893.jpg\n4292,737957,737957,1223069,24,142003697,9780142003700.0,Ross King,2003.0,Michelangelo and the Pope's Ceiling,Michelangelo and the Pope's Ceiling,eng,3.82,20718,21258,560,1180,1538,4621,6563,7356,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348041547l/737957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4293,11922,11922,14289,44,452285933,9780452285930.0,Kelley Armstrong,2002.0,Stolen,\"Stolen (Women of the Otherworld, #2)\",eng,4.16,34373,37977,1393,237,1038,6745,14459,15498,https://images.gr-assets.com/books/1300923278l/11922.jpg,https://images.gr-assets.com/books/1300923278s/11922.jpg\n4294,85306,85306,1982850,89,446616494,9780446616490.0,David Baldacci,2004.0,Hour Game,\"Hour Game (Sean King & Michelle Maxwell, #2)\",en-US,3.94,23124,27822,1289,217,995,6666,12267,7677,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388416892l/85306.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4295,2277378,2277378,1706478,49,755328949,9780755328950.0,Louise Penny,2007.0,The Cruelest Month,\"The Cruelest Month (Chief Inspector Armand Gamache, #3)\",en-GB,4.15,23121,28932,2415,138,523,4468,13418,10385,https://images.gr-assets.com/books/1327970261l/2277378.jpg,https://images.gr-assets.com/books/1327970261s/2277378.jpg\n4296,10444,10444,1505465,68,679847596,9780679847600.0,\"Noel Streatfeild, Diane Goode\",1936.0,Ballet Shoes,\"Ballet Shoes (Shoes, #1)\",en-US,4.06,26211,28208,1036,534,1189,5634,9499,11352,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180362l/10444.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4297,93000,93000,89666,2,1423409450,9781423409460.0,Harry Gregson-Williams,2006.0,\"The Chronicles of Narnia: The Lion, the Witch and The Wardrobe (Sheet Music)\",\"Piano/Vocal/Guitar Sheet Music: The Chronicles of Narnia: The Lion, the Witch and The Wardrobe\",,4.32,17866,17876,187,243,369,2523,5045,9696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349023172l/93000.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4298,668,668,1711534,63,451187849,9780451187840.0,\"Ayn Rand, Leonard Peikoff\",1936.0,We the Living,We the Living,eng,3.89,20994,22571,1178,647,1531,5121,7689,7583,https://images.gr-assets.com/books/1306188481l/668.jpg,https://images.gr-assets.com/books/1306188481s/668.jpg\n4299,20443207,20443207,31174003,26,374384711,9780374384720.0,Marie Rutkoski,2015.0,The Winner's Crime,\"The Winner's Crime (The Winner's Trilogy, #2)\",eng,4.17,31721,37404,5847,386,1102,5643,14970,15303,https://images.gr-assets.com/books/1411741455l/20443207.jpg,https://images.gr-assets.com/books/1411741455s/20443207.jpg\n4301,76889,76889,1140,8,802130720,9780802130720.0,E.E. Cummings,1954.0,100 Selected Poems by e. e. Cummings,100 Selected Poems,en-US,4.32,22346,22638,387,281,520,2902,6855,12080,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179993l/76889.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4302,2202049,2202049,2207811,7,451223896,9780451223890.0,Jen Lancaster,2008.0,\"Such a Pretty Fat: One Narcissist's Quest to Discover if Her Life Makes Her Ass Look Big, or Why Pie is Not the Answer\",\"Such a Pretty Fat: One Narcissist's Quest to Discover If Her Life Makes Her Ass Look Big, or Why Pie Is Not the Answer\",eng,4.06,24631,25044,1920,466,1137,4720,8794,9927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348071660l/2202049.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4303,831194,831194,1462398,53,60525614,9780060525610.0,Erin Hunter,2003.0,Forest of Secrets,\"Forest of Secrets (Warriors, #3)\",eng,4.4,28913,30595,1038,162,592,3727,8350,17764,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198807l/831194.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4304,6065182,7234875,5769396,71,1594488800,9781594488800.0,Sarah Waters,2009.0,The Little Stranger,The Little Stranger,en-US,3.51,21077,28814,4267,839,3379,9623,10318,4655,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348922866l/6065182.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4305,17562900,17562900,24495112,23,042525674X,9780425256750.0,Patricia Briggs,2014.0,Night Broken,\"Night Broken (Mercy Thompson, #8)\",eng,4.42,31278,38475,3129,99,333,3408,14167,20468,https://images.gr-assets.com/books/1379437095l/17562900.jpg,https://images.gr-assets.com/books/1379437095s/17562900.jpg\n4306,17399160,17399160,24221752,29,62286927,9780062286920.0,Sara Raasch,2014.0,Snow Like Ashes,\"Snow Like Ashes (Snow Like Ashes, #1)\",eng,3.98,34993,38315,5410,748,1964,7640,14808,13155,https://images.gr-assets.com/books/1392224823l/17399160.jpg,https://images.gr-assets.com/books/1392224823s/17399160.jpg\n4307,17830123,17830123,24944980,29,147675666X,9781476756660.0,Matthew  Thomas,2014.0,We Are Not Ourselves,We Are Not Ourselves,eng,3.7,18488,22138,3366,722,1866,5816,8680,5054,https://images.gr-assets.com/books/1418103690l/17830123.jpg,https://images.gr-assets.com/books/1418103690s/17830123.jpg\n4308,59821,59821,1612557,66,515139408,9780515139400.0,Nora Roberts,2005.0,Red Lily,\"Red Lily (In the Garden, #3)\",en-US,4.07,29200,30746,747,169,1155,6621,11334,11467,https://images.gr-assets.com/books/1362364238l/59821.jpg,https://images.gr-assets.com/books/1362364238s/59821.jpg\n4309,159760,159760,39005,31,1594481881,9781594481890.0,Mary Pipher,1994.0,Reviving Ophelia: Saving the Selves of Adolescent Girls,Reviving Ophelia: Saving the Selves of Adolescent Girls,,3.86,22687,23408,1065,344,1389,6064,9087,6524,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441333242l/159760._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4310,68526,68526,891853,69,60888628,9780060888630.0,Bernard Cornwell,2006.0,The Lords of the North,\"Lords of the North (The Saxon Stories, #3)\",en-US,4.32,20296,24501,811,43,222,2766,10393,11077,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440472759l/68526._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4311,162719,162719,2979854,23,1416936491,9781416936500.0,Margaret Peterson Haddix,1999.0,Just Ella,\"Just Ella (The Palace Chronicles, #1)\",eng,3.75,27884,31083,1439,746,2609,8885,10342,8501,https://images.gr-assets.com/books/1327897599l/162719.jpg,https://images.gr-assets.com/books/1327897599s/162719.jpg\n4312,16122643,16122643,21943963,23,,,Raine Miller,2013.0,Eyes wide open,\"Eyes Wide Open (The Blackstone Affair, #3)\",eng,4.14,36054,36780,1832,444,1373,6410,12966,15587,https://images.gr-assets.com/books/1360846127l/16122643.jpg,https://images.gr-assets.com/books/1360846127s/16122643.jpg\n4313,18404427,18404427,26038319,30,081299289X,9780812992890.0,Lisa See,2014.0,China Dolls,China Dolls,eng,3.58,20563,23836,2860,602,2298,7755,8975,4206,https://images.gr-assets.com/books/1405290827l/18404427.jpg,https://images.gr-assets.com/books/1405290827s/18404427.jpg\n4314,238360,238360,841287,15,1416900314,9781416900310.0,Kate Brian,2005.0,Megan Meade's Guide to the McGowan Boys,Megan Meade's Guide to the McGowan Boys,en-US,3.93,29726,30877,1362,583,1999,7299,9973,11023,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388397285l/238360.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4315,911579,911579,896682,34,64430960,9780064430970.0,\"Russell Hoban, Lillian Hoban\",1964.0,Bread and Jam for Frances,Bread and Jam for Frances,eng,4.2,27933,28308,382,377,1005,5157,7759,14010,https://images.gr-assets.com/books/1384258893l/911579.jpg,https://images.gr-assets.com/books/1384258893s/911579.jpg\n4316,9567,9567,713383,28,184243036X,9781842430360.0,Tom Robbins,1994.0,Half Asleep in Frog Pajamas,Half Asleep in Frog Pajamas,,3.73,17053,18899,645,341,1439,5540,7229,4350,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347326626l/9567.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4317,15858,15858,1131006,24,60988657,9780060988650.0,Gregory Maguire,2003.0,Mirror Mirror,Mirror Mirror,eng,3.27,26307,27358,1529,1356,4445,10429,7669,3459,https://images.gr-assets.com/books/1407710336l/15858.jpg,https://images.gr-assets.com/books/1407710336s/15858.jpg\n4318,21969786,21969786,22008332,38,1406350486,9781406350490.0,Patrick Ness,2013.0,More Than This,More Than This,eng,4.03,21512,30720,5247,514,1530,5596,11836,11244,https://images.gr-assets.com/books/1398164413l/21969786.jpg,https://images.gr-assets.com/books/1398164413s/21969786.jpg\n4319,293625,293625,389945,47,679728740,9780679728740.0,Cormac McCarthy,1973.0,Child of God,Child of God,,3.86,20313,22643,1942,326,1189,5461,9938,5729,https://images.gr-assets.com/books/1320509467l/293625.jpg,https://images.gr-assets.com/books/1320509467s/293625.jpg\n4320,95621,95621,92159,27,842339760,9780842339770.0,Francine Rivers,1995.0,\"As Sure as the Dawn (Mark of the Lion, #3)\",\"As Sure as the Dawn (Mark of the Lion, #3)\",eng,4.39,23509,24330,920,131,619,2908,6549,14123,https://images.gr-assets.com/books/1490993178l/95621.jpg,https://images.gr-assets.com/books/1490993178s/95621.jpg\n4321,16158596,16158596,20077336,33,1594205388,9781594205380.0,Max Barry,2013.0,Lexicon,Lexicon,eng,3.9,20524,24296,3520,331,1224,5531,10706,6504,https://images.gr-assets.com/books/1356080172l/16158596.jpg,https://images.gr-assets.com/books/1356080172s/16158596.jpg\n4322,2804776,2804776,2260190,58,1400139027,9781401390270.0,\"Candace Bushnell, Donna Murphy\",2008.0,One Fifth Avenue,One Fifth Avenue,,3.33,20962,23010,1453,1368,3581,8012,6165,3884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255607925l/2804776.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4323,20701984,20701984,40021855,12,1419710206,9781419710210.0,\"Cece Bell, David Lasky\",2014.0,El Deafo,El Deafo,eng,4.13,27630,29262,3677,1122,1121,3914,9745,13360,https://images.gr-assets.com/books/1423770455l/20701984.jpg,https://images.gr-assets.com/books/1423770455s/20701984.jpg\n4324,16140408,16140408,21971325,43,451419715,9780451419710.0,Samantha Young,2013.0,Down London Road,\"Down London Road (On Dublin Street, #2)\",eng,4.24,38186,41573,2935,326,1048,5676,15730,18793,https://images.gr-assets.com/books/1363128044l/16140408.jpg,https://images.gr-assets.com/books/1363128044s/16140408.jpg\n4325,30069,30069,2431088,35,1582404879,9781582404880.0,\"Robert Kirkman, Charlie Adlard\",2005.0,\"The Walking Dead, Vol. 3: Safety Behind Bars\",\"The Walking Dead, Vol. 03: Safety Behind Bars\",eng,4.31,23167,25864,1033,88,444,3241,9562,12529,https://images.gr-assets.com/books/1345769167l/30069.jpg,https://images.gr-assets.com/books/1345769167s/30069.jpg\n4326,22584,22584,949696,92,1857983416,9781857983420.0,Philip K. Dick,1974.0,\"Flow My Tears, the Policeman Said\",\"Flow My Tears, the Policeman Said\",eng,3.93,22063,25396,1187,206,1104,6014,10985,7087,https://images.gr-assets.com/books/1398026028l/22584.jpg,https://images.gr-assets.com/books/1398026028s/22584.jpg\n4327,95622,95622,522673,28,1414315716,9781414315710.0,Francine Rivers,1998.0,The Last Sin Eater,The Last Sin Eater,,4.06,20985,21982,840,341,1119,4362,7124,9036,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171304293l/95622._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4328,73385,73385,1408034,55,743457269,9780743457260.0,Jude Deveraux,1989.0,A Knight in Shining Armor,A Knight in Shining Armor,eng,4.23,26636,29062,1886,506,1106,4327,8436,14687,https://images.gr-assets.com/books/1330613623l/73385.jpg,https://images.gr-assets.com/books/1330613623s/73385.jpg\n4329,7157310,7157310,7443037,25,1442402326,9781442402320.0,Jonathan Maberry,2010.0,Rot & Ruin,\"Rot & Ruin (Rot & Ruin, #1)\",eng,4.1,25526,28111,3291,698,1210,4529,9815,11859,https://images.gr-assets.com/books/1264898635l/7157310.jpg,https://images.gr-assets.com/books/1264898635s/7157310.jpg\n4331,1149440,1149440,1136908,43,786865059,9780786865060.0,Charles R. Cross,2001.0,Heavier Than Heaven: A Biography of Kurt Cobain,Heavier Than Heaven: A Biography of Kurt Cobain,,4.09,18496,20221,777,265,777,3820,7324,8035,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348289083l/1149440.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4332,261243,261243,804111,336,140440399,9780140440390.0,\"Thucydides, Rex Warner, Moses I. Finley\",-411.0,Ἱστορίαι,History of the Peloponnesian War,en-US,3.87,21500,24453,584,672,1745,5860,8019,8157,https://images.gr-assets.com/books/1422072332l/261243.jpg,https://images.gr-assets.com/books/1422072332s/261243.jpg\n4334,5776788,5776788,5948537,33,61714305,9780061714310.0,Richard Kadrey,2009.0,Sandman Slim,\"Sandman Slim (Sandman Slim, #1)\",en-US,3.93,22779,26856,2441,441,1408,5754,11147,8106,https://images.gr-assets.com/books/1311727590l/5776788.jpg,https://images.gr-assets.com/books/1311727590s/5776788.jpg\n4335,5556466,5556466,5727588,52,312359322,9780312359320.0,John Hart,2009.0,The Last Child,The Last Child,en-US,4.09,22293,25587,3369,255,826,4458,10854,9194,https://images.gr-assets.com/books/1312058481l/5556466.jpg,https://images.gr-assets.com/books/1312058481s/5556466.jpg\n4336,17717,17717,376514,36,811200124,9780811200130.0,\"Jorge Luis Borges, Donald A. Yates, James E. Irby, André Maurois\",1962.0,Labyrinths,Labyrinths:  Selected Stories and Other Writings,eng,4.46,20237,23212,1062,159,457,2032,6384,14180,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286895l/17717.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4337,89399,89399,67864,76,316734837,9780316734840.0,Anita Shreve,1999.0,Fortune's Rocks,Fortune's Rocks,,3.86,22908,25221,1246,434,1317,6624,9707,7139,https://images.gr-assets.com/books/1344271150l/89399.jpg,https://images.gr-assets.com/books/1344271150s/89399.jpg\n4338,52258,25622850,50983,108,393325997,9780393326000.0,Patricia Highsmith,1952.0,The Price of Salt,The Price of Salt,eng,3.93,16348,26100,2522,440,1501,5779,10057,8323,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193744l/52258.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4339,9662386,9662386,8003906,43,140278404X,9781402784040.0,Colleen Houck,2011.0,Tiger's Quest,\"Tiger's Quest (The Tiger Saga, #2)\",en-US,4.34,28303,31309,2691,522,1047,3641,8091,18008,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442622790l/9662386._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4340,6319978,6319978,6505300,29,045122793X,9780451227940.0,Chloe Neill,2009.0,Friday Night Bites: A Chicagoland Vampires Novel ,\"Friday Night Bites (Chicagoland Vampires, #2)\",en-US,4.15,36503,39024,1543,393,1275,6709,14388,16259,https://images.gr-assets.com/books/1304024900l/6319978.jpg,https://images.gr-assets.com/books/1304024900s/6319978.jpg\n4341,70420,70420,717900,67,195189779,9780195189770.0,Tim Harford,2005.0,\"The Undercover Economist: Exposing Why the Rich Are Rich, the Poor Are Poor--and Why You Can Never Buy a Decent Used Car!\",The Undercover Economist,,3.79,17310,20348,975,376,1295,5573,8166,4938,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438041608l/70420._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4342,365006,365006,1235048,36,1595541896,9781595541900.0,Frank E. Peretti,1995.0,The Oath,The Oath,eng,4.06,21092,22718,766,365,1142,4461,7532,9218,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388235108l/365006.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4343,2218252,2218252,3117158,41,61345695,9780061345690.0,Anna Godbersen,2008.0,Rumors,\"Rumors (Luxe, #2)\",en-US,3.85,31018,33468,1772,620,2269,8739,11627,10213,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442612484l/2218252._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4344,16101018,16101018,21911319,30,399255370,9780399255370.0,\"Drew Daywalt, Oliver Jeffers\",2013.0,The Day the Crayons Quit,The Day the Crayons Quit,eng,4.41,29759,30648,3189,578,735,2818,7817,18700,https://images.gr-assets.com/books/1397425766l/16101018.jpg,https://images.gr-assets.com/books/1397425766s/16101018.jpg\n4345,93729,93729,1005489,83,60096098,9780060096090.0,Meg Cabot,2002.0,\"Princess in Waiting (The Princess Diaries, #4)\",\"Princess in Waiting (The Princess Diaries, #4)\",eng,3.66,33327,36292,844,572,3240,12756,11209,8515,https://images.gr-assets.com/books/1493531966l/93729.jpg,https://images.gr-assets.com/books/1493531966s/93729.jpg\n4347,3181953,3181953,3214749,36,316037532,9780316037530.0,Kathleen Kent,2008.0,The Heretic's Daughter,The Heretic's Daughter,,3.77,23815,28173,3658,408,1823,7987,11714,6241,https://images.gr-assets.com/books/1344269239l/3181953.jpg,https://images.gr-assets.com/books/1344269239s/3181953.jpg\n4348,88077,88077,647489,211,679772871,9780679772870.0,\"Thomas Mann, John E. Woods\",1924.0,Der Zauberberg,The Magic Mountain,eng,4.14,21078,25291,1426,573,1281,4032,7647,11758,https://images.gr-assets.com/books/1403170928l/88077.jpg,https://images.gr-assets.com/books/1403170928s/88077.jpg\n4349,32507,32507,2758504,80,044661162X,9780446611630.0,Michael Connelly,2002.0,Chasing the Dime,Chasing the Dime,eng,3.96,23771,25650,748,302,1145,5905,10125,8173,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388628891l/32507.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4350,17234658,17234658,23752694,24,62278967,9780062278970.0,Claudia Gray,2014.0,A Thousand Pieces of You,\"A Thousand Pieces of You (Firebird, #1)\",eng,3.94,28422,31985,5563,797,1884,6585,11984,10735,https://images.gr-assets.com/books/1400166295l/17234658.jpg,https://images.gr-assets.com/books/1400166295s/17234658.jpg\n4351,828084,828084,1685656,26,439692393,9780440415790.0,Patricia Reilly Giff,2002.0,Pictures of Hollis Woods,Pictures of Hollis Woods,eng,4.0,23708,24372,1699,391,1192,5315,8672,8802,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348404062l/828084.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4352,45245,45245,747250,27,330340328,9780330340330.0,Peter F. Hamilton,1996.0,The Reality Dysfunction,\"The Reality Dysfunction (Night's Dawn, #1)\",eng,4.14,22492,24315,849,492,1104,3597,8534,10588,https://images.gr-assets.com/books/1331274659l/45245.jpg,https://images.gr-assets.com/books/1331274659s/45245.jpg\n4354,13537891,13537891,18625843,51,241144140,9780241144140.0,Zadie Smith,2012.0, NW ,NW,eng,3.41,20062,23926,2851,1257,3021,7738,8444,3466,https://images.gr-assets.com/books/1492591246l/13537891.jpg,https://images.gr-assets.com/books/1492591246s/13537891.jpg\n4355,530848,530848,518471,33,525478116,9780525478120.0,Heather Brewer,2007.0,The Chronicles of Vladimir Tod: Eighth Grade Bites,\"Eighth Grade Bites (The Chronicles of Vladimir Tod, #1)\",en-US,3.92,28119,31398,2604,916,2319,7195,8802,12166,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433470335l/530848._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4356,10639,10639,1157840,32,60005696,9780060005700.0,Barry Schwartz,2004.0,The Paradox of Choice: Why More Is Less,The Paradox of Choice: Why More Is Less,eng,3.84,20990,21859,1076,491,1349,5666,8113,6240,https://images.gr-assets.com/books/1410138134l/10639.jpg,https://images.gr-assets.com/books/1410138134s/10639.jpg\n4357,30324,30324,895781,33,440226686,9780440226680.0,Annette Curtis Klause,1997.0,Blood and Chocolate,Blood and Chocolate,en-US,3.77,33500,34858,2055,1181,3254,8888,10566,10969,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434755939l/30324._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4358,6413193,6413193,6602180,74,316166316,9780316166320.0,Michael Connelly,2009.0,Nine Dragons,\"Nine Dragons (Harry Bosch, #15; Mickey Haller, #3; Harry Bosch Universe, #18)\",eng,3.97,22102,27809,2047,202,1107,6300,11822,8378,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440462713l/6413193._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4359,9784,9784,3302695,415,486424588,9780486424580.0,D.H. Lawrence,1920.0,Women in Love,\"Women in Love (Brangwen Family, #2)\",eng,3.66,22372,25011,821,968,2365,7066,8528,6084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919531l/9784.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4360,31106,31106,2484087,39,670038571,9780670038570.0,Jane Green,2007.0,Second Chance,Second Chance,en-US,3.53,22795,23625,1121,577,2375,8762,7839,4072,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442488146l/31106._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4361,889284,889284,924908,48,553278746,9780553278740.0,David Brin,1985.0,The Postman,The Postman,en-US,3.87,24778,26200,1007,333,1439,6620,10607,7201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348914032l/889284.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4362,12799058,12799058,17947342,31,,,Elin Hilderbrand,2012.0,Summerland,Summerland,eng,3.85,22497,24115,1966,253,1209,6349,10401,5903,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328319028l/12799058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4363,15957,15957,1043652,17,1841150509,9781841150500.0,Ann Patchett,1992.0,The Patron Saint of Liars,The Patron Saint of Liars,eng,3.76,20722,25021,2536,201,1309,7431,11372,4708,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347356188l/15957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4364,96593,96593,1084322,50,60594896,9780060594890.0,\"Jack Canfield, Janet Switzer\",2004.0,The Success Principles,The Success Principles: How to Get from Where You Are to Where You Want to Be,en-US,4.26,19634,20656,632,337,647,3005,5997,10670,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442932524l/96593._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4365,13565914,13565914,19143978,11,,,Kristen Ashley,2012.0,Knight,\"Knight (Unfinished Hero, #1)\",en-GB,3.94,44570,45320,3331,1747,3056,8804,14269,17444,https://images.gr-assets.com/books/1333056159l/13565914.jpg,https://images.gr-assets.com/books/1333056159s/13565914.jpg\n4366,7723797,7723797,9815226,35,2839906171,9782839906170.0,\"Alexander Osterwalder, Yves Pigneur\",2010.0,Business Model Generation,Business Model Generation,eng,4.16,20389,22933,464,452,937,3654,7281,10609,https://images.gr-assets.com/books/1384676138l/7723797.jpg,https://images.gr-assets.com/books/1384676138s/7723797.jpg\n4367,10954979,13707734,15872618,37,393064476,9780393064480.0,Stephen Greenblatt,2011.0,The Swerve: How the World Became Modern,The Swerve: How the World Became Modern,eng,3.83,13405,20790,2179,810,1553,4569,7209,6649,https://images.gr-assets.com/books/1406088245l/10954979.jpg,https://images.gr-assets.com/books/1406088245s/10954979.jpg\n4368,10108,10108,2505877,34,312194390,9780312194390.0,Margaret George,1986.0,\"The Autobiography of Henry VIII. With Notes by His Fool, Will Somers\",\"The Autobiography of Henry VIII: With Notes by His Fool, Will Somers\",en-US,4.25,22571,23288,816,219,547,3478,8030,11014,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439956289l/10108._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4369,3717,24820339,382865,47,385722222,9780385722220.0,Chuck Palahniuk,2004.0,Stranger Than Fiction: True Stories,Stranger than Fiction,eng,3.56,18091,20204,754,498,2071,6911,7003,3721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390189467l/3717.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4370,570172,570172,557215,53,067003830X,9780670038300.0,Norman Doidge,2007.0,The Brain That Changes Itself: Stories of Personal Triumph from the Frontiers of Brain Science,The Brain That Changes Itself: Stories of Personal Triumph from the Frontiers of Brain Science,en-US,4.2,19319,22206,1651,333,681,3303,7791,10098,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440953986l/570172._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4371,61181,61181,900675,51,345418417,9780345418420.0,Larry Niven,1979.0,The Ringworld Engineers ,The Ringworld Engineers (Ringworld #2),eng,3.86,22047,23934,443,199,1277,6542,9558,6358,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170563308l/61181.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4372,7766027,7766027,10644152,38,316125849,9780316125840.0,Barry Lyga,2012.0,I Hunt Killers,\"I Hunt Killers (Jasper Dent, #1)\",en-CA,4.02,25487,26849,3349,683,1303,5049,9641,10173,https://images.gr-assets.com/books/1333289403l/7766027.jpg,https://images.gr-assets.com/books/1333289403s/7766027.jpg\n4373,17880714,30166123,25040772,20,,,K. Bromberg,2014.0,Crashed,\"Crashed (Driven, #3)\",eng,4.56,32520,35153,3237,203,533,2514,7993,23910,https://images.gr-assets.com/books/1391008361l/17880714.jpg,https://images.gr-assets.com/books/1391008361s/17880714.jpg\n4374,23398625,23398625,42955214,29,052542914X,9780525429140.0,J. Ryan Stradal,2015.0,Kitchens of the Great Midwest,Kitchens of the Great Midwest,eng,3.77,21071,23667,3661,582,1569,6011,9993,5512,https://images.gr-assets.com/books/1428066565l/23398625.jpg,https://images.gr-assets.com/books/1428066565s/23398625.jpg\n4375,1031461,1031461,1017724,11,590416022,9780590416020.0,\"Ann McGovern, Winslow Pinney Pels, Winslow Pinn, Ey Pels\",1971.0,Stone Soup,Stone Soup,en-US,4.28,25518,25537,184,189,680,4348,6994,13326,https://images.gr-assets.com/books/1360057986l/1031461.jpg,https://images.gr-assets.com/books/1360057986s/1031461.jpg\n4376,1220507,1220507,1208988,44,9770919403,9789770919410.0,\"Alaa Al Aswany, علاء الأسواني\",2007.0,شيكاجو,شيكاجو,ara,3.41,17325,18748,1688,1500,2411,5352,5962,3523,https://images.gr-assets.com/books/1258877751l/1220507.jpg,https://images.gr-assets.com/books/1258877751s/1220507.jpg\n4377,15734464,15734464,21416605,41,,,\"James Patterson, Maxine Paetro\",2013.0,12th of Never,\"12th of Never (Women's Murder Club, #12)\",en-US,3.99,19998,26821,1941,225,1156,6212,10408,8820,https://images.gr-assets.com/books/1353436409l/15734464.jpg,https://images.gr-assets.com/books/1353436409s/15734464.jpg\n4378,15790883,15790883,21512438,27,316219037,9780316219040.0,Brian  McClellan,2013.0,Promise of Blood,\"Promise of Blood (Powder Mage, #1)\",eng,4.16,21192,24964,1834,260,801,3480,10602,9821,https://images.gr-assets.com/books/1350337505l/15790883.jpg,https://images.gr-assets.com/books/1350337505s/15790883.jpg\n4379,294042,294042,285323,70,752876457,9780752876450.0,James Rollins,2006.0,Black Order,\"Black Order (Sigma Force, #3)\",eng,4.14,22321,25329,893,141,638,4463,10309,9778,https://images.gr-assets.com/books/1305960795l/294042.jpg,https://images.gr-assets.com/books/1305960795s/294042.jpg\n4380,2199587,2199587,2205341,74,385341954,9780385341950.0,Karin Slaughter,2008.0,Fractured,\"Fractured (Will Trent, #2)\",en-US,4.18,23256,27091,1290,124,481,4219,11784,10483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389140280l/2199587.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4381,28763485,28763485,48954670,45,553496689,9780553496680.0,Nicola Yoon,2016.0,The Sun Is Also a Star,The Sun Is Also a Star,eng,4.14,42363,46465,8878,564,1783,7414,17406,19298,https://images.gr-assets.com/books/1459793538l/28763485.jpg,https://images.gr-assets.com/books/1459793538s/28763485.jpg\n4382,23717678,23717678,27228804,31,316410985,9780316410980.0,\"James Patterson, David Ellis\",2015.0,The Murder House,The Murder House,eng,4.05,13837,23568,2191,376,984,4239,9424,8545,https://images.gr-assets.com/books/1464826516l/23717678.jpg,https://images.gr-assets.com/books/1464826516s/23717678.jpg\n4383,38180,38180,963772,109,1842322761,9781842322760.0,Nevil Shute,1957.0,On the Beach,On the Beach,eng,3.92,24401,27734,1837,426,1512,6327,10966,8503,https://images.gr-assets.com/books/1327943327l/38180.jpg,https://images.gr-assets.com/books/1327943327s/38180.jpg\n4384,22749994,22749994,42295323,47,1594205418,9781594205420.0,Nick Hornby,2014.0,Funny Girl,Funny Girl,eng,3.37,17151,21589,2787,661,2822,8480,7209,2417,https://images.gr-assets.com/books/1415127744l/22749994.jpg,https://images.gr-assets.com/books/1415127744s/22749994.jpg\n4385,6257535,8258519,6232309,49,385521383,9780385521380.0,Edward Rutherfurd,2009.0,New York,New York,eng,4.1,16106,23926,2442,230,829,4277,9629,8961,https://images.gr-assets.com/books/1320467954l/6257535.jpg,https://images.gr-assets.com/books/1320467954s/6257535.jpg\n4386,20764879,20764879,43242915,21,765376474,9780765376470.0,\"V.E. Schwab, Victoria Schwab\",2016.0,A Gathering of Shadows,\"A Gathering of Shadows (Shades of Magic, #2)\",eng,4.33,29389,35079,6274,140,670,3676,13464,17129,https://images.gr-assets.com/books/1429627728l/20764879.jpg,https://images.gr-assets.com/books/1429627728s/20764879.jpg\n4387,65948,65948,1775449,53,553582747,9780553582740.0,Dean Koontz,2000.0,From the Corner of His Eye,From the Corner of His Eye,en-US,4.0,23641,25002,1016,377,1257,5580,8602,9186,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388275293l/65948.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4388,9833,9833,1468406,75,1400044618,9781400044610.0,\"Haruki Murakami, Philip Gabriel, Jay Rubin\",2006.0,\" めくらやなぎと、眠る女 [Mekurayanagi to, nemuru onna]\",\"Blind Willow, Sleeping Woman\",eng,3.83,19216,23710,1600,183,1148,6523,10522,5334,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388789153l/9833.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4389,2815949,2815949,2841882,6,1400054354,9781400054350.0,\"Ina Garten, Quentin Bacon\",2008.0,Barefoot Contessa Back to Basics,Barefoot Contessa Back to Basics,eng,4.23,22228,22305,199,654,708,2960,6541,11442,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178334l/2815949.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4390,31100,31100,31428,49,767912276,9780767912270.0,Jane Green,2002.0,To Have and to Hold ,To Have and to Hold,eng,3.61,21001,22305,516,549,1972,7681,7444,4659,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388207925l/31100.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4391,80570,80570,275852,23,143036475,9780143036470.0,Koren Zailckas,2005.0,Smashed: Story of a Drunken Girlhood,Smashed: Story of a Drunken Girlhood,en-US,3.5,20658,21089,1181,819,2643,6990,6462,4175,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441846371l/80570._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4392,9355,9355,2269323,61,345479726,9780345479720.0,John Irving,2005.0,Until I Find You,Until I Find You,eng,3.61,20784,21984,1438,854,2230,6278,7793,4829,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193718l/9355.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4393,6380822,6380822,6568723,35,1606840576,9781606840570.0,Bree Despain,2009.0,The Dark Divine,\"The Dark Divine (The Dark Divine, #1)\",eng,3.81,33209,34463,2473,1294,2972,8340,10349,11508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187646l/6380822.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4394,139220,139220,996750,38,1400041201,9781400041210.0,Bill Buford,2006.0,Heat,\"Heat: An Amateur's Adventures as Kitchen Slave, Line Cook, Pasta-Maker, and Apprentice to a Dante-Quoting Butcher in Tuscany\",,3.89,18583,20010,1818,245,1078,4899,8227,5561,https://images.gr-assets.com/books/1320554917l/139220.jpg,https://images.gr-assets.com/books/1320554917s/139220.jpg\n4395,241823,241823,981745,91,345409876,9780345409870.0,Clarissa Pinkola Estés,1992.0,Women Who Run With the Wolves,Women Who Run With the Wolves: Myths and Stories of the Wild Woman Archetype,eng,4.15,21127,24120,1682,646,1355,3671,6472,11976,https://images.gr-assets.com/books/1500974527l/241823.jpg,https://images.gr-assets.com/books/1500974527s/241823.jpg\n4397,56452,56452,1045276,37,743201140,9780743201150.0,\"Marcus Buckingham, Donald O. Clifton\",2001.0,\"Now, Discover Your Strengths\",\"Now, Discover Your Strengths\",,3.95,19767,20318,587,376,1082,4673,7146,7041,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1575812755l/56452.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4398,2467566,2467566,989032,84,1401309666,9781401309660.0,Chris Anderson,2006.0,The Long Tail: Why the Future of Business Is Selling Less of More,The Long Tail: Why the Future of Business is Selling Less of More,en-US,3.83,14932,22270,669,680,1387,5343,8487,6373,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442430307l/2467566._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4399,54270,54270,2049624,573,395083621,9780395083630.0,Adolf Hitler,1925.0,Mein Kampf,Mein Kampf,en-US,3.13,16285,23637,2272,3362,4062,6913,4851,4449,https://images.gr-assets.com/books/1395618385l/54270.jpg,https://images.gr-assets.com/books/1395618385s/54270.jpg\n4400,31098,31098,3353274,38,670034800,9780670034800.0,Jane Green,2006.0,Swapping Lives,Swapping Lives,eng,3.56,22521,24000,1007,650,2314,8532,7875,4629,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388445971l/31098.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4401,4201106,4201106,4043423,49,312377029,9780312377020.0,Louise Penny,2008.0,\"A Rule Against Murder (Armand Gamache, #4)\",\"A Rule Against Murder (Chief Inspector Armand Gamache, #4)\",en-US,4.21,22817,27667,2239,133,423,3869,12449,10793,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441314151l/4201106._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4402,12951824,12951824,18108731,67,1455807044,9781455807050.0,Nora Roberts,2012.0,The Perfect Hope,\"The Perfect Hope (Inn Boonsboro, #3)\",eng,4.14,23185,30797,2051,193,934,5746,11466,12458,https://images.gr-assets.com/books/1351012631l/12951824.jpg,https://images.gr-assets.com/books/1351012631s/12951824.jpg\n4403,12368985,12368985,17349258,15,1465341889,9781465341880.0,Aleatha Romig,2011.0,Consequences,\"Consequences (Consequences, #1)\",eng,3.97,29809,35592,5338,2241,2322,5261,10336,15432,https://images.gr-assets.com/books/1350233855l/12368985.jpg,https://images.gr-assets.com/books/1350233855s/12368985.jpg\n4404,783127,783127,769132,65,684856093,9780684856090.0,Sean Covey,1997.0,The 7 Habits Of Highly Effective Teens,The 7 Habits of Highly Effective Teens: The Ultimate Teenage Success Guide,eng,4.01,19240,21057,1508,820,1218,3786,6392,8841,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442369818l/783127._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4405,7150174,7150174,7415356,30,810984253,9780810984260.0,Tom Angleberger,2010.0,The Strange Case of Origami Yoda,\"The Strange Case of Origami Yoda (Origami Yoda, #1)\",eng,3.9,23322,23852,2871,872,1529,5130,7993,8328,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441744261l/7150174._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4406,33727,33727,2563621,52,312932804,9780312932800.0,Jennifer Crusie,1996.0,Welcome to Temptation,\"Welcome to Temptation (Dempseys, #1)\",eng,3.94,27123,28809,1021,604,1591,6621,9983,10010,https://images.gr-assets.com/books/1479663151l/33727.jpg,https://images.gr-assets.com/books/1479663151s/33727.jpg\n4407,8537327,8537327,13404762,22,61962783,9780061962780.0,Thanhha Lai,2011.0,Inside Out & Back Again,Inside Out & Back Again,eng,4.09,22972,27186,4249,645,1082,4467,10016,10976,https://images.gr-assets.com/books/1357771743l/8537327.jpg,https://images.gr-assets.com/books/1357771743s/8537327.jpg\n4408,12995284,12995284,10965443,31,62012010,9780062012010.0,Josephine Angelini,2012.0,Dreamless,\"Dreamless (Starcrossed, #2)\",eng,4.2,30424,33819,2230,441,1172,5207,11322,15677,https://images.gr-assets.com/books/1320248839l/12995284.jpg,https://images.gr-assets.com/books/1320248839s/12995284.jpg\n4409,13323842,13323842,18530561,7,,,Abbi Glines,2012.0,Predestined,\"Predestined (Existence Trilogy, #2)\",en-GB,4.09,33711,33926,1462,466,1531,6305,11698,13926,https://images.gr-assets.com/books/1327068385l/13323842.jpg,https://images.gr-assets.com/books/1327068385s/13323842.jpg\n4411,37875,37875,37673,34,1591840562,9781591840560.0,Guy Kawasaki,2004.0,\"The Art of the Start: The Time-Tested, Battle-Hardened Guide for Anyone Starting Anything\",\"The Art of the Start: The Time-Tested, Battle-Hardened Guide for Anyone Starting Anything\",en-US,3.82,18466,18796,404,773,1344,4613,5888,6178,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433719169l/37875._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4412,7099273,7099273,7356968,19,385528191,9780385528190.0,\"Wes  Moore, Tavis Smiley\",2010.0,\"The Other Wes Moore: One Name, Two Fates\",\"The Other Wes Moore: One Name, Two Fates\",en-GB,3.77,19964,23269,3168,296,1401,6737,9790,5045,https://images.gr-assets.com/books/1320554118l/7099273.jpg,https://images.gr-assets.com/books/1320554118s/7099273.jpg\n4413,86643,86643,2443651,61,399154140,9780399154140.0,Ariana Franklin,2007.0,Mistress of the Art of Death,\"Mistress of the Art of Death (Mistress of the Art of Death, #1)\",en-US,3.95,27332,29208,2642,640,1451,6150,11492,9475,https://images.gr-assets.com/books/1435958507l/86643.jpg,https://images.gr-assets.com/books/1435958507s/86643.jpg\n4414,89284,89284,86172,11,1416938745,9781416938740.0,Tucker Max,2008.0,Assholes Finish First,\"Assholes Finish First (Tucker Max, #2)\",en-US,3.64,19838,20984,772,1278,2103,5413,6248,5942,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389934184l/89284.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4415,1429082,1429082,15555441,21,4063347761,9784063347760.0,\"Naoko Takeuchi, 武内 直子\",1991.0,美少女戦士セーラームーン,美少女戦士セーラームーン新装版 1 [Bishōjo Senshi Sailor Moon Shinsōban 1],jpn,4.28,18035,22319,724,664,866,2981,4933,12875,https://images.gr-assets.com/books/1308886282l/1429082.jpg,https://images.gr-assets.com/books/1308886282s/1429082.jpg\n4416,73086,73086,1040905,54,380782332,9780380782340.0,Susan Elizabeth Phillips,1996.0,Kiss an Angel ,Kiss an Angel,eng,4.21,32191,35438,2262,547,1297,5431,11099,17064,https://images.gr-assets.com/books/1309115033l/73086.jpg,https://images.gr-assets.com/books/1309115033s/73086.jpg\n4417,7815744,7815744,10840474,53,61995037,9780061995030.0,Dan Ariely,2010.0,The Upside of Irrationality: The Unexpected Benefits of Defying Logic at Work and at Home,The Upside of Irrationality: The Unexpected Benefits of Defying Logic at Work and at Home,en-US,4.0,22422,23562,799,361,1070,5036,8953,8142,https://images.gr-assets.com/books/1268511997l/7815744.jpg,https://images.gr-assets.com/books/1268511997s/7815744.jpg\n4418,12358,12358,229722,15,743243803,9780743243800.0,\"Sarah Vowell, Katherine Streeter\",2002.0,The Partly Cloudy Patriot,The Partly Cloudy Patriot,eng,3.9,22819,23818,1368,525,1111,5321,10182,6679,https://images.gr-assets.com/books/1430720573l/12358.jpg,https://images.gr-assets.com/books/1430720573s/12358.jpg\n4419,34898,34898,3217669,81,440421217,9780440421210.0,Ruth Stiles Gannett,1948.0,My Father's Dragon (My Father's Dragon Trilogy),\"My Father's Dragon (My Father's Dragon, #1)\",eng,4.09,25905,26842,1233,521,1224,5101,8553,11443,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438398138l/34898._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4420,18505832,18505832,26198849,32,62311077,9780062311080.0,Greg Iles,2014.0,Natchez Burning,Natchez Burning,eng,4.12,18722,23806,3121,416,941,3560,9256,9633,https://images.gr-assets.com/books/1383438264l/18505832.jpg,https://images.gr-assets.com/books/1383438264s/18505832.jpg\n4421,141526,141526,749231,73,876859260,9780876859260.0,Charles Bukowski,1994.0,Pulp,Pulp,,3.68,18216,21041,950,479,1850,6296,7620,4796,https://images.gr-assets.com/books/1348053445l/141526.jpg,https://images.gr-assets.com/books/1348053445s/141526.jpg\n4422,32416,32416,46673,94,385339410,9780385339410.0,Thomas Harris,2006.0,Hannibal Rising,\"Hannibal Rising (Hannibal Lecter, #4)\",en-US,3.44,22767,25973,1317,1468,3733,8087,7174,5511,https://images.gr-assets.com/books/1394208690l/32416.jpg,https://images.gr-assets.com/books/1394208690s/32416.jpg\n4423,238126,238126,3093699,76,749934085,9780749934090.0,J.D. Robb,1996.0,Immortal in Death ,\"Immortal in Death (In Death, #3)\",eng,4.26,29315,34987,1307,100,524,5284,13284,15795,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348108817l/238126.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4424,6696602,6696602,6892257,24,312599072,9780312599070.0,Sherrilyn Kenyon,2010.0,inf,\"Infinity (Chronicles of Nick, #1)\",en-US,4.04,31598,34312,2731,948,1904,6253,10769,14438,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442250235l/6696602._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4425,2149535,2149535,2956823,38,425222195,9780425222200.0,Laurell K. Hamilton,2007.0,\"Blood Noir (Anita Blake, Vampire Hunter, #16)\",\"Blood Noir (Anita Blake, Vampire Hunter #16)\",en-US,3.85,32159,34278,939,1185,3096,7873,9815,12309,https://images.gr-assets.com/books/1310494632l/2149535.jpg,https://images.gr-assets.com/books/1310494632s/2149535.jpg\n4426,5933841,5933841,6151926,46,1594202249,9781594202250.0,Thomas Pynchon,2009.0,Inherent Vice,Inherent Vice,eng,3.71,18109,20909,2145,533,1575,5591,8887,4323,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347697574l/5933841.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4427,10914,10914,1074034,14,743431014,9780743431020.0,Jodi Picoult,1992.0,Songs of the Humpback Whale: A Novel in Five Voices,Songs of the Humpback Whale,en-US,3.19,24756,25894,1834,1993,4813,9104,6263,3721,https://images.gr-assets.com/books/1421422550l/10914.jpg,https://images.gr-assets.com/books/1421422550s/10914.jpg\n4428,6945530,6945530,6965593,71,61558265,9780061558270.0,\"Guillermo del Toro, Chuck Hogan\",2011.0,The Night Eternal,\"The Night Eternal (The Strain Trilogy, #3)\",en-US,3.67,18773,23194,1987,522,2195,6942,8216,5319,https://images.gr-assets.com/books/1327932900l/6945530.jpg,https://images.gr-assets.com/books/1327932900s/6945530.jpg\n4429,86147,86147,144128,48,394726413,9780394726410.0,Jay McInerney,1984.0,\"Bright Lights, Big City\",\"Bright Lights, Big City\",eng,3.74,21227,23006,1244,381,1668,6727,9056,5174,https://images.gr-assets.com/books/1399647015l/86147.jpg,https://images.gr-assets.com/books/1399647015s/86147.jpg\n4430,16158519,16158519,21998935,68,399159894,9780399159890.0,Nora Roberts,2013.0,Whiskey Beach,Whiskey Beach,eng,3.96,19769,26780,2207,421,1313,6101,10128,8817,https://images.gr-assets.com/books/1357477045l/16158519.jpg,https://images.gr-assets.com/books/1357477045s/16158519.jpg\n4431,14755,14755,3363757,26,1416535209,9781416535200.0,Jennifer Weiner,2006.0,The Guy Not Taken: Stories,The Guy Not Taken: Stories,en-US,3.46,20420,21414,1148,773,2706,7656,6387,3892,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388261676l/14755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4432,1894269,1894269,1895743,21,1582408831,9781582408840.0,Robert Kirkman,2008.0,\"The Walking Dead, Vol. 8: Made To Suffer\",\"The Walking Dead, Vol. 08: Made to Suffer\",eng,4.47,22017,22799,776,118,323,2007,6660,13691,https://images.gr-assets.com/books/1266634689l/1894269.jpg,https://images.gr-assets.com/books/1266634689s/1894269.jpg\n4433,6337006,6337006,6522883,27,1416580956,9781416580960.0,Kresley Cole,2010.0,Pleasure of a Dark Prince ,Pleasure of a Dark Prince (Immortals After Dark #9),eng,4.41,32358,34474,1080,134,516,3588,11006,19230,https://images.gr-assets.com/books/1357612049l/6337006.jpg,https://images.gr-assets.com/books/1357612049s/6337006.jpg\n4434,858037,858037,843487,37,64440028,9780064440030.0,Syd Hoff,1958.0,Danny and the Dinosaur,Danny and the Dinosaur (An I Can Read Book),en-US,4.0,24985,25375,303,455,1547,6092,6735,10546,https://images.gr-assets.com/books/1406512465l/858037.jpg,https://images.gr-assets.com/books/1406512465s/858037.jpg\n4435,51799,51799,1320474,609,140449302,9780140449300.0,\"Giovanni Boccaccio, G.H. McWilliam\",1353.0,Il decamerone,The Decameron,eng,3.86,22800,26314,782,449,1797,6719,9310,8039,https://images.gr-assets.com/books/1472027832l/51799.jpg,https://images.gr-assets.com/books/1472027832s/51799.jpg\n4437,25010281,25010281,44681694,55,316225886,9780316225880.0,Michael Connelly,2015.0,The Crossing,\"The Crossing (Harry Bosch, #20; Mickey Haller, #7; Harry Bosch Universe, #25)\",eng,4.21,17428,26621,2426,128,361,3599,12135,10398,https://images.gr-assets.com/books/1428347007l/25010281.jpg,https://images.gr-assets.com/books/1428347007s/25010281.jpg\n4438,13530981,13530981,19092649,101,771064861,9780771064870.0,Alice Munro,2012.0,Dear Life,Dear Life: Stories,,3.75,19278,24061,3083,670,1984,6211,9120,6076,https://images.gr-assets.com/books/1333579320l/13530981.jpg,https://images.gr-assets.com/books/1333579320s/13530981.jpg\n4439,1767779,1767779,1970335,31,899197698,9780899197690.0,Eileen Christelow,1989.0,Five Little Monkeys Jumping on the Bed (The Five Little Monkeys),Five Little Monkeys Jumping on the Bed,,4.09,24781,25504,531,423,1376,5521,6359,11825,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348724920l/1767779.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4440,40223,40223,598481,35,1405034149,9781405034140.0,Jacqueline Carey,2003.0,Kushiel's Avatar,\"Kushiel's Avatar (Phèdre's Trilogy, #3)\",eng,4.37,25782,28363,745,285,683,3213,8248,15934,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1600832044l/40223.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4441,5787,5787,2707897,123,142437883,9780142437890.0,\"Jorge Luis Borges, Andrew Hurley\",1947.0,El Aleph,The Aleph and Other Stories ,eng,4.39,16590,22638,799,175,581,2414,6562,12906,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440785365l/5787._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4442,18134249,18134249,25473547,16,,,Rachel Van Dyken,2013.0,Ruin,\"Ruin (Ruin, #1)\",eng,4.19,35844,36447,3787,685,1542,5362,11368,17490,https://images.gr-assets.com/books/1374686324l/18134249.jpg,https://images.gr-assets.com/books/1374686324s/18134249.jpg\n4443,2054,2054,998106,152,394757688,9780394757680.0,Raymond Chandler,1953.0,The Long Goodbye,\"The Long Goodbye (Philip Marlowe, #6)\",eng,4.23,22503,24917,1509,123,514,3745,9786,10749,https://images.gr-assets.com/books/1388225584l/2054.jpg,https://images.gr-assets.com/books/1388225584s/2054.jpg\n4444,2050,2050,1263111,132,394758277,9780394758280.0,Raymond Chandler,1940.0,\"Farewell, My Lovely\",\"Farewell, My Lovely (Philip Marlowe, #2)\",eng,4.17,21864,24020,1145,87,505,4045,10063,9320,https://images.gr-assets.com/books/1465778099l/2050.jpg,https://images.gr-assets.com/books/1465778099s/2050.jpg\n4445,24779,24779,3007213,66,805080503,9780805080510.0,Lloyd Alexander,1966.0,The Castle of Llyr,The Castle of Llyr (The Chronicles of Prydain #3),eng,4.07,27425,28880,738,197,718,6299,11196,10470,https://images.gr-assets.com/books/1405714238l/24779.jpg,https://images.gr-assets.com/books/1405714238s/24779.jpg\n4446,6289938,6289938,6474295,30,451228669,9780451228670.0,Rachel Caine,2009.0,Fade Out,\"Fade Out (The Morganville Vampires, #7)\",en-US,4.2,32918,34915,854,263,1052,6319,11057,16224,https://images.gr-assets.com/books/1327067249l/6289938.jpg,https://images.gr-assets.com/books/1327067249s/6289938.jpg\n4447,508903,508903,1469462,50,425195201,9780425195210.0,Lilian Jackson Braun,1966.0,The Cat Who Could Read Backwards,\"The Cat Who Could Read Backwards (Cat Who..., #1)\",eng,3.84,23114,24710,956,470,1467,7077,8187,7509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298562424l/508903.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4448,15993374,15993374,21751013,12,,2940015495870.0,Nyrae Dawn,2012.0,Charade,\"Charade (Games, #1)\",eng,3.98,35216,36295,2006,666,1693,7756,13665,12515,https://images.gr-assets.com/books/1357756816l/15993374.jpg,https://images.gr-assets.com/books/1357756816s/15993374.jpg\n4449,12959086,12959086,18116462,19,1423163001,9781423163010.0,\"Rick Riordan, Haley Riordan\",2012.0,The Demigod Diaries,The Demigod Diaries,eng,4.19,28461,32365,1448,180,960,6037,10542,14646,https://images.gr-assets.com/books/1328573978l/12959086.jpg,https://images.gr-assets.com/books/1328573978s/12959086.jpg\n4450,17032328,17032328,23348933,21,,2940016249310.0,Courtney Cole,2013.0,If You Stay,\"If You Stay (Beautifully Broken, #1)\",eng,3.94,31388,33374,1948,567,1689,7491,12981,10646,https://images.gr-assets.com/books/1355661483l/17032328.jpg,https://images.gr-assets.com/books/1355661483s/17032328.jpg\n4451,20170296,20170296,28028860,18,385346999,9780385346990.0,\"Neil Patrick Harris, David Javerbaum, Antony Hare\",2014.0,Neil Patrick Harris: Choose Your Own Autobiography,Neil Patrick Harris: Choose Your Own Autobiography,eng,3.86,21596,23134,3047,909,1350,5080,8495,7300,https://images.gr-assets.com/books/1400599072l/20170296.jpg,https://images.gr-assets.com/books/1400599072s/20170296.jpg\n4452,128756,128756,1048701,79,671011375,9780671011380.0,Kathy Reichs,1999.0,Death du Jour,\"Death du Jour (Temperance Brennan, #2)\",en-US,3.96,27715,31213,1159,176,962,7765,13468,8842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390961759l/128756.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4453,313631,313631,1715387,44,842345523,9780842345520.0,Josh McDowell,1977.0,More Than a Carpenter,More Than a Carpenter,eng,4.19,19269,20131,393,331,754,3346,6067,9633,https://images.gr-assets.com/books/1439771268l/313631.jpg,https://images.gr-assets.com/books/1439771268s/313631.jpg\n4454,1137215,1137215,1124460,33,765318415,9780765318410.0,Cherie Priest,2009.0,Boneshaker ,\"Boneshaker (The Clockwork Century, #1)\",eng,3.5,26202,27742,3735,991,3246,9021,9959,4525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433161048l/1137215._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4455,165395,165395,3017660,35,553146963,9780553146970.0,Rita Mae Brown,1973.0,Rubyfruit Jungle,Rubyfruit Jungle,eng,3.88,22583,24632,804,487,1481,6110,8909,7645,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172341177l/165395._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4456,12588363,12588363,17603066,56,375990674,9780375990670.0,Lauren Kate,2012.0,Fallen in Love,\"Fallen in Love (Fallen, #3.5)\",eng,3.77,30759,33324,1652,1069,3330,8977,8737,11211,https://images.gr-assets.com/books/1362339849l/12588363.jpg,https://images.gr-assets.com/books/1362339849s/12588363.jpg\n4457,18225810,18225810,24902370,14,545540607,9780545540600.0,Raina Telgemeier,2014.0,Sisters,Sisters,eng,4.29,23347,29031,3290,344,775,4020,8866,15026,https://images.gr-assets.com/books/1411022689l/18225810.jpg,https://images.gr-assets.com/books/1411022689s/18225810.jpg\n4458,536982,536982,524423,32,1597372552,9781597372560.0,D.J. MacHale,2003.0,The Never War,\"The Never War (Pendragon, #3)\",eng,4.12,24219,25245,474,266,914,4836,8727,10502,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347748833l/536982.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4459,15566,15566,764,52,1857238273,9781857238270.0,Terry Brooks,1992.0,The Elf Queen of Shannara ,\"The Elf Queen of Shannara (Heritage of Shannara, #3)\",eng,4.02,23895,25677,182,208,971,5834,9769,8895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673287l/15566.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4460,201342,201342,1178215,41,441006108,9780441006110.0,Brian Jacques,1990.0,Mattimeo,\"Mattimeo (Redwall, #3)\",eng,4.02,26345,27627,376,128,852,6515,10904,9228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194271l/201342.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4461,22886612,22886612,42456264,24,,,James S.A. Corey,2015.0,Nemesis Games,\"Nemesis Games (The Expanse, #5)\",eng,4.37,20681,23686,1605,34,216,2161,9858,11417,https://images.gr-assets.com/books/1407524221l/22886612.jpg,https://images.gr-assets.com/books/1407524221s/22886612.jpg\n4462,845977,845977,1239848,57,60927488,9780060927490.0,Marianne Williamson,1992.0,\"A Return to Love: Reflections on the Principles of \"\"A Course in Miracles\"\"\",\"A Return to Love: Reflections on the Principles of \"\"A Course in Miracles\"\"\",,4.29,19144,20409,704,342,659,2750,5702,10956,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437440428l/845977._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4463,5509321,5509321,5617267,17,446539759,9780446539750.0,David Baldacci,2009.0,First Family,\"First Family (Sean King & Michelle Maxwell, #4)\",en-US,3.98,22203,26455,1692,184,837,6038,11692,7704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442058434l/5509321._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4464,257845,257845,1320617,94,1585673692,9781585673700.0,Charles Portis,1968.0,True Grit,True Grit,en-US,4.12,21199,27697,3761,179,842,4674,11646,10356,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436277655l/257845.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4465,653396,653396,2067235,67,449902927,9780449902930.0,Susan  Jeffers,1987.0,Feel The Fear And Do It Anyway: How to Turn Your Fear and Indecision into Confidence and Action,Feel the Fear and Do It Anyway,en-US,4.01,18278,20087,672,446,1070,4183,6482,7906,https://images.gr-assets.com/books/1363288028l/653396.jpg,https://images.gr-assets.com/books/1363288028s/653396.jpg\n4466,17792606,17792606,24886836,23,,,Katy Evans,2013.0,Mine,\"Mine (Real, #2)\",eng,4.29,39411,41080,3107,525,1410,5276,12332,21537,https://images.gr-assets.com/books/1377178049l/17792606.jpg,https://images.gr-assets.com/books/1377178049s/17792606.jpg\n4467,13538552,13538552,18274537,39,125000621X,9781250006220.0,Matthew Dicks,2012.0,Memoirs of an Imaginary Friend,Memoirs of an Imaginary Friend,eng,4.1,18344,24050,4043,315,994,4062,9264,9415,https://images.gr-assets.com/books/1343851908l/13538552.jpg,https://images.gr-assets.com/books/1343851908s/13538552.jpg\n4468,4835,4835,1934157,94,670886580,9780670886590.0,\"Salman Rushdie, Paul Birkbeck\",1990.0,Haroun and the Sea of Stories,\"Haroun and the Sea of Stories (Khalifa Brothers, #1)\",eng,4.01,19221,23699,1941,363,1248,4862,8540,8686,https://images.gr-assets.com/books/1419913148l/4835.jpg,https://images.gr-assets.com/books/1419913148s/4835.jpg\n4470,13450339,20759393,18972016,24,1442436646,9781442436640.0,Kresley Cole,2012.0,Poison Princess,\"Poison Princess (The Arcana Chronicles, #1)\",en-US,4.14,25679,31742,3753,1047,1457,4478,9652,15108,https://images.gr-assets.com/books/1356422925l/13450339.jpg,https://images.gr-assets.com/books/1356422925s/13450339.jpg\n4471,83143,83143,594714,62,7118899,9780007118890.0,Paullina Simons,2003.0,\"Tatiana and Alexander (The Bronze Horseman, #2)\",\"Tatiana and Alexander (The Bronze Horseman, #2)\",en-GB,4.3,20654,26207,2067,232,688,3456,8424,13407,https://images.gr-assets.com/books/1390089221l/83143.jpg,https://images.gr-assets.com/books/1390089221s/83143.jpg\n4472,17910124,17910124,25095579,33,765336405,9780765336410.0,Brian Staveley,2014.0,The Emperor's Blades,\"The Emperor's Blades (Chronicle of the Unhewn Throne, #1)\",eng,4.15,19877,23710,1882,222,739,3328,10346,9075,https://images.gr-assets.com/books/1369246817l/17910124.jpg,https://images.gr-assets.com/books/1369246817s/17910124.jpg\n4473,18723,18723,869942,67,743243315,9780743243320.0,Monica Ali,2003.0,Brick Lane,Brick Lane,eng,3.38,21002,23469,1572,1028,3050,8342,7968,3081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433730686l/18723.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4474,18079804,18079804,24802827,72,670016780,9780670016780.0,Sally Green,2014.0,Half Bad,\"Half Bad (The Half Bad Trilogy, #1)\",eng,3.8,26913,33104,5550,819,2377,8114,12925,8869,https://images.gr-assets.com/books/1413889712l/18079804.jpg,https://images.gr-assets.com/books/1413889712s/18079804.jpg\n4475,53639,53639,1560878,189,571203132,9780571203130.0,\"Nikos Kazantzakis, Νίκος Καζαντζάκης\",1946.0,Βίος και πολιτεία του Αλέξη Ζορμπά,Zorba the Greek,eng,4.1,15203,23643,2393,523,1241,3903,7770,10206,https://images.gr-assets.com/books/1328007439l/53639.jpg,https://images.gr-assets.com/books/1328007439s/53639.jpg\n4476,598117,598117,951154,52,64400204,9780064400210.0,\"William H. Armstrong, James Barkley\",1969.0,Sounder,Sounder,en-US,3.96,24061,24800,919,489,1354,5723,8227,9007,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1588161155l/598117._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4477,11337189,11337189,16265802,39,145162445X,9781451624460.0,\"Lawrence M. Krauss, Richard Dawkins\",2012.0,A Universe from Nothing: Why There Is Something Rather Than Nothing,A Universe from Nothing: Why There Is Something Rather Than Nothing,eng,3.92,17204,19149,1038,641,1048,3926,7047,6487,https://images.gr-assets.com/books/1365217267l/11337189.jpg,https://images.gr-assets.com/books/1365217267s/11337189.jpg\n4478,1970449,1970449,2338187,25,61351423,9780061351430.0,\"Slash, Anthony Bozza\",2007.0,Slash,Slash,en-US,3.96,17989,19266,977,292,1020,4390,7049,6515,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347554088l/1970449.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4480,8475505,8475505,13340323,14,399256938,9780399256940.0,Rachel Hawkins,2014.0,Rebel Belle,\"Rebel Belle (Rebel Belle, #1)\",eng,3.88,30506,31958,5046,770,1985,7198,12208,9797,https://images.gr-assets.com/books/1371650817l/8475505.jpg,https://images.gr-assets.com/books/1371650817s/8475505.jpg\n4481,32254,32254,216590,81,345476999,9780345477000.0,Tess Gerritsen,2006.0,The Mephisto Club,\"The Mephisto Club (Rizzoli & Isles, #6)\",eng,4.01,23378,27848,1405,189,1004,6237,11253,9165,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389056704l/32254.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4482,73297,73297,281071,27,842342710,9780842342710.0,Francine Rivers,1995.0,The Scarlet Thread ,The Scarlet Thread ,eng,4.14,21233,22189,715,235,821,4007,7627,9499,https://images.gr-assets.com/books/1406510347l/73297.jpg,https://images.gr-assets.com/books/1406510347s/73297.jpg\n4483,24814,24814,25601,21,836221362,9780836221370.0,Bill Watterson,1996.0,It's a Magical World: A Calvin and Hobbes Collection,It's a Magical World: A Calvin and Hobbes Collection,eng,4.75,22351,23429,264,36,57,850,3737,18749,https://images.gr-assets.com/books/1437420710l/24814.jpg,https://images.gr-assets.com/books/1437420710s/24814.jpg\n4485,10033,10033,973089,75,415278481,9780415278480.0,\"Jean-Paul Sartre, Hazel E. Barnes, Mary Warnock, Richard Eyre\",1943.0,L'être et le néant,Being and Nothingness,en-GB,3.94,19897,21146,311,546,1167,4499,7637,7297,https://images.gr-assets.com/books/1329978583l/10033.jpg,https://images.gr-assets.com/books/1329978583s/10033.jpg\n4486,1128437,1128437,1877799,90,8370540376,9788370540370.0,Andrzej Sapkowski,1993.0,Miecz przeznaczenia,\"Miecz przeznaczenia (Saga o Wiedźminie, #2)\",pol,4.4,12909,26446,1008,78,348,2618,9245,14157,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208553771l/1128437.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4487,27333,27333,880193,74,618249060,9780618249060.0,\"Rachel Carson, Linda Lear, Edward O. Wilson\",1962.0,Silent Spring,Silent Spring,en-US,3.94,24027,25328,1415,611,1311,5511,9428,8467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442353674l/27333._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4488,13452375,13452375,18978261,24,1596064854,9781596064850.0,Brandon Sanderson,2012.0,Legion,\"Legion (Legion, #1)\",eng,4.13,20291,24459,2235,147,605,4208,10448,9051,https://images.gr-assets.com/books/1338512017l/13452375.jpg,https://images.gr-assets.com/books/1338512017s/13452375.jpg\n4489,23215469,23215469,42694591,11,62372106,9780062372110.0,Holly Madison,2015.0,Down the Rabbit Hole: Curious Adventures and Cautionary Tales of a Former Playboy Bunny,Down the Rabbit Hole: Curious Adventures and Cautionary Tales of a Former Playboy Bunny,eng,3.4,13213,20828,2379,1184,2800,7017,6203,3624,https://images.gr-assets.com/books/1427158803l/23215469.jpg,https://images.gr-assets.com/books/1427158803s/23215469.jpg\n4490,10343389,10343389,15246115,52,1846057647,9781846057650.0,James Patterson,2011.0,Kill Alex Cross,Kill Alex Cross (Alex Cross #18),eng,4.0,20206,24714,1499,219,988,5658,9447,8402,https://images.gr-assets.com/books/1338802382l/10343389.jpg,https://images.gr-assets.com/books/1338802382s/10343389.jpg\n4491,18505784,18505784,26612089,26,62244752,9780062244760.0,Nadia Hashimi,2014.0,The Pearl that Broke Its Shell,The Pearl That Broke Its Shell,eng,4.12,19016,23155,2786,193,589,3582,10634,8157,https://images.gr-assets.com/books/1384543130l/18505784.jpg,https://images.gr-assets.com/books/1384543130s/18505784.jpg\n4492,7826116,7826116,7245151,42,1416971750,9781416971760.0,\"Scott Westerfeld, Keith Thompson\",2010.0,Behemoth,\"Behemoth (Leviathan, #2)\",en-US,4.18,30049,31954,2449,305,734,4949,12761,13205,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422535707l/7826116.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4493,72536,72536,118905,26,767915828,9780767915820.0,Martha Stout,2005.0,The Sociopath Next Door,The Sociopath Next Door,eng,3.75,21550,23035,1896,705,1790,6318,7948,6274,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187807l/72536.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4494,79422,79422,585352,14,1401210104,9781401210110.0,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",2006.0,\"Y: The Last Man, Vol. 8: Kimono Dragons\",\"Y: The Last Man, Vol. 8: Kimono Dragons (Y: The Last Man, #8)\",eng,4.22,23842,24131,330,294,693,3364,8751,11029,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234343l/79422.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4497,261331,261331,1296201,43,7208006,9780007208000.0,Jennifer Donnelly,2002.0,The Tea Rose,\"The Tea Rose (The Tea Rose, #1)\",eng,4.18,22448,25268,2496,447,969,3764,8584,11504,https://images.gr-assets.com/books/1327888567l/261331.jpg,https://images.gr-assets.com/books/1327888567s/261331.jpg\n4498,8680418,10381195,13552477,38,345524594,9780345524590.0,Ben Aaronovitch,2011.0,Moon Over Soho,\"Moon Over Soho (Peter Grant, #2)\",eng,4.1,16566,28024,2098,95,514,4861,13637,8917,https://images.gr-assets.com/books/1320411169l/8680418.jpg,https://images.gr-assets.com/books/1320411169s/8680418.jpg\n4499,17456328,17456328,24347842,27,1402284314,9781402284310.0,Charles Belfoure,2013.0,The Paris Architect,The Paris Architect,eng,3.98,18925,24361,2844,369,1021,4808,10678,7485,https://images.gr-assets.com/books/1375064865l/17456328.jpg,https://images.gr-assets.com/books/1375064865s/17456328.jpg\n4500,12954620,12954620,18111704,41,1595145842,9781595145840.0,\"Morgan Rhodes, Michelle Rowen\",2012.0,Falling Kingdoms,\"Falling Kingdoms (Falling Kingdoms, #1)\",eng,3.83,32623,36097,5702,1214,2762,7893,13132,11096,https://images.gr-assets.com/books/1337026387l/12954620.jpg,https://images.gr-assets.com/books/1337026387s/12954620.jpg\n4501,244383,244383,52321,40,1401904599,9788190416950.0,\"Esther Hicks, Jerry Hicks, Wayne W. Dyer\",2004.0,Ask and It Is Given: Learning to Manifest Your Desires,Ask and It Is Given: Learning to Manifest Your Desires,en-GB,4.18,17170,18266,504,417,797,2957,5034,9061,https://images.gr-assets.com/books/1390062620l/244383.jpg,https://images.gr-assets.com/books/1390062620s/244383.jpg\n4502,7005479,7005479,6825396,82,61988243,9780061988240.0,\"Isabel Allende, Margaret Sayers Peden\",2009.0,La isla bajo el mar,Island Beneath the Sea,eng,4.01,18864,24500,2613,247,1035,4939,10388,7891,https://images.gr-assets.com/books/1501991943l/7005479.jpg,https://images.gr-assets.com/books/1501991943s/7005479.jpg\n4503,99329,99329,1350343,377,140436227,9780140436230.0,\"Henry Fielding, Thomas Keymer, Alice Wakely\",1749.0,\"The History of Tom Jones, a Foundling\",\"The History of Tom Jones, a Foundling\",eng,3.73,24718,26988,765,998,2387,7183,8792,7628,https://images.gr-assets.com/books/1444450775l/99329.jpg,https://images.gr-assets.com/books/1444450775s/99329.jpg\n4504,80176,80176,191520,372,192839772,9780192839770.0,Sherwood Anderson,1919.0,\"Winesburg, Ohio: A Group of Tales of Ohio Small-Town Life\",\"Winesburg, Ohio\",eng,3.84,20125,24741,1780,652,1832,6013,8681,7563,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391639013l/80176.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4506,89656,89656,2513787,67,312939019,9780312939010.0,Sue Grafton,1986.0,C is for Corpse,\"C is for Corpse  (Kinsey Millhone, #3)\",en-US,3.87,29204,31679,910,121,879,9759,13100,7820,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431914718l/89656._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4507,156533,156533,1584088,14,1401204872,9781401204880.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",2004.0,Y: The Last Man Vol. 5: Ring of Truth,\"Y: The Last Man, Vol. 5: Ring of Truth (Y: The Last Man, #5)\",eng,4.27,24606,24850,418,234,496,3204,9286,11630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389533488l/156533.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4508,15096,15096,10730819,78,60958022,9780060958020.0,Joanne Harris,2001.0,Five Quarters of the Orange,Five Quarters of the Orange,eng,3.83,23332,26429,2091,326,1486,6971,11174,6472,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1583190215l/15096.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4509,63032,63032,3294830,84,843396867X,9788433968680.0,Roberto Bolaño,2004.0,2666,2666,spa,4.2,15000,22318,2930,622,1147,2739,6398,11412,https://images.gr-assets.com/books/1412644327l/63032.jpg,https://images.gr-assets.com/books/1412644327s/63032.jpg\n4510,2748,2748,851428,41,60987049,9780060987050.0,Douglas Coupland,1995.0,Microserfs,Microserfs,en-US,3.88,19516,21243,808,290,1316,5267,8251,6119,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546099595l/2748.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4511,15799936,15799936,21523228,18,1449410243,9781449410250.0,\"Matthew Inman, The Oatmeal\",2012.0,How to Tell If Your Cat Is Plotting to Kill You,How to Tell If Your Cat Is Plotting to Kill You,eng,3.95,22994,24479,1522,706,1572,5129,7843,9229,https://images.gr-assets.com/books/1461518764l/15799936.jpg,https://images.gr-assets.com/books/1461518764s/15799936.jpg\n4512,93947,93947,935868,76,446580341,9780446580340.0,David Baldacci,2007.0,Simple Genius,\"Simple Genius (Sean King & Michelle Maxwell, #3)\",eng,3.89,22171,26021,1424,238,1183,6623,11069,6908,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388340824l/93947.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4513,14965,14965,3165570,57,316014281,9780316014280.0,Anita Shreve,2004.0,Light on Snow,Light on Snow,,3.56,22845,24610,1724,286,2005,9451,9337,3531,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166668978l/14965._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4514,8960,8960,166363,56,316905747,9780316905750.0,Darren Shan,2001.0,\"Vampire Mountain (Cirque du Freak, #4) \",\"Vampire Mountain (Cirque Du Freak, #4)\",eng,4.16,23847,25972,665,150,906,4915,8573,11428,https://images.gr-assets.com/books/1255813254l/8960.jpg,https://images.gr-assets.com/books/1255813254s/8960.jpg\n4515,14185,14185,1399376,112,1407247425,9781407247430.0,Philip K. Dick,1965.0,The Three Stigmata of Palmer Eldritch,The Three Stigmata of Palmer Eldritch,eng,4.01,20140,23575,1114,196,1027,5048,9445,7859,https://images.gr-assets.com/books/1338461946l/14185.jpg,https://images.gr-assets.com/books/1338461946s/14185.jpg\n4516,23128304,23128304,42676389,39,385354304,9780385354300.0,\"Haruki Murakami, Ted Goossen\",2005.0,ふしぎな図書館  Fushigi na toshokan,The Strange Library,en-GB,3.55,18806,24836,3995,542,2308,8867,9174,3945,https://images.gr-assets.com/books/1419549475l/23128304.jpg,https://images.gr-assets.com/books/1419549475s/23128304.jpg\n4517,9598,9598,834005,67,385334176,9780385334170.0,Kurt Vonnegut Jr.,1982.0,Deadeye Dick,Deadeye Dick,eng,3.8,19212,20466,637,119,992,6194,8685,4476,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1515193617l/9598.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4518,8579016,8579016,17359118,11,1439181780,9781439181780.0,Rhonda Byrne,2009.0,\"The Power (The Secret, #2)\",\"The Power (The Secret, #2)\",eng,4.09,16917,18176,862,547,1014,3173,5016,8426,https://images.gr-assets.com/books/1366245447l/8579016.jpg,https://images.gr-assets.com/books/1366245447s/8579016.jpg\n4519,181886,181886,175757,40,451460286,9780451460290.0,\"Diana L. Paxson, Marion Zimmer Bradley\",2004.0,Ancestors of Avalon ,\"Ancestors of Avalon (Avalon, #5)\",eng,3.89,21408,22025,140,1080,1552,4634,6173,8586,https://images.gr-assets.com/books/1311305924l/181886.jpg,https://images.gr-assets.com/books/1311305924s/181886.jpg\n4520,398323,398323,3321103,71,1555974708,9781555974700.0,\"Per Petterson, Anne Born\",2003.0,Ut og stjæle hester,Out Stealing Horses,eng,3.79,19199,22962,3715,466,1735,5768,9184,5809,https://images.gr-assets.com/books/1317791439l/398323.jpg,https://images.gr-assets.com/books/1317791439s/398323.jpg\n4521,51078,51078,49853,7,1563891425,9781563891430.0,\"Doug Moench, Chuck Dixon, Jim Aparo, Norm Breyfogle, Graham Nolan, Jim Balent\",1993.0,\"Batman: Knightfall, Part One: Broken Bat\",\"Batman: Knightfall, Vol. 1: Broken Bat\",eng,4.08,18298,18401,191,275,952,3612,5691,7871,https://images.gr-assets.com/books/1376156963l/51078.jpg,https://images.gr-assets.com/books/1376156963s/51078.jpg\n4522,25451555,25451555,45216378,17,1632154382,9781632154380.0,\"Brian K. Vaughan, Fiona Staples\",2015.0,\"Saga, Volume Five\",\"Saga, Vol. 5 (Saga, #5)\",eng,4.44,29429,30292,2570,154,389,2442,10419,16888,https://images.gr-assets.com/books/1486028990l/25451555.jpg,https://images.gr-assets.com/books/1486028990s/25451555.jpg\n4523,206196,206196,2164503,29,1416543686,9781416543690.0,Brad Thor,2002.0,The Lions of Lucerne,\"The Lions of Lucerne (Scot Harvath, #1)\",eng,4.04,18770,22883,1129,385,915,4281,9077,8225,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522067l/206196.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4525,207569,13164526,1282066,46,440779030,9780440779030.0,Elizabeth George Speare,1983.0,The Sign of the Beaver,The Sign of the Beaver,eng,3.77,20450,25600,1317,728,1976,6936,8879,7081,https://images.gr-assets.com/books/1362166273l/207569.jpg,https://images.gr-assets.com/books/1362166273s/207569.jpg\n4526,46227,46227,900807,72,60822554,9780060822550.0,\"John Fante, Charles Bukowski\",1939.0,Ask the dust ,\"Ask the Dust (Arturo Bandini, #3)\",eng,4.14,16226,20506,1398,212,758,3429,7679,8428,https://images.gr-assets.com/books/1388283697l/46227.jpg,https://images.gr-assets.com/books/1388283697s/46227.jpg\n4527,470495,470495,1948077,21,679774025,9780679774020.0,Rick Bragg,1997.0,All Over But the Shoutin',All Over But the Shoutin',eng,4.09,21072,21783,1444,266,881,4059,8065,8512,https://images.gr-assets.com/books/1327905477l/470495.jpg,https://images.gr-assets.com/books/1327905477s/470495.jpg\n4528,32433,32433,359562,50,425147517,9780425147510.0,\"Leigh Nichols, Dean Koontz\",1979.0,The Key to Midnight,The Key to Midnight,en-US,3.93,22578,23143,236,223,1091,6241,8001,7587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348697141l/32433.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4529,13554713,13554713,21596076,36,067002497X,9780670024970.0,\"Philip Pullman, Jacob Grimm, Wilhelm Grimm\",2012.0,Grimm Tales for Young and Old,Fairy Tales from the Brothers Grimm: A New English Version,eng,4.11,17219,18829,812,290,669,3493,6683,7694,https://images.gr-assets.com/books/1339554952l/13554713.jpg,https://images.gr-assets.com/books/1339554952s/13554713.jpg\n4530,43886,43886,43276,29,765351544,9780765351550.0,Terry Goodkind,1998.0,\"Debt of Bones (The Sword of Truth, #0.5)\",\"Debt of Bones (Sword of Truth, #0.5)\",eng,3.85,23279,24194,496,389,1611,6731,7936,7527,https://images.gr-assets.com/books/1502300279l/43886.jpg,https://images.gr-assets.com/books/1502300279s/43886.jpg\n4531,26114,26114,1457765,134,571166938,9780571166930.0,Milan Kundera,1967.0,Žert,The Joke,eng,3.99,16464,20673,822,154,781,4599,8803,6336,https://images.gr-assets.com/books/1448044837l/26114.jpg,https://images.gr-assets.com/books/1448044837s/26114.jpg\n4532,12326627,12326627,17305270,46,,,Philippa Gregory,2013.0,The White Princess,\"The White Princess (The Plantagenet and Tudor Novels, #5)\",eng,3.85,22584,26092,2390,476,1630,6526,10199,7261,https://images.gr-assets.com/books/1479698298l/12326627.jpg,https://images.gr-assets.com/books/1479698298s/12326627.jpg\n4533,377425,377425,1047993,59,1591141273,9781591141270.0,Stephen Coonts,1986.0,Flight of the Intruder,Flight of the Intruder (Jake Grafton #1),eng,4.04,21765,22410,134,259,748,4743,8732,7928,https://images.gr-assets.com/books/1327959569l/377425.jpg,https://images.gr-assets.com/books/1327959569s/377425.jpg\n4534,11313,11313,1358831,53,689840330,9780689840330.0,Susan Cooper,1977.0,Silver on the Tree,\"Silver on the Tree (The Dark is Rising, #5)\",eng,4.16,25818,27545,552,254,918,4890,9674,11809,https://images.gr-assets.com/books/1364805592l/11313.jpg,https://images.gr-assets.com/books/1364805592s/11313.jpg\n4535,225774,225774,218676,54,1405209496,9781405209500.0,Enid Bagnold,1935.0,National Velvet,National Velvet,eng,4.09,22682,23157,195,327,942,4811,7227,9850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1530561613l/225774.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4536,211099,211099,204315,49,812932293,9780812932290.0,Richard Branson,2011.0,\"Losing My Virginity: How I've Survived, Had Fun, and Made a Fortune Doing Business My Way\",\"Losing My Virginity: How I've Survived, Had Fun, and Made a Fortune Doing Business My Way\",eng,3.97,26225,28791,844,1260,1359,5181,10085,10906,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216295l/211099.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4537,1591,1591,2482177,222,872206033,9780872206040.0,\"Aristophanes, Sarah Ruden\",-411.0,Λυσιστράτη,Lysistrata,eng,3.84,25758,28283,653,619,1930,7250,9958,8526,https://images.gr-assets.com/books/1335892524l/1591.jpg,https://images.gr-assets.com/books/1335892524s/1591.jpg\n4538,5983057,5983057,6156487,60,1847442404,9781847442410.0,Elizabeth Kostova,2010.0,The Swan Thieves,The Swan Thieves,eng,3.53,23399,26874,3969,1129,3216,8126,9059,5344,https://images.gr-assets.com/books/1256542427l/5983057.jpg,https://images.gr-assets.com/books/1256542427s/5983057.jpg\n4539,12444166,12444166,17427104,24,385344406,9780385344400.0,Karen Marie Moning,2012.0,Iced,\"Iced (Fever, #6)\",eng,4.13,28890,32684,4066,651,1375,5501,10848,14309,https://images.gr-assets.com/books/1333022535l/12444166.jpg,https://images.gr-assets.com/books/1333022535s/12444166.jpg\n4540,15062217,15062217,20716929,24,,,Peter Clines,2012.0,14,14,eng,3.92,20011,21210,2777,346,1150,4532,8919,6263,https://images.gr-assets.com/books/1338999953l/15062217.jpg,https://images.gr-assets.com/books/1338999953s/15062217.jpg\n4541,9165406,9165406,14044509,13,547152604,9780547152610.0,Gary D. Schmidt,2011.0,Okay for Now,Okay for Now,en-US,4.19,24254,25127,4481,660,1007,3354,7999,12107,https://images.gr-assets.com/books/1388860777l/9165406.jpg,https://images.gr-assets.com/books/1388860777s/9165406.jpg\n4542,85957,85957,122876,37,842329277,9780842329280.0,\"Tim LaHaye, Jerry B. Jenkins\",1990.0,\"Assassins : Assignment: Jerusalem, Target: Antichrist\",\"Assassins (Left Behind, #6)\",eng,3.98,24143,25041,335,657,1428,5306,7968,9682,https://images.gr-assets.com/books/1406512196l/85957.jpg,https://images.gr-assets.com/books/1406512196s/85957.jpg\n4543,13521459,13521459,19082135,38,316214442,9780316214440.0,Joe Abercrombie,2012.0,Red Country,\"Red Country (First Law World, #6)\",eng,4.27,19926,23690,1420,107,459,2983,9500,10641,https://images.gr-assets.com/books/1333663008l/13521459.jpg,https://images.gr-assets.com/books/1333663008s/13521459.jpg\n4544,85443,85443,82450,53,553271369,9780553271360.0,Pat Conroy,1980.0,The Lords of Discipline,The Lords of Discipline,,4.28,19050,21120,1139,104,399,2749,8116,9752,https://images.gr-assets.com/books/1320483838l/85443.jpg,https://images.gr-assets.com/books/1320483838s/85443.jpg\n4545,13202092,13202092,18385042,34,547569653,9780547569660.0,\"Scott Jurek, Steve Friedman\",2012.0,Eat And Run,Eat and Run: My Unlikely Journey to Ultramarathon Greatness,en-US,3.95,17376,20086,1622,284,857,4776,7873,6296,https://images.gr-assets.com/books/1344746039l/13202092.jpg,https://images.gr-assets.com/books/1344746039s/13202092.jpg\n4546,7093222,7093222,7262107,80,385341970,9780385341970.0,Karin Slaughter,2010.0,Broken,\"Broken (Will Trent, #4)\",eng,4.2,22244,25814,1180,126,515,4058,10570,10545,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430045032l/7093222.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4547,18656006,18656006,26470741,29,316099759,9780316099750.0,Elin Hilderbrand,2014.0,The Matchmaker,The Matchmaker,eng,3.82,19094,22424,2013,403,1317,5879,9200,5625,https://images.gr-assets.com/books/1395694896l/18656006.jpg,https://images.gr-assets.com/books/1395694896s/18656006.jpg\n4548,50930,50930,122832,33,842332286,9780842332290.0,\"Tim LaHaye, Jerry B. Jenkins\",2000.0,The Mark: The Beast Rules the World,\"The Mark (Left Behind, #8)\",en-US,4.02,21668,22824,293,549,1248,4593,7341,9093,https://images.gr-assets.com/books/1406510315l/50930.jpg,https://images.gr-assets.com/books/1406510315s/50930.jpg\n4549,2113410,2113410,2212314,25,61240273,9780061240270.0,Marisa de los Santos,2008.0,Belong to Me,Belong to Me,en-US,3.84,22521,24557,3319,283,1322,6440,10453,6059,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441939798l/2113410._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4551,57727,57727,2589940,73,99366711,9780099366710.0,James Ellroy,1990.0,L.A. Confidential,\"L.A. Confidential (L.A. Quartet, #3)\",eng,4.2,21511,23814,643,298,722,3329,9012,10453,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348575361l/57727.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4552,16045144,16045144,19068963,25,1250031125,9781250031130.0,Louise Penny,2012.0,The Beautiful Mystery,\"The Beautiful Mystery (Chief Inspector Armand Gamache, #8)\",,4.18,16170,26002,3277,173,742,3891,10528,10668,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388713271l/16045144.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4553,616678,616678,968062,55,345367693,9780345367690.0,David Eddings,1989.0,The Diamond Throne,\"The Diamond Throne (The Elenium, #1)\",,3.93,26150,27599,415,363,1600,6731,9849,9056,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212601l/616678.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4554,133765,133765,128860,10,1593074492,9781593074490.0,\"Joss Whedon, Brett Matthews, Will Conrad\",2006.0,\"Those Left Behind (Serenity, #1)\",\"Those Left Behind (Serenity, #1)\",eng,4.04,23220,24794,938,419,1123,5184,8487,9581,https://images.gr-assets.com/books/1403203994l/133765.jpg,https://images.gr-assets.com/books/1403203994s/133765.jpg\n4555,63461,63461,3139048,39,075283455X,9780752834560.0,Larry McMurtry,1975.0,Terms of Endearment,Terms of Endearment,eng,4.15,21352,21782,289,213,665,3749,8234,8921,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170617268l/63461.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4556,84142,17332310,613039,38,074990741X,9780749907420.0,Sherrilyn Kenyon,2004.0,Kiss of the Night,\"Kiss of the Night (Dark-Hunter, #4)\",eng,4.24,21022,36505,1100,137,873,5845,12830,16820,https://images.gr-assets.com/books/1348682795l/84142.jpg,https://images.gr-assets.com/books/1348682795s/84142.jpg\n4557,474634,474634,1288038,45,552772275,9780552772270.0,Madeleine Wickham,1999.0,The Wedding Girl,The Wedding Girl,eng,3.47,20501,22944,924,878,2717,8284,6777,4288,https://images.gr-assets.com/books/1320539465l/474634.jpg,https://images.gr-assets.com/books/1320539465s/474634.jpg\n4559,8069535,8069535,12769820,23,1408810441,9781408810450.0,Carrie Jones,2010.0,Entice,\"Entice (Need, #3)\",en-GB,4.03,28584,29382,1231,598,1718,6219,8616,12231,https://images.gr-assets.com/books/1305547585l/8069535.jpg,https://images.gr-assets.com/books/1305547585s/8069535.jpg\n4560,3764,3764,2918888,132,142002070,9780142002070.0,Ian Fleming,1957.0,\"From Russia, with Love\",\"From Russia With Love (James Bond, #5)\",eng,3.88,19802,22430,860,266,1049,5992,8834,6289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440169210l/3764._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4561,24731,24731,1267673,9,014023828X,9780140238280.0,T.C. Boyle,1995.0,The Tortilla Curtain,The Tortilla Curtain,eng,3.64,20921,22620,2636,1006,2225,5792,8425,5172,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208754l/24731.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4562,6368611,6368611,6556073,19,61659258,9780061659260.0,Melissa Marr,2011.0,Darkest Mercy,\"Darkest Mercy (Wicked Lovely, #5)\",en-US,4.11,29069,29977,1552,525,1459,5633,9039,13321,https://images.gr-assets.com/books/1278717537l/6368611.jpg,https://images.gr-assets.com/books/1278717537s/6368611.jpg\n4563,27209486,27209486,47250967,22,159463467X,9781594634670.0,Emma Straub,2016.0,Modern Lovers,Modern Lovers,,3.45,20453,24033,2283,624,2353,9389,8949,2718,https://images.gr-assets.com/books/1458657735l/27209486.jpg,https://images.gr-assets.com/books/1458657735s/27209486.jpg\n4564,13624367,13624367,19228205,9,,,R.L. Mathewson,2012.0,\"Checkmate (A Neighbor from Hell, #3)\",\"Checkmate (Neighbor from Hell, #3)\",eng,4.15,38343,41653,1961,496,1545,6909,14871,17832,https://images.gr-assets.com/books/1406585363l/13624367.jpg,https://images.gr-assets.com/books/1406585363s/13624367.jpg\n4565,34534,34534,1179689,75,006001234X,9780060012340.0,Terry Pratchett,2001.0,The Amazing Maurice and His Educated Rodents ,\"The Amazing Maurice and His Educated Rodents (Discworld, #28)\",eng,4.04,24279,29463,1145,182,1080,6461,11448,10292,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168566225l/34534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4566,771332,771332,757389,31,195067142,9780195067150.0,\"Eugene B. Sledge, Paul Fussell\",1981.0,With The Old Breed: At Peleliu And Okinawa,With the Old Breed: At Peleliu and Okinawa,en-US,4.4,16952,20960,1232,236,390,2032,6502,11800,https://images.gr-assets.com/books/1297640051l/771332.jpg,https://images.gr-assets.com/books/1297640051s/771332.jpg\n4567,42369,42369,1000219,31,152052607,9780152052610.0,\"Eleanor Estes, Louis Slobodkin\",1944.0,The Hundred Dresses,The Hundred Dresses,eng,4.07,26136,27116,1983,428,1288,5319,8907,11174,https://images.gr-assets.com/books/1476941110l/42369.jpg,https://images.gr-assets.com/books/1476941110s/42369.jpg\n4568,13481275,13481275,19014102,33,125001980X,9781250019810.0,Sarah Addison Allen,2014.0,Lost Lake,\"Lost Lake (Lost Lake, #1)\",eng,3.85,24271,26917,4104,351,1454,7115,10971,7026,https://images.gr-assets.com/books/1455574760l/13481275.jpg,https://images.gr-assets.com/books/1455574760s/13481275.jpg\n4569,18244799,25208536,25693920,47,,,Meredith Wild,2013.0,Hardwired,\"Hardwired (Hacker, #1)\",eng,4.07,9235,28742,2003,544,1404,5155,9914,11725,https://images.gr-assets.com/books/1374851880l/18244799.jpg,https://images.gr-assets.com/books/1374851880s/18244799.jpg\n4570,15705011,15705011,21367527,44,525952993,9780525952990.0,Tracy Chevalier,2013.0,The Last Runaway,The Last Runaway,en-US,3.78,20997,24083,3436,309,1389,6719,10604,5062,https://images.gr-assets.com/books/1349448072l/15705011.jpg,https://images.gr-assets.com/books/1349448072s/15705011.jpg\n4571,345299,345299,3898719,33,553813145,9780553813140.0,Steven Erikson,2004.0,Midnight Tides,\"Midnight Tides (The Malazan Book of the Fallen, #5)\",eng,4.34,20725,23392,750,121,394,2715,8364,11798,https://images.gr-assets.com/books/1366996057l/345299.jpg,https://images.gr-assets.com/books/1366996057s/345299.jpg\n4572,17332969,17332969,24065011,51,316234478,9780316234470.0,Kass Morgan,2013.0,The 100,\"The 100 (The 100, #1)\",eng,3.56,26762,32930,4827,1350,3689,10288,10540,7063,https://images.gr-assets.com/books/1377012321l/17332969.jpg,https://images.gr-assets.com/books/1377012321s/17332969.jpg\n4573,9666812,9666812,13306097,51,312656270,9780312656270.0,Alexandra Adornetto,2011.0,Hades,\"Hades (Halo, #2)\",eng,3.97,27679,28626,1517,1090,2001,5536,7936,12063,https://images.gr-assets.com/books/1478985289l/9666812.jpg,https://images.gr-assets.com/books/1478985289s/9666812.jpg\n4574,156530,156530,1584087,16,1401202012,9781401202020.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr., Paul Chadwick\",2004.0,Y: The Last Man Vol. 3: One Small Step,\"Y: The Last Man, Vol. 3: One Small Step (Y: The Last Man, #3)\",eng,4.22,24954,25290,550,197,554,3789,9702,11048,https://images.gr-assets.com/books/1306252925l/156530.jpg,https://images.gr-assets.com/books/1306252925s/156530.jpg\n4575,867248,867248,650820,21,689831870,9780689831870.0,\"Karma Wilson, Jane Chapman\",2002.0,Bear Snores On,Bear Snores On,en-US,4.25,24556,24814,604,275,735,4007,7408,12389,https://images.gr-assets.com/books/1344390790l/867248.jpg,https://images.gr-assets.com/books/1344390790s/867248.jpg\n4576,30253864,30253864,50723245,23,425285170,9780425285180.0,Lauren Graham,2016.0,\"Talking as Fast as I Can: From Gilmore Girls to Gilmore Girls, and Everything in Between\",\"Talking as Fast as I Can: From Gilmore Girls to Gilmore Girls, and Everything in Between\",eng,4.04,30471,34247,5022,157,1125,7307,14372,11286,https://images.gr-assets.com/books/1492797634l/30253864.jpg,https://images.gr-assets.com/books/1492797634s/30253864.jpg\n4577,317282,317282,308098,21,374349460,9780374349460.0,Gabrielle Zevin,2007.0,Memoirs of a Teenage Amnesiac,Memoirs of a Teenage Amnesiac,en-US,3.7,28373,30640,2446,650,2763,9095,10844,7288,https://images.gr-assets.com/books/1317793286l/317282.jpg,https://images.gr-assets.com/books/1317793286s/317282.jpg\n4578,7983,7983,551326,31,142501522,9780142501530.0,\"Brian Jacques, Gary Chalk\",1992.0,Salamandastron,\"Salamandastron (Redwall, #5)\",en-US,4.05,23723,24566,249,152,750,5606,9264,8794,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924804l/7983.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4579,43805,43805,2926100,53,963192566,9780963192560.0,Anne Rice,1996.0,Servant of the Bones,Servant of the Bones,,3.7,24324,26001,408,653,2409,7964,8085,6890,https://images.gr-assets.com/books/1312931293l/43805.jpg,https://images.gr-assets.com/books/1312931293s/43805.jpg\n4580,283494,283494,275023,29,689868200,9780689868210.0,Holly Black,2007.0,Ironside: A Modern Faery's Tale,\"Ironside (Modern Faerie Tales, #3)\",,4.04,29416,30567,903,379,1457,6461,10409,11861,https://images.gr-assets.com/books/1354844906l/283494.jpg,https://images.gr-assets.com/books/1354844906s/283494.jpg\n4581,4932435,4932435,4998084,34,670072818,9780670072810.0,Melina Marchetta,2008.0,Finnikin of the Rock,\"Finnikin of the Rock (Lumatere Chronicles, #1)\",eng,3.93,29401,33187,4036,1635,2131,5900,10740,12781,https://images.gr-assets.com/books/1346007613l/4932435.jpg,https://images.gr-assets.com/books/1346007613s/4932435.jpg\n4582,32650,32650,3140534,464,037575718X,9780375757180.0,\"Thomas Hardy, Alexander Theroux\",1878.0,The Return of the Native,The Return of the Native  ,eng,3.84,24957,27643,1083,826,1803,6465,10358,8191,https://images.gr-assets.com/books/1403182613l/32650.jpg,https://images.gr-assets.com/books/1403182613s/32650.jpg\n4583,11660590,11660590,16605490,57,62094734,9780062094740.0,\"Michael Crichton, Richard   Preston\",2011.0,Micro,Micro,eng,3.38,19460,23729,2791,1343,3309,8010,7121,3946,https://images.gr-assets.com/books/1314593813l/11660590.jpg,https://images.gr-assets.com/books/1314593813s/11660590.jpg\n4584,10037,10037,1006752,21,679725164,9780679725170.0,\"Jean-Paul Sartre, Stuart Gilbert, Lionel Abel\",1947.0,No Exit and Three Other Plays,No Exit and Three Other Plays,eng,4.09,21841,22459,572,192,797,4309,8746,8415,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348307264l/10037.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4585,46656,46656,4284,30,1857237366,9781857237370.0,Greg Bear,1998.0,\"Foundation and Chaos (Second Foundation Trilogy, #2)\",Foundation and Chaos (Second Foundation Trilogy #2),eng,4.14,21137,21582,69,257,704,4006,7301,9314,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348674606l/46656.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4586,3832,3832,625423,88,743219570,9780743219570.0,P.D. James,1962.0,Cover Her Face,Cover Her Face (Adam Dalgliesh #1),eng,3.94,22941,24819,889,325,1009,5991,9984,7510,https://images.gr-assets.com/books/1298412294l/3832.jpg,https://images.gr-assets.com/books/1298412294s/3832.jpg\n4587,8581936,8581936,13451137,27,61985864,9780061985870.0,Kiersten White,2011.0,Supernaturally,\"Supernaturally (Paranormalcy, #2)\",en-US,3.92,32807,33985,2251,603,2132,8452,10977,11821,https://images.gr-assets.com/books/1371926956l/8581936.jpg,https://images.gr-assets.com/books/1371926956s/8581936.jpg\n4588,92855,92855,1245597,50,1857236556,9781857236550.0,Terry Brooks,1996.0,First King of Shannara,\"First King of Shannara (The Original Shannara Trilogy, #0)\",eng,3.94,22623,24834,408,450,1313,5888,8773,8410,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171251172l/92855.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4589,7945049,7945049,11453665,35,312377045,9780312377040.0,Louise Penny,2010.0,Bury Your Dead,\"Bury Your Dead (Chief Inspector Armand Gamache, #6)\",en-US,4.33,22391,26552,2760,152,403,2813,10219,12965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439067695l/7945049._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4590,84785,84785,1128040,81,316018953,9780316018950.0,Michael Connelly,2007.0,The Overlook,\"The Overlook (Harry Bosch, #13; Harry Bosch Universe, #15)\",eng,3.91,21154,25578,1331,138,995,6682,11097,6666,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442875969l/84785._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4591,6604887,6604887,6798790,9,,,منى المرشود,2007.0,أنت لي,أنت لي,ara,4.03,15108,18259,2434,1105,1308,2629,4143,9074,https://images.gr-assets.com/books/1247238391l/6604887.jpg,https://images.gr-assets.com/books/1247238391s/6604887.jpg\n4592,90192,90192,1483780,636,393924769,9780393924760.0,\"Nathaniel Hawthorne, Robert S. Levine\",1851.0,The House of the Seven Gables,The House of the Seven Gables,eng,3.45,23797,28715,1651,1373,3640,9601,8899,5202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348244293l/90192.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4593,295086,295086,286335,49,60525630,9780060525640.0,Erin Hunter,2005.0,Rising storm,\"Rising Storm (Warriors, #4)\",eng,4.38,27260,28724,811,137,583,3686,8137,16181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189624l/295086.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4594,31845516,31845516,48126510,20,1250128544,9781250128550.0,Glennon Doyle Melton,2016.0,Love Warrior,Love Warrior,en-US,4.1,20094,26061,3190,548,1293,4361,8772,11087,https://images.gr-assets.com/books/1473164102l/31845516.jpg,https://images.gr-assets.com/books/1473164102s/31845516.jpg\n4595,6449551,6449551,6639657,39,312377037,9780312377040.0,Louise Penny,2009.0,The Brutal Telling,\"The Brutal Telling (Chief Inspector Armand Gamache, #5)\",en-US,4.23,21381,25133,2354,108,447,3338,10824,10416,https://images.gr-assets.com/books/1327952311l/6449551.jpg,https://images.gr-assets.com/books/1327952311s/6449551.jpg\n4596,11337912,11337912,16266538,21,1451656505,9781451656500.0,Richard Paul Evans,2011.0,The Prisoner of Cell 25,\"The Prisoner of Cell 25 (Michael Vey, #1)\",,4.19,24672,26165,3804,335,878,4137,8941,11874,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348544498l/11337912.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4597,318742,318742,1137159,387,014018998X,9780140189990.0,\"W.E.B. Du Bois, Donald B. Gibson, Monica W. Elbert\",1903.0,The Souls of Black Folk,The Souls of Black Folk,,4.24,20355,23970,849,256,673,3575,7950,11516,https://images.gr-assets.com/books/1309202855l/318742.jpg,https://images.gr-assets.com/books/1309202855s/318742.jpg\n4598,45220,45220,3585,64,451160312,9780451160320.0,\"Hannah  Green, Joanne Greenberg\",1964.0,I Never Promised You a Rose Garden,I Never Promised You a Rose Garden,eng,3.85,22420,24924,727,382,1556,6837,8766,7383,https://images.gr-assets.com/books/1309209871l/45220.jpg,https://images.gr-assets.com/books/1309209871s/45220.jpg\n4599,8069828,8069828,12770588,16,1423144333,9781423144340.0,Cinda Williams Chima,2012.0,The Crimson Crown,\"The Crimson Crown (Seven Realms, #4)\",eng,4.48,27279,28763,2208,216,415,2352,8063,17717,https://images.gr-assets.com/books/1345041697l/8069828.jpg,https://images.gr-assets.com/books/1345041697s/8069828.jpg\n4600,6080822,6080822,6257526,30,316043893,9780316043890.0,Elin Hilderbrand,2009.0,The Castaways,The Castaways,,3.69,21491,23515,1889,395,1837,7384,8949,4950,https://images.gr-assets.com/books/1289792088l/6080822.jpg,https://images.gr-assets.com/books/1289792088s/6080822.jpg\n4602,275,275,1009849,148,375700528,9780375700520.0,\"Marguerite Duras, Barbara Bray, Maxine Hong Kingston\",1984.0,L'Amant,The Lover,eng,3.76,18947,24857,1684,656,2197,6541,8632,6831,https://images.gr-assets.com/books/1423329337l/275.jpg,https://images.gr-assets.com/books/1423329337s/275.jpg\n4603,13350,13350,836044,18,375836586,9780375836590.0,Christopher Paolini,2005.0,\"Eragon & Eldest (Inheritance, #1-2)\",\"Eragon & Eldest (Inheritance, #1-2)\",,4.27,21181,21816,343,507,864,2917,5518,12010,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389897828l/13350.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4604,16033909,16033909,21805191,50,425267083,9780425267080.0,Maya Banks,2013.0,Burn,\"Burn (Breathless, #3)\",eng,4.01,30693,33900,1781,698,2078,6831,11018,13275,https://images.gr-assets.com/books/1359944814l/16033909.jpg,https://images.gr-assets.com/books/1359944814s/16033909.jpg\n4605,3690,3690,1036817,135,142437301,9780142437310.0,\"Graham Greene, John Updike\",1940.0,The Power and the Glory,The Power and the Glory,eng,3.99,21315,23229,1499,285,1118,4903,9203,7720,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210459l/3690.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4606,24790,24790,419162,106,849759388X,9788497593880.0,Isabel Allende,1994.0,Paula,Paula,spa,4.07,19852,23529,1447,344,1120,4491,8073,9501,https://images.gr-assets.com/books/1316284499l/24790.jpg,https://images.gr-assets.com/books/1316284499s/24790.jpg\n4607,20575411,20575411,26208371,47,374187614,9780374187610.0,Marilynne Robinson,2014.0,Lila,\"Lila (Gilead, #3)\",eng,3.9,14894,20731,3208,562,1587,4282,7290,7010,https://images.gr-assets.com/books/1393645345l/20575411.jpg,https://images.gr-assets.com/books/1393645345s/20575411.jpg\n4609,28940,28940,29415,56,312150601,9780312150600.0,Kate Atkinson,1995.0,Behind the Scenes at the Museum,Behind the Scenes at the Museum,,3.94,21844,24884,2085,488,1317,5296,9901,7882,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436172919l/28940._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4610,26192646,26192646,43081207,27,1101875941,9781101875940.0,Stephanie Danler,2016.0,Sweetbitter,Sweetbitter,eng,3.28,21709,25479,3423,1614,4256,8549,7467,3593,https://images.gr-assets.com/books/1448999786l/26192646.jpg,https://images.gr-assets.com/books/1448999786s/26192646.jpg\n4611,110384,110384,659482,47,380820846,9780380820850.0,Julia Quinn,2002.0,\"Romancing Mister Bridgerton (Bridgertons, #4)\",\"Romancing Mister Bridgerton (Bridgertons, #4)\",eng,4.2,31652,34709,1640,235,953,5880,12372,15269,https://images.gr-assets.com/books/1274211494l/110384.jpg,https://images.gr-assets.com/books/1274211494s/110384.jpg\n4612,89755,89755,1017370,24,152057803,9780152057800.0,\"Edward Bloor, Danny De Vito\",1997.0,Tangerine,Tangerine,eng,3.61,23053,24062,2269,1466,2468,6162,7873,6093,https://images.gr-assets.com/books/1328875988l/89755.jpg,https://images.gr-assets.com/books/1328875988s/89755.jpg\n4613,33547,33547,804298,43,727860992,9780727861000.0,Richard Matheson,1971.0,Hell House,Hell House,eng,3.81,22644,25891,1503,670,2000,6581,8945,7695,https://images.gr-assets.com/books/1384259876l/33547.jpg,https://images.gr-assets.com/books/1384259876s/33547.jpg\n4614,3648,3648,3255539,45,030726419X,9780307264190.0,Claire Messud,2006.0,The Emperor's Children,The Emperor's Children,,2.93,15362,17593,2748,1958,4099,6121,4059,1356,https://images.gr-assets.com/books/1320497348l/3648.jpg,https://images.gr-assets.com/books/1320497348s/3648.jpg\n4615,23281906,23281906,42819811,58,399170863,9780399170870.0,Nora Roberts,2014.0,The Liar,The Liar,eng,3.95,16326,24608,2229,506,1422,5164,9120,8396,https://images.gr-assets.com/books/1415980586l/23281906.jpg,https://images.gr-assets.com/books/1415980586s/23281906.jpg\n4616,32530,32530,186943,40,553578685,9780553578680.0,Lisa Gardner,2001.0,The Third Victim,\"The Third Victim (Quincy & Rainie, #2)\",en-US,4.16,21790,22898,494,100,448,4156,9279,8915,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388625989l/32530.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4617,29154543,29154543,49404119,34,316225940,9780316225950.0,Michael Connelly,2016.0,The Wrong Side of Goodbye,\"The Wrong Side of Goodbye (Harry Bosch, #21; Harry Bosch Universe, #26)\",eng,4.36,13351,28922,2543,166,393,2689,11368,14306,https://images.gr-assets.com/books/1457022523l/29154543.jpg,https://images.gr-assets.com/books/1457022523s/29154543.jpg\n4618,8045080,8045080,15254849,48,230706150,9780230706160.0,David Baldacci,2010.0,Hell's Corner ,\"Hell's Corner (Camel Club, #5)\",eng,4.1,19003,23793,1541,177,691,4347,10020,8558,https://images.gr-assets.com/books/1330171863l/8045080.jpg,https://images.gr-assets.com/books/1330171863s/8045080.jpg\n4619,114206,114206,348392,63,515136530,9780515136530.0,Nora Roberts,2003.0,\"Key of Valor (Key Trilogy, #3)\",\"Key of Valor (Key Trilogy, #3)\",en-US,4.1,27228,28735,639,161,977,6081,10190,11326,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442003703l/114206._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4620,781182,781182,1011004,31,60536357,9780060536350.0,\"Bryan Burrough, John Helyar\",1990.0,Barbarians at the Gate: The Fall of RJR Nabisco,Barbarians at the Gate: The Fall of RJR Nabisco,en-US,4.22,19176,20547,548,247,544,2941,7599,9216,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442897076l/781182._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4621,20706284,20706284,40026175,35,316246654,9780316246650.0,Ann Leckie,2014.0,Ancillary Sword,\"Ancillary Sword (Imperial Radch, #2)\",eng,4.03,19265,24057,2340,274,905,4489,10581,7808,https://images.gr-assets.com/books/1413464739l/20706284.jpg,https://images.gr-assets.com/books/1413464739s/20706284.jpg\n4622,17689,17689,2206656,2,082221900X,9780822219000.0,\"David Fishelson, Aaron Leichter, Max Brod, Franz Kafka\",2003.0,Franz Kafka's The Castle,Franz Kafka's The Castle (Dramatization),eng,4.07,22321,22323,223,322,873,4346,8146,8636,https://images.gr-assets.com/books/1327873352l/17689.jpg,https://images.gr-assets.com/books/1327873352s/17689.jpg\n4623,18108877,18108877,21990424,24,,,Rysa Walker,2012.0,Time's Twisted Arrow ,\"Timebound (The Chronos Files, #1)\",eng,3.87,22031,22691,2232,428,1266,5494,9196,6307,https://images.gr-assets.com/books/1371864811l/18108877.jpg,https://images.gr-assets.com/books/1371864811s/18108877.jpg\n4624,9591398,9591398,6749837,42,312649614,9780312649620.0,\"Catherynne M. Valente, Ana Juan\",2011.0,The Girl Who Circumnavigated Fairyland in a Ship of Her Own Making,\"The Girl Who Circumnavigated Fairyland in a Ship of Her Own Making (Fairyland, #1)\",eng,3.97,25551,28746,4718,1156,1771,5108,9436,11275,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179691l/9591398.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4626,14781501,14781501,20434567,44,316224138,9780316224130.0,\"James Patterson, Marshall Karp\",2012.0,NYPD Red,\"NYPD Red (NYPD Red, #1)\",,3.9,19252,24953,1906,437,1262,6138,9555,7561,https://images.gr-assets.com/books/1379898888l/14781501.jpg,https://images.gr-assets.com/books/1379898888s/14781501.jpg\n4627,30068,30068,1217097,66,446576980,9780446576990.0,\"Douglas Preston, Lincoln Child\",2006.0,The Book of the Dead,\"The Book of the Dead (Pendergast, #7; Diogenes, #3)\",en-US,4.13,22985,25369,944,151,717,4430,10410,9661,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441846702l/30068._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4628,14897790,14897790,20551935,106,3847905171,9783847905170.0,Timur Vermes,2012.0,Er ist wieder da,Er ist wieder da,ger,3.44,9472,23050,2692,1026,2906,7633,7894,3591,https://images.gr-assets.com/books/1338925378l/14897790.jpg,https://images.gr-assets.com/books/1338925378s/14897790.jpg\n4629,12617758,12617758,17643316,45,307956350,9780307956350.0,Chris Pavone,2012.0,The Expats,The Expats,eng,3.42,20548,24618,3534,788,2989,8970,8786,3085,https://images.gr-assets.com/books/1325641431l/12617758.jpg,https://images.gr-assets.com/books/1325641431s/12617758.jpg\n4630,128752,128752,1389389,76,074345300X,9780743453000.0,Kathy Reichs,2003.0,Bare Bones,\"Bare Bones (Temperance Brennan, #6)\",en-US,3.95,26419,28777,767,265,973,7194,11713,8632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440033047l/128752._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4631,16131025,16131025,21956558,33,316099783,9780316099780.0,Elin Hilderbrand,2013.0,Beautiful Day,Beautiful Day,en-US,3.75,19563,22173,2230,307,1356,6691,9050,4769,https://images.gr-assets.com/books/1352225899l/16131025.jpg,https://images.gr-assets.com/books/1352225899s/16131025.jpg\n4632,85958,85958,709790,31,842329293,9780842329290.0,\"Tim LaHaye, Jerry B. Jenkins\",2000.0,The Indwelling: The Beast Takes Possession,\"The Indwelling (Left Behind, #7)\",en-US,3.97,21855,22956,292,521,1355,5016,7399,8665,https://images.gr-assets.com/books/1406508233l/85958.jpg,https://images.gr-assets.com/books/1406508233s/85958.jpg\n4633,206682,206682,2283550,68,385518331,9780385518340.0,Jeff Lindsay,2006.0,Dexter in the Dark,\"Dexter in the Dark (Dexter, #3)\",en-US,3.49,22484,25629,1656,986,3302,8513,7839,4989,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1527405895l/206682.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4634,16634,16634,2959456,163,312278497,9780312278500.0,\"Hermann Hesse, Richard Winston, Clara Winston, Theodore Ziolkowski\",1943.0,Das Glasperlenspiel,The Glass Bead Game,eng,4.11,20198,23461,1069,484,1234,3919,7306,10518,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922806l/16634.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4635,13366259,13366259,18595149,49,316219363,9780316219360.0,Kevin Powers,2012.0,The Yellow Birds,The Yellow Birds,eng,3.74,17858,20074,2982,508,1627,5331,7694,4914,https://images.gr-assets.com/books/1346188518l/13366259.jpg,https://images.gr-assets.com/books/1346188518s/13366259.jpg\n4636,85418,85418,14596649,92,451213203,9780451213200.0,Harlan Coben,2004.0,Just One Look,Just One Look,eng,4.0,22664,25109,1386,146,791,5453,11207,7512,https://images.gr-assets.com/books/1309286625l/85418.jpg,https://images.gr-assets.com/books/1309286625s/85418.jpg\n4637,16117804,16117804,21936139,15,,,Katie Ashley,2013.0,The Proposal,\"The Proposal (The Proposition, #2)\",eng,4.04,34169,34669,1738,456,1562,6905,12937,12809,https://images.gr-assets.com/books/1358298141l/16117804.jpg,https://images.gr-assets.com/books/1358298141s/16117804.jpg\n4638,48132,48132,76682,138,142004413,9780142004420.0,\"Gerald Durrell, Helma Lapiņa\",1956.0,My Family and Other Animals,\"My Family and Other Animals (Corfu Trilogy, #1)\",en-US,4.27,20057,23944,1892,259,739,3206,7909,11831,https://images.gr-assets.com/books/1327885239l/48132.jpg,https://images.gr-assets.com/books/1327885239s/48132.jpg\n4639,174403,174403,178518,43,451212452,9780451212450.0,Tawni O'Dell,1999.0,Back Roads,Back Roads,en-US,3.72,21022,22013,932,535,1631,6484,8078,5285,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442816374l/174403.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4640,11449,11449,346642,72,679723692,9780679723690.0,Raymond Carver,1983.0,Cathedral,Cathedral,eng,4.3,18378,20952,1031,196,540,2527,7278,10411,https://images.gr-assets.com/books/1421615759l/11449.jpg,https://images.gr-assets.com/books/1421615759s/11449.jpg\n4641,30065028,29363501,50435175,49,,,J.K. Rowling,2016.0,Fantastic Beasts and Where to Find Them: The Original Screenplay,Fantastic Beasts and Where to Find Them: The Original Screenplay,eng,4.41,18290,42210,4692,323,721,4257,13024,23885,https://images.gr-assets.com/books/1476913365l/30065028.jpg,https://images.gr-assets.com/books/1476913365s/30065028.jpg\n4643,1999475,1999475,2003288,18,785213066,9780785213060.0,Donald Miller,2009.0,A Million Miles in a Thousand Years: What I Learned While Editing My Life,A Million Miles in a Thousand Years: What I Learned While Editing My Life,en-US,4.18,18963,20299,1868,249,759,3148,7143,9000,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440864796l/1999475._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4644,7992995,7992995,14936811,51,670063118,9780670063120.0,Alison Goodman,2011.0,Eona: The Last Dragoneye,\"Eona: The Last Dragoneye (Eon, #2)\",eng,4.12,29756,31455,2266,521,1455,5496,10324,13659,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388543903l/7992995.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4645,14570,14570,2905864,292,486455599,9780486455590.0,Louisa May Alcott,1874.0,Eight Cousins,\"Eight Cousins (Eight Cousins, #1)\",eng,4.02,27612,29751,832,535,1283,6430,10402,11101,https://images.gr-assets.com/books/1328864060l/14570.jpg,https://images.gr-assets.com/books/1328864060s/14570.jpg\n4646,590552,590552,355618,24,006443253X,9780064432540.0,Maurice Sendak,1962.0,Chicken Soup with Rice: A Book of Months,Chicken Soup with Rice: A Book of Months (The Nutshell Library),,4.25,25523,25701,386,301,839,4244,6966,13351,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388259279l/590552.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4647,64862,64862,62954,52,425203867,9780425203870.0,Sue Grafton,2004.0,R is for Ricochet,\"R is for Ricochet (Kinsey Millhone, #18)\",eng,3.96,24563,26079,631,160,788,6793,10462,7876,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265730l/64862.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4648,11947156,11947156,16908743,15,,,Quinn Loftis,2011.0,Prince of Wolves ,\"Prince of Wolves (The Grey Wolves, #1)\",eng,4.06,30137,30560,2474,1432,1934,4764,7699,14731,https://images.gr-assets.com/books/1327878769l/11947156.jpg,https://images.gr-assets.com/books/1327878769s/11947156.jpg\n4649,99296,99296,301388,16,006000150X,9780060001510.0,\"Doreen Cronin, Harry Bliss\",1996.0,Diary of a Worm,Diary of a Worm,eng,4.19,23320,23423,691,322,987,4006,6599,11509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347567458l/99296.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4650,222576,222576,2887072,58,1416949674,9781416949670.0,Susan Cooper,1975.0,The Grey King,\"The Grey King (The Dark Is Rising, #4)\",eng,4.18,28027,29999,678,266,798,5218,10585,13132,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390358853l/222576.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4652,15981894,15981894,21734801,13,,9781300160300.0,Emily Snow,2012.0,Devoured,\"Devoured (Devoured, #1)\",eng,3.94,33961,35577,1788,697,2153,7867,12854,12006,https://images.gr-assets.com/books/1347063810l/15981894.jpg,https://images.gr-assets.com/books/1347063810s/15981894.jpg\n4654,20697435,20697435,28178740,43,055341884X,9780553418840.0,Michel Faber,2014.0,The Book of Strange New Things,The Book of Strange New Things,eng,3.66,15189,20881,3347,762,2021,5503,7777,4818,https://images.gr-assets.com/books/1394824754l/20697435.jpg,https://images.gr-assets.com/books/1394824754s/20697435.jpg\n4655,9266776,9266776,14147627,5,61921262,9780061921260.0,Claire LaZebnik,2011.0,Epic Fail,Epic Fail,en-US,3.73,29207,30179,2201,817,2634,8930,9261,8537,https://images.gr-assets.com/books/1293626043l/9266776.jpg,https://images.gr-assets.com/books/1293626043s/9266776.jpg\n4656,30240,30240,3341361,52,345478169,9780345478160.0,Laurell K. Hamilton,2002.0,\"A Caress of Twilight (Merry Gentry, #2)\",\"A Caress of Twilight (Merry Gentry, #2)\",en-US,4.05,29980,33314,650,465,1763,6852,10866,13368,https://images.gr-assets.com/books/1327877187l/30240.jpg,https://images.gr-assets.com/books/1327877187s/30240.jpg\n4657,376514,376514,1977427,53,743482972,9780743482970.0,Richard Condon,1959.0,The Manchurian Candidate,The Manchurian Candidate (Movie Tie-In Edition),en-US,4.09,19205,19871,295,218,636,3830,7644,7543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1411320965l/376514.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4658,37737,37737,222372,54,425193829,9780425193820.0,Judy Blume,1990.0,Fudge-a-Mania,\"Fudge-a-Mania (Fudge, #4)\",eng,3.99,23833,25066,544,312,1210,6238,8064,9242,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922685l/37737.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4659,11946245,11946245,15380149,31,316101842,9780316101840.0,James Patterson,2012.0,Nevermore,\"Nevermore (Maximum Ride, #8)\",eng,3.88,27982,29527,2728,1759,2707,5435,7086,12540,https://images.gr-assets.com/books/1328150920l/11946245.jpg,https://images.gr-assets.com/books/1328150920s/11946245.jpg\n4660,12540,12540,901072,12,1400079098,9781400079090.0,Anne Lamott,1993.0,Operating Instructions: A Journal of My Son's First Year,Operating Instructions: A Journal of My Son's First Year,eng,4.18,19466,20063,1631,218,658,3173,7178,8836,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924319l/12540.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4661,61663,61663,1816628,10,345376595,9780345376600.0,\"Carl Sagan, Ann Druyan\",1994.0,Pale Blue Dot: A Vision of the Human Future in Space,Pale Blue Dot: A Vision of the Human Future in Space,eng,4.32,19834,20602,661,380,517,2206,6529,10970,https://images.gr-assets.com/books/1500191671l/61663.jpg,https://images.gr-assets.com/books/1500191671s/61663.jpg\n4662,17449417,17449417,24333997,22,,,Abbi Glines,2013.0,\"Simple Perfection (Perfection, #2)\",\"Simple Perfection (Rosemary Beach, #6; Perfection, #2)\",eng,4.25,35952,37082,2680,254,989,5345,13011,17483,https://images.gr-assets.com/books/1415743194l/17449417.jpg,https://images.gr-assets.com/books/1415743194s/17449417.jpg\n4663,64081,64081,2827103,19,310266300,9780310266300.0,Shane Claiborne,2006.0,The Irresistible Revolution: Living as an Ordinary Radical,The Irresistible Revolution: Living as an Ordinary Radical,,4.07,18566,19186,953,409,977,3435,6486,7879,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432916833l/64081._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4664,2251306,2251306,2257186,43,979777704,9780979777710.0,John Medina,2008.0,\"Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and School\",\"Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and School\",,4.0,19172,21882,1362,294,1037,4683,8266,7602,https://images.gr-assets.com/books/1328763686l/2251306.jpg,https://images.gr-assets.com/books/1328763686s/2251306.jpg\n4665,215539,215539,2917519,28,1416914161,9781416914170.0,D.J. MacHale,2007.0,The Pilgrims of Rayne,\"The Pilgrims of Rayne (Pendragon, #8)\",,4.14,21540,22047,288,282,886,4024,7089,9766,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432097761l/215539._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4666,7347109,7347109,9089530,65,1439165645,9781439165640.0,Richard C. Morais,2008.0,The Hundred-Foot Journey,The Hundred-Foot Journey,en-US,3.54,17275,22066,3358,484,2229,7572,8439,3342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442960146l/7347109._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4667,8435445,8435445,13298975,32,399250573,9780399250580.0,Anthony Horowitz,2011.0,Scorpia Rising,Scorpia Rising (Alex Rider #9),eng,4.29,23268,24512,984,265,669,3360,7501,12717,https://images.gr-assets.com/books/1417405144l/8435445.jpg,https://images.gr-assets.com/books/1417405144s/8435445.jpg\n4668,7150178,7150178,7415362,41,61944343,9780061944340.0,Lincoln Peirce,2010.0,Big Nate: In a Class By Himself,\"Big Nate: In a Class by Himself (Big Nate Novels, #1)\",en-US,4.16,20612,21541,947,602,1105,3563,5178,11093,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442288527l/7150178._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4669,3474186,3474186,3515492,54,61232920,9780061232920.0,Meg Cabot,2008.0,Forever Princess,\"Forever Princess (The Princess Diaries, #10)\",,4.08,28127,29733,1018,436,1474,6210,8697,12916,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347807104l/3474186.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4670,519112,519112,466,45,688156819,9780688156820.0,Tim Burton,1997.0,The Melancholy Death of Oyster Boy and Other Stories,The Melancholy Death of Oyster Boy and Other Stories,en-US,4.13,19773,24907,1558,297,1019,4453,8478,10660,https://images.gr-assets.com/books/1338646527l/519112.jpg,https://images.gr-assets.com/books/1338646527s/519112.jpg\n4671,5186,5186,459447,29,037570504X,9780375705040.0,Edwidge Danticat,1994.0,\"Breath, Eyes, Memory \",\"Breath, Eyes, Memory\",eng,3.86,22123,22855,1068,319,1334,5970,8769,6463,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423684958l/5186.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4672,12395,12395,1551463,169,811216543,9780811216550.0,\"Louis-Ferdinand Céline, Ralph Manheim, William T. Vollmann\",1932.0,Voyage au bout de la nuit,Journey to the End of the Night,eng,4.25,17388,22613,1196,384,895,3016,6807,11511,https://images.gr-assets.com/books/1462934409l/12395.jpg,https://images.gr-assets.com/books/1462934409s/12395.jpg\n4673,4527502,4527502,4576703,69,,,Michael Connelly,2009.0,The Scarecrow ,\"The Scarecrow (Jack McEvoy, #2)\",eng,4.03,22084,26074,1674,145,764,5633,11171,8361,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348416548l/4527502.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4674,16130537,16130537,21955852,21,1476727910,9781476727910.0,Matt Haig,2013.0,The Humans,The Humans,eng,4.07,16955,24334,3354,271,1016,4416,9664,8967,https://images.gr-assets.com/books/1353739654l/16130537.jpg,https://images.gr-assets.com/books/1353739654s/16130537.jpg\n4675,6566616,6566616,6759560,43,399250565,9780399250570.0,Anthony Horowitz,2009.0,Crocodile Tears,\"Crocodile Tears (Alex Rider, #8)\",eng,4.18,23068,24561,759,204,804,4240,8379,10934,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284725l/6566616.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4676,3692091,3692091,3735566,5,,9789771754960.0,Essam Youssef,2008.0,1/4 جرام,1/4 جرام,ara,4.02,15919,16725,1895,723,1012,2763,4996,7231,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215584856l/3692091.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4677,49158,15797975,1491732,19,1590523172,9781590523180.0,Shaunti Feldhahn,2004.0,For Women Only: What You Need to Know about the Inner Lives of Men,For Women Only: What You Need to Know about the Inner Lives of Men,en-US,4.06,15385,20021,878,448,1090,3841,6139,8503,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1532716026l/49158.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4679,38568,38568,2621331,34,60773758,9780060773760.0,Lynsay Sands,2005.0,A Quick Bite,A Quick Bite (Argeneau #1),en-US,3.91,31557,33441,1366,1033,2379,7487,10154,12388,https://images.gr-assets.com/books/1410129015l/38568.jpg,https://images.gr-assets.com/books/1410129015s/38568.jpg\n4680,248682,248682,348381,68,739439065,9780739439070.0,Nora Roberts,2003.0,Key of Knowledge,\"Key of Knowledge (Key Trilogy, #2)\",eng,4.09,26416,28888,594,158,975,6098,10514,11143,https://images.gr-assets.com/books/1282136458l/248682.jpg,https://images.gr-assets.com/books/1282136458s/248682.jpg\n4681,144790,144790,289833,54,312971230,9780312971240.0,Matthew Reilly,1998.0,Ice Station,\"Ice Station (Shane Schofield, #1)\",eng,4.1,20605,22466,966,420,895,3873,8034,9244,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185756l/144790.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4682,825508,825508,2627197,100,440217490,9780440217500.0,Ken Follett,1993.0,A Dangerous Fortune,A Dangerous Fortune,eng,3.99,18219,24291,1239,221,887,5260,10352,7571,https://images.gr-assets.com/books/1387637715l/825508.jpg,https://images.gr-assets.com/books/1387637715s/825508.jpg\n4683,27001,27001,1116054,48,143034359,9780143034350.0,Jasper Fforde,2003.0,The Well of Lost Plots,The Well of Lost Plots (Thursday Next #3),eng,4.09,28332,31822,1604,137,741,6322,13451,11171,https://images.gr-assets.com/books/1304713470l/27001.jpg,https://images.gr-assets.com/books/1304713470s/27001.jpg\n4684,25698,25698,1373762,513,553585975,9780553585970.0,Adam Smith,1776.0,An Inquiry into the Nature and Causes of the Wealth of Nations ,The Wealth of Nations,eng,3.87,17180,20550,667,365,1331,5253,7277,6324,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1567191193l/25698._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4685,12872236,12872236,18024855,64,61692042,9780061692050.0,Richard Ford,2012.0,Canada,Canada,eng,3.49,18396,21456,3213,885,2694,6618,7567,3692,https://images.gr-assets.com/books/1327927048l/12872236.jpg,https://images.gr-assets.com/books/1327927048s/12872236.jpg\n4686,6628,6628,2504943,30,143037234,9780143037230.0,Jasper Fforde,2005.0,The Big Over Easy,\"The Big Over Easy (Nursery Crime, #1)\",en-US,3.92,24870,27065,1986,417,1313,6292,10981,8062,https://images.gr-assets.com/books/1432412758l/6628.jpg,https://images.gr-assets.com/books/1432412758s/6628.jpg\n4687,519048,519048,2210660,54,689859376,9780689859370.0,\"Holly Black, Tony DiTerlizzi\",2000.0,The Seeing Stone,\"The Seeing Stone (The Spiderwick Chronicles, #2)\",eng,3.87,29213,30364,1070,270,1555,8870,10716,8953,https://images.gr-assets.com/books/1358701671l/519048.jpg,https://images.gr-assets.com/books/1358701671s/519048.jpg\n4688,542389,542389,42137,66,140284583,9780140284580.0,Antony Beevor,1998.0,\"Stalingrad: The Fateful Siege, 1942–1943\",\"Stalingrad: The Fateful Siege, 1942–1943\",eng,4.29,18920,20577,669,149,374,2508,7916,9630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348217283l/542389.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4689,6419566,6419566,6608714,7,1421532018,9781421532010.0,Kyousuke Motomi,2001.0,ビーストマスター 1,\"Beast Master, Vol. 1 (Beast Master, #1)\",en-US,4.21,21692,21738,238,599,1064,3337,4810,11928,https://images.gr-assets.com/books/1256593259l/6419566.jpg,https://images.gr-assets.com/books/1256593259s/6419566.jpg\n4690,191170,191170,2292855,29,743490096,9780743490090.0,\"Doreen Cronin, Betsy Lewin\",2002.0,\"Giggle, Giggle, Quack\",\"Giggle, Giggle, Quack\",en-US,4.19,22402,22766,351,264,836,4219,6418,11029,https://images.gr-assets.com/books/1408923126l/191170.jpg,https://images.gr-assets.com/books/1408923126s/191170.jpg\n4691,1624,1624,192528,54,865471185,9780865471180.0,Beryl Markham,1942.0,West with the Night,West with the Night,en-US,4.18,19738,21928,2226,268,712,3554,7631,9763,https://images.gr-assets.com/books/1368204688l/1624.jpg,https://images.gr-assets.com/books/1368204688s/1624.jpg\n4692,2475251,2475251,2482448,47,1594489866,9781594489860.0,Steven Galloway,2008.0,The Cellist of Sarajevo,The Cellist of Sarajevo,eng,4.02,20403,23981,3148,188,921,4789,10513,7570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442797420l/2475251._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4693,4066312,4066312,4113404,48,312351666,9780312351660.0,Lisa Kleypas,2009.0,Smooth Talking Stranger  (Travis Family #3) ,\"Smooth Talking Stranger (Travises, #3)\",eng,4.17,28858,30829,1535,291,998,5222,11128,13190,https://images.gr-assets.com/books/1388444124l/4066312.jpg,https://images.gr-assets.com/books/1388444124s/4066312.jpg\n4694,9972053,9972053,14866301,17,399157530,9780399157530.0,Betty White,2011.0,If You Ask Me: And of Course You Won't,If You Ask Me (And of Course You Won't),eng,3.65,22405,23426,2292,843,2269,7212,6985,6117,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348700186l/9972053.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4695,31862,31862,2342366,73,872204200,9780872204200.0,\"René Descartes, Donald A. Cress\",1637.0,Discours de la Méthode suivi de Méditations Métaphysiques,Discourse on Method and Meditations on First Philosophy,eng,3.67,20522,21289,306,651,1997,6288,7044,5309,https://images.gr-assets.com/books/1405624402l/31862.jpg,https://images.gr-assets.com/books/1405624402s/31862.jpg\n4696,5739373,5739373,5911024,51,399155686,9780399155680.0,Daniel Silva,2009.0,The Defector,\"The Defector (Gabriel Allon, #9)\",eng,4.28,18927,21361,761,118,373,2743,8298,9829,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442626527l/5739373._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4697,12758317,12758317,17893276,61,1451664125,9781451664130.0,John Irving,2012.0,In One Person,In One Person,,3.65,18561,21588,3137,724,1843,6109,8396,4516,https://images.gr-assets.com/books/1379313446l/12758317.jpg,https://images.gr-assets.com/books/1379313446s/12758317.jpg\n4698,433533,433533,1791604,282,553269224,9780553269220.0,L.M. Montgomery,1921.0,Rilla of Ingleside,\"Rilla of Ingleside (Anne of Green Gables, #8)\",eng,4.16,29277,31379,1160,305,1311,5696,9945,14122,https://images.gr-assets.com/books/1285712722l/433533.jpg,https://images.gr-assets.com/books/1285712722s/433533.jpg\n4699,68143,68143,3250675,38,385721706,9780385721710.0,James Surowiecki,2004.0,The Wisdom of Crowds,The Wisdom of Crowds,eng,3.8,18457,19282,627,421,1364,5148,7135,5214,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211043l/68143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4700,39033,39033,38754,73,446612766,9780446612760.0,\"Douglas Preston, Lincoln Child\",2003.0,\"Still Life with Crows (Pendergast, #4)\",\"Still Life With Crows (Pendergast, #4)\",eng,4.18,22493,25021,1186,105,592,4260,9855,10209,https://images.gr-assets.com/books/1169235780l/39033.jpg,https://images.gr-assets.com/books/1169235780s/39033.jpg\n4701,397860,397860,1260691,42,330376152,9780330376150.0,James Herbert,1975.0,The Fog,The Fog,,3.87,19322,19894,294,376,1192,5239,6831,6256,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348466044l/397860.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4702,8676,8676,165637,70,684845776,9780684845780.0,\"Anthony Robbins, Kenneth H. Blanchard, Jason Winters\",1986.0,Unlimited Power : The New Science Of Personal Achievement,Unlimited Power : The New Science Of Personal Achievement,,4.21,18588,19679,381,361,725,3052,5911,9630,https://images.gr-assets.com/books/1419212761l/8676.jpg,https://images.gr-assets.com/books/1419212761s/8676.jpg\n4703,7122034,7122034,7383328,51,446554960,9780446554960.0,\"Douglas Preston, Lincoln Child\",2010.0,Fever Dream,\"Fever Dream (Pendergast, #10)\",eng,4.09,21634,24196,1338,223,710,4491,10035,8737,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442790934l/7122034._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4704,11395597,11395597,16327957,47,307401243,9780307401240.0,Jeanette Winterson,2011.0,Why Be Happy When You Could Be Normal?,Why Be Happy When You Could Be Normal?,,3.94,19537,22096,2247,580,1359,4448,8189,7520,https://images.gr-assets.com/books/1320512373l/11395597.jpg,https://images.gr-assets.com/books/1320512373s/11395597.jpg\n4705,10193062,10193062,15092213,23,312650094,9780312650090.0,Ann Aguirre,2012.0,Outpost,\"Outpost (Razorland, #2)\",en-US,4.12,25650,27482,2003,335,958,4840,10417,10932,https://images.gr-assets.com/books/1343084394l/10193062.jpg,https://images.gr-assets.com/books/1343084394s/10193062.jpg\n4706,18594409,18594409,26340807,10,1608198065,9781608198060.0,Roz Chast,2014.0,Can't We Talk about Something More Pleasant?,Can't We Talk about Something More Pleasant?,eng,4.1,19118,19756,3156,803,842,2705,6635,8771,https://images.gr-assets.com/books/1421087235l/18594409.jpg,https://images.gr-assets.com/books/1421087235s/18594409.jpg\n4707,37847,37847,37641,25,60987464,9780060987470.0,\"Marilyn Manson, Neil Strauss\",1998.0,The Long Hard Road Out of Hell,The Long Hard Road Out of Hell,eng,3.88,19011,20277,1034,631,1518,4598,6382,7148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924321l/37847.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4709,372638,372638,3080688,17,395137209,9780395137210.0,Bernard Waber,1965.0,\"Lyle, Lyle, Crocodile (Lyle the Crocodile)\",\"Lyle, Lyle, Crocodile\",eng,4.13,24284,24407,175,201,927,5305,7078,10896,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193703l/372638.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4710,10874177,10874177,15789500,31,031619008X,9780316190080.0,Gail Carriger,2013.0,Etiquette & Espionage,\"Etiquette & Espionage (Finishing School, #1)\",en-CA,3.79,29821,34613,5256,1096,2352,8632,13038,9495,https://images.gr-assets.com/books/1331952557l/10874177.jpg,https://images.gr-assets.com/books/1331952557s/10874177.jpg\n4711,3018539,3018539,317973,109,151012741,9780151012750.0,\"José Saramago, Margaret Jull Costa\",2005.0,As Intermitências da Morte,Death With Interruptions,eng,3.97,12984,22302,2401,404,1174,4551,8709,7464,https://images.gr-assets.com/books/1327937800l/3018539.jpg,https://images.gr-assets.com/books/1327937800s/3018539.jpg\n4712,58889,58889,1142894,29,590554085,9780590554080.0,Tamora Pierce,1997.0,Sandry's Book,\"Sandry's Book (Circle of Magic, #1)\",en-US,3.99,30169,31992,809,376,1573,7466,11106,11471,https://images.gr-assets.com/books/1328860148l/58889.jpg,https://images.gr-assets.com/books/1328860148s/58889.jpg\n4714,27406704,27406704,41818210,56,1501142534,9781501142540.0,\"Fredrik Backman, Henning Koch, سمانه پرهیزکاری\",2014.0,Britt-Marie var här,Britt-Marie Was Here,eng,4.07,21737,29661,4613,267,965,5404,12936,10089,https://images.gr-assets.com/books/1460442061l/27406704.jpg,https://images.gr-assets.com/books/1460442061s/27406704.jpg\n4715,44361,44361,2901756,26,031026345X,9780310263460.0,Rob Bell,2005.0,Velvet Elvis: Repainting the Christian Faith,Velvet Elvis: Repainting the Christian Faith,,3.77,18071,19629,1022,1176,1550,4112,6538,6253,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436926982l/44361._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4716,210834,210834,1512424,659,140183523,9780140183530.0,\"Rudyard Kipling, Edward Said\",1901.0,Kim,Kim,eng,3.72,23349,26764,1329,811,2302,7461,9137,7053,https://images.gr-assets.com/books/1387747342l/210834.jpg,https://images.gr-assets.com/books/1387747342s/210834.jpg\n4717,508413,508413,496436,30,764224735,9780764224740.0,Beverly  Lewis,1997.0,The Shunning,\"The Shunning (The Heritage of Lancaster County, #1)\",,4.13,20379,21421,774,259,890,3949,6976,9347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266572591l/508413.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4718,15711341,15711341,21378102,27,451464966,9780451464960.0,Anne Bishop,2013.0,Written in Red,\"Written in Red (The Others, #1)\",eng,4.29,29502,33990,4294,605,1032,3822,11031,17500,https://images.gr-assets.com/books/1411439502l/15711341.jpg,https://images.gr-assets.com/books/1411439502s/15711341.jpg\n4719,77378,77378,980414,38,393311198,9780393311200.0,Nicholas Meyer,1974.0,\"The Seven-Percent Solution: Being a Reprint from the Reminiscences of John H. Watson, MD\",The Seven-Percent Solution,eng,4.14,19334,19939,264,261,671,3692,6749,8566,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388958854l/77378.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4720,319644,319644,7792859,49,439791464,9780439791460.0,Suzanne Collins,2006.0,Gregor and the Marks of Secret,\"Gregor and the Marks of Secret (Underland Chronicles, #4)\",eng,4.21,23727,25671,1041,178,557,4117,9617,11202,https://images.gr-assets.com/books/1397854344l/319644.jpg,https://images.gr-assets.com/books/1397854344s/319644.jpg\n4721,3116205,3116205,3147524,27,525950796,9780525950790.0,Timothy J. Keller,2008.0,The Prodigal God: Christianity Redefined Through the Parable of the Prodigal Sons,The Prodigal God: Recovering the Heart of the Christian Faith,en-US,4.39,20087,21613,1295,224,452,2163,6640,12134,https://images.gr-assets.com/books/1427212055l/3116205.jpg,https://images.gr-assets.com/books/1427212055s/3116205.jpg\n4722,44255,44255,3123857,35,679736042,9780679736040.0,Peter Mayle,1991.0,Toujours Provence,Toujours Provence,eng,4.0,21873,22335,371,157,798,5304,8767,7309,https://images.gr-assets.com/books/1411874268l/44255.jpg,https://images.gr-assets.com/books/1411874268s/44255.jpg\n4723,27398,27398,1054249,28,375759867,9780375759860.0,Jonathan Harr,2005.0,The Lost Painting: The Quest for a Caravaggio Masterpiece,The Lost Painting,en-US,3.71,18944,19555,769,1034,1900,4883,5545,6193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187150l/27398.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4724,16099189,16099189,21908541,15,385534817,9780385534820.0,Chris Bohjalian,2013.0,The Light in the Ruins,The Light in the Ruins,eng,3.65,20519,22712,2863,551,1705,6951,9434,4071,https://images.gr-assets.com/books/1355182026l/16099189.jpg,https://images.gr-assets.com/books/1355182026s/16099189.jpg\n4726,226004,226004,1270006,39,812536355,9780812536360.0,Vernor Vinge,1998.0,A Deepness in the Sky,\"A Deepness in the Sky (Zones of Thought, #2)\",en-US,4.32,21876,23477,741,174,543,2822,8081,11857,https://images.gr-assets.com/books/1217218691l/226004.jpg,https://images.gr-assets.com/books/1217218691s/226004.jpg\n4727,18288,18288,1072226,383,521657296,9780521657300.0,\"Immanuel Kant, Paul Guyer, Allen W. Wood\",1781.0,Kritik der reinen Vernunft,Critique of Pure Reason,eng,3.92,19521,21509,454,688,1489,4643,6790,7899,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348663530l/18288.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4728,16298,16298,2288775,201,1579126294,9781579126290.0,Agatha Christie,1950.0,A Murder is Announced,\"A Murder Is Announced (Miss Marple, #5)\",eng,3.96,25811,30212,1199,123,963,7616,12892,8618,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348508635l/16298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4729,926908,926908,2653871,36,810909650,9780810909660.0,\"Rien Poortvliet, Wil Huygen\",1976.0,Leven en werken van de Kabouter,Gnomes,eng,4.01,22584,23304,329,756,1388,4696,6450,10014,https://images.gr-assets.com/books/1463189122l/926908.jpg,https://images.gr-assets.com/books/1463189122s/926908.jpg\n4730,153193,153193,602355,31,425197484,9780425197490.0,MaryJanice Davidson,2004.0,Undead and Unemployed,\"Undead and Unemployed (Undead, #2)\",en-US,3.93,29168,30748,858,370,1518,7953,10973,9934,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183083l/153193.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4731,1305,1305,1154187,49,055338368X,9780553383680.0,Steven Pressfield,1998.0,Gates of Fire: An Epic Novel of the Battle of Thermopylae,Gates of Fire: An Epic Novel of the Battle of Thermopylae,,4.4,17952,21093,1561,156,421,2190,6333,11993,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924869l/1305.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4732,137098,137098,982677,21,1416527265,9781416527270.0,Hester Browne,2005.0,The Little Lady Agency,\"The Little Lady Agency (The Little Lady Agency, #1)\",eng,3.74,22562,23201,1019,835,1757,6253,8021,6335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437584510l/137098._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4733,385228,385228,2387235,410,140432078,9780140432080.0,John Stuart Mill,1859.0,On Liberty,On Liberty,eng,3.93,19604,21567,566,344,1201,5117,7759,7146,https://images.gr-assets.com/books/1459346459l/385228.jpg,https://images.gr-assets.com/books/1459346459s/385228.jpg\n4734,22934446,22934446,37100610,20,62225073,9780062225080.0,Alan Cumming,2014.0,Not My Father's Son,Not My Father's Son,eng,4.0,11436,23330,3202,424,935,4437,9923,7611,https://images.gr-assets.com/books/1429218612l/22934446.jpg,https://images.gr-assets.com/books/1429218612s/22934446.jpg\n4735,468070,468070,947480,28,1401322433,9781401322430.0,Nigella Lawson,2007.0,Nigella Express: Good Food Fast,\"Nigella Express: Good Food, Fast\",eng,3.96,20034,20292,198,553,1078,4453,6801,7407,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437577758l/468070._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4737,7863423,7863423,11018887,28,044657161X,9780446571620.0,Jill Shalvis,2010.0,Simply Irresistible,\"Simply Irresistible (Lucky Harbor, #1)\",eng,3.92,27319,28849,1717,745,1545,6365,10778,9416,https://images.gr-assets.com/books/1323268405l/7863423.jpg,https://images.gr-assets.com/books/1323268405s/7863423.jpg\n4738,16247792,16247792,22276283,34,425266516,9780425266520.0,Sylvain Reynard,2013.0,Gabriel's redemption,\"Gabriel's Redemption (Gabriel's Inferno, #3)\",eng,4.23,28331,31514,2648,484,1236,4764,9220,15810,https://images.gr-assets.com/books/1366632463l/16247792.jpg,https://images.gr-assets.com/books/1366632463s/16247792.jpg\n4739,5989573,5989573,6163602,21,1934964107,9781934964100.0,Bryan Lee O'Malley,2009.0,\"Scott Pilgrim, Volume 5: Scott Pilgrim Vs. the Universe\",\"Scott Pilgrim, Volume 5: Scott Pilgrim Vs. the Universe\",eng,4.33,24936,26099,773,63,406,3250,9534,12846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348110908l/5989573.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4740,213233,213233,1573617,26,805082115,9780805082110.0,Atul Gawande,2007.0,Better: A Surgeon's Notes on Performance,Better: A Surgeon's Notes on Performance,en-US,4.19,17109,19064,1579,90,390,2914,8043,7627,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437843332l/213233._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4742,19095025,19095025,25758268,33,,,Kylie Scott,2014.0,Play,\"Play (Stage Dive, #2)\",eng,4.33,22231,41266,3844,191,807,5002,14634,20632,https://images.gr-assets.com/books/1393202794l/19095025.jpg,https://images.gr-assets.com/books/1393202794s/19095025.jpg\n4743,6441654,6441654,6631596,11,470484233,9780470484230.0,\"Rebecca Housel, J. Jeremy Wisnewski, William Irwin\",2009.0,\"Twilight and Philosophy: Vampires, Vegetarians, and the Pursuit of Immortality (The Blackwell Philosophy and Pop Culture Series)\",\"Twilight and Philosophy: Vampires, Vegetarians, and the Pursuit of Immortality\",en-US,4.39,18027,18054,39,444,651,2157,2953,11849,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348132058l/6441654.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4744,49176,49176,817417,79,345032799,9780345032800.0,Eric Berne,1964.0,Games People Play,Games People Play,en-US,3.81,17035,19189,596,415,1483,5128,6427,5736,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437170019l/49176.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4745,18966322,18966322,26984416,22,449818438,9780449818440.0,Brandon Sanderson,2013.0,Mitosis,\"Mitosis (The Reckoners, #1.5)\",eng,3.87,17250,22181,1477,69,714,6245,10075,5078,https://images.gr-assets.com/books/1385570447l/18966322.jpg,https://images.gr-assets.com/books/1385570447s/18966322.jpg\n4746,7186,7186,6843073,626,192836382,9780192836380.0,\"Alexandre Dumas fils, David Coward\",1848.0,La Dame aux camélias,La Dame aux Camélias,eng,3.97,13562,22974,1132,307,1229,5312,8075,8051,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165607713l/7186.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4747,11942639,11942639,16903994,26,1595549633,9781595549630.0,Rachel Hauck,2012.0,The Wedding Dress,The Wedding Dress,en-US,3.83,16310,26267,1905,1150,2008,5888,8262,8959,https://images.gr-assets.com/books/1327923985l/11942639.jpg,https://images.gr-assets.com/books/1327923985s/11942639.jpg\n4748,206309,206309,1138219,47,786866020,9780786866020.0,\"Stephen C. Lundin, Harry Paul, John Christensen, Kenneth H. Blanchard\",1996.0,Fish! A Remarkable Way to Boost Morale and Improve Results,Fish: A Proven Way to Boost Morale and Improve Results,eng,3.92,19405,20340,770,466,1291,4735,6684,7164,https://images.gr-assets.com/books/1393219562l/206309.jpg,https://images.gr-assets.com/books/1393219562s/206309.jpg\n4749,49250,49250,586990,46,743449746,9780743449750.0,Stephen E. Ambrose,1994.0,\"D-Day June 6, 1944: The Climactic Battle of WWII\",\"D-Day, June 6, 1944: The Battle for the Normandy Beaches\",eng,4.25,17875,19215,540,173,399,2593,7279,8771,https://images.gr-assets.com/books/1391798880l/49250.jpg,https://images.gr-assets.com/books/1391798880s/49250.jpg\n4750,7981456,7981456,12409139,22,547251270,9780547251270.0,Linda Sue Park,2010.0,A Long Walk to Water,A Long Walk to Water: Based on a True Story,eng,4.23,21593,24076,3832,277,661,3284,8965,10889,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441975555l/7981456._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4751,8811139,8811139,13685373,33,61449180,9780061449180.0,Michael  Grant,2013.0,Light,\"Light (Gone, #6)\",eng,4.4,23730,26356,2459,303,618,2811,7216,15408,https://images.gr-assets.com/books/1331533067l/8811139.jpg,https://images.gr-assets.com/books/1331533067s/8811139.jpg\n4752,28477789,28477789,48619088,13,,,\"Vi Keeland, Penelope Ward\",2016.0,Stuck-Up Suit,Stuck-Up Suit,eng,4.14,22609,31623,3250,537,1283,4891,11325,13587,https://images.gr-assets.com/books/1456315337l/28477789.jpg,https://images.gr-assets.com/books/1456315337s/28477789.jpg\n4753,189147,189147,3171254,61,345419677,9780345419680.0,Philip José Farmer,1971.0,To Your Scattered Bodies Go,\"To Your Scattered Bodies Go (Riverworld, #1)\",eng,3.94,22741,23991,665,427,1395,5415,8710,8044,https://images.gr-assets.com/books/1327657439l/189147.jpg,https://images.gr-assets.com/books/1327657439s/189147.jpg\n4754,114132,114132,3241470,78,515142867,9780515142860.0,Nora Roberts,2001.0,Midnight Bayou,Midnight Bayou,eng,3.96,25476,26857,764,299,1349,6724,9334,9151,https://images.gr-assets.com/books/1309200744l/114132.jpg,https://images.gr-assets.com/books/1309200744s/114132.jpg\n4755,12967,12967,1965767,65,156031191,9780156031200.0,Mark Helprin,1983.0,Winter's Tale,Winter's Tale,en-US,3.5,19932,23168,3850,2418,3239,4817,5723,6971,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442048864l/12967._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4756,106646,106646,102794,66,1568650957,9781568650950.0,Sidney Sheldon,1991.0,The Doomsday Conspiracy,The Doomsday Conspiracy,eng,3.59,17093,18567,602,596,2010,5828,6174,3959,https://images.gr-assets.com/books/1408853925l/106646.jpg,https://images.gr-assets.com/books/1408853925s/106646.jpg\n4757,201175,201175,87373,73,1423301854,9781423301850.0,\"J.D. Robb, Susan Ericksen\",1996.0,Rapture in Death,\"Rapture in Death (In Death, #4)\",,4.26,26184,31440,1093,68,505,4878,11770,14219,https://images.gr-assets.com/books/1347628556l/201175.jpg,https://images.gr-assets.com/books/1347628556s/201175.jpg\n4758,161744,161744,2548496,538,143036254,9780143036260.0,Thomas Paine,1776.0,Common Sense,Common Sense,eng,3.97,16864,22652,1122,281,1132,5353,8174,7712,https://images.gr-assets.com/books/1309209451l/161744.jpg,https://images.gr-assets.com/books/1309209451s/161744.jpg\n4759,54529,54529,1429862,49,767903579,9780767903580.0,Adeline Yen Mah,1997.0,Falling Leaves: The Memoir of an Unwanted Chinese Daughter,Falling Leaves: The Memoir of an Unwanted Chinese Daughter,eng,3.88,19598,21301,1636,317,1123,5386,8488,5987,https://images.gr-assets.com/books/1423952608l/54529.jpg,https://images.gr-assets.com/books/1423952608s/54529.jpg\n4760,3338544,3338544,3376763,9,,,مصطفى محمود,1970.0,رحلتي من الشك إلى الإيمان,رحلتي من الشك إلى الإيمان,ara,4.03,16854,17687,1682,521,987,3072,6054,7053,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1216840475l/3338544.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4761,13416236,13416236,18731533,19,1250011914,9781250011920.0,C.C. Hunter,2012.0,Whispers at Moonrise ,\"Whispers at Moonrise (Shadow Falls, #4)\",eng,4.38,28430,29922,1339,212,657,3437,8916,16700,https://images.gr-assets.com/books/1331497103l/13416236.jpg,https://images.gr-assets.com/books/1331497103s/13416236.jpg\n4762,7148931,7148931,7413929,38,030746363X,9780307463630.0,Timothy Ferriss,2000.0,The 4-Hour Body,\"The 4-Hour Body: An Uncommon Guide to Rapid Fat-Loss, Incredible Sex, and Becoming Superhuman\",en-US,3.76,15007,20858,1367,569,1711,5386,7654,5538,https://images.gr-assets.com/books/1351861578l/7148931.jpg,https://images.gr-assets.com/books/1351861578s/7148931.jpg\n4763,58314,58314,2595873,116,375727019,9780375727020.0,\"Michel Houellebecq, Frank Wynne\",1998.0,Les Particules élémentaires,The Elementary Particles,eng,3.78,13577,21691,1317,794,1747,4883,8198,6069,https://images.gr-assets.com/books/1403180525l/58314.jpg,https://images.gr-assets.com/books/1403180525s/58314.jpg\n4764,17314410,17314410,23981204,10,,,Georgia Cates,2013.0,Beauty from Surrender,\"Beauty from Surrender (Beauty, #2)\",eng,4.13,31623,34393,2028,401,1331,6108,12239,14314,https://images.gr-assets.com/books/1367294723l/17314410.jpg,https://images.gr-assets.com/books/1367294723s/17314410.jpg\n4765,224410,224410,217336,3,785114777,9780785114770.0,\"Roy Thomas, Dick Giordano, Mark D. Beazley, Bram Stoker\",2005.0,Stoker's Dracula ,Dracula (Marvel Illustrated),,3.93,14660,14729,37,530,858,3138,4859,5344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1518830041l/224410.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4766,207266,207266,3234368,62,439014573,9780439014570.0,Dav Pilkey,1997.0,The Adventures of Captain Underpants,\"The Adventures of Captain Underpants (Captain Underpants, #1)\",eng,3.84,22535,24414,1665,1219,2033,5555,6124,9483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348215410l/207266.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4767,13435889,13435889,18938981,37,547564651,9780547564650.0,Paul Tough,2012.0,\"How Children Succeed: Grit, Curiosity, and the Hidden Power of Character\",\"How Children Succeed: Grit, Curiosity, and the Hidden Power of Character\",eng,3.91,16402,18145,1947,323,872,4268,7381,5301,https://images.gr-assets.com/books/1344730141l/13435889.jpg,https://images.gr-assets.com/books/1344730141s/13435889.jpg\n4768,149049,149049,734510,85,446677949,9780446677940.0,Arthur C. Clarke,1979.0,The Fountains of Paradise,The Fountains of Paradise,eng,3.96,20012,21536,462,164,867,5265,8697,6543,https://images.gr-assets.com/books/1344265959l/149049.jpg,https://images.gr-assets.com/books/1344265959s/149049.jpg\n4769,98920,98920,3094905,78,670038342,9780670038340.0,Elif Shafak,2006.0,Baba ve Piç,The Bastard of Istanbul,eng,3.79,14215,21564,2688,522,1543,5490,8464,5545,https://images.gr-assets.com/books/1309282092l/98920.jpg,https://images.gr-assets.com/books/1309282092s/98920.jpg\n4770,17237214,17237214,23756923,27,307931900,9780307931900.0,David Levithan,2013.0,Two Boys Kissing,Two Boys Kissing,eng,4.11,24587,27058,3187,1030,1238,4237,7808,12745,https://images.gr-assets.com/books/1364194940l/17237214.jpg,https://images.gr-assets.com/books/1364194940s/17237214.jpg\n4772,21726,21726,2453000,11,1400043875,9781400043870.0,Scott B. Smith,2006.0,The Ruins,The Ruins,en-US,3.5,21613,23932,2760,1489,2856,6816,7822,4949,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432679747l/21726._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4773,336245,336245,995220,45,60525657,9780060525650.0,Erin Hunter,2004.0,A Dangerous Path,\"A Dangerous Path (Warriors, #5)\",eng,4.42,26126,27711,727,154,522,3161,7526,16348,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189622l/336245.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4774,543339,543339,2935487,57,449000753,9780449000760.0,Michael Blake,1988.0,Dances with Wolves,\"Dances with Wolves (Dances with Wolves, #1)\",eng,4.19,19133,20366,389,259,702,3341,6638,9426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388608222l/543339.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4775,153779,153779,1624976,17,375814698,9780375814690.0,Tamora Pierce,2009.0,\"Bloodhound (Beka Cooper, #2)\",\"Bloodhound (Beka Cooper, #2)\",eng,4.26,29414,30570,993,216,826,4450,10390,14688,https://images.gr-assets.com/books/1320443071l/153779.jpg,https://images.gr-assets.com/books/1320443071s/153779.jpg\n4776,6122735,6122735,6537338,14,160751351X,9781607513510.0,Brent Weeks,2009.0,The Night Angel Trilogy,\"The Night Angel Trilogy (Night Angel, #1-3)\",eng,4.42,17523,19298,504,153,391,1834,5695,11225,https://images.gr-assets.com/books/1450327994l/6122735.jpg,https://images.gr-assets.com/books/1450327994s/6122735.jpg\n4777,426025,426025,2902834,20,675093244,9780675093250.0,William Faulkner,1930.0,A Rose for Emily,A Rose for Emily and Other Stories,eng,4.06,22629,23045,419,287,1072,4609,8091,8986,https://images.gr-assets.com/books/1487468453l/426025.jpg,https://images.gr-assets.com/books/1487468453s/426025.jpg\n4778,5883777,5883777,21899016,627,,,Anonymous,2001.0,Holy Bible English Standard Version,The Holy Bible: English Standard Version,eng,4.66,17863,23236,591,652,431,1082,1909,19162,https://images.gr-assets.com/books/1328227151l/5883777.jpg,https://images.gr-assets.com/books/1328227151s/5883777.jpg\n4779,321545,321545,2814300,73,446400157,9780446400150.0,Ellis Peters,1977.0,A Morbid Taste for Bones,\"A Morbid Taste for Bones (Chronicles of Brother Cadfael, #1)\",en-US,3.99,23590,25351,1004,336,913,5780,10003,8319,https://images.gr-assets.com/books/1296427936l/321545.jpg,https://images.gr-assets.com/books/1296427936s/321545.jpg\n4780,233389,233389,790136,92,019283410X,9780192834100.0,\"Giorgio Vasari, Julia Conway Bondanella, Peter Bondanella\",1550.0,\"Le Vite de' più eccellenti pittori, scultori, e architettori da Cimabue insino a' tempi nostri\",The Lives of the Artists,eng,3.78,18288,18738,106,1162,1589,4059,5271,6657,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708111l/233389.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4781,84139,84139,613030,35,312934335,9780312934330.0,Sherrilyn Kenyon,2005.0,Unleash the Night,\"Unleash the Night (Dark Hunter, #8; Were-Hunter, #2)\",en-US,4.34,32491,34809,968,102,589,4620,11491,18007,https://images.gr-assets.com/books/1462051642l/84139.jpg,https://images.gr-assets.com/books/1462051642s/84139.jpg\n4782,4935682,4935682,5001343,48,747594155,9780747594150.0,Angie Sage,2009.0,Syren,\"Syren (Septimus Heap, #5)\",eng,4.1,25245,26679,746,295,1064,5244,9193,10883,https://images.gr-assets.com/books/1327949203l/4935682.jpg,https://images.gr-assets.com/books/1327949203s/4935682.jpg\n4783,5558786,17274667,5729918,115,3453532988,9783453532980.0,\"Dmitry Glukhovsky, M. David Drevs\",2005.0,Метро 2033,\"Metro 2033 (METRO, #1)\",ger,3.98,15858,23330,1545,425,1428,4526,8809,8142,https://images.gr-assets.com/books/1328809143l/5558786.jpg,https://images.gr-assets.com/books/1328809143s/5558786.jpg\n4784,5396496,5396496,5464024,67,1741753597,9781741753590.0,Christos Tsiolkas,2008.0,The Slap,The Slap,eng,3.16,18037,21468,2781,2342,3586,6580,6319,2641,https://images.gr-assets.com/books/1330062364l/5396496.jpg,https://images.gr-assets.com/books/1330062364s/5396496.jpg\n4785,207781,207781,437807,14,64301389,9780064301380.0,\"Robert Henri, Forbes Watson, Margery A. Ryerson\",1929.0,\"The Art Spirit: Notes, Articles, Fragments of Letters and Talks to Students, Bearing on the Concept and Technique of Picture Making, the Study of Art Generally, and on Appreciation (Icon Editions)\",\"The Art Spirit: Notes, Articles, Fragments of Letters and Talks to Students, Bearing on the Concept and Technique of Picture Making, the Study of Art (Icon Editions)\",eng,3.87,16333,16547,130,844,1426,3427,4138,6712,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4786,17171909,17171909,23599367,36,1611099692,9781611099690.0,Marcus Sakey,2013.0,Brilliance,\"Brilliance (Brilliance Saga, #1)\",eng,3.95,11235,22377,1964,346,1001,4700,9791,6539,https://images.gr-assets.com/books/1437159954l/17171909.jpg,https://images.gr-assets.com/books/1437159954s/17171909.jpg\n4788,9799,9799,1971520,37,571219357,9780571219350.0,Jonathan Lethem,2003.0,The Fortress of Solitude,The Fortress of Solitude,eng,3.87,15100,18114,1369,421,1188,3995,7181,5329,https://images.gr-assets.com/books/1418677318l/9799.jpg,https://images.gr-assets.com/books/1418677318s/9799.jpg\n4789,379316,379316,3208572,39,553804820,9780553804830.0,Dean Koontz,2007.0,The Darkest Evening of the Year,The Darkest Evening of the Year,eng,3.71,21297,22552,1533,640,2073,6435,7414,5990,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257721l/379316.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4790,18077769,18077769,25384114,43,374104107,9780374104110.0,Jeff VanderMeer,2014.0,Authority ,\"Authority (Southern Reach, #2)\",eng,3.55,18430,22147,2640,479,2316,7397,8433,3522,https://images.gr-assets.com/books/1403941730l/18077769.jpg,https://images.gr-assets.com/books/1403941730s/18077769.jpg\n4791,277190,277190,1322254,56,689859406,9780689859400.0,\"Holly Black, Tony DiTerlizzi\",2004.0,The Wrath of Mulgarath,\"The Wrath of Mulgarath (The Spiderwick Chronicles, #5)\",en-US,3.92,28129,28934,818,316,1495,7798,9786,9539,https://images.gr-assets.com/books/1358702186l/277190.jpg,https://images.gr-assets.com/books/1358702186s/277190.jpg\n4793,251762,251762,2482870,33,385498802,9780385498810.0,Myla Goldberg,2000.0,Bee Season,Bee Season,eng,3.55,21160,22184,1484,661,2299,7318,8016,3890,https://images.gr-assets.com/books/1371912051l/251762.jpg,https://images.gr-assets.com/books/1371912051s/251762.jpg\n4794,182012,182012,2392798,72,60567112,9780060567120.0,Karin Slaughter,2004.0,Indelible,\"Indelible (Grant County, #4)\",eng,4.19,20930,23634,685,155,520,3918,9155,9886,https://images.gr-assets.com/books/1299703450l/182012.jpg,https://images.gr-assets.com/books/1299703450s/182012.jpg\n4795,236208,236208,4536973,43,425098648,9780425098650.0,Dean Koontz,1976.0,Night Chills,Night Chills,en-US,3.86,20424,20815,252,275,1151,6024,7117,6248,https://images.gr-assets.com/books/1308460533l/236208.jpg,https://images.gr-assets.com/books/1308460533s/236208.jpg\n4796,29254,29254,29717,14,517543052,9780517543050.0,\"Ram Dass, Richard Alpert\",1971.0,Be Here Now,Be Here Now,en-US,4.27,18275,18669,598,268,616,2724,5214,9847,https://images.gr-assets.com/books/1369858407l/29254.jpg,https://images.gr-assets.com/books/1369858407s/29254.jpg\n4797,6530,6530,2503909,74,425204200,9780425204210.0,Patricia Cornwell,2004.0,Trace,\"Trace (Kay Scarpetta, #13)\",eng,3.76,23287,25347,731,416,1887,7564,8950,6530,https://images.gr-assets.com/books/1310723816l/6530.jpg,https://images.gr-assets.com/books/1310723816s/6530.jpg\n4798,1279686,1279686,1272275,67,440243904,9780440243910.0,Conn Iggulden,2007.0,Genghis: Birth of an Empire,\"Genghis: Birth of an Empire (Conqueror, #1)\",en-US,4.34,16498,20307,1169,95,284,2282,7668,9978,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1396740724l/1279686.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4799,291354,291354,1964392,20,345373529,9780345373530.0,David Eddings,1990.0,The Ruby Knight,\"The Ruby Knight (The Elenium, #2)\",eng,3.96,24586,25848,198,240,1390,6250,9329,8639,https://images.gr-assets.com/books/1487687688l/291354.jpg,https://images.gr-assets.com/books/1487687688s/291354.jpg\n4800,32638,32638,1083086,47,60177241,9780060177250.0,Clive Barker,1992.0,The Thief of Always,The Thief of Always,eng,4.18,19799,22200,1275,138,613,3904,7989,9556,https://images.gr-assets.com/books/1309239541l/32638.jpg,https://images.gr-assets.com/books/1309239541s/32638.jpg\n4801,715791,715791,702043,47,553589385,9780553589380.0,Lara Adrian,2007.0,Kiss of Crimson ,\"Kiss of Crimson (Midnight Breed, #2)\",en-US,4.17,31897,34621,1147,262,1108,6094,12314,14843,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434807577l/715791._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4802,2653622,2653622,2435685,22,345497627,9780345497630.0,Tess Gerritsen,2008.0,The Keepsake,\"The Keepsake (Rizzoli & Isles, #7)\",en-US,4.09,21829,26326,1397,110,574,5338,11158,9146,https://images.gr-assets.com/books/1320502170l/2653622.jpg,https://images.gr-assets.com/books/1320502170s/2653622.jpg\n4804,25564446,25564446,45362463,26,,,Brittainy C. Cherry,2015.0,The Air He Breathes,\"The Air He Breathes (Elements, #1)\",,4.2,22217,33369,4123,907,1248,4590,9980,16644,https://images.gr-assets.com/books/1441375261l/25564446.jpg,https://images.gr-assets.com/books/1441375261s/25564446.jpg\n4805,3585344,3585344,3627605,26,1416580948,9781416580940.0,Kresley Cole,2009.0,Kiss of a Demon King ,Kiss of a Demon King (Immortals After Dark #7),eng,4.35,31111,33311,1131,145,684,4073,10851,17558,https://images.gr-assets.com/books/1357612809l/3585344.jpg,https://images.gr-assets.com/books/1357612809s/3585344.jpg\n4806,478951,478951,3898723,29,553813153,9780553813160.0,Steven Erikson,2006.0,The Bonehunters,\"The Bonehunters (Malazan Book of the Fallen, #6)\",eng,4.42,20359,22668,603,116,320,2100,7539,12593,https://images.gr-assets.com/books/1399934281l/478951.jpg,https://images.gr-assets.com/books/1399934281s/478951.jpg\n4808,22341276,22341276,41739586,14,1477825940,9781477825940.0,Charlie N. Holmberg,2014.0,The Glass Magician,\"The Glass Magician (The Paper Magician Trilogy, #2)\",,3.87,13650,22974,1786,174,1149,6238,9437,5976,https://images.gr-assets.com/books/1410466975l/22341276.jpg,https://images.gr-assets.com/books/1410466975s/22341276.jpg\n4809,10098912,10098912,14996005,14,9380658674,9789380658670.0,Ashwin Sanghi,2010.0,Chanakya's Chant,Chanakya's Chant,eng,3.68,15474,17270,1119,461,1524,4860,6697,3728,https://images.gr-assets.com/books/1327939570l/10098912.jpg,https://images.gr-assets.com/books/1327939570s/10098912.jpg\n4810,12467,12467,2223651,88,312265050,9780312265050.0,Norman Mailer,1948.0,The Naked and the Dead,The Naked and the Dead,eng,3.94,18912,19912,641,358,1059,4375,7826,6294,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181219l/12467.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4811,35100,35100,35039,23,019516895X,9780195168950.0,James M. McPherson,1988.0,Battle Cry of Freedom,Battle Cry of Freedom,eng,4.32,19132,20326,890,265,555,2404,6214,10888,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185755l/35100.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4812,646056,646056,632206,5,307162346,9780307162340.0,\"Michael Teitelbaum, Sue DiCicco\",1989.0,The Little Mermaid (Little Golden Storybook),The Little Mermaid,,4.36,21994,22079,71,323,756,3161,4231,13608,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1176695795l/646056._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4813,86424,86424,260314,60,044661761X,9780446617610.0,\"James Patterson, Andrew Gross\",2005.0,Lifeguard,Lifeguard,,3.76,20053,21613,794,286,1396,6763,7906,5262,https://images.gr-assets.com/books/1344264201l/86424.jpg,https://images.gr-assets.com/books/1344264201s/86424.jpg\n4815,37739,37739,2630133,45,330398059,9780330398050.0,Judy Blume,1974.0,Blubber,Blubber,en-GB,3.78,25402,27462,961,486,1685,8274,9879,7138,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348784315l/37739.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4816,7954556,7954556,7087991,21,61783196,9780061783200.0,Jeaniene Frost,2011.0,\"One Grave at a Time (Night Huntress, #6)\",\"One Grave at a Time (Night Huntress, #6)\",eng,4.25,34506,37594,1971,168,934,5778,13344,17370,https://images.gr-assets.com/books/1315175727l/7954556.jpg,https://images.gr-assets.com/books/1315175727s/7954556.jpg\n4817,9897164,9897164,14789350,21,1937053164,9781937053160.0,Jennifer L. Armentrout,2013.0,Apollyon,\"Apollyon (Covenant, #4)\",eng,4.4,31942,34041,2255,221,740,3490,10240,19350,https://images.gr-assets.com/books/1350101819l/9897164.jpg,https://images.gr-assets.com/books/1350101819s/9897164.jpg\n4818,6202661,6202661,6383161,38,7288387,9780007288380.0,Lindsey Kelk,2009.0,I Heart New York,\"I Heart New York (I Heart, #1)\",en-US,3.84,19491,20465,955,716,1673,4895,5984,7197,https://images.gr-assets.com/books/1276963692l/6202661.jpg,https://images.gr-assets.com/books/1276963692s/6202661.jpg\n4819,2213324,2213324,2219112,32,545040523,9780545040520.0,Meg Cabot,2008.0,Airhead ,\"Airhead (Airhead, #1)\",eng,3.77,32457,34101,2002,875,2861,9350,11142,9873,https://images.gr-assets.com/books/1260574610l/2213324.jpg,https://images.gr-assets.com/books/1260574610s/2213324.jpg\n4820,25190,25190,1020573,48,452281458,9780452281460.0,\"A.N. Roquelaure, Anne Rice\",1985.0,\"Beauty's Release (Sleeping Beauty, #3)\",\"Beauty's Release (Sleeping Beauty, #3)\",eng,3.71,22424,24040,652,1218,2541,6190,6212,7879,https://images.gr-assets.com/books/1167595462l/25190.jpg,https://images.gr-assets.com/books/1167595462s/25190.jpg\n4821,3389671,3389671,3429537,29,152063846,9780152063850.0,Beth Fantaskey,2000.0,Jessica's Guide to Dating on the Dark Side,\"Jessica's Guide to Dating on the Dark Side (Jessica, #1)\",en-US,3.85,32763,35481,2799,1142,2833,8503,10877,12126,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389334437l/3389671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4822,26596,26596,175882,6,871401525,9780871401530.0,E.E. Cummings,1991.0,E.E. Cummings: Complete Poems 1904-1962,\"Complete Poems, 1904-1962\",eng,4.35,18662,18814,196,203,429,2315,5491,10376,https://images.gr-assets.com/books/1355093052l/26596.jpg,https://images.gr-assets.com/books/1355093052s/26596.jpg\n4824,20663702,25189315,39962326,23,393240231,9780393240240.0,Caitlin Doughty,2014.0,Smoke Gets in Your Eyes: And Other Lessons from the Crematory,Smoke Gets in Your Eyes: And Other Lessons from the Crematory,eng,4.04,10979,21669,3029,550,941,3694,8369,8115,https://images.gr-assets.com/books/1416181987l/20663702.jpg,https://images.gr-assets.com/books/1416181987s/20663702.jpg\n4825,7096123,7096123,7353253,47,399156585,9780399156590.0,Daniel Silva,2010.0,The Rembrandt Affair,\"The Rembrandt Affair (Gabriel Allon, #10)\",eng,4.26,18957,21773,1173,121,326,2868,8829,9629,https://images.gr-assets.com/books/1360176576l/7096123.jpg,https://images.gr-assets.com/books/1360176576s/7096123.jpg\n4826,15730101,15730101,25692046,182,,,H.P. Lovecraft,1928.0,The Call of Cthulhu,The Call of Cthulhu,eng,4.05,17199,21820,1033,285,959,4341,8054,8181,https://images.gr-assets.com/books/1377787655l/15730101.jpg,https://images.gr-assets.com/books/1377787655s/15730101.jpg\n4827,373915,373915,1049073,63,61147974,9780061147980.0,\"Joe Hill, Christopher Golden\",2005.0,20th Century Ghosts,20th Century Ghosts,en-US,3.95,21987,24783,1803,538,1275,5254,9463,8253,https://images.gr-assets.com/books/1388224829l/373915.jpg,https://images.gr-assets.com/books/1388224829s/373915.jpg\n4828,6819,6819,1094555,45,375724508,9780375724500.0,David Mitchell,1999.0,Ghostwritten,Ghostwritten,eng,4.06,17900,21178,1868,181,793,3703,9341,7160,https://images.gr-assets.com/books/1320415093l/6819.jpg,https://images.gr-assets.com/books/1320415093s/6819.jpg\n4829,21219083,21219083,25818706,16,,,Simon Wood,2015.0,The One That Got Away,The One That Got Away,eng,3.77,17367,17887,1181,393,1233,5036,6730,4495,https://images.gr-assets.com/books/1421800005l/21219083.jpg,https://images.gr-assets.com/books/1421800005s/21219083.jpg\n4830,8709528,8709528,18752344,27,159514322X,9781595143230.0,Richelle Mead,2015.0,The Ruby Circle,\"The Ruby Circle (Bloodlines, #6)\",eng,4.22,29260,32890,4043,287,1123,5153,10792,15535,https://images.gr-assets.com/books/1409815340l/8709528.jpg,https://images.gr-assets.com/books/1409815340s/8709528.jpg\n4831,5983694,5983694,6157354,25,316114278,9780316114270.0,Grace Lin,2009.0,Where the Mountain Meets the Moon,Where the Mountain Meets the Moon,eng,4.24,24371,25678,3364,412,847,3501,8419,12499,https://images.gr-assets.com/books/1344265026l/5983694.jpg,https://images.gr-assets.com/books/1344265026s/5983694.jpg\n4832,125190,125190,231599,60,087923573X,9780879235730.0,Arthur Ransome,1930.0,Swallows and Amazons,\"Swallows and Amazons (Swallows and Amazons, #1)\",eng,3.98,21716,23051,712,642,1298,4729,7511,8871,https://images.gr-assets.com/books/1277148503l/125190.jpg,https://images.gr-assets.com/books/1277148503s/125190.jpg\n4833,9442157,9442157,14326785,17,1402245793,9781402245790.0,Olivia Cunning,2011.0,Rock Hard,\"Rock Hard (Sinners on Tour, #2)\",eng,4.11,35676,37208,1837,464,1612,6583,13099,15450,https://images.gr-assets.com/books/1295759548l/9442157.jpg,https://images.gr-assets.com/books/1295759548s/9442157.jpg\n4834,20525628,20525628,37105995,39,,,Caitlin Moran,2014.0,How to Build a Girl,How to Build a Girl,eng,3.69,16981,21477,2584,652,1846,5934,8198,4847,https://images.gr-assets.com/books/1410131752l/20525628.jpg,https://images.gr-assets.com/books/1410131752s/20525628.jpg\n4835,1407874,1407874,1436777,7,9793062924,9789793062920.0,Andrea Hirata,2006.0,Sang Pemimpi,\"Sang Pemimpi (Tetralogi Laskar Pelangi, #2)\",ind,4.09,12998,13505,1148,115,470,2621,5115,5184,https://images.gr-assets.com/books/1489733383l/1407874.jpg,https://images.gr-assets.com/books/1489733383s/1407874.jpg\n4836,28116,28116,197064,32,743250621,9780743250630.0,A.J. Jacobs,2004.0,The Know-It-All: One Man's Humble Quest to Become the Smartest Person in the World,The Know-It-All: One Man's Humble Quest to Become the Smartest Person in the World,eng,3.77,22226,23256,2358,363,1599,6470,9528,5296,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442931614l/28116._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4838,126807,126807,122117,37,1400047463,9781400047470.0,Chris Bohjalian,2007.0,The Double Bind,The Double Bind,eng,3.62,22067,23773,3551,783,2346,6910,8931,4803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348690366l/126807.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4840,23553419,23553419,42439923,53,7563035,9780007563040.0,S.K. Tremayne,2015.0,The Ice Twins,The Ice Twins,eng,3.68,16718,23228,3015,682,2138,6540,8485,5383,https://images.gr-assets.com/books/1415872674l/23553419.jpg,https://images.gr-assets.com/books/1415872674s/23553419.jpg\n4841,17899696,17899696,24162053,36,1455549002,9781455549010.0,J.A. Redmerski,2013.0,The Edge of Always,\"The Edge of Always (The Edge of Never, #2)\",eng,4.02,17532,33118,2993,513,1839,6702,11539,12525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922856l/17899696.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4842,2873,2873,1294261,60,452284449,9780452284450.0,Tracy Chevalier,1997.0,The Virgin Blue,The Virgin Blue,eng,3.65,23484,24715,1554,448,2266,7840,9042,5119,https://images.gr-assets.com/books/1395581883l/2873.jpg,https://images.gr-assets.com/books/1395581883s/2873.jpg\n4843,15797397,15797397,21520265,39,1400069807,9781400069800.0,Michael Moss,2013.0,Salt Sugar Fat: How the Food Giants Hooked Us ,Salt Sugar Fat: How the Food Giants Hooked Us,eng,3.98,18542,20455,2615,407,876,4094,8465,6613,https://images.gr-assets.com/books/1361919312l/15797397.jpg,https://images.gr-assets.com/books/1361919312s/15797397.jpg\n4844,225038,225038,1441544,34,152020683,9780152020680.0,\"Edward Eager, N.M. Bodecker\",1954.0,Half Magic,\"Half Magic (Tales of Magic, #1)\",en-US,3.94,28580,29719,1264,507,1478,7170,10600,9964,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503640983l/225038._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4845,7090785,7090785,7346955,22,1594744548,9781594744550.0,\"Steve Hockensmith, Jane Austen, Patrick Arrasmith\",2007.0,\"Dawn of the Dreadfuls (Pride and Prejudice and Zombies, #0.5)\",\"Dawn of the Dreadfuls (Pride and Prejudice and Zombies, #0.5)\",eng,3.47,20207,20837,863,2092,2269,5514,5637,5325,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441329374l/7090785._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4846,7180727,7180727,7192827,46,553807242,9780553807240.0,Lisa Gardner,2010.0,Live To Tell,\"Live to Tell (Detective D.D. Warren, #4)\",eng,4.18,21984,24553,1408,123,417,3923,10647,9443,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440316621l/7180727._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4847,825081,825081,1223344,30,688128971,9780688128980.0,Kevin Henkes,1996.0,Lilly's Purple Plastic Purse,Lilly's Purple Plastic Purse,,4.2,24247,24382,888,363,1027,4189,6699,12104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438200059l/825081._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4848,368916,368916,938626,64,140143505,9780140143510.0,Helene Hanff,1970.0,\"84, Charing Cross Road\",\"84, Charing Cross Road\",eng,4.19,26899,29517,4095,163,779,4650,11589,12336,https://images.gr-assets.com/books/1287338794l/368916.jpg,https://images.gr-assets.com/books/1287338794s/368916.jpg\n4850,14572,14572,870836,43,553351397,9780553351390.0,\"Thich Nhat Hanh, Arnold Kotler, Dalai Lama XIV\",1990.0,Peace Is Every Step: The Path of Mindfulness in Everyday Life,Peace Is Every Step: The Path of Mindfulness in Everyday Life,eng,4.34,19152,19516,890,145,400,2396,6295,10280,https://images.gr-assets.com/books/1320544155l/14572.jpg,https://images.gr-assets.com/books/1320544155s/14572.jpg\n4851,6686671,6686671,6882002,15,,9789792335580.0,Kyousuke Motomi,2007.0,電撃デイジー 1,\"Electric Daisy, Vol. 1 (Dengeki Daisy, #1)\",ind,4.3,20880,22132,352,396,793,3035,5564,12344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547428676l/6686671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4852,29868610,29868610,45352758,19,1501117203,9781501117210.0,Anna Kendrick,2016.0,Scrappy Little Nobody,Scrappy Little Nobody,eng,3.91,28719,32610,4278,275,1415,7792,14453,8675,https://images.gr-assets.com/books/1469410391l/29868610.jpg,https://images.gr-assets.com/books/1469410391s/29868610.jpg\n4854,7307795,7307795,8761083,16,385608020,9780385608020.0,Kate Atkinson,2010.0,\"Started Early, Took My Dog\",\"Started Early, Took My Dog (Jackson Brodie, #4)\",eng,3.89,21662,25434,2639,431,1181,5849,11170,6803,https://images.gr-assets.com/books/1273446011l/7307795.jpg,https://images.gr-assets.com/books/1273446011s/7307795.jpg\n4855,107032,107032,103163,19,930289447,9780930289450.0,\"Jim Starlin, Jim Aparo, Mike DeCarlo\",1988.0,Batman: A Death in the Family,Batman: A Death in the Family,eng,4.05,19765,20023,371,244,1068,4259,6280,8172,https://images.gr-assets.com/books/1327940363l/107032.jpg,https://images.gr-assets.com/books/1327940363s/107032.jpg\n4856,16085517,16085517,21887216,51,1400069599,9781400069590.0,Colum McCann,2013.0,TransAtlantic,TransAtlantic,eng,3.81,18065,20041,2927,453,1370,4914,8149,5155,https://images.gr-assets.com/books/1367929787l/16085517.jpg,https://images.gr-assets.com/books/1367929787s/16085517.jpg\n4857,6871616,6871616,7096800,27,61783161,9780061783170.0,Jeaniene Frost,2010.0,Eternal Kiss of Darkness,\"Eternal Kiss of Darkness (Night Huntress World, #2)\",en-GB,4.21,31967,34951,1722,192,923,5674,12556,15606,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187170l/6871616.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4858,129117,129117,2896642,50,743571355,9780743571360.0,Lisa Lutz,2007.0,The Spellman Files,\"The Spellman Files (The Spellmans, #1)\",eng,3.88,23788,27806,3326,605,1611,6457,11021,8112,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347521714l/129117.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4859,32626,32626,1913322,25,425165582,9780425165580.0,Clive Barker,1984.0,Books of Blood: Volumes 1-3,Books of Blood: Volumes One to Three (Books of Blood #1-3),eng,4.16,20228,20929,452,256,726,3560,7252,9135,https://images.gr-assets.com/books/1306747123l/32626.jpg,https://images.gr-assets.com/books/1306747123s/32626.jpg\n4860,294046,294046,868207,63,60763892,9780060763890.0,James Rollins,2007.0,The Judas Strain,\"The Judas Strain (Sigma Force, #4)\",eng,4.15,20976,23143,1014,143,572,3921,9502,9005,https://images.gr-assets.com/books/1367267369l/294046.jpg,https://images.gr-assets.com/books/1367267369s/294046.jpg\n4861,33333,33333,33415,17,785263713,9780785263720.0,Donald Miller,2000.0,Searching for God Knows What,Searching for God Knows What,en-US,3.92,19383,19696,704,432,1096,4533,7128,6507,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429836720l/33333.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4862,30122,30122,41394,15,60256710,9780060256720.0,Shel Silverstein,1976.0,The Missing Piece,The Missing Piece,,4.27,21207,22049,645,199,694,3306,6596,11254,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184341l/30122.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4863,56842,56842,405136,92,61006629,9780061006620.0,Robert   Harris,1992.0,Fatherland,Fatherland,eng,3.96,18917,23562,1404,149,905,5294,10674,6540,https://images.gr-assets.com/books/1261912137l/56842.jpg,https://images.gr-assets.com/books/1261912137s/56842.jpg\n4864,7132363,8488830,7394861,25,525951571,9780525951580.0,Daniel Suarez,2010.0,Freedom™,\"Freedom™ (Daemon, #2)\",en-US,4.27,12456,20092,1265,114,508,2635,7489,9346,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442895538l/7132363._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4865,92508,92508,3128581,119,60088877,9780060088870.0,Thornton Wilder,1927.0,The Bridge of San Luis Rey,The Bridge of San Luis Rey,en-US,3.8,22003,23861,1542,490,1799,6443,8370,6759,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348937011l/92508.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4866,1772910,1772910,4111509,267,,,Fyodor Dostoyevsky,1848.0,Белые ночи,White Nights,eng,4.05,13405,23285,1427,195,1016,4708,8823,8543,https://images.gr-assets.com/books/1450699039l/1772910.jpg,https://images.gr-assets.com/books/1450699039s/1772910.jpg\n4867,5215879,5215879,5283119,31,425227723,9780425227720.0,Laurell K. Hamilton,2009.0,Skin Trade,\"Skin Trade (Anita Blake, Vampire Hunter #17)\",en-US,3.9,29261,31383,1081,952,2377,6995,9455,11604,https://images.gr-assets.com/books/1310494564l/5215879.jpg,https://images.gr-assets.com/books/1310494564s/5215879.jpg\n4868,481749,481749,321161,115,875793266,9780875793270.0,James E. Talmage,1915.0,Jesus the Christ: A Study of the Messiah and His Mission according to Holy Scriptures both Ancient and Modern,Jesus the Christ,,4.63,17179,18710,1066,354,241,926,2909,14280,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1202623375l/481749.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4869,1693617,1693617,736980,7,1570820872,9781570820880.0,Don Ferguson,1994.0,Disney's the Lion King (Disney Classic Series),Disney's the Lion King,en-US,4.49,19553,19564,77,156,432,2182,3598,13196,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387751618l/1693617.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4870,31168,31168,2685457,103,141439866,9780141439860.0,\"Charlotte Brontë, Lucasta Miller, collaborative, Jessica Cox\",1849.0,Shirley ,Shirley,,3.71,22562,24088,651,685,1969,7159,8020,6255,https://images.gr-assets.com/books/1422609409l/31168.jpg,https://images.gr-assets.com/books/1422609409s/31168.jpg\n4871,114129,114129,1615804,71,515116750,9780515116760.0,Nora Roberts,1995.0,Born in Ice,\"Born in Ice (Born In Trilogy, #2)\",en-US,4.13,26219,27875,559,123,739,5633,10239,11141,https://images.gr-assets.com/books/1388252955l/114129.jpg,https://images.gr-assets.com/books/1388252955s/114129.jpg\n4872,9569,9569,2124286,40,1842431021,9781842431020.0,Tom Robbins,2003.0,Villa Incognito,Villa Incognito,,3.65,14206,15763,642,306,1431,5022,5721,3283,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166031051l/9569.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4873,22237161,22237161,41610676,30,374260508,9780374260510.0,Paul Beatty,2015.0,The Sellout,The Sellout,eng,3.8,21733,27128,3715,862,1983,6288,10625,7370,https://images.gr-assets.com/books/1403430899l/22237161.jpg,https://images.gr-assets.com/books/1403430899s/22237161.jpg\n4874,21325,21325,1330999,12,1401202225,9781401202220.0,\"Bill Willingham, Mark Buckingham, Craig Hamilton, Steve Leialoha, P. Craig Russell\",2004.0,\"Fables, Volume 4: March of the Wooden Soldiers\",\"Fables, Vol. 4: March of the Wooden Soldiers\",eng,4.29,23624,23961,689,188,425,2936,9133,11279,https://images.gr-assets.com/books/1327870401l/21325.jpg,https://images.gr-assets.com/books/1327870401s/21325.jpg\n4875,28077464,28077464,48079305,41,804192979,9780804192970.0,\"Lee Child, Dick Hill\",2016.0,Night School,Night School,eng,3.96,11181,28011,2446,448,1260,6239,11091,8973,https://images.gr-assets.com/books/1478699350l/28077464.jpg,https://images.gr-assets.com/books/1478699350s/28077464.jpg\n4876,9578677,9578677,14465565,62,345515501,9780345515510.0,Tess Gerritsen,2011.0,The Silent Girl,\"The Silent Girl (Rizzoli & Isles, #9)\",en-US,4.13,21444,25518,1625,116,597,4619,10822,9364,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460440l/9578677.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4877,11301,11301,13809,30,7175191,9780007175190.0,Dr. Seuss,1940.0,Horton Hatches the Egg,Horton Hatches the Egg,eng,4.14,29676,30959,580,588,1341,5981,8275,14774,https://images.gr-assets.com/books/1408927129l/11301.jpg,https://images.gr-assets.com/books/1408927129s/11301.jpg\n4879,15827066,15827066,21737662,28,62248472,9780062248470.0,\"Jenna Miscavige Hill, Lisa Pulitzer\",2013.0,Beyond Belief: My Secret Life Inside Scientology and My Harrowing Escape,Beyond Belief: My Secret Life Inside Scientology and My Harrowing Escape,eng,3.72,12643,21461,2487,483,1574,6319,8184,4901,https://images.gr-assets.com/books/1354001608l/15827066.jpg,https://images.gr-assets.com/books/1354001608s/15827066.jpg\n4880,73945,73945,1692879,306,865163480,9780865163480.0,\"Plato, James J. Helm\",-390.0,Απολογία,Apology,eng,4.15,18261,22265,671,301,818,3836,7668,9642,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1212606317l/73945.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4881,102953,102953,1185977,16,1563893274,9781563893280.0,\"Garth Ennis, Steve Dillon, Penn Jillette\",1997.0,Preacher: Proud Americans,\"Preacher, Volume 3: Proud Americans\",eng,4.27,19451,19762,272,296,541,2525,6492,9908,https://images.gr-assets.com/books/1309915653l/102953.jpg,https://images.gr-assets.com/books/1309915653s/102953.jpg\n4882,12880428,12880428,18033554,46,307595110,9780307595120.0,Anne Rice,2012.0,The Wolf Gift,\"The Wolf Gift (The Wolf Gift Chronicles, #1)\",eng,3.52,19008,22474,2823,1359,2821,6379,6548,5367,https://images.gr-assets.com/books/1328214020l/12880428.jpg,https://images.gr-assets.com/books/1328214020s/12880428.jpg\n4883,867650,867650,2768040,14,307960307,9780307960310.0,\"Diane Muldrow, J.P. Miller\",1954.0,The Little Red Hen (Little Golden Book),The Little Red Hen (Little Golden Book),,4.2,22932,23043,269,227,812,4691,5715,11598,https://images.gr-assets.com/books/1320489925l/867650.jpg,https://images.gr-assets.com/books/1320489925s/867650.jpg\n4884,10875239,10875239,15729222,38,1455501476,9781455501470.0,Sandra Brown,2011.0,Lethal,Lethal,,4.04,20353,22772,1871,212,736,4566,9754,7504,https://images.gr-assets.com/books/1301590794l/10875239.jpg,https://images.gr-assets.com/books/1301590794s/10875239.jpg\n4885,3974,3974,3025639,16,316017442,9780316017440.0,Dan Simmons,2007.0,The Terror,The Terror,eng,4.0,21225,24226,2610,521,1324,4438,9180,8763,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442713631l/3974._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4886,773606,773606,214429,43,670447161,9780670447170.0,Ludwig Bemelmans,1953.0,Madeline's Rescue,Madeline's Rescue,eng,4.24,24495,24648,364,195,735,4405,7017,12296,https://images.gr-assets.com/books/1355323337l/773606.jpg,https://images.gr-assets.com/books/1355323337s/773606.jpg\n4887,6694937,6694937,6890544,21,61733636,9780061733640.0,\"John Heilemann, Mark Halperin\",2010.0,\"Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime\",\"Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime\",,4.1,16800,18986,2555,119,486,3209,8656,6516,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442873339l/6694937._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4888,659622,659622,3311863,52,067172942X,9780671729420.0,V.C. Andrews,1987.0,Garden of Shadows,\"Garden of Shadows (Dollanganger, #5)\",eng,3.88,23139,24825,587,392,1810,6511,7703,8409,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440173304l/659622._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4889,10599805,10599805,15507485,21,61957895,9780061957900.0,Kim Harrison,2012.0,A Perfect Blood,\"A Perfect Blood (The Hollows, #10)\",en-US,4.38,26455,30144,1787,97,367,3225,10865,15590,https://images.gr-assets.com/books/1312426322l/10599805.jpg,https://images.gr-assets.com/books/1312426322s/10599805.jpg\n4890,124524,124524,119915,39,310240018,9780310240010.0,\"Joni Eareckson Tada, Joe Musser\",1976.0,Joni,Joni: An Unforgettable Story,en-US,4.23,20191,20697,244,254,528,3428,6484,10003,https://images.gr-assets.com/books/1360187347l/124524.jpg,https://images.gr-assets.com/books/1360187347s/124524.jpg\n4891,93768,93768,857019,40,786932171,9780786932180.0,\"Margaret Weis, Tracy Hickman\",1986.0,War of the Twins,\"War of the Twins (Dragonlance: Legends, #2)\",eng,4.11,21559,23615,187,116,817,4754,8513,9415,https://images.gr-assets.com/books/1390667903l/93768.jpg,https://images.gr-assets.com/books/1390667903s/93768.jpg\n4892,7856305,7856305,9629311,52,031603617X,9780316036180.0,James Patterson,2010.0,Cross Fire,\"Cross Fire (Alex Cross, #17)\",eng,4.04,20407,23904,1183,157,726,5185,9708,8128,https://images.gr-assets.com/books/1287719974l/7856305.jpg,https://images.gr-assets.com/books/1287719974s/7856305.jpg\n4893,148821,148821,515240,30,142000159,9780142000150.0,Ross King,2000.0,Brunelleschi's Dome: How a Renaissance Genius Reinvented Architecture,Brunelleschi's Dome: How a Renaissance Genius Reinvented Architecture,en-US,3.84,17931,18672,677,744,1261,4278,6357,6032,https://images.gr-assets.com/books/1309288056l/148821.jpg,https://images.gr-assets.com/books/1309288056s/148821.jpg\n4894,582533,582533,1584982,53,1577312295,9781577312290.0,Shakti Gawain,1978.0,Creative Visualization: Use the Power of Your Imagination to Create What You Want in Your Life,Creative Visualization: Use the Power of Your Imagination to Create What You Want in Your Life,eng,4.13,17811,18451,320,299,797,3397,5721,8237,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385056910l/582533.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4895,40329,40329,1685766,42,60584025,9780060584020.0,Janet Evanovich,2004.0,Metro Girl,\"Metro Girl (Alex Barnaby, #1)\",eng,3.6,27115,28375,1099,740,3055,9354,8807,6419,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269204l/40329.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4897,9565045,9565045,14451765,33,312360819,9780312360820.0,Darynda Jones,2011.0,Second Grave on the Left,\"Second Grave on the Left (Charley Davidson, #2)\",en-US,4.29,30926,35354,2862,179,608,4683,13371,16513,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442767958l/9565045._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4898,33609,33609,2372397,45,155652532X,9781556525320.0,\"Anya Seton, Philippa Gregory\",1954.0,Katherine,Katherine,eng,4.18,22577,24137,1669,351,858,3856,8150,10922,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436406825l/33609._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4899,828387,828387,4240781,71,141020520,9780141020520.0,Marina Lewycka,2005.0,A Short History of Tractors in Ukrainian,A Short History of Tractors in Ukrainian,en-US,3.37,18204,21286,2235,841,2715,7877,7336,2517,https://images.gr-assets.com/books/1327935785l/828387.jpg,https://images.gr-assets.com/books/1327935785s/828387.jpg\n4901,125925,125925,121282,31,553590162,9780553590170.0,Kelley Armstrong,2004.0,Industrial Magic,\"Industrial Magic (Women of the Otherworld, #4)\",en-US,4.12,27521,30313,819,136,863,5965,11564,11785,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425933325l/125925.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4902,74256,74256,123908,81,2070364232,9782070364240.0,\"René Goscinny, Jean-Jacques Sempé\",1959.0,Le Petit Nicolas,\"Le Petit Nicolas (Le petit Nicolas, #1)\",fre,4.13,24796,27363,514,343,1052,5006,9303,11659,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348132484l/74256.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4903,18867685,25843439,26628578,31,,,A.G. Riddle,2013.0,The Atlantis Plague,\"The Atlantis Plague (The Origin Mystery, #2)\",eng,3.88,7905,20875,849,229,1105,5178,8710,5653,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394822312l/18867685.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4904,42512,42512,41999,28,034547581X,9780345475820.0,\"Harold G. Moore, Joseph L. Galloway\",1991.0,We Were Soldiers Once... and Young: Ia Drang - the Battle That Changed the War in Vietnam,We Were Soldiers Once... and Young: Ia Drang - The Battle that Changed the War in Vietnam,eng,4.29,18688,20272,476,149,438,2669,7150,9866,https://images.gr-assets.com/books/1328912889l/42512.jpg,https://images.gr-assets.com/books/1328912889s/42512.jpg\n4905,92367,92367,1623693,84,451215710,9780451215710.0,Ken Follett,2004.0,Whiteout,Whiteout,en-US,3.54,18791,22042,1168,452,2136,8118,7794,3542,https://images.gr-assets.com/books/1309209422l/92367.jpg,https://images.gr-assets.com/books/1309209422s/92367.jpg\n4906,568236,568236,227267,51,345349571,9780345349580.0,Barbara W. Tuchman,1978.0,A Distant Mirror: The Calamitous 14th Century,A Distant Mirror:  The Calamitous 14th Century,eng,4.11,21776,22774,989,576,915,3658,7926,9699,https://images.gr-assets.com/books/1403200553l/568236.jpg,https://images.gr-assets.com/books/1403200553s/568236.jpg\n4908,900,900,387,44,60554738,9780060554740.0,Neil Strauss,2005.0,The Game,The Game: Penetrating the Secret Society of Pickup Artists,en-US,3.73,16698,19145,1517,702,1643,4766,6953,5081,https://images.gr-assets.com/books/1410129471l/900.jpg,https://images.gr-assets.com/books/1410129471s/900.jpg\n4909,64864,64864,1300454,48,330348779,9780330348780.0,Sue Grafton,1998.0,\"\"\"N\"\" is for Noose\",\"N is for Noose (Kinsey Millhone, #14)\",eng,3.97,24658,26565,524,126,717,7040,10549,8133,https://images.gr-assets.com/books/1356443226l/64864.jpg,https://images.gr-assets.com/books/1356443226s/64864.jpg\n4910,8476248,9571478,13341130,33,749941995,9780749941990.0,Julia Quinn,2011.0,Just Like Heaven,Just Like Heaven (Smythe-Smith Quartet #1),en-GB,3.93,14300,27469,1753,526,1313,6557,10176,8897,https://images.gr-assets.com/books/1327270567l/8476248.jpg,https://images.gr-assets.com/books/1327270567s/8476248.jpg\n4911,6443349,6443349,40697560,23,1423119509,9781423119500.0,\"Rick Riordan, Tk\",2009.0,Percy Jackson and the Olympians,\"Percy Jackson and the Olympians Boxed Set (Percy Jackson and the Olympians, #1-5)\",,4.57,19555,22766,850,173,279,1678,4957,15679,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388328927l/6443349.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4912,11720382,11720382,16668559,50,525952764,9780525952760.0,Lisa Gardner,2012.0,Catch Me,\"Catch Me (Detective D.D. Warren, #6)\",eng,4.17,21486,24035,1628,114,466,3840,10514,9101,https://images.gr-assets.com/books/1325628802l/11720382.jpg,https://images.gr-assets.com/books/1325628802s/11720382.jpg\n4913,233044,233044,4083749,47,778321606,9780778321610.0,Debbie Macomber,2003.0,The Shop on Blossom Street,\"The Shop on Blossom Street (Blossom Street, #1)\",eng,4.04,22861,24892,1668,318,946,5215,9304,9109,https://images.gr-assets.com/books/1459531418l/233044.jpg,https://images.gr-assets.com/books/1459531418s/233044.jpg\n4914,239102,239102,2221191,35,1560768800,9781560768810.0,R.A. Salvatore,1992.0,Starless Night (Legacy of the Drow #2),\"Starless Night (Forgotten Realms: Legacy of the Drow, #2; Legend of Drizzt, #8)\",en-GB,4.12,18305,20277,160,103,689,4053,7235,8197,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388604857l/239102.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4915,93788,93788,706023,66,446616621,9780446616620.0,Nelson DeMille,2004.0,Night Fall,\"Night Fall (John Corey, #3)\",eng,4.07,18761,20870,1167,139,598,4088,8796,7249,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288352l/93788.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4916,8967,8967,11862,59,316000957,9780316000960.0,Darren Shan,2001.0,\"Trials of Death (Cirque du Freak, #5) \",\"Trials of Death (Cirque Du Freak, #5)\",,4.25,22157,24259,620,126,725,3793,7871,11744,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201687l/8967.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4917,7144426,7144426,7408880,44,446539813,9780446539810.0,\"Eric Van Lustbader, Robert Ludlum\",2010.0,Robert Ludlum's The Bourne Objective,\"The Bourne Objective (Jason Bourne, #8)\",eng,4.07,16294,16798,200,261,669,3264,6086,6518,https://images.gr-assets.com/books/1344269869l/7144426.jpg,https://images.gr-assets.com/books/1344269869s/7144426.jpg\n4918,27252717,27252717,45217167,27,,,Elle Kennedy,2016.0,The Score,\"The Score (Off-Campus, #3)\",eng,4.27,32709,35287,3848,276,844,4572,12919,16676,https://images.gr-assets.com/books/1493326480l/27252717.jpg,https://images.gr-assets.com/books/1493326480s/27252717.jpg\n4919,289644,289644,1133511,20,310247535,9780310247530.0,Karen Kingsbury,2005.0,Even Now,\"Even Now (Lost Love, #1)\",en-US,4.26,18120,18865,566,361,623,2671,5336,9874,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348700325l/289644.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4920,3121162,3121162,3152505,52,316059862,9780316059860.0,Anita Shreve,2008.0,Testimony,Testimony,en-US,3.54,21977,24212,3047,552,2498,8357,8881,3924,https://images.gr-assets.com/books/1328975356l/3121162.jpg,https://images.gr-assets.com/books/1328975356s/3121162.jpg\n4921,11544421,11544421,16484134,12,1937007588,9781937007580.0,Ilona Andrews,2013.0,Magic Rises,\"Magic Rises (Kate Daniels, #6)\",eng,4.49,29556,33573,2621,91,276,2687,10657,19862,https://images.gr-assets.com/books/1359571572l/11544421.jpg,https://images.gr-assets.com/books/1359571572s/11544421.jpg\n4922,9970042,10814687,14864236,31,345524616,9780345524610.0,Ben Aaronovitch,2012.0,Whispers Under Ground,\"Whispers Under Ground (Peter Grant, #3)\",eng,4.16,15946,25233,1755,61,358,3873,12121,8820,https://images.gr-assets.com/books/1341006340l/9970042.jpg,https://images.gr-assets.com/books/1341006340s/9970042.jpg\n4923,18453095,18453095,25592905,41,031621129X,9780316211290.0,\"James Patterson, Maxine Paetro\",2014.0,Unlucky 13,\"Unlucky 13 (Women’s Murder Club, #13)\",eng,3.94,16005,24616,1976,298,1293,5850,9270,7905,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920738l/18453095.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4924,99610,99610,1475716,71,446604089,9780446604090.0,Sidney Sheldon,1997.0,The Best Laid Plans,The Best Laid Plans,eng,3.66,17173,18368,552,322,1598,5979,6570,3899,https://images.gr-assets.com/books/1353374848l/99610.jpg,https://images.gr-assets.com/books/1353374848s/99610.jpg\n4925,2855034,2855034,34491,54,61433012,9780061433020.0,Terry Pratchett,2008.0,Nation,Nation,en-US,4.05,22466,26588,2441,365,1225,5215,9721,10062,https://images.gr-assets.com/books/1426659151l/2855034.jpg,https://images.gr-assets.com/books/1426659151s/2855034.jpg\n4926,114162,114162,760678,71,61259349,9780061259340.0,Lisa Kleypas,2004.0,Secrets of a Summer Night,\"Secrets of a Summer Night (Wallflowers, #1)\",eng,4.05,33026,36650,1923,352,1269,7585,14583,12861,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298443922l/114162.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4927,456028,456028,444572,39,1595540342,9781595540350.0,Ted Dekker,2004.0,Red,\"Red: The Heroic Rescue (The Circle, #2)\",eng,4.3,19896,20760,644,136,495,2844,6861,10424,https://images.gr-assets.com/books/1380858319l/456028.jpg,https://images.gr-assets.com/books/1380858319s/456028.jpg\n4928,10680329,10680329,15590102,32,312655452,9780312655460.0,Louise Penny,2011.0,A Trick of the Light,\"A Trick of the Light (Chief Inspector Armand Gamache, #7)\",eng,4.29,20932,24518,2239,100,372,2770,10323,10953,https://images.gr-assets.com/books/1327900478l/10680329.jpg,https://images.gr-assets.com/books/1327900478s/10680329.jpg\n4929,17455585,17455585,24346290,35,,,Jennifer L. Armentrout,2014.0,White Hot Kiss,\"White Hot Kiss (The Dark Elements, #1)\",eng,4.28,27848,31493,3890,617,899,3793,10017,16167,https://images.gr-assets.com/books/1377784515l/17455585.jpg,https://images.gr-assets.com/books/1377784515s/17455585.jpg\n4930,1717890,1717890,1715221,14,4757518080,9784757518090.0,\"Jun Mochizuki, 望月淳\",2006.0,Pandora Hearts 1,Pandora Hearts 1巻,jpn,4.2,19222,20167,394,470,1024,3142,4899,10632,https://images.gr-assets.com/books/1187333570l/1717890.jpg,https://images.gr-assets.com/books/1187333570s/1717890.jpg\n4931,32769,32769,33559,8,345329457,9780345329460.0,H.P. Lovecraft,1931.0,At the Mountains of Madness,At the Mountains of Madness and Other Tales of Terror,en-US,4.25,19586,19752,467,190,601,2716,6785,9460,https://images.gr-assets.com/books/1226634493l/32769.jpg,https://images.gr-assets.com/books/1226634493s/32769.jpg\n4932,6340016,6340016,6526004,15,60596988,9780060596990.0,Mary Karr,2008.0,Lit,Lit,eng,3.88,17964,19543,1928,483,1357,4297,7339,6067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439526383l/6340016._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4933,465904,465904,3310352,56,893662135,9780893662130.0,Anne McCaffrey,1988.0,\"Dragonsdawn (Pern: Dragonriders of Pern, #6)\",\"Dragonsdawn (Pern, #9)\",,4.17,25824,28388,443,115,795,5411,9832,12235,https://images.gr-assets.com/books/1304015693l/465904.jpg,https://images.gr-assets.com/books/1304015693s/465904.jpg\n4934,6596547,6596547,6790315,27,399252649,9780399252650.0,Kathryn Erskine,2010.0,Mockingbird,Mockingbird,eng,4.18,21138,23766,3626,249,703,3854,8755,10205,https://images.gr-assets.com/books/1301271068l/6596547.jpg,https://images.gr-assets.com/books/1301271068s/6596547.jpg\n4935,13489517,13489517,19028214,8,,,أحمد حلمي,2012.0,28 حرف,28 حرف,ara,3.1,15708,16368,1614,1818,3325,5293,3211,2721,https://images.gr-assets.com/books/1333608288l/13489517.jpg,https://images.gr-assets.com/books/1333608288s/13489517.jpg\n4936,107195,107195,230027,21,1590521358,9781590521360.0,Joshua Harris,1996.0,I Kissed Dating Goodbye: New Attitude Toward Romance and Relationship,I Kissed Dating Goodbye,,3.61,17121,17949,814,1552,2022,4042,4592,5741,https://images.gr-assets.com/books/1320506446l/107195.jpg,https://images.gr-assets.com/books/1320506446s/107195.jpg\n4937,903,903,1731888,25,808553038,9780808553040.0,Zilpha Keatley Snyder,1967.0,The Egypt Game,\"The Egypt Game (Game, #1)\",eng,3.81,26657,28206,1140,798,2070,7229,9716,8393,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347840597l/903.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4938,277397,277397,1347714,37,375703055,9780375703060.0,Kaye Gibbons,1987.0,Ellen Foster,Ellen Foster,eng,3.75,23327,24511,1379,468,1770,6993,9353,5927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924673l/277397.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4939,22904,22904,568437,70,805210555,9780805210550.0,\"Franz Kafka, Nahum N. Glatzer, John Updike, Willa Muir, Edwin Muir, Tania Stern, James Stern, Ernst Kaiser, Eithne Wilkins\",1946.0,Sämtliche Erzählungen,The Complete Stories,eng,4.34,18314,20541,485,201,454,2373,6549,10964,https://images.gr-assets.com/books/1223588017l/22904.jpg,https://images.gr-assets.com/books/1223588017s/22904.jpg\n4940,1059680,1059680,1046261,10,156924264X,9781569242640.0,\"Isa Chandra Moskowitz, Terry Hope Romero\",2007.0,Veganomicon: The Ultimate Vegan Cookbook,Veganomicon: The Ultimate Vegan Cookbook,,3.98,19359,19620,602,1087,1082,3343,5769,8339,https://images.gr-assets.com/books/1328751476l/1059680.jpg,https://images.gr-assets.com/books/1328751476s/1059680.jpg\n4941,260025,260025,1568418,38,786933887,9780786933880.0,\"Margaret Weis, Tracy Hickman\",1986.0,\"Test of the Twins (Dragonlance Legends, #3)\",\"Test of the Twins (Dragonlance: Legends, #3)\",eng,4.16,21047,23195,206,108,727,4322,8252,9786,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240769l/260025.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4942,48467,48467,1046530,60,374530637,9780374530630.0,Flannery O'Connor,1952.0,Wise Blood,Wise Blood,en-US,3.88,18053,20326,1675,511,1451,4492,7411,6461,https://images.gr-assets.com/books/1389629799l/48467.jpg,https://images.gr-assets.com/books/1389629799s/48467.jpg\n4943,220826,220826,213828,28,9753638027,9789753638030.0,Sabahattin Ali,1943.0,Kürk Mantolu Madonna,Kürk Mantolu Madonna,tur,4.49,19806,21803,1277,114,348,1785,6029,13527,https://images.gr-assets.com/books/1362477552l/220826.jpg,https://images.gr-assets.com/books/1362477552s/220826.jpg\n4944,187124,187124,3102782,37,345379624,9780345379630.0,Terry Brooks,1997.0,Running with the Demon,\"Running with the Demon (Word & Void, #1)\",eng,3.95,21209,22827,546,526,1303,5063,7815,8120,https://images.gr-assets.com/books/1451687782l/187124.jpg,https://images.gr-assets.com/books/1451687782s/187124.jpg\n4945,223838,223838,2620135,243,1557488150,9781557488150.0,Charles M. Sheldon,1896.0,In His Steps,In His Steps,,4.15,18254,19339,495,377,879,3394,5477,9212,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172854677l/223838.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4946,10790516,10790516,15702803,31,1439136823,9781439136830.0,Kresley Cole,2012.0,Lothaire,Lothaire (Immortals After Dark #12),eng,4.43,30304,33113,2239,264,706,3287,9210,19646,https://images.gr-assets.com/books/1366322959l/10790516.jpg,https://images.gr-assets.com/books/1366322959s/10790516.jpg\n4947,515905,515905,2141767,12,1423102991,9781423102990.0,Mo Willems,2007.0,Knuffle Bunny Too: A Case of Mistaken Identity,\"Knuffle Bunny Too: A Case of Mistaken Identity (Knuffle Bunny, #2)\",en-US,4.28,23396,23497,723,310,788,3355,6518,12526,https://images.gr-assets.com/books/1327894604l/515905.jpg,https://images.gr-assets.com/books/1327894604s/515905.jpg\n4948,2260637,2260637,2300926,60,446195979,9780446195970.0,David Baldacci,2008.0,The Whole Truth,\"The Whole Truth (A. Shaw, #1)\",eng,4.0,19171,22924,1252,212,737,5067,9753,7155,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410210693l/2260637.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4949,2659997,2659997,3340863,35,61628018,9780061628020.0,\"Elissa Wall, Lisa Pulitzer\",2008.0,\"Stolen Innocence: My Story of Growing Up in a Polygamous Sect, Becoming a Teenage Bride, and Breaking Free of Warren Jeffs\",\"Stolen Innocence: My Story of Growing Up in a Polygamous Sect, Becoming a Teenage Bride, and Breaking Free of Warren Jeffs\",,3.89,19468,21574,1882,191,1069,5804,8373,6137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255629380l/2659997.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4950,11178225,11178225,16102692,45,039925692X,9780399256930.0,Ruta Sepetys,2013.0,Out of the Easy,Out of the Easy,eng,4.05,25913,28925,4388,464,985,5290,11982,10204,https://images.gr-assets.com/books/1339784547l/11178225.jpg,https://images.gr-assets.com/books/1339784547s/11178225.jpg\n4951,2182780,2182780,2188473,18,1401216226,9781401216220.0,\"Ed Brubaker, Doug Mahnke, Patrick Zircher, Aaron Sowd, Steve Bird\",2005.0,Batman: The Man Who Laughs,Batman: The Man Who Laughs,eng,4.09,16933,17748,375,187,703,3704,5931,7223,https://images.gr-assets.com/books/1486038991l/2182780.jpg,https://images.gr-assets.com/books/1486038991s/2182780.jpg\n4952,273511,273511,2409881,36,60744510,9780060744520.0,Erin Hunter,2005.0,Midnight,\"Midnight (Warriors: The New Prophecy, #1)\",eng,4.26,24650,25744,766,374,920,3939,6899,13612,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430055546l/273511.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4953,18176747,18176747,25548865,20,62273205,9780062273210.0,Ben Horowitz,2014.0,The Hard Thing about Hard Things: Building A Business When There Are No Easy Answers,The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers,eng,4.2,19492,22549,1300,413,779,3215,7627,10515,https://images.gr-assets.com/books/1386609333l/18176747.jpg,https://images.gr-assets.com/books/1386609333s/18176747.jpg\n4955,228990,228990,1105522,46,345348664,9780345348660.0,Stephen R. Donaldson,1977.0,The Illearth War,\"The Illearth War (The Chronicles of Thomas Covenant the Unbeliever, #2)\",,3.99,20039,21986,297,512,1140,4331,8044,7959,https://images.gr-assets.com/books/1387037078l/228990.jpg,https://images.gr-assets.com/books/1387037078s/228990.jpg\n4956,2063563,2063563,2068781,22,340936150,9780340936150.0,Russell Brand,2007.0,My Booky Wook,My Booky Wook,en-GB,3.42,16553,20083,1564,1055,2526,6732,6505,3265,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266507951l/2063563.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4957,18527947,18527947,26233574,49,425259862,9780425259860.0,Nora Roberts,2014.0,Shadow Spell,\"Shadow Spell (The Cousins O'Dwyer Trilogy, #2)\",en-US,4.0,17155,25364,1787,299,1329,5744,8740,9252,https://images.gr-assets.com/books/1458263039l/18527947.jpg,https://images.gr-assets.com/books/1458263039s/18527947.jpg\n4958,10909804,10909804,10270290,33,1592406521,9781592406520.0,Simon Garfield,2010.0,Just My Type: A Book About Fonts,Just My Type: A Book About Fonts,en-US,3.79,22046,23329,1176,1126,1938,5496,6966,7803,https://images.gr-assets.com/books/1327886002l/10909804.jpg,https://images.gr-assets.com/books/1327886002s/10909804.jpg\n4959,3492020,3492020,3533617,46,399155481,9780399155480.0,J.D. Robb,2009.0,Promises in Death,\"Promises in Death (In Death, #28)\",eng,4.4,24115,26149,710,96,313,2885,8604,14251,https://images.gr-assets.com/books/1417318467l/3492020.jpg,https://images.gr-assets.com/books/1417318467s/3492020.jpg\n4960,23534,23534,2640266,30,876853629,9780876853630.0,Charles Bukowski,1977.0,\"Love Is a Dog from Hell: Poems, 1974-1977\",Love Is a Dog from Hell,eng,4.16,19471,20725,896,368,723,3220,7241,9173,https://images.gr-assets.com/books/1377260823l/23534.jpg,https://images.gr-assets.com/books/1377260823s/23534.jpg\n4961,19161852,19161852,26115977,20,316229296,9780316229300.0,N.K. Jemisin,2015.0,The Fifth Season,\"The Fifth Season (The Broken Earth, #1)\",eng,4.31,20185,25264,4039,285,635,2715,8989,12640,https://images.gr-assets.com/books/1386803701l/19161852.jpg,https://images.gr-assets.com/books/1386803701s/19161852.jpg\n4963,67931,67931,1663237,64,552150215,9780552150220.0,John Katzenbach,2002.0,The Analyst,The Analyst,eng,4.12,11685,21018,1406,265,918,3552,7581,8702,https://images.gr-assets.com/books/1280112638l/67931.jpg,https://images.gr-assets.com/books/1280112638s/67931.jpg\n4964,2113260,2113260,2118671,35,670019631,9780670019630.0,Jasper Fforde,2009.0,Shades of Grey,Shades of Grey,eng,4.14,22788,26840,3612,425,1098,4097,9941,11279,https://images.gr-assets.com/books/1327563734l/2113260.jpg,https://images.gr-assets.com/books/1327563734s/2113260.jpg\n4965,33569,33569,3200846,43,140389660,9780140389660.0,S.E. Hinton,1971.0,\"That Was Then, This Is Now\",\"That Was Then, This Is Now\",en-US,3.89,22946,24028,1384,311,1327,6324,8776,7290,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439661031l/33569._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4966,6164358,6164358,6343668,37,307582396,9780307582390.0,\"Trenton Lee Stewart, Del Roy\",2009.0,The Mysterious Benedict Society and the Prisoner's Dilemma,\"The Mysterious Benedict Society and the Prisoner's Dilemma (The Mysterious Benedict Society, #3)\",,4.28,23448,26530,1325,189,589,3854,8938,12960,https://images.gr-assets.com/books/1320473034l/6164358.jpg,https://images.gr-assets.com/books/1320473034s/6164358.jpg\n4967,10149142,10149142,15047462,32,61579033,9780061579040.0,Kevin    Wilson,2011.0,The Family Fang,The Family Fang,en-US,3.6,18214,20904,2956,682,1867,6247,8379,3729,https://images.gr-assets.com/books/1444101399l/10149142.jpg,https://images.gr-assets.com/books/1444101399s/10149142.jpg\n4968,10907,10907,521767,26,60744871,9780060744880.0,Chris Gardner,2006.0,The Pursuit of Happyness,The Pursuit of Happyness,,4.17,18492,18833,678,271,715,3110,6104,8633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428219118l/10907.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4969,7147831,7147831,7412679,93,,9788252574590.0,Karl Ove Knausgård,2009.0,Min kamp 1,Min kamp 1 (Min kamp #1),nor,4.08,7886,20208,2345,373,956,3151,7999,7729,https://images.gr-assets.com/books/1262695721l/7147831.jpg,https://images.gr-assets.com/books/1262695721s/7147831.jpg\n4970,8517008,8517008,8586372,48,385342322,9780385342320.0,Alan Bradley,2011.0,A Red Herring Without Mustard,\"A Red Herring Without Mustard (Flavia de Luce, #3)\",eng,4.07,26160,29493,3412,133,556,5507,14136,9161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388266441l/8517008.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4971,18728,18728,963376,18,684804484,9780684804480.0,Doris Kearns Goodwin,1994.0,No Ordinary Time: Franklin and Eleanor Roosevelt: The Home Front in World War II,No Ordinary Time: Franklin and Eleanor Roosevelt: The Home Front in World War II,eng,4.2,26004,27103,1107,713,1072,3635,8217,13466,https://images.gr-assets.com/books/1423756471l/18728.jpg,https://images.gr-assets.com/books/1423756471s/18728.jpg\n4972,414298,414298,3182399,28,375701907,9780375701900.0,Richard Russo,1997.0,Straight Man,Straight Man,eng,4.02,19358,20378,2118,263,931,3985,8177,7022,https://images.gr-assets.com/books/1430659357l/414298.jpg,https://images.gr-assets.com/books/1430659357s/414298.jpg\n4973,10739,10739,1209450,54,375701966,9780375701960.0,Walker Percy,1961.0,The Moviegoer,The Moviegoer,en-CA,3.7,18655,20094,1579,656,2010,5228,7080,5120,https://images.gr-assets.com/books/1437668043l/10739.jpg,https://images.gr-assets.com/books/1437668043s/10739.jpg\n4974,87346,87346,1616484,240,413774031,9780413774030.0,\"Anton Chekhov, Tom    Murphy\",1904.0,Вишнëвый сад,The Cherry Orchard,eng,3.68,18914,22768,684,597,2154,6703,7892,5422,https://images.gr-assets.com/books/1464433142l/87346.jpg,https://images.gr-assets.com/books/1464433142s/87346.jpg\n4975,4835838,4835838,4901046,18,545052394,9780545052400.0,Wendy Mass,2009.0,11 Birthdays,\"11 Birthdays (Willow Falls, #1)\",eng,4.18,22339,23427,2132,248,804,4099,7652,10624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389496084l/4835838.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4976,7329,7329,2961645,122,026110215X,9780261102160.0,\"J.R.R. Tolkien, Christopher Tolkien\",1980.0,Unfinished Tales of Númenor and Middle-Earth,Unfinished Tales of Númenor and Middle-Earth,,3.93,18402,23250,485,211,1245,5737,8781,7276,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165611104l/7329._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4977,9461872,9461872,14346762,27,385521227,9780385521220.0,Ann Brashares,2011.0,Sisterhood Everlasting,\"Sisterhood Everlasting (Sisterhood, #5)\",eng,3.9,25849,29366,3796,555,1930,6759,10838,9284,https://images.gr-assets.com/books/1327878529l/9461872.jpg,https://images.gr-assets.com/books/1327878529s/9461872.jpg\n4978,349090,349090,1260676,19,451452011,9780451452020.0,Grant Naylor,1989.0,Infinity Welcomes Careful Drivers,Infinity Welcomes Careful Drivers (Red Dwarf #1),eng,4.03,19773,20281,340,211,819,4365,7675,7211,https://images.gr-assets.com/books/1403947775l/349090.jpg,https://images.gr-assets.com/books/1403947775s/349090.jpg\n4979,33459,33459,813988,23,60735430,9780060735430.0,Christopher Moore,1994.0,Coyote Blue,Coyote Blue,en-US,3.75,19901,21556,940,270,1398,6797,8035,5056,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428328692l/33459.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4980,2501455,2501455,2508820,9,,9789953890580.0,\"أحلام مستغانمي, Ahlam Mosteghanemi\",1997.0,فوضى الحواس,فوضى الحواس,ara,3.83,16337,16858,1248,635,1413,3913,5041,5856,https://images.gr-assets.com/books/1291848735l/2501455.jpg,https://images.gr-assets.com/books/1291848735s/2501455.jpg\n4981,87665,87665,1807543,430,160096527X,9781600965270.0,G.K. Chesterton,1908.0,Orthodoxy,Orthodoxy,eng,4.23,18303,21429,1176,481,787,2858,6402,10901,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348323220l/87665.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4982,426625,426625,1167774,29,60542098,9780060542090.0,\"Jane O'Connor, Robin Preiss Glasser\",2005.0,Fancy Nancy,Fancy Nancy,,4.15,21619,21741,792,483,1079,3876,5647,10656,https://images.gr-assets.com/books/1376473636l/426625.jpg,https://images.gr-assets.com/books/1376473636s/426625.jpg\n4983,3692,3692,3266950,100,99478420,9780099478420.0,Graham Greene,1948.0,The Heart of the Matter,The Heart of the Matter,eng,3.98,19149,21135,995,275,953,4426,8660,6821,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385263150l/3692.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4984,21535019,21535019,40863995,65,141971189X,9781419711890.0,Jeff Kinney,2014.0,The Long Haul ,\"The Long Haul (Diary of a Wimpy Kid, #9)\",eng,4.33,21822,27595,2456,528,896,3526,6724,15921,https://images.gr-assets.com/books/1408500992l/21535019.jpg,https://images.gr-assets.com/books/1408500992s/21535019.jpg\n4986,2029176,2029176,3131078,51,316018708,9780316018710.0,\"James Patterson, Howard Roughan\",2008.0,Sail,Sail,eng,3.8,20932,22384,1805,487,1470,6164,8220,6043,https://images.gr-assets.com/books/1344264435l/2029176.jpg,https://images.gr-assets.com/books/1344264435s/2029176.jpg\n4987,23301545,23301545,41358233,36,1408859645,9781408859640.0,\"Neil Gaiman, Chris Riddell\",2014.0,The Sleeper and the Spindle,The Sleeper and the Spindle,eng,3.9,20889,24708,3642,861,1340,5238,9259,8010,https://images.gr-assets.com/books/1412343723l/23301545.jpg,https://images.gr-assets.com/books/1412343723s/23301545.jpg\n4989,18750,18750,1020574,50,452281431,9780452281430.0,\"A.N. Roquelaure, Anne Rice\",1984.0,Beauty's Punishment,\"Beauty's Punishment (Sleeping Beauty, #2)\",en-US,3.62,20867,23229,778,1274,2728,6361,6126,6740,https://images.gr-assets.com/books/1426861477l/18750.jpg,https://images.gr-assets.com/books/1426861477s/18750.jpg\n4990,285011,285011,276514,23,1414310560,9781414310560.0,Dee Henderson,2000.0,The Negotiator,\"The Negotiator (O'Malley, #1)\",eng,4.32,20278,21499,762,204,542,2891,6428,11434,https://images.gr-assets.com/books/1406508359l/285011.jpg,https://images.gr-assets.com/books/1406508359s/285011.jpg\n4991,13041934,13041934,18206031,7,143417231,9780143417230.0,Ravinder Singh,2011.0,Can Love Happen Twice?,Can Love Happen Twice?,eng,3.31,15668,16172,673,1359,2671,4924,4048,3170,https://images.gr-assets.com/books/1321016822l/13041934.jpg,https://images.gr-assets.com/books/1321016822s/13041934.jpg\n4992,3124249,3124249,3155594,33,60548924,9780060548930.0,\"Gregory Maguire, Douglas Smith\",2008.0,A Lion Among Men,\"A Lion Among Men (The Wicked Years, #3)\",en-US,3.29,21794,23726,1862,1150,4109,8788,6178,3501,https://images.gr-assets.com/books/1370992593l/3124249.jpg,https://images.gr-assets.com/books/1370992593s/3124249.jpg\n4993,43908,43908,1175877,41,380720868,9780380720870.0,Raymond E. Feist,1994.0,\"Shadow of a Dark Queen (The Serpentwar Saga, #1)\",\"Shadow of a Dark Queen (The Serpentwar Saga, #1)\",eng,4.02,20847,22141,189,125,736,5071,8953,7256,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212748l/43908.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4994,11466,11466,1559134,37,802136680,9780802136690.0,Tobias Wolff,1989.0,This Boy's Life: A Memoir,This Boy's Life,eng,3.98,19981,21010,1201,257,953,4430,8727,6643,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181708l/11466.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4995,3993839,3993839,4039913,30,312382855,9780312382860.0,Jonathan Maberry,2009.0,Patient Zero,\"Patient Zero (Joe Ledger, #1)\",en-US,3.98,19852,21202,1735,508,1148,4274,7523,7749,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439953244l/3993839._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n4996,545951,545951,1457974,107,679728899,9780679728890.0,Willa Cather,1927.0,Death Comes for the Archbishop,Death Comes for the Archbishop,eng,3.88,21343,23061,1865,580,1545,5347,8291,7298,https://images.gr-assets.com/books/1436632846l/545951.jpg,https://images.gr-assets.com/books/1436632846s/545951.jpg\n4998,17312201,17312201,23976459,16,1423194551,9781423194550.0,Rick Riordan,2013.0,The Son of Sobek,\"The Son of Sobek (Percy Jackson & Kane Chronicles Crossover, #1)\",eng,4.26,21691,26254,1387,348,690,4023,7989,13204,https://images.gr-assets.com/books/1367948073l/17312201.jpg,https://images.gr-assets.com/books/1367948073s/17312201.jpg\n4999,52823,52823,2115103,310,1854596373,9781854596380.0,\"Molière, Martin Sorrell\",1664.0,\"Le Tartuffe, ou L’Imposteur\",Tartuffe,eng,3.66,21061,24740,565,545,2313,7569,8829,5484,https://images.gr-assets.com/books/1319501006l/52823.jpg,https://images.gr-assets.com/books/1319501006s/52823.jpg\n5000,4701550,4701550,4765865,24,446401056,9780446401050.0,Larissa Ione,2009.0,Passion Unleashed,Passion Unleashed (Demonica #3),eng,4.32,28493,29915,1102,266,690,3868,9459,15632,https://images.gr-assets.com/books/1344267582l/4701550.jpg,https://images.gr-assets.com/books/1344267582s/4701550.jpg\n5001,1896346,1896346,1897914,9,1421514818,9781421514820.0,Kazune Kawahara,2004.0,高校デビュー 1,\"High School Debut, Vol. 01 (High School Debut, #1)\",en-GB,4.11,21210,21266,272,664,1205,3798,5088,10511,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348252906l/1896346.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5002,10400407,10400407,18324025,4,9953716889,9789953716890.0,أثير عبدالله النشمي,2011.0,في ديسمبر تنتهي كل الأحلام,في ديسمبر تنتهي كل الأحلام,ara,3.33,16479,17411,2021,1601,2897,4977,3958,3978,https://images.gr-assets.com/books/1304699101l/10400407.jpg,https://images.gr-assets.com/books/1304699101s/10400407.jpg\n5003,386234,386234,375913,8,030711838X,9780307118390.0,Mercer Mayer,1975.0,Just for You,Just for You (Little Critter),eng,4.25,22965,22979,114,265,812,4050,5630,12222,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559953221l/386234._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5004,294047,294047,2492953,46,60002492,9780060002500.0,James Rollins,2002.0,Amazonia,Amazonia,eng,4.11,20410,22080,851,203,765,4150,8178,8784,https://images.gr-assets.com/books/1440044334l/294047.jpg,https://images.gr-assets.com/books/1440044334s/294047.jpg\n5005,46674,46674,1892311,42,380810336,9780380810340.0,David D. Burns,1980.0, Feeling Good: The New Mood Therapy,Feeling Good: The New Mood Therapy,en-US,3.95,17065,18208,540,584,1127,3881,5692,6924,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440657672l/46674._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5006,114184,114184,1553106,80,515141399,9780515141400.0,Nora Roberts,2005.0,Blue Smoke,Blue Smoke,eng,3.97,24366,26162,804,252,1220,6393,9565,8732,https://images.gr-assets.com/books/1309286007l/114184.jpg,https://images.gr-assets.com/books/1309286007s/114184.jpg\n5007,6528,6528,947822,74,425210278,9780425210280.0,Patricia Cornwell,2005.0,Predator,\"Predator (Kay Scarpetta, #14)\",en-US,3.67,21668,23681,881,717,2195,7021,8062,5686,https://images.gr-assets.com/books/1310552145l/6528.jpg,https://images.gr-assets.com/books/1310552145s/6528.jpg\n5008,720298,720298,706540,40,894864025,9780894864020.0,Melody Beattie,1986.0,Codependent No More: How to Stop Controlling Others and Start Caring for Yourself,Codependent No More: How to Stop Controlling Others and Start Caring for Yourself,,4.13,18340,19838,737,315,853,3510,6440,8720,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390621839l/720298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5009,254308,254308,1192093,288,1933480092,9781933480090.0,\"Ivan Goncharov, Stephen Pearl, Galya Diment\",1859.0,Обломов,Oblomov,eng,4.0,18458,20992,578,493,1299,4018,7052,8130,https://images.gr-assets.com/books/1456384296l/254308.jpg,https://images.gr-assets.com/books/1456384296s/254308.jpg\n5010,198332,198332,191850,70,743426800,9780743426800.0,Clive Cussler,1994.0,Inca Gold,\"Inca Gold (Dirk Pitt, #12)\",eng,3.96,20297,21678,489,131,688,5425,9017,6417,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172611303l/198332.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5011,18167006,18167006,25533215,27,1400069629,9781400069620.0,Ruth Reichl,2014.0,Delicious!,Delicious!,eng,3.75,17657,20318,3322,483,1570,5500,7830,4935,https://images.gr-assets.com/books/1404478598l/18167006.jpg,https://images.gr-assets.com/books/1404478598s/18167006.jpg\n5012,6496815,6496815,6688299,39,446504122,9780446504130.0,\"Po Bronson, Ashley Merryman\",2008.0,NurtureShock: New Thinking About Children,NurtureShock: New Thinking About Children,en-US,4.04,17310,20054,2789,218,733,3803,8585,6715,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442285268l/6496815._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5013,1849,1849,2834249,59,044657967X,9780446579670.0,Nelson DeMille,2006.0,Wild Fire,\"Wild Fire (John Corey, #4)\",en-US,3.99,18529,20172,959,192,740,4446,8588,6206,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442668457l/1849._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5014,154423,154423,1612722,73,743497295,9780743497300.0,Mary Higgins Clark,2006.0,Two Little Girls in Blue,Two Little Girls in Blue,en-US,3.85,20727,22255,1197,290,1407,6222,7849,6487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348663827l/154423.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5015,589979,589979,2960453,36,055327211X,9780553272120.0,\"Raymond E. Feist, Janny Wurts\",1987.0,Daughter of the Empire,\"Daughter of the Empire (The Empire Trilogy, #1)\",eng,4.24,24055,25653,557,181,757,3846,8761,12108,https://images.gr-assets.com/books/1404668411l/589979.jpg,https://images.gr-assets.com/books/1404668411s/589979.jpg\n5016,688191,688191,674547,35,689872372,9780689872370.0,Neal Shusterman,2006.0,Everlost,\"Everlost (Skinjacker, #1)\",eng,3.94,24506,25778,2431,587,1528,5731,8966,8966,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1534705392l/688191._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5017,8534799,8534799,13402106,23,1439136807,9781439136800.0,Kresley Cole,2011.0,Dreams of a Dark Warrior,Dreams of a Dark Warrior (Immortals After Dark #11),en-US,4.39,28315,30524,1313,179,567,3319,9425,17034,https://images.gr-assets.com/books/1285724086l/8534799.jpg,https://images.gr-assets.com/books/1285724086s/8534799.jpg\n5018,7824997,7824997,10872266,63,142428698,9780142428700.0,\"John Grisham, Richard Thomas\",2010.0,\"Theodore Boone, Kid Lawyer\",\"Theodore Boone: Kid Lawyer (Theodore Boone, #1)\",eng,3.72,19284,23368,2965,609,1937,6872,7939,6011,https://images.gr-assets.com/books/1275094812l/7824997.jpg,https://images.gr-assets.com/books/1275094812s/7824997.jpg\n5019,34072,34072,1315,17,224063979,9780224063980.0,Chris Ware,2000.0,Jimmy Corrigan: The Smartest Kid on Earth,\"Jimmy Corrigan, the Smartest Kid on Earth\",,4.1,17128,19120,1083,664,1163,2855,5391,9047,https://images.gr-assets.com/books/1327962921l/34072.jpg,https://images.gr-assets.com/books/1327962921s/34072.jpg\n5020,39980,39980,39678,30,142300705,9780142300700.0,Richard Peck,2000.0,A Year Down Yonder,\"A Year Down Yonder (A Long Way from Chicago, #2)\",eng,4.1,23310,24350,1635,454,1004,4422,8278,10192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388238223l/39980.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5021,16163690,16163690,22006731,10,,,Kristen Ashley,2013.0,Own the Wind,\"Own the Wind (Chaos, #1)\",eng,4.22,38673,39793,2933,602,1321,5592,13534,18744,https://images.gr-assets.com/books/1358119230l/16163690.jpg,https://images.gr-assets.com/books/1358119230s/16163690.jpg\n5022,4516,4516,1882717,106,8423648990,9788423648990.0,Carlos Ruiz Zafón,1999.0,Marina,Marina,spa,3.99,18260,24929,1976,304,1299,5383,9274,8669,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165444662l/4516.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5024,15054,15054,809754,37,679744479,9780679744470.0,Jeanette Winterson,1992.0,Written on the Body,Written on the Body,en-US,4.08,18203,19735,1377,344,997,3563,6619,8212,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924844l/15054.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5025,7849341,7849341,10966836,42,1450595987,9781450595990.0,Colleen Houck,2011.0,Tiger's Voyage,\"Tiger's Voyage (The Tiger Saga, #3)\",eng,4.35,24495,26949,2140,398,938,3294,6616,15703,https://images.gr-assets.com/books/1320459742l/7849341.jpg,https://images.gr-assets.com/books/1320459742s/7849341.jpg\n5026,605015,605015,591569,33,7203116,9780007203120.0,Dean Koontz,2009.0,Dean Koontz's Frankenstein: Dead and Alive,\"Dead and Alive (Dean Koontz's Frankenstein, #3)\",eng,4.01,18310,20671,731,305,1070,4583,6906,7807,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347873655l/605015.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5027,4591,4591,1987129,44,60894083,9780060894080.0,Matt Ridley,1999.0,Genome: The Autobiography of a Species in 23 Chapters,Genome: the Autobiography of a Species in 23 Chapters,en-US,4.02,17684,18917,713,422,777,3656,7196,6866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439697027l/4591._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5028,53580,53580,52255,15,671449028,9780671449020.0,Sandra Boynton,1982.0,The Going-To-Bed Book,The Going-To-Bed Book,en-US,4.22,21078,21374,458,281,757,3667,6038,10631,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5029,112675,112675,108493,45,64473627,9780064473620.0,Louise Rennison,2001.0,Knocked out by my nunga-nungas,\"Knocked Out by My Nunga-Nungas (Confessions of Georgia Nicolson, #3)\",en-US,3.97,24077,26587,590,400,1362,6431,8864,9530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429196547l/112675.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5030,27526,27526,1008407,34,842332294,9780842332290.0,\"Tim LaHaye, Jerry B. Jenkins\",2001.0,The Sacrilege: The Antichrist Takes the Throne,\"Desecration (Left Behind, #9)\",en-US,4.0,19562,20697,272,463,1166,4409,6539,8120,https://images.gr-assets.com/books/1406505722l/27526.jpg,https://images.gr-assets.com/books/1406505722s/27526.jpg\n5031,18114068,18114068,25441299,31,1594204993,9781594205000.0,Phil Klay,2014.0,Redeployment,Redeployment,eng,3.98,15597,18114,2535,284,843,3662,7575,5750,https://images.gr-assets.com/books/1417987993l/18114068.jpg,https://images.gr-assets.com/books/1417987993s/18114068.jpg\n5032,6512140,6512140,4733312,20,385733976,9780385733980.0,Libba Bray,2009.0,Going Bovine,Going Bovine,eng,3.65,26259,27233,3602,1693,2996,6374,8229,7941,https://images.gr-assets.com/books/1320391025l/6512140.jpg,https://images.gr-assets.com/books/1320391025s/6512140.jpg\n5033,25807,25807,808562,115,752861743,9780752861750.0,James M. Cain,1934.0,The Postman Always Rings Twice ,The Postman Always Rings Twice,eng,3.81,19416,23168,1559,421,1454,6188,9203,5902,https://images.gr-assets.com/books/1344265267l/25807.jpg,https://images.gr-assets.com/books/1344265267s/25807.jpg\n5034,6555517,6555517,6549320,36,385736843,9780385736850.0,Carrie Ryan,2010.0,The Dead-Tossed Waves ,\"The Dead-Tossed Waves (The Forest of Hands and Teeth, #2)\",en-US,3.91,26347,28001,2640,669,1921,6150,9683,9578,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442965460l/6555517._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5035,9530,9530,1267146,33,965925072,9780965925080.0,Robert Kurson,2004.0,Shadow Divers: The True Adventure of Two Americans Who Risked Everything to Solve One of the Last Mysteries of World War II,Shadow Divers,eng,4.26,16917,19263,1766,185,419,2485,7204,8970,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166028017l/9530.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5036,8293938,8293938,13142485,30,385907508,9780385907510.0,Clare Vanderpool,2010.0,Moon Over Manifest,Moon Over Manifest,eng,4.02,23298,24791,4041,567,1125,4570,9591,8938,https://images.gr-assets.com/books/1320541883l/8293938.jpg,https://images.gr-assets.com/books/1320541883s/8293938.jpg\n5037,77103,77103,74541,58,375758771,9780375758780.0,Amitav Ghosh,2000.0,The Glass Palace,The Glass Palace,eng,3.94,16535,17741,1284,219,867,3990,7401,5264,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520866736l/77103._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5040,16279856,16279856,22380916,46,385741391,9780385741390.0,James Dashner,2013.0,The Eye of Minds,\"The Eye of Minds (The Mortality Doctrine, #1)\",eng,3.85,22637,26536,3517,732,2073,6145,9021,8565,https://images.gr-assets.com/books/1358659346l/16279856.jpg,https://images.gr-assets.com/books/1358659346s/16279856.jpg\n5041,140278,140278,6490729,233,1579126936,9781579126930.0,Agatha Christie,1957.0,4.50 From Paddington,\"4:50 from Paddington (Miss Marple, #8)\",eng,3.92,23416,28972,1254,128,923,7844,12209,7868,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388324483l/140278.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5042,74036,74036,1961195,66,749934123,9780749934120.0,J.D. Robb,1997.0,Ceremony in Death,\"Ceremony in Death (In Death, #5)\",eng,4.26,25093,29471,983,100,548,4478,10720,13625,https://images.gr-assets.com/books/1376018955l/74036.jpg,https://images.gr-assets.com/books/1376018955s/74036.jpg\n5043,18373214,18373214,2220355,104,345807154,9780345807150.0,\"Jo Nesbø, Don Bartlett\",1998.0,Kakerlakkene,\"Cockroaches (Harry Hole, #2)\",eng,3.71,14717,22619,1736,176,1252,7439,9864,3888,https://images.gr-assets.com/books/1418343189l/18373214.jpg,https://images.gr-assets.com/books/1418343189s/18373214.jpg\n5044,140078,140078,3159799,41,425212033,9780425212040.0,Charlaine Harris,2006.0,Grave Surprise,\"Grave Surprise (Harper Connelly, #2)\",en-US,3.88,27905,31027,1186,190,1340,8731,12451,8315,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426911066l/140078.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5045,3304,3304,1266827,93,60535032,9780060535030.0,\"Isabel Allende, Margaret Sayers Peden\",2002.0,La ciudad de las bestias,\"City of the Beasts (Eagle and Jaguar, #1)\",eng,3.69,15497,22122,1155,635,2134,6280,7515,5558,https://images.gr-assets.com/books/1331488122l/3304.jpg,https://images.gr-assets.com/books/1331488122s/3304.jpg\n5046,2364284,2364284,14413597,42,9770915343,9789770915350.0,\"Naguib Mahfouz, نجيب محفوظ\",1959.0,أولاد حارتنا,أولاد حارتنا,ara,4.1,14860,16847,1938,599,891,2455,5261,7641,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1213947027l/2364284.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5047,68497,68497,731674,46,345460014,9780345460010.0,China Miéville,2002.0,The Scar,\"The Scar (Bas-Lag, #2)\",eng,4.15,20745,23257,1393,245,774,3644,9104,9490,https://images.gr-assets.com/books/1320435192l/68497.jpg,https://images.gr-assets.com/books/1320435192s/68497.jpg\n5048,23225,23225,3239545,45,60751649,9780060751650.0,Meg Cabot,2003.0,Haunted,\"Haunted (The Mediator, #5)\",eng,4.15,29460,31368,681,195,998,5959,10981,13235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187648l/23225.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5049,28553,28553,1592020,45,689860064,9780689860060.0,Anne McCaffrey,1979.0,\"Dragondrums (Pern: Harper Hall, #3)\",\"Dragondrums (Harper Hall, #3)\",eng,4.04,25473,27874,429,109,1035,6595,9959,10176,https://images.gr-assets.com/books/1410942131l/28553.jpg,https://images.gr-assets.com/books/1410942131s/28553.jpg\n5050,9545064,9545064,13472700,34,446574465,9780446574460.0,Rachel Simon,2011.0,The Story of Beautiful Girl,The Story of Beautiful Girl,,3.92,19655,22401,3517,279,1111,5172,9503,6336,https://images.gr-assets.com/books/1336851169l/9545064.jpg,https://images.gr-assets.com/books/1336851169s/9545064.jpg\n5051,18646,18646,2351782,60,140280553,9780140280560.0,Dava Sobel,1999.0,Galileo's Daughter,\"Galileo's Daughter: A Historical Memoir of Science, Faith and Love\",en-US,3.74,21260,22333,1363,667,1607,6106,8420,5533,https://images.gr-assets.com/books/1414607526l/18646.jpg,https://images.gr-assets.com/books/1414607526s/18646.jpg\n5052,42692,42692,1437605,42,553241605,9780553241600.0,Leon Uris,1961.0,Mila 18,Mila 18,eng,4.27,19323,20170,471,90,352,3095,7108,9525,https://images.gr-assets.com/books/1359742799l/42692.jpg,https://images.gr-assets.com/books/1359742799s/42692.jpg\n5054,1330324,1330324,1319808,75,071956896X,9780719568960.0,Amitav Ghosh,2008.0,Sea of Poppies,\"Sea of Poppies (Ibis Trilogy, #1)\",eng,3.93,15499,18280,2023,317,927,3868,7794,5374,https://images.gr-assets.com/books/1327376395l/1330324.jpg,https://images.gr-assets.com/books/1327376395s/1330324.jpg\n5055,99245,99245,858297,47,553290991,9780553291000.0,\"Isaac Asimov, Robert Silverberg\",1970.0,Nightfall,Nightfall,eng,4.01,21683,22592,567,178,949,5026,8714,7725,https://images.gr-assets.com/books/1368557860l/99245.jpg,https://images.gr-assets.com/books/1368557860s/99245.jpg\n5056,18005,18005,1878218,18,152018484,9780152018480.0,\"Melinda Long, David Shannon\",2003.0,How I Became a Pirate,How I Became a Pirate,eng,4.07,21554,21612,512,373,1157,4425,6333,9324,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388284455l/18005.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5057,99208,99208,2803318,39,61129763,9780061129770.0,Edward Abbey,1975.0,\"The Monkey Wrench Gang (Monkey Wrench Gang, #1)\",\"The Monkey Wrench Gang (Monkey Wrench Gang, #1)\",en-US,4.08,15513,16889,1125,210,732,3053,6325,6569,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349067863l/99208.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5058,6323821,6323821,6259580,61,1400063841,9781400063840.0,John Irving,2009.0,Last Night in Twisted River,Last Night in Twisted River,eng,3.74,18441,20676,2592,580,1708,5141,8268,4979,https://images.gr-assets.com/books/1399850194l/6323821.jpg,https://images.gr-assets.com/books/1399850194s/6323821.jpg\n5059,10115852,10115852,15013397,24,006204964X,9780062049640.0,Rob Bell,2011.0,Love wins,\"Love Wins: A Book About Heaven, Hell, and the Fate of Every Person Who Ever Lived\",eng,3.54,17668,19093,1979,2184,1771,4050,5805,5283,https://images.gr-assets.com/books/1327878550l/10115852.jpg,https://images.gr-assets.com/books/1327878550s/10115852.jpg\n5060,9376345,9376345,13673332,23,451233182,9780451233190.0,Rachel Caine,2011.0,Bite Club,\"Bite Club (The Morganville Vampires, #10)\",eng,4.23,25064,26990,1131,233,892,4496,8183,13186,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177342l/9376345.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5061,78970,78970,520878,53,312933541,9780312933550.0,Jeffrey Archer,1985.0,A Matter of Honor,A Matter of Honor,,3.9,16502,18434,348,197,784,4850,7478,5125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390767980l/78970.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5062,469901,469901,487629,47,743482883,9780743482880.0,Linda Howard,2000.0,Mr. Perfect,Mr. Perfect,eng,4.07,24753,26801,1306,416,1139,5218,9512,10516,https://images.gr-assets.com/books/1327960914l/469901.jpg,https://images.gr-assets.com/books/1327960914s/469901.jpg\n5063,16093188,16093188,21899204,37,,,M. Leighton,2013.0,Up to Me,\"Up to Me (The Bad Boys, #2)\",eng,4.12,30597,32007,1862,285,1115,5664,12312,12631,https://images.gr-assets.com/books/1355328750l/16093188.jpg,https://images.gr-assets.com/books/1355328750s/16093188.jpg\n5064,16124019,16124019,21940541,12,,,Mira Lyn Kelly,2012.0,Waking Up Married,\"Waking Up Married (Waking Up, #1)\",en-US,3.53,23812,24220,1725,915,2538,8222,7874,4671,https://images.gr-assets.com/books/1352411782l/16124019.jpg,https://images.gr-assets.com/books/1352411782s/16124019.jpg\n5065,1225261,1225261,2906898,75,055380555X,9780553805550.0,Linwood Barclay,2007.0,No Time for Goodbye,No Time for Goodbye (No Time For Goodbye #1),eng,4.0,17413,21479,1935,223,926,4516,8859,6955,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182031065l/1225261._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5066,207802,207802,2156005,24,60730269,9780060730260.0,Katherine Hannigan,2004.0,\"Ida B. . . and Her Plans to Maximize Fun, Avoid Disaster, and (Possibly) Save the World\",\"Ida B. . . and Her Plans to Maximize Fun, Avoid Disaster, and (Possibly) Save the World\",eng,3.86,20551,20914,1639,505,1491,5255,6759,6904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924484l/207802.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5067,4703450,4703450,4767778,33,7273746,9780007273740.0,Robin Hobb,2009.0,The Dragon Keeper,\"The Dragon Keeper (Rain Wild Chronicles, #1)\",eng,3.93,19620,23753,1321,269,1086,5714,9595,7089,https://images.gr-assets.com/books/1330079386l/4703450.jpg,https://images.gr-assets.com/books/1330079386s/4703450.jpg\n5068,210404,210404,321811,74,195007778,9780195007770.0,Aldo Leopold,1949.0,A Sand County Almanac,A Sand County Almanac and Sketches Here and There,,4.24,16792,19142,908,184,601,2919,6156,9282,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1283195046l/210404.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5069,895886,895886,1065795,93,805072063,9780805072070.0,\"Eric Knight, Marguerite Kirmse\",1940.0,Lassie Come-Home,Lassie Come-Home,,4.16,19100,19661,198,310,814,3632,5564,9341,https://images.gr-assets.com/books/1316130656l/895886.jpg,https://images.gr-assets.com/books/1316130656s/895886.jpg\n5070,178788,178788,544922,55,1932100660,9781932100660.0,\"T. Colin Campbell, Thomas M. Campbell II\",2001.0,\"The China Study: The Most Comprehensive Study of Nutrition Ever Conducted and the Startling Implications for Diet, Weight Loss and Long-term Health\",\"The China Study: The Most Comprehensive Study of Nutrition Ever Conducted And the Startling Implications for Diet, Weight Loss, And Long-term Health\",en-GB,4.21,16485,18454,2165,322,688,2629,5945,8870,https://images.gr-assets.com/books/1376474019l/178788.jpg,https://images.gr-assets.com/books/1376474019s/178788.jpg\n5071,1013383,1013383,999507,41,333710932,9780333710940.0,\"Julia Donaldson, Axel Scheffler\",1999.0,The Gruffalo,The Gruffalo,eng,4.47,19609,21214,1083,173,431,2028,5211,13371,https://images.gr-assets.com/books/1329674496l/1013383.jpg,https://images.gr-assets.com/books/1329674496s/1013383.jpg\n5072,359,359,809325,55,345455290,9780345455290.0,Douglas Adams,2002.0,The Salmon of Doubt: Hitchhiking the Galaxy One Last Time,\"The Salmon of Doubt (Dirk Gently, #3)\",eng,3.92,20177,22414,775,183,1163,5791,8425,6852,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273676l/359.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5073,250024,250024,925052,96,1857987632,9781857987640.0,Arthur C. Clarke,1956.0,The City and the Stars,The City and the Stars,eng,4.08,19032,20949,683,118,704,4298,8026,7803,https://images.gr-assets.com/books/1340242824l/250024.jpg,https://images.gr-assets.com/books/1340242824s/250024.jpg\n5074,18667307,18667307,26492586,27,2723495612,9782723495620.0,\"Sui Ishida, 石田 スイ\",2012.0,東京喰種トーキョーグール 1,\"Tokyo Ghoul, tome 1 (Tokyo Ghoul, #1)\",fre,4.43,43490,46108,940,777,1077,4554,10673,29027,https://images.gr-assets.com/books/1498748457l/18667307.jpg,https://images.gr-assets.com/books/1498748457s/18667307.jpg\n5075,352262,352262,1484561,89,316737372,9780316737370.0,Cressida Cowell,2003.0,How to train your dragon,\"How to Train Your Dragon (How to Train Your Dragon, #1)\",en-US,3.85,23042,26323,3053,548,1840,6689,9091,8155,https://images.gr-assets.com/books/1431930187l/352262.jpg,https://images.gr-assets.com/books/1431930187s/352262.jpg\n5076,6753,6753,1221616,53,034911188X,9780349111890.0,David Foster Wallace,1999.0,Brief Interviews with Hideous Men,Brief Interviews with Hideous Men,eng,3.88,15555,19502,1460,422,1208,4382,7838,5652,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347635121l/6753.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5077,170619,170619,1493482,71,1416516727,9781416516730.0,Mary Higgins Clark,1992.0,All Around the Town,All Around the Town,,3.94,20029,21779,568,147,791,6011,8133,6697,https://images.gr-assets.com/books/1355139896l/170619.jpg,https://images.gr-assets.com/books/1355139896s/170619.jpg\n5078,4758093,4758093,4822885,30,61767581,9780061767590.0,Lauren Conrad,2009.0,L.A. Candy,\"L.A. Candy (L.A. Candy, #1)\",en-US,3.36,21910,23402,2076,1192,3587,8352,6128,4143,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442846045l/4758093._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5079,6618272,6618272,6812394,47,1440154236,9781440154230.0,Kiera Cass,2009.0,The Siren,The Siren,eng,3.78,21740,32274,4550,1015,2807,8396,10194,9862,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348131642l/6618272.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5080,43993,43993,5951642,48,340686030,9780340686030.0,Greg Iles,1999.0,The Quiet Game,The Quiet Game,eng,4.17,16853,21316,1344,210,494,3199,8866,8547,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920855l/43993.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5081,22680,22680,1704815,16,679764410,9780679764410.0,Joseph J. Ellis,1996.0,American Sphinx: The Character of Thomas Jefferson,American Sphinx: The Character of Thomas Jefferson,eng,3.9,17375,17625,533,495,945,3917,6697,5571,https://images.gr-assets.com/books/1403187214l/22680.jpg,https://images.gr-assets.com/books/1403187214s/22680.jpg\n5082,11777020,11777020,3609998,101,307948684,9780307948690.0,\"Jo Nesbø, Don Bartlett\",2008.0,Hodejegerne,Headhunters,eng,3.78,16509,22247,1764,438,1483,6052,8732,5542,https://images.gr-assets.com/books/1320551831l/11777020.jpg,https://images.gr-assets.com/books/1320551831s/11777020.jpg\n5084,243598,243598,2287950,70,141023422,9780141023430.0,Paul Bowles,1949.0,The Sheltering Sky,The Sheltering Sky,eng,3.92,16494,19833,1380,490,1325,4185,7212,6621,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347986956l/243598.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5085,22910900,22910900,42475450,40,1406331163,9781406331160.0,Patrick Ness,2015.0,The Rest of Us Just Live Here,The Rest of Us Just Live Here,eng,3.76,23412,29416,5689,560,2098,8153,11561,7044,https://images.gr-assets.com/books/1429800081l/22910900.jpg,https://images.gr-assets.com/books/1429800081s/22910900.jpg\n5086,1933181,1933181,1935630,34,345495357,9780345495360.0,Alison Weir,2008.0,The Lady Elizabeth,The Lady Elizabeth,eng,3.97,20345,21512,1142,263,909,4899,8634,6807,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431623866l/1933181._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5087,16131193,16131193,21956738,21,1455503258,9781455503250.0,Lily Koppel,2013.0,The Astronaut Wives Club,The Astronaut Wives Club,eng,3.26,17837,20282,3346,1364,3301,7092,5662,2863,https://images.gr-assets.com/books/1352436564l/16131193.jpg,https://images.gr-assets.com/books/1352436564s/16131193.jpg\n5088,184419,184419,195447,548,375757910,9780375757910.0,\"G.K. Chesterton, Jonathan Lethem\",1908.0,The Man Who Was Thursday - A Nightmare,The Man Who Was Thursday: A Nightmare,eng,3.85,17481,23056,2269,394,1655,5586,8738,6683,https://images.gr-assets.com/books/1403181403l/184419.jpg,https://images.gr-assets.com/books/1403181403s/184419.jpg\n5089,764903,764903,1925199,82,006008460X,9780060084610.0,\"Frank B. Gilbreth Jr., Ernestine Gilbreth Carey\",1948.0,Cheaper by the Dozen,Cheaper by the Dozen,eng,3.99,26266,28494,1557,355,1284,6465,10435,9955,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348220916l/764903.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5090,2198274,2198274,2204022,53,446581194,9780446581200.0,\"Douglas Preston, Mario Spezi\",2008.0,The Monster of Florence: A True Story,The Monster of Florence,en-US,3.72,21548,23310,2423,443,1799,6746,9163,5159,https://images.gr-assets.com/books/1306075698l/2198274.jpg,https://images.gr-assets.com/books/1306075698s/2198274.jpg\n5091,112525,112525,1693257,44,031605755X,9780316057550.0,Daniel Woodrell,2006.0,Winter's Bone,Winter's Bone,eng,3.92,18306,23007,3070,350,1283,4893,9755,6726,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387668411l/112525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5092,30243,30243,3341458,40,553816322,9780553816330.0,Laurell K. Hamilton,2004.0,\"Seduced by Moonlighty (Merry Gentry, #3)\",\"Seduced by Moonlight (Merry Gentry, #3)\",eng,4.05,26388,30253,511,401,1590,6308,9755,12199,https://images.gr-assets.com/books/1500145890l/30243.jpg,https://images.gr-assets.com/books/1500145890s/30243.jpg\n5093,1297150,1297150,3186921,61,60888644,9780060888640.0,Bernard Cornwell,2007.0,Sword Song,\"Sword Song (The Saxon Stories, #4)\",en-US,4.28,17106,20580,698,31,206,2659,8813,8871,https://images.gr-assets.com/books/1407111536l/1297150.jpg,https://images.gr-assets.com/books/1407111536s/1297150.jpg\n5094,1734639,1734639,1732127,19,61251348,9780061251340.0,Jessica Seinfeld,2007.0,Deceptively Delicious: Simple Secrets to Get Your Kids Eating Good Food,Deceptively Delicious: Simple Secrets to Get Your Kids Eating Good Food,en-US,3.39,17837,18106,671,1390,2619,5606,4596,3895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442936631l/1734639._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5095,228534,228534,221326,59,316780375,9780316780380.0,Anita Shreve,1997.0,The Weight of Water,The Weight of Water,eng,3.62,21394,22568,1452,442,1974,7402,8542,4208,https://images.gr-assets.com/books/1327936566l/228534.jpg,https://images.gr-assets.com/books/1327936566s/228534.jpg\n5096,16062210,16062210,21850431,10,1301786454,9781301786460.0,Katie Ashley,2013.0,Music of the Heart,\"Music of the Heart (Runaway Train, #1)\",eng,4.0,32013,33943,2290,886,1896,6374,11851,12936,https://images.gr-assets.com/books/1458915186l/16062210.jpg,https://images.gr-assets.com/books/1458915186s/16062210.jpg\n5097,41951,41951,3154658,59,451203771,9780451203780.0,Maeve Binchy,2000.0,The Scarlet Feather,Scarlet Feather,eng,3.93,20948,22198,796,141,817,5761,9175,6304,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926366l/41951.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5099,34503,34503,1371210,26,60507772,9780060507770.0,\"Terry Pratchett, Paul Kidby\",2001.0,The Last Hero,\"The Last Hero (Discworld, #27; Rincewind #7)\",eng,4.15,22537,25208,568,53,600,4884,9544,10127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388382236l/34503.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5100,83539,83539,82472,52,553275720,9780553275730.0,Isaac Asimov,1966.0,Fantastic Voyage,Fantastic Voyage,,3.89,20415,21127,303,183,974,5913,8066,5991,https://images.gr-assets.com/books/1320425345l/83539.jpg,https://images.gr-assets.com/books/1320425345s/83539.jpg\n5101,11472,11472,888905,33,312243359,9780312243360.0,Philip Gourevitch,1998.0,We Wish to Inform You That Tomorrow We Will Be Killed with Our Families,We Wish to Inform You That Tomorrow We Will Be Killed with Our Families,en-US,4.3,18716,19546,1331,205,420,2329,6920,9672,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442723264l/11472._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5103,16248078,16248078,22590226,43,62073168,9780062073170.0,Daniel Silva,2013.0,The English Girl,\"The English Girl (Gabriel Allon, #13)\",eng,4.08,15292,20262,1970,156,592,3639,8892,6983,https://images.gr-assets.com/books/1371747020l/16248078.jpg,https://images.gr-assets.com/books/1371747020s/16248078.jpg\n5104,8296140,8296140,13144758,18,1400068169,9781400068170.0,Susan Vreeland,2010.0,Clara and Mr. Tiffany,Clara and Mr. Tiffany,,3.71,23459,24687,1914,1041,2363,6643,7285,7355,https://images.gr-assets.com/books/1320562282l/8296140.jpg,https://images.gr-assets.com/books/1320562282s/8296140.jpg\n5105,18295852,18295852,24813023,31,316254770,9780316254780.0,Jennifer E. Smith,2014.0,The Geography of You and Me,The Geography of You and Me,eng,3.68,22368,25739,3043,718,2186,7881,8737,6217,https://images.gr-assets.com/books/1376408056l/18295852.jpg,https://images.gr-assets.com/books/1376408056s/18295852.jpg\n5106,7991200,7991200,12469574,46,1409521966,9781409521970.0,L.A. Weatherly,2010.0,Angel ,\"Angel (Angel, #1)\",eng,3.89,22262,29204,2217,906,2230,6529,9184,10355,https://images.gr-assets.com/books/1326626626l/7991200.jpg,https://images.gr-assets.com/books/1326626626s/7991200.jpg\n5107,11254850,11254850,16181497,23,1416997946,9781416997950.0,Brandon Mull,2012.0,\"Seeds of Rebellion (Beyonders, #2)\",\"Seeds of Rebellion (Beyonders, #2)\",eng,4.25,20291,21071,1183,286,542,2943,7085,10215,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247992l/11254850.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5108,82751,82751,1429851,29,440228654,9780440228650.0,Adeline Yen Mah,1999.0,Chinese Cinderella: The True Story of an Unwanted Daughter,Chinese Cinderella: The True Story of an Unwanted Daughter,en-US,4.04,21410,24097,2241,300,995,4798,9366,8638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400868639l/82751.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5109,14785,14785,1652157,39,425182878,9780425182870.0,John Sandford,2001.0,Chosen Prey,\"Chosen Prey (Lucas Davenport, #12)\",en-US,4.23,20176,21382,334,89,272,3316,8692,9013,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434789948l/14785._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5112,2880715,2880715,2906930,28,451225007,9780451225010.0,J.R. Ward,2008.0,The Black Dagger Brotherhood: An Insider's Guide,The Black Dagger Brotherhood: An Insider's Guide,eng,4.32,26144,27288,980,209,846,4135,7012,15086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281625l/2880715.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5113,6120349,6120349,6298472,18,1600104835,9781600104830.0,\"Joe Hill, Gabriel Rodríguez\",2009.0,Head Games ,\"Locke & Key, Vol. 2: Head Games\",eng,4.36,22505,24279,1430,176,388,2454,8876,12385,https://images.gr-assets.com/books/1351338040l/6120349.jpg,https://images.gr-assets.com/books/1351338040s/6120349.jpg\n5114,91247,91247,708860,48,192751034,9780192751030.0,\"Beverly Cleary, Alan Tiegreen\",1984.0,Ramona and Her Father,\"Ramona and Her Father (Ramona, #4)\",eng,4.02,22181,23472,532,366,897,5358,8193,8658,https://images.gr-assets.com/books/1408925643l/91247.jpg,https://images.gr-assets.com/books/1408925643s/91247.jpg\n5115,49596,49596,2146310,647,1600963943,9781600963940.0,Agatha Christie,1922.0,The Secret Adversary,The Secret Adversary (Tommy and Tuppence #1),eng,3.82,20457,26815,1924,348,1580,7610,10205,7072,https://images.gr-assets.com/books/1331721280l/49596.jpg,https://images.gr-assets.com/books/1331721280s/49596.jpg\n5116,53413,53413,1794732,191,394752848,9780394752850.0,\"Julio Cortázar, Gregory Rabassa\",1963.0,Rayuela,Hopscotch,eng,4.25,10309,20741,1338,454,924,2615,5696,11052,https://images.gr-assets.com/books/1367728486l/53413.jpg,https://images.gr-assets.com/books/1367728486s/53413.jpg\n5118,25689074,25689074,45517469,17,1250091845,9781250091840.0,Marissa Meyer,2016.0,Stars Above,\"Stars Above (The Lunar Chronicles, #4.5)\",eng,4.27,29333,32063,5123,93,541,4650,12077,14702,https://images.gr-assets.com/books/1472473049l/25689074.jpg,https://images.gr-assets.com/books/1472473049s/25689074.jpg\n5119,1207904,1207904,3219177,40,038551851X,9780385518510.0,Eric Clapton,2007.0,Clapton: The Autobiography,Clapton: The Autobiography,en-US,3.81,16369,18337,1272,321,1293,4948,6766,5009,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407042555l/1207904.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5120,647,647,621375,73,312421435,9780312421430.0,Naomi Klein,1999.0,No Logo,No Logo,en-US,3.86,18792,20634,767,415,1279,4865,8205,5870,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441567914l/647._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5121,43927,43927,14596877,80,451210557,9780451210560.0,Harlan Coben,2003.0,No Second Chance,No Second Chance,eng,4.05,18799,21774,1209,126,539,4305,9927,6877,https://images.gr-assets.com/books/1309281936l/43927.jpg,https://images.gr-assets.com/books/1309281936s/43927.jpg\n5122,7748,7748,273425,22,446698229,9780446698220.0,Hunter S. Thompson,1973.0,Fear and Loathing on the Campaign Trail '72,Fear and Loathing on the Campaign Trail '72,en-US,4.1,15306,16602,701,85,562,3216,6417,6322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191829l/7748.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5123,764434,764434,869390,75,743219600,9780743219600.0,P.D. James,1971.0,Shroud for a Nightingale,Shroud for a Nightingale (Adam Dalgliesh #4),eng,4.04,18044,18973,363,254,634,3937,7352,6796,https://images.gr-assets.com/books/1321172495l/764434.jpg,https://images.gr-assets.com/books/1321172495s/764434.jpg\n5124,21853633,21853633,41125528,23,1250019834,9781250019840.0,Sarah Addison Allen,2015.0,First Frost,\"First Frost (Waverley Family, #2)\",eng,3.95,20936,23486,3522,185,921,5727,9767,6886,https://images.gr-assets.com/books/1410962794l/21853633.jpg,https://images.gr-assets.com/books/1410962794s/21853633.jpg\n5125,223380,223380,216334,60,330426648,9780330426640.0,Ted Chiang,2002.0,Stories of Your Life and Others ,Stories of Your Life and Others,eng,4.27,16252,24581,3522,164,640,3251,8893,11633,https://images.gr-assets.com/books/1356138316l/223380.jpg,https://images.gr-assets.com/books/1356138316s/223380.jpg\n5126,53926,53926,2674629,130,9707704667,9789707704660.0,Mario Vargas Llosa,2006.0,Travesuras de la niña mala,Travesuras de la niña mala,spa,4.04,11707,19168,1478,285,1028,3604,7038,7213,https://images.gr-assets.com/books/1405421130l/53926.jpg,https://images.gr-assets.com/books/1405421130s/53926.jpg\n5127,6449290,6449290,6639392,17,1565126807,9781565126800.0,Heidi W. Durrow,2010.0,The Girl Who Fell From the Sky,The Girl Who Fell from the Sky,en-US,3.6,19139,22115,3225,326,1746,7560,9322,3161,https://images.gr-assets.com/books/1285276805l/6449290.jpg,https://images.gr-assets.com/books/1285276805s/6449290.jpg\n5128,4031,4031,1374605,59,375727272,9780375727280.0,Bret Easton Ellis,2005.0,Lunar Park,Lunar Park,,3.6,16431,18490,877,684,2040,5390,6336,4040,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385309748l/4031.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5129,32523,32523,1108519,53,553804324,9780553804320.0,Lisa Gardner,2007.0,\"Hide (Detective D.D. Warren, #2) \",\"Hide (Detective D.D. Warren, #2)\",eng,4.14,21892,25122,1556,107,495,4219,11168,9133,https://images.gr-assets.com/books/1327979037l/32523.jpg,https://images.gr-assets.com/books/1327979037s/32523.jpg\n5130,969177,969177,2523438,3,9832672368,,Habiburrahman El-Shirazy,2004.0,Ayat-ayat Cinta,Ayat-Ayat Cinta,ind,3.81,12345,12672,1394,376,1004,3175,4154,3963,https://images.gr-assets.com/books/1439347437l/969177.jpg,https://images.gr-assets.com/books/1439347437s/969177.jpg\n5131,29519514,29519514,49812102,18,1682305031,9781682305030.0,Erin Watt,2016.0,Broken prince,\"Broken Prince (The Royals, #2)\",eng,4.11,21901,27170,3523,429,1312,4619,9216,11594,https://images.gr-assets.com/books/1464248584l/29519514.jpg,https://images.gr-assets.com/books/1464248584s/29519514.jpg\n5132,16054811,16054811,21507847,84,385349831,9780385349830.0,\"Paulo Coelho, Margaret Jull Costa\",2012.0,Manuscrito encontrado em Accra,Manuscript Found in Accra,en-US,3.8,14318,18190,2093,654,1654,4277,5608,5997,https://images.gr-assets.com/books/1362586181l/16054811.jpg,https://images.gr-assets.com/books/1362586181s/16054811.jpg\n5133,9296438,9296438,14179025,27,031238078X,9780312380790.0,Lisa Scottoline,2011.0,Save Me,Save Me,,3.63,20168,21693,2592,749,2332,6182,7396,5034,https://images.gr-assets.com/books/1311983193l/9296438.jpg,https://images.gr-assets.com/books/1311983193s/9296438.jpg\n5134,52640,52640,942564,54,7117140,9780007117150.0,Clive Barker,1987.0,Weaveworld,Weaveworld,eng,4.13,19251,22529,851,328,963,3829,7757,9652,https://images.gr-assets.com/books/1329374451l/52640.jpg,https://images.gr-assets.com/books/1329374451s/52640.jpg\n5135,170650,170650,1470547,75,671758896,9780671758900.0,Mary Higgins Clark,1991.0,\"Loves Music, Loves to Dance\",\"Loves Music, Loves to Dance\",eng,3.89,21880,22750,666,148,998,6513,8580,6511,https://images.gr-assets.com/books/1416640001l/170650.jpg,https://images.gr-assets.com/books/1416640001s/170650.jpg\n5136,215542,215542,524457,30,689869126,9780689869130.0,D.J. MacHale,2005.0,The Rivers of Zadaa,\"The Rivers of Zadaa (Pendragon, #6)\",eng,4.19,20264,20945,317,200,652,3562,7165,9366,https://images.gr-assets.com/books/1432151614l/215542.jpg,https://images.gr-assets.com/books/1432151614s/215542.jpg\n5137,11227040,11227040,16152935,17,,,Kristen Ashley,2011.0,Sweet Dreams,\"Sweet Dreams (Colorado Mountain, #2)\",en-GB,4.42,34766,37269,2447,321,720,3357,11350,21521,https://images.gr-assets.com/books/1327912890l/11227040.jpg,https://images.gr-assets.com/books/1327912890s/11227040.jpg\n5138,133486,133486,2453716,52,345438310,9780345438320.0,Robert K. Massie,1967.0,Nicholas and Alexandra,Nicholas and Alexandra,eng,4.25,17709,19586,1007,250,380,2632,7300,9024,https://images.gr-assets.com/books/1333577599l/133486.jpg,https://images.gr-assets.com/books/1333577599s/133486.jpg\n5139,12275680,12275680,17251309,25,345527771,9780345527780.0,Janet Evanovich,2012.0,Wicked Business,\"Wicked Business (Lizzy & Diesel, #2)\",eng,3.76,24162,27369,2521,492,2107,8247,9155,7368,https://images.gr-assets.com/books/1328334213l/12275680.jpg,https://images.gr-assets.com/books/1328334213s/12275680.jpg\n5140,16054808,16054808,21839952,31,037587089X,9780375870900.0,Chris Grabenstein,2013.0,Escape from Mr. Lemoncello's Library,Escape from Mr. Lemoncello's Library (Mr. Lemoncello's Library #1),eng,4.13,21376,23515,3927,418,897,4027,8101,10072,https://images.gr-assets.com/books/1379335670l/16054808.jpg,https://images.gr-assets.com/books/1379335670s/16054808.jpg\n5141,17208,17208,1415529,41,345414004,9780345414010.0,Robert A. Heinlein,1982.0,Friday,Friday,eng,3.82,21388,22950,546,543,1656,6003,7877,6871,https://images.gr-assets.com/books/1315410828l/17208.jpg,https://images.gr-assets.com/books/1315410828s/17208.jpg\n5142,6926176,6926176,7155865,25,1414318634,9781414318640.0,Francine Rivers,2010.0,\"Her Mother's Hope (Marta's Legacy, #1)\",\"Her Mother's Hope (Marta's Legacy, #1)\",en-US,4.28,18257,19551,1128,202,570,2621,6413,9745,https://images.gr-assets.com/books/1406510447l/6926176.jpg,https://images.gr-assets.com/books/1406510447s/6926176.jpg\n5143,97860,97860,3036058,20,395870828,9780395870820.0,David Wiesner,1991.0,Tuesday,Tuesday,,4.17,21366,21869,1627,444,971,3555,6251,10648,https://images.gr-assets.com/books/1328870556l/97860.jpg,https://images.gr-assets.com/books/1328870556s/97860.jpg\n5144,19707,19707,5054714,64,399148701,9780399148700.0,Tom Clancy,2002.0,Red Rabbit,\"Red Rabbit (Jack Ryan Universe, #3)\",eng,3.64,19287,21029,501,557,1945,6626,7291,4610,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546283429l/19707.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5145,13986,13986,834071,26,886773784,9780886773790.0,Mercedes Lackey,1987.0,Arrows of the Queen (Heralds of Valdemar #1),\"Arrows of the Queen (Heralds of Valdemar, #1)\",en-US,4.16,26844,27646,770,273,921,4971,9367,12114,https://images.gr-assets.com/books/1296358547l/13986.jpg,https://images.gr-assets.com/books/1296358547s/13986.jpg\n5146,424,424,1844,34,374521727,9780374521720.0,Joan Didion,1968.0,Slouching Towards Bethlehem: Essays,Slouching Towards Bethlehem,,4.24,17787,20348,1571,146,558,2866,7513,9265,https://images.gr-assets.com/books/1327952074l/424.jpg,https://images.gr-assets.com/books/1327952074s/424.jpg\n5147,43917,43917,1844901,37,6497012,9780006497010.0,Raymond E. Feist,1995.0,Rise of a Merchant Prince,\"Rise of a Merchant Prince (The Serpentwar Saga, #2)\",,4.02,20661,21975,158,136,834,4918,8569,7518,https://images.gr-assets.com/books/1360282060l/43917.jpg,https://images.gr-assets.com/books/1360282060s/43917.jpg\n5148,7285498,7285498,8520753,12,62002325,9780062002330.0,Courtney Allison Moulton,2011.0,Angelfire,\"Angelfire (Angelfire, #1)\",en-US,3.93,27704,28225,1977,1099,1997,5723,8294,11112,https://images.gr-assets.com/books/1294531919l/7285498.jpg,https://images.gr-assets.com/books/1294531919s/7285498.jpg\n5149,12070846,12070846,17038427,22,1451665601,9781451665600.0,Stephen King,2011.0,Mile 81,Mile 81,eng,3.62,14213,20562,1569,490,1892,6828,7026,4326,https://images.gr-assets.com/books/1407138212l/12070846.jpg,https://images.gr-assets.com/books/1407138212s/12070846.jpg\n5150,446,446,1991577,66,312426232,9780312426230.0,Paul Auster,2005.0,The Brooklyn Follies,The Brooklyn Follies,eng,3.81,15635,18350,1348,241,1057,4746,8145,4161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285831l/446.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5151,277191,277191,1603405,53,689859392,9780689859400.0,\"Holly Black, Tony DiTerlizzi\",2004.0,The Ironwood Tree,\"The Ironwood Tree (The Spiderwick Chronicles, #4)\",eng,3.92,27293,28206,670,278,1417,7705,9741,9065,https://images.gr-assets.com/books/1417954144l/277191.jpg,https://images.gr-assets.com/books/1417954144s/277191.jpg\n5152,159582,159582,583534,94,689846231,9780689846240.0,Marjorie Kinnan Rawlings,1930.0,The Yearling,The Yearling,eng,3.99,21797,22845,865,628,1284,4723,7327,8883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348480795l/159582.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5153,13561164,13561164,19135892,30,373210639,9780373210630.0,Katie McGarry,2013.0,Dare You To,\"Dare You To (Pushing the Limits, #2)\",eng,4.18,32490,34744,3555,315,1121,5633,12760,14915,https://images.gr-assets.com/books/1354200468l/13561164.jpg,https://images.gr-assets.com/books/1354200468s/13561164.jpg\n5154,6952423,6952423,7187129,39,446569895,9780446569900.0,\"Ozzy Osbourne, Chris Ayres\",2009.0,I Am Ozzy,I Am Ozzy,en-US,4.05,16922,17959,1028,509,847,3207,5998,7398,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437442875l/6952423._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5155,11077,11077,713460,26,767915305,9780767915300.0,J. Maarten Troost,2003.0,The Sex Lives of Cannibals: Adrift in the Equatorial Pacific,The Sex Lives of Cannibals: Adrift in the Equatorial Pacific,eng,3.87,16954,17710,2016,332,1076,4235,7029,5038,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924418l/11077.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5156,10445208,10445208,15349923,19,778313077,9780778313080.0,Maria V. Snyder,2011.0,Touch of Power,\"Touch of Power (Healer, #1)\",en-US,4.17,29747,33160,2845,408,1109,5187,12193,14263,https://images.gr-assets.com/books/1317629193l/10445208.jpg,https://images.gr-assets.com/books/1317629193s/10445208.jpg\n5157,5158,5158,3166,26,375703063,9780375703060.0,Kaye Gibbons,1989.0,A Virtuous Woman ,A Virtuous Woman,eng,3.67,21311,21650,532,373,1649,7272,7775,4581,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388593490l/5158.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5158,59819,59819,1961184,56,515128546,9780515128540.0,Nora Roberts,1999.0,Tears of the Moon,\"Tears of the Moon (Gallaghers of Ardmore / Irish Trilogy, #2)\",en-US,4.19,24613,26184,581,98,652,4882,9226,11326,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436911955l/59819._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5159,8968,8968,11863,66,316000973,9780316000970.0,Darren Shan,2002.0,\"The Vampire Prince (Cirque Du Freak, #6)\",\"The Vampire Prince (Cirque Du Freak, #6)\",,4.23,20877,22989,546,140,695,3785,7526,10843,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255594505l/8968.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5160,291356,291356,1534941,42,034537472X,9780345374720.0,David Eddings,1991.0,The Sapphire Rose ,\"The Sapphire Rose (The Elenium, #3)\",eng,3.98,23232,24385,204,204,1275,5743,8669,8494,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212605l/291356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5161,24452249,24452249,43082585,36,1476798176,9781476798170.0,Bill Clegg,2015.0,Did You Ever Have a Family,Did You Ever Have a Family,eng,3.81,17129,20086,3092,402,1281,4956,8535,4912,https://images.gr-assets.com/books/1440378380l/24452249.jpg,https://images.gr-assets.com/books/1440378380s/24452249.jpg\n5162,33813,33813,1603282,59,751531219,9780751531210.0,Nelson DeMille,1990.0,The Gold Coast,The Gold Coast,,4.06,18616,20830,1202,242,821,4010,8096,7661,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347496158l/33813.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5163,781844,781844,6253,64,684839385,9780684839390.0,Elisabeth Kübler-Ross,1969.0,On Death and Dying,On Death and Dying,eng,4.15,17937,19625,365,137,606,3630,7013,8239,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349013156l/781844.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5164,23346918,23346918,42742312,42,1780892888,9781780892890.0,\"James Patterson, Maxine Paetro\",2015.0,14th Deadly Sin,\"14th Deadly Sin (Women’s Murder Club, #14)\",eng,3.99,12823,21946,1709,279,864,4923,8610,7270,https://images.gr-assets.com/books/1425682789l/23346918.jpg,https://images.gr-assets.com/books/1425682789s/23346918.jpg\n5165,827412,827412,1823891,60,60562498,9780060562500.0,Lisa Kleypas,2005.0,It Happened One Autumn,\"It Happened One Autumn (Wallflowers, #2)\",eng,4.15,30993,33863,1561,158,873,5982,13486,13364,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206425l/827412.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5166,2833172,2833172,2859278,65,399155163,9780399155160.0,Patricia Cornwell,2008.0,Scarpetta,\"Scarpetta (Kay Scarpetta, #16)\",en-US,3.72,21975,23986,1500,649,2026,6886,8271,6154,https://images.gr-assets.com/books/1358277265l/2833172.jpg,https://images.gr-assets.com/books/1358277265s/2833172.jpg\n5167,21681,21681,1356228,60,055350584X,9780553505850.0,Dennis Lehane,1996.0,\"Darkness, Take My Hand\",\"Darkness, Take My Hand (Kenzie & Gennaro, #2)\",eng,4.17,19019,21721,936,110,419,3326,9751,8115,https://images.gr-assets.com/books/1392049150l/21681.jpg,https://images.gr-assets.com/books/1392049150s/21681.jpg\n5168,239103,239103,60677,35,786901640,9780786901650.0,R.A. Salvatore,1993.0,Siege of Darkness,\"Siege of Darkness (Forgotten Realms: Legacy of the Drow, #3; Legend of Drizzt, #9)\",en-US,4.15,17410,19398,163,92,620,3632,6933,8121,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389536148l/239103.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5170,17201095,17201095,23676586,7,,2940016319510.0,Kristen Proby,2013.0,Play With Me,\"Play with Me (With Me in Seattle, #3)\",eng,4.33,32132,34591,1587,236,680,4133,12008,17534,https://images.gr-assets.com/books/1360471559l/17201095.jpg,https://images.gr-assets.com/books/1360471559s/17201095.jpg\n5171,268604,268604,1424636,54,425189031,9780425189030.0,J.D. Robb,2003.0,Portrait in Death,\"Portrait in Death (In Death, #16)\",eng,4.37,24958,26799,623,67,288,3247,9186,14011,https://images.gr-assets.com/books/1483391474l/268604.jpg,https://images.gr-assets.com/books/1483391474s/268604.jpg\n5172,17316075,17316075,23984106,29,,2940016487080.0,Monica  Murphy,2013.0,Second Chance Boyfriend,\"Second Chance Boyfriend (One Week Girlfriend, #2)\",eng,4.06,30299,32638,2071,365,1294,6311,12594,12074,https://images.gr-assets.com/books/1370492442l/17316075.jpg,https://images.gr-assets.com/books/1370492442s/17316075.jpg\n5173,184040,184040,1584085,14,1401202322,9781401202320.0,\"Brian K. Vaughan, Pia Guerra, Goran Parlov, José Marzán Jr.\",2004.0,Y: The Last Man Vol. 4: Safeword,\"Y: The Last Man, Vol. 4: Safeword (Y: The Last Man, #4)\",eng,4.25,22207,22487,511,149,478,3126,8557,10177,https://images.gr-assets.com/books/1335238541l/184040.jpg,https://images.gr-assets.com/books/1335238541s/184040.jpg\n5175,8088,8088,2321294,28,515138819,9780515138820.0,Robin McKinley,2003.0,Sunshine,Sunshine,en-US,3.85,27918,30765,3562,1136,2641,6555,9732,10701,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1571338028l/8088._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5176,64857,64857,2552496,52,312939027,9780312939020.0,Sue Grafton,1987.0,\"\"\"D\"\" is for Deadbeat \",\"D is for Deadbeat (Kinsey Millhone, #4)\",eng,3.85,26075,28127,717,105,871,8903,11616,6632,https://images.gr-assets.com/books/1389287799l/64857.jpg,https://images.gr-assets.com/books/1389287799s/64857.jpg\n5177,10846336,10846336,15760836,25,1608195228,9781608195220.0,Jesmyn Ward,2010.0,Salvage the Bones,Salvage the Bones,eng,3.81,18505,20611,3126,539,1516,4888,8102,5566,https://images.gr-assets.com/books/1317067649l/10846336.jpg,https://images.gr-assets.com/books/1317067649s/10846336.jpg\n5178,22611920,22611920,42102987,14,,,Kristen Callihan,2014.0,The Hook Up,\"The Hook Up (Game On, #1)\",eng,4.04,27915,32489,2721,843,1261,5701,12718,11966,https://images.gr-assets.com/books/1407891923l/22611920.jpg,https://images.gr-assets.com/books/1407891923s/22611920.jpg\n5179,14069,14069,2213322,54,345481291,9780345481290.0,Naomi Novik,2006.0,Throne of Jade,\"Throne of Jade (Temeraire, #2)\",eng,3.89,23015,26137,1624,109,1071,6847,11548,6562,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1578529876l/14069._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5180,2368,2368,54350,25,671447548,9780671447540.0,David McCullough,1981.0,Mornings on Horseback,Mornings on Horseback,en-US,4.1,18321,18950,1073,422,706,3092,7000,7730,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441770174l/2368.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5181,79426,79426,76693,13,1401210090,9781401210090.0,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",2006.0,Y: The Last Man Vol. 7: Paper Dolls,\"Y: The Last Man, Vol. 7: Paper Dolls (Y: The Last Man, #7)\",eng,4.25,22220,22484,330,229,471,3170,8270,10344,https://images.gr-assets.com/books/1311830366l/79426.jpg,https://images.gr-assets.com/books/1311830366s/79426.jpg\n5182,92160,92160,3139753,48,345455681,9780345455680.0,Edward Rutherfurd,1997.0,London: The Novel,London,en-US,4.06,18902,21131,1228,300,860,4005,8126,7840,https://images.gr-assets.com/books/1320450619l/92160.jpg,https://images.gr-assets.com/books/1320450619s/92160.jpg\n5183,16116760,16116760,21934498,9,1480118516,9781301442430.0,Natasha Preston,2012.0,Silence,\"Silence (Silence, #1)\",en-US,3.93,13042,22407,1971,885,1775,4414,6256,9077,https://images.gr-assets.com/books/1351519075l/16116760.jpg,https://images.gr-assets.com/books/1351519075s/16116760.jpg\n5184,20309175,20309175,28143699,39,1250059305,9781250059310.0,\"Stephanie Perkins, Holly Black, Ally Carter, Matt de la Pena, Gayle Forman, Jenny Han, David Levithan, Kelly Link, Myra McEntire, Rainbow Rowell, Laini Taylor, Kiersten White\",2014.0,My True Love Gave to Me: Twelve Holiday Stories,My True Love Gave to Me: Twelve Holiday Stories,eng,3.73,22480,26790,5521,564,1459,8074,11293,5400,https://images.gr-assets.com/books/1459353572l/20309175.jpg,https://images.gr-assets.com/books/1459353572s/20309175.jpg\n5185,20509356,20662430,32464091,21,,,Hugh Howey,2014.0,Sand Omnibus,\"Sand Omnibus (Sand, #1-5)\",eng,3.96,14612,18361,1498,189,812,4050,7769,5541,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389416278l/20509356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5186,18616975,18616975,24775619,15,1612184715,9781612184720.0,Scott  Meyer,2013.0,Off to Be the Wizard,\"Off to Be the Wizard (Magic 2.0, #1)\",eng,3.98,12885,19709,1775,253,931,3953,8318,6254,https://images.gr-assets.com/books/1390179189l/18616975.jpg,https://images.gr-assets.com/books/1390179189s/18616975.jpg\n5187,659388,659388,645468,31,679753338,9780679753340.0,Richard Russo,1993.0,Nobody's Fool,Nobody's Fool,eng,4.12,18392,19930,1450,192,589,3253,8584,7312,https://images.gr-assets.com/books/1463435569l/659388.jpg,https://images.gr-assets.com/books/1463435569s/659388.jpg\n5188,66370,66370,1657128,45,451076451,9780451076460.0,\"Richard Bachman, Stephen King\",1977.0,Rage,Rage,eng,3.8,21746,23235,975,373,1777,6633,7889,6563,https://images.gr-assets.com/books/1299003176l/66370.jpg,https://images.gr-assets.com/books/1299003176s/66370.jpg\n5189,28407,28407,941651,435,140447423,9780140447420.0,\"Émile Zola, Roger Pearson\",1885.0,Germinal,\"Germinal (Les Rougon-Macquart, #13)\",eng,4.09,19325,22012,844,466,1039,3732,7498,9277,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208755l/28407.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5190,13573795,13573795,19154849,6,,,Abbi Glines,2012.0,Ceaseless,\"Ceaseless (Existence Trilogy, #3)\",eng,4.2,27823,29045,1541,399,1186,4511,9053,13896,https://images.gr-assets.com/books/1351606331l/13573795.jpg,https://images.gr-assets.com/books/1351606331s/13573795.jpg\n5192,76740,76740,1247570,80,1857988221,9781857988220.0,Alfred Bester,1953.0,The Demolished Man,The Demolished Man,eng,3.99,20685,22474,975,316,1133,4706,8534,7785,https://images.gr-assets.com/books/1360171879l/76740.jpg,https://images.gr-assets.com/books/1360171879s/76740.jpg\n5193,9578590,9578590,14465478,17,1423121295,9781423121300.0,Melissa de la Cruz,2011.0,Lost In Time,\"Lost in Time (Blue Bloods, #6)\",eng,4.05,23154,24147,874,446,1312,4980,7271,10138,https://images.gr-assets.com/books/1298681924l/9578590.jpg,https://images.gr-assets.com/books/1298681924s/9578590.jpg\n5194,199786,199786,227520,49,60725125,9780060725130.0,Meg Cabot,2001.0,Ninth Key,\"Ninth Key (The Mediator, #2)\",eng,4.07,29922,32154,862,130,1117,7226,11740,11941,https://images.gr-assets.com/books/1327954597l/199786.jpg,https://images.gr-assets.com/books/1327954597s/199786.jpg\n5195,693172,693172,442715,48,425100650,9780425100650.0,Dean Koontz,1984.0,Twilight Eyes,Twilight Eyes,,3.86,20694,21401,406,288,1281,5963,7440,6429,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223638154l/693172.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5196,25644437,25644437,45462848,33,525954570,9780525954580.0,Lisa Gardner,2016.0,Find Her,\"Find Her (Detective D.D. Warren, #8)\",eng,4.12,15957,22293,2126,230,695,3655,9366,8347,https://images.gr-assets.com/books/1444071262l/25644437.jpg,https://images.gr-assets.com/books/1444071262s/25644437.jpg\n5197,16122034,16122034,21943079,11,1939392748,9781939392750.0,\"J. Lynn, Jennifer L. Armentrout\",2013.0,Frigid,\"Frigid (Frigid, #1)\",eng,3.79,32611,34703,2684,956,2529,9007,12602,9609,https://images.gr-assets.com/books/1364364323l/16122034.jpg,https://images.gr-assets.com/books/1364364323s/16122034.jpg\n5198,16532,16532,205630,133,553383833,9780553383840.0,\"Isabel Allende, Margaret Sayers Peden\",1984.0,De amor y de sombra,Of Love and Shadows,eng,3.96,15919,19452,566,178,855,4506,7900,6013,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919975l/16532.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5199,6202556,6202556,6383049,46,805088415,9780805088410.0,Jacqueline Kelly,2009.0,The Evolution of Calpurnia Tate,\"The Evolution of Calpurnia Tate (Calpurnia Tate, #1)\",en-US,3.97,22291,24382,4019,589,1194,4768,9552,8279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437655533l/6202556._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5200,3678651,3678651,3722007,18,1423108760,9781423108760.0,Katie Alender,2009.0,Bad Girls Don't Die,\"Bad Girls Don't Die (Bad Girls Don't Die, #1)\",eng,4.07,18862,22673,2389,436,1243,4301,7121,9572,https://images.gr-assets.com/books/1344514129l/3678651.jpg,https://images.gr-assets.com/books/1344514129s/3678651.jpg\n5201,41707,41707,255727,74,425204030,9780425204030.0,Clive Cussler,1999.0,Atlantis Found,\"Atlantis Found (Dirk Pitt, #15)\",eng,3.96,19102,20813,611,165,746,5085,8546,6271,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389418438l/41707.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5202,4070095,4070095,4117200,12,307377326,9780307377330.0,David Mazzucchelli,2009.0,Asterios Polyp,Asterios Polyp,eng,4.19,19635,19916,1305,487,804,2827,6191,9607,https://images.gr-assets.com/books/1327877671l/4070095.jpg,https://images.gr-assets.com/books/1327877671s/4070095.jpg\n5203,651260,651260,418831,37,345383273,9780345383270.0,David Eddings,1992.0,Domes of Fire,\"Domes of Fire (The Tamuli, #1)\",,3.98,22206,23079,147,236,1117,5602,7948,8176,https://images.gr-assets.com/books/1388212602l/651260.jpg,https://images.gr-assets.com/books/1388212602s/651260.jpg\n5204,138397,138397,133404,30,1582405301,9781582405310.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2005.0,\"The Walking Dead, Vol. 4: The Heart's Desire\",\"The Walking Dead, Vol. 04: The Heart's Desire\",eng,4.23,21488,22592,877,123,564,3482,8298,10125,https://images.gr-assets.com/books/1460242153l/138397.jpg,https://images.gr-assets.com/books/1460242153s/138397.jpg\n5205,6277410,6277410,6460915,18,439846838,9780439846840.0,Kazu Kibuishi,2009.0,The Stonekeeper's Curse,\"The Stonekeeper's Curse (Amulet, #2)\",eng,4.33,21461,21968,1395,190,486,2860,6877,11555,https://images.gr-assets.com/books/1420153715l/6277410.jpg,https://images.gr-assets.com/books/1420153715s/6277410.jpg\n5206,13066,13066,2257006,31,446695688,9780446695690.0,Carl Hiaasen,2000.0,Sick Puppy,Sick Puppy,eng,3.88,18248,19594,1069,193,861,5077,8434,5029,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441339786l/13066._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5207,24818,24818,946589,28,836217357,9780836217350.0,Bill Watterson,1993.0,The Days Are Just Packed: A Calvin and Hobbes Collection,The Days Are Just Packed: A Calvin and Hobbes Collection,en-US,4.68,19143,20374,228,114,149,942,3636,15533,https://images.gr-assets.com/books/1418211162l/24818.jpg,https://images.gr-assets.com/books/1418211162s/24818.jpg\n5208,3253215,3253215,3288384,2,1600610862,9781600610870.0,Danny Gregory,2008.0,\"An Illustrated Life: Drawing Inspiration From The Private Sketchbooks Of Artists, Illustrators And Designers\",\"An Illustrated Life: Drawing Inspiration From The Private Sketchbooks Of Artists, Illustrators And Designers\",,3.72,15601,15602,131,1300,1387,3291,3991,5633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275504l/3253215.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5209,13154933,13154933,18333180,41,307990672,9780307990680.0,Dean Koontz,2012.0,Odd Apocalypse,\"Odd Apocalypse (Odd Thomas, #5)\",eng,3.93,16063,21280,1980,272,1187,5168,7868,6785,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388662957l/13154933.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5210,80369,80369,1946946,70,679752552,9780679752550.0,\"Michel Foucault, Alan Sheridan, Thomas Mathiesen, Walter Seitter, Drago Braco Rotar\",1975.0,Surveiller et punir. Naissance de la prison,Discipline and Punish: The Birth of the Prison,eng,4.21,16892,18390,593,224,539,2626,6772,8229,https://images.gr-assets.com/books/1400737037l/80369.jpg,https://images.gr-assets.com/books/1400737037s/80369.jpg\n5211,215631,215631,766708,49,743412028,9780743412020.0,Catherine Ryan Hyde,1999.0,Pay It Forward,Pay It Forward,eng,4.15,18220,19556,728,201,718,3541,6512,8584,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388936719l/215631.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5212,40168,40168,39853,1,1401307922,9781401307930.0,Danny Gregory,2005.0,The Creative License: Giving Yourself Permission to Be The Artist You Truly Are,The Creative License: Giving Yourself Permission to Be The Artist You Truly Are,,3.93,18139,18139,132,796,1423,3728,4466,7726,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438844434l/40168._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5213,569346,569346,556398,12,1591169283,9781591169280.0,\"Arina Tanemura, Tomo Kimura\",2001.0,満月をさがして 1,\"Full Moon o Sagashite, Vol. 1\",eng,4.06,19443,19640,183,751,1307,3549,4359,9674,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348996617l/569346.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5214,68531,68531,425641,67,60935766,9780060935760.0,Bernard Cornwell,2000.0,Harlequin,\"The Archer's Tale (The Grail Quest, #1)\",eng,4.12,16032,19367,729,128,537,3427,7987,7288,https://images.gr-assets.com/books/1407709312l/68531.jpg,https://images.gr-assets.com/books/1407709312s/68531.jpg\n5215,12535,12535,14828,15,1594481571,9781594481570.0,Anne Lamott,2004.0,Plan B: Further Thoughts on Faith,Plan B: Further Thoughts on Faith,,4.05,18056,18542,883,241,711,3595,7289,6706,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506548190l/12535._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5216,62212,62212,2050708,61,812974042,9780812974040.0,Sarah Dunant,2006.0,In the Company of the Courtesan,In the Company of the Courtesan,eng,3.76,19614,20908,1211,353,1352,6162,8108,4933,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924737l/62212.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5217,13630171,13630171,19237752,29,345531485,9780345531480.0,Peter V. Brett,2015.0,The Skull Throne,\"The Skull Throne (Demon Cycle, #4)\",eng,4.14,15946,19744,1161,194,674,3196,7823,7857,https://images.gr-assets.com/books/1408637760l/13630171.jpg,https://images.gr-assets.com/books/1408637760s/13630171.jpg\n5218,84133,84133,81224,36,312369506,9780312369510.0,Sherrilyn Kenyon,2007.0,Devil May Cry,\"Devil May Cry (Dark-Hunter, #11)\",eng,4.32,30249,32540,1028,114,696,4487,10678,16565,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442795932l/84133._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5219,30002998,30002998,50407655,43,,,Nicholas Sparks,2016.0,Two By Two,Two By Two,eng,3.9,27691,31897,2945,1212,2419,6446,10147,11673,https://images.gr-assets.com/books/1461620101l/30002998.jpg,https://images.gr-assets.com/books/1461620101s/30002998.jpg\n5220,96081,96081,1207101,53,316013838,9780316013830.0,Anita Shreve,2002.0,Sea Glass,Sea Glass,eng,3.65,19585,21416,1263,265,1519,7323,8605,3704,https://images.gr-assets.com/books/1422821164l/96081.jpg,https://images.gr-assets.com/books/1422821164s/96081.jpg\n5221,248470,248470,240752,19,1582349010,9781582349020.0,Shannon Hale,2006.0,River Secrets,\"River Secrets (The Books of Bayern, #3)\",,4.03,27399,28983,2249,283,949,6330,11402,10019,https://images.gr-assets.com/books/1362875702l/248470.jpg,https://images.gr-assets.com/books/1362875702s/248470.jpg\n5222,18404285,18404285,25746450,49,1250034485,9781250034490.0,Jeffrey Archer,2014.0,Be Careful What You Wish For,\"Be Careful What You Wish For (The Clifton Chronicles, #4)\",eng,4.04,13714,20765,1607,186,708,4124,8826,6921,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392576182l/18404285.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5223,12925063,12925063,18080558,9,1461072514,9781461072520.0,Amy A. Bartol,2013.0,Inescapable,\"Inescapable (The Premonition, #1)\",eng,4.05,25001,28592,1885,1019,1637,4720,8846,12370,https://images.gr-assets.com/books/1327896605l/12925063.jpg,https://images.gr-assets.com/books/1327896605s/12925063.jpg\n5224,6918909,6918909,7146544,40,61668095,9780061668100.0,Aprilynne Pike,2011.0,Illusions,\"Illusions (Wings, #3)\",en-US,4.12,26291,27722,1603,365,1221,5155,9034,11947,https://images.gr-assets.com/books/1324797814l/6918909.jpg,https://images.gr-assets.com/books/1324797814s/6918909.jpg\n5225,333907,333907,1106205,20,451165667,9780451165660.0,Joe McGinniss,1983.0,Fatal Vision,Fatal Vision,eng,4.1,18395,18803,361,177,576,3676,7145,7229,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348382354l/333907.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5226,1491906,1491906,1483174,21,1594201501,9781594201510.0,Sudhir Venkatesh,2008.0,Gang Leader for a Day,Gang Leader for a Day: A Rogue Sociologist Takes to the Streets,,4.01,15387,17196,1562,181,697,3557,7155,5606,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347568042l/1491906.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5227,43915,43915,7113924,5,785127224,9780785127220.0,\"Raymond E. Feist, Michael Avon Oeming, Bryan J.L. Glass, Ryan Stegman\",1984.0,\"Magician: Apprentice (The Riftwar Saga, #1) \",Magician: Apprentice  (Raymond E. Feist's Magician: Apprentice #1),eng,4.44,17782,17836,88,110,274,1746,5155,10551,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390285539l/43915.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5228,183554,183554,177444,44,785281126,9780785281120.0,John C. Maxwell,1993.0,Developing the Leader Within You,Developing the Leader Within You,,4.18,15817,16298,256,215,564,2700,5424,7395,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189323l/183554.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5229,100933,100933,964487,80,7157177,9780007157170.0,C.S. Lewis,1945.0,That Hideous Strength,\"That Hideous Strength (Space Trilogy, #3)\",en-GB,3.87,19866,23613,1285,538,1801,5701,7781,7792,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348645618l/100933.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5230,18652002,18652002,26457997,44,62331159,9780062331150.0,Laline Paull,2014.0,The Bees,The Bees,eng,3.67,15848,20906,3664,754,2055,5561,7521,5015,https://images.gr-assets.com/books/1384018069l/18652002.jpg,https://images.gr-assets.com/books/1384018069s/18652002.jpg\n5231,2458340,2458340,3441259,53,385664443,9780385664450.0,Sara Gruen,2010.0,Ape House,Ape House,eng,3.46,21093,24513,3927,747,2903,8568,8813,3482,https://images.gr-assets.com/books/1328023833l/2458340.jpg,https://images.gr-assets.com/books/1328023833s/2458340.jpg\n5232,18884,18884,968051,20,345422554,9780345422550.0,\"David Eddings, Leigh Eddings\",1997.0,Polgara the Sorceress,Polgara the Sorceress (Malloreon),,4.07,22802,23895,305,252,1227,4897,7701,9818,https://images.gr-assets.com/books/1403179783l/18884.jpg,https://images.gr-assets.com/books/1403179783s/18884.jpg\n5233,22674105,22674105,42179165,27,385539088,9780385539080.0,Kevin Kwan,2015.0,China Rich Girlfriend,China Rich Girlfriend (Crazy Rich Asians #2),eng,3.74,17708,21983,2377,272,1361,6695,9167,4488,https://images.gr-assets.com/books/1419179404l/22674105.jpg,https://images.gr-assets.com/books/1419179404s/22674105.jpg\n5234,216304,216304,830280,25,736918833,9780736918830.0,Elizabeth George,1997.0,A Woman After God's Own Heart,A Woman After God's Own Heart,eng,4.29,16200,16482,223,256,519,2325,4459,8923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183660l/216304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5235,206195,206195,702577,21,1416543694,9781416543700.0,Brad Thor,2004.0,State Of The Union,\"State of the Union (Scot Harvath, #3)\",eng,4.2,16466,18501,409,121,376,2888,7321,7795,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522074l/206195.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5236,15793186,15793186,21515150,29,1250015545,9781250015550.0,Ann Leary,2013.0,The Good House,The Good House,en-GB,3.66,16490,18588,2430,302,1317,5947,7800,3222,https://images.gr-assets.com/books/1392668194l/15793186.jpg,https://images.gr-assets.com/books/1392668194s/15793186.jpg\n5237,14362,14362,1828689,34,446675369,9780446675370.0,Rudolfo Anaya,1972.0,\"Bless Me, Ultima\",\"Bless Me, Ultima\",en-US,3.74,18380,20665,1758,787,1874,5132,6964,5908,https://images.gr-assets.com/books/1474056548l/14362.jpg,https://images.gr-assets.com/books/1474056548s/14362.jpg\n5238,9913,9913,2115530,60,375703845,9780375703840.0,Bret Easton Ellis,1998.0,Glamorama,Glamorama,eng,3.47,14947,16520,742,861,2300,5021,4971,3367,https://images.gr-assets.com/books/1403179508l/9913.jpg,https://images.gr-assets.com/books/1403179508s/9913.jpg\n5239,169211,169211,900874,62,312939043,9780312939040.0,Sue Grafton,1988.0,F is for Fugitive,\"F is for Fugitive (Kinsey Millhone, #6)\",eng,3.9,24842,26673,557,66,667,7923,11290,6727,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789157l/169211.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5240,2033352,2033352,2038062,129,8770530688,9788770530680.0,Jo Nesbø,2005.0,\"Frelseren (Harry Hole, #6)\",\"The Redeemer (Harry Hole, #6)\",dan,4.07,9337,21357,1561,196,514,3746,10080,6821,https://images.gr-assets.com/books/1418343566l/2033352.jpg,https://images.gr-assets.com/books/1418343566s/2033352.jpg\n5241,61264,61264,116061,160,375703829,9780375703830.0,Alessandro Baricco,1996.0,Seta,Silk,en-US,3.82,14555,23787,1834,524,1834,5817,8746,6866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924695l/61264.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5242,7963208,7963208,11870076,63,312593317,9780312593320.0,Tatiana de Rosnay,2009.0,Boomerang,A Secret Kept,eng,3.33,19079,21564,2714,822,3074,8488,6571,2609,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442696422l/7963208._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5243,27530,27530,2172654,32,842332308,9780842332310.0,\"Tim LaHaye, Jerry B. Jenkins\",2002.0,The Remnant: On the Brink of Armageddon,\"The Remnant (Left Behind, #10)\",en-US,4.01,18785,19824,253,467,1200,4004,6202,7951,https://images.gr-assets.com/books/1406506156l/27530.jpg,https://images.gr-assets.com/books/1406506156s/27530.jpg\n5244,9804,9804,865256,110,156106809,9780156106800.0,\"Italo Calvino, Archibald Colquhoun\",1957.0,Il barone rampante,The Baron in the Trees,eng,4.06,13221,18820,931,194,800,3656,7243,6927,https://images.gr-assets.com/books/1344432724l/9804.jpg,https://images.gr-assets.com/books/1344432724s/9804.jpg\n5245,11450360,11450360,16377478,19,316133191,9780316133200.0,\"Stephenie Meyer, Young Kim\",2011.0,\"Twilight: The Graphic Novel,\",\"Twilight: The Graphic Novel, Vol. 2  (Twilight: The Graphic Novel, #2)\",en-US,4.26,19795,20129,629,611,898,2915,3969,11736,https://images.gr-assets.com/books/1327891963l/11450360.jpg,https://images.gr-assets.com/books/1327891963s/11450360.jpg\n5246,18468559,20421367,26129516,7,,2940148861120.0,Belle Aurora,2014.0,Raw,\"Raw (RAW Family, #1)\",eng,4.23,19180,32077,5211,978,1476,3831,8618,17174,https://images.gr-assets.com/books/1380531971l/18468559.jpg,https://images.gr-assets.com/books/1380531971s/18468559.jpg\n5247,5367,5367,8810,5,380809060,9780380809070.0,Roger Zelazny,1999.0,The Great Book of Amber,\"The Great Book of Amber (The Chronicles of Amber, #1-10)\",eng,4.31,20748,20839,788,196,604,2683,6479,10877,https://images.gr-assets.com/books/1165519096l/5367.jpg,https://images.gr-assets.com/books/1165519096s/5367.jpg\n5248,7519472,7519472,6954933,37,778303829,9780778303820.0,Gena Showalter,2010.0,The Darkest Lie (Lords of the Underworld #6),The Darkest Lie (Lords of the Underworld #6),eng,4.32,27343,28950,998,150,641,4029,9045,15085,https://images.gr-assets.com/books/1333828376l/7519472.jpg,https://images.gr-assets.com/books/1333828376s/7519472.jpg\n5249,68453,68453,1877759,78,8370540910,9788370540910.0,Andrzej Sapkowski,1995.0,Czas pogardy,\"Czas pogardy (Saga o Wiedźminie, #4)\",pol,4.32,11551,22876,584,68,377,2815,8520,11096,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208555368l/68453.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5250,11382346,16168721,16313871,9,,9780615408990.0,Jillian Dodd,2011.0,That Boy,\"That Boy (That Boy, #1)\",eng,3.96,20981,27836,2067,961,1809,5324,8920,10822,https://images.gr-assets.com/books/1305572809l/11382346.jpg,https://images.gr-assets.com/books/1305572809s/11382346.jpg\n5251,12384157,12384157,17046432,29,385535589,9780385535590.0,Kate Alcott,2012.0,The Dressmaker,The Dressmaker,eng,3.44,20464,22859,3299,653,2660,8688,7752,3106,https://images.gr-assets.com/books/1314819502l/12384157.jpg,https://images.gr-assets.com/books/1314819502s/12384157.jpg\n5252,16006,16006,967548,42,743474163,9780743474160.0,Judith McNaught,1991.0,Paradise,\"Paradise (Second Opportunities, #1)\",eng,4.32,24363,25601,1063,256,683,3465,7500,13697,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921972l/16006.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5253,525995,525995,428054,27,395304482,9780395304490.0,Chris Van Allsburg,1981.0,Jumanji,Jumanji,en-US,4.03,21961,22344,1221,368,1065,4792,7312,8807,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348202802l/525995.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5254,341735,341735,1804797,49,068816112X,9780688161120.0,Ken Grimwood,1986.0,Replay,Replay,en-US,4.16,18019,20558,2489,222,747,3325,7577,8687,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441156728l/341735._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5255,9827912,9827912,14423132,50,307377334,9780307377330.0,David Eagleman,2011.0,Incognito: The Secret Lives of the Brain,Incognito: The Secret Lives of the Brain,eng,3.98,11957,17969,1301,312,866,3739,6934,6118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348669116l/9827912.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5256,22543,20663770,1204936,26,393062244,9780393062240.0,Neil deGrasse Tyson,2006.0,Death by Black Hole: And Other Cosmic Quandaries,Death by Black Hole - And Other Cosmic Quandaries,eng,4.11,9815,18702,1021,404,645,2981,7133,7539,https://images.gr-assets.com/books/1395019749l/22543.jpg,https://images.gr-assets.com/books/1395019749s/22543.jpg\n5257,133445,133445,1007843,65,385491069,9780385491070.0,Margaret Atwood,1969.0,The Edible Woman,The Edible Woman,,3.67,21440,23191,1267,482,1983,7260,8470,4996,https://images.gr-assets.com/books/1320439047l/133445.jpg,https://images.gr-assets.com/books/1320439047s/133445.jpg\n5258,17977,17977,3135643,37,061861916X,9780618619160.0,Richard Dawkins,2004.0,The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution,The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution,en-US,4.13,16775,17617,606,542,667,2645,5946,7817,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423600058l/17977.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5260,128092,128092,1948820,44,60757353,9780060757360.0,Paul Zindel,1968.0,The Pigman,\"The Pigman (The Pigman, #1)\",eng,3.58,21278,22807,1156,867,2438,7087,7474,4941,https://images.gr-assets.com/books/1393796714l/128092.jpg,https://images.gr-assets.com/books/1393796714s/128092.jpg\n5261,39026,39026,1410754,58,385515502,9780385515500.0,Lincoln Child,2007.0,Deep Storm,\"Deep Storm (Jeremy Logan, #1)\",eng,3.87,18413,20109,803,213,988,5556,7877,5475,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438525696l/39026._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5262,9397967,9397967,11351526,33,545284104,9780545284100.0,Meg Cabot,2011.0,Abandon,\"Abandon (Abandon, #1)\",eng,3.71,30934,33159,3639,1355,3226,8814,10202,9562,https://images.gr-assets.com/books/1324767084l/9397967.jpg,https://images.gr-assets.com/books/1324767084s/9397967.jpg\n5263,97898,97898,5913140,49,1400031818,9781400031820.0,Alexander McCall Smith,2003.0,The Full Cupboard of Life,\"The Full Cupboard of Life (No. 1 Ladies' Detective Agency, #5)\",eng,4.02,23089,24766,1085,67,503,5591,11293,7312,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347622687l/97898.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5264,263179,263179,255117,28,60751967,9780060751970.0,Kerrelyn Sparks,2005.0,How to Marry a Millionaire Vampire,\"How to Marry a Millionaire Vampire (Love at Stake, #1)\",eng,3.85,27854,29698,1528,1086,2300,6942,8931,10439,https://images.gr-assets.com/books/1343779854l/263179.jpg,https://images.gr-assets.com/books/1343779854s/263179.jpg\n5265,105548,105548,519772,26,679882804,9780679882800.0,Dr. Seuss,1968.0,The Foot Book: Dr. Seuss's Wacky Book of Opposites (Bright & Early Board Books),The Foot Book: Dr. Seuss's Wacky Book of Opposites (Bright and Early Board Books),eng,3.99,22268,23267,761,400,1422,5816,6002,9627,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437795856l/105548._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5266,17831616,17831616,24948170,25,,,Christina Lauren,2013.0,Beautiful Bitch,\"Beautiful Bitch (Beautiful Bastard, #1.5)\",en-US,3.94,31616,32616,1648,441,1917,7930,11212,11116,https://images.gr-assets.com/books/1368101793l/17831616.jpg,https://images.gr-assets.com/books/1368101793s/17831616.jpg\n5267,1166131,1166131,1153817,38,068987779X,9780689877800.0,Robert Muchamore,2004.0,\"The Recruit (Cherub, #1)\",\"The Recruit (Cherub, #1)\",eng,4.22,19679,22294,1626,278,748,3258,7476,10534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328000064l/1166131.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5268,327242,327242,317880,5,078948045X,635517080452.0,Sarah Simblet,2001.0,Anatomy for the Artist,Anatomy for the Artist,en-US,3.97,17000,17050,49,767,1255,3413,3978,7637,https://images.gr-assets.com/books/1309295064l/327242.jpg,https://images.gr-assets.com/books/1309295064s/327242.jpg\n5269,38412,38412,38182,80,385493622,9780385493630.0,Simon Singh,1997.0,Fermat's Enigma: The Epic Quest to Solve the World's Greatest Mathematical Problem,Fermat's Enigma: The Epic Quest to Solve the World's Greatest Mathematical Problem,eng,4.22,15738,18750,780,98,368,2764,7593,7927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182122l/38412.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5270,161361,161361,2493019,41,684832356,9780684832360.0,Richard Paul Evans,1993.0,The Christmas Box,\"The Christmas Box (The Christmas Box, #1)\",eng,3.95,18869,20819,1565,343,1230,4814,7090,7342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266485725l/161361.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5271,8046350,30123368,12688312,32,557364639,9780557364630.0,Amanda Hocking,2010.0,My Blood Approves,\"My Blood Approves (My Blood Approves, #1)\",eng,3.83,21707,26660,1704,1082,2098,6102,8365,9013,https://images.gr-assets.com/books/1282351187l/8046350.jpg,https://images.gr-assets.com/books/1282351187s/8046350.jpg\n5272,18341046,18341046,25808543,16,,,Aurora Rose Reynolds,2013.0,Until November,\"Until November (Until, #1)\",eng,4.16,33606,38065,2776,776,1564,5553,13260,16912,https://images.gr-assets.com/books/1376867667l/18341046.jpg,https://images.gr-assets.com/books/1376867667s/18341046.jpg\n5273,49011,49011,47950,46,014017821X,9780140178210.0,Angela Carter,1979.0,The Bloody Chamber & Other Stories,The Bloody Chamber and Other Stories,eng,4.02,20438,25183,2060,408,1333,4853,9362,9227,https://images.gr-assets.com/books/1388633104l/49011.jpg,https://images.gr-assets.com/books/1388633104s/49011.jpg\n5274,86856,86856,107052,38,60012781,9780060012790.0,Anthony Bourdain,2001.0,A Cook's Tour: Global Adventures in Extreme Cuisines,A Cook's Tour: Global Adventures in Extreme Cuisines,eng,3.97,16719,18151,885,209,639,4076,7837,5390,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347785592l/86856.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5275,19797,19797,20998,11,61176109,9780061176100.0,Simon Schama,2006.0,Power of Art,The Power of Art,en-US,3.87,13423,13497,86,617,1119,2949,3486,5326,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316815l/19797.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5276,20257122,20257122,28068934,46,1602862567,9781602862560.0,\"Michelle Knight, Michelle Burford\",2014.0,\"Finding me : A Decade of Darkness, a Life Reclaimed\",\"Finding Me: A Decade of Darkness, a Life Reclaimed - A Memoir of the Cleveland Kidnappings\",eng,4.12,12653,17211,2004,389,687,2936,5580,7619,https://images.gr-assets.com/books/1387770620l/20257122.jpg,https://images.gr-assets.com/books/1387770620s/20257122.jpg\n5277,98405,98405,1612568,66,051511779X,9780515117790.0,Nora Roberts,1996.0,Born in Shame,\"Born in Shame (Born In Trilogy, #3)\",en-GB,4.07,24398,25932,546,152,913,5818,9076,9973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388237862l/98405.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5278,7797874,7797874,10770784,18,738718688,9780738718680.0,Simone Elkeles,2010.0,Return to Paradise,\"Return to Paradise (Leaving Paradise, #2)\",eng,4.05,29043,29892,1430,488,1649,5939,9604,12212,https://images.gr-assets.com/books/1271357819l/7797874.jpg,https://images.gr-assets.com/books/1271357819s/7797874.jpg\n5279,18336965,18336965,25887622,39,,,Jasmine Warga,2015.0,My Heart and Other Black Holes,My Heart and Other Black Holes,eng,4.02,22311,27878,4279,361,1319,5586,10822,9790,https://images.gr-assets.com/books/1415056175l/18336965.jpg,https://images.gr-assets.com/books/1415056175s/18336965.jpg\n5280,22693211,22693211,42205774,26,62295896,9780062295900.0,Kim Gordon,2015.0,Girl in a Band,Girl in a Band,eng,3.58,14491,15820,1396,723,1422,4873,5566,3236,https://images.gr-assets.com/books/1412840109l/22693211.jpg,https://images.gr-assets.com/books/1412840109s/22693211.jpg\n5281,2272813,2272813,2278833,31,525478922,9780525478930.0,Heather Brewer,2008.0,\"Ninth Grade Slays (The Chronicles of Vladimir Tod, #2)\",\"Ninth Grade Slays (The Chronicles of Vladimir Tod, #2)\",en-US,4.14,20198,22539,1042,335,1014,4172,6613,10405,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442270017l/2272813._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5282,6526,6526,3602953,80,399153934,9780399153940.0,Patricia Cornwell,2007.0,Book of the Dead,\"Book of the Dead (Kay Scarpetta, #15)\",en-US,3.63,20962,22972,1355,812,2271,6932,7457,5500,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442534083l/6526._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5283,588138,588138,971054,86,691017840,9780691017850.0,Joseph Campbell,1949.0,The Hero with a Thousand Faces,The Hero With a Thousand Faces,eng,4.24,17920,21207,1263,241,739,2978,6886,10363,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442885694l/588138._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5284,7713965,7713965,10441968,30,399156909,9780399156910.0,John Sandford,2010.0,Bad Blood,\"Bad Blood (Virgil Flowers, #4)\",eng,4.21,18504,20510,1001,137,415,3080,8230,8648,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204669l/7713965.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5285,8964,8964,11859,11,1577780728,9781577780720.0,\"D.C. Talk, The Voice of the Martyrs\",1997.0,\"Jesus Freaks: DC Talk and The Voice of the Martyrs - Stories of Those Who Stood for Jesus, the Ultimate Jesus Freaks\",\"Jesus Freaks: Stories of Those Who Stood for Jesus, the Ultimate Jesus Freaks (Jesus Freaks, #1)\",eng,4.2,17602,17925,270,194,641,3132,5371,8587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298413727l/8964.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5286,15811496,15811496,21536760,30,1594204217,9781594204210.0,Michael Pollan,2013.0,Cooked: A Natural History of Transformation ,Cooked: A Natural History of Transformation,eng,3.98,16078,17352,1739,439,848,3300,6720,6045,https://images.gr-assets.com/books/1350939053l/15811496.jpg,https://images.gr-assets.com/books/1350939053s/15811496.jpg\n5287,47956,47956,353853,25,451456718,9780451456720.0,Anne Bishop,1998.0,Daughter of the Blood,Daughter of the Blood (The Black Jewels #1),eng,4.12,25432,28102,1656,958,1490,4128,8035,13491,https://images.gr-assets.com/books/1400569100l/47956.jpg,https://images.gr-assets.com/books/1400569100s/47956.jpg\n5288,9265891,9265891,3300232,25,765326574,9780765326580.0,Orson Scott Card,2011.0,The Lost Gate,\"The Lost Gate (Mither Mages, #1)\",en-US,3.82,18235,20884,2180,361,1250,5360,8705,5208,https://images.gr-assets.com/books/1312042223l/9265891.jpg,https://images.gr-assets.com/books/1312042223s/9265891.jpg\n5289,18142329,18142329,21962567,102,307960498,9780307960500.0,\"Jo Nesbø, Don Bartlett\",2013.0,\"Politi (Harry Hole, #10)\",\"Police (Harry Hole, #10)\",eng,4.22,14495,21499,2028,136,495,2863,9010,8995,https://images.gr-assets.com/books/1373049226l/18142329.jpg,https://images.gr-assets.com/books/1373049226s/18142329.jpg\n5290,31342,31342,2926086,52,5559609129,9785559609130.0,Anne Rice,1999.0,Vittorio the Vampire,\"Vittorio, The Vampire (New Tales of the Vampires, #2)\",eng,3.5,21402,23635,405,781,3088,8277,6533,4956,https://images.gr-assets.com/books/1289014320l/31342.jpg,https://images.gr-assets.com/books/1289014320s/31342.jpg\n5291,568592,568592,2389949,14,1569314063,9781569314070.0,\"Yuu Watase, Yuji Oniki\",1992.0,ふしぎ遊戯 1,\"Fushigi Yûgi: The Mysterious Play, Vol. 1: Priestess\",eng,4.08,18060,18950,137,729,1189,3338,4202,9492,https://images.gr-assets.com/books/1459065488l/568592.jpg,https://images.gr-assets.com/books/1459065488s/568592.jpg\n5292,1951125,1951125,3208367,63,097915930X,9780979159300.0,Brunonia Barry,2006.0,The Lace Reader,\"The Lace Reader (The Lace Reader, #1)\",eng,3.46,20534,24564,4093,842,3059,8396,8535,3732,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562776620l/1951125._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5293,43818,43818,43216,2,970398107,9780970398110.0,\"Faye Perozich, Travis Moore, Michael Halbleib, Daerick Gröss, Anne Rice\",2000.0,Anne Rice's The Tale of the Body Thief (Graphic Novel),Anne Rice's The Tale of the Body Thief (A Graphic Novel),eng,4.07,20511,20578,38,226,979,4432,6406,8535,https://images.gr-assets.com/books/1316019640l/43818.jpg,https://images.gr-assets.com/books/1316019640s/43818.jpg\n5294,52873,52873,829351,21,802141676,9780802141680.0,Sherman Alexie,1993.0,The Lone Ranger and Tonto Fistfight in Heaven,The Lone Ranger and Tonto Fistfight in Heaven,en-US,4.09,18793,20157,1650,206,743,3514,8287,7407,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557917045l/52873.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5295,30226,30226,3341382,37,345443608,9780345443600.0,Laurell K. Hamilton,2005.0,\"A Stroke of Midnight (Merry Gentry, #4)\",\"A Stroke of Midnight (Merry Gentry, #4)\",en-US,4.06,26783,29167,446,422,1554,5923,9264,12004,https://images.gr-assets.com/books/1400966510l/30226.jpg,https://images.gr-assets.com/books/1400966510s/30226.jpg\n5296,31176886,32940867,51814255,66,,,Stephenie Meyer,2016.0,The Chemist,The Chemist,eng,3.69,25188,31052,4631,1225,2743,8094,11223,7767,https://images.gr-assets.com/books/1468944057l/31176886.jpg,https://images.gr-assets.com/books/1468944057s/31176886.jpg\n5297,139254,139254,936155,58,618562036,9780618562040.0,Anchee Min,2003.0,Empress Orchid,\"Empress Orchid (Empress Orchid, #1)\",en-US,3.87,17318,19138,1158,221,1030,4906,7816,5165,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442864153l/139254._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5298,6359434,6359434,4857805,74,1401323588,9781401323580.0,Eoin Colfer,2009.0,\"And Another Thing... (Hitchhiker's Guide to the Galaxy, #6)\",And Another Thing...,eng,3.53,19685,21474,1331,1082,2601,6482,6369,4940,https://images.gr-assets.com/books/1327908458l/6359434.jpg,https://images.gr-assets.com/books/1327908458s/6359434.jpg\n5300,17231976,17231976,23748095,9,061579615X,9780615796150.0,H.M. Ward,2013.0,Damaged,\"Damaged (Damaged, #1)\",eng,3.93,26073,29712,1857,538,1642,6816,10943,9773,https://images.gr-assets.com/books/1363632179l/17231976.jpg,https://images.gr-assets.com/books/1363632179s/17231976.jpg\n5301,444381,444381,3193161,326,140367462,9780140367460.0,\"George MacDonald, Arthur Hughes\",1872.0,The Princess and the Goblin,\"The Princess and the Goblin  (Princess Irene and Curdie, #1)\",eng,4.0,21200,23691,1291,331,1085,5346,8431,8498,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348689290l/444381.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5302,9606002,9606002,1619708,111,1605981737,9781605981730.0,\"Camilla Läckberg, Steven T. Murray\",2004.0,Predikanten,\"The Preacher (Patrik Hedström, #2)\",,3.76,15851,21819,1203,431,1314,6243,9000,4831,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441297596l/9606002._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5303,310272,310272,2069970,25,7169957,9780007169960.0,Dr. Seuss,1974.0,There's a Wocket in My Pocket,There's a Wocket in My Pocket!,en-GB,4.02,23852,25489,652,458,1492,5936,6835,10768,https://images.gr-assets.com/books/1327448521l/310272.jpg,https://images.gr-assets.com/books/1327448521s/310272.jpg\n5305,1402668,1402668,2092905,42,312361270,9780312361270.0,Madeleine Wickham,1998.0,The Gatecrasher,The Gatecrasher,en-GB,3.24,18306,19859,912,1080,3424,7810,4819,2726,https://images.gr-assets.com/books/1312001285l/1402668.jpg,https://images.gr-assets.com/books/1312001285s/1402668.jpg\n5306,822,822,934263,35,60733357,9780060733350.0,Neal Stephenson,2004.0,The Confusion,\"The Confusion (The Baroque Cycle, #2)\",en-US,4.24,17381,19175,621,144,580,2647,6995,8809,https://images.gr-assets.com/books/1407706997l/822.jpg,https://images.gr-assets.com/books/1407706997s/822.jpg\n5307,11275323,11275323,16202400,43,857522272,9780857522280.0,Terry Pratchett,2013.0,Raising Steam,\"Raising Steam (Discworld, #40, Moist von Lipwig #3 )\",eng,3.93,17613,22956,2186,257,1298,5450,8759,7192,https://images.gr-assets.com/books/1375882313l/11275323.jpg,https://images.gr-assets.com/books/1375882313s/11275323.jpg\n5308,17165932,17165932,23592719,31,547959206,9780547959210.0,Joelle Charbonneau,2014.0,Independent Study,\"Independent Study (The Testing, #2)\",eng,3.97,20593,23831,2060,198,1101,5398,9655,7479,https://images.gr-assets.com/books/1380034496l/17165932.jpg,https://images.gr-assets.com/books/1380034496s/17165932.jpg\n5309,24940998,24940998,44598633,28,399163840,9780399163840.0,Sue Grafton,2015.0,X,\"X (Kinsey Millhone, #24)\",eng,3.88,13353,20251,2674,268,911,5253,8421,5398,https://images.gr-assets.com/books/1429811123l/24940998.jpg,https://images.gr-assets.com/books/1429811123s/24940998.jpg\n5310,13821,13821,1011388,66,60567236,9780060567230.0,\"Roger Zelazny, Sönmez Güven\",1967.0,Lord of Light,Lord of Light,en-US,4.1,20227,21952,1100,415,1117,3899,6950,9571,https://images.gr-assets.com/books/1330127327l/13821.jpg,https://images.gr-assets.com/books/1330127327s/13821.jpg\n5311,194755,194755,2410127,76,224064924,9780224064930.0,\"Roald Dahl, Quentin Blake\",1990.0,Esio Trot,Esio Trot,eng,3.74,22062,25196,1252,470,1874,7938,8424,6490,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348269116l/194755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5312,102461,102461,412217,20,1593070918,9781593070920.0,Mike Mignola,1998.0,Hellboy: The Chained Coffin and Others,\"Hellboy, Vol. 3: The Chained Coffin and Others (Hellboy, #3)\",eng,4.21,16485,16747,236,156,447,2699,5857,7588,https://images.gr-assets.com/books/1486039255l/102461.jpg,https://images.gr-assets.com/books/1486039255s/102461.jpg\n5313,21727,21727,593515,46,307279952,9780307279960.0,Scott B. Smith,1993.0,A Simple Plan,A Simple Plan,,3.91,18628,19650,986,478,1086,4239,7690,6157,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388264590l/21727.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5314,3188186,3188186,3221117,55,316018740,9780316018750.0,\"James Patterson, Michael Ledwidge\",2009.0,Run for Your Life,\"Run for Your Life (Michael Bennett, #2)\",eng,4.0,19848,22226,1249,150,808,5098,9099,7071,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432319460l/3188186._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5315,428,428,4703,35,374529949,9780374529950.0,\"Joan Didion, David Thomson\",1970.0,Play It as It Lays,Play It as It Lays,eng,3.86,17411,18447,1440,321,1263,4385,7114,5364,https://images.gr-assets.com/books/1327935636l/428.jpg,https://images.gr-assets.com/books/1327935636s/428.jpg\n5316,125926,125926,2492799,46,553590154,9780553590160.0,Kelley Armstrong,2004.0,Dime Store Magic,\"Dime Store Magic (Women of the Otherworld, #3)\",eng,4.07,26456,29560,1130,185,946,6197,11466,10766,https://images.gr-assets.com/books/1355183293l/125926.jpg,https://images.gr-assets.com/books/1355183293s/125926.jpg\n5317,77504,77504,40711,38,553573357,9780553573350.0,Kim Stanley Robinson,1996.0,Blue Mars ,\"Blue Mars (Mars Trilogy, #3)\",eng,3.92,19500,20907,573,368,1316,4897,7445,6881,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429497319l/77504.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5318,4006,4006,2260900,90,722533942,9780722533950.0,\"Paulo Coelho, Alan R. Clarke\",1988.0,As Valkírias,The Valkyries,eng,3.3,14364,16954,777,1099,2817,5768,4426,2844,https://images.gr-assets.com/books/1414013931l/4006.jpg,https://images.gr-assets.com/books/1414013931s/4006.jpg\n5320,6665671,6665671,6860540,26,375865861,9780375865860.0,A.S. King,2010.0,Please Ignore Vera Dietz,Please Ignore Vera Dietz,eng,3.91,21728,23333,3056,527,1354,5128,9073,7251,https://images.gr-assets.com/books/1394240671l/6665671.jpg,https://images.gr-assets.com/books/1394240671s/6665671.jpg\n5321,256598,256598,242692,57,60766212,9780060766210.0,\"Joseph Delaney, Patrick  Arrasmith\",2005.0,The Spook's Curse,\"Curse of the Bane (The Last Apprentice / Wardstone Chronicles, #2)\",,4.1,18513,21917,942,146,670,4351,8401,8349,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426630248l/256598.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5322,395851,395851,385351,72,006102001X,9780061020020.0,L.J. Smith,1991.0,The Struggle,\"The Struggle (The Vampire Diaries, #2)\",eng,3.5,23840,29037,1058,1337,4057,9093,7745,6805,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392080170l/395851.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5323,112755,112755,2203425,39,440237556,9780440237560.0,Karen Marie Moning,2002.0,The Dark Highlander,\"The Dark Highlander (Highlander, #5)\",eng,4.31,27639,29554,1091,169,611,3948,9872,14954,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1521970950l/112755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5324,112752,112752,1281288,35,440237564,9780440237560.0,Karen Marie Moning,2004.0,The Immortal Highlander ,\"The Immortal Highlander (Highlander, #6)\",eng,4.34,27065,28854,1076,148,572,3712,9355,15067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436985405l/112752._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5325,25307,25307,4372,37,812971892,9780812971900.0,Reza Aslan,2005.0,\"No god but God: The Origins, Evolution, and Future of Islam\",\"No god but God: The Origins, Evolution and Future of Islam\",eng,4.13,15410,16823,1192,570,604,2438,5602,7609,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388221846l/25307.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5326,216377,216377,23607,74,679734465,9780679734470.0,Philip K. Dick,1981.0,Valis,\"VALIS (VALIS Trilogy, #1)\",eng,3.94,17305,18949,1119,464,1201,4014,6574,6696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388200579l/216377.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5327,457264,457264,879666,126,679724516,9780679724510.0,\"Simone de Beauvoir, H.M. Parshley, Deirdre Bair\",1949.0,\"Le deuxième sexe: I. Les faits et les mythes, II. L'expérience vécue\",The Second Sex,eng,4.09,18648,21160,833,243,794,3876,8087,8160,https://images.gr-assets.com/books/1327978178l/457264.jpg,https://images.gr-assets.com/books/1327978178s/457264.jpg\n5328,15703770,15703770,21365340,29,545284155,9780545284160.0,Jennifer A. Nielsen,2013.0,The Runaway King,\"The Runaway King (The Ascendance Trilogy, #2)\",eng,4.23,24032,25793,2859,201,680,3764,9571,11577,https://images.gr-assets.com/books/1351133357l/15703770.jpg,https://images.gr-assets.com/books/1351133357s/15703770.jpg\n5329,28481,28481,1611445,37,553286390,9780553286400.0,\"Margaret Weis, Tracy Hickman\",1990.0,\"Dragon Wing (The Death Gate Cycle, #1)\",\"Dragon Wing (The Death Gate Cycle, #1)\",en-US,3.93,20720,21892,475,354,1235,5115,8033,7155,https://images.gr-assets.com/books/1403168128l/28481.jpg,https://images.gr-assets.com/books/1403168128s/28481.jpg\n5330,4987,4987,1384043,78,385333900,9780385333900.0,Kurt Vonnegut Jr.,1979.0,Jailbird,Jailbird,eng,3.81,15643,17018,599,84,809,5084,7377,3664,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1514676373l/4987.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5331,156532,156532,885421,13,1401213510,9781401213510.0,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",2007.0,Y: The Last Man Vol. 9: Motherland,\"Y: The Last Man, Vol. 9: Motherland (Y: The Last Man, #9)\",eng,4.27,20511,20718,365,161,509,2731,7476,9841,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389738956l/156532.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5332,3973,3973,3185401,52,380817926,9780380817920.0,Dan Simmons,2003.0,Ilium,\"Ilium (Ilium, #1)\",eng,4.01,19242,21323,906,376,1055,4007,8408,7477,https://images.gr-assets.com/books/1390894862l/3973.jpg,https://images.gr-assets.com/books/1390894862s/3973.jpg\n5334,923950,923950,908967,36,553062182,9780553062180.0,Elaine N. Aron,1996.0,The Highly Sensitive Person - How to Thrive when the World Overwhelms You,The Highly Sensitive Person: How to Thrive When the World Overwhelms You,eng,3.87,19447,20599,858,670,1406,4731,6985,6807,https://images.gr-assets.com/books/1320525063l/923950.jpg,https://images.gr-assets.com/books/1320525063s/923950.jpg\n5335,1774836,1774836,25128382,38,385515995,9780385515990.0,Chitra Banerjee Divakaruni,2008.0,The Palace of Illusions,The Palace of Illusions,en-US,4.11,16304,17930,1834,185,630,2977,7403,6735,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1396229073l/1774836.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5336,147602,147602,1488838,9,385495404,9780385495400.0,H.W. Brands,2000.0,The First American: The Life and Times of Benjamin Franklin,The First American: The Life and Times of Benjamin Franklin,eng,4.09,15323,15531,276,352,618,2640,5569,6352,https://images.gr-assets.com/books/1320438405l/147602.jpg,https://images.gr-assets.com/books/1320438405s/147602.jpg\n5337,136638,136638,1847396,68,446617091,9780446617090.0,\"Douglas Preston, Lincoln Child\",2005.0,Dance of Death,\"Dance of Death (Pendergast, #6; Diogenes, #2)\",eng,4.16,19812,22023,713,81,437,3766,9365,8374,https://images.gr-assets.com/books/1172082458l/136638.jpg,https://images.gr-assets.com/books/1172082458s/136638.jpg\n5338,6393972,6393972,6582550,19,547248040,9780547248040.0,Susan Beth Pfeffer,2010.0,This World We Live In,\"This World We Live In (Last Survivors, #3)\",en-US,3.81,23711,25456,2390,480,2002,7003,8413,7558,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442881735l/6393972._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5339,1493253,1493253,437777,12,1591167531,9781591167530.0,\"Yoshihiro Togashi, 冨樫 義博\",1998.0,Hunter × Hunter #1,\"Hunter x Hunter, Vol. 01 (Hunter x Hunter, #1)\",eng,4.43,18244,18401,156,179,463,2001,4362,11396,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1584822437l/1493253._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5340,132778,132778,1097463,63,749934131,9780749934130.0,J.D. Robb,1997.0,Vengeance in Death,\"Vengeance in Death (In Death, #6)\",eng,4.34,24839,28673,877,63,317,3704,10449,14140,https://images.gr-assets.com/books/1314315865l/132778.jpg,https://images.gr-assets.com/books/1314315865s/132778.jpg\n5341,77773,77773,696,35,553575384,9780553575380.0,Connie Willis,1998.0,To Say Nothing of the Dog,\"To Say Nothing of the Dog (Oxford Time Travel, #2)\",eng,4.13,23197,25648,2970,391,990,4059,9588,10620,https://images.gr-assets.com/books/1469410460l/77773.jpg,https://images.gr-assets.com/books/1469410460s/77773.jpg\n5342,7646805,7646805,10194115,59,1846054761,9781846054760.0,\"James Patterson, Ned Rust\",2010.0,The Gift,\"The Gift (Witch & Wizard, #2)\",,3.78,17070,23816,1413,661,2094,6195,7676,7190,https://images.gr-assets.com/books/1273009084l/7646805.jpg,https://images.gr-assets.com/books/1273009084s/7646805.jpg\n5343,7679,7679,2651704,77,60092572,9780060092570.0,Michael Crichton,1972.0,The Terminal Man,The Terminal Man,eng,3.34,19072,20590,619,403,2792,9098,5935,2362,https://images.gr-assets.com/books/1461056182l/7679.jpg,https://images.gr-assets.com/books/1461056182s/7679.jpg\n5344,18337259,18337259,40783698,6,,9780345536150.0,\"Daniel Abraham, George R.R. Martin, Tommy Patterson\",2011.0,A Song of Ice and Fire Graphic Novels,\"A Game of Thrones: Comic Book, Issue 1\",eng,4.65,18667,20181,188,154,190,879,4215,14743,https://images.gr-assets.com/books/1376738412l/18337259.jpg,https://images.gr-assets.com/books/1376738412s/18337259.jpg\n5345,6087756,6087756,6264661,35,1416963960,9781416963970.0,Holly Black,2010.0,White Cat,\"White Cat (Curse Workers, #1)\",eng,3.81,29444,32957,3960,929,2241,8031,12771,8985,https://images.gr-assets.com/books/1358274572l/6087756.jpg,https://images.gr-assets.com/books/1358274572s/6087756.jpg\n5346,11437,11437,790838,37,679722319,9780679722310.0,Raymond Carver,1988.0,Where I’m Calling From: The Selected Stories,Where I'm Calling From: New and Selected Stories,en-US,4.42,16617,17553,825,142,293,1581,5543,9994,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388237827l/11437.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5347,26999,26999,948606,47,014303541X,9780143035410.0,Jasper Fforde,2004.0,Something Rotten,\"Something Rotten (Thursday Next, #4)\",eng,4.15,24526,27581,1257,89,495,4848,12042,10107,https://images.gr-assets.com/books/1479773726l/26999.jpg,https://images.gr-assets.com/books/1479773726s/26999.jpg\n5348,8318666,8318666,13167950,72,517580519,9780517580520.0,Jean M. Auel,2011.0,The Land of the Painted Caves,\"The Land of Painted Caves (Earth's Children, #6)\",eng,3.24,19300,22787,3018,2839,4136,5774,4807,5231,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194834l/8318666.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5349,534255,534255,95778,19,60569662,9780060569660.0,Lucy Grealy,1994.0,Autobiography of a Face,Autobiography of a Face,en-GB,3.96,18982,19686,1325,261,980,4333,7734,6378,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921470l/534255.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5350,22465597,22465597,41903598,32,62224107,9780062224100.0,Lauren Oliver,2015.0,Vanishing Girls,Vanishing Girls,en-CA,3.59,19508,21289,3439,564,2228,6779,7484,4234,https://images.gr-assets.com/books/1414618400l/22465597.jpg,https://images.gr-assets.com/books/1414618400s/22465597.jpg\n5351,141019,141019,135917,84,736421866,9780736421870.0,Walt Disney Company,1812.0,Snow White and the Seven Dwarfs,Snow White and the Seven Dwarfs (Little Golden Book),,4.18,20021,20343,194,307,925,3936,4769,10406,https://images.gr-assets.com/books/1320524015l/141019.jpg,https://images.gr-assets.com/books/1320524015s/141019.jpg\n5352,7355137,7355137,9128025,39,006124242X,9780061242430.0,\"Angie Sage, Mark Zug\",2011.0,Darke,\"Darke (Septimus Heap, #6)\",eng,4.23,21322,22337,701,228,641,3430,7529,10509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347727660l/7355137.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5353,7528717,7528717,9767249,13,810996162,9780810996170.0,Jeff Kinney,2010.0,The Wimpy Kid Movie Diary: How Greg Heffley Went Hollywood,The Wimpy Kid Movie Diary (Diary of a Wimpy Kid),en-US,4.16,15956,16210,399,722,1047,2344,2898,9199,https://images.gr-assets.com/books/1328811516l/7528717.jpg,https://images.gr-assets.com/books/1328811516s/7528717.jpg\n5354,80616,80616,1336952,88,679722637,9780679722630.0,Dashiell Hammett,1934.0,The Thin Man,The Thin Man,eng,3.97,20535,21858,1534,257,946,4822,8950,6883,https://images.gr-assets.com/books/1321111302l/80616.jpg,https://images.gr-assets.com/books/1321111302s/80616.jpg\n5355,178813,178813,2011131,56,316726192,9780316726190.0,Candace Bushnell,2003.0,Trading Up,Trading Up,eng,3.2,15604,17217,703,1505,3056,5813,4121,2722,https://images.gr-assets.com/books/1351341588l/178813.jpg,https://images.gr-assets.com/books/1351341588s/178813.jpg\n5356,234489,234489,98235,32,553279718,9780553279720.0,David Brin,1987.0,The Uplift War,\"The Uplift War (The Uplift Saga, #3)\",en-US,4.06,20217,20945,279,164,750,4219,8394,7418,https://images.gr-assets.com/books/1375272637l/234489.jpg,https://images.gr-assets.com/books/1375272637s/234489.jpg\n5357,13881,13881,1175878,46,380974738,9780380974730.0,Raymond E. Feist,1997.0,Rage of a Demon King (The Serpentwar Saga #3),\"Rage of a Demon King (The Serpentwar Saga, #3)\",en-US,4.02,19206,20644,110,101,692,4761,8304,6786,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389586786l/13881.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5358,395182,395182,876732,76,140186301,9780140186310.0,\"Kingsley Amis, David Lodge\",1954.0,Lucky Jim,Lucky Jim,eng,3.79,17448,20137,1430,529,1518,5177,7389,5524,https://images.gr-assets.com/books/1373459729l/395182.jpg,https://images.gr-assets.com/books/1373459729s/395182.jpg\n5359,21721,21721,1952670,79,60534052,9780060534060.0,Karin Slaughter,2003.0,A Faint Cold Fear,\"A Faint Cold Fear (Grant County, #3)\",en-US,4.12,18827,22211,815,125,649,4177,8797,8463,https://images.gr-assets.com/books/1394126332l/21721.jpg,https://images.gr-assets.com/books/1394126332s/21721.jpg\n5360,23846013,23846013,42990051,32,399167846,9780399167840.0,Marie Lu,2015.0,The Rose Society,\"The Rose Society (The Young Elites, #2)\",eng,4.11,27655,29973,4635,270,1139,5272,11606,11686,https://images.gr-assets.com/books/1443368070l/23846013.jpg,https://images.gr-assets.com/books/1443368070s/23846013.jpg\n5361,276342,276342,1521035,49,345484274,9780345484280.0,Kristin Hannah,2000.0,Angel Falls,Angel Falls,,3.9,17886,19908,1066,245,1086,5084,7454,6039,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206922l/276342.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5362,5168517,5168517,5235557,22,670011304,9780670011310.0,Susane Colasanti,2009.0,Waiting For You,Waiting For You,eng,3.84,20236,20656,798,532,1570,5478,6263,6813,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442714934l/5168517._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5363,18775365,18775365,26680498,13,147673190X,9781476731900.0,Jeff Hobbs,2014.0,The Short and Tragic Life of Robert Peace: A Brilliant Young Man Who Left Newark for the Ivy League,The Short and Tragic Life of Robert Peace: A Brilliant Young Man Who Left Newark for the Ivy League,eng,4.13,14451,16770,2163,219,531,2686,6804,6530,https://images.gr-assets.com/books/1420938377l/18775365.jpg,https://images.gr-assets.com/books/1420938377s/18775365.jpg\n5365,5422154,5422154,5489697,53,553807234,9780553807230.0,Lisa Gardner,2009.0,The Neighbor,\"The Neighbor (Detective D.D. Warren, #3)\",eng,4.08,19985,23482,1790,126,678,4446,10155,8077,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429126631l/5422154.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5366,2202230,2202230,2207992,14,140121813X,9781401218130.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr.\",2008.0,Y: The Last Man Vol. 10: Whys And Wherefores,\"Y: The Last Man, Vol. 10: Whys and Wherefores (Y: The Last Man, #10)\",eng,4.34,19916,20175,1038,210,595,2255,6180,10935,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210445l/2202230.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5367,840278,840278,4273,55,812520475,9780812520480.0,Greg Bear,1984.0,Eon,\"Eon (The Way, #1)\",en-US,3.86,18373,19786,537,248,1189,5200,7607,5542,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288738l/840278.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5368,25776122,25776122,45625060,4,812993101,9780812993100.0,Helen Simonson,2016.0,The Summer Before the War,The Summer Before the War,eng,3.79,17350,22240,3613,408,1439,5778,9356,5259,https://images.gr-assets.com/books/1443294379l/25776122.jpg,https://images.gr-assets.com/books/1443294379s/25776122.jpg\n5369,612188,612188,848877,71,679723951,9780679723950.0,\"C.G. Jung, Aniela Jaffé, Richard Winston, Clara Winston\",1961.0,\"Erinnerungen, Träume, Gedanken von C.G. Jung\",\"Memories, Dreams, Reflections\",eng,4.19,16810,17604,453,373,614,2690,5618,8309,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348081175l/612188.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5370,7121598,7121598,7382823,25,425234339,9780425234330.0,Laurell K. Hamilton,2010.0,Bullet,\"Bullet (Anita Blake, Vampire Hunter #19)\",en-US,3.82,25388,27502,1128,1144,2479,6313,7744,9822,https://images.gr-assets.com/books/1292915430l/7121598.jpg,https://images.gr-assets.com/books/1292915430s/7121598.jpg\n5371,8533018,8533018,13400250,29,1409135195,9781409135200.0,Diana Gabaldon,2011.0,The Scottish Prisoner,\"The Scottish Prisoner (Lord John Grey, #3)\",eng,4.19,17459,21447,1594,194,571,3497,7897,9288,https://images.gr-assets.com/books/1372562277l/8533018.jpg,https://images.gr-assets.com/books/1372562277s/8533018.jpg\n5372,199785,199785,2013729,50,60725133,9780060725140.0,Meg Cabot,2001.0,Reunion,\"Reunion (The Mediator, #3)\",eng,4.09,28944,30937,664,167,996,6742,11083,11949,https://images.gr-assets.com/books/1327954705l/199785.jpg,https://images.gr-assets.com/books/1327954705s/199785.jpg\n5373,10706934,10706934,15617293,5,,9789953566240.0,ياسر حارب,2011.0,بيكاسو وستاربكس,بيكاسو وستاربكس,ara,3.55,16117,16294,2397,1213,2085,4127,4232,4637,https://images.gr-assets.com/books/1319030238l/10706934.jpg,https://images.gr-assets.com/books/1319030238s/10706934.jpg\n5374,26101,26101,3838,113,571206921,9780571206930.0,\"Milan Kundera, Suzanne Rappaport\",1970.0,Směšné lásky ,Laughable Loves,eng,3.86,12984,17408,781,179,838,4631,7271,4489,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547124116l/26101._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5375,110387,110387,1790570,38,61230839,9780061230840.0,Julia Quinn,2007.0,The Secret Diaries of Miss Miranda Cheever,\"The Secret Diaries of Miss Miranda Cheever (Bevelstoke, #1)\",eng,3.93,25533,26855,1136,539,1623,6301,9123,9269,https://images.gr-assets.com/books/1274212433l/110387.jpg,https://images.gr-assets.com/books/1274212433s/110387.jpg\n5376,89959,89959,86823,64,1557091528,9781557091530.0,Founding Fathers,1787.0,The Constitution of the United States of America,The Constitution of the United States of America,,4.54,16863,19933,340,254,461,1756,3180,14282,https://images.gr-assets.com/books/1328756752l/89959.jpg,https://images.gr-assets.com/books/1328756752s/89959.jpg\n5377,103902,103902,100186,32,382285980X,9783822859800.0,Gilles Néret,1992.0,Gustav Klimt: le monde comme une forme féminine,Gustav Klimt: 1862-1918,,4.12,15611,15741,40,319,761,2767,4725,7169,https://images.gr-assets.com/books/1393794080l/103902.jpg,https://images.gr-assets.com/books/1393794080s/103902.jpg\n5378,31072,31072,1321805,118,60955228,9780060955230.0,Malcolm Lowry,1947.0,Under the Volcano,Under the Volcano,eng,3.8,15832,18000,1010,799,1715,3931,5419,6136,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390014193l/31072.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5379,20894857,20808520,40153468,2,,,Rachel Abbott,2014.0,Sleep tight,Sleep Tight,eng,3.98,10894,18454,1056,296,822,3837,7433,6066,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393219053l/20894857.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5380,824734,824734,933480,56,679824111,9780679824110.0,\"Mary Pope Osborne, Salvatore Murdocca\",2002.0,Dinosaurs Before Dark,\"Dinosaurs Before Dark (Magic Tree House, #1)\",eng,3.87,22533,23439,1857,611,1649,6170,6669,8340,https://images.gr-assets.com/books/1320508235l/824734.jpg,https://images.gr-assets.com/books/1320508235s/824734.jpg\n5381,20417,20417,1984753,58,1416505490,9781416505500.0,Robert A. Heinlein,1958.0,Have Space Suit - Will Travel,Have Space Suit—Will Travel,eng,3.89,20260,21785,743,142,1025,6164,8319,6135,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425593094l/20417.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5382,43049,43049,2062963,594,1598184318,9781598184310.0,Jack London,1904.0,The Sea Wolf,The Sea Wolf,eng,4.01,16488,19441,992,212,809,4184,7518,6718,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389481608l/43049.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5383,23224,23224,2013708,40,60725141,9780060725140.0,Meg Cabot,2001.0,Darkest Hour,\"Darkest Hour (The Mediator, #4)\",eng,4.16,28104,29910,685,140,791,5686,10675,12618,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187645l/23224.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5384,10767466,10767466,15678952,6,1770460608,9781770460610.0,Kate Beaton,2011.0,Hark! A Vagrant,Hark! A Vagrant,eng,4.27,20587,20789,1350,491,646,2405,6392,10855,https://images.gr-assets.com/books/1327877328l/10767466.jpg,https://images.gr-assets.com/books/1327877328s/10767466.jpg\n5385,16059,16059,1617177,38,375727132,9780375727140.0,Ann Packer,2002.0,The Dive From Clausen's Pier,The Dive From Clausen's Pier,eng,3.41,18445,19639,1741,792,2376,7168,6543,2760,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390408629l/16059.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5386,53061,53061,17413130,283,60576170,9780060576170.0,\"Thomas Mann, Michael Henry Heim, Michael Cunningham\",1912.0,Der Tod in Venedig,Death in Venice,eng,3.73,17168,22848,1133,662,1971,6162,8044,6009,https://images.gr-assets.com/books/1410132000l/53061.jpg,https://images.gr-assets.com/books/1410132000s/53061.jpg\n5387,206731,206731,2899219,73,62508342,9780062508350.0,\"Sogyal Rinpoche, Andrew Harvey\",1992.0,The Tibetan Book of Living and Dying,The Tibetan Book of Living and Dying,,4.22,17170,18380,491,236,621,2870,5847,8806,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440341532l/206731._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5388,7973,7973,506063,39,345482409,9780345482400.0,Orson Scott Card,1999.0,Enchantment,Enchantment,,3.89,21889,23158,2210,373,1334,5621,8931,6899,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388707953l/7973.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5389,175516,175516,15570703,256,1594561796,9781594561800.0,Edgar Allan Poe,1839.0,The Fall of the House of Usher ,The Fall of the House of Usher,eng,3.92,26468,28453,794,314,1554,6878,10945,8762,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708966l/175516.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5390,4415692,4415692,4463856,26,141691420X,9781416914200.0,D.J. MacHale,2009.0,The Soldiers of Halla,\"The Soldiers of Halla (Pendragon, #10)\",en-US,4.27,19502,19934,522,343,734,2903,5214,10740,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348127337l/4415692.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5391,301022,301022,292089,35,385732074,9780385732080.0,E. Lockhart,2005.0,\"The Boyfriend List: 15 Guys, 11 Shrink Appointments, 4 Ceramic Frogs and Me, Ruby Oliver (Ruby Oliver, #1)\",\"The Boyfriend List: 15 Guys, 11 Shrink Appointments, 4 Ceramic Frogs and Me, Ruby Oliver (Ruby Oliver, #1)\",en-US,3.49,22687,24018,1724,1180,2926,7723,7355,4834,https://images.gr-assets.com/books/1342343845l/301022.jpg,https://images.gr-assets.com/books/1342343845s/301022.jpg\n5392,5872,5872,9250,49,140236236,9780140236230.0,Pat Barker,1991.0,Regeneration,\"Regeneration (Regeneration, #1)\",en-GB,4.03,17126,19993,1168,268,906,3897,7880,7042,https://images.gr-assets.com/books/1365925619l/5872.jpg,https://images.gr-assets.com/books/1365925619s/5872.jpg\n5393,18668485,18668485,25389331,7,,,Veronica Roth,2014.0,Four: The Initiate,\"The Initiate (Divergent, #0.2)\",eng,4.2,15505,20659,618,219,660,3651,6351,9778,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406901205l/18668485.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5394,133729,133729,2166070,45,91879205,9780091879200.0,Michael J. Fox,2002.0,Lucky Man,Lucky Man,eng,4.06,16862,18607,1170,197,577,3623,7658,6552,https://images.gr-assets.com/books/1398617130l/133729.jpg,https://images.gr-assets.com/books/1398617130s/133729.jpg\n5395,17645,17645,3016476,77,1841957178,9781841957170.0,Margaret Atwood,2005.0,The Penelopiad,The Penelopiad,en-US,3.66,21731,25698,2512,464,2307,8074,9567,5286,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442806554l/17645._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5396,6390031,6390031,6578427,14,1597801607,9781597801610.0,\"John Joseph Adams, Robert J. Sawyer, Stephen King, Michael Moorcock, Sharyn McCrumb, Stephen Baxter, Anne Perry, Barbara Hambly, Tanith Lee, Neil Gaiman, Rob Rogers, Naomi Novik, Anthony Burgess, Dominic Green, Laurie R. King, Barbara Roden, Peter Tremayne, Tim Lebbon, Bradley H. Sinor, Edward D. Hoch, Vonda N. McIntyre, Darrell Schweitzer, Mary Robinette Kowal, H.Paul Jeffers, Geoffrey A. Landis, Amy Myers, Tony Pi, Chris Roberson, Mark Valentine\",2007.0,The Improbable Adventures of Sherlock Holmes,The Improbable Adventures of Sherlock Holmes,eng,4.37,16405,16701,272,225,373,1920,4638,9545,https://images.gr-assets.com/books/1391343317l/6390031.jpg,https://images.gr-assets.com/books/1391343317s/6390031.jpg\n5397,192341,192341,185983,33,743265025,9780743265030.0,Gigi Levangie Grazer,2005.0,The Starter Wife,The Starter Wife,,3.51,17173,17715,531,717,2101,5867,5405,3625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442885286l/192341._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5398,167010,167010,1138857,17,140120077X,9781401200770.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, James Jean\",2003.0,\"Fables, Volume 2: Animal Farm\",\"Fables, Vol. 2: Animal Farm\",eng,4.12,23951,24620,1113,133,645,4400,10514,8928,https://images.gr-assets.com/books/1364233122l/167010.jpg,https://images.gr-assets.com/books/1364233122s/167010.jpg\n5399,464260,464260,1129041,45,067974472X,9780679744730.0,\"James     Baldwin, Kıvanç Güney\",1963.0,The Fire Next Time,The Fire Next Time,eng,4.45,19816,21328,1450,105,327,2002,6326,12568,https://images.gr-assets.com/books/1488825618l/464260.jpg,https://images.gr-assets.com/books/1488825618s/464260.jpg\n5400,191117,191117,184784,16,786837462,9780786837460.0,Mo Willems,2006.0,Don't Let the Pigeon Stay Up Late!,Don't Let the Pigeon Stay Up Late!,en-US,4.35,25532,25667,802,339,752,3330,6417,14829,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439773391l/191117._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5401,22358,22358,23384,20,1401204953,9781401204950.0,\"Grant Morrison, Frank Quitely\",2005.0,We3,We3,eng,3.95,18822,19717,879,811,1239,3777,6104,7786,https://images.gr-assets.com/books/1336056522l/22358.jpg,https://images.gr-assets.com/books/1336056522s/22358.jpg\n5402,93731,93731,1075200,75,60096128,9780060096120.0,Meg Cabot,2003.0,Princess in Pink,\"Princess in Pink (The Princess Diaries, #5)\",eng,3.69,27057,29540,639,444,2504,10120,9222,7250,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470711l/93731.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5403,2051840,2051840,2101855,18,61288853,9780061288850.0,Ellen Schreiber,2008.0,\"The Coffin Club (Vampire Kisses, #5)\",\"The Coffin Club (Vampire Kisses, #5)\",eng,4.06,22257,23288,420,535,1556,4731,5573,10893,https://images.gr-assets.com/books/1306605099l/2051840.jpg,https://images.gr-assets.com/books/1306605099s/2051840.jpg\n5404,11376,11376,18537748,239,375753141,9780375753140.0,Sinclair Lewis,1920.0,Main Street,Main Street,eng,3.75,19040,20509,827,585,1562,5585,7367,5410,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308953459l/11376.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5405,20829994,20829994,26384073,39,,,\"Rick Riordan, John Rocco\",2014.0,Percy Jackson's Greek Gods,Percy Jackson's Greek Gods (A Percy Jackson and the Olympians Guide),eng,4.51,24718,29563,2636,159,387,2541,7679,18797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437455100l/20829994._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5406,16178,16178,564970,19,618683070,9780618683080.0,Catherine Gilbert Murdock,2006.0,Dairy Queen,\"Dairy Queen (Dairy Queen, #1)\",eng,3.73,23306,24821,2448,1003,2010,6345,8742,6721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1570323194l/16178._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5407,10756240,10756240,15667548,49,61493341,9780061493350.0,Michael Chabon,2012.0,Telegraph Avenue,Telegraph Avenue,eng,3.36,15614,17509,2957,991,2427,5767,5865,2459,https://images.gr-assets.com/books/1335716595l/10756240.jpg,https://images.gr-assets.com/books/1335716595s/10756240.jpg\n5408,5764902,5764902,5936637,84,385341962,9780385341970.0,Karin Slaughter,2009.0,Genesis,\"Undone (Will Trent, #3)\",eng,4.24,17871,22240,1235,101,313,2998,9457,9371,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388843741l/5764902.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5409,23014670,23014670,42580799,38,125005480X,9781250054810.0,Erika Swyler,2015.0,The Book of Speculation,The Book of Speculation,eng,3.59,17345,19573,3235,441,1769,6454,7640,3269,https://images.gr-assets.com/books/1422476749l/23014670.jpg,https://images.gr-assets.com/books/1422476749s/23014670.jpg\n5410,6726595,6726595,6922779,24,042523567X,9780425235680.0,Laurell K. Hamilton,2009.0,Flirt,\"Flirt (Anita Blake, Vampire Hunter #18)\",en-US,3.7,26325,28440,1060,1325,3195,7394,7308,9218,https://images.gr-assets.com/books/1310494369l/6726595.jpg,https://images.gr-assets.com/books/1310494369s/6726595.jpg\n5411,59825,59825,479100,66,515124214,9780515124220.0,Nora Roberts,1998.0,Inner Harbor (Chesapeake Bay Saga #3),\"Inner Harbor (Chesapeake Bay Saga, #3)\",eng,4.16,23833,25621,511,68,599,4991,9410,10553,https://images.gr-assets.com/books/1399120297l/59825.jpg,https://images.gr-assets.com/books/1399120297s/59825.jpg\n5412,6559316,6559316,6752024,27,61779725,9780061779720.0,Christopher Moore,2010.0,Bite Me,\"Bite Me (A Love Story, #3)\",en-US,3.85,20914,22295,1533,400,1223,5767,8935,5970,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440562965l/6559316._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5413,228765,228765,221543,5,394719689,9780394719690.0,Frederick Franck,1973.0,Zen of Seeing: Seeing/Drawing as Meditation,Zen of Seeing: Seeing/Drawing as Meditation,,3.92,14748,14803,66,618,1196,3176,3629,6184,https://images.gr-assets.com/books/1403191163l/228765.jpg,https://images.gr-assets.com/books/1403191163s/228765.jpg\n5414,147843,147843,2566190,32,886778581,9780886778580.0,Kristen Britain,1998.0,Green Rider,\"Green Rider (Green Rider, #1)\",eng,4.09,24006,25680,1356,413,1120,4639,9146,10362,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749176l/147843.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5415,61942,61942,6614581,19,785729194,9780785729200.0,Anne McCaffrey,1968.0,The Dragonriders of Pern,\"The Dragonriders of Pern (Dragonriders of Pern, #1-3)\",,4.22,18896,22669,424,206,682,3748,7415,10618,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348984331l/61942.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5416,18079683,18079683,25386975,24,1594631395,9781594631400.0,Helen Oyeyemi,2013.0,\"Boy, Snow, Bird\",\"Boy, Snow, Bird\",eng,3.34,17667,19779,3286,1017,3043,6716,6277,2726,https://images.gr-assets.com/books/1391384454l/18079683.jpg,https://images.gr-assets.com/books/1391384454s/18079683.jpg\n5417,64860,64860,62952,57,312939035,9780312939040.0,Sue Grafton,1988.0,E Is for Evidence,\"E is for Evidence (Kinsey Millhone, #5)\",,3.88,24206,26160,634,72,659,8053,11032,6344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789160l/64860.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5418,9628743,9628743,14516046,30,140006760X,9781400067600.0,David  Brooks,2011.0,\"The Social Animal: The Hidden Sources of Love, Character, and Achievement\",\"The Social Animal: The Hidden Sources of Love, Character, and Achievement\",eng,3.83,15378,16744,1492,426,1230,4060,6145,4883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348711254l/9628743.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5419,7140754,7140754,7404751,70,385533411,9780385533420.0,Ian McEwan,2010.0,Solar,Solar,eng,3.23,17333,20041,2459,1065,3261,7712,5997,2006,https://images.gr-assets.com/books/1320510358l/7140754.jpg,https://images.gr-assets.com/books/1320510358s/7140754.jpg\n5420,61539,61539,1748176,85,226458083,9780226458080.0,Thomas S. Kuhn,1962.0,The Structure of Scientific Revolutions,The Structure of Scientific Revolutions,eng,3.98,15950,17508,838,484,1003,3297,6234,6490,https://images.gr-assets.com/books/1396422530l/61539.jpg,https://images.gr-assets.com/books/1396422530s/61539.jpg\n5421,44001,44001,573909,52,312424671,9780312424670.0,Andrea Levy,2004.0,Small Island,Small Island,en-US,3.89,17205,19654,1248,320,1003,4534,8385,5412,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437256773l/44001._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5422,28220985,28220985,46010280,17,1250022134,9781250022130.0,Louise Penny,2016.0,A Great Reckoning,\"A Great Reckoning (Chief Inspector Armand Gamache, #12)\",eng,4.46,13563,20529,2896,138,301,1596,6522,11972,https://images.gr-assets.com/books/1457914582l/28220985.jpg,https://images.gr-assets.com/books/1457914582s/28220985.jpg\n5423,43327,43327,2889349,74,446610178,9780446610180.0,Sidney Sheldon,2000.0,The Sky is Falling,The Sky is Falling,eng,3.54,15345,16370,459,345,1718,6063,5293,2951,https://images.gr-assets.com/books/1353302273l/43327.jpg,https://images.gr-assets.com/books/1353302273s/43327.jpg\n5425,30672,30672,881601,121,553265954,9780553265960.0,\"Arthur Koestler, Daphne Hardy\",1940.0,Sonnenfinsternis,Darkness at Noon,eng,4.06,16818,19452,1002,253,793,3649,7516,7241,https://images.gr-assets.com/books/1290053535l/30672.jpg,https://images.gr-assets.com/books/1290053535s/30672.jpg\n5426,8341567,8341567,13039143,20,425238814,9780425238810.0,Jaci Burton,2011.0,The Perfect Play,\"The Perfect Play (Play by Play, #1)\",en-US,3.93,31260,32768,1762,926,1862,7167,11281,11532,https://images.gr-assets.com/books/1301853642l/8341567.jpg,https://images.gr-assets.com/books/1301853642s/8341567.jpg\n5427,763047,763047,2888227,31,767915593,9780767915600.0,Jane Green,1997.0,Straight Talking,Straight Talking,,3.63,17917,18443,346,511,1558,6206,6118,4050,https://images.gr-assets.com/books/1320399611l/763047.jpg,https://images.gr-assets.com/books/1320399611s/763047.jpg\n5428,112292,112292,108122,32,441014186,9780441014190.0,Jack Campbell,2006.0,\"Dauntless (The Lost Fleet, #1)\",\"Dauntless (The Lost Fleet, #1)\",,3.93,19074,21316,1207,271,1048,4742,9006,6249,https://images.gr-assets.com/books/1309198180l/112292.jpg,https://images.gr-assets.com/books/1309198180s/112292.jpg\n5429,61886,61886,1129349,49,7133618,9780007133610.0,Lois McMaster Bujold,2000.0,The Curse of Chalion,\"The Curse of Chalion (World of the Five Gods, #1)\",eng,4.16,21007,24136,1661,318,852,3764,9004,10198,https://images.gr-assets.com/books/1322571773l/61886.jpg,https://images.gr-assets.com/books/1322571773s/61886.jpg\n5430,80534,80534,600345,27,778322858,9780778322860.0,Elizabeth Flock,2005.0,Me & Emma,Me & Emma,,3.9,16975,18885,1821,364,1102,4459,7064,5896,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388360733l/80534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5431,114187,114187,849211,68,515136263,9780515136260.0,Nora Roberts,2002.0,\"Chesapeake Blue (Chesapeake Bay Saga, #4)\",\"Chesapeake Blue (Chesapeake Bay Saga, #4)\",en-US,4.17,23925,25788,648,115,707,4841,9132,10993,https://images.gr-assets.com/books/1304979355l/114187.jpg,https://images.gr-assets.com/books/1304979355s/114187.jpg\n5432,6472451,6472451,6550542,16,316040096,9780316040100.0,Malinda Lo,2009.0,Ash,Ash,en-US,3.62,14513,23952,2762,1199,2553,6553,7467,6180,https://images.gr-assets.com/books/1286563960l/6472451.jpg,https://images.gr-assets.com/books/1286563960s/6472451.jpg\n5433,6489529,6489529,6680918,55,000721975X,9780007219760.0,Bernard Cornwell,2009.0,The Burning Land,\"The Burning Land (The Saxon Stories, #5)\",eng,4.29,15373,18871,675,48,191,2318,7965,8349,https://images.gr-assets.com/books/1328489431l/6489529.jpg,https://images.gr-assets.com/books/1328489431s/6489529.jpg\n5434,199687,199687,2975812,14,609807919,9780609807910.0,Megan McCafferty,2003.0,\"Second Helpings (Jessica Darling, #2)\",\"Second Helpings (Jessica Darling, #2)\",eng,4.08,23180,23834,831,290,960,4680,8457,9447,https://images.gr-assets.com/books/1388707744l/199687.jpg,https://images.gr-assets.com/books/1388707744s/199687.jpg\n5435,134360,134360,520350,6,893816949,9780893816940.0,\"Diane Arbus, Stan Grossfeld, Doon Arbus, Marvin Israel\",1972.0,Diane Arbus: An Aperture Monograph,Diane Arbus: Monograph,,4.0,14769,14886,47,665,1064,2639,3735,6783,https://images.gr-assets.com/books/1312051661l/134360.jpg,https://images.gr-assets.com/books/1312051661s/134360.jpg\n5436,253106,253106,2974214,25,763620912,9780763620910.0,Carolyn Mackler,2003.0,\"The Earth, My Butt, and Other Big Round Things\",\"The Earth, My Butt, and Other Big Round Things\",eng,3.77,21129,22209,1459,474,1775,6478,7195,6287,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405148355l/253106.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5437,12194,12194,2578988,604,1551111721,9781551111730.0,Joseph Conrad,1900.0,Lord Jim,Lord Jim,eng,3.61,19113,22703,1002,1063,2299,6399,7601,5341,https://images.gr-assets.com/books/1372366969l/12194.jpg,https://images.gr-assets.com/books/1372366969s/12194.jpg\n5438,225545,225545,460938,28,375836977,9780375836980.0,Leo Lionni,1975.0,A Color of His Own,A Color of His Own,,4.25,17617,17884,350,166,546,3034,5077,9061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924526l/225545.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5439,79257,79257,944896,20,671664263,9780671664270.0,Neil Gaiman,1987.0,Don't Panic: The Official Hitchhikers Guide to the Galaxy Companion,Don't Panic: The Official Hitchhiker's Guide to the Galaxy Companion,eng,4.31,18015,18751,164,158,479,2786,5345,9983,https://images.gr-assets.com/books/1328797053l/79257.jpg,https://images.gr-assets.com/books/1328797053s/79257.jpg\n5440,542752,542752,322502,22,142400769,9780142400760.0,Andrew Clements,2002.0,Things Not Seen,\"Things Not Seen (Things, #1)\",en-GB,3.88,21478,22288,1699,367,1333,5736,7987,6865,https://images.gr-assets.com/books/1327910708l/542752.jpg,https://images.gr-assets.com/books/1327910708s/542752.jpg\n5441,19747756,19747756,192659,52,,,\"Frank E. Peretti, Ted Dekker\",2006.0,House,House,eng,3.6,17813,19793,1463,1187,2431,5115,5507,5553,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387734068l/19747756.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5442,13638125,13638125,19250870,16,765335344,9780765335340.0,\"V.E. Schwab, Victoria Schwab\",2013.0,Vicious,\"Vicious (Villains, #1)\",eng,4.25,23613,28491,5893,265,834,3829,10026,13537,https://images.gr-assets.com/books/1362495700l/13638125.jpg,https://images.gr-assets.com/books/1362495700s/13638125.jpg\n5443,41706,41706,81973,82,425194523,9780425194520.0,Clive Cussler,1976.0,Raise the Titanic!,\"Raise the Titanic! (Dirk Pitt, #4)\",eng,3.96,18945,20592,603,147,854,5145,7976,6470,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439783780l/41706._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5444,45432,45432,1019140,51,078685149X,9780786851490.0,Eoin Colfer,2004.0,The Supernaturalist,The Supernaturalist,en-US,3.85,23010,24352,1021,277,1595,6618,8871,6991,https://images.gr-assets.com/books/1233460677l/45432.jpg,https://images.gr-assets.com/books/1233460677s/45432.jpg\n5445,199782,199782,3954,39,60852003,9780060852010.0,Meg Cabot,2007.0,Queen of Babble in the Big City,\"Queen of Babble in the Big City (Queen of Babble, #2)\",eng,3.77,24000,25075,876,477,1719,7512,8856,6511,https://images.gr-assets.com/books/1407106698l/199782.jpg,https://images.gr-assets.com/books/1407106698s/199782.jpg\n5446,420404,420404,40370,23,394900871,9780394900870.0,Dr. Seuss,1958.0,Yertle the Turtle (Classic Seuss),Yertle the Turtle and Other Stories,eng,4.13,24972,26496,480,393,1074,5364,7608,12057,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347434226l/420404.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5448,19661,19661,1435094,41,037570342X,9780375703420.0,Rohinton Mistry,2001.0,Family Matters,Family Matters,eng,3.99,16790,17802,808,141,654,3799,7814,5394,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279746l/19661.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5449,132900,132900,128025,24,553588729,9780553588730.0,Harvey Karp,2002.0,The Happiest Baby on the Block,The Happiest Baby on the Block: The New Way to Calm Crying and Help Your Newborn Baby Sleep Longer,eng,3.92,13035,16427,2342,228,937,3901,6277,5084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387740973l/132900.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5450,20803962,20803962,25720207,19,,,\"Penelope Douglas, Nelson Hobbs\",2013.0,Until You,\"Until You (Fall Away, #1.5)\",,4.36,16757,30100,2107,231,616,3447,9658,16148,https://images.gr-assets.com/books/1392309696l/20803962.jpg,https://images.gr-assets.com/books/1392309696s/20803962.jpg\n5451,6765740,6765740,6964146,8,,9789791227780.0,Dee Lestari,2004.0,Perahu Kertas,Perahu Kertas,ind,3.94,13927,14456,1524,237,852,3278,5309,4780,https://images.gr-assets.com/books/1356225544l/6765740.jpg,https://images.gr-assets.com/books/1356225544s/6765740.jpg\n5452,1025250,1025250,1846097,14,786856920,9780786856920.0,Gordon Korman,2000.0,Schooled,Schooled,en-US,3.82,20411,21681,2441,588,1562,5602,7435,6494,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439571775l/1025250._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5453,13193855,13193855,18375474,11,1936608898,9781936608900.0,\"Dallas Hartwig, Melissa Hartwig\",2012.0,It Starts with Food: Discover the Whole30 and Change Your Life in Unexpected Ways,It Starts with Food: Discover the Whole30 and Change Your Life in Unexpected Ways,en-US,4.09,13643,17510,1161,407,702,2989,6280,7132,https://images.gr-assets.com/books/1364140054l/13193855.jpg,https://images.gr-assets.com/books/1364140054s/13193855.jpg\n5454,430968,430968,1771214,23,151012709,9780151012700.0,Ted Kerasote,2007.0,Merle's Door: Lessons from a Freethinking Dog,Merle's Door: Lessons from a Freethinking Dog,en-US,4.18,14953,16261,1628,287,690,2541,4980,7763,https://images.gr-assets.com/books/1310704047l/430968.jpg,https://images.gr-assets.com/books/1310704047s/430968.jpg\n5455,141372,141372,241811,38,440227194,9780440227200.0,Gary Paulsen,1996.0,Brian's Winter,\"Brian's Winter (Brian's Saga, #3)\",en-US,3.98,16861,19542,1190,281,880,4518,7115,6748,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438636861l/141372._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5456,11208,11208,92888,31,452287073,9780452287080.0,Julia Alvarez,1991.0,How the Garcia Girls Lost Their Accents ,How the García Girls Lost Their Accents ,eng,3.62,15231,18942,1276,360,1572,6363,7253,3394,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922914l/11208.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5457,17558817,17558817,24486783,28,,,\"J. Lynn, Jennifer L. Armentrout\",2014.0,Be with Me,\"Be with Me (Wait for You, #2)\",eng,4.15,32046,34513,2585,273,1133,5585,13508,14014,https://images.gr-assets.com/books/1380210727l/17558817.jpg,https://images.gr-assets.com/books/1380210727s/17558817.jpg\n5458,372319,372319,362258,308,1406501077,9781406501070.0,Louisa May Alcott,1886.0,\"Jo's Boys, and How They Turned Out: A Sequel to \"\"Little Men\"\"\",\"Jo's Boys (Little Women, #3)\",eng,3.8,23877,26465,544,306,1683,8009,9340,7127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347470247l/372319.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5459,29430007,29430007,49018983,32,525955100,9780525955110.0,Harlan Coben,2016.0,Home ,Home (Myron Bolitar #11),eng,4.2,12183,22704,2246,204,662,3305,8774,9759,https://images.gr-assets.com/books/1458586751l/29430007.jpg,https://images.gr-assets.com/books/1458586751s/29430007.jpg\n5460,38502,38502,1759323,54,872860744,9780872860740.0,Charles Bukowski,1969.0,Notes of a Dirty Old Man,Notes of a Dirty Old Man,eng,3.99,15443,16858,385,211,723,3574,6784,5566,https://images.gr-assets.com/books/1329635507l/38502.jpg,https://images.gr-assets.com/books/1329635507s/38502.jpg\n5461,13505130,13505130,7410153,89,525952896,9780525952890.0,\"Jussi Adler-Olsen, K.E. Semmel\",2008.0,Fasandræberne,\"The Absent One (Department Q, #2)\",eng,3.85,13479,20717,1709,270,999,5236,9213,4999,https://images.gr-assets.com/books/1336832005l/13505130.jpg,https://images.gr-assets.com/books/1336832005s/13505130.jpg\n5462,16171272,16171272,22018722,28,1594486344,9781594486340.0,James McBride,2013.0,The Good Lord Bird,The Good Lord Bird,eng,3.75,14538,16648,2365,512,1358,4234,6298,4246,https://images.gr-assets.com/books/1385349791l/16171272.jpg,https://images.gr-assets.com/books/1385349791s/16171272.jpg\n5463,24963,24963,1258632,55,689840349,9780689840340.0,Susan Cooper,1974.0,Greenwitch,\"Greenwitch (The Dark Is Rising, #3)\",eng,4.0,21364,23531,632,201,933,5676,8641,8080,https://images.gr-assets.com/books/1347322295l/24963.jpg,https://images.gr-assets.com/books/1347322295s/24963.jpg\n5464,30065,30065,30468,27,158240612X,9781582406120.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2006.0,\"The Walking Dead, Vol. 5: The Best Defense\",\"The Walking Dead, Vol. 05: The Best Defense\",en-GB,4.3,19431,20413,819,92,359,2671,7436,9855,https://images.gr-assets.com/books/1345769360l/30065.jpg,https://images.gr-assets.com/books/1345769360s/30065.jpg\n5466,18053782,18053782,25338951,19,,,Abbi Glines,2014.0,\"Take a Chance (Chance, #1)\",\"Take a Chance (Rosemary Beach, #7; Chance, #1)\",eng,4.15,30690,32160,2417,368,1154,5212,11925,13501,https://images.gr-assets.com/books/1396889528l/18053782.jpg,https://images.gr-assets.com/books/1396889528s/18053782.jpg\n5467,9975779,9975779,14870169,42,62072188,9780062072180.0,Daniel Silva,2011.0,Portrait of a Spy,\"Portrait of a Spy (Gabriel Allon, #11)\",eng,4.24,16744,19563,1013,97,352,2762,7890,8462,https://images.gr-assets.com/books/1468408664l/9975779.jpg,https://images.gr-assets.com/books/1468408664s/9975779.jpg\n5468,501124,501124,1176198,64,316012823,9780316012830.0,Kate Atkinson,2006.0,One Good Turn,\"One Good Turn (Jackson Brodie, #2)\",en-US,3.79,19384,22415,2198,236,1241,6192,10025,4721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442945693l/501124._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5469,768878,768878,2785303,65,64407330,9780064407340.0,Clive Barker,2002.0,Abarat,\"Abarat (Abarat, #1)\",en-US,4.08,20460,22343,1184,385,1045,4059,7777,9077,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440644004l/768878._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5470,35816,35816,1426854,76,586203192,9780586203190.0,Arthur C. Clarke,1987.0,2061: Odyssey Three,\"2061: Odyssey Three (Space Odyssey, #3)\",eng,3.52,17843,20272,482,308,2112,7924,6639,3289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347907073l/35816.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5471,84525,84525,81594,45,,9781781251560.0,\"Marshall Goldsmith, Mark Reiter\",2007.0,What Got You Here Won't Get You There: How Successful People Become Even More Successful,What Got You Here Won't Get You There: How Successful People Become Even More Successful,,3.94,14545,15974,513,293,884,3779,5612,5406,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347513827l/84525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5472,7187395,7187395,7730315,30,1439187312,9781439187320.0,Richard Paul Evans,2010.0,The Walk,\"The Walk (The Walk, #1)\",en-US,4.12,16224,17509,2280,275,706,2913,6277,7338,https://images.gr-assets.com/books/1263465492l/7187395.jpg,https://images.gr-assets.com/books/1263465492s/7187395.jpg\n5473,6619499,6619499,6813644,36,61284424,9780061284430.0,Claudia Gray,2011.0,Afterlife,\"Afterlife (Evernight, #4)\",en-US,3.8,23780,24924,1174,848,2320,6273,7039,8444,https://images.gr-assets.com/books/1277385646l/6619499.jpg,https://images.gr-assets.com/books/1277385646s/6619499.jpg\n5474,411527,411527,2961832,78,399250484,9780399250480.0,Nick Hornby,2007.0,Slam,Slam,en-US,3.27,17393,20196,1993,728,3105,8452,5906,2005,https://images.gr-assets.com/books/1327963062l/411527.jpg,https://images.gr-assets.com/books/1327963062s/411527.jpg\n5475,9943270,9943270,14836636,23,547628382,9780547628390.0,Robin LaFevers,2013.0,\"Dark Triumph (His Fair Assassin, #2)\",\"Dark Triumph (His Fair Assassin, #2)\",eng,4.15,28133,30080,3006,377,945,4836,11653,12269,https://images.gr-assets.com/books/1346852168l/9943270.jpg,https://images.gr-assets.com/books/1346852168s/9943270.jpg\n5476,18263725,18263725,25723388,13,544289595,9780544289600.0,Kwame Alexander,2014.0,The Crossover,The Crossover,eng,4.22,21249,22935,4063,701,755,2807,7316,11356,https://images.gr-assets.com/books/1390427593l/18263725.jpg,https://images.gr-assets.com/books/1390427593s/18263725.jpg\n5477,1464757,1464757,2490700,7,,9789791227020.0,Andrea Hirata,2007.0,Edensor,\"Edensor (Tetralogi Laskar Pelangi, #3)\",ind,4.06,11719,12259,939,115,464,2507,4635,4538,https://images.gr-assets.com/books/1489733485l/1464757.jpg,https://images.gr-assets.com/books/1489733485s/1464757.jpg\n5478,139087,139087,918312,51,739464469,9780739464460.0,Alan Hollinghurst,2004.0,The Line of Beauty,The Line of Beauty,eng,3.7,15844,17760,1055,790,1749,4280,6190,4751,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172099924l/139087._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5479,9792287,9792287,14682378,25,749009519,9780749009520.0,Susanna Kearsley,2011.0,The Rose Garden,The Rose Garden,eng,4.01,18553,22807,2549,203,831,4765,9659,7349,https://images.gr-assets.com/books/1327951839l/9792287.jpg,https://images.gr-assets.com/books/1327951839s/9792287.jpg\n5481,93795,93795,1001813,43,451208188,9780451208190.0,Daniel Silva,2002.0,The English Assassin,\"The English Assassin (Gabriel Allon, #2)\",en-US,4.12,16810,20653,926,93,385,3586,9527,7062,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559334947l/93795.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5482,24475,24475,6518120,16,743284887,9780743284880.0,Chuck Klosterman,2006.0,Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas,Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas,en-US,3.85,13892,15445,805,129,705,4153,6861,3597,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388448967l/24475.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5483,48019,48019,46992,62,60833459,9780060833460.0,Peter F. Drucker,1966.0,The Effective Executive: The Definitive Guide to Getting the Right Things Done (Harperbusiness Essentials),The Effective Executive: The Definitive Guide to Getting the Right Things Done (Harperbusiness Essentials),,4.11,16326,17223,378,318,721,3134,5701,7349,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431792111l/48019._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5484,23093359,23093359,42643515,15,1632150190,9781632150200.0,\"Kieron Gillen, Jamie McKelvie, Matt Wilson, Clayton Cowles\",2014.0,\"The Wicked + The Divine, Vol. 1: The Faust Act\",\"The Wicked + The Divine, Vol. 1: The Faust Act\",eng,3.9,25138,26372,2925,916,1615,5546,9383,8912,https://images.gr-assets.com/books/1415565992l/23093359.jpg,https://images.gr-assets.com/books/1415565992s/23093359.jpg\n5485,17797381,17797381,24895710,35,553808036,9780553808030.0,Dean Koontz,2013.0,Innocence,Innocence,eng,3.69,13482,18105,2134,678,1750,4887,6031,4759,https://images.gr-assets.com/books/1368569643l/17797381.jpg,https://images.gr-assets.com/books/1368569643s/17797381.jpg\n5486,988950,988950,974443,33,399154779,9780399154780.0,John Sandford,2004.0,Dark of the Moon,\"Dark of the Moon (Virgil Flowers, #1)\",en-US,4.0,18708,20863,982,337,739,4335,8610,6842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442687239l/988950._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5487,343614,343614,809477,29,1401917593,9781401917590.0,\"Esther Hicks, Jerry Hicks\",2006.0,The Law of Attraction: The Basics of the Teachings of Abraham,The Law of Attraction: The Basics of the Teachings of Abraham,,4.15,13358,14176,326,320,617,2433,4075,6731,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182626l/343614.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5488,16150831,16150831,21986944,31,1423157524,9781423157530.0,Alexandra Bracken,2014.0,In The Afterlight,\"In The Afterlight (The Darkest Minds, #3)\",eng,4.36,25788,28011,3660,186,670,3147,8802,15206,https://images.gr-assets.com/books/1400697474l/16150831.jpg,https://images.gr-assets.com/books/1400697474s/16150831.jpg\n5489,12637490,12637490,15011943,25,373210450,9780373210460.0,Aimee Carter,2012.0,Goddess Interrupted,\"Goddess Interrupted (Goddess Test, #2)\",eng,4.02,26286,27356,2107,571,1647,5492,8643,11003,https://images.gr-assets.com/books/1397956745l/12637490.jpg,https://images.gr-assets.com/books/1397956745s/12637490.jpg\n5490,280277,280277,268824,55,689859384,9780689859380.0,\"Holly Black, Tony DiTerlizzi\",2003.0,Lucinda’s Secret,\"Lucinda's Secret (The Spiderwick Chronicles, #3)\",eng,3.87,25217,26401,760,244,1320,7895,9138,7804,https://images.gr-assets.com/books/1358701877l/280277.jpg,https://images.gr-assets.com/books/1358701877s/280277.jpg\n5491,568476,568476,86428,47,688213855,9780688213860.0,\"Beverly Cleary, Tracy Dockray\",1950.0,Henry Huggins,\"Henry Huggins (Henry Huggins, #1)\",eng,3.97,21823,22618,496,295,884,5894,7699,7846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390429386l/568476.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5492,906541,906541,2127174,26,64434516,9780064434520.0,\"Russell Hoban, Garth Williams\",1960.0,Bedtime for Frances,Bedtime for Frances,eng,4.14,22865,23104,246,333,958,4598,6569,10646,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348206956l/906541.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5493,328802,328802,319425,57,4770020678,9784770020670.0,\"Tetsuko Kuroyanagi, Chihiro Iwasaki, Dorothy Britton\",1981.0,窓ぎわのトットちゃん,Totto-chan: The Little Girl at the Window,eng,4.3,13859,16214,1638,200,407,1980,5376,8251,https://images.gr-assets.com/books/1354795941l/328802.jpg,https://images.gr-assets.com/books/1354795941s/328802.jpg\n5494,22055283,22055283,40431126,42,804178429,9780804178430.0,Joe Abercrombie,2015.0,Half the World,\"Half the World (Shattered Sea, #2)\",eng,4.2,12396,18888,1719,52,299,2560,8863,7114,https://images.gr-assets.com/books/1402314017l/22055283.jpg,https://images.gr-assets.com/books/1402314017s/22055283.jpg\n5495,10669,10669,13308,17,375758259,9780375758260.0,Roger Lowenstein,2000.0,When Genius Failed: The Rise and Fall of Long-Term Capital Management,When Genius Failed: The Rise and Fall of Long-Term Capital Management,en-US,4.16,15619,16476,460,183,395,2606,6635,6657,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435292091l/10669._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5496,44905,44905,937841,34,1590303164,9781590303160.0,Natalie Goldberg,1986.0,Writing Down the Bones: Freeing the Writer Within,Writing Down the Bones: Freeing the Writer Within,eng,4.17,18477,20838,1416,207,701,3527,7233,9170,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924733l/44905.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5497,8963,8963,2507696,64,316000981,9780316000990.0,Darren Shan,2002.0,\"Hunters of the Dusk (Cirque Du Freak, #7)\",\"Hunters of the Dusk (Cirque Du Freak, #7)\",,4.17,19326,21033,433,120,752,3868,6946,9347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255722755l/8963.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5498,28695,28695,1570074,26,886777631,9780886777630.0,Tad Williams,1996.0,City of Golden Shadow,\"City of Golden Shadow (Otherland, #1)\",eng,3.9,19334,20816,705,537,1435,4488,7527,6829,https://images.gr-assets.com/books/1329075235l/28695.jpg,https://images.gr-assets.com/books/1329075235s/28695.jpg\n5499,140097,140097,3159808,33,425217299,9780425217290.0,Charlaine Harris,2007.0,An Ice Cold Grave,\"An Ice Cold Grave (Harper Connelly, #3)\",eng,3.95,26178,28828,1298,186,1199,7172,11549,8722,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389660134l/140097.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5500,337058,337058,1379592,52,,9780064403690.0,Katherine Paterson,1980.0,Jacob Have I Loved,Jacob Have I Loved,eng,3.64,24920,26710,1641,1066,2636,7650,8766,6592,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388254908l/337058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5501,7134201,7134201,7397179,63,316089516,9780316089520.0,\"James Patterson, Liza Marklund\",2010.0,The Postcard Killers,The Postcard Killers,eng,3.78,18542,21176,1789,360,1569,5879,7931,5437,https://images.gr-assets.com/books/1344271030l/7134201.jpg,https://images.gr-assets.com/books/1344271030s/7134201.jpg\n5502,8230409,8230409,13077709,10,1421536382,9781421536380.0,\"Julietta Suzuki, Tomo Kimura\",2008.0,神様はじめました 1,\"Kamisama Kiss, Vol. 1\",eng,4.38,20569,20727,303,352,608,2414,4728,12625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389231473l/8230409.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5503,23587984,23587984,43191048,15,,,Colleen Hoover,2014.0,Maybe Not,\"Maybe Not (Maybe, #1.5)\",en-US,4.14,26102,27105,3030,310,1009,4677,9769,11340,https://images.gr-assets.com/books/1416381591l/23587984.jpg,https://images.gr-assets.com/books/1416381591s/23587984.jpg\n5504,147801,147801,669307,31,689869118,9780689869110.0,D.J. MacHale,2004.0,Black Water,\"Black Water (Pendragon, #5)\",eng,4.16,19634,20300,388,181,636,3640,7120,8723,https://images.gr-assets.com/books/1431981444l/147801.jpg,https://images.gr-assets.com/books/1431981444s/147801.jpg\n5505,121648,121648,2207701,193,425093255,9780425093250.0,Agatha Christie,1942.0,Five Little Pigs,\"Five Little Pigs (Hercule Poirot, #24)\",eng,3.95,19618,24748,1225,113,807,6389,10238,7201,https://images.gr-assets.com/books/1429422068l/121648.jpg,https://images.gr-assets.com/books/1429422068s/121648.jpg\n5506,9265453,9265453,14146240,49,345524497,9780345524490.0,China Miéville,2011.0,Embassytown,Embassytown,eng,3.86,17388,20516,2519,515,1311,4527,8335,5828,https://images.gr-assets.com/books/1320470326l/9265453.jpg,https://images.gr-assets.com/books/1320470326s/9265453.jpg\n5507,15752,15752,1177628,44,553582763,9780553582760.0,Dean Koontz,2002.0,By the Light of the Moon,By the Light of the Moon,,3.84,19276,20189,643,264,1118,5698,7569,5540,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347782338l/15752.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5508,3581,3581,6658462,13,553212419,9780553212420.0,Arthur Conan Doyle,1927.0,\"Sherlock Holmes: The Complete Novels and Stories, Volume I\",\"Sherlock Holmes: The Complete Novels and Stories, Volume I\",eng,4.45,17950,18082,505,92,194,1676,5641,10479,https://images.gr-assets.com/books/1320490450l/3581.jpg,https://images.gr-assets.com/books/1320490450s/3581.jpg\n5509,246225,246225,1121561,15,60809086,9780060809090.0,Dorothy L. Sayers,1930.0,Strong Poison,\"Strong Poison (Lord Peter Wimsey, #6)\",eng,4.14,18578,20858,918,224,589,3601,8103,8341,https://images.gr-assets.com/books/1486963427l/246225.jpg,https://images.gr-assets.com/books/1486963427s/246225.jpg\n5510,77281,77281,105673,8,836220625,9780836220630.0,Gary Larson,1984.0,The Far Side Gallery,The Far Side Gallery,eng,4.42,20022,20119,165,110,281,2205,5944,11579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923919l/77281.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5511,13581990,13581990,19167673,30,373210698,9780373210700.0,Julie Kagawa,2013.0,The Eternity Cure,\"The Eternity Cure (Blood of Eden, #2)\",eng,4.26,27278,29341,3086,438,917,4020,9220,14746,https://images.gr-assets.com/books/1362772965l/13581990.jpg,https://images.gr-assets.com/books/1362772965s/13581990.jpg\n5512,238125,238125,3241480,63,425163717,9780425163720.0,J.D. Robb,1998.0,Holiday in Death,\"Holiday in Death (In Death, #7)\",eng,4.31,24511,27473,808,54,360,3810,10087,13162,https://images.gr-assets.com/books/1389932347l/238125.jpg,https://images.gr-assets.com/books/1389932347s/238125.jpg\n5513,16090981,16090981,21895518,8,,,Tarryn Fisher,2013.0,Thief,\"Thief (Love Me with Lies, #3)\",eng,4.4,28533,28779,3489,340,755,2930,7815,16939,https://images.gr-assets.com/books/1361401256l/16090981.jpg,https://images.gr-assets.com/books/1361401256s/16090981.jpg\n5514,166562,166562,160844,59,074349282X,9780743492830.0,Aron Ralston,2004.0,Between a Rock and a Hard Place,Between a Rock and a Hard Place,en-US,3.82,14350,17038,1659,405,1201,4265,6428,4739,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442193831l/166562._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5515,618177,618177,1805413,55,345379063,9780345379060.0,David Gemmell,1984.0,Legend ,\"Legend (The Drenai Saga, #1)\",en-US,4.25,18260,20520,872,198,644,2946,6695,10037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201276l/618177.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5517,23223,23223,1379325,27,330418882,9780330418880.0,Meg Cabot,2004.0,\"Every Boy's Got One (Boy, #3)\",\"Every Boy's Got One (Boy, #3)\",en-GB,3.77,19771,21653,911,477,1587,6350,7178,6061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348938408l/23223.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5518,231585,231585,224309,17,451166604,9780451166610.0,Ann Rule,1987.0,Small Sacrifices: A True Story of Passion and Murder,Small Sacrifices: A True Story of Passion and Murder,eng,4.2,17384,18261,449,112,404,3102,6672,7971,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519778533l/231585._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5520,8044557,8044557,12681527,11,811874559,9780811874560.0,\"Avery Monsen, Jory John\",2010.0,All My Friends Are Dead,All My Friends Are Dead,eng,4.24,19423,20096,1216,236,662,3131,6169,9898,https://images.gr-assets.com/books/1330386466l/8044557.jpg,https://images.gr-assets.com/books/1330386466s/8044557.jpg\n5521,617526,617526,1632141,42,1405038160,9781405038160.0,Matthew Reilly,2007.0,The Six Sacred Stones,\"The Six Sacred Stones (Jack West Jr, #2)\",eng,4.16,17064,18401,492,231,667,3025,6444,8034,https://images.gr-assets.com/books/1303511210l/617526.jpg,https://images.gr-assets.com/books/1303511210s/617526.jpg\n5522,534733,534733,1579865,64,051512317X,9780515123170.0,Nora Roberts,1998.0,Rising Tides (Chesapeake Bay Saga #2),\"Rising Tides (Chesapeake Bay Saga, #2)\",en-US,4.16,23604,25313,536,68,616,4923,9286,10420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252959l/534733.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5523,2879,2879,6783,19,1421506130,9781421506140.0,Tite Kubo,2004.0,Bleach―ブリーチ― 15,\"Bleach, Volume 15\",eng,4.41,17078,17168,62,179,460,2037,3934,10558,https://images.gr-assets.com/books/1417981626l/2879.jpg,https://images.gr-assets.com/books/1417981626s/2879.jpg\n5524,35488,35488,49239,22,60727535,9780060727540.0,\"Johnny Cash, Patrick   Carr\",1997.0,Cash: The Autobiography of Johnny Cash,Cash,en-US,4.08,15113,15993,592,243,585,3076,5874,6215,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422322302l/35488.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5525,115130,115130,1834339,74,6471250,9780006471260.0,Sidney Sheldon,1976.0,A Stranger in the Mirror,A Stranger In The Mirror,eng,3.61,15606,16639,330,430,1621,5518,5509,3561,https://images.gr-assets.com/books/1418330902l/115130.jpg,https://images.gr-assets.com/books/1418330902s/115130.jpg\n5526,13067,13067,5912667,38,375821821,9780375821820.0,Carl Hiaasen,2005.0,Flush,Flush,en-US,3.86,20076,21766,2067,306,1218,5764,8377,6101,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357827l/13067._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5527,781787,781787,1189079,165,679600213,9780679600210.0,\"Isak Dinesen, Karen Blixen\",1937.0,Out of Africa,Out of Africa,eng,3.96,21687,24185,1346,405,1353,5209,9006,8212,https://images.gr-assets.com/books/1178296503l/781787.jpg,https://images.gr-assets.com/books/1178296503s/781787.jpg\n5528,57951,57951,814176,55,743281632,9780743281640.0,Robert Crais,2007.0,The Watchman,\"The Watchman (Elvis Cole, #11; Joe Pike, #1)\",en-US,4.1,17637,19181,884,196,515,3370,8108,6992,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442928221l/57951._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5529,13530973,13530973,19092611,47,1400067820,9781400067820.0,Nassim Nicholas Taleb,2012.0,Antifragile: Things That Gain from Disorder,Antifragile: Things That Gain from Disorder,eng,4.04,16184,18506,1578,705,1113,2979,5654,8055,https://images.gr-assets.com/books/1352422827l/13530973.jpg,https://images.gr-assets.com/books/1352422827s/13530973.jpg\n5531,13259270,13259270,18360833,13,1451683405,9781451683400.0,Sam Harris,2012.0,Free Will,Free Will,eng,3.83,15647,16913,1193,615,1206,3887,5979,5226,https://images.gr-assets.com/books/1332196118l/13259270.jpg,https://images.gr-assets.com/books/1332196118s/13259270.jpg\n5532,24529123,24529123,44129478,26,149262246X,9781492622470.0,Marieke Nijkamp,2016.0,This Is Where It Ends,This Is Where It Ends,eng,3.63,23764,27137,4929,1281,3106,7170,8414,7166,https://images.gr-assets.com/books/1431358364l/24529123.jpg,https://images.gr-assets.com/books/1431358364s/24529123.jpg\n5533,793399,793399,779381,30,778324214,9780778324220.0,Rachel Vincent,2007.0,Stray,\"Stray (Shifters, #1)\",eng,3.79,29063,30462,1861,1370,2607,7014,9399,10072,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388374399l/793399.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5534,2285777,2285777,2291983,30,316018600,9780316018610.0,Elin Hilderbrand,2008.0,A Summer Affair,A Summer Affair,,3.66,19033,20406,1194,487,1889,6361,6956,4713,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435518393l/2285777._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5535,13262061,13262061,18463625,25,385737432,9780385737430.0,Rebecca Stead,2012.0,Liar & Spy,Liar & Spy,eng,3.81,18990,20582,2256,577,1306,5211,7835,5653,https://images.gr-assets.com/books/1336000458l/13262061.jpg,https://images.gr-assets.com/books/1336000458s/13262061.jpg\n5536,7993,7993,1177243,34,142302392,9780142302390.0,\"Brian Jacques, Gary Chalk\",1991.0,Mariel of Redwall,\"Mariel of Redwall (Redwall, #4)\",,3.96,21214,22564,309,108,851,6051,8437,7117,https://images.gr-assets.com/books/1299761476l/7993.jpg,https://images.gr-assets.com/books/1299761476s/7993.jpg\n5537,5752,5752,9151,36,142003344,9780142003340.0,Steven Pinker,2002.0,The Blank Slate: The Modern Denial of Human Nature,The Blank Slate: The Modern Denial of Human Nature,eng,4.07,15647,16429,643,397,803,2781,5801,6647,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925462l/5752.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5538,866136,866136,851537,40,345496531,9780345496540.0,Peter F. Hamilton,2007.0,The Dreaming Void,The Dreaming Void,en-US,4.18,16181,18640,725,160,494,2781,7678,7527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440047585l/866136._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5539,5135798,5135798,3989884,33,545040566,9780545040560.0,Meg Cabot,2009.0,Being Nikki,\"Being Nikki (Airhead, #2)\",eng,3.87,25531,26565,1017,421,1854,6931,9011,8348,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388622070l/5135798.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5540,104837,104837,717119,635,743482859,9780743482850.0,\"William Shakespeare, Cynthia Marshall, Barbara A. Mowat, Paul Werstine\",1606.0,The Tragedie of Antony and Cleopatra,Antony and Cleopatra,eng,3.67,20594,24111,848,369,2123,7948,8298,5373,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347795799l/104837.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5541,303472,303472,1880,15,689839081,9780689839080.0,Margaret Peterson Haddix,2001.0,\"Among the Impostors (Shadow Children, #2)\",\"Among the Impostors (Shadow Children, #2)\",en-US,4.05,21629,23909,1194,164,764,5311,9075,8595,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388431983l/303472.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5542,7775611,7775611,10682093,7,1442413174,9781442413180.0,Christopher Pike,2010.0,The Eternal Dawn,\"Thirst No. 3: The Eternal Dawn (Thirst, #3)\",en-US,4.14,17343,17534,395,549,1052,2875,4005,9053,https://images.gr-assets.com/books/1327900455l/7775611.jpg,https://images.gr-assets.com/books/1327900455s/7775611.jpg\n5543,169331,169331,163508,24,743442849,9780743442850.0,Zane,1998.0,Addicted,Addicted,eng,4.26,13677,15180,940,442,672,1944,3591,8531,https://images.gr-assets.com/books/1266487564l/169331.jpg,https://images.gr-assets.com/books/1266487564s/169331.jpg\n5544,10677277,10677277,15586973,17,765329581,9780765329580.0,Kristen Simmons,2012.0,Article 5,\"Article 5 (Article 5, #1)\",en-US,3.78,23732,24996,2552,1007,2127,6014,8111,7737,https://images.gr-assets.com/books/1306520962l/10677277.jpg,https://images.gr-assets.com/books/1306520962s/10677277.jpg\n5545,28212,28212,1080309,29,312241356,9780312241350.0,\"Randy Shilts, William Greider\",1987.0,\"And the Band Played On: Politics, People, and the AIDS Epidemic\",\"And the Band Played On: Politics, People, and the AIDS Epidemic\",,4.37,16769,17953,952,152,324,1945,5815,9717,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924077l/28212.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5546,17930773,17930773,25133915,19,,9781627040200.0,Laurelin Paige,2013.0,Found in You,\"Found in You (Fixed, #2)\",eng,4.27,27097,29262,1456,219,723,3903,10649,13768,https://images.gr-assets.com/books/1377584166l/17930773.jpg,https://images.gr-assets.com/books/1377584166s/17930773.jpg\n5547,1928873,1928873,1931181,37,440244447,9780440244450.0,Lara Adrian,2008.0,Midnight Rising,\"Midnight Rising (Midnight Breed, #4)\",eng,4.23,26597,28662,854,149,682,4582,10267,12982,https://images.gr-assets.com/books/1320404514l/1928873.jpg,https://images.gr-assets.com/books/1320404514s/1928873.jpg\n5548,21719,21719,947888,73,60534044,9780060534040.0,Karin Slaughter,2002.0,Kisscut,\"Kisscut (Grant County, #2)\",eng,4.12,18833,22250,1011,165,616,4035,9035,8399,https://images.gr-assets.com/books/1348096108l/21719.jpg,https://images.gr-assets.com/books/1348096108s/21719.jpg\n5550,50275,50275,543352,68,747549923,9780747549920.0,\"Hubert Selby Jr., Gilbert Sorrentino\",1964.0,Last Exit to Brooklyn,Last Exit to Brooklyn,eng,3.94,15491,17573,968,428,1029,3658,6593,5865,https://images.gr-assets.com/books/1362815242l/50275.jpg,https://images.gr-assets.com/books/1362815242s/50275.jpg\n5551,53969,53969,947074,113,571207766,9780571207760.0,\"Mario Vargas Llosa, Edith Grossman\",2000.0,La fiesta del chivo,The Feast of the Goat,eng,4.22,10961,17158,1354,189,557,2348,6291,7773,https://images.gr-assets.com/books/1439920504l/53969.jpg,https://images.gr-assets.com/books/1439920504s/53969.jpg\n5552,318404,318404,2129865,36,439755204,9780439755210.0,Jordan Sonnenblick,2004.0,\"Drums, Girls & Dangerous Pie\",\"Drums, Girls & Dangerous Pie (Drums, Girls & Dangerous Pie, #1)\",eng,4.25,18551,20877,2616,300,617,2866,6885,10209,https://images.gr-assets.com/books/1377989934l/318404.jpg,https://images.gr-assets.com/books/1377989934s/318404.jpg\n5553,21412400,21412400,40713322,34,1439172560,9781439172570.0,Miranda July,2015.0,The First Bad Man,The First Bad Man,eng,3.58,15560,17298,2417,885,1914,4602,6088,3809,https://images.gr-assets.com/books/1421037741l/21412400.jpg,https://images.gr-assets.com/books/1421037741s/21412400.jpg\n5554,28698,28698,6750840,35,886776066,9780886776060.0,Tad Williams,1993.0,To Green Angel Tower (Storm),\"To Green Angel Tower, Part 2 (Memory, Sorrow, and Thorn, #3; Part 2)\",eng,4.19,18356,19413,196,187,657,3118,6749,8702,https://images.gr-assets.com/books/1309992900l/28698.jpg,https://images.gr-assets.com/books/1309992900s/28698.jpg\n5555,17204860,17204860,23682783,26,,,Jay Crownover,2013.0,Jet,\"Jet (Marked Men, #2)\",eng,4.09,32332,33587,2153,239,1063,6256,13787,12242,https://images.gr-assets.com/books/1367338347l/17204860.jpg,https://images.gr-assets.com/books/1367338347s/17204860.jpg\n5556,3656,3656,987554,81,1400097029,9781400097030.0,John Banville,2005.0,The Sea,The Sea,eng,3.49,16558,18999,1882,937,2471,5705,6140,3746,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924824l/3656.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5557,18656055,18656055,26470742,39,316405345,9780316405350.0,\"James Patterson, David Ellis\",2014.0,Invisible,Invisible,eng,4.05,14518,18967,2006,268,705,3536,7704,6754,https://images.gr-assets.com/books/1403166141l/18656055.jpg,https://images.gr-assets.com/books/1403166141s/18656055.jpg\n5558,32434,32434,944284,50,425210758,9780425210760.0,Dean Koontz,1993.0,Mr. Murder,Mr. Murder,eng,3.72,19904,20738,479,329,1584,6533,7362,4930,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257016l/32434.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5559,6933876,6933876,7165488,36,316074144,9780316074150.0,Gail Carriger,2010.0,Changeless,\"Changeless (Parasol Protectorate, #2)\",eng,4.0,30703,33464,3342,172,1084,7387,14794,10027,https://images.gr-assets.com/books/1292566141l/6933876.jpg,https://images.gr-assets.com/books/1292566141s/6933876.jpg\n5560,185253,185253,1246811,23,812505182,9780812505180.0,L.E. Modesitt Jr.,1991.0,The Magic of Recluce,The Magic of Recluce (The Saga of Recluce #1),eng,3.84,18879,19809,469,457,1402,4952,7109,5889,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922249l/185253.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5561,71771,71771,2741369,38,451211030,9780451211030.0,John Jakes,1974.0,\"The Bastard (Kent Family Chronicles, Vol. 1)\",\"The Bastard (Kent Family Chronicles, #1)\",en-GB,4.09,18287,19152,382,186,653,3923,6791,7599,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441296542l/71771.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5562,13330370,13330370,18538006,31,1594745765,9781594745770.0,Ben H. Winters,2012.0,The Last Policeman,\"The Last Policeman (The Last Policeman, #1)\",eng,3.76,14725,18664,2555,232,1025,5173,8774,3460,https://images.gr-assets.com/books/1344370646l/13330370.jpg,https://images.gr-assets.com/books/1344370646s/13330370.jpg\n5563,93269,93269,1650913,55,345487133,9780345487130.0,George R. Stewart,1949.0,Earth Abides,Earth Abides,eng,3.96,17200,19106,1521,410,1231,3943,6678,6844,https://images.gr-assets.com/books/1320505234l/93269.jpg,https://images.gr-assets.com/books/1320505234s/93269.jpg\n5564,136636,136636,294161,55,446608378,9780446608370.0,\"Douglas Preston, Lincoln Child\",1999.0,Thunderhead,Thunderhead,eng,4.09,19704,20863,591,146,607,4138,8216,7756,https://images.gr-assets.com/books/1344263984l/136636.jpg,https://images.gr-assets.com/books/1344263984s/136636.jpg\n5565,8966,8966,1285890,57,316106534,9780316106540.0,Darren Shan,2002.0,\"Allies of the Night (Cirque Du Freak, Book 8)\",\"Allies of the Night (Cirque du Freak, #8)\",,4.19,18649,20295,404,128,686,3587,6605,9289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1560059486l/8966.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5566,9637479,9637479,14524855,24,425241505,9780425241510.0,Thea Harrison,2011.0,Dragon bound,\"Dragon Bound (Elder Races, #1)\",eng,4.13,29920,32622,2459,776,1461,5063,10837,14485,https://images.gr-assets.com/books/1312822853l/9637479.jpg,https://images.gr-assets.com/books/1312822853s/9637479.jpg\n5568,10574,10574,856005,57,843955848,9780843955840.0,Stephen King,2005.0,The Colorado Kid,The Colorado Kid (Hard Case Crime #13),eng,3.28,19406,22522,1847,1068,3597,8765,6130,2962,https://images.gr-assets.com/books/1422099676l/10574.jpg,https://images.gr-assets.com/books/1422099676s/10574.jpg\n5569,351064,351064,3275269,9,194232638,9780194232630.0,\"Diane Mowat, W.W. Jacobs\",1902.0,The Monkey's Paw,The Monkey's Paw (Oxford Bookworms),eng,3.85,18113,18209,204,326,1187,4909,6243,5544,https://images.gr-assets.com/books/1297721168l/351064.jpg,https://images.gr-assets.com/books/1297721168s/351064.jpg\n5570,6554,6554,2796366,2,553297260,9780553297260.0,John Saul,1991.0,Darkness,Darkness,,3.92,17338,17460,127,223,794,4744,6013,5686,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392092511l/6554.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5571,260791,260791,252777,27,157683932X,9781576839320.0,\"Jerry Bridges, Foster W. Cline, Jim Fay\",1978.0,The Pursuit of Holiness,The Pursuit of Holiness,eng,4.28,14574,14915,306,148,345,2131,4793,7498,https://images.gr-assets.com/books/1372784705l/260791.jpg,https://images.gr-assets.com/books/1372784705s/260791.jpg\n5572,674220,674220,541254,36,380811081,9780380811080.0,Lisa Kleypas,2004.0,Again the Magic ,\"Again the Magic (Wallflowers, #0)\",eng,4.05,24978,26425,1143,475,1081,5211,9597,10061,https://images.gr-assets.com/books/1418771403l/674220.jpg,https://images.gr-assets.com/books/1418771403s/674220.jpg\n5573,104219,104219,2758130,25,61093327,9780061093330.0,Anne Rivers Siddons,1998.0,Low Country,Low Country,eng,3.96,16364,16586,166,172,600,4147,6475,5192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954817l/104219.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5574,7558747,28149981,9871439,33,385737637,9780385737630.0,Jennifer Donnelly,2010.0,Revolution,Revolution,eng,4.02,20607,24843,3765,592,1363,4626,8627,9635,https://images.gr-assets.com/books/1320530843l/7558747.jpg,https://images.gr-assets.com/books/1320530843s/7558747.jpg\n5575,60229,60229,1881174,39,345451325,9780345451320.0,Eric S. Nylund,2001.0,The Fall of Reach,Halo: The Fall of Reach,eng,4.25,14525,16539,907,96,432,2462,5746,7803,https://images.gr-assets.com/books/1436746591l/60229.jpg,https://images.gr-assets.com/books/1436746591s/60229.jpg\n5577,455764,455764,1468864,25,446324825,9780446324820.0,Frank De Felitta,1975.0,Audrey Rose,Audrey Rose,,3.86,17688,17888,136,301,1187,5042,5533,5825,https://images.gr-assets.com/books/1344267955l/455764.jpg,https://images.gr-assets.com/books/1344267955s/455764.jpg\n5578,28251002,28251002,48287604,34,110194661X,9781101946620.0,Nathan  Hill,2016.0,The Nix,The Nix,eng,4.12,20807,25260,4050,372,1029,3985,9628,10246,https://images.gr-assets.com/books/1474083394l/28251002.jpg,https://images.gr-assets.com/books/1474083394s/28251002.jpg\n5580,24494,24494,25344,15,836218523,9780836218530.0,Bill Watterson,1989.0,The Calvin and Hobbes Lazy Sunday Book,The Calvin and Hobbes Lazy Sunday Book,eng,4.66,18641,18840,187,60,157,1075,3478,14070,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924427l/24494.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5581,48037,48037,47015,397,809510839,9780809510830.0,J. Sheridan Le Fanu,1872.0,Carmilla,Carmilla,eng,3.83,21582,24992,1668,338,1449,7088,9344,6773,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923594l/48037.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5582,47619,47619,805783,31,439436567,9780439436560.0,Garth Nix,2004.0,Drowned Wednesday,\"Drowned Wednesday (The Keys to the Kingdom, #3)\",en-US,3.85,21267,22243,385,217,1151,6456,8307,6112,https://images.gr-assets.com/books/1304528425l/47619.jpg,https://images.gr-assets.com/books/1304528425s/47619.jpg\n5583,82434,82434,18042740,45,375829830,9780375829830.0,Melina Marchetta,2003.0,Saving Francesca,Saving Francesca,eng,3.97,24398,27392,2815,643,1501,5587,10096,9565,https://images.gr-assets.com/books/1327865374l/82434.jpg,https://images.gr-assets.com/books/1327865374s/82434.jpg\n5584,13345975,13345975,18562276,9,,9781476271420.0,K.A. Linde,2012.0,Avoiding Commitment,\"Avoiding Commitment (Avoiding, #1)\",eng,3.85,28253,29510,2452,1444,2174,5960,9706,10226,https://images.gr-assets.com/books/1343768792l/13345975.jpg,https://images.gr-assets.com/books/1343768792s/13345975.jpg\n5585,13521399,13521399,19082075,37,316224189,9780316224180.0,\"James Patterson, Maxine Paetro\",2012.0,Confessions of a murder suspect,\"Confessions of a Murder Suspect (Confessions, #1)\",eng,3.89,19223,22686,2335,538,1552,5304,7683,7609,https://images.gr-assets.com/books/1377041438l/13521399.jpg,https://images.gr-assets.com/books/1377041438s/13521399.jpg\n5586,156529,156529,1584089,13,1401205011,9781401205010.0,\"Brian K. Vaughan, Pia Guerra, Goran Sudžuka, José Marzán Jr.\",2005.0,Y: The Last Man Vol. 6: Girl on Girl,\"Y: The Last Man, Vol. 6: Girl on Girl (Y: The Last Man, #6)\",eng,4.21,20974,21255,402,203,561,3305,7786,9400,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390145147l/156529.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5587,2017056,2017056,2144298,22,307394956,9780307394960.0,Chris Bohjalian,2008.0,Skeletons at the Feast,Skeletons at the Feast,,3.99,18706,20246,2202,311,846,3968,8762,6359,https://images.gr-assets.com/books/1320413130l/2017056.jpg,https://images.gr-assets.com/books/1320413130s/2017056.jpg\n5588,643962,643962,2638564,57,449221490,9780449221500.0,Sue Grafton,1994.0,L is for Lawless,\"L is for Lawless (Kinsey Millhone, #12)\",,3.91,22383,23757,529,111,727,6844,9542,6533,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388422614l/643962.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5589,69392,69392,2915313,36,440420059,9780440420060.0,Jerry Spinelli,2003.0,Milkweed,Milkweed,eng,4.0,19461,20592,1966,329,1032,4327,7542,7362,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389071717l/69392.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5590,181601,181601,573440,8,60283262,9780060283260.0,\"Laura Joffe Numeroff, Felicia Bond\",2000.0,If You Give a Pig a Party (If You Give...),If You Give a Pig a Party,,4.22,18297,18394,279,200,669,3376,4740,9409,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201562l/181601.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5591,22326,22326,953941,52,140157727,9780140157730.0,William Gibson,1993.0,Virtual Light,\"Virtual Light (Bridge, #1)\",eng,3.84,16273,18445,432,134,906,5272,7689,4444,https://images.gr-assets.com/books/1409238094l/22326.jpg,https://images.gr-assets.com/books/1409238094s/22326.jpg\n5592,6404621,6404621,6593483,21,61719544,9780061719550.0,Craig Ferguson,2009.0,American on Purpose,American on Purpose: The Improbable Adventures of an Unlikely Patriot,eng,3.96,17033,18429,1345,444,799,3838,7232,6116,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401820514l/6404621.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5593,3240483,3240483,3275171,41,1401303382,9781401303390.0,Michael J. Fox,2008.0,Always Looking Up: The Adventures of an Incurable Optimist,Always Looking Up: The Adventures of an Incurable Optimist,en-US,3.82,17181,18002,1389,397,1268,4800,6310,5227,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442943948l/3240483._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5594,6584134,6584134,6777627,33,61852058,9780061852050.0,Sarah MacLean,2010.0,Nine Rules to Break When Romancing a Rake,\"Nine Rules to Break When Romancing a Rake (Love By Numbers, #1)\",en-US,4.08,27201,29839,2275,527,1145,5301,11221,11645,https://images.gr-assets.com/books/1286649993l/6584134.jpg,https://images.gr-assets.com/books/1286649993s/6584134.jpg\n5595,12888599,12888599,17212649,47,316185906,9780316185900.0,Charlotte Rogan,2012.0,The Lifeboat,The Lifeboat,eng,3.2,18260,20594,3402,796,3605,8615,5897,1681,https://images.gr-assets.com/books/1344266875l/12888599.jpg,https://images.gr-assets.com/books/1344266875s/12888599.jpg\n5596,538845,538845,44995,452,781805503,9780781805510.0,\"Henryk Sienkiewicz, W.S. Kuniczak\",1895.0,Quo vadis?,Quo Vadis,eng,4.13,18466,20371,694,326,966,3527,6522,9030,https://images.gr-assets.com/books/1340709653l/538845.jpg,https://images.gr-assets.com/books/1340709653s/538845.jpg\n5597,16068780,16068780,21861160,34,62235796,9780062235790.0,Amy Ewing,2014.0,The Jewel,\"The Jewel (The Lone City, #1)\",eng,3.86,21247,25469,3473,713,1827,5852,8886,8191,https://images.gr-assets.com/books/1392220609l/16068780.jpg,https://images.gr-assets.com/books/1392220609s/16068780.jpg\n5598,312043,312043,302958,19,439672449,9780439672440.0,Chris d'Lacey,2001.0,The Fire Within,\"The Fire Within (The Last Dragon Chronicles, #1)\",eng,3.76,22634,23309,1341,968,2203,5865,6732,7541,https://images.gr-assets.com/books/1362325249l/312043.jpg,https://images.gr-assets.com/books/1362325249s/312043.jpg\n5599,13815,13815,1422630,32,586203818,9780586203810.0,\"Raymond E. Feist, Janny Wurts\",1990.0,\"Servant of the Empire (The Empire Trilogy, #2)\",\"Servant of the Empire (The Empire Trilogy, #2)\",eng,4.27,20016,21476,265,108,513,3170,7350,10335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348059422l/13815.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5600,2195309,2195309,2201046,50,515144592,9780515144600.0,Nora Roberts,2008.0,The Hollow,\"The Hollow (Sign of Seven, #2)\",en-US,4.11,23983,25403,904,219,957,4993,8894,10340,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193051l/2195309.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5601,770038,770038,2201870,37,590259385,9780590259380.0,\"Deborah Guarino, Steven Kellogg\",1989.0,Is Your Mama A Llama?,Is Your Mama a Llama?,,4.16,19267,19573,393,259,793,3760,5466,9295,https://images.gr-assets.com/books/1328835648l/770038.jpg,https://images.gr-assets.com/books/1328835648s/770038.jpg\n5602,22540125,22540125,26217310,55,1476792496,9781476792490.0,Anna Todd,2013.0,After We Collided,\"After We Collided (After, #2)\",eng,3.73,16338,24827,1795,1619,2520,5459,6492,8737,https://images.gr-assets.com/books/1416788471l/22540125.jpg,https://images.gr-assets.com/books/1416788471s/22540125.jpg\n5603,13331184,13331184,18538886,15,385535635,9780385535630.0,Jacob Tomsky,2012.0,\"Heads in Beds: A Reckless Memoir of Hotels, Hustles, and So-Called Hospitality\",\"Heads in Beds: A Reckless Memoir of Hotels, Hustles, and So-Called Hospitality\",,3.54,16181,17744,2463,596,1836,5894,6199,3219,https://images.gr-assets.com/books/1348186171l/13331184.jpg,https://images.gr-assets.com/books/1348186171s/13331184.jpg\n5604,38855,38855,3963325,14,067975833X,9780679758330.0,Tony Horwitz,1998.0,Confederates in the Attic: Dispatches from the Unfinished Civil War,Confederates in the Attic: Dispatches from the Unfinished Civil War,eng,4.08,16792,17389,1422,202,634,3100,7051,6402,https://images.gr-assets.com/books/1428284996l/38855.jpg,https://images.gr-assets.com/books/1428284996s/38855.jpg\n5606,342637,342637,332991,19,3822835536,9783822835530.0,\"Robert Descharnes, Gilles Néret\",1994.0,Dali: The Paintings,Dali: The Paintings,,4.17,14600,14763,40,322,707,2442,3897,7395,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391633679l/342637.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5607,144791,144791,1271370,56,1416505067,9781416505070.0,Matthew Reilly,2005.0,Seven Ancient Wonders,\"Seven Deadly Wonders (Jack West Jr, #1)\",eng,4.08,15374,18406,856,437,919,3083,6268,7699,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388589227l/144791.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5609,30224,30224,4198,31,345443586,9780345443590.0,Laurell K. Hamilton,2006.0,Mistral's Kiss,\"Mistral's Kiss (Merry Gentry, #5)\",en-US,4.03,25340,27868,468,456,1695,5877,8400,11440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1598464029l/30224.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5611,4497978,4497978,4546955,27,044640098X,9780446400980.0,Larissa Ione,2009.0,Desire Unchained (Shadow Lover),Desire Unchained (Demonica #2),eng,4.25,26939,28519,1125,239,768,4093,9898,13521,https://images.gr-assets.com/books/1344268874l/4497978.jpg,https://images.gr-assets.com/books/1344268874s/4497978.jpg\n5612,21323,21323,22504,1,399146261,9780399146270.0,\"Dean Koontz, Leigh Nichols\",2000.0,Cold Fire ; Hideaway; The Key to Midnight,Cold Fire / Hideaway / The Key to Midnight,eng,4.16,17581,17581,11,291,540,3153,5715,7882,https://images.gr-assets.com/books/1309287773l/21323.jpg,https://images.gr-assets.com/books/1309287773s/21323.jpg\n5613,7617119,7617119,6154629,34,765327821,9780765327830.0,Dan Wells,2009.0,\"I Am Not A Serial Killer (John Cleaver, #1)\",\"I Am Not A Serial Killer (John Cleaver, #1)\",eng,3.77,18878,22460,3240,602,1829,5770,8169,6090,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442065592l/7617119._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5614,23492613,23492613,43082568,16,1476789258,9781476789260.0,Laura Dave,2015.0,Eight Hundred Grapes,Eight Hundred Grapes,,3.58,14135,17657,2043,373,1618,5989,6819,2858,https://images.gr-assets.com/books/1429742890l/23492613.jpg,https://images.gr-assets.com/books/1429742890s/23492613.jpg\n5615,84022,84022,822074,31,044900578X,9780449005780.0,Fannie Flagg,1998.0,\"Welcome to the World, Baby Girl!\",\"Welcome to the World, Baby Girl! (Elmwood Springs, #1)\",eng,3.84,18307,19738,976,199,1066,5513,7936,5024,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388751778l/84022.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5616,23966,23966,1087344,51,393318680,9780393318680.0,Irvine Welsh,1998.0,Filth,Filth,eng,3.76,16162,17671,693,463,1351,4679,6637,4541,https://images.gr-assets.com/books/1452500604l/23966.jpg,https://images.gr-assets.com/books/1452500604s/23966.jpg\n5618,28686830,28686830,48881943,17,345543009,9780345543000.0,Janet Evanovich,2016.0,Turbo Twenty-Three,\"Turbo Twenty-Three (Stephanie Plum, #23)\",eng,3.75,15021,23148,2740,291,1624,7442,8110,5681,https://images.gr-assets.com/books/1453745203l/28686830.jpg,https://images.gr-assets.com/books/1453745203s/28686830.jpg\n5619,30347,30347,13538260,70,446618675,9780446618670.0,Sandra Brown,1999.0,The Alibi,The Alibi,eng,4.03,17729,19454,509,177,707,4254,7586,6730,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168064235l/30347._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5620,12408149,12408149,17389742,27,62088149,9780062088150.0,Wiley Cash,2012.0,A Land More Kind Than Home,A Land More Kind Than Home,eng,3.84,15318,18146,2751,311,902,4603,7969,4361,https://images.gr-assets.com/books/1332536334l/12408149.jpg,https://images.gr-assets.com/books/1332536334s/12408149.jpg\n5621,233722,233722,2302767,37,590224735,9780590224730.0,Ann M. Martin,1986.0,Kristy's Great Idea,\"Kristy's Great Idea (The Baby-Sitters Club, #1)\",eng,3.94,21952,23186,834,616,1473,5790,6114,9193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389241314l/233722.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5624,52415,52415,2736640,93,1400031540,9781400031540.0,\"Henning Mankell, Steven T. Murray\",1996.0,Den femte kvinnan,\"The Fifth Woman (Kurt Wallander, #6)\",eng,4.02,16094,18381,710,210,564,3567,8339,5701,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245635l/52415.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5625,2845287,2845287,3093704,15,1594489998,9781594489990.0,Sarah Vowell,2008.0,The Wordy Shipmates,The Wordy Shipmates,en-US,3.66,17541,18786,2519,470,1568,5652,7337,3759,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442802485l/2845287._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5626,780581,780581,2879086,505,140443150,9780140443160.0,\"Guy de Maupassant, Douglas Parmée\",1885.0,Bel-Ami,Bel-Ami,eng,3.81,17016,20752,970,344,1409,5574,7916,5509,https://images.gr-assets.com/books/1366389912l/780581.jpg,https://images.gr-assets.com/books/1366389912s/780581.jpg\n5627,30043,30043,2455271,32,226500667,9780226500670.0,Norman Maclean,1976.0,A River Runs Through It and Other Stories,A River Runs Through It and Other Stories,eng,4.17,16501,18116,1124,211,655,2972,6343,7935,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924914l/30043.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5628,10836813,10836813,9674864,89,1451616880,9781451616880.0,\"María Dueñas, Daniel Hahn\",2009.0,El tiempo entre costuras,The Time in Between,eng,4.04,10166,18470,2437,252,861,3367,7395,6595,https://images.gr-assets.com/books/1319148738l/10836813.jpg,https://images.gr-assets.com/books/1319148738s/10836813.jpg\n5630,22325,22325,879765,53,425190455,9780425190460.0,William Gibson,1996.0,Idoru,Idoru (Bridge #2),eng,3.78,16099,17933,444,147,1003,5421,7423,3939,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388413296l/22325.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5631,15803757,15803757,21365435,35,373777922,9780373777920.0,Kristan Higgins,2013.0,The Best Man,\"The Best Man (Blue Heron, #1)\",eng,3.93,18998,20977,1633,629,1001,4553,7774,7020,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388220961l/15803757.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5632,47520,47520,1003952,42,64473457,9780064473450.0,Diana Wynne Jones,1990.0,Castle in the Air,\"Castle in the Air (Howl's Moving Castle, #2)\",,3.93,22964,26770,1599,175,1119,6799,11091,7586,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441595370l/47520._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5633,10706120,10706120,15616456,14,545298407,9780545298410.0,Jude Watson,2011.0,A King's Ransom,\"A King's Ransom (The 39 Clues: Cahills vs. Vespers, #2)\",eng,4.14,18168,18469,355,332,739,3602,5110,8686,https://images.gr-assets.com/books/1329085934l/10706120.jpg,https://images.gr-assets.com/books/1329085934s/10706120.jpg\n5634,7054123,7054123,7305202,19,1594202435,9781594202440.0,Deborah Blum,2010.0,The Poisoner's Handbook: Murder and the Birth of Forensic Medicine in Jazz Age New York,The Poisoner's Handbook: Murder and the Birth of Forensic Medicine in Jazz Age New York,en-US,4.0,18997,20223,2188,455,886,4030,7784,7068,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442933592l/7054123._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5635,27083865,27083865,47125984,9,1523662441,9781523662450.0,Penelope Ward,2016.0,RoomHate,RoomHate,eng,4.07,21136,26326,2924,555,1378,4529,9143,10721,https://images.gr-assets.com/books/1453991440l/27083865.jpg,https://images.gr-assets.com/books/1453991440s/27083865.jpg\n5636,2954411,2954411,2983897,20,1416960597,9781416960590.0,Elizabeth Scott,2008.0,Living Dead Girl,Living Dead Girl,en-US,3.83,22014,24327,3593,819,1845,5781,7976,7906,https://images.gr-assets.com/books/1314272108l/2954411.jpg,https://images.gr-assets.com/books/1314272108s/2954411.jpg\n5637,159964,159964,154391,259,938077872,9780938077880.0,\"Anonymous, Ananda Maitreya, Thich Nhat Hanh, Balangoda Ananda Maitreya Maitreya\",-500.0,धर्मपद [Dhammapada],The Dhammapada,eng,4.29,12639,17114,616,213,516,2436,4866,9083,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442577801l/159964._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5638,13412515,13412515,18682640,17,,,Kristen Ashley,2012.0,Law Man,\"Law Man (Dream Man, #3)\",en-US,4.33,33220,35855,2241,211,745,4303,12340,18256,https://images.gr-assets.com/books/1327911077l/13412515.jpg,https://images.gr-assets.com/books/1327911077s/13412515.jpg\n5639,128754,128754,1034103,81,671028367,9780671028370.0,Kathy Reichs,2000.0,Deadly Décisions,\"Deadly Decisions (Temperance Brennan, #3)\",en-US,3.93,21646,24718,804,135,865,6562,10221,6935,https://images.gr-assets.com/books/1452313887l/128754.jpg,https://images.gr-assets.com/books/1452313887s/128754.jpg\n5640,23317538,23317538,42872911,27,812995821,9780812995820.0,Brené Brown,2015.0,Rising Strong,Rising Strong,en-GB,4.19,22022,23919,1910,506,922,3320,8037,11134,https://images.gr-assets.com/books/1428641002l/23317538.jpg,https://images.gr-assets.com/books/1428641002s/23317538.jpg\n5641,13642963,13642963,8586468,39,385344031,9780385344040.0,Alan Bradley,2013.0,Speaking from Among the Bones,\"Speaking from Among the Bones (Flavia de Luce, #5)\",eng,4.17,21892,24547,3138,242,540,3474,10822,9469,https://images.gr-assets.com/books/1344371922l/13642963.jpg,https://images.gr-assets.com/books/1344371922s/13642963.jpg\n5642,5551522,5551522,5722589,56,316018775,9780316018780.0,\"James Patterson, Maxine Paetro\",2009.0,Swimsuit,Swimsuit,eng,3.63,18462,20452,1683,707,1907,6321,6749,4768,https://images.gr-assets.com/books/1344268075l/5551522.jpg,https://images.gr-assets.com/books/1344268075s/5551522.jpg\n5643,56634,56634,1007543,31,842371516,9780842371510.0,Elisabeth Elliot,1956.0,Through Gates of Splendor,Through Gates of Splendor,en-US,4.38,16487,17062,348,162,337,1951,4938,9674,https://images.gr-assets.com/books/1406510855l/56634.jpg,https://images.gr-assets.com/books/1406510855s/56634.jpg\n5644,15832316,15832316,21568137,10,,,Tarryn Fisher,2012.0,Dirty Red,\"Dirty Red (Love Me with Lies, #2)\",eng,4.22,26888,27127,3192,281,868,3864,9830,12284,https://images.gr-assets.com/books/1364298887l/15832316.jpg,https://images.gr-assets.com/books/1364298887s/15832316.jpg\n5645,20958632,20958632,40214184,24,316213071,9780316213070.0,Holly Black,2015.0,The Darkest Part of the Forest,The Darkest Part of the Forest,eng,3.91,22992,25498,4304,491,1487,5577,10166,7777,https://images.gr-assets.com/books/1397755014l/20958632.jpg,https://images.gr-assets.com/books/1397755014s/20958632.jpg\n5646,73095,73095,2548,40,380794470,9780380794480.0,Susan Elizabeth Phillips,1998.0,Dream a Little Dream,\"Dream a Little Dream (Chicago Stars, #4)\",en-US,4.18,24117,25838,932,174,704,4437,9459,11064,https://images.gr-assets.com/books/1308818689l/73095.jpg,https://images.gr-assets.com/books/1308818689s/73095.jpg\n5647,2508854,2508854,2516225,36,,6221102017180.0,\"خالد الخميسي, Khaled Al Khamissi\",2006.0,تاكسي: حواديت المشاوير,تاكسي: حواديت المشاوير,ara,3.68,11981,14221,1274,439,1139,4102,5416,3125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1519111005l/2508854.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5648,51113,51113,1019525,24,312144075,9780312144070.0,Gail Tsukiyama,1994.0,The Samurai's Garden,The Samurai's Garden,en-US,4.12,17024,17774,1572,145,558,3152,7152,6767,https://images.gr-assets.com/books/1327876036l/51113.jpg,https://images.gr-assets.com/books/1327876036s/51113.jpg\n5649,25883848,25883848,45762345,28,,,Sally   Thorne,2016.0,The Hating Game,The Hating Game,eng,4.24,21426,28602,5191,432,1049,3720,9290,14111,https://images.gr-assets.com/books/1467138679l/25883848.jpg,https://images.gr-assets.com/books/1467138679s/25883848.jpg\n5650,23746004,23746004,43241366,46,804177996,9780804177990.0,Julia Heaberlin,2015.0,Black-Eyed Susans,Black-Eyed Susans,eng,3.78,14886,18850,2478,383,1134,4866,8273,4194,https://images.gr-assets.com/books/1431975016l/23746004.jpg,https://images.gr-assets.com/books/1431975016s/23746004.jpg\n5651,17673307,17673307,24673151,11,,,Penny Reid,2013.0,Neanderthal Seeks Human,\"Neanderthal Seeks Human (Knitting in the City, #1)\",eng,3.96,29612,29949,3104,811,1635,6111,10828,10564,https://images.gr-assets.com/books/1364347894l/17673307.jpg,https://images.gr-assets.com/books/1364347894s/17673307.jpg\n5652,9918083,9918083,13766290,36,1416971777,9781416971770.0,\"Scott Westerfeld, Keith Thompson\",2011.0,Goliath,\"Goliath (Leviathan, #3)\",eng,4.25,23911,25391,2303,167,559,3594,9438,11633,https://images.gr-assets.com/books/1299808712l/9918083.jpg,https://images.gr-assets.com/books/1299808712s/9918083.jpg\n5653,824763,824763,810530,11,1421506718,9781421506720.0,\"Akira Amano, JN Productions, Frances E. Wall\",2004.0,家庭教師ヒットマンREBORN! 1,\"Reborn! Vol. 01: Reborn Arrives! (Reborn!, #1)\",,4.22,15102,15443,116,397,750,2404,3362,8530,https://images.gr-assets.com/books/1383918162l/824763.jpg,https://images.gr-assets.com/books/1383918162s/824763.jpg\n5654,12922320,12922320,18077623,46,,,Karin Slaughter,2012.0,Criminal,\"Criminal (Will Trent, #6)\",eng,4.21,18592,21262,1796,171,522,3134,8309,9126,https://images.gr-assets.com/books/1334414049l/12922320.jpg,https://images.gr-assets.com/books/1334414049s/12922320.jpg\n5655,19687,19687,17028926,59,425180964,9780425180970.0,Tom Clancy,2000.0,The Bear and the Dragon,\"The Bear and the Dragon (Jack Ryan Universe, #11)\",en-US,3.79,18399,20190,390,414,1400,5479,7608,5289,https://images.gr-assets.com/books/1361933747l/19687.jpg,https://images.gr-assets.com/books/1361933747s/19687.jpg\n5656,17707605,17707605,24657006,28,399158987,9780399158990.0,Sue Grafton,2013.0,W is for Wasted,\"W is for Wasted (Kinsey Millhone, #23)\",eng,3.86,17357,22102,2812,267,963,5789,9555,5528,https://images.gr-assets.com/books/1367622462l/17707605.jpg,https://images.gr-assets.com/books/1367622462s/17707605.jpg\n5657,101249,101249,97622,7,1584790830,9781584790840.0,Alton Brown,2002.0,I'm Just Here for the Food: Food + Heat = Cooking,I'm Just Here for the Food: Food + Heat = Cooking,en-US,4.21,15870,16707,266,277,525,2514,5550,7841,https://images.gr-assets.com/books/1473385712l/101249.jpg,https://images.gr-assets.com/books/1473385712s/101249.jpg\n5658,42909,42909,2987864,46,312335288,9780312335280.0,James Herriot,1976.0,Vets Might Fly and Vet in a Spin,All Things Wise and Wonderful,,4.39,20524,22314,381,109,245,2467,7537,11956,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434476309l/42909._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5659,84135,84135,1329428,31,312934327,9780312934320.0,Sherrilyn Kenyon,2005.0,Sins of the Night,Sins of the Night (Dark-Hunter #7),eng,4.18,28341,30467,876,130,890,5620,10622,13205,https://images.gr-assets.com/books/1317065358l/84135.jpg,https://images.gr-assets.com/books/1317065358s/84135.jpg\n5660,10345937,10345937,15248728,23,1595143998,9781595143990.0,Beth Revis,2013.0,Shades of Earth,\"Shades of Earth (Across the Universe, #3)\",eng,4.11,24612,26839,3442,445,1146,4734,9221,11293,https://images.gr-assets.com/books/1346494567l/10345937.jpg,https://images.gr-assets.com/books/1346494567s/10345937.jpg\n5661,13661,13661,2902890,77,1416509631,9781416509640.0,Ursula K. Le Guin,1990.0,Tehanu,\"Tehanu (Earthsea Cycle, #4)\",eng,3.89,19503,23207,966,375,1435,5643,8668,7086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924581l/13661.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5662,13517455,13517455,19075624,36,62217070,9780062217070.0,Amy Tintera,2013.0,Reboot,\"Reboot (Reboot, #1)\",eng,3.92,23300,25819,3128,502,1494,5622,10225,7976,https://images.gr-assets.com/books/1350931774l/13517455.jpg,https://images.gr-assets.com/books/1350931774s/13517455.jpg\n5663,25065629,25065629,44749816,17,1594486638,9781594486630.0,Carrie Brownstein,2015.0,Hunger Makes Me a Modern Girl,Hunger Makes Me a Modern Girl,eng,3.88,17102,18584,2057,366,960,4257,7936,5065,https://images.gr-assets.com/books/1435507354l/25065629.jpg,https://images.gr-assets.com/books/1435507354s/25065629.jpg\n5664,13533740,13533740,19095325,11,1400067669,9781400067660.0,Jon Meacham,2012.0,Thomas Jefferson: The Art of Power,Thomas Jefferson: The Art of Power,eng,3.99,18546,19853,1462,692,843,3518,7755,7045,https://images.gr-assets.com/books/1342043615l/13533740.jpg,https://images.gr-assets.com/books/1342043615s/13533740.jpg\n5665,16360,16360,1355172,196,7113803,9780007113800.0,Agatha Christie,1936.0,Murder in Mesopotamia,\"Murder in Mesopotamia (Hercule Poirot, #14)\",eng,3.86,21207,24492,892,108,957,7300,9946,6181,https://images.gr-assets.com/books/1308808558l/16360.jpg,https://images.gr-assets.com/books/1308808558s/16360.jpg\n5666,12013,12013,1494164,23,553575376,9780553575380.0,Iain M. Banks,1996.0,Excession,\"Excession (Culture, #5)\",en-US,4.19,16330,18833,737,104,544,3026,7117,8042,https://images.gr-assets.com/books/1288930712l/12013.jpg,https://images.gr-assets.com/books/1288930712s/12013.jpg\n5667,5175,5175,3266662,25,038079487X,9780380794870.0,Pearl Cleage,1997.0,What Looks Like Crazy on an Ordinary Day,\"What Looks Like Crazy on an Ordinary Day (Idlewild, #1)\",eng,3.7,17853,18444,610,359,1568,5728,6439,4350,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194306l/5175.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5668,257990,257990,2552430,53,449000621,9780449000620.0,Sue Grafton,1990.0,G is for Gumshoe,\"G is for Gumshoe (Kinsey Millhone, #7)\",eng,3.9,22311,24764,615,69,631,7360,10467,6237,https://images.gr-assets.com/books/1315138148l/257990.jpg,https://images.gr-assets.com/books/1315138148s/257990.jpg\n5669,17333431,17333431,24064758,40,1455521310,9781455521320.0,David Baldacci,2013.0,King & Maxwell,\"King and Maxwell (Sean King & Michelle Maxwell, #6)\",eng,4.03,14491,20096,1580,132,643,4106,8871,6344,https://images.gr-assets.com/books/1379456669l/17333431.jpg,https://images.gr-assets.com/books/1379456669s/17333431.jpg\n5670,21027,21027,162246,50,60958340,9780060958340.0,Irvin D. Yalom,1989.0,Love's Executioner & Other Tales of Psychotherapy,Love's Executioner and Other Tales of Psychotherapy,,4.18,14013,16134,630,237,547,2468,5725,7157,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440082255l/21027._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5671,3342764,3342764,3381062,48,316037885,9780316037880.0,Trudi Canavan,2009.0,The Magician's Apprentice,\"The Magician's Apprentice (Black Magician, #0.5)\",eng,3.94,17128,19089,575,325,1049,4419,7005,6291,https://images.gr-assets.com/books/1344264805l/3342764.jpg,https://images.gr-assets.com/books/1344264805s/3342764.jpg\n5672,459064,459064,4379974,32,593046315,9780593046320.0,Steven Erikson,2007.0,Reaper's Gale,\"Reaper's Gale (The Malazan Book of the Fallen, #7)\",eng,4.34,16539,19293,511,98,328,2179,6949,9739,https://images.gr-assets.com/books/1403011403l/459064.jpg,https://images.gr-assets.com/books/1403011403s/459064.jpg\n5673,17324,17324,18899,23,1595541209,9781595541210.0,Frank E. Peretti,1999.0,The Visitation,The Visitation,,3.91,16142,17007,386,347,1125,4049,5683,5803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425864456l/17324.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5674,7202841,7202841,7898021,17,1600106951,9781600106960.0,\"Joe Hill, Gabriel Rodríguez\",2010.0, Crown of Shadows,\"Locke & Key, Vol. 3: Crown of Shadows\",en-US,4.41,19683,21355,1138,121,262,1942,7404,11626,https://images.gr-assets.com/books/1377306494l/7202841.jpg,https://images.gr-assets.com/books/1377306494s/7202841.jpg\n5675,180463,180463,5429,40,1576751740,9781576751750.0,The Arbinger Institute,2000.0,Leadership and Self Deception: Getting Out of the Box,Leadership and Self-Deception: Getting Out of the Box,,4.11,13531,15706,1681,303,717,2684,5249,6753,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172487064l/180463._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5676,112518,112518,876293,48,1857230213,9781857230220.0,\"Arthur C. Clarke, Gentry Lee\",1991.0,\"The Garden of Rama (Rama, #3)\",\"The Garden of Rama (Rama, #3)\",eng,3.76,16389,17852,267,439,1425,5008,6079,4901,https://images.gr-assets.com/books/1375814957l/112518.jpg,https://images.gr-assets.com/books/1375814957s/112518.jpg\n5678,133394,133394,1912267,119,140184937,9780140184940.0,Graham Greene,1958.0,Our Man in Havana,Our Man in Havana,eng,3.94,15460,18434,1177,83,647,4277,8698,4729,https://images.gr-assets.com/books/1327926887l/133394.jpg,https://images.gr-assets.com/books/1327926887s/133394.jpg\n5679,10889279,10889279,15805031,11,140123206X,9781401232060.0,\"Scott Snyder, Jock, Francesco Francavilla, Jared K. Fletcher, Sal Cipriano, David   Baron\",2011.0,Batman: The Black Mirror,Batman: The Black Mirror,eng,4.29,15625,16366,686,183,466,2226,5070,8421,https://images.gr-assets.com/books/1503127212l/10889279.jpg,https://images.gr-assets.com/books/1503127212s/10889279.jpg\n5680,9682816,9682816,14570778,33,316097543,9780316097540.0,\"James Patterson, Marshall Karp\",2011.0,Kill Me If You Can,Kill Me If You Can,eng,4.0,16879,18616,1277,287,773,3982,7122,6452,https://images.gr-assets.com/books/1344263782l/9682816.jpg,https://images.gr-assets.com/books/1344263782s/9682816.jpg\n5681,8952,8952,2403384,52,,9780316016670.0,Darren Shan,2003.0,\"Killers of the Dawn (Cirque Du Freak, #9)\",\"Killers of the Dawn (Cirque Du Freak, #9)\",,4.22,18194,19787,438,146,658,3231,6353,9399,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449853l/8952.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5682,906560,906560,603136,33,515089931,9780515089940.0,Corrie ten Boom,1974.0,Tramp for the Lord,Tramp for the Lord,,4.47,16680,16977,309,117,262,1717,4353,10528,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349106628l/906560.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5683,826583,826583,812315,13,60278684,9780060278690.0,\"Laura Joffe Numeroff, Felicia Bond\",2000.0,If You Take a Mouse to the Movies,If You Take a Mouse to the Movies,,4.16,17938,18290,317,252,853,3460,4893,8832,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348905712l/826583.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5684,1406197,1406197,3341405,37,1423340418,9781423340420.0,\"Laurell K. Hamilton, Laural Merlington\",2007.0,A Lick of Frost,\"A Lick of Frost (Merry Gentry, #6)\",eng,4.12,24148,27391,578,372,1379,4999,8487,12154,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347337530l/1406197.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5685,40289,40289,937985,15,99690608,9780099690600.0,\"Orson Scott Card, James Cameron\",1989.0,The Abyss,The Abyss,eng,4.06,16318,16492,106,137,495,3626,6248,5986,https://images.gr-assets.com/books/1225165505l/40289.jpg,https://images.gr-assets.com/books/1225165505s/40289.jpg\n5686,8694522,8694522,13567100,15,031262168X,9780312621680.0,Paula Brackston,1991.0,The Book of Shadows,\"The Witch's Daughter (The Witch's Daughter, #1)\",en-US,3.54,17694,21436,2243,621,2198,7280,7554,3783,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441786996l/8694522._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5687,25573977,25573977,25758335,63,149262344X,9781492623440.0,\"Katarina Bivald, Alice Menzies\",2013.0,Läsarna i Broken Wheel rekommenderar,The Readers of Broken Wheel Recommend,eng,3.56,14571,20886,4519,591,2076,6815,7816,3588,https://images.gr-assets.com/books/1452107441l/25573977.jpg,https://images.gr-assets.com/books/1452107441s/25573977.jpg\n5688,13083008,13083008,18252653,67,60004878,9780060004870.0,Dennis Lehane,2012.0,Live by Night,\"Live by Night (Coughlin, #2)\",eng,3.89,14275,17522,2033,219,858,4098,7770,4577,https://images.gr-assets.com/books/1334590418l/13083008.jpg,https://images.gr-assets.com/books/1334590418s/13083008.jpg\n5689,12908877,12908877,14612013,23,62004042,9780062004050.0,Amy Plum,2012.0,Until I Die,\"Until I Die (Revenants, #2)\",en-US,4.17,24203,25365,1987,341,1035,4255,8127,11607,https://images.gr-assets.com/books/1335240840l/12908877.jpg,https://images.gr-assets.com/books/1335240840s/12908877.jpg\n5690,11256979,11256979,16183684,54,1439192812,9781439192820.0,\"Richard Dawkins, Dave McKean\",2011.0,The Magic of Reality: How We Know What's Really True,The Magic of Reality: How We Know What's Really True,en-US,4.04,14511,17067,1228,499,790,3094,5908,6776,https://images.gr-assets.com/books/1327883246l/11256979.jpg,https://images.gr-assets.com/books/1327883246s/11256979.jpg\n5691,35332,35332,1430406,31,842356290,9780842356300.0,\"Karen Kingsbury, Gary Smalley\",2002.0,Remember,\"Remember (Redemption, #2)\",eng,4.41,16303,16985,373,106,363,1846,4788,9882,https://images.gr-assets.com/books/1406506306l/35332.jpg,https://images.gr-assets.com/books/1406506306s/35332.jpg\n5692,13521299,13521299,19081975,48,316097527,9780316097530.0,James Patterson,2013.0,\"Alex Cross, Run\",\"Alex Cross, Run (Alex Cross, #20)\",,4.03,14434,19307,1415,139,584,4227,7954,6403,https://images.gr-assets.com/books/1343360404l/13521299.jpg,https://images.gr-assets.com/books/1343360404s/13521299.jpg\n5693,3106441,3106441,3137694,15,812979915,9780812979920.0,Christian Lander,2008.0,Stuff White People Like: the Definitive Guide to the Unique Taste of Millions,Stuff White People Like: A Definitive Guide to the Unique Taste of Millions,en-US,3.76,15888,16404,1091,414,1294,4620,5603,4473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391558472l/3106441.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5694,18754961,18754961,26645636,52,425259870,9780425259870.0,Nora Roberts,2014.0,Blood Magick,\"Blood Magick (The Cousins O'Dwyer Trilogy, #3)\",eng,4.06,14167,22139,1635,258,1146,4523,7238,8974,https://images.gr-assets.com/books/1458263077l/18754961.jpg,https://images.gr-assets.com/books/1458263077s/18754961.jpg\n5695,687215,687215,583183,44,345348672,9780345348680.0,Stephen R. Donaldson,1977.0,The Power That Preserves,\"The Power That Preserves (The Chronicles of Thomas Covenant the Unbeliever, #3)\",eng,3.99,18594,20278,273,494,1038,3911,7492,7343,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441422875l/687215._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5696,6539596,6539596,6731824,49,718149866,9780718149860.0,Marian Keyes,2009.0,The Brightest Star in the Sky,The Brightest Star in the Sky,en-GB,3.65,17413,19749,1280,605,1780,6051,6778,4535,https://images.gr-assets.com/books/1268685823l/6539596.jpg,https://images.gr-assets.com/books/1268685823s/6539596.jpg\n5697,8428195,8428195,13291399,19,62001035,9780062001030.0,Heather Dixon,2011.0,Entwined,Entwined,en-US,3.87,28950,30536,4592,776,2219,7258,10297,9986,https://images.gr-assets.com/books/1279037245l/8428195.jpg,https://images.gr-assets.com/books/1279037245s/8428195.jpg\n5699,23875,23875,40096204,177,307350436,9780307350440.0,Gabriel García Márquez,1961.0,El coronel no tiene quien le escriba,El coronel no tiene quien le escriba,spa,3.71,13206,19250,916,401,1406,5821,7380,4242,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167484006l/23875._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5700,6194,6194,1155689,91,140283358,9780140283360.0,J.M. Coetzee,1980.0,Waiting for the Barbarians,Waiting for the Barbarians,eng,3.94,14830,18453,1308,297,1039,3894,7429,5794,https://images.gr-assets.com/books/1330879044l/6194.jpg,https://images.gr-assets.com/books/1330879044s/6194.jpg\n5701,769212,769212,318402,16,385423608,9780385423600.0,Willy Lindwer,1988.0,The Last Seven Months of Anne Frank,The Last Seven Months of Anne Frank,,4.34,15096,15375,129,284,333,1807,4417,8534,https://images.gr-assets.com/books/1320487142l/769212.jpg,https://images.gr-assets.com/books/1320487142s/769212.jpg\n5702,21856367,21856367,41129225,46,147670869X,9781476708690.0,Walter Isaacson,2014.0,\"The Innovators: How a Group of Inventors, Hackers, Geniuses and Geeks Created the Digital Revolution\",\"The Innovators: How a Group of  Hackers, Geniuses and Geeks Created the Digital Revolution\",eng,4.03,14890,16810,1393,481,693,2882,6481,6273,https://images.gr-assets.com/books/1410191571l/21856367.jpg,https://images.gr-assets.com/books/1410191571s/21856367.jpg\n5703,316558,316558,2893104,51,1400065593,9781400065590.0,Deborah Rodriguez,2007.0,Kabul Beauty School: An American Woman Goes Behind the Veil,Kabul Beauty School: An American Woman Goes Behind the Veil,eng,3.63,17002,19172,2593,414,1735,6198,6994,3831,https://images.gr-assets.com/books/1320448527l/316558.jpg,https://images.gr-assets.com/books/1320448527s/316558.jpg\n5704,4630,4630,3347070,122,684859238,9780684859230.0,Ernest Hemingway,1937.0,To Have and Have Not ,To Have and Have Not,eng,3.57,16074,18970,1097,469,1917,6388,6719,3477,https://images.gr-assets.com/books/1400886825l/4630.jpg,https://images.gr-assets.com/books/1400886825s/4630.jpg\n5705,5062,5062,1084260,85,451219597,9780451219600.0,Ken Follett,2001.0,Jackdaws,Jackdaws,eng,3.91,17489,20382,982,167,863,5131,8680,5541,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388296072l/5062.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5707,116257,116257,905463,29,60750863,9780060750860.0,Neal Stephenson,2004.0,The System of the World,\"The System of the World (The Baroque Cycle, #3)\",en-US,4.3,16106,17773,584,129,454,2187,6167,8836,https://images.gr-assets.com/books/1407712273l/116257.jpg,https://images.gr-assets.com/books/1407712273s/116257.jpg\n5708,147243,147243,1244926,29,60734000,9780060734010.0,Ben Mikaelsen,1997.0,Touching Spirit Bear,\"Touching Spirit Bear (Spirit Bear, #1)\",eng,3.85,17706,18850,2716,725,1400,4201,6249,6275,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193857l/147243.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5709,15803141,15803141,21526172,38,1439142009,9781439142000.0,Rachel Kushner,2013.0,The Flamethrowers,The Flamethrowers,eng,3.46,13225,14942,1852,811,2029,4423,4827,2852,https://images.gr-assets.com/books/1387146199l/15803141.jpg,https://images.gr-assets.com/books/1387146199s/15803141.jpg\n5710,13125234,13125234,18301054,23,62076108,9780062076110.0,Jeaniene Frost,2013.0,Twice Tempted ,\"Twice Tempted (Night Prince, #2)\",en-GB,4.3,26598,29741,2238,153,640,3892,10605,14451,https://images.gr-assets.com/books/1352947741l/13125234.jpg,https://images.gr-assets.com/books/1352947741s/13125234.jpg\n5712,18172471,18172471,25543523,32,62318322,9780062318330.0,Kiera Cass,2014.0,The Selection Stories: The Prince & The Guard,\"The Selection Stories: The Prince & The Guard (The Selection, #0.5, 2.5)\",eng,4.03,23695,25596,1797,319,1346,5813,7983,10135,https://images.gr-assets.com/books/1380214609l/18172471.jpg,https://images.gr-assets.com/books/1380214609s/18172471.jpg\n5713,6474550,6474550,6665719,35,61914177,9780061914170.0,Gary Vaynerchuk,2009.0,Crush It!: Why Now Is the Time to Cash in on Your Passion,Crush It!: Why Now Is the Time to Cash In on Your Passion,en-US,3.85,17271,17926,856,536,1405,4310,5641,6034,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348122101l/6474550.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5714,89190,89190,3024029,35,044101173X,9780441011740.0,Alastair Reynolds,2003.0,Redemption Ark,Redemption Ark,eng,4.13,16484,18059,482,83,398,3008,8167,6403,https://images.gr-assets.com/books/1309206851l/89190.jpg,https://images.gr-assets.com/books/1309206851s/89190.jpg\n5715,1178039,1178039,2979692,54,345485777,9780345485780.0,Steve Berry,2007.0,The Venetian Betrayal,\"The Venetian Betrayal (Cotton Malone, #3)\",en-US,3.94,18403,19834,789,195,786,4737,8330,5786,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441796864l/1178039._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5716,142080,142080,756454,25,151189781,9780151189790.0,T.S. Eliot,1963.0,Collected Poems 1909-1962,\"Collected Poems, 1909-1962\",eng,4.29,17192,17768,178,162,483,2510,5491,9122,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349070555l/142080.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5717,219919,219919,467637,82,395957753,9780395957750.0,Lloyd C. Douglas,1942.0,The Robe,The Robe,en-US,4.2,18903,19480,950,167,605,3310,6569,8829,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436811107l/219919._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5718,1603923,1603923,1597219,77,786834277,9780786834270.0,\"Walt Disney Company, Ellen Titlebaum\",2002.0,Beauty and the Beast,Beauty and the Beast,,4.39,14811,15565,144,174,439,2127,3170,9655,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1185752881l/1603923.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5719,16158508,16158508,21995426,26,1594486409,9781594486400.0,Anton DiSclafani,2013.0,The Yonahlossee Riding Camp for Girls,The Yonahlossee Riding Camp for Girls,eng,3.34,15769,18112,2498,720,2642,6737,5832,2181,https://images.gr-assets.com/books/1364772121l/16158508.jpg,https://images.gr-assets.com/books/1364772121s/16158508.jpg\n5720,19286623,19286623,26116272,32,1250052386,9781250052380.0,Kylie Scott,2014.0,Lead,\"Lead (Stage Dive, #3)\",eng,4.32,29239,33999,3112,145,658,4138,12166,16892,https://images.gr-assets.com/books/1396467599l/19286623.jpg,https://images.gr-assets.com/books/1396467599s/19286623.jpg\n5721,862350,862350,847777,31,553588370,9780553588380.0,Kelley Armstrong,2007.0,No Humans Involved,\"No Humans Involved (Women of the Otherworld, #7)\",eng,4.2,23191,25157,700,109,542,4336,9454,10716,https://images.gr-assets.com/books/1362703261l/862350.jpg,https://images.gr-assets.com/books/1362703261s/862350.jpg\n5722,298568,298568,2337281,56,60766247,9780060766240.0,\"Joseph Delaney, Patrick  Arrasmith\",2007.0,Night of the Soul Stealer,\"Night of the Soul Stealer (The Last Apprentice / Wardstone Chronicles, #3)\",,4.12,18279,21196,605,187,620,4209,7654,8526,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348485290l/298568.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5723,56465,56465,1212277,27,747538352,9780747538360.0,Gavin de Becker,1997.0,The Gift of Fear: and Other Survival Signals That Protect Us from Violence,The Gift of Fear: Survival Signals That Protect Us from Violence,,4.19,14609,18708,2231,194,587,3086,6513,8328,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348829921l/56465.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5724,7124475,7124475,13036225,9,1442406593,9781442406600.0,Jennifer Echols,2010.0,Endless Summer,\"Endless Summer (The Boys Next Door, #1-2)\",eng,4.02,18438,18642,648,417,1223,3860,5275,7867,https://images.gr-assets.com/books/1276962830l/7124475.jpg,https://images.gr-assets.com/books/1276962830s/7124475.jpg\n5726,27821486,27821486,47801652,37,778319059,9780778319050.0,Mary Kubica,2016.0,Don't You Cry,Don't You Cry,,3.57,17399,21630,2610,578,2056,7077,8212,3707,https://images.gr-assets.com/books/1459917062l/27821486.jpg,https://images.gr-assets.com/books/1459917062s/27821486.jpg\n5727,49245,49245,48171,37,,9780800717890.0,Willard F. Harley Jr.,1986.0,\"Que Necesita El, Que Necesita Ella \",\"His Needs, Her Needs: Building an Affair-Proof Marriage\",eng,4.11,15008,15876,532,331,715,2808,5008,7014,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170358138l/49245.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5728,31313,31313,1702757,60,515141666,9780515141660.0,Nora Roberts,2006.0,Dance of the Gods,\"Dance of the Gods (Circle Trilogy, #2)\",eng,4.13,23060,24380,575,209,978,4677,8132,10384,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388182954l/31313.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5730,45967,45967,6092605,83,802131808,9780802131800.0,\"Sadegh Hedayat, D.P. Costello\",1937.0,بوف کور,The Blind Owl,en-US,3.99,5168,12190,991,401,819,2221,3814,4935,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919591l/45967.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5732,7640705,7640705,10170311,44,307738612,9780307738620.0,\"Jonathan Stroud, Simon  Jones\",2010.0,The Ring of Solomon,\"The Ring of Solomon (Bartimaeus, #0.5)\",eng,4.19,18809,21718,1208,329,568,3380,7850,9591,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348894736l/7640705.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5733,125553,125553,448935,65,439568471,9780439568470.0,R.L. Stine,1992.0,Welcome to Dead House,\"Welcome to Dead House (Goosebumps, #1)\",en-US,3.82,19171,20647,978,451,1763,5906,5438,7089,https://images.gr-assets.com/books/1328867798l/125553.jpg,https://images.gr-assets.com/books/1328867798s/125553.jpg\n5734,142900,142900,1075684,34,60837055,9780060837050.0,Louise Erdrich,2003.0,The Master Butchers Singing Club,The Master Butchers Singing Club,,4.02,16821,18212,1486,213,692,3569,7727,6011,https://images.gr-assets.com/books/1410133209l/142900.jpg,https://images.gr-assets.com/books/1410133209s/142900.jpg\n5735,400924,400924,390335,15,765319233,9780765319230.0,Glen Cook,1986.0,Chronicles of The Black Company (The Black Company / Shadows Linger / The White Rose),\"Chronicles of the Black Company (The Chronicles of the Black Company, #1-3)\",en-US,4.2,16663,18091,544,273,590,2584,6462,8182,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557478911l/400924.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5736,22522202,22522202,41969628,16,1481438867,9781481438860.0,Abbi Glines,2015.0,Until Friday Night,\"Until Friday Night (The Field Party, #1)\",eng,4.01,20813,25035,2566,615,1435,4798,8481,9706,https://images.gr-assets.com/books/1429191171l/22522202.jpg,https://images.gr-assets.com/books/1429191171s/22522202.jpg\n5737,5179,5179,1527857,20,671774670,9780671774680.0,Melinda Haynes,1999.0,Mother of Pearl,Mother of Pearl,en-US,3.67,17378,17632,395,464,1373,5501,6517,3777,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426690263l/5179.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5738,25814512,25814512,45263522,37,1501124374,9781501124370.0,Chris Cleave,2016.0,Everyone Brave Is Forgiven,Everyone Brave is Forgiven,eng,3.8,16183,20386,3113,362,1190,5437,8621,4776,https://images.gr-assets.com/books/1462176457l/25814512.jpg,https://images.gr-assets.com/books/1462176457s/25814512.jpg\n5739,7682,7682,3377947,77,553129198,9780553129200.0,Michael Crichton,1975.0,The Great Train Robbery,The Great Train Robbery,,3.84,17309,19907,917,241,1208,5294,7930,5234,https://images.gr-assets.com/books/1328309104l/7682.jpg,https://images.gr-assets.com/books/1328309104s/7682.jpg\n5740,59889,59889,58250,58,739437585,9780739437580.0,Danielle Steel,2003.0,Safe Harbour,Safe Harbour,,4.04,16205,16729,224,333,703,3650,5311,6732,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170537180l/59889.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5741,297134,297134,2958245,38,345467515,9780345467520.0,Kristin Hannah,2004.0,The Things We Do for Love,The Things We Do for Love,en-GB,4.05,16190,19211,1188,167,559,3914,8153,6418,https://images.gr-assets.com/books/1320542055l/297134.jpg,https://images.gr-assets.com/books/1320542055s/297134.jpg\n5742,13927,13927,2801045,39,765343266,9780765343260.0,Juliet Marillier,2000.0,Son of the Shadows,\"Son of the Shadows (Sevenwaters, #2)\",eng,4.32,21544,23597,1084,113,470,3051,8016,11947,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1602021932l/13927._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5743,41689,41689,3015332,108,451207793,9780451207790.0,Ken Follett,1980.0,The Key to Rebecca,The Key to Rebecca,eng,3.86,16616,19927,704,172,861,5321,8890,4683,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257670l/41689.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5744,9581001,9581001,12773071,25,451233328,9780451233320.0,Chloe Neill,2011.0,Hard Bitten,\"Hard Bitten (Chicagoland Vampires, #4)\",en-US,4.17,28656,30857,2205,278,949,5240,11250,13140,https://images.gr-assets.com/books/1372850762l/9581001.jpg,https://images.gr-assets.com/books/1372850762s/9581001.jpg\n5745,120231,120231,115767,4,060961066X,9780609610660.0,\"Ina Garten, Maura McEvoy\",2002.0,Barefoot Contessa Family Style: Easy Ideas and Recipes That Make Everyone Feel Like Family,Barefoot Contessa Family Style: Easy Ideas and Recipes That Make Everyone Feel Like Family,eng,4.26,16134,16181,106,482,427,2018,4650,8604,https://images.gr-assets.com/books/1320438055l/120231.jpg,https://images.gr-assets.com/books/1320438055s/120231.jpg\n5748,17781,17781,3956105,51,515128554,9780515128550.0,Nora Roberts,2000.0,Heart of the Sea,\"Heart of the Sea (Gallaghers of Ardmore / Irish Trilogy, #3)\",en-US,4.14,22274,23884,502,123,824,4711,8222,10004,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440345665l/17781._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5749,3373198,3373198,3412710,36,440244498,9780440244490.0,Lara Adrian,2008.0,Veil of Midnight,\"Veil of Midnight (Midnight Breed, #5)\",eng,4.26,25116,27048,833,130,603,4063,9551,12701,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274772l/3373198.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5750,98807,98807,1018132,36,380792648,9780380792640.0,James Rollins,1999.0,Subterranean,Subterranean,eng,4.01,17425,18876,613,211,857,4196,6957,6655,https://images.gr-assets.com/books/1336889308l/98807.jpg,https://images.gr-assets.com/books/1336889308s/98807.jpg\n5751,39045,39045,2101859,80,375713751,9780375713750.0,Allison Pearson,2001.0,I Don't Know How She Does It,I Don't Know How She Does It,en-US,3.3,15456,17703,1554,1002,2829,6336,4911,2625,https://images.gr-assets.com/books/1320396351l/39045.jpg,https://images.gr-assets.com/books/1320396351s/39045.jpg\n5753,22733729,22733729,42270825,27,1500453307,9781500453300.0,Becky  Chambers,2014.0,\"The Long Way to a Small, Angry Planet\",\"The Long Way to a Small, Angry Planet (Wayfarers, #1)\",eng,4.18,12969,22400,4221,306,805,3179,8272,9838,https://images.gr-assets.com/books/1405532474l/22733729.jpg,https://images.gr-assets.com/books/1405532474s/22733729.jpg\n5754,17961,17961,835372,18,140286802,9780140286810.0,\"Jorge Luis Borges, Andrew Hurley\",1998.0,Cuentos completos,Collected Fictions,eng,4.58,16474,16747,720,101,216,1050,3853,11527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1544275624l/17961._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5755,266607,266607,588218,32,689868235,9780689868240.0,Holly Black,2002.0,Tithe: A Modern Faerie Tale ,Valiant (Modern Faerie Tales #2),eng,3.92,26108,27834,1276,527,1873,6713,9040,9681,https://images.gr-assets.com/books/1332713354l/266607.jpg,https://images.gr-assets.com/books/1332713354s/266607.jpg\n5756,270521,270521,1129195,91,743464664,9780743464670.0,John le Carré,1989.0,The Russia House,The Russia House,,3.9,17293,18428,273,210,804,4735,7545,5134,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348229603l/270521.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5757,6905534,6905534,7129899,21,1606840592,9781606840600.0,Jennifer Lynn Barnes,2010.0,Raised by Wolves,\"Raised by Wolves (Raised by Wolves, #1)\",eng,3.94,24936,25615,1581,816,1764,5358,7845,9832,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511801754l/6905534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5758,43924,43924,14596742,91,451219244,9780451219240.0,Harlan Coben,2006.0,\"Promise Me (Myron Bolitar, #8)\",Promise Me (Myron Bolitar #8),eng,3.96,18168,20687,1191,100,609,4866,9503,5609,https://images.gr-assets.com/books/1361152177l/43924.jpg,https://images.gr-assets.com/books/1361152177s/43924.jpg\n5759,6934395,6934395,6799527,56,61720852,9780061720860.0,L.J. Smith,2011.0,The Vampire Diaries: The Return: Midnight,\"Midnight (The Vampire Diaries: The Return, #3)\",en-US,3.78,20566,22767,800,1052,2302,5507,5569,8337,https://images.gr-assets.com/books/1277829186l/6934395.jpg,https://images.gr-assets.com/books/1277829186s/6934395.jpg\n5760,84146,84146,81236,35,312934343,9780312934350.0,Sherrilyn Kenyon,2006.0,Dark Side of the Moon,\"Dark Side of the Moon (Dark-Hunter #9, Were-Hunter #3)\",en-US,4.15,27311,29481,969,192,1067,5616,9921,12685,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406993654l/84146.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5761,522525,522525,2171014,39,151010986,9780151010980.0,\"Carol Tavris, Elliot Aronson\",2007.0,\"Mistakes Were Made (But Not by Me): Why We Justify Foolish Beliefs, Bad Decisions, and Hurtful Acts\",\"Mistakes Were Made (But Not by Me): Why We Justify Foolish Beliefs, Bad Decisions, and Hurtful Acts\",en-US,3.99,15249,16352,741,392,851,3443,5444,6222,https://images.gr-assets.com/books/1328876733l/522525.jpg,https://images.gr-assets.com/books/1328876733s/522525.jpg\n5762,13765729,13765729,16544641,19,,,T.R. Ragan,2011.0,Abducted,Abducted (Lizzy Gardner #1),eng,3.94,8828,16856,1026,295,859,3605,6833,5264,https://images.gr-assets.com/books/1446520793l/13765729.jpg,https://images.gr-assets.com/books/1446520793s/13765729.jpg\n5763,10577,10577,515657,75,451197879,9780451197870.0,\"Richard Bachman, Stephen King\",1981.0,Roadwork,Roadwork,en-US,3.59,18479,20022,598,494,2162,6977,5825,4564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166254222l/10577._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5764,198331,198331,2861831,63,425204049,9780425204050.0,Clive Cussler,2001.0,\"Valhalla Rising (Dirk Pitt, #16)\",\"Valhalla Rising (Dirk Pitt, #16)\",en-US,3.92,17260,18552,418,170,683,4930,7538,5231,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405182792l/198331.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5765,49234,49234,1677648,56,60845503,9780060845510.0,Jared Diamond,1991.0,The Third Chimpanzee: The Evolution and Future of the Human Animal,The Third Chimpanzee: The Evolution and Future of the Human Animal,eng,4.04,15362,16369,633,234,621,3210,6547,5757,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442713688l/49234._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5766,2830067,2830067,2856172,63,688163181,9780688163180.0,Dennis Lehane,2008.0,The Given Day,The Given Day (Coughlin #1),en-US,4.03,16528,19736,2462,271,820,3610,8450,6585,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442866887l/2830067._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5767,760168,760168,746265,5,613026667,9780613026670.0,\"Gina Mayer, Mercer Mayer\",1994.0,Just Me in the Tub (Mercer Mayer's Little Critter),Just Me in the Tub (Mercer Mayer's Little Critter),,4.24,17335,17379,43,228,593,3250,4024,9284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178124755l/760168._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5768,16096514,16096514,21904550,13,62267175,9780062267180.0,Nicole  Williams,2013.0,Crush,\"Crush (Crash, #3)\",en-US,4.24,26188,27941,1643,270,906,4031,9269,13465,https://images.gr-assets.com/books/1350690968l/16096514.jpg,https://images.gr-assets.com/books/1350690968s/16096514.jpg\n5769,8429687,8429687,13292985,21,031608106X,9780316081060.0,Mira Grant,2011.0,Deadline,\"Deadline (Newsflesh Trilogy, #2)\",en-US,4.1,18636,20181,1999,293,811,3389,7688,8000,https://images.gr-assets.com/books/1408500444l/8429687.jpg,https://images.gr-assets.com/books/1408500444s/8429687.jpg\n5770,3675828,3675828,14597425,81,525951059,9780525951060.0,Harlan Coben,2009.0,Long Lost,Long Lost  (Myron Bolitar #9),eng,3.94,17996,20788,1560,142,824,4944,9011,5867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590420l/3675828._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5771,21722,21722,6678910,61,440242916,9780440242920.0,Karin Slaughter,2005.0,Faithless,\"Faithless (Grant County, #5)\",en-US,4.11,16833,19382,658,189,560,3455,7879,7299,https://images.gr-assets.com/books/1167323214l/21722.jpg,https://images.gr-assets.com/books/1167323214s/21722.jpg\n5772,142292,142292,137242,67,1430300612,9781430300620.0,Jill Bolte Taylor,2006.0,My Stroke of Insight,My Stroke of Insight: A Brain Scientist's Personal Journey,en-US,3.86,14734,18509,2900,259,1378,4614,6702,5556,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387714555l/142292.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5773,138395,138395,133402,25,1582406847,9781582406850.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2007.0,The Walking Dead 6,\"The Walking Dead, Vol. 06: This Sorrowful Life\",eng,4.32,18655,19532,652,87,323,2434,7020,9668,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412196024l/138395.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5774,3300,3300,104,89,61161535,9780061161540.0,\"Isabel Allende, Margaret Sayers Peden\",2006.0,Inés del alma mía,Inés of My Soul,en-US,3.9,13539,17411,1473,249,970,4206,6888,5098,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440985143l/3300._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5775,32442,32442,1177617,74,425199584,9780425199590.0,Dean Koontz,1991.0,Cold Fire,Cold Fire,,3.75,18343,19439,467,218,1248,6301,6985,4687,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388979944l/32442.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5776,18295858,18295858,25778638,39,031632468X,9780316324690.0,Emma Donoghue,2014.0,Frog Music,Frog Music,eng,3.13,16412,18959,3146,1494,3379,6926,5441,1719,https://images.gr-assets.com/books/1393227215l/18295858.jpg,https://images.gr-assets.com/books/1393227215s/18295858.jpg\n5777,15888,15888,950198,50,1573227951,9781573227960.0,Iain Pears,1997.0,An Instance of the Fingerpost,An Instance of the Fingerpost,eng,3.93,17604,18797,1088,515,1210,3896,6605,6571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1548147833l/15888.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5778,1499340,1499340,2001252,3,9797591514,9789797591520.0,Donny Dhirgantoro,2005.0,5 cm,5 cm,ind,3.84,12527,12767,1441,433,1089,2854,4126,4265,https://images.gr-assets.com/books/1472231689l/1499340.jpg,https://images.gr-assets.com/books/1472231689s/1499340.jpg\n5779,61329,61329,59649,24,60517123,9780060517120.0,\"Geoffrey A. Moore, Regis McKenna\",1991.0,Crossing the Chasm: Marketing and Selling High-Tech Products to Mainstream Customers,Crossing the Chasm: Marketing and Selling High-Tech Products to Mainstream Customers,en-US,4.0,14329,15368,322,399,792,2897,5539,5741,https://images.gr-assets.com/books/1421709292l/61329.jpg,https://images.gr-assets.com/books/1421709292s/61329.jpg\n5780,1881621,1881621,2326095,14,345497457,9780345497450.0,Peach-Pit,2006.0,Shugo Chara! 1 (Shugo Chara!),\"Shugo Chara!, Vol. 1: Who Do You Want to Be? (Shugo Chara!, #1)\",,4.11,17351,17507,209,501,1166,3064,3875,8901,https://images.gr-assets.com/books/1320532059l/1881621.jpg,https://images.gr-assets.com/books/1320532059s/1881621.jpg\n5782,76688,76688,1932588,30,586062009,9780586062000.0,Isaac Asimov,1985.0,Robots and Empire,Robots and Empire (Robot #4),eng,4.17,18462,20076,446,56,430,3468,8256,7866,https://images.gr-assets.com/books/1335782304l/76688.jpg,https://images.gr-assets.com/books/1335782304s/76688.jpg\n5783,5130,5130,3269256,118,60085495,9780060085490.0,Aldous Huxley,1962.0,Island,Island,eng,3.87,14440,16676,1001,427,1341,3820,5521,5567,https://images.gr-assets.com/books/1375947541l/5130.jpg,https://images.gr-assets.com/books/1375947541s/5130.jpg\n5784,1662160,1662160,1656975,35,375424474,9780375424470.0,Neil Shubin,2008.0,Your Inner Fish: A Journey into the 3.5-Billion-Year History of the Human Body,Your Inner Fish: A Journey into the 3.5-Billion-Year History of the Human Body,,3.97,14784,16284,1130,394,916,3200,6052,5722,https://images.gr-assets.com/books/1320439515l/1662160.jpg,https://images.gr-assets.com/books/1320439515s/1662160.jpg\n5785,123933,123933,8826974,52,573613052,9780573613050.0,Jean-Paul Sartre,1944.0,Huis clos,No Exit,eng,4.13,16533,18378,674,253,663,3148,6725,7589,https://images.gr-assets.com/books/1362639118l/123933.jpg,https://images.gr-assets.com/books/1362639118s/123933.jpg\n5786,324748,324748,315438,30,1591841666,9781591841660.0,Seth Godin,2007.0,The Dip: A Little Book That Teaches You When to Quit (and When to Stick),The Dip: A Little Book That Teaches You When to Quit (and When to Stick),,3.83,15009,15969,1127,410,1154,4052,5551,4802,https://images.gr-assets.com/books/1311282216l/324748.jpg,https://images.gr-assets.com/books/1311282216s/324748.jpg\n5787,11566956,11566956,16507555,15,618982507,9780618982510.0,Alison Bechdel,2012.0,Are You My Mother?: A Comic Drama,Are You My Mother?,eng,3.66,18618,19688,2585,697,2193,5326,6382,5090,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1511409644l/11566956._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5788,1433337,1433337,1423877,3,9719234202,9789719234200.0,Bob Ong,2001.0,ABNKKBSNPLAKo?! (Mga Kwentong Chalk ni Bob Ong),ABNKKBSNPLAKo?! (Mga Kwentong Chalk ni Bob Ong),fil,4.2,14481,14537,508,196,534,2343,4544,6920,https://images.gr-assets.com/books/1297789858l/1433337.jpg,https://images.gr-assets.com/books/1297789858s/1433337.jpg\n5790,152695,152695,1228554,10,312992629,9780312992620.0,Elin Hilderbrand,2005.0,The Blue Bistro,The Blue Bistro,en-US,4.0,16398,18143,1469,156,810,3884,7287,6006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1552977207l/152695.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5791,12043770,12043770,15899099,30,1250001544,9781250001540.0,Darynda Jones,2012.0,Third Grave Dead Ahead,\"Third Grave Dead Ahead (Charley Davidson, #3)\",eng,4.39,15137,31108,2529,102,363,3183,11130,16330,https://images.gr-assets.com/books/1310823404l/12043770.jpg,https://images.gr-assets.com/books/1310823404s/12043770.jpg\n5792,28635,28635,674856,83,60930314,9780060930320.0,\"Milan Kundera, Linda Asher\",1997.0,L'identité,Identity,eng,3.68,11735,15368,939,237,1212,4819,6027,3073,https://images.gr-assets.com/books/1410130249l/28635.jpg,https://images.gr-assets.com/books/1410130249s/28635.jpg\n5793,21569527,21569527,40901894,12,805099247,9780805099250.0,Mary E. Pearson,2015.0,The Heart of Betrayal,\"The Heart of Betrayal (The Remnant Chronicles, #2)\",eng,4.32,24104,26504,3507,143,503,3013,9837,13008,https://images.gr-assets.com/books/1414932049l/21569527.jpg,https://images.gr-assets.com/books/1414932049s/21569527.jpg\n5794,4373,4373,909578,37,60856262,9780060856270.0,Loung Ung,2000.0,First They Killed My Father: A Daughter of Cambodia Remembers ,First They Killed My Father: A Daughter of Cambodia Remembers,en-US,4.29,17459,18880,1787,97,317,2344,7297,8825,https://images.gr-assets.com/books/1407105580l/4373.jpg,https://images.gr-assets.com/books/1407105580s/4373.jpg\n5795,11166889,11166889,2212445,38,425142485,9780425142490.0,\"Owen  West, Dean Koontz\",1980.0,The Funhouse,The Funhouse,eng,3.6,18424,19217,474,571,2094,6374,5599,4579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433170539l/11166889._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5796,36076,36076,35986,44,074329730X,9780743297300.0,Stephen M.R. Covey,2006.0,The SPEED of Trust: The One Thing that Changes Everything,The Speed of Trust: The One Thing that Changes Everything,en-US,3.97,13708,14707,461,315,865,3196,4930,5401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190190l/36076.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5797,43342,43342,1612810,79,671004549,9780671004540.0,Mary Higgins Clark,1998.0,You Belong to Me,You Belong To Me,en-US,3.85,19131,20017,445,118,864,6230,7507,5298,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920024l/43342.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5798,43255,43255,42692,63,552152161,9780552152170.0,Betty Mahmoody,1987.0,Not Without My Daughter,Not Without My Daughter,eng,4.04,16650,19208,1075,319,843,3725,7250,7071,https://images.gr-assets.com/books/1416296090l/43255.jpg,https://images.gr-assets.com/books/1416296090s/43255.jpg\n5799,759900,759900,3212153,42,553584529,9780553584520.0,Lisa Gardner,2003.0,The Killing Hour,\"The Killing Hour (Quincy & Rainie, #4)\",en-US,4.16,17948,19617,619,84,414,3516,7849,7754,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192199l/759900.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5800,96977,96977,1387490,30,345418514,9780345418520.0,Piers Anthony,1979.0,Castle Roogna,\"Castle Roogna (Xanth, #3)\",eng,3.87,19867,21212,241,141,998,6395,7721,5957,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388701282l/96977.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5801,571555,571555,2117450,75,671673688,9780671673680.0,Mary Higgins Clark,1989.0,While My Pretty One Sleeps,While My Pretty One Sleeps,eng,3.88,18846,19632,323,110,751,5855,7489,5427,https://images.gr-assets.com/books/1421102605l/571555.jpg,https://images.gr-assets.com/books/1421102605s/571555.jpg\n5802,178599,178599,172538,8,856761222,9780856761220.0,Joseph Kesselring,1939.0,Arsenic and Old Lace,Arsenic and Old Lace,,4.14,20473,20717,133,246,764,3825,6964,8918,https://images.gr-assets.com/books/1319500896l/178599.jpg,https://images.gr-assets.com/books/1319500896s/178599.jpg\n5803,263171,263171,255109,20,61132233,9780061132230.0,Ellen Schreiber,2007.0,\"Dance with a Vampire (Vampire Kisses, #4)\",\"Dance with a Vampire (Vampire Kisses, #4)\",eng,4.01,22119,23240,472,532,1607,5172,5659,10270,https://images.gr-assets.com/books/1443971681l/263171.jpg,https://images.gr-assets.com/books/1443971681s/263171.jpg\n5804,529626,529626,1308344,47,140045295,9780140045290.0,Ken Kesey,1964.0,Sometimes a Great Notion,Sometimes a Great Notion,,4.24,15502,16519,1069,229,629,2331,5054,8276,https://images.gr-assets.com/books/1364846481l/529626.jpg,https://images.gr-assets.com/books/1364846481s/529626.jpg\n5805,58890,58890,864540,28,590554093,9780590554090.0,Tamora Pierce,1998.0,Tris's Book,\"Tris's Book (Circle of Magic, #2)\",eng,4.07,24511,25857,386,161,1005,5724,9059,9908,https://images.gr-assets.com/books/1328860149l/58890.jpg,https://images.gr-assets.com/books/1328860149s/58890.jpg\n5806,7785194,7785194,10722133,27,1439171211,9781439171220.0,Sam Harris,2010.0,The Moral Landscape: How Science Can Determine Human Values,The Moral Landscape: How Science Can Determine Human Values,en-US,3.9,14300,15256,859,574,923,3055,5551,5153,https://images.gr-assets.com/books/1331317058l/7785194.jpg,https://images.gr-assets.com/books/1331317058s/7785194.jpg\n5807,11450591,11450591,16384520,24,,,Darcie Chan,2014.0,The Mill River Recluse,The Mill River Recluse,eng,3.55,15821,16595,1640,436,1758,5588,5788,3025,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328339576l/11450591.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5808,3381,3381,919466,31,1582344159,9781582344160.0,Douglas Coupland,2003.0,Hey Nostradamus!,Hey Nostradamus!,eng,3.72,14645,16109,621,309,1152,4904,6137,3607,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436978883l/3381._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5809,10836,10836,3455,44,802135587,9780802135580.0,Jon Lee Anderson,1997.0,Che Guevara: A Revolutionary Life,Che Guevara: A Revolutionary Life,eng,4.1,13516,14171,540,299,473,2502,5120,5777,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406995661l/10836.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5810,24766,24766,944238,44,,9780060519540.0,Scott Westerfeld,2004.0,The Secret Hour,\"The Secret Hour (Midnighters, #1)\",eng,3.8,23933,26170,1951,477,1853,7194,9430,7216,https://images.gr-assets.com/books/1501166713l/24766.jpg,https://images.gr-assets.com/books/1501166713s/24766.jpg\n5812,587666,587666,2117724,75,7235801,9780007235800.0,Paulo Coelho,2000.0,Ser Como o Rio que Flui,Like the Flowing River ,eng,3.93,12708,14623,821,303,882,3391,4983,5064,https://images.gr-assets.com/books/1399717203l/587666.jpg,https://images.gr-assets.com/books/1399717203s/587666.jpg\n5813,1113545,1113545,1100537,10,159038783X,9781590387830.0,Brandon Mull,2007.0,The Candy Shop War,\"The Candy Shop War (The Candy Shop War, #1)\",,4.03,19619,20777,2185,292,941,4482,7137,7925,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388603513l/1113545.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5815,3112850,3112850,3144132,26,738713708,9780738713700.0,Maggie Stiefvater,2008.0,\"Lament: The Faerie Queen's Deception (Books of Faerie, #1) \",\"Lament: The Faerie Queen's Deception (Books of Faerie, #1)\",eng,3.69,26116,28824,2658,885,2740,8144,9603,7452,https://images.gr-assets.com/books/1265410418l/3112850.jpg,https://images.gr-assets.com/books/1265410418s/3112850.jpg\n5816,417780,417780,408381,23,140549056,9780140549060.0,\"Verna Aardema, Leo Dillon, Diane Dillon\",1975.0,Why Mosquitoes Buzz in People's Ears: A West African Tale,Why Mosquitoes Buzz in People's Ears,,4.01,20639,21179,1037,558,1196,4493,6195,8737,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963811l/417780.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5817,21064599,21064599,40429264,52,812993861,9780812993870.0,Sophie Kinsella,2014.0,\"Shopaholic to the Stars (Shopaholic, #7)\",\"Shopaholic to the Stars (Shopaholic, #7)\",eng,3.24,15414,19202,2449,1034,3411,7224,4940,2593,https://images.gr-assets.com/books/1398905552l/21064599.jpg,https://images.gr-assets.com/books/1398905552s/21064599.jpg\n5818,114133,114133,1689205,1,399154345,9780399154350.0,Nora Roberts,2007.0,High Noon,High Noon,eng,3.94,20698,22562,879,197,1007,5813,8428,7117,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442646404l/114133._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5819,17557913,17557913,24485092,63,1471110672,9781471110670.0,Tom Rob Smith,2014.0,The Farm,The Farm,eng,3.53,13407,17244,2344,527,1721,5764,6489,2743,https://images.gr-assets.com/books/1391017911l/17557913.jpg,https://images.gr-assets.com/books/1391017911s/17557913.jpg\n5820,18528190,18528190,26233826,25,1608463869,9781608463860.0,Rebecca Solnit,2014.0,Men Explain Things to Me,Men Explain Things to Me,eng,3.93,17918,21217,2564,328,1066,4655,8937,6231,https://images.gr-assets.com/books/1393447237l/18528190.jpg,https://images.gr-assets.com/books/1393447237s/18528190.jpg\n5821,17201104,17201104,23676597,6,,2940016554330.0,Kristen Proby,2013.0,Rock With Me,\"Rock with Me (With Me in Seattle, #4)\",eng,4.3,28709,31050,1475,176,637,4070,11023,15144,https://images.gr-assets.com/books/1364925537l/17201104.jpg,https://images.gr-assets.com/books/1364925537s/17201104.jpg\n5822,7128341,7128341,1044059,95,316044776,9780316044780.0,\"Carlos Ruiz Zafón, Lucia Graves\",1986.0,El príncipe de la niebla,\"The Prince of Mist (Niebla, #1)\",eng,3.66,14381,22022,2069,350,1862,7253,7971,4586,https://images.gr-assets.com/books/1261604683l/7128341.jpg,https://images.gr-assets.com/books/1261604683s/7128341.jpg\n5823,1409344,1409344,1399635,13,930452895,9780930452900.0,Alfred Uhry,1986.0,Driving Miss Daisy,Driving Miss Daisy,eng,4.24,16829,16946,76,175,449,2636,5479,8207,https://images.gr-assets.com/books/1328767041l/1409344.jpg,https://images.gr-assets.com/books/1328767041s/1409344.jpg\n5825,172691,172691,3093655,63,749934174,9780749934170.0,J.D. Robb,1999.0,Conspiracy in Death,\"Conspiracy in Death (In Death, #8)\",eng,4.35,22149,25925,815,52,281,3308,9228,13056,https://images.gr-assets.com/books/1305124508l/172691.jpg,https://images.gr-assets.com/books/1305124508s/172691.jpg\n5826,7053,7053,14652719,55,375422714,9780375422710.0,Alexander McCall Smith,2004.0,In the Company of Cheerful Ladies,\"In the Company of Cheerful Ladies (No. 1 Ladies' Detective Agency, #6)\",eng,4.07,19839,22324,1000,47,347,4549,10476,6905,https://images.gr-assets.com/books/1422951731l/7053.jpg,https://images.gr-assets.com/books/1422951731s/7053.jpg\n5827,8296,8296,11181,48,60885459,9780060885460.0,\"Laura Ingalls Wilder, Garth Williams\",1953.0,The First Four Years,\"The First Four Years  (Little House, #9)\",eng,3.88,24180,28095,749,371,1783,7756,9222,8963,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266449687l/8296.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5829,128757,128757,2288500,68,743294378,9780743294380.0,Kathy Reichs,2007.0,Bones to Ashes,\"Bones to Ashes (Temperance Brennan, #10)\",eng,3.92,19942,22361,1083,161,863,5748,9323,6266,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439223650l/128757._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5830,19351490,19351490,46022931,744,,,\"Jacob Grimm, Wilhelm Grimm, منى الخميسي\",1857.0,Grimms Märchen,Grimm's Fairy Tales,eng,4.14,5873,19712,791,309,667,3561,6643,8532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386705031l/19351490.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5831,262731,262731,254672,62,,9780553804720.0,\"Allan Pease, Barbara Pease\",2004.0,The Definitive Book of Body Language,The Definitive Book of Body Language,eng,3.97,13328,16424,805,311,822,3607,6058,5626,https://images.gr-assets.com/books/1320537802l/262731.jpg,https://images.gr-assets.com/books/1320537802s/262731.jpg\n5833,72659,72659,3419289,67,316881791,9780316881790.0,Farley Mowat,1963.0,Never Cry Wolf : The Amazing True Story of Life Among Arctic Wolves,Never Cry Wolf,eng,4.19,17045,17863,803,233,478,2850,6418,7884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553107493l/72659._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5834,8437913,8437913,13301503,42,031612852X,9780316128520.0,\"James Patterson, Michael Ledwidge\",2010.0,Tick Tock,\"Tick Tock (Michael Bennett, #4)\",eng,4.03,17189,20266,1181,153,707,4350,8302,6754,https://images.gr-assets.com/books/1293807879l/8437913.jpg,https://images.gr-assets.com/books/1293807879s/8437913.jpg\n5835,6340471,6340471,5973842,34,184724954X,9781847249550.0,Michelle Moran,2009.0,Cleopatra's Daughter,Cleopatra's Daughter,eng,4.11,16532,20935,2125,200,713,3727,8267,8028,https://images.gr-assets.com/books/1449745007l/6340471.jpg,https://images.gr-assets.com/books/1449745007s/6340471.jpg\n5836,281350,281350,2747794,71,684859734,9780684859740.0,Kathy Reichs,2002.0,Grave Secrets,\"Grave Secrets (Temperance Brennan, #5)\",en-US,3.98,21460,24302,696,116,699,6159,10006,7322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439639414l/281350._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5837,16280678,16280678,22382303,15,345548485,9780345548480.0,Kevin Hearne,2014.0,Shattered,\"Shattered (The Iron Druid Chronicles, #7)\",eng,4.28,15133,19786,1112,52,319,2612,7858,8945,https://images.gr-assets.com/books/1387891720l/16280678.jpg,https://images.gr-assets.com/books/1387891720s/16280678.jpg\n5838,2102600,2102600,18280032,26,765316986,9780765316980.0,John Scalzi,2008.0,Zoe's Tale,\"Zoe's Tale (Old Man's War, #4)\",eng,3.73,15971,19734,1314,366,1358,5851,7860,4299,https://images.gr-assets.com/books/1301108028l/2102600.jpg,https://images.gr-assets.com/books/1301108028s/2102600.jpg\n5839,206197,206197,199557,30,1416543791,9781416543790.0,Brad Thor,2007.0,The First Commandment,\"The First Commandment (Scot Harvath, #6)\",eng,4.22,14833,16540,375,140,362,2456,6302,7280,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388522066l/206197.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5840,5289,5289,21905772,260,7144350,9780007144360.0,\"Oscar Wilde, Merlin Holland\",1908.0,Collected Works,Complete Works of Oscar Wilde,eng,4.45,10835,17952,320,114,242,1746,5241,10609,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388610522l/5289.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5841,24019,24019,24939,4,,9780936184750.0,\"Cook's Illustrated Magazine, John Burgoyne, Carl Tremblay\",1995.0,\"The New Best Recipe: All-New Edition with 1,000 Recipes\",The New Best Recipe,,4.2,15971,16006,243,349,658,2477,4524,7998,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348241812l/24019.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5842,23308084,23308084,42862750,26,399171622,9780399171630.0,Renee Ahdieh,2016.0,The Rose & the Dagger,\"The Rose & the Dagger (The Wrath & the Dawn, #2)\",eng,4.2,26503,29059,5261,212,904,4333,11110,12500,https://images.gr-assets.com/books/1443797156l/23308084.jpg,https://images.gr-assets.com/books/1443797156s/23308084.jpg\n5843,23164927,23164927,42710963,9,553418297,9780553418290.0,Peter Clines,2015.0,The Fold,The Fold,eng,3.82,13519,15688,2044,234,869,3970,6974,3641,https://images.gr-assets.com/books/1416182070l/23164927.jpg,https://images.gr-assets.com/books/1416182070s/23164927.jpg\n5844,24586590,24586590,44194211,21,1250022088,9781250022080.0,Louise Penny,2015.0,The Nature of the Beast,The Nature of the Beast (Chief Inspector Armand Gamache #11),eng,4.21,14695,18127,2411,127,428,2446,7572,7554,https://images.gr-assets.com/books/1429532809l/24586590.jpg,https://images.gr-assets.com/books/1429532809s/24586590.jpg\n5845,56157,56157,54726,27,60520620,9780060520620.0,Laura C. Schlessinger,2003.0,The Proper Care and Feeding of Husbands,The Proper Care and Feeding of Husbands,,3.71,13465,14384,1867,892,1233,3326,4700,4233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441772763l/56157._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5846,4789801,4789801,4854716,28,1595542884,9781595542880.0,Ted Dekker,2009.0,Green,\"Green: The Beginning and the End (The Circle, #0)\",eng,4.03,17315,17839,609,533,1162,3296,5085,7763,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442948093l/4789801._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5847,7352220,7352220,9117451,14,,9789792760870.0,Yana Toboso,2007.0,黒執事 III [Kuroshitsuji III],\"Black Butler, Vol. 3 (Black Butler, #3)\",ind,4.53,16682,17648,226,139,270,1567,3850,11822,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1261151722l/7352220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5848,16043804,16043804,21821161,16,031624371X,9780316243710.0,Michael J. Sullivan,2013.0,The Crown Tower,\"The Crown Tower (The Riyria Chronicles, #1)\",eng,4.31,17352,19317,1119,154,339,2089,7511,9224,https://images.gr-assets.com/books/1375570227l/16043804.jpg,https://images.gr-assets.com/books/1375570227s/16043804.jpg\n5849,8477057,8477057,13341979,24,1401229697,9781401229700.0,\"Fábio Moon, Gabriel Bá, Craig Thompson, Dave Stewart, Sean Konot\",2011.0,Daytripper,Daytripper,eng,4.31,17679,18567,1725,264,672,2223,5308,10100,https://images.gr-assets.com/books/1327876816l/8477057.jpg,https://images.gr-assets.com/books/1327876816s/8477057.jpg\n5850,6357022,25495606,6543745,10,,,Cherise Sinclair,2009.0,\"Club Shadowlands (Masters of the Shadowlands, #1)\",\"Club Shadowlands (Masters of the Shadowlands, #1)\",eng,3.99,22733,28000,1612,743,1625,5632,9278,10722,https://images.gr-assets.com/books/1328014540l/6357022.jpg,https://images.gr-assets.com/books/1328014540s/6357022.jpg\n5851,6282753,6282753,4524365,97,307266761,9780307266770.0,\"Orhan Pamuk, Maureen Freely\",2008.0,Masumiyet Müzesi,The Museum of Innocence,eng,3.69,12685,16600,1809,785,1664,4030,5480,4641,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348583229l/6282753.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5852,28815371,28815371,49031394,15,399184511,9780399184510.0,Brit Bennett,2016.0,The Mothers,The Mothers,eng,3.87,19784,22382,2875,243,954,5379,10630,5176,https://images.gr-assets.com/books/1460652458l/28815371.jpg,https://images.gr-assets.com/books/1460652458s/28815371.jpg\n5853,406373,406373,24158213,951,385031149,9780385031140.0,\"Johann Wolfgang von Goethe, Walter Kaufmann\",1832.0, Faust. Der Tragödie erster und zweiter Teil ,Faust,eng,3.97,15864,20799,831,347,1202,4570,7299,7381,https://images.gr-assets.com/books/1320404568l/406373.jpg,https://images.gr-assets.com/books/1320404568s/406373.jpg\n5854,16172634,16172634,22020637,29,62273264,9780062273260.0,Cora Carmack,2013.0,Faking It,\"Faking It (Losing It, #2)\",eng,3.96,27707,29813,2532,308,1368,6759,12181,9197,https://images.gr-assets.com/books/1360560023l/16172634.jpg,https://images.gr-assets.com/books/1360560023s/16172634.jpg\n5855,106131,106131,433190,29,439545285,9780439545280.0,Jenny Nimmo,2005.0,\"Charlie Bone and the Castle of Mirrors (The Children of the Red King, # 4)\",\"Charlie Bone and the Castle of Mirrors (The Children of the Red King, #4)\",,3.89,20101,20593,295,329,1200,5476,6927,6661,https://images.gr-assets.com/books/1290344623l/106131.jpg,https://images.gr-assets.com/books/1290344623s/106131.jpg\n5856,12667194,35534215,17055200,9,,,Shelly Crane,2011.0,Accordance,\"Accordance (Significance, #2)\",eng,4.28,25037,25326,1030,243,721,3451,8076,12835,https://images.gr-assets.com/books/1368363345l/12667194.jpg,https://images.gr-assets.com/books/1368363345s/12667194.jpg\n5857,8130839,8130839,12926604,34,399256121,9780399256130.0,Andrea Cremer,2012.0,Bloodrose,Bloodrose (Nightshade #3; Nightshade World #6),eng,4.06,23874,24920,2208,803,1428,4421,7104,11164,https://images.gr-assets.com/books/1351196369l/8130839.jpg,https://images.gr-assets.com/books/1351196369s/8130839.jpg\n5858,16297,16297,894955,171,425205959,9780425205950.0,Agatha Christie,1936.0,Cards on the Table,\"Cards on the Table (Hercule Poirot, #15)\",eng,3.9,19577,23004,1031,112,857,6468,9372,6195,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388208739l/16297.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5859,13547289,13547289,19112429,41,1442449616,9781442449620.0,Rachel Renée Russell,2012.0,Tales From a Not-So-Smart Miss Know-it-all,\"Tales from a Not-So-Smart Miss Know-It-All (Dork Diaries, #5)\",eng,4.42,13648,16142,604,318,488,1753,3199,10384,https://images.gr-assets.com/books/1370064645l/13547289.jpg,https://images.gr-assets.com/books/1370064645s/13547289.jpg\n5860,89551,89551,1968,56,038070952X,9780380709530.0,Beverly Cleary,1980.0,Ramona and Her Mother,\"Ramona and Her Mother (Ramona, #5)\",eng,4.08,20053,20989,422,199,663,4616,7267,8244,https://images.gr-assets.com/books/1445632007l/89551.jpg,https://images.gr-assets.com/books/1445632007s/89551.jpg\n5861,16363,16363,2773090,210,7119356,9780007119360.0,Agatha Christie,1938.0,Appointment with Death,\"Appointment with Death (Hercule Poirot, #19)\",eng,3.84,20793,24065,967,128,995,7379,9596,5967,https://images.gr-assets.com/books/1308808730l/16363.jpg,https://images.gr-assets.com/books/1308808730s/16363.jpg\n5862,73064,73064,1615880,44,60734574,9780060734570.0,Susan Elizabeth Phillips,2004.0,Natural Born Charmer,\"Natural Born Charmer (Chicago Stars, #7)\",en-US,4.15,25474,27397,1341,211,806,4829,10433,11118,https://images.gr-assets.com/books/1308742575l/73064.jpg,https://images.gr-assets.com/books/1308742575s/73064.jpg\n5863,30852,30852,1759,31,679721886,9780679721890.0,Maxine Hong Kingston,1975.0,The Woman Warrior: Memoirs of a Girlhood Among Ghosts,The Woman Warrior,en-US,3.72,17781,19459,1113,531,1686,5293,7098,4851,https://images.gr-assets.com/books/1418654290l/30852.jpg,https://images.gr-assets.com/books/1418654290s/30852.jpg\n5864,327194,327194,317832,5,307111547,9780307111550.0,\"Masha, Marie Simchow Stern\",1942.0,The Three Little Kittens (A First Little Golden Book),Three Little Kittens,eng,4.28,18327,18349,25,171,571,3390,4067,10150,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223263509l/327194.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5865,38503,38503,1789163,54,872861554,9780872861560.0,Charles Bukowski,1978.0,\"Erections, Ejaculations, Exhibitions and General Tales of Ordinary Madness\",Tales of Ordinary Madness,eng,4.0,13995,16573,530,244,748,3392,6625,5564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388246934l/38503.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5867,478894,478894,467318,19,345453751,9780345453750.0,Terry Brooks,1979.0,The Sword of Shannara Trilogy,\"The Sword of Shannara Trilogy (Shannara, #1-3)\",,3.94,15172,17560,338,559,1137,3615,5791,6458,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201262l/478894.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5868,23492661,23492661,43082842,18,1476776881,9781476776880.0,Taylor Jenkins Reid,2015.0,Maybe In Another Life,Maybe in Another Life,,3.74,17138,19583,2716,401,1451,5446,7760,4525,https://images.gr-assets.com/books/1424970519l/23492661.jpg,https://images.gr-assets.com/books/1424970519s/23492661.jpg\n5869,15802944,15802944,21526100,12,1451697244,9781451697250.0,Glennon Doyle Melton,2013.0,\" Carry On, Warrior: Thoughts on Life Unarmed \",\"Carry On, Warrior: Thoughts on Life Unarmed\",eng,4.18,12986,16521,1940,303,633,2471,5449,7665,https://images.gr-assets.com/books/1359054516l/15802944.jpg,https://images.gr-assets.com/books/1359054516s/15802944.jpg\n5870,736131,736131,24665786,605,9626344245,9789626344250.0,\"Arthur Conan Doyle, David Timson\",1914.0,The Valley of Fear,The Valley of Fear,eng,3.98,15399,21503,1125,166,902,5123,8345,6967,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390250081l/736131.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5871,3094593,3094593,2501542,47,515144665,9780515144670.0,Nora Roberts,2008.0,The Pagan Stone,\"The Pagan Stone (Sign of Seven, #3)\",en-US,4.14,22863,24157,911,252,948,4445,8063,10449,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434511766l/3094593._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5873,44644,44644,2170403,43,671792806,9780671792800.0,Stephen R. Covey,1991.0,Principle Centered Leadership,Principle-Centered Leadership,en-US,4.07,13079,13377,137,178,513,2699,4750,5237,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429971401l/44644.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5874,2570856,2570856,2581372,15,741444569,9780741444560.0,Larry Correia,2009.0,Monster Hunter International,\"Monster Hunter International (Monster Hunter International, #1)\",eng,4.04,16552,19850,1755,552,935,3343,7258,7762,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506646711l/2570856._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5875,11431896,11431896,16365346,14,62026542,9780062026540.0,Rae Carson,2013.0,The Bitter Kingdom,\"The Bitter Kingdom (Fire and Thorns, #3)\",eng,4.23,24420,26657,2392,305,728,3720,9702,12202,https://images.gr-assets.com/books/1360281470l/11431896.jpg,https://images.gr-assets.com/books/1360281470s/11431896.jpg\n5876,19674,19674,5054715,63,141004924,9780141004920.0,Tom Clancy,2003.0,The Teeth of the Tiger,\"The Teeth of the Tiger (Jack Ryan Universe, #12)\",eng,3.61,15746,17510,500,634,1796,5284,5785,4011,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389990838l/19674.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5877,61958,61958,3419,47,034541957X,9780345419580.0,Anne McCaffrey,1983.0,Moreta: Dragonlady Of Pern,\"Moreta: Dragonlady of Pern (Pern, #7)\",eng,3.97,21117,23083,348,160,1091,5900,8016,7916,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1204647178l/61958.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5878,437885,437885,1385651,8,307960382,9780307960380.0,Diane Muldrow,1992.0,Frosty the Snowman (Little Golden Book),Frosty the Snowman (Frosty the Snowman),,4.34,17540,17593,31,288,607,2664,3397,10637,https://images.gr-assets.com/books/1377635241l/437885.jpg,https://images.gr-assets.com/books/1377635241s/437885.jpg\n5879,102957,102957,99260,12,1563894904,9781563894910.0,\"Garth Ennis, Steve Dillon, Peter Snejbjerg\",1999.0,Preacher: War in the Sun,\"Preacher, Volume 6: War in the Sun\",eng,4.34,16531,16794,206,239,416,1929,5068,9142,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348266389l/102957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5880,40158,40158,1124161,30,60841826,9780060841830.0,Megan Whalen Turner,2000.0,The Queen of Attolia,\"The Queen of Attolia (The Queen's Thief, #2)\",,4.23,23813,25299,2400,287,768,3519,9091,11634,https://images.gr-assets.com/books/1293505506l/40158.jpg,https://images.gr-assets.com/books/1293505506s/40158.jpg\n5881,16842,16842,1802690,63,816638624,9780816638630.0,Christopher Isherwood,1964.0,A Single Man,A Single Man,eng,4.11,14554,17537,1305,298,696,2961,6486,7096,https://images.gr-assets.com/books/1380688373l/16842.jpg,https://images.gr-assets.com/books/1380688373s/16842.jpg\n5882,13529055,13529055,18446960,48,1455502758,9781455502750.0,Christopher Hitchens,2012.0,Mortality,Mortality,eng,4.12,14248,16670,1665,250,545,2700,6595,6580,https://images.gr-assets.com/books/1337177391l/13529055.jpg,https://images.gr-assets.com/books/1337177391s/13529055.jpg\n5883,312050,312050,302969,21,439672465,9780439672470.0,Chris d'Lacey,2003.0,Icefire,\"Icefire (The Last Dragon Chronicles, #2)\",eng,3.9,19795,20348,576,514,1488,4916,6064,7366,https://images.gr-assets.com/books/1362400475l/312050.jpg,https://images.gr-assets.com/books/1362400475s/312050.jpg\n5884,30831912,30831912,51396954,38,,,Neil Gaiman,2017.0,Norse Mythology,Norse Mythology,eng,4.12,22266,39250,5731,179,974,6943,17019,14135,https://images.gr-assets.com/books/1473864212l/30831912.jpg,https://images.gr-assets.com/books/1473864212s/30831912.jpg\n5885,49251,49251,235055,31,684848015,9780684848010.0,Stephen E. Ambrose,1997.0,Citizen Soldiers: The U. S. Army from the Normandy Beaches to the Bulge to the Surrender of Germany,Citizen Soldiers: The U. S. Army from the Normandy Beaches to the Bulge to the Surrender of Germany,,4.19,16322,16977,370,135,391,2651,6789,7011,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428459953l/49251.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5886,107774,107774,1424362,49,671737821,9780671737820.0,Julie Garwood,1987.0,Honor's Splendour,Honor's Splendour,eng,4.22,21926,23453,672,166,620,3863,8103,10701,https://images.gr-assets.com/books/1313525352l/107774.jpg,https://images.gr-assets.com/books/1313525352s/107774.jpg\n5887,10757771,10757771,14816042,19,316175560,9780316175560.0,Kody Keplinger,2011.0,Shut Out,Shut Out,en-US,3.76,23723,24590,1737,614,2068,6906,8112,6890,https://images.gr-assets.com/books/1327918078l/10757771.jpg,https://images.gr-assets.com/books/1327918078s/10757771.jpg\n5889,59813,59813,3037754,61,786286806,9780786286800.0,Nora Roberts,2006.0,Valley of Silence,\"Valley of Silence (Circle Trilogy, #3)\",en-GB,4.2,20800,23434,748,204,799,3999,7468,10964,https://images.gr-assets.com/books/1377646212l/59813.jpg,https://images.gr-assets.com/books/1377646212s/59813.jpg\n5890,207034,207034,969,24,440421241,9780440421240.0,Jeanne DuPrau,2006.0,The Prophet of Yonwood,\"The Prophet of Yonwood (Book of Ember, #3)\",en-US,3.25,22237,23844,2106,1487,4480,8323,5642,3912,https://images.gr-assets.com/books/1320636285l/207034.jpg,https://images.gr-assets.com/books/1320636285s/207034.jpg\n5891,20800147,20800147,40144215,34,178089015X,9781780890160.0,James Patterson,2014.0,Hope to Die,\"Hope to Die (Alex Cross, #22)\",eng,4.14,10005,17375,1498,207,548,2926,6615,7079,https://images.gr-assets.com/books/1414130505l/20800147.jpg,https://images.gr-assets.com/books/1414130505s/20800147.jpg\n5892,6294553,6294553,6478941,24,1439159661,9781439159670.0,\"Kresley Cole, Gena Showalter\",2009.0,Deep Kiss Of Winter ,\"Deep Kiss of Winter (Includes: Immortals After Dark, #8; Alien Huntress, #3.5)\",en-US,4.23,23875,25634,897,137,766,4373,8227,12131,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442426841l/6294553._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5893,15944406,15944406,19206674,34,1416963987,9781416963980.0,\"Holly Black, Eliza Wheeler\",2013.0,Doll Bones,Doll Bones,eng,3.7,17414,19083,3242,665,1482,5436,6764,4736,https://images.gr-assets.com/books/1424981042l/15944406.jpg,https://images.gr-assets.com/books/1424981042s/15944406.jpg\n5894,11057626,11057626,15978848,48,399158022,9780399158020.0,Patricia Cornwell,2011.0,Red Mist,\"Red Mist (Kay Scarpetta, #19)\",eng,3.75,16396,19298,1640,439,1585,5494,6713,5067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203544l/11057626.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5895,11277218,11277218,8586623,42,385344015,9780385344010.0,Alan Bradley,2011.0,I Am Half-Sick of Shadows ,\"I Am Half-Sick of Shadows (Flavia de Luce, #4)\",en-US,4.09,21288,24365,3049,96,474,4509,11340,7946,https://images.gr-assets.com/books/1409945571l/11277218.jpg,https://images.gr-assets.com/books/1409945571s/11277218.jpg\n5896,12881141,12881141,18034302,20,,,Kristen Ashley,2011.0,Wild Man,\"Wild Man (Dream Man, #2)\",en-GB,4.21,32541,35090,1994,315,1073,5264,12880,15558,https://images.gr-assets.com/books/1327919924l/12881141.jpg,https://images.gr-assets.com/books/1327919924s/12881141.jpg\n5897,23129410,23129410,42677282,37,62351427,9780062351420.0,\"Joseph Fink, Jeffrey Cranor\",2015.0,Welcome to Night Vale,Welcome to Night Vale,eng,3.87,17781,20325,3345,728,1485,4276,7096,6740,https://images.gr-assets.com/books/1447774088l/23129410.jpg,https://images.gr-assets.com/books/1447774088s/23129410.jpg\n5899,110385,9408584,846764,46,380815583,9780380815590.0,Julia Quinn,2001.0,An Offer From a Gentleman,\"An Offer From a Gentleman (Bridgertons, #3)\",en-US,4.08,17402,28894,1548,186,948,5967,11162,10631,https://images.gr-assets.com/books/1306208628l/110385.jpg,https://images.gr-assets.com/books/1306208628s/110385.jpg\n5900,18304322,18304322,25795642,41,62327186,9780062327180.0,Julie   Murphy,2015.0,Dumplin',\"Dumplin' (Dumplin', #1)\",eng,3.87,22176,23876,4521,440,1277,5897,9633,6629,https://images.gr-assets.com/books/1424189465l/18304322.jpg,https://images.gr-assets.com/books/1424189465s/18304322.jpg\n5901,23533039,23533039,43134689,24,356502422,9780356502430.0,Ann Leckie,2015.0,Ancillary Mercy,Ancillary Mercy (Imperial Radch #3),eng,4.2,12776,17808,1771,127,448,2512,7399,7322,https://images.gr-assets.com/books/1493642929l/23533039.jpg,https://images.gr-assets.com/books/1493642929s/23533039.jpg\n5902,8038219,8038219,12659235,2,373775814,9780373775810.0,Gena Showalter,2011.0,The Darkest Surrender,The Darkest Surrender  (Lords of the Underworld #8),eng,4.42,24515,25818,1010,125,368,2768,7848,14709,https://images.gr-assets.com/books/1327883317l/8038219.jpg,https://images.gr-assets.com/books/1327883317s/8038219.jpg\n5903,11563,11563,1230142,74,042518160X,9780425181610.0,Stephen King,1981.0,Danse Macabre,Danse Macabre,eng,3.62,18700,20784,571,562,2114,6754,6623,4731,https://images.gr-assets.com/books/1309287093l/11563.jpg,https://images.gr-assets.com/books/1309287093s/11563.jpg\n5904,15762657,16057629,21464225,27,,2940014977680.0,Gina L. Maxwell,2012.0,Seducing Cinderella,\"Seducing Cinderella (Fighting for Love, #1)\",eng,3.94,21617,31426,1651,457,1516,7170,12569,9714,https://images.gr-assets.com/books/1342860599l/15762657.jpg,https://images.gr-assets.com/books/1342860599s/15762657.jpg\n5905,28184,28184,802082,51,1400075718,9781400075710.0,Alexander McCall Smith,2006.0,Blue Shoes and Happiness ,\"Blue Shoes and Happiness (No. 1 Ladies' Detective Agency, #7)\",eng,4.06,20246,21851,984,68,403,4620,9924,6836,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388226464l/28184.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5906,104734,104734,1146102,68,1860499260,9781860499260.0,\"Eve Ensler, Gloria Steinem\",1996.0,The Vagina Monologues,The Vagina Monologues,,3.86,17935,21359,1455,503,1507,5061,7687,6601,https://images.gr-assets.com/books/1327243997l/104734.jpg,https://images.gr-assets.com/books/1327243997s/104734.jpg\n5907,31244,31244,2888469,378,375761144,9780375761140.0,Charles Dickens,1865.0,Our Mutual Friend,Our Mutual Friend,eng,4.07,18599,20659,1102,434,986,3803,6936,8500,https://images.gr-assets.com/books/1403189244l/31244.jpg,https://images.gr-assets.com/books/1403189244s/31244.jpg\n5908,531262,531262,3115332,76,316926051,9780316926060.0,Evelyn Waugh,1934.0,A Handful of Dust,A Handful of Dust,en-US,3.92,17370,19093,907,279,919,4544,7707,5644,https://images.gr-assets.com/books/1344266314l/531262.jpg,https://images.gr-assets.com/books/1344266314s/531262.jpg\n5909,95608,95608,347981,27,842335722,9780842335720.0,Francine Rivers,1999.0,Leota's Garden,Leota's Garden,eng,4.07,15039,15989,657,195,757,3233,5301,6503,https://images.gr-assets.com/books/1406507728l/95608.jpg,https://images.gr-assets.com/books/1406507728s/95608.jpg\n5910,6532496,6532496,6724608,20,385524986,9780385524990.0,Barbara Delinsky,2009.0,Not My Daughter,Not My Daughter,,3.77,17109,17905,1147,353,1263,5065,6715,4509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348278272l/6532496.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5911,50618,50618,1779328,58,312990960,9780312990960.0,Paul Auster,2002.0,The Book of Illusions,The Book of Illusions,eng,3.89,13583,16362,899,202,867,3905,6909,4479,https://images.gr-assets.com/books/1391954093l/50618.jpg,https://images.gr-assets.com/books/1391954093s/50618.jpg\n5912,112756,112756,2746770,39,440242177,9780440242180.0,Karen Marie Moning,1999.0,To Tame a Highland Warrior,\"To Tame a Highland Warrior (Highlander, #2)\",eng,4.14,24710,27368,1120,189,985,5043,9766,11385,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1201362661l/112756.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5913,171020,171020,165142,19,316058254,9780316058250.0,Wendy Mass,2005.0,A Mango-Shaped Space,A Mango-Shaped Space,eng,4.22,20661,21859,2341,199,677,3404,7449,10130,https://images.gr-assets.com/books/1326056834l/171020.jpg,https://images.gr-assets.com/books/1326056834s/171020.jpg\n5914,41950,41950,1004492,64,752849522,9780752849520.0,Maeve Binchy,2002.0,Quentins,Quentins,,3.88,18150,19579,728,156,836,5405,8045,5137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169806796l/41950._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5915,304,304,313957,243,037576013X,9780375760140.0,\"George Eliot, Edmund White\",1876.0,Daniel Deronda,Daniel Deronda,eng,3.82,17723,19145,728,543,1361,4705,6835,5701,https://images.gr-assets.com/books/1320432000l/304.jpg,https://images.gr-assets.com/books/1320432000s/304.jpg\n5917,7203690,7203690,7905321,35,373774524,9780373774520.0,Susan Mallery,2010.0,Chasing Perfect,\"Chasing Perfect (Fool's Gold, #1)\",eng,3.89,18437,19533,740,545,1099,4621,6977,6291,https://images.gr-assets.com/books/1278170007l/7203690.jpg,https://images.gr-assets.com/books/1278170007s/7203690.jpg\n5918,97632,97632,908288,44,1401360238,9781401360240.0,Plum Sykes,2006.0,The Debutante Divorcée,The Debutante Divorcee,en-US,3.46,15030,15548,435,760,2092,5245,4083,3368,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347287569l/97632.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5920,39028,39028,1383312,69,446580287,9780446580280.0,\"Douglas Preston, Lincoln Child\",2007.0,\"The Wheel of Darkness (Pendergast, #8)\",\"The Wheel of Darkness (Pendergast, #8)\",en-US,3.92,18413,20399,1011,189,1054,5029,8047,6080,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442764007l/39028._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5921,25733990,25733990,42721200,41,1101886692,9781101886690.0,Sylvain Neuvel,2016.0,Sleeping Giants,\"Sleeping Giants (Themis Files, #1)\",eng,3.84,19371,24115,4369,397,1445,5873,10371,6029,https://images.gr-assets.com/books/1459785141l/25733990.jpg,https://images.gr-assets.com/books/1459785141s/25733990.jpg\n5922,15795628,15795628,21517875,16,1609074602,9781609074610.0,Julianne Donaldson,2013.0,Blackmoore,Blackmoore,eng,4.17,17497,18619,3667,189,589,2885,7166,7790,https://images.gr-assets.com/books/1366846456l/15795628.jpg,https://images.gr-assets.com/books/1366846456s/15795628.jpg\n5923,47720,47720,460092,22,140120113X,9781401201140.0,\"Neil Gaiman, Barron Storey, Bill Sienkiewicz, Glenn Fabry, Dave McKean, P. Craig Russell, Milo Manara, Miguelanxo Prado, Frank Quitely, Todd Klein\",2003.0,The Sandman: Endless Nights,The Sandman: Endless Nights,eng,4.34,20416,21560,609,44,321,2890,7372,10933,https://images.gr-assets.com/books/1327948224l/47720.jpg,https://images.gr-assets.com/books/1327948224s/47720.jpg\n5924,202292,202292,1924825,33,99435136,9780099435140.0,Olivia Goldsmith,1992.0,The First Wives Club,The First Wives Club,eng,3.87,17219,17754,256,325,1145,4869,5603,5812,https://images.gr-assets.com/books/1405833638l/202292.jpg,https://images.gr-assets.com/books/1405833638s/202292.jpg\n5925,250729,250729,3050927,55,755308441,9780755308450.0,Maggie O'Farrell,2006.0,The Vanishing Act of Esme Lennox,The Vanishing Act of Esme Lennox,eng,3.82,16675,20131,3061,303,1182,5192,8710,4744,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348843114l/250729.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5926,550720,25584847,134485,66,1594482306,9781594482300.0,Sarah Waters,2006.0,The Night Watch,The Night Watch,en-US,3.67,13798,18625,1544,498,1636,5376,7102,4013,https://images.gr-assets.com/books/1394331077l/550720.jpg,https://images.gr-assets.com/books/1394331077s/550720.jpg\n5927,21853645,21853645,41125534,34,1250034515,9781250034520.0,Jeffrey Archer,2015.0,Mightier Than the Sword,\"Mightier Than the Sword (The Clifton Chronicles, #5)\",eng,4.09,10257,16529,1378,167,480,2933,7082,5867,https://images.gr-assets.com/books/1407772906l/21853645.jpg,https://images.gr-assets.com/books/1407772906s/21853645.jpg\n5928,31331,31331,2926090,49,99460173,9780099460180.0,Anne Rice,2003.0,Blood Canticle,\"Blood Canticle (The Vampire Chronicles, #10)\",en-GB,3.71,17359,19549,437,695,1790,5467,6164,5433,https://images.gr-assets.com/books/1327963715l/31331.jpg,https://images.gr-assets.com/books/1327963715s/31331.jpg\n5929,13060,13060,1096451,34,307262995,9780307263000.0,Carl Hiaasen,2006.0,Nature Girl,Nature Girl,eng,3.61,17216,18373,1565,330,1452,6355,7118,3118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391183537l/13060.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5930,11553,11553,16685995,36,671743058,9780671743060.0,Robert McCammon,1991.0,Boy's Life,Boy's Life,eng,4.32,15752,18250,1818,175,490,2260,5662,9663,https://images.gr-assets.com/books/1314302694l/11553.jpg,https://images.gr-assets.com/books/1314302694s/11553.jpg\n5931,20563,20563,21503633,390,375759018,9780375759020.0,\"George Eliot, Joanna Trollope, Hugh Osborne\",1859.0,Adam Bede,Adam Bede,,3.77,17777,19423,659,650,1475,4959,6999,5340,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167298252l/20563.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5932,16235,16235,2483404,38,038548951X,9780385489520.0,Chitra Banerjee Divakaruni,1997.0,Sister of My Heart,Sister of My Heart,eng,3.97,14434,15352,1261,154,606,3401,6540,4651,https://images.gr-assets.com/books/1403188554l/16235.jpg,https://images.gr-assets.com/books/1403188554s/16235.jpg\n5933,3181564,3181564,3214322,5,312427808,9780312427800.0,\"Yōko Ogawa, Stephen Snyder\",2003.0,博士の愛した数式 ,The Housekeeper and the Professor,eng,3.94,16865,19780,3382,173,895,4520,8562,5630,https://images.gr-assets.com/books/1344313042l/3181564.jpg,https://images.gr-assets.com/books/1344313042s/3181564.jpg\n5934,102525,102525,98851,56,044900063X,9780449000630.0,Sue Grafton,1991.0,H is for Homicide,\"H is for Homicide (Kinsey Millhone, #8)\",eng,3.89,21635,23987,598,94,700,7101,10009,6083,https://images.gr-assets.com/books/1315138195l/102525.jpg,https://images.gr-assets.com/books/1315138195s/102525.jpg\n5935,221059,221059,820439,29,1596911050,9781596911060.0,Douglas Coupland,2006.0,JPod,JPod,en-US,3.7,13347,15307,923,421,1326,4202,5772,3586,https://images.gr-assets.com/books/1316729451l/221059.jpg,https://images.gr-assets.com/books/1316729451s/221059.jpg\n5936,32437,32437,1125107,49,553584480,9780553584490.0,Dean Koontz,2003.0,The Face,The Face,eng,3.69,17267,18266,586,330,1514,5945,6246,4231,https://images.gr-assets.com/books/1370732538l/32437.jpg,https://images.gr-assets.com/books/1370732538s/32437.jpg\n5937,2714607,2714607,2740153,55,1594201927,9781594201930.0,Niall Ferguson,2007.0,The Ascent of Money: A Financial History of the World,The Ascent of Money: A Financial History of the World,en-US,3.88,15286,16909,1115,293,923,4040,6934,4719,https://images.gr-assets.com/books/1297236908l/2714607.jpg,https://images.gr-assets.com/books/1297236908s/2714607.jpg\n5938,20697471,20697471,40017077,12,804140413,9780804140420.0,Jim Gaffigan,2014.0,Food: A Love Story,Food: A Love Story,eng,3.69,16304,17998,2636,430,1425,5561,6520,4062,https://images.gr-assets.com/books/1419183381l/20697471.jpg,https://images.gr-assets.com/books/1419183381s/20697471.jpg\n5939,18079527,18079527,25386818,30,670012092,9780670012090.0,Laurie Halse Anderson,2014.0,The Impossible Knife of Memory,The Impossible Knife of Memory,eng,3.93,20992,22227,3246,416,1200,4894,8786,6931,https://images.gr-assets.com/books/1405786728l/18079527.jpg,https://images.gr-assets.com/books/1405786728s/18079527.jpg\n5940,19164,19164,2377265,385,195087453,9780195087450.0,\"Dante Alighieri, Robert M. Durling\",1320.0,Purgatorio,\"Purgatorio (The Divine Comedy, #2)\",ita,4.01,13740,17533,511,210,1038,3980,5436,6869,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348687775l/19164.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5941,7277715,7277715,8444052,46,446564087,9780446564080.0,David Baldacci,2010.0,Deliver Us From Evil,\"Deliver Us from Evil (A. Shaw, #2)\",en-US,3.98,15947,18990,1128,251,781,4150,7724,6084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442260874l/7277715._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5942,13586743,13586743,19174091,28,525952365,9780525952370.0,Jonathan Tropper,2009.0,One Last Thing Before I Go,One Last Thing Before I Go,,3.75,13763,15950,1931,188,922,4655,7126,3059,https://images.gr-assets.com/books/1356593893l/13586743.jpg,https://images.gr-assets.com/books/1356593893s/13586743.jpg\n5943,6609549,6609549,6803515,10,1423116186,9781423116190.0,\"Julie Anne Peters, C.J. Bott\",2009.0,\"By The Time You Read This, I'll Be Dead\",\"By the Time You Read This, I'll Be Dead\",,3.89,18722,19562,1723,552,1532,4554,5877,7047,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433120290l/6609549._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5945,21340,21340,22531,41,739317148,9780739317140.0,\"Dean Koontz, Ed Gorman, John Bedford Lloyd\",2005.0,Dean Koontz's Frankenstein: City of Night ,\"City of Night (Dean Koontz's Frankenstein, #2)\",,3.97,15838,18580,732,155,849,4348,7307,5921,https://images.gr-assets.com/books/1320441939l/21340.jpg,https://images.gr-assets.com/books/1320441939s/21340.jpg\n5946,215540,215540,738489,28,1416914234,9781416914240.0,D.J. MacHale,2005.0,The Quillan Games,\"The Quillan Games (Pendragon, #7)\",eng,4.19,18296,18876,329,170,627,3294,6225,8560,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197597l/215540.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5947,6820,6820,1439,41,812966929,9780812966920.0,David Mitchell,2001.0,number9dream,number9dream,,3.92,13726,16451,1285,244,810,3617,7196,4584,https://images.gr-assets.com/books/1320540682l/6820.jpg,https://images.gr-assets.com/books/1320540682s/6820.jpg\n5948,3384,3384,81401,33,60987324,9780060987330.0,Douglas Coupland,1998.0,Girlfriend in a Coma,Girlfriend in a Coma,eng,3.61,14576,16315,733,480,1681,5070,5655,3429,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921543l/3384.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5949,92227,92227,9813320,26,613096487,9780613096480.0,Stephen King,1996.0,\"The Green Mile, Part 1: The Two Dead Girls\",\"The Green Mile, Part 1: The Two Dead Girls\",eng,4.49,21917,22949,278,158,346,2156,5708,14581,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1228499552l/92227.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5950,16200,16200,2454636,21,385722435,9780385722440.0,Mark Dunn,2001.0,Ella Minnow Pea: A Novel in Letters,Ella Minnow Pea: A Novel in Letters,eng,3.84,19819,21735,4157,415,1433,5335,8613,5939,https://images.gr-assets.com/books/1479697890l/16200.jpg,https://images.gr-assets.com/books/1479697890s/16200.jpg\n5951,938544,938544,3898730,27,765310082,9780765310090.0,Steven Erikson,2008.0,Toll the Hounds,\"Toll the Hounds (The Malazan Book of the Fallen, #8)\",en-US,4.33,15942,18457,540,130,396,2221,6261,9449,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442456749l/938544._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5952,1430213,1430213,2388035,61,593057775,9780593057770.0,Tess Gerritsen,2007.0,The Bone Garden,The Bone Garden ,eng,4.02,16883,20042,1708,174,758,4292,8101,6717,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1183520323l/1430213._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5953,994156,994156,1490823,11,979962570X,9789799625700.0,Dee Lestari,2001.0,\"Supernova: Ksatria, Puteri, dan Bintang Jatuh\",\"Supernova: Ksatria, Puteri, dan Bintang Jatuh\",ind,3.83,10344,11445,1190,296,824,2927,3931,3467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1249473779l/994156.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5954,23019294,23019294,42563937,23,62363239,9780062363240.0,Paul Tremblay,2015.0,A Head Full of Ghosts,A Head Full of Ghosts,eng,3.82,14101,17843,2933,368,1140,4479,7161,4695,https://images.gr-assets.com/books/1415678368l/23019294.jpg,https://images.gr-assets.com/books/1415678368s/23019294.jpg\n5955,22889767,22889767,40771666,37,385348614,9780385348610.0,Gretchen Rubin,2015.0,Better Than Before: Mastering the Habits of Our Everyday Lives,Better Than Before: Mastering the Habits of Our Everyday Lives,en-GB,3.81,16550,18727,2163,509,1324,4572,7048,5274,https://images.gr-assets.com/books/1415588203l/22889767.jpg,https://images.gr-assets.com/books/1415588203s/22889767.jpg\n5956,18210706,16078584,21875874,21,756409608,9780756409610.0,Ben Aaronovitch,2013.0,Broken Homes,\"Broken Homes (Peter Grant, #4)\",eng,4.16,10958,20466,1716,42,372,3087,9696,7269,https://images.gr-assets.com/books/1379380185l/18210706.jpg,https://images.gr-assets.com/books/1379380185s/18210706.jpg\n5957,169959,169959,43289,34,553563734,9780553563730.0,Raymond E. Feist,1992.0,The King's Buccaneer,\"The King's Buccaneer (Krondor's Sons, #2)\",en-US,3.99,17084,18177,165,80,665,4471,7167,5794,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389988925l/169959.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5958,16248114,16248114,16406269,75,62105620,9780062105620.0,\"Isabel Allende, Anne McLean\",2011.0,El cuaderno de Maya,Maya's Notebook,eng,3.8,12529,17540,2095,262,1043,4678,7452,4105,https://images.gr-assets.com/books/1356073895l/16248114.jpg,https://images.gr-assets.com/books/1356073895s/16248114.jpg\n5959,6609764,6609764,6803731,17,60760885,9780060760880.0,Rita Williams-Garcia,2010.0,One Crazy Summer,\"One Crazy Summer (Gaither Sisters, #1)\",eng,3.95,18913,20219,2862,423,1039,4319,7762,6676,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549051202l/6609764._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5960,7011403,7011403,21457174,26,61931411,9780061931410.0,Robin Hobb,2010.0,Dragon Haven,\"Dragon Haven (Rain Wild Chronicles, #2)\",en-US,4.06,15807,19418,818,94,647,3866,8148,6663,https://images.gr-assets.com/books/1263769185l/7011403.jpg,https://images.gr-assets.com/books/1263769185s/7011403.jpg\n5961,18035,9850375,2168123,207,140690483X,9781406904830.0,P.G. Wodehouse,1934.0,\"Right Ho, Jeeves\",\"Right Ho, Jeeves (Jeeves, #6)\",eng,4.31,8234,18665,1147,80,245,2266,7274,8800,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166855734l/18035._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5962,3359940,3359940,3399145,34,316113670,9780316113670.0,\"Pseudonymous Bosch, Gilbert Ford\",2008.0,\"If You're Reading This, It's Too Late\",\"If You're Reading This, It's Too Late (Secret, #2)\",en-US,4.23,18310,19942,878,229,611,3093,6480,9529,https://images.gr-assets.com/books/1344268358l/3359940.jpg,https://images.gr-assets.com/books/1344268358s/3359940.jpg\n5963,296942,296942,1462397,35,60744545,9780060744540.0,Erin Hunter,2005.0,Moonrise,\"Moonrise (Warriors: The New Prophecy, #2)\",en-US,4.31,21311,22182,532,208,679,3325,5813,12157,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399845893l/296942.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5964,1316382,1316382,2054515,17,1590388127,9781590388130.0,Jason F. Wright,2007.0,The Wednesday Letters,The Wednesday Letters,en-US,3.61,16776,17972,3640,584,1912,5540,5913,4023,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348795996l/1316382.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5965,6371117,6371117,6558709,28,1595142525,9781595142530.0,\"Lili St. Crow, Lilith Saintcrow\",2009.0,Betrayals,\"Betrayals (Strange Angels, #2)\",en-US,4.08,24309,24859,805,443,1217,4834,7822,10543,https://images.gr-assets.com/books/1331244872l/6371117.jpg,https://images.gr-assets.com/books/1331244872s/6371117.jpg\n5966,13134,13134,1814838,1,316014508,9780316014500.0,\"James Patterson, Howard Roughan\",2007.0,You've Been Warned,You've Been Warned,eng,3.52,16311,17796,1583,1059,2148,5127,5336,4126,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441496500l/13134._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5967,444347,444347,3280795,49,439372941,9780439372950.0,\"Blue Balliett, Brett Helquist\",2004.0,Chasing Vermeer,\"Chasing Vermeer (Chasing Vermeer, #1)\",en-US,3.71,22167,23528,2032,772,2147,6419,7958,6232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442640375l/444347._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5968,53834,53834,1370865,39,031021923X,9780310219230.0,Philip Yancey,1995.0,The Jesus I Never Knew,The Jesus I Never Knew,en-US,4.18,14955,15917,488,196,514,2531,5597,7079,https://images.gr-assets.com/books/1328995519l/53834.jpg,https://images.gr-assets.com/books/1328995519s/53834.jpg\n5969,80630,80630,1383713,56,743454162,9780743454160.0,Greg Iles,2005.0,Turning Angel,Turning Angel,eng,4.11,15669,17992,1076,169,538,3024,7618,6643,https://images.gr-assets.com/books/1327877096l/80630.jpg,https://images.gr-assets.com/books/1327877096s/80630.jpg\n5970,7743783,7743783,10561678,19,,,Alice Clayton,2010.0,The Unidentified Redhead,\"The Unidentified Redhead (Redhead, #1)\",eng,4.04,24859,26971,2194,644,1448,4685,9582,10612,https://images.gr-assets.com/books/1355688970l/7743783.jpg,https://images.gr-assets.com/books/1355688970s/7743783.jpg\n5972,20413,20413,3077944,424,689823827,9780689823820.0,\"Robert Louis Stevenson, Tasha Tudor\",1885.0,A Child's Garden of Verses,A Child's Garden of Verses,eng,4.3,20354,21600,454,211,583,3295,5958,11553,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401644174l/20413.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5973,9914,9914,1308950,21,330339184,9780330339190.0,Bret Easton Ellis,1994.0,The Informers,The Informers,en-GB,3.39,12898,14674,477,596,2100,5342,4324,2312,https://images.gr-assets.com/books/1374684746l/9914.jpg,https://images.gr-assets.com/books/1374684746s/9914.jpg\n5974,22054340,22054340,41381963,10,62351206,9780062351200.0,Kiera Cass,2014.0,The Queen,\"The Queen (The Selection, #0.4)\",eng,3.93,22362,24726,1858,513,1661,5989,7489,9074,https://images.gr-assets.com/books/1399581012l/22054340.jpg,https://images.gr-assets.com/books/1399581012s/22054340.jpg\n5975,7202829,7202829,7897971,40,61784788,9780061784780.0,James Rollins,2010.0,The Devil Colony,\"The Devil Colony (Sigma Force, #7)\",eng,4.17,16101,18589,1026,120,454,3020,7510,7485,https://images.gr-assets.com/books/1264522557l/7202829.jpg,https://images.gr-assets.com/books/1264522557s/7202829.jpg\n5976,7469664,7469664,9554419,24,1607062542,9781607062550.0,\"Robert Kirkman, Charlie Adlard\",2010.0,The Walking Dead Volume 12,\"The Walking Dead, Vol. 12: Life Among Them\",eng,4.34,16558,17155,472,86,225,2199,5906,8739,https://images.gr-assets.com/books/1279748761l/7469664.jpg,https://images.gr-assets.com/books/1279748761s/7469664.jpg\n5977,20587777,20587777,36430665,20,307700313,9780307700320.0,Jane Smiley,2014.0,Some Luck,\"Some Luck (Last Hundred Years: A Family Saga, #1)\",eng,3.61,12644,15268,2319,592,1467,4222,6013,2974,https://images.gr-assets.com/books/1413128987l/20587777.jpg,https://images.gr-assets.com/books/1413128987s/20587777.jpg\n5978,72657,72657,915602,59,826412769,9780826412770.0,\"Paulo Freire, Myra Bergman Ramos, Donaldo Macedo, Richard Shaull\",1968.0,Pedagogia do Oprimido,Pedagogy of the Oppressed,eng,4.25,16401,17491,939,266,630,2446,5324,8825,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180018l/72657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5979,17262540,17262540,23859346,7,1594746370,9781594746380.0,Ian Doescher,2013.0,\"William Shakespeare's Star Wars: Verily, a New Hope\",\"William Shakespeare's Star Wars: Verily, A New Hope (William Shakespeare's Star Wars, #4)\",eng,3.94,14806,15312,1966,857,765,2672,5202,5816,https://images.gr-assets.com/books/1411696453l/17262540.jpg,https://images.gr-assets.com/books/1411696453s/17262540.jpg\n5980,26085,26085,530148,19,1401204589,9781401204590.0,\"Brad Meltzer, Rags Morales, Michael Bair, Joss Whedon\",2004.0,Identity Crisis,Identity Crisis,eng,4.03,16744,17429,588,635,1018,2943,5442,7391,https://images.gr-assets.com/books/1327948044l/26085.jpg,https://images.gr-assets.com/books/1327948044s/26085.jpg\n5981,10866624,10866624,15781826,18,375870415,9780375870420.0,Sarah Rees Brennan,2012.0,Unspoken,\"Unspoken (The Lynburn Legacy, #1)\",eng,3.85,22927,24419,3363,779,1738,5487,8716,7699,https://images.gr-assets.com/books/1333397426l/10866624.jpg,https://images.gr-assets.com/books/1333397426s/10866624.jpg\n5982,112520,112520,1907786,56,2290032042,9782290032050.0,\"Arthur C. Clarke, Gentry Lee\",1989.0,Rama II,\"Rama II (Rama, #2)\",fre,3.66,15350,17781,475,507,1612,5312,6335,4015,https://images.gr-assets.com/books/1375814981l/112520.jpg,https://images.gr-assets.com/books/1375814981s/112520.jpg\n5983,28859,28859,2338253,119,186046095X,9781860460950.0,José Saramago,1991.0,O Evangelho segundo Jesus Cristo,The Gospel According to Jesus Christ,eng,4.26,11301,16608,953,190,489,2289,5408,8232,https://images.gr-assets.com/books/1328196306l/28859.jpg,https://images.gr-assets.com/books/1328196306s/28859.jpg\n5984,13477819,13477819,19008874,44,316123080,9780316123080.0,\"Lemony Snicket, Seth\",2012.0,\"\"\"Who Could That Be at This Hour?\"\"\",\"Who Could That Be at This Hour? (All the Wrong Questions, #1)\",en-US,3.83,17497,18961,2123,527,1253,4851,6694,5636,https://images.gr-assets.com/books/1333060600l/13477819.jpg,https://images.gr-assets.com/books/1333060600s/13477819.jpg\n5985,11765920,11765920,13535869,19,61797057,9780061797060.0,Kelley Armstrong,2012.0,The Calling,\"The Calling (Darkness Rising, #2)\",eng,4.1,25930,27424,1731,162,968,5531,9980,10783,https://images.gr-assets.com/books/1478986621l/11765920.jpg,https://images.gr-assets.com/books/1478986621s/11765920.jpg\n5986,10450750,10450750,17450242,5,159582748X,9781595827490.0,\"Bryan Konietzko, Michael Dante DiMartino, Aaron Ehasz, Alison Wilgus, Amy Kim Ganter, Brian Ralph, Corey Lewis, Dave Roman, Elsa Garagarza, Ethan Spaulding, Frank Pittarese, Gurihiru, J. Torres, Joaquim Dos Santos, Johane Matte, John O'Bryan, Joshua Hamilton, Justin Ridge, Kaite Mattila, May Chan, Rawles Marie Lumumba, Reagan Lodge, Tim Hedrick, Tom McWeeney\",2011.0,Avatar The Last Airbender: The Lost Adventures,Avatar: The Last Airbender: The Lost Adventures,en-US,4.41,14288,14401,302,128,331,1835,3368,8739,https://images.gr-assets.com/books/1297596036l/10450750.jpg,https://images.gr-assets.com/books/1297596036s/10450750.jpg\n5988,7911,7911,1167387,175,1416916172,9781416916180.0,Margaret Sidney,1881.0,Five Little Peppers and How They Grew,Five Little Peppers and How They Grew,eng,4.03,19780,20644,427,380,906,4548,6700,8110,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924472l/7911.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5989,3697927,3697927,3741438,10,1599903229,9781599903220.0,Jessica Day George,2009.0,Princess of the Midnight Ball,\"Princess of the Midnight Ball (The Princesses of Westfalin Trilogy, #1)\",eng,3.92,26804,28183,3319,362,1485,7086,10463,8787,https://images.gr-assets.com/books/1312063284l/3697927.jpg,https://images.gr-assets.com/books/1312063284s/3697927.jpg\n5990,8239301,8239301,13086736,11,,9789770928290.0,\"Radwa Ashour, رضوى عاشور\",2010.0,الطنطورية ,الطنطورية,ara,4.32,13931,15595,3008,307,386,1627,4973,8302,https://images.gr-assets.com/books/1314481218l/8239301.jpg,https://images.gr-assets.com/books/1314481218s/8239301.jpg\n5991,334818,334818,929936,31,140505393,9780140505400.0,Barbara Cooney,1981.0,Miss Rumphius,Miss Rumphius,eng,4.45,20403,20913,745,190,431,2200,5018,13074,https://images.gr-assets.com/books/1281468926l/334818.jpg,https://images.gr-assets.com/books/1281468926s/334818.jpg\n5992,762563,762563,81719,30,20306652,9780020306660.0,Jim Bouton,1970.0,Ball Four,Ball Four,eng,3.99,12805,13853,573,445,692,2627,4926,5163,https://images.gr-assets.com/books/1391414699l/762563.jpg,https://images.gr-assets.com/books/1391414699s/762563.jpg\n5993,21329,21329,1138856,17,140120256X,9781401202570.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, James Jean\",2004.0,\"Fables, Volume 3: Storybook Love\",\"Fables, Vol. 3: Storybook Love\",eng,4.15,24730,25171,791,282,688,4192,9862,10147,https://images.gr-assets.com/books/1363682851l/21329.jpg,https://images.gr-assets.com/books/1363682851s/21329.jpg\n5994,56899,56899,2199572,51,9580469717,9789580469710.0,Carlos Fuentes,1962.0,Aura,Aura,eng,3.8,11788,14991,1032,351,1152,3966,5269,4253,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389917952l/56899.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5995,31312,31312,31603,41,006074104X,9780060741040.0,Harriet Lerner,1985.0,The Dance of Anger: A Woman's Guide to Changing the Patterns of Intimate Relationships,The Dance Of Anger: A Woman's Guide to Changing the Patterns of Intimate Relationships,en-US,4.02,14640,15280,481,261,729,3308,5173,5809,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388261597l/31312.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n5997,7129588,7129588,7039736,14,1439178232,9781439178230.0,Jennifer Echols,2010.0,Forget You,Forget You,eng,3.79,24334,24795,1311,782,2202,6346,7631,7834,https://images.gr-assets.com/books/1311064362l/7129588.jpg,https://images.gr-assets.com/books/1311064362s/7129588.jpg\n5999,21796,21796,1098285,28,330247042,9780330247050.0,William Goldman,1974.0,Marathon Man,Marathon Man,eng,4.11,15659,16439,323,135,454,3075,6546,6229,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167323623l/21796._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6000,3870943,3870943,3916135,16,1607515423,9781607515420.0,Julie Klassen,2008.0,The Apothecary's Daughter,The Apothecary's Daughter,eng,3.79,15782,19946,1916,352,1219,5660,7743,4972,https://images.gr-assets.com/books/1325356997l/3870943.jpg,https://images.gr-assets.com/books/1325356997s/3870943.jpg\n6001,16047244,16047244,21826887,10,,,Michelle A. Valentine,2012.0,Rock the Heart,\"Rock the Heart (Black Falcon, #1)\",eng,4.01,28776,29249,1464,477,1369,5757,11321,10325,https://images.gr-assets.com/books/1403549370l/16047244.jpg,https://images.gr-assets.com/books/1403549370s/16047244.jpg\n6002,76659,76659,2436148,19,345313151,9780345313160.0,Piers Anthony,1984.0,Bearing an Hourglass,\"Bearing an Hourglass (Incarnations of Immortality, #2)\",en-US,3.94,18817,19335,407,180,1007,4748,7226,6174,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923153l/76659.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6003,65217,65217,63267,15,698113578,9780698113570.0,\"Claire Huchet Bishop, Kurt Wiese\",1938.0,The Five Chinese Brothers,The Five Chinese Brothers,eng,4.18,20189,20504,334,257,713,3875,5820,9839,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432233658l/65217._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6004,9712492,9712492,14601010,18,615417175,9780615417170.0,Jamie McGuire,2010.0,Providence,\"Providence (Providence, #1)\",eng,4.0,23568,25209,1786,717,1428,4663,8701,9700,https://images.gr-assets.com/books/1358276101l/9712492.jpg,https://images.gr-assets.com/books/1358276101s/9712492.jpg\n6005,15447,15447,2553145,28,345418506,9780345418500.0,Piers Anthony,1979.0,\"The Source of Magic (Xanth, #2)\",\"The Source of Magic (Xanth, #2)\",,3.86,19149,20720,321,154,1060,6002,7780,5724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544290l/15447.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6006,94804,94804,1231869,37,64440583,9780064440580.0,Arnold Lobel,1979.0,Days with Frog and Toad,\"Days with Frog and Toad (Frog and Toad, #4)\",eng,4.24,15912,16446,218,226,602,2734,4341,8543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389759833l/94804.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6007,40470,40470,3049974,53,679747192,9780679747190.0,Cormac McCarthy,1996.0,Cities of the Plain ,\"Cities of the Plain (The Border Trilogy, #3)\",,4.07,14638,15701,898,71,460,2986,6938,5246,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581254344l/40470.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6008,9305362,9305362,14188292,29,,,C.S. Pacat,2015.0,Captive Prince,\"Captive Prince (Captive Prince, #1)\",eng,3.98,23580,28810,3900,967,1584,5440,9802,11017,https://images.gr-assets.com/books/1356028113l/9305362.jpg,https://images.gr-assets.com/books/1356028113s/9305362.jpg\n6009,40159,40159,847545,23,006083577X,9780060835770.0,Megan Whalen Turner,2006.0,The King of Attolia,\"The King of Attolia (The Queen's Thief, #3)\",eng,4.37,22724,24349,2029,237,537,2663,7505,13407,https://images.gr-assets.com/books/1293505327l/40159.jpg,https://images.gr-assets.com/books/1293505327s/40159.jpg\n6010,953260,953260,2907344,31,786854448,9780786854450.0,\"Ridley Pearson, David Frankland\",2004.0,The Kingdom Keepers,\"Disney after Dark (Kingdom Keepers, #1)\",,3.91,18193,20906,2224,498,1479,4919,6585,7425,https://images.gr-assets.com/books/1275199267l/953260.jpg,https://images.gr-assets.com/books/1275199267s/953260.jpg\n6011,5548,5548,54737,53,393320928,9780393320920.0,Richard Feynman,1988.0,What Do You Care What Other People Think? Further Adventures of a Curious Character,What Do You Care What Other People Think?,eng,4.28,14948,16457,638,124,301,2177,6130,7725,https://images.gr-assets.com/books/1297913068l/5548.jpg,https://images.gr-assets.com/books/1297913068s/5548.jpg\n6012,7146335,7146335,7410973,34,241141826,9780241141820.0,Paul Murray,2010.0,Skippy Dies,Skippy Dies,eng,3.72,14619,17350,2246,758,1557,4106,6349,4580,https://images.gr-assets.com/books/1301970939l/7146335.jpg,https://images.gr-assets.com/books/1301970939s/7146335.jpg\n6013,77735,77735,1755248,31,671721720,9780671721720.0,David Weber,1993.0,The Honor of the Queen,\"The Honor of the Queen (Honor Harrington, #2)\",,4.21,17274,20256,525,115,390,3100,8232,8419,https://images.gr-assets.com/books/1304286399l/77735.jpg,https://images.gr-assets.com/books/1304286399s/77735.jpg\n6014,805023,805023,2702382,46,671729462,9780671729460.0,V.C. Andrews,1982.0,My Sweet Audrina,\"My Sweet Audrina (Audrina, #1)\",,3.92,18549,19602,844,434,1356,4769,5906,7137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178550284l/805023.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6015,22027459,25843453,41346452,25,,,A.G. Riddle,2014.0,The Atlantis World,\"The Atlantis World (The Origin Mystery, #3)\",eng,3.93,9240,16826,792,200,886,4002,6609,5129,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1398907595l/22027459.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6016,8635145,8635145,13505950,30,,9780734411850.0,Jessica Shirvington,2010.0,Embrace,\"Embrace (The Violet Eden Chapters, #1)\",eng,4.01,19343,22870,1929,801,1422,4067,7069,9511,https://images.gr-assets.com/books/1284130161l/8635145.jpg,https://images.gr-assets.com/books/1284130161s/8635145.jpg\n6017,192892,192892,520581,61,61043583,9780061043580.0,Dorothy L. Sayers,1927.0,Unnatural Death,\"Unnatural Death (Lord Peter Wimsey, #3)\",eng,4.11,17742,18764,549,172,504,3705,7132,7251,https://images.gr-assets.com/books/1316244142l/192892.jpg,https://images.gr-assets.com/books/1316244142s/192892.jpg\n6018,92250,92250,576784,8,1559360615,9781559360620.0,Tony Kushner,1992.0,Angels in America: A Gay Fantasia on National Themes: Millennium Approaches (Part One),\"Angels in America, Part One: Millennium Approaches\",en-US,4.27,16814,16949,275,331,612,2188,4892,8926,https://images.gr-assets.com/books/1354209439l/92250.jpg,https://images.gr-assets.com/books/1354209439s/92250.jpg\n6019,1617875,1617875,701268,39,385341326,9780385341320.0,Dorothy Koomson,2006.0,My Best Friend's Girl,My Best Friend's Girl,,4.02,14811,17072,999,284,801,3520,6114,6353,https://images.gr-assets.com/books/1363730538l/1617875.jpg,https://images.gr-assets.com/books/1363730538s/1617875.jpg\n6020,330721,330721,679378,40,038077352X,9780380773530.0,Lisa Kleypas,1994.0,Dreaming of You ,\"Dreaming of You (The Gamblers, #2)\",en-US,4.22,24790,26389,1161,178,765,4268,9165,12013,https://images.gr-assets.com/books/1443223862l/330721.jpg,https://images.gr-assets.com/books/1443223862s/330721.jpg\n6021,8725,8725,77870,24,375758739,9780375758740.0,Ruth Reichl,2001.0,Comfort Me with Apples: More Adventures at the Table,Comfort Me with Apples: More Adventures at the Table,eng,4.02,16021,16748,936,145,600,3525,7017,5461,https://images.gr-assets.com/books/1339885200l/8725.jpg,https://images.gr-assets.com/books/1339885200s/8725.jpg\n6022,138134,138134,1701632,40,679601082,9780679601080.0,John Keats,1820.0,John Keats : The Complete Poems,The Complete Poems,eng,4.24,17101,17881,191,225,581,2700,5621,8754,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347472201l/138134.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6023,129621,129621,1395013,42,671011332,9780671011340.0,Judith McNaught,1989.0,Almost Heaven,\"Almost Heaven (Sequels, #3)\",eng,4.33,19921,21414,657,105,458,2879,6739,11233,https://images.gr-assets.com/books/1351327172l/129621.jpg,https://images.gr-assets.com/books/1351327172s/129621.jpg\n6024,823411,823411,809209,30,143017861,9780143017870.0,Joseph Boyden,2005.0,Three Day Road,Three Day Road,eng,4.31,14563,16318,1384,157,366,1854,5823,8118,https://images.gr-assets.com/books/1327905456l/823411.jpg,https://images.gr-assets.com/books/1327905456s/823411.jpg\n6025,30005,30005,2193257,85,752852612,9780752852610.0,Dashiell Hammett,1929.0,Red Harvest,Red Harvest,eng,4.0,15636,18109,1022,200,803,3938,7111,6057,https://images.gr-assets.com/books/1320423692l/30005.jpg,https://images.gr-assets.com/books/1320423692s/30005.jpg\n6026,17860217,17860217,25003611,15,,,\"J. Lynn, Jennifer L. Armentrout\",2013.0,Trust in Me,\"Trust in Me (Wait for You, #1.5)\",eng,4.27,27675,28866,1990,154,654,4096,10326,13636,https://images.gr-assets.com/books/1493755741l/17860217.jpg,https://images.gr-assets.com/books/1493755741s/17860217.jpg\n6027,204041,204041,197435,26,1421502410,9781421502410.0,\"Masashi Kishimoto, Frances Wall\",2002.0,NARUTO -ナルト- 巻ノ十一 ,\"Naruto, Vol. 11: Impassioned Efforts (Naruto, #11)\",eng,4.5,15214,15408,110,140,303,1547,3163,10255,https://images.gr-assets.com/books/1435525208l/204041.jpg,https://images.gr-assets.com/books/1435525208s/204041.jpg\n6028,9509289,9509289,14395007,39,446583146,9780446583140.0,David Baldacci,2011.0,One Summer,One Summer,en-US,3.72,16767,18722,2542,507,1663,5217,6577,4758,https://images.gr-assets.com/books/1344267627l/9509289.jpg,https://images.gr-assets.com/books/1344267627s/9509289.jpg\n6029,350684,350684,340933,57,1416530711,9781416530720.0,Judith McNaught,1985.0,\"Whitney, My Love\",\"Whitney, My Love (Westmoreland, #2)\",eng,4.19,23290,24947,1543,666,1056,3537,7234,12454,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436734164l/350684._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6030,785454,785454,105288,31,802132219,9780802132220.0,Khushwant Singh,1956.0,Train to Pakistan,Train to Pakistan,en-US,3.85,12439,14099,847,140,608,3749,6376,3226,https://images.gr-assets.com/books/1342220976l/785454.jpg,https://images.gr-assets.com/books/1342220976s/785454.jpg\n6031,8407173,8407173,6560290,44,,9781742372620.0,Craig Silvey,2009.0,Jasper Jones,Jasper Jones,eng,4.06,12680,18235,2063,288,803,3054,7445,6645,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1275886753l/8407173.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6032,1963638,1963638,1966734,40,1572245379,9781572245370.0,Michael A. Singer,2007.0,The Untethered Soul,The Untethered Soul: The Journey Beyond Yourself,,4.27,14688,17543,1600,317,691,2199,5073,9263,https://images.gr-assets.com/books/1354898395l/1963638.jpg,https://images.gr-assets.com/books/1354898395s/1963638.jpg\n6033,20893314,20893314,40236328,45,159448600X,9781594486000.0,Marlon James,2014.0,A Brief History of Seven Killings,A Brief History of Seven Killings,eng,3.86,13578,17119,2753,768,1238,3250,6222,5641,https://images.gr-assets.com/books/1399045083l/20893314.jpg,https://images.gr-assets.com/books/1399045083s/20893314.jpg\n6034,6373717,6373717,6561348,16,525421556,9780525421560.0,Nina LaCour,2009.0,Hold Still,Hold Still,en-US,3.99,16238,17546,1440,456,947,3584,5967,6592,https://images.gr-assets.com/books/1394240099l/6373717.jpg,https://images.gr-assets.com/books/1394240099s/6373717.jpg\n6035,107772,107772,1913455,40,671702513,9780671702520.0,Julie Garwood,1991.0,The Prize,The Prize,eng,4.22,21157,22569,494,136,643,3752,7680,10358,https://images.gr-assets.com/books/1304789713l/107772.jpg,https://images.gr-assets.com/books/1304789713s/107772.jpg\n6036,13525938,13525938,19086644,31,1455507199,9781455507190.0,Jami Attenberg,2012.0,The Middlesteins,The Middlesteins,eng,3.42,15075,17436,2184,507,2074,6620,6044,2191,https://images.gr-assets.com/books/1339727222l/13525938.jpg,https://images.gr-assets.com/books/1339727222s/13525938.jpg\n6037,18736925,18736925,26224121,68,067443000X,9780674430010.0,\"Thomas Piketty, Arthur Goldhammer\",2013.0,Le capital au XXIe siècle ,Capital in the Twenty-First Century,eng,4.01,13045,15081,1363,474,734,2573,5653,5647,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390111547l/18736925.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6038,202146,202146,22829,42,316159433,9780316159430.0,James D. Bradley,2003.0,Flyboys: A True Story of Courage,Flyboys: A True Story of Courage,,4.15,14011,14908,985,144,429,2510,5755,6070,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442195112l/202146._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6039,782854,782854,768864,29,067122350X,9780671223500.0,\"Kay Thompson, Hilary Knight\",1955.0,Eloise,Eloise ,eng,4.2,19765,20379,440,361,834,3561,5279,10344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348009989l/782854.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6040,13555073,13555073,19125429,55,857532014,9780857532020.0,Jonathan Stroud,2013.0,The Screaming Staircase,\"The Screaming Staircase (Lockwood & Co., #1)\",eng,4.19,15446,19372,3067,375,522,2596,7368,8511,https://images.gr-assets.com/books/1369670906l/13555073.jpg,https://images.gr-assets.com/books/1369670906s/13555073.jpg\n6041,18594633,18594633,15210065,71,804138818,9780804138820.0,Herman Koch,2011.0,Zomerhuis met zwembad,Summer House with Swimming Pool,eng,3.39,10230,16728,2240,705,1991,6009,6132,1891,https://images.gr-assets.com/books/1384734826l/18594633.jpg,https://images.gr-assets.com/books/1384734826s/18594633.jpg\n6042,110090,110090,2134852,65,375724672,9780375724670.0,Peter Carey,2000.0,True History of the Kelly Gang,True History of the Kelly Gang,en-US,3.8,14347,15928,839,436,1094,3876,6297,4225,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440509588l/110090._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6043,702539,702539,2504855,53,006008216X,9780060082160.0,Elmore Leonard,1990.0,Get Shorty,\"Get Shorty (Chili Palmer, #1)\",eng,3.95,15747,16863,505,164,663,3832,7374,4830,https://images.gr-assets.com/books/1330673682l/702539.jpg,https://images.gr-assets.com/books/1330673682s/702539.jpg\n6044,17302495,17302495,22603415,23,1476740488,9781476740480.0,K.A. Tucker,2013.0,One Tiny Lie,\"One Tiny Lie (Ten Tiny Breaths, #2)\",eng,4.3,27048,28593,2147,254,686,3564,9910,14179,https://images.gr-assets.com/books/1380903726l/17302495.jpg,https://images.gr-assets.com/books/1380903726s/17302495.jpg\n6045,113441,113441,990677,77,451523482,9780451523490.0,\"Nathanael West, Alfred Kazin\",1939.0,The Day of the Locust,The Day of the Locust,eng,3.78,15798,16701,584,418,1363,4298,6001,4621,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387706380l/113441.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6046,98685,98685,191828,21,679747044,9780679747050.0,James Gleick,1992.0,Genius: The Life and Science of Richard Feynman,Genius: The Life and Science of Richard Feynman,eng,4.16,14853,15508,329,302,512,2320,5692,6682,https://images.gr-assets.com/books/1320409497l/98685.jpg,https://images.gr-assets.com/books/1320409497s/98685.jpg\n6047,4618728,4618728,4668682,15,312360401,9780312360400.0,Alan Brennert,2009.0,Honolulu,Honolulu,,4.02,15663,17383,2019,118,549,3525,7794,5397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442806142l/4618728._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6048,172764,172764,907142,33,553588451,9780553588450.0,Keri Arthur,2006.0,Full Moon Rising,Full Moon Rising (Riley Jenson Guardian #1),eng,3.89,25813,27537,1193,892,1925,6180,8877,9663,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388347803l/172764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6049,107821,107821,6121267,29,375414959,9780375414950.0,Richard Russo,2007.0,Bridge of Sighs,Bridge of Sighs,,3.79,17013,18274,2439,296,1107,4837,7968,4066,https://images.gr-assets.com/books/1320397300l/107821.jpg,https://images.gr-assets.com/books/1320397300s/107821.jpg\n6050,116054,116054,2067411,53,340752483,9780340752490.0,Rosamunde Pilcher,2000.0,Winter Solstice,Winter Solstice,eng,4.15,15426,17427,1076,131,485,3190,6536,7085,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347737313l/116054.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6051,13580951,13580951,19165924,27,1423165993,9781423166000.0,Ally Carter,2013.0,United We Spy,\"United We Spy (Gallagher Girls, #6)\",eng,4.44,22902,24587,2173,129,379,2609,6918,14552,https://images.gr-assets.com/books/1368559827l/13580951.jpg,https://images.gr-assets.com/books/1368559827s/13580951.jpg\n6052,6571723,6571723,6764805,4,045123054X,9780451230550.0,Rachel Caine,2009.0,\"The Morganville Vampires, Volume 1\",\"The Morganville Vampires, Volume 1 (The Morganville Vampires, #1-2)\",eng,4.36,17329,17403,360,214,573,2244,4152,10220,https://images.gr-assets.com/books/1478780633l/6571723.jpg,https://images.gr-assets.com/books/1478780633s/6571723.jpg\n6053,107664,107664,3327491,58,439680093,9780439680100.0,Anthony Horowitz,2005.0,Raven's Gate,\"Raven's Gate (The Gatekeepers, #1)\",,3.9,18247,20257,1201,424,1300,4726,7192,6615,https://images.gr-assets.com/books/1328842690l/107664.jpg,https://images.gr-assets.com/books/1328842690s/107664.jpg\n6054,20575425,20575425,39843433,30,374292086,9780374292090.0,John Darnielle,2014.0,Wolf in White Van,Wolf in White Van,eng,3.72,14618,16180,2354,455,1425,4206,6278,3816,https://images.gr-assets.com/books/1393646533l/20575425.jpg,https://images.gr-assets.com/books/1393646533s/20575425.jpg\n6055,91203,91203,2784253,102,449912426,9780449912420.0,Erich Maria Remarque,1936.0,Drei Kameraden,Three Comrades,eng,4.48,14321,16925,420,93,302,1541,4513,10476,https://images.gr-assets.com/books/1320543184l/91203.jpg,https://images.gr-assets.com/books/1320543184s/91203.jpg\n6056,7817785,7817785,10120579,21,1423134494,9781423134500.0,Melissa de la Cruz,2010.0,Bloody Valentine,\"Bloody Valentine (Blue Bloods, #5.5)\",en-US,3.98,19903,20966,713,412,1392,4828,5926,8408,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442801545l/7817785._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6057,5160,5160,2775653,33,375500723,9780375500720.0,Maya Angelou,1981.0,The Heart of a Woman,The Heart of a Woman,eng,4.19,15962,16862,407,179,436,2818,6080,7349,https://images.gr-assets.com/books/1417404078l/5160.jpg,https://images.gr-assets.com/books/1417404078s/5160.jpg\n6058,1876770,1876770,1877750,69,,,Andrzej Sapkowski,1996.0,Chrzest ognia,\"Chrzest ognia (Saga o Wiedźminie, #5)\",pol,4.36,10840,19382,517,47,325,2176,6812,10022,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1227447656l/1876770.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6059,6266907,6266907,6450180,30,316070629,9780316070620.0,\"James Patterson, Richard DiLallo\",2009.0,Alex Cross's Trial,\"Alex Cross's Trial (Alex Cross, #15)\",eng,3.92,17655,19762,1422,460,1128,4566,7081,6527,https://images.gr-assets.com/books/1336268218l/6266907.jpg,https://images.gr-assets.com/books/1336268218s/6266907.jpg\n6060,2118114,2118114,2123548,26,385524382,9780385524380.0,\"Ori Brafman, Rom Brafman\",2008.0,Sway: The Irresistible Pull of Irrational Behavior,Sway: The Irresistible Pull of Irrational Behavior,en-US,3.75,14464,15202,894,357,1171,4312,5473,3889,https://images.gr-assets.com/books/1320419177l/2118114.jpg,https://images.gr-assets.com/books/1320419177s/2118114.jpg\n6061,423156,423156,2236675,62,27436292,9780027436300.0,\"Marguerite Henry, Wesley Dennis\",1948.0,King of the Wind: The Story of the Godolphin Arabian,King of the Wind: The Story of the Godolphin Arabian,eng,4.19,20089,21150,613,177,653,3833,6898,9589,https://images.gr-assets.com/books/1329982839l/423156.jpg,https://images.gr-assets.com/books/1329982839s/423156.jpg\n6062,18774981,18774981,26680075,30,1451636016,9781451636020.0,Sam Harris,2014.0,Waking Up: A Guide to Spirituality Without Religion,Waking Up: A Guide to Spirituality Without Religion,eng,3.87,13778,15579,1113,594,980,3277,5691,5037,https://images.gr-assets.com/books/1415677308l/18774981.jpg,https://images.gr-assets.com/books/1415677308s/18774981.jpg\n6063,43037,43037,320876,21,192835149,9780192835150.0,Jack London,1906.0,\"The Call of the Wild, White Fang and Other Stories \",\"The Call of the Wild, White Fang and Other Stories\",eng,3.97,16717,17318,234,316,868,3894,6215,6025,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388295742l/43037.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6064,95784,95784,31912,44,140277447,9780140277450.0,Iris Chang,1997.0,The Rape of Nanking: The Forgotten Holocaust of World War II,The Rape of Nanking,eng,4.08,16875,17903,1352,193,662,3120,7432,6496,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348687411l/95784.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6065,4005310,4005310,4051626,34,670020532,9780670020540.0,Jerry A. Coyne,2008.0,Why Evolution Is True,Why Evolution Is True,,4.15,14637,15439,699,338,647,2387,5030,7037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777442l/4005310._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6066,1627,1627,1795113,19,743271327,9780743271320.0,Annie Proulx,1997.0,Brokeback Mountain,Brokeback Mountain,en-US,3.93,19871,21992,1616,417,1250,4943,8306,7076,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442919969l/1627._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6067,73080,73080,776136,55,380782340,9780380782340.0,Susan Elizabeth Phillips,1997.0,Nobody's Baby But Mine,\"Nobody's Baby But Mine (Chicago Stars, #3)\",eng,4.06,26468,28856,1397,392,1217,5637,10615,10995,https://images.gr-assets.com/books/1298032580l/73080.jpg,https://images.gr-assets.com/books/1298032580s/73080.jpg\n6068,17934416,17934416,25142278,22,1250010098,9781250010090.0,Lisa Scottoline,2014.0,Keep Quiet,Keep Quiet,eng,3.76,13556,15971,2045,445,1182,4135,6153,4056,https://images.gr-assets.com/books/1391355179l/17934416.jpg,https://images.gr-assets.com/books/1391355179s/17934416.jpg\n6069,78985,78985,1758882,46,033041335X,9780330413350.0,Jeffrey Archer,2002.0,Sons of Fortune,Sons of Fortune,eng,3.83,13731,14757,481,183,770,4118,6012,3674,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347962096l/78985.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6070,48318,48318,113614,100,374266514,9780374266520.0,\"Jostein Gaarder, Sarah Jane Hails\",1990.0,Kabalmysteriet,The Solitaire Mystery: A Novel About Family and Destiny,eng,4.16,11085,16872,1032,181,656,2901,5713,7421,https://images.gr-assets.com/books/1327883395l/48318.jpg,https://images.gr-assets.com/books/1327883395s/48318.jpg\n6072,6104943,6104943,6282264,29,755328175,9780755328180.0,Jill Mansell,2009.0,Rumor Has it,Rumour Has It,eng,3.83,15669,18306,647,365,1053,4985,6832,5071,https://images.gr-assets.com/books/1328202735l/6104943.jpg,https://images.gr-assets.com/books/1328202735s/6104943.jpg\n6073,32429,32429,2771826,54,425208435,9780425208430.0,Dean Koontz,1993.0,Dragon Tears,Dragon Tears,,3.72,17573,18455,423,288,1421,5900,6349,4497,https://images.gr-assets.com/books/1308458435l/32429.jpg,https://images.gr-assets.com/books/1308458435s/32429.jpg\n6074,7937744,7937744,11345814,21,316123404,9780316123400.0,Iain M. Banks,2010.0,Surface Detail,Surface Detail (Culture #9),eng,4.22,15651,17865,853,89,344,2514,7592,7326,https://images.gr-assets.com/books/1287893375l/7937744.jpg,https://images.gr-assets.com/books/1287893375s/7937744.jpg\n6075,7785207,7785207,10722156,8,,,Nicky Charles,2010.0,The Mating,\"The Mating  (Law of the Lycans, #2)\",eng,4.02,20109,23614,2068,558,1222,4601,8016,9217,https://images.gr-assets.com/books/1299068605l/7785207.jpg,https://images.gr-assets.com/books/1299068605s/7785207.jpg\n6076,330947,330947,1808829,71,440240948,9780440240940.0,Conn Iggulden,2002.0,The Gates of Rome,\"The Gates of Rome (Emperor, #1)\",eng,4.16,14370,16637,731,198,486,2567,6555,6831,https://images.gr-assets.com/books/1313874666l/330947.jpg,https://images.gr-assets.com/books/1313874666s/330947.jpg\n6078,81903,81903,1726,178,425173747,9780425173750.0,Agatha Christie,1975.0,Curtain: Poirot’s Last Case,\"Curtain (Hercule Poirot, #39)\",eng,4.05,18358,22020,1080,194,930,4684,7924,8288,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923108l/81903.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6079,77161,77161,1357544,78,1594480036,9781594480030.0,Lian Hearn,2003.0,Grass for His Pillow ,\"Grass for His Pillow (Tales of the Otori, #2)\",,4.01,15140,18061,536,81,596,4031,7631,5722,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439223731l/77161._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6080,2798094,2798094,2823886,25,345495934,9780345495940.0,Laurell K. Hamilton,2008.0,Swallowing Darkness,\"Swallowing Darkness (Merry Gentry, #7)\",en-US,4.13,23079,25213,685,386,1219,4460,7749,11399,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440734319l/2798094._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6082,18774020,18774020,26407781,18,316250813,9780316250820.0,Edan Lepucki,2014.0,California,California,eng,3.22,14870,16064,2643,927,2641,6113,4742,1641,https://images.gr-assets.com/books/1400863574l/18774020.jpg,https://images.gr-assets.com/books/1400863574s/18774020.jpg\n6084,197512,197512,184783,16,786818697,9780786818690.0,Mo Willems,2004.0,The Pigeon Finds a Hot Dog!,The Pigeon Finds a Hot Dog!,en-US,4.35,20510,20790,720,261,649,2688,5218,11974,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1585597485l/197512._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6085,25131600,25131600,44828548,30,080417766X,9780804177660.0,Chuck Wendig,2015.0,Aftermath,\"Aftermath (Star Wars: Aftermath, #1)\",eng,3.15,11207,16440,2499,1136,2952,6340,4270,1742,https://images.gr-assets.com/books/1426620007l/25131600.jpg,https://images.gr-assets.com/books/1426620007s/25131600.jpg\n6086,263148,263148,255086,28,60776250,9780060776250.0,Ellen Schreiber,2006.0,\"Vampireville (Vampire Kisses, #3)\",\"Vampireville (Vampire Kisses, #3)\",en-GB,3.92,21676,22429,503,637,1796,5433,5380,9183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348488554l/263148.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6087,16349,16349,6568307,188,7120699,9780007120700.0,Agatha Christie,1938.0,Hercule Poirot's Christmas,\"Hercule Poirot's Christmas (Hercule Poirot, #20)\",eng,3.9,17971,22892,1374,87,821,6401,9528,6055,https://images.gr-assets.com/books/1308808460l/16349.jpg,https://images.gr-assets.com/books/1308808460s/16349.jpg\n6088,15808287,15808287,21532921,13,525953612,9780525953620.0,Jennifer Chiaverini,2013.0,Mrs. Lincoln's Dressmaker,Mrs. Lincoln's Dressmaker,eng,3.41,16366,18509,2851,722,2519,6540,5846,2882,https://images.gr-assets.com/books/1350586527l/15808287.jpg,https://images.gr-assets.com/books/1350586527s/15808287.jpg\n6089,545425,545425,532703,88,9953320993,,Safiy al-Rahman al-Mubarakfuri,1979.0, الرحيق المختوم: بحث في السيرة النبوية على صاحبها أفضل الصلاة والسلام ,الرحيق المختوم,ara,4.57,10558,13177,1141,145,205,919,2664,9244,https://images.gr-assets.com/books/1289025514l/545425.jpg,https://images.gr-assets.com/books/1289025514s/545425.jpg\n6090,12547098,12547098,17534296,31,307460207,9780307460200.0,Sarah McCoy,2012.0,The Baker's Daughter,The Baker's Daughter,eng,3.94,12752,16884,1906,187,663,3690,7701,4643,https://images.gr-assets.com/books/1404963150l/12547098.jpg,https://images.gr-assets.com/books/1404963150s/12547098.jpg\n6091,21849362,21849362,41120683,30,,,J.R. Ward,2015.0,The Shadows,\"The Shadows (Black Dagger Brotherhood, #13)\",en-US,4.29,20668,23375,3099,327,744,2985,7011,12308,https://images.gr-assets.com/books/1404479585l/21849362.jpg,https://images.gr-assets.com/books/1404479585s/21849362.jpg\n6092,920143,920143,596404,8,823404706,9780823404700.0,\"Trina Schart Hyman, Johann Grimm, Wilhelm Grimm\",1983.0,Rotkäppchen,Little Red Riding Hood,eng,4.11,19224,19453,507,150,792,4489,5308,8714,https://images.gr-assets.com/books/1314485414l/920143.jpg,https://images.gr-assets.com/books/1314485414s/920143.jpg\n6093,153865,153865,1368691,47,439995442,9780439995440.0,Dav Pilkey,1999.0,Captain Underpants and the Attack of the Talking Toilets,\"Captain Underpants and the Attack of the Talking Toilets (Captain Underpants, #2)\",en-GB,3.99,25873,26970,623,1173,2025,5248,6039,12485,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348349083l/153865.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6094,12204857,12204857,16815240,47,857203312,9780857203310.0,\"Martin Pistorius, Megan Lloyd Davies\",2011.0,Ghost Boy,Ghost Boy,eng,3.96,10303,14474,1675,241,730,3151,5551,4801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328017445l/12204857.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6095,18077875,18077875,25369241,29,804137382,9780804137390.0,Greg McKeown,2014.0,Essentialism: The Disciplined Pursuit of Less,Essentialism: The Disciplined Pursuit of Less,eng,3.99,16137,18644,1919,363,1089,3655,6740,6797,https://images.gr-assets.com/books/1403165375l/18077875.jpg,https://images.gr-assets.com/books/1403165375s/18077875.jpg\n6096,16188,16188,3969,37,743249291,9780743249290.0,Philippa Gregory,1987.0,Wideacre,\"Wideacre  (The Wideacre Trilogy, #1)\",eng,3.28,17469,18758,1581,2486,2768,4745,4539,4220,https://images.gr-assets.com/books/1289170133l/16188.jpg,https://images.gr-assets.com/books/1289170133s/16188.jpg\n6098,15717721,15717721,21388692,32,,,Lisa Renee Jones,2012.0,If I were you,\"If I Were You (Inside Out, #1)\",eng,4.14,21313,23978,2354,536,1024,3556,8278,10584,https://images.gr-assets.com/books/1397227898l/15717721.jpg,https://images.gr-assets.com/books/1397227898s/15717721.jpg\n6099,16079228,18615935,21876920,11,,,L.A. Fiore,2012.0,Beautifully Damaged,\"Beautifully Damaged (Beautifully Damaged, #1)\",eng,3.99,21543,27919,1755,872,1624,4979,9747,10697,https://images.gr-assets.com/books/1350800166l/16079228.jpg,https://images.gr-assets.com/books/1350800166s/16079228.jpg\n6100,16053316,16053316,21837591,17,,,Samantha Towle,2013.0,Wethering the Storm,\"Wethering the Storm (The Storm, #2)\",eng,4.33,26962,29110,1935,226,659,3507,9695,15023,https://images.gr-assets.com/books/1368083888l/16053316.jpg,https://images.gr-assets.com/books/1368083888s/16053316.jpg\n6101,30658,30658,6299110,234,872201929,9780872201930.0,\"René Descartes, Donald A. Cress\",1641.0,Meditationes de prima philosophia,Meditations on First Philosophy,eng,3.69,14811,15952,367,481,1470,4630,5260,4111,https://images.gr-assets.com/books/1405624521l/30658.jpg,https://images.gr-assets.com/books/1405624521s/30658.jpg\n6102,17491,17491,310727,38,749748001,9780749748000.0,Enid Blyton,1939.0,The Enchanted Wood,\"The Enchanted Wood (The Faraway Tree, #1)\",eng,4.24,16470,17697,520,309,551,2704,5202,8931,https://images.gr-assets.com/books/1428732266l/17491.jpg,https://images.gr-assets.com/books/1428732266s/17491.jpg\n6103,17286162,17286162,23905943,13,,,Sandi Lynn,2013.0,Forever Black,\"Forever Black (Forever, #1)\",eng,3.99,27102,27415,1840,720,1761,5235,9140,10559,https://images.gr-assets.com/books/1359579827l/17286162.jpg,https://images.gr-assets.com/books/1359579827s/17286162.jpg\n6104,16204,16204,3274683,473,1592243002,9781592243010.0,Henry James,1878.0,Daisy Miller,Daisy Miller,,3.36,17118,20939,1279,727,2824,8287,6486,2615,https://images.gr-assets.com/books/1327911289l/16204.jpg,https://images.gr-assets.com/books/1327911289s/16204.jpg\n6105,11866694,11866694,16823763,23,1401340873,9781401340870.0,Lauren Groff,2012.0,Arcadia,Arcadia,eng,3.65,14622,16274,2444,471,1471,4757,6233,3342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440680831l/11866694._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6106,57605,57605,56119,11,307444058,9780307444060.0,Dorothy Kunhardt,1940.0,Pat the Bunny (Touch and Feel Book),Pat the Bunny,,4.06,19187,19870,351,442,1264,4308,4480,9376,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170474321l/57605.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6107,25279165,25279165,45005209,18,345528697,9780345528700.0,Melanie Benjamin,2016.0,The Swans of Fifth Avenue,The Swans of Fifth Avenue,eng,3.58,13735,17953,2518,580,1676,5639,6932,3126,https://images.gr-assets.com/books/1431898319l/25279165.jpg,https://images.gr-assets.com/books/1431898319s/25279165.jpg\n6108,229145,229145,1101695,18,1591828783,9781591828780.0,\"CLAMP, Maria Simpson\",1996.0,カードキャプターさくら,\"Cardcaptor Sakura, Vol. 1 (Cardcaptor Sakura, #1)\",eng,4.3,17547,18004,206,248,620,2662,4442,10032,https://images.gr-assets.com/books/1451030958l/229145.jpg,https://images.gr-assets.com/books/1451030958s/229145.jpg\n6109,23217,23217,3239501,34,60525126,9780060525120.0,Meg Cabot,2006.0,Size 14 Is Not Fat Either,\"Size 14 Is Not Fat Either (Heather Wells, #2)\",eng,3.83,24045,25006,1042,274,1359,7200,9654,6519,https://images.gr-assets.com/books/1479654269l/23217.jpg,https://images.gr-assets.com/books/1479654269s/23217.jpg\n6111,12706435,12706435,17839042,10,,,Shelly Crane,2011.0,Defiance,\"Defiance (Significance, #3)\",eng,4.31,22767,22889,833,210,593,3055,7077,11954,https://images.gr-assets.com/books/1498698186l/12706435.jpg,https://images.gr-assets.com/books/1498698186s/12706435.jpg\n6112,232577,232577,1228514,25,061808360X,9780618083600.0,Dian Fossey,1983.0,Gorillas in the Mist,Gorillas in the Mist,en-US,4.16,16551,16880,164,219,491,2876,6068,7226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564514108l/232577.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6113,7663,7663,2651727,57,451210638,9780451210630.0,\"Jeffery Hudson, Michael Crichton\",1968.0,A Case of Need,A Case of Need,en-US,3.6,14109,16047,563,291,1448,5632,5664,3012,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327963749l/7663.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6114,16045140,16045140,21823357,34,805097457,9780805097450.0,Adelle Waldman,2013.0,The Love Affairs of Nathaniel P. ,The Love Affairs of Nathaniel P.,en-CA,3.3,12598,14296,1875,730,2371,4918,4455,1822,https://images.gr-assets.com/books/1361026301l/16045140.jpg,https://images.gr-assets.com/books/1361026301s/16045140.jpg\n6115,16096873,16096873,21905189,39,,,\"P.C. Cast, Kristin Cast\",2013.0,Revealed,\"Revealed (House of Night, #11)\",eng,3.81,17282,21187,1444,895,1981,5001,5593,7717,https://images.gr-assets.com/books/1369156173l/16096873.jpg,https://images.gr-assets.com/books/1369156173s/16096873.jpg\n6117,6115138,6115138,6293210,42,312374976,9780312374980.0,Linda Castillo,2009.0,Sworn to Silence,\"Sworn to Silence (Kate Burkholder, #1)\",eng,4.0,17862,20424,2416,343,775,4013,8761,6532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388818184l/6115138.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6118,12119529,12119529,17088822,12,425256227,9780425256220.0,Ilona Andrews,2014.0,Magic Breaks,\"Magic Breaks (Kate Daniels, #7)\",eng,4.52,22583,27458,2303,46,188,1910,8504,16810,https://images.gr-assets.com/books/1383236969l/12119529.jpg,https://images.gr-assets.com/books/1383236969s/12119529.jpg\n6119,79649,79649,3200341,281,413771008,9780413771000.0,\"Anton Chekhov, Michael Frayn\",1895.0,Чайка,The Seagull,eng,3.92,15997,18104,411,325,1139,4186,6442,6012,https://images.gr-assets.com/books/1443340069l/79649.jpg,https://images.gr-assets.com/books/1443340069s/79649.jpg\n6120,7717482,7717482,44805656,112,4103534257,9784103534260.0,\"Haruki Murakami, 村上 春樹\",2010.0,1Q84 Book 3 [Ichi-kyū-hachi-yon],\"1Q84 BOOK 3 (1Q84, #3)\",jpn,3.86,10317,17189,1332,328,1253,4136,6260,5212,https://images.gr-assets.com/books/1327559269l/7717482.jpg,https://images.gr-assets.com/books/1327559269s/7717482.jpg\n6121,93723,93723,2425604,32,330418874,9780330418870.0,Meg Cabot,2004.0,Boy Meets Girl,\"Boy Meets Girl (Boy, #2)\",eng,3.82,21851,24066,1052,403,1560,6834,8503,6766,https://images.gr-assets.com/books/1328033372l/93723.jpg,https://images.gr-assets.com/books/1328033372s/93723.jpg\n6122,402015,402015,1057985,47,60097477,9780060097480.0,Louise Rennison,2002.0,Dancing in my nuddy-pants!,\"Dancing in My Nuddy-Pants (Confessions of Georgia Nicolson, #4)\",eng,4.01,18451,20861,425,239,917,4872,7100,7733,https://images.gr-assets.com/books/1327885836l/402015.jpg,https://images.gr-assets.com/books/1327885836s/402015.jpg\n6123,348,348,2055615,75,345413997,9780345413990.0,Robert A. Heinlein,1957.0,The Door into Summer,The Door Into Summer,eng,4.0,15298,18028,829,132,745,4180,6964,6007,https://images.gr-assets.com/books/1342241886l/348.jpg,https://images.gr-assets.com/books/1342241886s/348.jpg\n6124,316445,316445,1532237,19,316011274,9780316011270.0,Julie Anne Peters,2004.0,Luna,Luna,en-US,3.86,17859,18820,1360,701,1289,4401,6016,6413,https://images.gr-assets.com/books/1339269673l/316445.jpg,https://images.gr-assets.com/books/1339269673s/316445.jpg\n6125,14280,14280,2040369,82,1400077915,9781400077920.0,Alice Munro,2004.0,Runaway,Runaway,eng,3.98,13389,15889,1688,208,812,3150,6603,5116,https://images.gr-assets.com/books/1431005856l/14280.jpg,https://images.gr-assets.com/books/1431005856s/14280.jpg\n6126,886066,886066,871329,29,1841494186,9781841494180.0,Iain M. Banks,2008.0,Matter,\"Matter (Culture, #8)\",eng,4.03,15438,17614,761,119,601,3581,7617,5696,https://images.gr-assets.com/books/1327954631l/886066.jpg,https://images.gr-assets.com/books/1327954631s/886066.jpg\n6127,17825503,17825503,24567191,17,,,Mia Sheridan,2013.0,Leo,Leo,eng,4.06,24793,32250,3007,523,1543,5677,12088,12419,https://images.gr-assets.com/books/1366869759l/17825503.jpg,https://images.gr-assets.com/books/1366869759s/17825503.jpg\n6128,3103,3103,2394184,75,393310329,9780393310320.0,E.M. Forster,1971.0,Maurice,Maurice,eng,4.02,16301,18288,940,220,779,3829,7075,6385,https://images.gr-assets.com/books/1361934128l/3103.jpg,https://images.gr-assets.com/books/1361934128s/3103.jpg\n6129,10402992,10402992,14854113,37,1441836314,9781441836310.0,\"J.D. Robb, Susan Ericksen\",2011.0,New York to Dallas,\"New York to Dallas (In Death, #33)\",eng,4.42,17108,21047,1294,104,329,2151,6490,11973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348514401l/10402992.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6130,52350,52350,1534281,61,60080841,9780060080850.0,Ira Levin,1972.0,The Stepford Wives,The Stepford Wives,eng,3.71,17382,20716,1435,283,1556,6481,7954,4442,https://images.gr-assets.com/books/1403404262l/52350.jpg,https://images.gr-assets.com/books/1403404262s/52350.jpg\n6131,161156,161156,1413765,73,671890913,9780671890920.0,Cornelius Ryan,1959.0,The Longest Day,The Longest Day,eng,4.31,14949,15836,416,114,271,1931,5826,7694,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1560902103l/161156.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6132,6426,6426,3178484,37,60584033,9780060584030.0,Janet Evanovich,2006.0,Motor Mouth,Motor Mouth (Alex Barnaby #2),en-US,3.66,20983,22204,725,445,2206,7179,6974,5400,https://images.gr-assets.com/books/1479699584l/6426.jpg,https://images.gr-assets.com/books/1479699584s/6426.jpg\n6133,215541,215541,1946186,36,743437349,9780743437350.0,D.J. MacHale,2003.0,The Reality Bug,\"The Reality Bug (Pendragon, #4)\",eng,4.15,19049,19539,428,147,673,3682,6707,8330,https://images.gr-assets.com/books/1431402995l/215541.jpg,https://images.gr-assets.com/books/1431402995s/215541.jpg\n6134,6528034,6528034,6719993,47,446195510,9780446195520.0,David Baldacci,2009.0,True Blue,True Blue,eng,3.84,15757,18500,1332,298,1025,4840,7495,4842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440465049l/6528034._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6135,317504,317504,2960486,31,553561189,9780553561180.0,\"Raymond E. Feist, Janny Wurts\",1992.0,\"Mistress of the Empire (The Empire Trilogy, #3)\",\"Mistress of the Empire (The Empire Trilogy, #3)\",en-US,4.29,18392,19487,272,92,475,2809,6470,9641,https://images.gr-assets.com/books/1333694789l/317504.jpg,https://images.gr-assets.com/books/1333694789s/317504.jpg\n6137,20706316,20706316,40026661,23,316376116,9780316376110.0,Elin Hilderbrand,2014.0,Winter Street,\"Winter Street (Winter, #1)\",eng,3.67,14411,17138,1894,283,1209,5683,6749,3214,https://images.gr-assets.com/books/1394567347l/20706316.jpg,https://images.gr-assets.com/books/1394567347s/20706316.jpg\n6138,233637,233637,3308013,47,448095025,9780448095030.0,\"Carolyn Keene, Mildred Benson\",1930.0,\"The Hidden Staircase (Nancy Drew Mystery Stories, #2)\",The Hidden Staircase (Nancy Drew #2),en-US,3.94,24872,25666,1097,191,1017,7101,9091,8266,https://images.gr-assets.com/books/1172964121l/233637.jpg,https://images.gr-assets.com/books/1172964121s/233637.jpg\n6139,369110,369110,1799308,26,449205622,9780449205620.0,Taylor Caldwell,1972.0,Captains and the Kings,Captains and the Kings,eng,4.11,14980,15443,217,159,546,3154,5196,6388,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1586112484l/369110._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6140,13390528,13390528,18621486,48,62073125,9780062073130.0,Daniel Silva,2012.0,The Fallen Angel,\"The Fallen Angel (Gabriel Allon, #12)\",eng,4.17,13939,17477,1309,122,432,2694,7352,6877,https://images.gr-assets.com/books/1468408514l/13390528.jpg,https://images.gr-assets.com/books/1468408514s/13390528.jpg\n6142,97862,97862,2226182,12,310247527,25986247522.0,Karen Kingsbury,2003.0,One Tuesday Morning,\"One Tuesday Morning (9/11, #1)\",eng,4.41,14904,15249,571,148,344,1663,4063,9031,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436486968l/97862._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6143,8935153,8935153,13811777,23,425241130,9780425241130.0,Laurell K. Hamilton,2011.0,Hit List,\"Hit List (Anita Blake, Vampire Hunter #20)\",eng,3.92,21516,24488,1514,698,1756,5470,7389,9175,https://images.gr-assets.com/books/1315176487l/8935153.jpg,https://images.gr-assets.com/books/1315176487s/8935153.jpg\n6145,29367958,29367958,48358625,6,,,Mariana Zapata,2016.0,The Wall of Winnipeg and Me,The Wall of Winnipeg and Me,eng,4.34,29197,30842,3311,381,768,3473,9447,16773,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1456774327l/29367958._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6146,170632,170632,1310853,72,1416516743,9781416516740.0,Mary Higgins Clark,1995.0,Let Me Call You Sweetheart,Let Me Call You Sweetheart,eng,3.84,17472,18575,315,91,787,5933,6899,4865,https://images.gr-assets.com/books/1355138627l/170632.jpg,https://images.gr-assets.com/books/1355138627s/170632.jpg\n6147,487445,487445,475721,31,385341598,9780385341590.0,Joseph Wambaugh,1973.0,The Onion Field,The Onion Field,,4.13,15558,15999,276,93,441,2966,6321,6178,https://images.gr-assets.com/books/1320511693l/487445.jpg,https://images.gr-assets.com/books/1320511693s/487445.jpg\n6148,106128,106128,1154616,72,743233492,9780743233490.0,Kathy Reichs,2006.0,Break No Bones,\"Break No Bones (Temperance Brennan, #9)\",en-US,3.95,19413,21822,853,121,783,5491,9100,6327,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433210409l/106128._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6149,10865206,10865206,17553514,38,1583334386,9781583334390.0,Kelly McGonigal,2011.0,\"The Willpower Instinct: How Self-Control Works, Why It Matters, and What You Can Do to Get More of It\",\"The Willpower Instinct: How Self-Control Works, Why It Matters, and What You Can Do to Get More of It\",eng,4.11,15318,16985,1135,351,622,2759,6388,6865,https://images.gr-assets.com/books/1436737104l/10865206.jpg,https://images.gr-assets.com/books/1436737104s/10865206.jpg\n6150,279561,279561,1775843,35,345457714,9780345457710.0,Richard K. Morgan,2003.0,Broken Angels,\"Broken Angels (Takeshi Kovacs, #2)\",eng,4.0,15544,17584,686,110,640,3753,7757,5324,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389758530l/279561.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6151,21720,21720,1952659,60,038533947X,9780385339480.0,Karin Slaughter,2007.0,Beyond Reach,\"Beyond Reach (Grant County, #6)\",eng,4.19,15359,18527,985,211,515,2881,6934,7986,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342699l/21720.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6152,9647532,9647532,18280046,19,765328542,9780765328540.0,John Scalzi,2011.0,Fuzzy Nation,Fuzzy Nation,en-US,4.1,17114,19065,1948,157,475,3311,8578,6544,https://images.gr-assets.com/books/1316132345l/9647532.jpg,https://images.gr-assets.com/books/1316132345s/9647532.jpg\n6153,643974,643974,62899,60,449221512,9780449221520.0,Sue Grafton,1992.0,I is for Innocent,\"I is for Innocent (Kinsey Millhone, #9)\",en-US,3.9,21756,23492,539,71,549,7035,9921,5916,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429466272l/643974.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6154,5809,5809,2999000,62,2020418770,9782020418780.0,Thomas Pynchon,1963.0,V.,V.,fre,3.97,13485,16046,824,439,885,3063,6006,5653,https://images.gr-assets.com/books/1328110787l/5809.jpg,https://images.gr-assets.com/books/1328110787s/5809.jpg\n6156,472025,472025,1043242,68,671203231,9780671203240.0,\"Bertrand Russell, Paul  Edwards\",1927.0,Why I Am Not a Christian and Other Essays on Religion and Related Subjects,Why I Am Not a Christian and Other Essays on Religion and Related Subjects,eng,4.03,13678,14962,506,349,700,2710,5627,5576,https://images.gr-assets.com/books/1347925703l/472025.jpg,https://images.gr-assets.com/books/1347925703s/472025.jpg\n6157,23422,23422,812271,55,375725342,9780375725340.0,Alain de Botton,2002.0,The Art of Travel,The Art of Travel,,3.81,13100,14840,870,392,1020,3704,5604,4120,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262692l/23422.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6159,25066591,25066591,44146594,34,316407135,9780316407140.0,James Patterson,2015.0,Cross Justice,\"Cross Justice (Alex Cross, #23)\",,4.22,8634,16401,1490,210,472,2241,6077,7401,https://images.gr-assets.com/books/1427135714l/25066591.jpg,https://images.gr-assets.com/books/1427135714s/25066591.jpg\n6160,326272,69091,2321188,127,9645571766,9789645571760.0,\"Heinrich Böll, محمد اسماعیل‌زاده\",1963.0,Ansichten eines Clowns,عقاید یک دلقک,per,4.05,4225,13897,824,225,659,2598,5101,5314,https://images.gr-assets.com/books/1394632139l/326272.jpg,https://images.gr-assets.com/books/1394632139s/326272.jpg\n6161,18209468,18209468,25630270,26,812995201,9780812995210.0,Laura McHugh,2014.0,The Weight of Blood,The Weight of Blood,eng,3.73,15533,17154,2125,355,1003,5018,7310,3468,https://images.gr-assets.com/books/1395611141l/18209468.jpg,https://images.gr-assets.com/books/1395611141s/18209468.jpg\n6162,110396,110396,1118162,42,60531231,9780060531230.0,Julia Quinn,2004.0,When He was Wicked,\"When He was Wicked (Bridgertons, #6)\",eng,4.03,24085,26005,1092,245,1172,5505,9597,9486,https://images.gr-assets.com/books/1274212205l/110396.jpg,https://images.gr-assets.com/books/1274212205s/110396.jpg\n6163,10852027,10852027,15766774,37,399157867,9780399157870.0,Sue Grafton,2011.0,V is for Vengeance,\"V is for Vengeance (Kinsey Millhone, #22)\",en-US,3.93,18402,22215,2310,140,820,5518,9761,5976,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198242l/10852027.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6164,303460,303460,1878,16,689839057,9780689839050.0,Margaret Peterson Haddix,2002.0,Among the Betrayed,\"Among the Betrayed (Shadow Children, #3)\",en-US,4.06,19964,20905,872,132,723,4668,7526,7856,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963304l/303460.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6165,22322,22322,1715356,47,399154302,9780399154300.0,William Gibson,2007.0,Spook Country,\"Spook Country (Blue Ant, #2)\",en-US,3.66,14855,16351,1357,331,1368,5061,6307,3284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442535360l/22322._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6166,534289,534289,521797,140,069109750X,9780691097500.0,\"Anonymous, Richard Wilhelm, Cary F. Baynes, C.G. Jung\",-750.0,易 [Yì],The I Ching or Book of Changes,eng,4.18,12781,14700,275,178,599,2649,4230,7044,https://images.gr-assets.com/books/1406503668l/534289.jpg,https://images.gr-assets.com/books/1406503668s/534289.jpg\n6167,153492,153492,2422487,575,1419151126,9781419151120.0,John Buchan,1915.0,The Thirty-Nine Steps,\"The 39 Steps (Richard Hannay, #1)\",,3.6,12704,21125,1698,430,1974,7176,7516,4029,https://images.gr-assets.com/books/1391320797l/153492.jpg,https://images.gr-assets.com/books/1391320797s/153492.jpg\n6168,10252302,10252302,15152485,40,307267679,9780307267670.0,Joan Didion,2011.0,Blue Nights,Blue Nights,eng,3.75,15852,17092,1941,349,1371,4724,6336,4312,https://images.gr-assets.com/books/1319148558l/10252302.jpg,https://images.gr-assets.com/books/1319148558s/10252302.jpg\n6169,48484,48484,47428,33,765312182,9780765312180.0,Peter Watts,2006.0,Blindsight,\"Blindsight (Firefall, #1)\",eng,3.99,14583,17483,1593,372,1034,3461,6108,6508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924412l/48484.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6171,7619398,7619398,10091604,17,1401228305,9781401228310.0,\"Scott Snyder, Stephen King, Rafael Albuquerque\",2010.0,\"American Vampire, Volume 1\",\"American Vampire, Vol. 1\",eng,3.98,17578,18407,1113,356,981,3663,7054,6353,https://images.gr-assets.com/books/1389666348l/7619398.jpg,https://images.gr-assets.com/books/1389666348s/7619398.jpg\n6172,3080212,3080212,3111256,29,399155279,9780399155280.0,John Sandford,2008.0,Heat Lightning,\"Heat Lightning (Virgil Flowers, #2)\",eng,4.16,16507,18301,720,133,411,3057,7484,7216,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436355708l/3080212._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6173,16619,16619,90454,256,140447601,9780140447610.0,\"Alexis de Tocqueville, Isaac Kramnick, Gerald Bevan\",1835.0,De la démocratie en Amérique,Democracy in America ,eng,3.99,15917,17726,590,242,919,3887,6411,6267,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388206188l/16619.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6174,43932,43932,14597391,60,440220459,9780440220460.0,Harlan Coben,1996.0,Drop Shot,Drop Shot (Myron Bolitar #2),eng,3.92,17128,20378,983,85,602,5214,9383,5094,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442497652l/43932._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6175,8951,8951,3214277,49,316016659,9780316016650.0,Darren Shan,2002.0,\"The Lake of Souls (Cirque Du Freak, #10)\",\"The Lake of Souls (Cirque Du Freak, #10)\",,4.19,16803,18281,405,188,796,3094,5525,8678,https://images.gr-assets.com/books/1255988654l/8951.jpg,https://images.gr-assets.com/books/1255988654s/8951.jpg\n6176,16081754,16081754,21881113,16,,,A. Meredith Walters,2012.0,Find You in the Dark,\"Find You in the Dark (Find You in the Dark, #1)\",eng,3.98,24615,25092,1962,725,1439,4754,8785,9389,https://images.gr-assets.com/books/1359627731l/16081754.jpg,https://images.gr-assets.com/books/1359627731s/16081754.jpg\n6177,4313522,4313522,4361300,44,399155430,9780399155440.0,Erica Bauermeister,2009.0,The School of Essential Ingredients,The School of Essential Ingredients,en-US,3.78,16853,19578,3631,370,1428,5344,7476,4960,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442453239l/4313522._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6179,3276012,3276012,3312295,64,7271212,9780007271210.0,Bernard Cornwell,2008.0,Azincourt ,Azincourt,en-GB,4.11,14098,17864,1168,143,525,3204,7413,6579,https://images.gr-assets.com/books/1327151016l/3276012.jpg,https://images.gr-assets.com/books/1327151016s/3276012.jpg\n6180,30512,30512,2305040,61,2264022442,9782264022450.0,Roddy Doyle,1993.0,Paddy Clarke Ha Ha Ha,Paddy Clarke Ha Ha Ha,,3.75,15044,16773,669,325,1171,4673,6759,3845,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168077668l/30512.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6181,77699,77699,75046,67,449911594,9780449911590.0,Anne Tyler,1982.0,Dinner at the Homesick Restaurant,Dinner at the Homesick Restaurant,eng,3.82,17203,18976,1422,313,1124,5054,7752,4733,https://images.gr-assets.com/books/1502218870l/77699.jpg,https://images.gr-assets.com/books/1502218870s/77699.jpg\n6182,787660,787660,3038288,52,671729446,9780671729450.0,V.C. Andrews,1985.0,Heaven,\"Heaven (Casteel, #1)\",eng,4.01,17289,18252,463,240,1013,4153,5713,7133,https://images.gr-assets.com/books/1321683934l/787660.jpg,https://images.gr-assets.com/books/1321683934s/787660.jpg\n6183,47881,47881,847797,27,439545307,9780439545300.0,Jenny Nimmo,2006.0,\"Charlie Bone and the Hidden King (The Children of the Red King, # 5)\",\"Charlie Bone and the Hidden King (The Children of the Red King, #5)\",,3.98,18899,19344,302,282,970,4579,6532,6981,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183822l/47881.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6184,18825,18825,85999,54,99461889,9780099461880.0,Martin Amis,1984.0,Money,Money,en-GB,3.71,14703,16390,854,728,1467,4072,5751,4372,https://images.gr-assets.com/books/1367084993l/18825.jpg,https://images.gr-assets.com/books/1367084993s/18825.jpg\n6185,216131,216131,1830020,31,743484207,9780743484210.0,John Sandford,1998.0,Secret Prey,\"Secret Prey (Lucas Davenport, #9)\",en-GB,4.25,16964,18502,343,71,208,2650,7731,7842,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348127756l/216131.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6186,34871,34871,34835,6,1600100295,9781600100290.0,\"Chris Ryall, Gabriel Rodríguez, Clive Barker\",1989.0,Clive Barker's The Great and Secret Show: Volume 1 (Clive Barker's the Great and Secret Show),The Complete Clive Barker's The Great And Secret Show,eng,4.21,15599,15695,61,146,468,2479,5455,7147,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923469l/34871.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6187,754713,754713,10479789,359,755334434,9780755334440.0,Arthur Conan Doyle,1917.0,His Last Bow: Some Reminiscences of Sherlock Holmes,His Last Bow: 8 Stories,eng,4.27,20057,22141,471,120,436,3353,7590,10642,https://images.gr-assets.com/books/1368588782l/754713.jpg,https://images.gr-assets.com/books/1368588782s/754713.jpg\n6188,761575,761575,711892,48,553580272,9780553580270.0,\"Brian Herbert, Kevin J. Anderson\",1999.0,Dune: House Atreides,House Atreides (Prelude to Dune #1),eng,3.69,16739,17878,397,760,1577,4825,5929,4787,https://images.gr-assets.com/books/1403181106l/761575.jpg,https://images.gr-assets.com/books/1403181106s/761575.jpg\n6189,244572,244572,6594671,70,000710653X,9780007106530.0,Diana Wynne Jones,1977.0,Charmed Life ,\"Charmed Life (Chrestomanci, #1)\",eng,3.95,21896,24251,875,661,1194,5133,9051,8212,https://images.gr-assets.com/books/1396706429l/244572.jpg,https://images.gr-assets.com/books/1396706429s/244572.jpg\n6190,229432,229432,3315230,615,140436111,9780140436110.0,Charles Dickens,1837.0,The Posthumous Papers of the Pickwick Club,The Pickwick Papers,eng,3.82,17080,20011,1175,537,1496,5076,6842,6060,https://images.gr-assets.com/books/1360795072l/229432.jpg,https://images.gr-assets.com/books/1360795072s/229432.jpg\n6191,2615008,2615008,2639658,36,307377040,9780307377040.0,Joseph O'Neill,2008.0,Netherland,Netherland,eng,3.4,13314,15734,2355,685,2192,5224,5338,2295,https://images.gr-assets.com/books/1344205853l/2615008.jpg,https://images.gr-assets.com/books/1344205853s/2615008.jpg\n6192,75020,75020,72565,55,345460065,9780345460070.0,Steve Berry,2004.0,The Romanov Prophecy,The Romanov Prophecy,eng,3.9,17052,18300,954,220,901,4627,7241,5311,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187735l/75020.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6193,6660747,6660747,6633597,18,446556823,9780446556830.0,Larissa Ione,2010.0,Ecstasy Unveiled,Ecstasy Unveiled (Demonica #4),eng,4.36,23366,24597,888,140,433,2892,8194,12938,https://images.gr-assets.com/books/1327876614l/6660747.jpg,https://images.gr-assets.com/books/1327876614s/6660747.jpg\n6194,1096390,1096390,1792422,91,374280967,9780374280960.0,Alan Bennett,2007.0,The Uncommon Reader ,The Uncommon Reader,eng,3.82,16957,22636,4211,308,1378,6039,9331,5580,https://images.gr-assets.com/books/1317064291l/1096390.jpg,https://images.gr-assets.com/books/1317064291s/1096390.jpg\n6195,22911,22911,935000,256,805210644,9780805210640.0,\"Franz Kafka, بهرام مقدادی\",1927.0,Amerika,Amerika,eng,3.73,14500,16845,640,300,1280,5012,6280,3973,https://images.gr-assets.com/books/1327894257l/22911.jpg,https://images.gr-assets.com/books/1327894257s/22911.jpg\n6196,831829,831829,280664,17,971977550,9780971977560.0,\"Steve Niles, Ben Templesmith\",2001.0,30 Days of Night,\"30 Days of Night, Vol. 1\",,3.81,15532,15895,467,430,1326,4123,4993,5023,https://images.gr-assets.com/books/1178747918l/831829.jpg,https://images.gr-assets.com/books/1178747918s/831829.jpg\n6197,197459,197459,3239312,36,60827696,9780060827690.0,Erin Hunter,2006.0,Sunset,\"Sunset (Warriors: The New Prophecy, #6)\",en-US,4.35,20148,21076,371,200,642,2806,5263,12165,https://images.gr-assets.com/books/1363488668l/197459.jpg,https://images.gr-assets.com/books/1363488668s/197459.jpg\n6198,9666241,9666241,14553962,7,,9789770929380.0,\"يوسف زيدان, Youssef Ziedan\",2010.0,النبطي,النبطي,ara,3.43,11218,12615,1602,709,1626,4112,3913,2255,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1289296320l/9666241.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6199,11045709,11045709,15966434,29,1565126297,9781565126300.0,Hillary Jordan,2011.0,When She Woke,When She Woke,eng,3.67,19553,21537,3869,528,1771,6346,8527,4365,https://images.gr-assets.com/books/1358274814l/11045709.jpg,https://images.gr-assets.com/books/1358274814s/11045709.jpg\n6200,300226,300226,2967387,66,446321214,9780446321210.0,Sidney Sheldon,1970.0,The Naked Face,The Naked Face,eng,3.51,13862,14829,432,341,1706,5510,4656,2616,https://images.gr-assets.com/books/1398003487l/300226.jpg,https://images.gr-assets.com/books/1398003487s/300226.jpg\n6201,93726,93726,1128931,79,60096152,9780060096150.0,Meg Cabot,2006.0,Princess in Training,\"Princess in Training (The Princess Diaries, #6)\",,3.7,23199,25362,584,375,2168,8440,8115,6264,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266470703l/93726.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6202,1566053,1566053,1558637,18,306816083,9780306816090.0,\"Christopher Hitchens, Titus Lucretius Carus, Omar Khayyám, Thomas Hobbes, Baruch Spinoza, David Hume, James Boswell, Percy Bysshe Shelley, George Eliot, Charles Darwin, Leslie Stephen, Anatole France, Mark Twain, Joseph Conrad, Thomas Hardy, Emma Goldman, H.P. Lovecraft, Carl Van Doren, H.L. Mencken, Sigmund Freud, Albert Einstein, George Orwell, John Betjeman, Chapman Cohen, Bertrand Russell, Philip Larkin, Martin Gardner, Carl Sagan, John Updike, John Leslie Mackie, Michael Shermer, A.J. Ayer, Daniel C. Dennett, Charles Templeton, Richard Dawkins, Victor J. Stenger, Elizabeth S.  Anderson, Penn Jillette, Ian McEwan, Steven Weinberg, Salman Rushdie, Ibn Warraq, Sam Harris, A.C. Grayling, Ayaan Hirsi Ali, John Stuart Mill, Karl Marx\",2007.0,The Portable Atheist: Essential Readings for the Non-believer,The Portable Atheist: Essential Readings for the Nonbeliever,eng,4.02,14209,14798,433,435,630,2727,5368,5638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435405001l/1566053._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6203,7715664,7715664,10083611,18,446556815,9780446556810.0,Larissa Ione,2010.0,Sin Undone,Sin Undone (Demonica #5),eng,4.35,22815,23930,882,186,485,2903,7550,12806,https://images.gr-assets.com/books/1344263648l/7715664.jpg,https://images.gr-assets.com/books/1344263648s/7715664.jpg\n6204,10238,10238,1637223,63,1570625190,9781570625190.0,Fritjof Capra,1975.0,The Tao of Physics: An Exploration of the Parallels Between Modern Physics and Eastern Mysticism,The Tao of Physics: An Exploration of the Parallels between Modern Physics and Eastern Mysticism,eng,3.96,12576,13762,425,318,750,2973,4794,4927,https://images.gr-assets.com/books/1327908532l/10238.jpg,https://images.gr-assets.com/books/1327908532s/10238.jpg\n6206,26158341,26158341,46115850,11,,,Kathryn Croft,2015.0,The Girl With No Past,The Girl With No Past,en-US,3.59,15572,15764,1063,577,1570,4786,5674,3157,https://images.gr-assets.com/books/1440440726l/26158341.jpg,https://images.gr-assets.com/books/1440440726s/26158341.jpg\n6207,18077752,18077752,25384096,40,374104115,9780374104120.0,Jeff VanderMeer,2014.0,Acceptance,\"Acceptance (Southern Reach, #3)\",eng,3.58,13765,16593,2026,424,1860,5119,6065,3125,https://images.gr-assets.com/books/1403941598l/18077752.jpg,https://images.gr-assets.com/books/1403941598s/18077752.jpg\n6208,12958487,12958487,18115826,17,,,Kristen Ashley,2011.0,Lady Luck,\"Lady Luck (Colorado Mountain, #3)\",eng,4.44,28620,30775,1844,180,529,2862,9325,17879,https://images.gr-assets.com/books/1327912930l/12958487.jpg,https://images.gr-assets.com/books/1327912930s/12958487.jpg\n6209,6609714,6609714,6803681,34,545140315,9780545140320.0,Elizabeth Eulberg,2010.0,The Lonely Hearts Club,\"The Lonely Hearts Club (The Lonely Hearts Club, #1)\",eng,3.83,18208,21410,1986,486,1678,5368,7293,6585,https://images.gr-assets.com/books/1479699351l/6609714.jpg,https://images.gr-assets.com/books/1479699351s/6609714.jpg\n6210,107776,107776,1010164,48,074347418X,9780743474180.0,Julie Garwood,1999.0,Ransom,\"Ransom (Highlands' Lairds, #2)\",en-US,4.33,22116,24323,991,110,541,3237,7773,12662,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429128307l/107776.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6211,16316,16316,721292,143,7120818,9780007120820.0,Agatha Christie,1927.0,The Big Four,\"The Big Four (Hercule Poirot, #5)\",eng,3.6,17820,21564,1331,655,2484,6645,6741,5039,https://images.gr-assets.com/books/1372506728l/16316.jpg,https://images.gr-assets.com/books/1372506728s/16316.jpg\n6212,16424,16424,2991011,204,7119305,9780007119300.0,Agatha Christie,1932.0,Peril at End House,\"Peril at End House (Hercule Poirot, #8)\",eng,3.89,19463,23119,1115,98,803,6497,9806,5915,https://images.gr-assets.com/books/1327938128l/16424.jpg,https://images.gr-assets.com/books/1327938128s/16424.jpg\n6213,23346719,23346719,40851119,73,857522817,9780857522820.0,Renée Knight,2015.0,Disclaimer,Disclaimer,eng,3.58,11329,16820,2379,540,1584,5210,6557,2929,https://images.gr-assets.com/books/1417259186l/23346719.jpg,https://images.gr-assets.com/books/1417259186s/23346719.jpg\n6215,10314376,10314376,14511050,134,547577532,9780547577530.0,\"Umberto Eco, Richard Dixon\",2010.0,Il cimitero di Praga,The Prague Cemetery,en-US,3.39,11974,17356,1928,1072,2393,5424,5584,2883,https://images.gr-assets.com/books/1327902035l/10314376.jpg,https://images.gr-assets.com/books/1327902035s/10314376.jpg\n6216,7176578,7176578,7627945,70,1400069262,9781400069260.0,Yann Martel,2010.0,Beatrice and Virgil,Beatrice and Virgil,eng,3.13,15076,16991,2817,1878,3191,5198,4308,2416,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442463960l/7176578._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6217,885744,885744,1353328,15,1569319022,9781569319020.0,Hiroyuki Takei,1998.0,シャーマンキング 1,\"Shaman King, Vol. 1: A Shaman in Tokyo\",eng,4.14,14043,14100,93,268,742,2639,3610,6841,https://images.gr-assets.com/books/1444234846l/885744.jpg,https://images.gr-assets.com/books/1444234846s/885744.jpg\n6218,187049,187049,6785716,36,765341840,9780765341850.0,Robert Jordan,1990.0,\"Eye of the World (The Wheel of Time, #1-1)\",\"From the Two Rivers: The Eye of the World, Part 1 (Wheel of time, #1-1)\",eng,4.26,13686,14317,115,394,477,1775,4006,7665,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388376369l/187049.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6219,33426,33426,629317,41,192861891,9780192861890.0,Michio Kaku,1994.0,\"Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, and the Tenth Dimension\",Hyperspace,eng,4.11,13941,15150,405,276,624,2622,5315,6313,https://images.gr-assets.com/books/1404794967l/33426.jpg,https://images.gr-assets.com/books/1404794967s/33426.jpg\n6220,835623,835623,2085667,51,393318486,9780393318490.0,Steven Pinker,1997.0,How the Mind Works,How the Mind Works,eng,3.97,13516,14467,426,391,770,2892,5283,5131,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387741747l/835623.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6222,8139321,8139321,12935753,18,310266289,9780310266280.0,Karen Kingsbury,2011.0,Leaving,\"Leaving (Bailey Flanigan, #1)\",en-US,4.22,13616,14364,476,325,592,2073,3937,7437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438243168l/8139321._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6223,3763,3763,171188,135,142003239,9780142003240.0,Ian Fleming,1954.0,Live and Let Die,\"Live and Let Die (James Bond, #2)\",eng,3.62,14230,17626,1146,218,1337,6315,6773,2983,https://images.gr-assets.com/books/1327953982l/3763.jpg,https://images.gr-assets.com/books/1327953982s/3763.jpg\n6225,584637,584637,1086777,251,087220605X,9780872206050.0,\"John Stuart Mill, George Sher\",1861.0,Utilitarianism,Utilitarianism,eng,3.65,14699,15684,229,422,1440,4963,5307,3552,https://images.gr-assets.com/books/1405624617l/584637.jpg,https://images.gr-assets.com/books/1405624617s/584637.jpg\n6226,11861815,11861815,16818567,20,1442444924,9781442444930.0,Andrew  Smith,2013.0,Winger,\"Winger (Winger, #1)\",eng,4.08,18596,19460,3851,748,1041,2875,6043,8753,https://images.gr-assets.com/books/1367927656l/11861815.jpg,https://images.gr-assets.com/books/1367927656s/11861815.jpg\n6227,25142924,25142924,44611588,37,62294415,9780062294420.0,Mitch Albom,2012.0,The Magic Strings of Frankie Presto,The Magic Strings of Frankie Presto,eng,4.32,15701,18828,3031,336,520,2038,5873,10061,https://images.gr-assets.com/books/1426364478l/25142924.jpg,https://images.gr-assets.com/books/1426364478s/25142924.jpg\n6228,23157777,23157777,42704733,22,553392921,9780553392920.0,Robin Hobb,2015.0,Fool's Quest,\"Fool's Quest  (The Fitz and The Fool, #2)\",eng,4.53,12374,17140,1252,50,159,1125,5172,10634,https://images.gr-assets.com/books/1420496252l/23157777.jpg,https://images.gr-assets.com/books/1420496252s/23157777.jpg\n6229,127515,127515,864848,58,684852586,9780684852580.0,Jack Finney,1955.0,The Body Snatchers,Invasion of the Body Snatchers,eng,3.88,14700,15809,559,251,962,4123,5573,4900,https://images.gr-assets.com/books/1344394499l/127515.jpg,https://images.gr-assets.com/books/1344394499s/127515.jpg\n6230,824508,824508,2756729,72,380732238,9780380732230.0,Melvin Burgess,1996.0,Junk,Smack,en-US,3.87,11971,15614,649,364,1147,3842,5076,5185,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347695254l/824508.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6231,22381892,22381892,41797265,17,,,\"Bill O'Reilly, Martin Dugard\",2014.0,Killing Patton: The Strange Death of World War II's Most Audacious General,Killing Patton: The Strange Death of World War II's Most Audacious General,eng,4.08,13706,15438,1813,263,546,2623,6243,5763,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401543704l/22381892.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6232,8686068,8686068,13558363,64,312375069,9780312375060.0,\"Keigo Higashino, Alexander O. Smith\",2005.0,容疑者Xの献身 [Yōgisha X no kenshin],The Devotion of Suspect X,,4.05,12336,16654,2562,140,633,3108,7197,5576,https://images.gr-assets.com/books/1312051518l/8686068.jpg,https://images.gr-assets.com/books/1312051518s/8686068.jpg\n6233,227778,227778,1149648,37,807218987,9780807218980.0,Jenny Nimmo,2003.0,Charlie Bone and the Time Twister ,\"Charlie Bone and the Time Twister (The Children of the Red King, #2)\",,3.88,18374,19680,488,292,1090,5345,6894,6059,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1256042249l/227778.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6234,23965,23965,1087464,58,8433972618,9788433972610.0,Irvine Welsh,2005.0,Porno,Porno,,3.78,13049,15315,470,221,1029,4352,6056,3657,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167484379l/23965._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6235,106129,106129,847798,33,439545269,9780439545270.0,Jenny Nimmo,2004.0,\"Charlie Bone and the Invisible Boy (The Children of the Red King, # 3)\",\"Charlie Bone and the Invisible Boy (The Children of the Red King, #3)\",eng,3.89,19080,19833,372,281,1137,5345,6732,6338,https://images.gr-assets.com/books/1328867540l/106129.jpg,https://images.gr-assets.com/books/1328867540s/106129.jpg\n6236,13603717,13603717,19197480,8,,,Hugh Howey,2012.0,First Shift: Legacy,\"First Shift: Legacy (Shift, #1)\",eng,4.21,15136,15475,829,91,321,2287,6302,6474,https://images.gr-assets.com/books/1334528415l/13603717.jpg,https://images.gr-assets.com/books/1334528415s/13603717.jpg\n6237,6455256,6455256,6645508,49,316036226,9780316036220.0,\"James Patterson, Michael Ledwidge\",2010.0,Worst Case,\"Worst Case (Michael Bennett, #3)\",eng,4.0,16461,19142,1187,141,634,4340,8066,5961,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439067365l/6455256._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6238,93797,93797,90418,47,451209303,9780451209310.0,Daniel Silva,1996.0,The Unlikely Spy,The Unlikely Spy,eng,4.22,14928,17139,680,136,407,2463,6670,7463,https://images.gr-assets.com/books/1309203396l/93797.jpg,https://images.gr-assets.com/books/1309203396s/93797.jpg\n6239,5111039,5111039,5177807,14,006128887X,9780061288880.0,Ellen Schreiber,2009.0,\"Royal Blood (Vampire Kisses, #6)\",\"Royal Blood (Vampire Kisses, #6)\",eng,4.09,20049,20485,346,411,1225,4169,4931,9749,https://images.gr-assets.com/books/1318011052l/5111039.jpg,https://images.gr-assets.com/books/1318011052s/5111039.jpg\n6240,15018,15018,13649393,38,1571741038,9781571741040.0,Neale Donald Walsch,1996.0,\"Conversations with God, an uncommon dialogue, book 3\",\"Conversations With God: An Uncommon Dialogue, Book 3\",eng,4.18,12301,12866,163,316,573,2069,3394,6514,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440034217l/15018._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6241,24728470,24728470,43579550,36,1101875100,9781101875100.0,Patti Smith,2015.0,M Train,M Train,eng,3.94,15634,18895,2040,762,1128,3562,6555,6888,https://images.gr-assets.com/books/1429289871l/24728470.jpg,https://images.gr-assets.com/books/1429289871s/24728470.jpg\n6242,91440,91440,1524121,53,60786469,9780060786460.0,Louise Erdrich,1984.0,Love Medicine,Love Medicine,en-US,3.98,15351,17029,1148,248,812,3544,6842,5583,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442951349l/91440._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6243,7932146,7932146,11259924,38,446577898,9780446577890.0,Brad Meltzer,2011.0,The Inner Circle,\"The Inner Circle (Culper Ring, #1)\",eng,3.76,14706,16525,1421,344,1120,4546,6633,3882,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442612340l/7932146._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6244,669570,669570,655608,13,1599900572,9781599900580.0,Jessica Day George,2006.0,\"Dragon Slippers (Dragon Slippers, #1)\",\"Dragon Slippers (Dragon Slippers, #1)\",en-US,4.22,20916,22475,2040,268,592,3415,7794,10406,https://images.gr-assets.com/books/1316730294l/669570.jpg,https://images.gr-assets.com/books/1316730294s/669570.jpg\n6245,26025989,26025989,45949491,29,399173595,9780399173590.0,Carrie Fisher,2016.0,The Princess Diarist,The Princess Diarist,eng,3.66,18655,23354,4002,376,1952,7719,8535,4772,https://images.gr-assets.com/books/1496315917l/26025989.jpg,https://images.gr-assets.com/books/1496315917s/26025989.jpg\n6246,8447255,8447255,13311158,25,593046358,9780593046360.0,Steven Erikson,2011.0,The Crippled God,\"The Crippled God (The Malazan Book of the Fallen, #10)\",eng,4.44,14472,16590,720,133,392,1553,4461,10051,https://images.gr-assets.com/books/1320388198l/8447255.jpg,https://images.gr-assets.com/books/1320388198s/8447255.jpg\n6247,13545345,13545345,17381882,51,085707685X,9780857076850.0,Rachel Renée Russell,2012.0,Tales From a Not-So-Graceful Ice Princess,\"Tales from a Not-So-Graceful Ice Princess (Dork Diaries, #4)\",,4.38,13618,15518,678,297,511,1812,3349,9549,https://images.gr-assets.com/books/1370064558l/13545345.jpg,https://images.gr-assets.com/books/1370064558s/13545345.jpg\n6248,7124095,7124095,6474015,39,1416979182,9781416979180.0,Lisa McMann,2010.0,Gone ,\"Gone (Wake, #3)\",eng,3.72,24393,26058,1903,659,2657,7375,7894,7473,https://images.gr-assets.com/books/1269866682l/7124095.jpg,https://images.gr-assets.com/books/1269866682s/7124095.jpg\n6249,105703,105703,939995,20,1401203140,9781401203150.0,\"Brian K. Vaughan, Niko Henrichon\",2006.0,Pride of Baghdad,Pride of Baghdad,eng,3.88,17203,18146,1291,416,1240,4268,6350,5872,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6250,23929479,23929479,43535062,82,2081354802,9782081354810.0,Michel Houellebecq,2015.0,Soumission ,Soumission,fre,3.63,6967,17428,1925,478,1533,5171,7085,3161,https://images.gr-assets.com/books/1421431410l/23929479.jpg,https://images.gr-assets.com/books/1421431410s/23929479.jpg\n6251,1897,1897,809841,31,385488181,9780385488180.0,Jon Krakauer,1990.0,Eiger Dreams: Ventures Among Men and Mountains,Eiger Dreams: Ventures Among Men and Mountains,,3.97,14010,15074,499,108,472,3588,6525,4381,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388341505l/1897.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6252,29397,29397,1745528,32,345479718,9780345479720.0,Richard K. Morgan,2005.0,Woken Furies,\"Woken Furies (Takeshi Kovacs, #3)\",eng,4.1,14540,16420,456,108,545,2986,6799,5982,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198991l/29397.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6254,7719355,7719355,10463674,30,316074152,9780316074160.0,Gail Carriger,2010.0,Blameless,\"Blameless (Parasol Protectorate, #3)\",eng,4.01,26921,29216,2423,113,899,6491,12936,8777,https://images.gr-assets.com/books/1293436281l/7719355.jpg,https://images.gr-assets.com/books/1293436281s/7719355.jpg\n6255,12499,12499,14795,18,738210072,9780738210070.0,Jenny McCarthy,2004.0,Belly Laughs: The Naked Truth About Pregnancy and Childbirth,Belly Laughs: The Naked Truth About Pregnancy and Childbirth,,3.72,12382,13804,1926,469,1329,3601,4579,3826,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442810081l/12499._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6256,567704,567704,1371342,35,61053716,9780061053720.0,Clive Barker,1991.0,Imajica,Imajica,eng,4.16,15600,17498,702,311,837,2823,5378,8149,https://images.gr-assets.com/books/1333844729l/567704.jpg,https://images.gr-assets.com/books/1333844729s/567704.jpg\n6257,53343,53343,1139032,47,60891548,9780060891540.0,William Zinsser,1976.0,On Writing Well: The Classic Guide to Writing Nonfiction,On Writing Well: The Classic Guide to Writing Nonfiction,eng,4.23,14564,16300,1174,89,390,2492,5962,7367,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538764251l/53343.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6258,134353,134353,2070161,67,60724277,9780060724280.0,Thomas A. Harris,1967.0,I'm OK-You're OK,I'm OK - You're OK,en-US,3.7,12756,13746,276,328,1303,4207,4243,3665,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348146688l/134353.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6259,22026,22026,812174,94,345441702,9780345441710.0,Mario Puzo,1984.0,The Sicilian,The Sicilian,eng,3.94,13800,15057,483,114,705,3708,5956,4574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427584738l/22026.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6260,25776210,25776210,30158053,24,425256766,9780425256760.0,Patricia Briggs,2016.0,Fire Touched,\"Fire Touched (Mercy Thompson, #9)\",eng,4.35,18123,23666,2370,66,275,2659,8887,11779,https://images.gr-assets.com/books/1441912000l/25776210.jpg,https://images.gr-assets.com/books/1441912000s/25776210.jpg\n6261,34312,34312,1163779,60,752876813,9780752876820.0,Maeve Binchy,1992.0,The Copper Beech,The Copper Beech,eng,3.89,16931,17989,418,110,721,5249,6935,4974,https://images.gr-assets.com/books/1355114025l/34312.jpg,https://images.gr-assets.com/books/1355114025s/34312.jpg\n6262,1422926,1422926,1413359,14,307140210,9780307140210.0,\"Jane Werner Watson, Corinne Malvern\",1950.0,Frosty the Snow Man,Frosty the Snow Man,,4.25,16375,16497,53,289,652,2824,3558,9174,https://images.gr-assets.com/books/1309642075l/1422926.jpg,https://images.gr-assets.com/books/1309642075s/1422926.jpg\n6263,2696181,2696181,2721510,22,312370156,9780312370150.0,S.A. Bodeen,2008.0,The Compound,\"The Compound (The Compound, #1)\",en-US,3.87,17687,18515,2341,437,1304,4443,6448,5883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1546080394l/2696181.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6264,12663,12663,1017593,33,749311614,9780749311610.0,James A. Michener,1980.0,The Covenant,The Covenant,en-GB,4.17,15610,16533,343,102,430,2936,6120,6945,https://images.gr-assets.com/books/1310975573l/12663.jpg,https://images.gr-assets.com/books/1310975573s/12663.jpg\n6265,141828,141828,136792,128,2253140872,9782253140870.0,Boris Vian,1947.0,L’écume des jours,L'Écume des jours,fre,4.02,13580,18358,761,582,1150,3230,5835,7561,https://images.gr-assets.com/books/1332596603l/141828.jpg,https://images.gr-assets.com/books/1332596603s/141828.jpg\n6266,10637748,10637748,15367524,22,1442422017,9781442422020.0,Kimberly Derting,2011.0,The Pledge,\"The Pledge (The Pledge, #1)\",eng,3.8,25322,26646,2419,681,2140,6696,9374,7755,https://images.gr-assets.com/books/1327878861l/10637748.jpg,https://images.gr-assets.com/books/1327878861s/10637748.jpg\n6267,85491,85491,1005181,70,515132187,9780515132180.0,Nora Roberts,2001.0,The Villa,The Villa,en-US,3.94,20328,22121,650,243,1127,5755,7683,7313,https://images.gr-assets.com/books/1351343027l/85491.jpg,https://images.gr-assets.com/books/1351343027s/85491.jpg\n6269,180426,180426,174338,31,843956534,9780843956540.0,Christine Feehan,1999.0,Dark Desire,\"Dark Desire (Dark, #2)\",en-US,4.2,21606,23755,701,239,893,3984,7501,11138,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425949367l/180426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6270,13170596,13170596,18349959,19,62071076,9780062071070.0,Dan Wells,2013.0,Fragments,\"Fragments (Partials Sequence, #2)\",eng,4.12,19108,20491,1720,209,622,3590,8173,7897,https://images.gr-assets.com/books/1352943797l/13170596.jpg,https://images.gr-assets.com/books/1352943797s/13170596.jpg\n6271,10428803,10428803,15333212,34,62068520,9780062068520.0,Sarah MacLean,2012.0,A Rogue by Any Other Name,\"A Rogue by Any Other Name (The Rules of Scoundrels, #1)\",eng,3.95,21565,24286,1944,534,1175,5297,9365,7915,https://images.gr-assets.com/books/1327928208l/10428803.jpg,https://images.gr-assets.com/books/1327928208s/10428803.jpg\n6272,92307,92307,1309352,81,60638508,9780060638500.0,Martin Heidegger,1927.0,Sein und Zeit,Being and Time,eng,3.99,14383,15501,437,547,919,2995,4666,6374,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298438455l/92307.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6273,4652,4652,8261,55,684822761,9780684822770.0,Ernest Hemingway,1925.0,In Our Time,In Our Time,,3.8,14912,16010,730,311,1086,4413,5878,4322,https://images.gr-assets.com/books/1369859426l/4652.jpg,https://images.gr-assets.com/books/1369859426s/4652.jpg\n6274,25078,25078,25833,18,60974990,9780060974990.0,Jonathan Kozol,1991.0,Savage Inequalities: Children in America's Schools,Savage Inequalities: Children in America's Schools,en-US,4.23,13743,13999,635,109,326,2000,5310,6254,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439920769l/25078._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6276,7201,7201,2630354,58,312997116,9780312997110.0,Jeffrey Archer,1990.0,As The Crow Flies,As the Crow Flies,,4.05,14415,16020,631,131,569,3282,6349,5689,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202784l/7201.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6277,142540,142540,2488095,65,684855631,9780684855640.0,Jeffery Deaver,2000.0,The Empty Chair ,\"The Empty Chair (Lincoln Rhyme, #3)\",en-US,4.06,16751,18900,625,93,494,3935,8079,6299,https://images.gr-assets.com/books/1336331745l/142540.jpg,https://images.gr-assets.com/books/1336331745s/142540.jpg\n6278,18869967,18869967,430524,117,316252905,9780316252900.0,Daphne du Maurier,1935.0,Jamaica Inn,Jamaica Inn,eng,3.85,8392,20557,1669,252,1163,5444,8349,5349,https://images.gr-assets.com/books/1386605082l/18869967.jpg,https://images.gr-assets.com/books/1386605082s/18869967.jpg\n6279,428042,428042,2519210,44,60531827,9780060531830.0,Kenneth Oppel,2004.0,Airborn,\"Airborn (Matt Cruse, #1)\",eng,4.16,18717,20114,1694,311,600,3266,7246,8691,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350089l/428042.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6281,24473465,23460947,43193467,58,,,Daniel Silva,2015.0,The English Spy,\"The English Spy (Gabriel Allon, #15)\",eng,4.16,7983,16045,1340,205,473,2345,6513,6509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436032291l/24473465._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6282,10431447,10431447,12905469,38,006202468X,9780062024690.0,\"Colin Meloy, Carson Ellis\",2011.0,Wildwood,\"Wildwood (Wildwood Chronicles, #1)\",eng,3.63,18770,20205,2798,835,2005,5678,6933,4754,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393683769l/10431447.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6283,9957,9957,1189398,43,99468387,9780099468390.0,Ian McEwan,1978.0,The Cement Garden,The Cement Garden,eng,3.57,14418,18301,1343,629,1845,5691,6733,3403,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166111732l/9957.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6284,28507,28507,1209968,27,553561405,9780553561400.0,\"Margaret Weis, Tracy Hickman\",1992.0,Serpent Mage,\"Serpent Mage (The Death Gate Cycle, #4)\",eng,4.06,17270,18051,138,121,672,3857,6839,6562,https://images.gr-assets.com/books/1327837018l/28507.jpg,https://images.gr-assets.com/books/1327837018s/28507.jpg\n6285,74812,74812,1461054,45,1416535071,9781416535070.0,Daniel Tammet,2006.0,Born on a Blue Day: Inside the Extraordinary Mind of an Autistic Savant,Born on a Blue Day: Inside the Extraordinary Mind of an Autistic Savant,en-US,3.84,14287,16092,1845,186,946,4355,6421,4184,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440235885l/74812._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6286,17560674,17560674,24490654,31,,,Rachel Van Dyken,2013.0,The Bet,\"The Bet (The Bet, #1)\",eng,3.85,26437,28316,2400,712,1941,6701,10604,8358,https://images.gr-assets.com/books/1362593639l/17560674.jpg,https://images.gr-assets.com/books/1362593639s/17560674.jpg\n6287,8564644,8564644,13433150,30,61930059,9780061930060.0,Conor Grennan,2010.0,Little Princes: One Man's Promise to Bring Home the Lost Children of Nepal,Little Princes: One Man's Promise to Bring Home the Lost Children of Nepal,en-US,4.25,14765,15834,2210,144,378,2121,5861,7330,https://images.gr-assets.com/books/1279553857l/8564644.jpg,https://images.gr-assets.com/books/1279553857s/8564644.jpg\n6288,968403,968403,953300,43,1400066336,9781400066340.0,Kaui Hart Hemmings,2007.0,The Descendants,The Descendants,,3.82,14124,17650,2254,191,951,4565,8062,3881,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1327991934l/968403.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6290,954303,954303,939213,6,345496205,9780345496200.0,\"Natsumi Ando, Miyuki Kobayashi\",2005.0,Kitchen no Ohimesama,\"Kitchen Princess, Vol. 01 (Kitchen Princess, #1)\",en-US,4.16,16281,16318,289,463,899,2712,3713,8531,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390458957l/954303.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6291,79834,79834,1222321,107,99416425,9780099416420.0,Irving Stone,1934.0,Lust for Life: A Novel of Vincent Van Gogh,Lust for Life,eng,4.19,13082,15758,810,217,489,2422,5528,7102,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348532272l/79834.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6292,5585788,5585788,5757031,23,451462807,9780451462800.0,Faith Hunter,2009.0,Skinwalker,\"Skinwalker (Jane Yellowrock, #1)\",en-US,3.89,23233,25531,1528,758,1549,5741,9218,8265,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400516601l/5585788.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6293,648194,648194,634333,29,60564652,9780060564650.0,Mary Kay Andrews,2004.0,Hissy Fit,Hissy Fit,en-GB,3.96,16406,18023,1224,230,792,4359,6793,5849,https://images.gr-assets.com/books/1355940330l/648194.jpg,https://images.gr-assets.com/books/1355940330s/648194.jpg\n6294,11343348,11343348,16272568,49,1846059739,9781846059740.0,\"James Patterson, Mark T. Sullivan\",2012.0,Private Games ,Private Games (Private #3),eng,3.83,14358,17578,1195,380,1104,4640,6527,4927,https://images.gr-assets.com/books/1498199246l/11343348.jpg,https://images.gr-assets.com/books/1498199246s/11343348.jpg\n6295,109901,109901,105919,27,143036424,9780143036420.0,Craig Johnson,2004.0,The Cold Dish,\"The Cold Dish (Walt Longmire, #1)\",eng,4.14,14491,18109,2456,178,470,2763,7978,6720,https://images.gr-assets.com/books/1398028367l/109901.jpg,https://images.gr-assets.com/books/1398028367s/109901.jpg\n6296,21060,21060,4398231,8,142301515,9780142301520.0,Sherwood Smith,1997.0,Crown Duel ,Crown Duel (Crown & Court #1-2),,4.19,19546,20200,913,336,827,3327,5927,9783,https://images.gr-assets.com/books/1360507771l/21060.jpg,https://images.gr-assets.com/books/1360507771s/21060.jpg\n6297,731804,731804,717994,12,60776390,9780060776400.0,\"Victoria Kann, Elizabeth Kann\",2006.0,Pinkalicious,Pinkalicious,en-US,4.05,16585,16659,727,479,1050,3219,4286,7625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348527891l/731804.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6298,5936,5936,1739475,8,374529604,9780374529600.0,\"Pablo Neruda, Ilan Stavans\",1974.0,The Poetry of Pablo Neruda,The Poetry of Pablo Neruda,en-US,4.44,14596,14698,239,94,223,1386,4373,8622,https://images.gr-assets.com/books/1417605511l/5936.jpg,https://images.gr-assets.com/books/1417605511s/5936.jpg\n6299,2872,2872,2220311,52,452283205,9780452283210.0,Tracy Chevalier,2001.0,Falling Angels,Falling Angels,eng,3.55,18465,19931,1260,395,2050,7071,6992,3423,https://images.gr-assets.com/books/1327995250l/2872.jpg,https://images.gr-assets.com/books/1327995250s/2872.jpg\n6300,194086,194086,187711,46,552772291,9780552772300.0,Madeleine Wickham,2001.0,Sleeping Arrangements,Sleeping Arrangements,eng,3.24,15689,18185,961,1124,3237,6712,4425,2687,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388327886l/194086.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6301,9975679,9975679,11163588,32,1606841750,9781606841750.0,Ilsa J. Bick,2011.0,Monsters,\"Ashes (Ashes Trilogy, #1)\",eng,3.94,19532,21937,2778,616,1295,4601,7735,7690,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181386l/9975679.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6302,91582,91582,2424548,469,486444074,9780486444080.0,\"Jane Austen, Robert William Chapman\",1871.0,Lady Susan,Lady Susan,eng,3.56,17003,20969,2047,375,2061,7667,7108,3758,https://images.gr-assets.com/books/1328864949l/91582.jpg,https://images.gr-assets.com/books/1328864949s/91582.jpg\n6304,35354,35354,1671916,70,743484363,9780743484370.0,Mary Higgins Clark,1994.0,Remember Me ,Remember Me,,3.91,16963,18604,466,93,714,5398,7045,5354,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348180116l/35354.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6305,1107001,1107001,1093941,13,894802046,9780894802040.0,\"Julee Rosso, Sheila Lukins, Michael McLaughlin\",1982.0,\"The Silver Palate Cookbook: Delicious Recipes, Menus, Tips, Lore From Manhattan's Celebrated  Gourmet  Food Shop.\",The Silver Palate Cookbook,,4.06,15267,15600,114,323,718,2986,5186,6387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387707639l/1107001.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6306,106648,106648,2324921,66,446354678,9780446354680.0,Sidney Sheldon,1990.0,Memories of Midnight,Memories of Midnight,eng,3.68,14196,15083,353,245,1217,5043,5179,3399,https://images.gr-assets.com/books/1501701194l/106648.jpg,https://images.gr-assets.com/books/1501701194s/106648.jpg\n6307,460635,460635,1294681,28,140089225,9780140089230.0,Keri Hulme,1984.0,The Bone People,The Bone People,en-US,4.06,15110,16372,1391,438,890,2762,5446,6836,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348988500l/460635.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6308,295305,295305,1193402,66,60728272,9780060728270.0,\"Michelle Paver, Geoff Taylor\",2004.0,Wolf Brother,\"Wolf Brother (Chronicles of Ancient Darkness, #1)\",en-US,4.15,15673,18078,1255,247,684,3136,6070,7941,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924715l/295305.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6309,17608111,17608111,24566794,21,356502023,9780356502020.0,Brian  McClellan,2014.0,The Crimson Campaign,\"The Crimson Campaign (Powder Mage, #2)\",eng,4.35,14292,17072,825,59,198,1608,6973,8234,https://images.gr-assets.com/books/1363102695l/17608111.jpg,https://images.gr-assets.com/books/1363102695s/17608111.jpg\n6310,15984268,15984268,21738568,41,316246573,9780316246580.0,Gavin Extence,2013.0,The Universe Versus Alex Woods,The Universe Versus Alex Woods,eng,4.08,12573,16730,2135,190,583,2915,7045,5997,https://images.gr-assets.com/books/1352436020l/15984268.jpg,https://images.gr-assets.com/books/1352436020s/15984268.jpg\n6311,296125,296125,1377688,32,1416927883,9781416927880.0,Marguerite Henry,1963.0,\"Stormy, Misty's Foal\",\"Stormy, Misty's Foal (Misty, #3)\",eng,4.06,17412,17838,142,104,603,4295,5885,6951,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388902693l/296125.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6312,6735082,6735082,6931373,21,3867197571,9783867197570.0,\"Tsugumi Ohba, Takeshi Obata, Diana Hammermeister\",2009.0,バクマン。 1,\"Bakuman, Band 1: Traum und Realität\",ger,4.18,14391,15682,398,350,689,2464,4389,7790,https://images.gr-assets.com/books/1346333264l/6735082.jpg,https://images.gr-assets.com/books/1346333264s/6735082.jpg\n6313,73084,73084,4853462,50,380776847,9780380776850.0,Susan Elizabeth Phillips,1995.0,\"Heaven, Texas\",\"Heaven, Texas (Chicago Stars, #2)\",en-US,4.08,23857,25784,1081,294,1026,4983,9528,9953,https://images.gr-assets.com/books/1308646849l/73084.jpg,https://images.gr-assets.com/books/1308646849s/73084.jpg\n6314,639787,639787,625995,203,425067947,9780425067950.0,Agatha Christie,1923.0,The Murder on the Links,\"The Murder on the Links (Hercule Poirot, #2)\",eng,3.8,18834,24000,1312,142,1100,7653,9666,5439,https://images.gr-assets.com/books/1384562979l/639787.jpg,https://images.gr-assets.com/books/1384562979s/639787.jpg\n6315,12331767,12331767,2270643,59,871404028,9780871404020.0,J.G. Ballard,1975.0,High-Rise,High-Rise,,3.68,9054,16156,1600,433,1480,4447,6305,3491,https://images.gr-assets.com/books/1358752559l/12331767.jpg,https://images.gr-assets.com/books/1358752559s/12331767.jpg\n6316,18304,18304,430063,423,1421270536,9781421270530.0,\"Friedrich Nietzsche, H.L. Mencken\",1888.0,Der Antichrist,The Anti-Christ,eng,3.91,10332,14903,611,309,906,3407,5414,4867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166894583l/18304._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6317,110890,110890,2567720,40,037541486X,9780375414860.0,Lawrence Wright,2006.0,The Looming Tower: Al-Qaeda and the Road to 9/11,The Looming Tower: Al-Qaeda and the Road to 9/11,en-US,4.38,12737,15017,1689,60,198,1486,5496,7777,https://images.gr-assets.com/books/1320471617l/110890.jpg,https://images.gr-assets.com/books/1320471617s/110890.jpg\n6318,16685,16685,2270807,38,441094996,9780441095000.0,Robert A. Heinlein,1985.0,The Cat Who Walks through Walls,The Cat Who Walks Through Walls (The World As Myth),en-US,3.7,17892,18395,561,454,1584,5372,6668,4317,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440037870l/16685._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6320,38505,38505,1195198,73,843391426X,9788433914260.0,Charles Bukowski,1989.0,Hollywood,Hollywood,,3.78,12923,14769,543,166,904,4410,5842,3447,https://images.gr-assets.com/books/1361998529l/38505.jpg,https://images.gr-assets.com/books/1361998529s/38505.jpg\n6321,2999282,2999282,3029771,48,752885170,9780752885180.0,Jeff Lindsay,2008.0,Dexter by Design,\"Dexter By Design (Dexter, #4)\",en-GB,3.72,16086,18937,1034,262,1334,6043,7072,4226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348308831l/2999282.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6322,7073,7073,1323492,67,345915623,9780345915630.0,John Irving,1994.0,A Son of the Circus,A Son of the Circus,,3.61,14878,16493,587,517,1560,5199,5799,3418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561342994l/7073.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6324,84052,84052,1686239,69,446602213,9780446602210.0,Sidney Sheldon,1995.0,\"Morning, Noon & Night\",\"Morning, Noon & Night\",eng,3.62,12679,14036,369,255,1355,4811,4639,2976,https://images.gr-assets.com/books/1344267638l/84052.jpg,https://images.gr-assets.com/books/1344267638s/84052.jpg\n6325,238141,238141,230675,50,425210731,9780425210730.0,J.D. Robb,2006.0,Memory in Death ,\"Memory in Death (In Death, #22)\",eng,4.31,19613,21497,546,62,286,3001,7654,10494,https://images.gr-assets.com/books/1299457743l/238141.jpg,https://images.gr-assets.com/books/1299457743s/238141.jpg\n6326,46114,46114,6057263,294,156949601,9780156949610.0,Virginia Woolf,1931.0,The Waves,The Waves,en-US,4.14,15965,18909,1420,438,980,3013,5515,8963,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439492320l/46114._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6327,280410,280410,3064865,15,385516401,9780385516400.0,Jeffrey Toobin,2007.0,The Nine: Inside the Secret World of the Supreme Court,The Nine: Inside the Secret World of the Supreme Court,en-US,4.06,12426,13660,1998,98,350,2352,6628,4232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441671544l/280410._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6328,9724798,9724798,14613617,35,452297036,9780452297040.0,Sarah Jio,2011.0,The Violets of March,The Violets of March,en-US,3.8,17379,19306,2581,401,1411,4916,7566,5012,https://images.gr-assets.com/books/1299776782l/9724798.jpg,https://images.gr-assets.com/books/1299776782s/9724798.jpg\n6329,8574333,8574333,13443181,77,307593916,9780307593920.0,\"Kyung-Sook Shin, 신경숙, Chi-Young Kim\",2008.0,엄마를 부탁해,Please Look After Mom,eng,3.76,12130,17739,3265,451,1389,4635,6721,4543,https://images.gr-assets.com/books/1320413213l/8574333.jpg,https://images.gr-assets.com/books/1320413213s/8574333.jpg\n6330,243298,243298,2971193,36,345388666,9780345388670.0,David Eddings,1993.0,The Shining Ones,\"The Shining Ones (The Tamuli, #2)\",,3.95,19083,19856,89,168,1035,5125,6920,6608,https://images.gr-assets.com/books/1403187182l/243298.jpg,https://images.gr-assets.com/books/1403187182s/243298.jpg\n6331,105973,105973,102154,30,785117210,9780785117220.0,\"Brian Michael Bendis, Olivier Coipel, Tim Townsend, Rick Magyar, John Dell, Scott Hanna, Frank D'Armata, Chris Eliopoulos, James Taveras, Omar Otieku, Tom Valente, Esad Ribic\",2006.0,House of M,House of M,eng,3.97,14960,15636,429,276,923,3357,5456,5624,https://images.gr-assets.com/books/1409502209l/105973.jpg,https://images.gr-assets.com/books/1409502209s/105973.jpg\n6332,6178065,6178065,4984643,30,525421351,9780525421350.0,Heather Brewer,2009.0,Tenth Grade Bleeds,\"Tenth Grade Bleeds (The Chronicles of Vladimir Tod, #3)\",en-US,4.24,17579,18510,725,201,607,3045,5261,9396,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437688794l/6178065._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6333,42696,42696,363317,35,60827882,9780060827880.0,Leon Uris,1976.0,Trinity: A Novel of Ireland,Trinity,,4.23,16056,16938,876,124,453,2625,6009,7727,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388450323l/42696.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6334,667234,667234,2244771,36,394800028,9780394800030.0,Dr. Seuss,1958.0,The Cat in the Hat Comes Back,The Cat in the Hat Comes Back,en-US,3.83,22229,22712,432,517,1886,6324,6309,7676,https://images.gr-assets.com/books/1332799738l/667234.jpg,https://images.gr-assets.com/books/1332799738s/667234.jpg\n6335,316496,316496,2304710,58,702229784,9780702229790.0,Peter Carey,1988.0,Oscar and Lucinda,Oscar and Lucinda,eng,3.72,15139,16639,687,601,1437,4298,5968,4335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173712561l/316496.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6336,7058,7058,5913189,55,375422730,9780375422740.0,Alexander McCall Smith,2007.0,The Good Husband of Zebra Drive,\"The Good Husband of Zebra Drive (No. 1 Ladies' Detective Agency, #8)\",en-US,4.06,18329,20218,1076,39,333,4263,9242,6341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439612347l/7058._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6337,827685,827685,358903,337,451527542,9780451527550.0,\"Booker T. Washington, Ishmael Reed\",1900.0,Up from Slavery,Up from Slavery,eng,4.09,15038,17525,840,265,743,3431,5818,7268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1178732859l/827685._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6338,93796,93796,90417,46,399154221,9780399154220.0,Daniel Silva,2007.0,The Secret Servant,\"The Secret Servant (Gabriel Allon, #7)\",eng,4.25,14335,16760,689,78,231,2271,7034,7146,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441892772l/93796._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6339,11201007,17948528,16101664,13,,2940012668930.0,Laura Kaye,2011.0,Hearts In Darkness,\"Hearts in Darkness (Hearts in Darkness, #1)\",eng,3.86,20939,32772,2624,641,2276,7991,11836,10028,https://images.gr-assets.com/books/1306632316l/11201007.jpg,https://images.gr-assets.com/books/1306632316s/11201007.jpg\n6340,61903,61903,9673658,42,743468422,9780743468430.0,Lois McMaster Bujold,1986.0,Shards of Honor,\"Shards of Honour  (Vorkosigan Saga, #1)\",eng,4.13,16756,21201,1241,176,755,3820,7916,8534,https://images.gr-assets.com/books/1392767899l/61903.jpg,https://images.gr-assets.com/books/1392767899s/61903.jpg\n6341,71292,71292,2150655,98,752866052,9780752866060.0,\"René Goscinny, Albert Uderzo, Anthea Bell, Derek Hockridge\",1960.0,Astérix le Gaulois,\"Asterix the Gaul (Asterix, #1)\",eng,4.18,16011,17468,339,150,499,3061,6054,7704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433174923l/71292._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6342,112872,112872,108680,41,1589190637,9781589190630.0,Jan Karon,1995.0,\"A Light in the Window (The Mitford Years, #2)\",\"A Light in the Window (Mitford Years, #2)\",,4.23,17083,18662,718,85,367,2974,7008,8228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171663777l/112872.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6343,16055475,16055475,21840842,27,1455574880,9781455574890.0,Jessica Sorensen,2013.0,The Forever of Ella and Micha,\"The Forever of Ella and Micha (The Secret, #2)\",eng,4.1,24776,27318,1559,255,938,4997,10677,10451,https://images.gr-assets.com/books/1363575595l/16055475.jpg,https://images.gr-assets.com/books/1363575595s/16055475.jpg\n6344,2210921,2210921,2457492,47,553804332,9780553804330.0,Lisa Gardner,2008.0,Say Goodbye,\"Say Goodbye (Quincy & Rainie, #6)\",eng,4.12,16057,17732,1055,147,509,3292,6945,6839,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388502668l/2210921.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6345,579143,579143,566055,19,307105474,9780307105480.0,Gertrude Crampton,1946.0,Scuffy the Tugboat and His Adventures Down the River,Scuffy the Tugboat (Big Little Golden Book),,4.11,17186,17750,117,198,772,4100,4444,8236,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175970914l/579143._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6346,111021,111021,106944,33,006074457X,9780060744570.0,Erin Hunter,2005.0,Dawn,\"Dawn (Warriors: The New Prophecy, #3)\",en-US,4.31,19824,20726,429,148,626,3130,5591,11231,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399845896l/111021.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6347,239388,239388,231888,8,307118398,9780307118390.0,Mercer Mayer,1977.0,Just Me and My Dad (Look-Look),Just Me and My Dad (Little Critter),en-US,4.19,16315,16356,157,207,614,3128,4293,8114,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1559954647l/239388.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6348,34760,34760,2399046,42,034546639X,9780345466400.0,Robert Fulghum,1986.0,All I Really Need To Know I Learned in Kindergarten,All I Really Need to Know I Learned in Kindergarten,eng,4.03,15816,17227,708,229,843,3655,5992,6508,https://images.gr-assets.com/books/1403541609l/34760.jpg,https://images.gr-assets.com/books/1403541609s/34760.jpg\n6349,144792,144792,955290,42,312981260,9780312981270.0,Matthew Reilly,1999.0,Temple,Temple,eng,4.04,14961,16027,492,254,726,3221,5765,6061,https://images.gr-assets.com/books/1312054860l/144792.jpg,https://images.gr-assets.com/books/1312054860s/144792.jpg\n6350,555500,555500,2690582,26,786837888,9780786837880.0,\"Dave Barry, Ridley Pearson, Greg Call\",2007.0,Peter and the Secret of Rundoon,\"Peter and the Secret of Rundoon (Peter and the Starcatchers, #3)\",en-US,4.16,18570,19299,858,246,522,3476,6702,8353,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442639284l/555500._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6351,3858,3858,4227,29,767915747,9780767915750.0,Sarah Macdonald,2002.0,Holy Cow: An Indian Adventure,Holy Cow: An Indian Adventure,eng,3.51,13627,14205,1088,674,1599,4467,4672,2793,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290849l/3858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6352,13272498,13272498,18476346,62,345515633,9780345515640.0,Tess Gerritsen,2012.0,Last to Die,\"Last to Die (Rizzoli & Isles, #10)\",,4.1,16036,20098,1586,97,530,3739,8645,7087,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194995l/13272498.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6353,6931246,6931246,8814204,31,034549749X,9780345497500.0,China Miéville,2010.0,Kraken: An Anatomy,Kraken,,3.6,16078,18719,2438,724,1907,5291,6969,3828,https://images.gr-assets.com/books/1320551670l/6931246.jpg,https://images.gr-assets.com/books/1320551670s/6931246.jpg\n6354,10031,10031,12776,116,184391400X,9781843914010.0,Jean-Paul Sartre,1939.0,Le Mur,The Wall,eng,4.07,12180,15562,452,156,524,3031,6228,5623,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348089757l/10031.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6355,18764826,18764826,23967072,21,1476702993,9781476703000.0,Lisa Jewell,2013.0,The House We Grew Up In,The House We Grew Up In,eng,3.88,11546,15491,1929,230,710,3578,7105,3868,https://images.gr-assets.com/books/1407719574l/18764826.jpg,https://images.gr-assets.com/books/1407719574s/18764826.jpg\n6356,13337715,13337715,21855986,47,7466064,9780007466060.0,George R.R. Martin,2011.0,A Dance With Dragons: Part 1 Dreams and Dust,\"A Dance with Dragons: Dreams and Dust (A Song of Ice and Fire #5, Part 1 of 2)\",en-GB,4.32,11636,17095,721,63,257,2116,6372,8287,https://images.gr-assets.com/books/1331401651l/13337715.jpg,https://images.gr-assets.com/books/1331401651s/13337715.jpg\n6357,10517947,10517947,15423995,22,141658661X,9781416586620.0,Brad Thor,2011.0,Full Black,\"Full Black (Scot Harvath, #10)\",en-US,4.26,13240,15220,646,142,350,2084,5510,7134,https://images.gr-assets.com/books/1393773645l/10517947.jpg,https://images.gr-assets.com/books/1393773645s/10517947.jpg\n6359,17488,17488,6474909,109,340796146,9780340796150.0,Enid Blyton,1942.0,Five on a Treasure Island ,\"Five on a Treasure Island (Famous Five, #1)\",eng,4.06,15877,18381,689,179,651,4031,6533,6987,https://images.gr-assets.com/books/1408926754l/17488.jpg,https://images.gr-assets.com/books/1408926754s/17488.jpg\n6360,675905,675905,661908,10,312997191,9780312997200.0,Elin Hilderbrand,2003.0,Summer People,Summer People,eng,3.93,14369,15792,623,126,649,4124,6239,4654,https://images.gr-assets.com/books/1317063942l/675905.jpg,https://images.gr-assets.com/books/1317063942s/675905.jpg\n6361,70489,70489,170846,22,836213122,9780836213130.0,Bill Watterson,1996.0,There's Treasure Everywhere: A Calvin and Hobbes Collection,There's Treasure Everywhere: A Calvin and Hobbes Collection,eng,4.74,16766,17285,149,22,69,680,2822,13692,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1409957304l/70489.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6362,282425,282425,273978,10,1569319960,9781569319960.0,\"Yoko Kamio, 神尾葉子\",1992.0,花より男子 1,\"Boys Over Flowers: Hana Yori Dango, Vol. 1 (Boys Over Flowers, #1)\",eng,4.12,14295,14406,209,509,860,2398,3330,7309,https://images.gr-assets.com/books/1357464446l/282425.jpg,https://images.gr-assets.com/books/1357464446s/282425.jpg\n6363,7841446,7841446,10934698,1,1416596585,9781416596580.0,Steven Levy,2011.0,\"In the Plex: How Google Thinks, Works, and Shapes Our Lives\",\"In the Plex: How Google Thinks, Works, and Shapes Our Lives\",en-US,3.83,18464,19475,806,869,1182,4142,7383,5899,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442810207l/7841446._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6364,28923,28923,3333606,74,571225403,9780571225410.0,Kazuo Ishiguro,2000.0,When We Were Orphans,When We Were Orphans,eng,3.45,13886,17018,1616,436,2011,6325,6023,2223,https://images.gr-assets.com/books/1465820100l/28923.jpg,https://images.gr-assets.com/books/1465820100s/28923.jpg\n6366,6407014,6407014,6595917,23,393068579,9780393068570.0,David Small,2009.0,Stitches: A Memoir,Stitches,eng,4.03,17589,18778,2540,358,824,3450,7383,6763,https://images.gr-assets.com/books/1327728261l/6407014.jpg,https://images.gr-assets.com/books/1327728261s/6407014.jpg\n6367,10836810,10836810,15467346,9,1594488134,9781594488140.0,Ellis Avery,2012.0,The Last Nude,The Last Nude,en-US,3.77,13280,13413,330,763,1230,3226,3256,4938,https://images.gr-assets.com/books/1305496356l/10836810.jpg,https://images.gr-assets.com/books/1305496356s/10836810.jpg\n6368,58894,58894,1171248,27,590554107,9780590554110.0,Tamora Pierce,1998.0,Daja's Book,\"Daja's Book (Circle of Magic, #3)\",eng,4.06,22695,23993,324,128,882,5377,8568,9038,https://images.gr-assets.com/books/1328860149l/58894.jpg,https://images.gr-assets.com/books/1328860149s/58894.jpg\n6369,61926,61926,2341135,49,345419359,9780345419350.0,Anne McCaffrey,1991.0,All the Weyrs of Pern,\"All the Weyrs of Pern (Pern, #11)\",eng,4.15,18265,20596,272,70,556,4117,7409,8444,https://images.gr-assets.com/books/1322034004l/61926.jpg,https://images.gr-assets.com/books/1322034004s/61926.jpg\n6370,23714532,23714532,43324367,20,,,Jamie McGuire,2015.0,Beautiful Sacrifice,\"Beautiful Sacrifice (The Maddox Brothers, #3)\",eng,4.08,21020,22401,1950,439,1143,3981,7495,9343,https://images.gr-assets.com/books/1429578280l/23714532.jpg,https://images.gr-assets.com/books/1429578280s/23714532.jpg\n6371,91989,91989,2004018,53,345481305,9780345481310.0,Naomi Novik,2006.0,Black Powder War,\"Black Powder War (Temeraire, #3)\",en-US,3.9,18778,21082,1068,93,841,5605,9173,5370,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437820659l/91989._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6372,107789,107789,2604130,60,1416503811,9781416503810.0,Julie Garwood,2000.0,Heartbreaker,\"Heartbreaker (Buchanan-Renard, #1)\",en-US,4.02,19000,20856,636,292,891,4433,7784,7456,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389443311l/107789.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6374,58893,58893,3353659,23,590554115,9780590554110.0,Tamora Pierce,1999.0,Briar's Book,\"Briar's Book (Circle of Magic, #4)\",eng,4.14,23152,24366,358,140,784,4797,8442,10203,https://images.gr-assets.com/books/1481568171l/58893.jpg,https://images.gr-assets.com/books/1481568171s/58893.jpg\n6375,480570,480570,2564369,57,380710811,9780380710810.0,Colleen McCullough,1990.0,The First Man in Rome,\"The First Man in Rome (Masters of Rome, #1)\",eng,4.08,15362,16607,732,409,827,2758,5573,7040,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388211466l/480570.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6376,175242,175242,890720,67,067102731X,9780671027320.0,John Connolly,1999.0,Every Dead Thing,\"Every Dead Thing (Charlie Parker, #1)\",eng,4.01,14390,16618,1113,332,803,3323,6036,6124,https://images.gr-assets.com/books/1393929687l/175242.jpg,https://images.gr-assets.com/books/1393929687s/175242.jpg\n6377,93801,93801,2633218,49,014101587X,9780141015870.0,Daniel Silva,2003.0,The Confessor,\"The Confessor (Gabriel Allon, #3)\",eng,4.14,13166,16717,773,75,298,2829,7494,6021,https://images.gr-assets.com/books/1341575498l/93801.jpg,https://images.gr-assets.com/books/1341575498s/93801.jpg\n6378,217376,217376,1092733,6,345479122,9780345479130.0,\"Tomoko Hayakawa, David Ury\",2000.0,ヤマトナデシコ七変化,\"The Wallflower, Vol. 1 (The Wallflower, #1)\",eng,4.15,16399,16545,197,494,869,2730,4101,8351,https://images.gr-assets.com/books/1320462572l/217376.jpg,https://images.gr-assets.com/books/1320462572s/217376.jpg\n6379,10869746,10869746,16460463,51,312547730,9780312547740.0,\"Robert Kirkman, Jay Bonansinga\",2011.0,The Walking Dead: Rise of the Governor,Rise of the Governor (The Walking Dead #1),eng,3.9,13076,16096,1719,269,1003,3740,6082,5002,https://images.gr-assets.com/books/1366212058l/10869746.jpg,https://images.gr-assets.com/books/1366212058s/10869746.jpg\n6380,66683,66683,231619,24,786929804,9780786929800.0,R.A. Salvatore,2002.0,The Thousand Orcs (Hunter's Blades #1),\"The Thousand Orcs (Forgotten Realms: Hunter's Blades, #1; Legend of Drizzt, #14)\",eng,4.08,14329,15353,218,164,675,3105,5244,6165,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187788l/66683.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6381,26131641,26131641,46081985,19,812996089,9780812996080.0,Anna Quindlen,2016.0,Miller's Valley,Miller's Valley,en-GB,3.89,12391,16239,2195,242,679,3757,7489,4072,https://images.gr-assets.com/books/1447962407l/26131641.jpg,https://images.gr-assets.com/books/1447962407s/26131641.jpg\n6383,34310,34310,219754,62,752876872,9780752876870.0,Maeve Binchy,1994.0,The Glass Lake,The Glass Lake,eng,3.89,16073,17841,737,131,770,4905,7090,4945,https://images.gr-assets.com/books/1342485933l/34310.jpg,https://images.gr-assets.com/books/1342485933s/34310.jpg\n6384,96884,96884,3587,32,465028020,9780465028020.0,Jonathan Haidt,2005.0,The Happiness Hypothesis: Finding Modern Truth in Ancient Wisdom,The Happiness Hypothesis: Finding Modern Truth in Ancient Wisdom,eng,4.12,13282,14395,920,247,597,2434,5053,6064,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348779688l/96884.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6385,204779,204779,15568908,125,1594567395,9781594567390.0,Edgar Allan Poe,1842.0,The Masque of the Red Death,The Masque of the Red Death,eng,4.08,17728,20338,640,186,802,3967,7543,7840,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172667858l/204779._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6386,7438179,7438179,9438856,33,345496574,9780345496580.0,Peter F. Hamilton,2009.0,The Evolutionary Void,The Evolutionary Void,eng,4.25,13440,15609,471,89,310,2114,6120,6976,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388292812l/7438179.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6387,7100490,7100490,7216551,2,1416989404,9781416989400.0,L.J. Smith,1997.0,The Forbidden Game,\"The Forbidden Game (The Forbidden Game, #1-3)\",en-US,4.19,18443,19505,966,344,968,3232,5132,9829,https://images.gr-assets.com/books/1405784030l/7100490.jpg,https://images.gr-assets.com/books/1405784030s/7100490.jpg\n6388,1754206,1754206,1752043,6,1416953558,9781416953560.0,Elizabeth Scott,2008.0,Perfect You,Perfect You,en-US,3.7,20858,20946,899,703,2022,6104,6172,5945,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348018783l/1754206.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6389,37398,37398,1135883,73,452269652,9780452269650.0,Toni Morrison,1992.0,Jazz,Jazz,eng,3.78,14853,16981,863,319,1174,4835,6210,4443,https://images.gr-assets.com/books/1317531331l/37398.jpg,https://images.gr-assets.com/books/1317531331s/37398.jpg\n6391,22193,22193,1596343,47,316735167,9780316735160.0,Cecily von Ziegesar,2004.0,You're the one that I want,\"You're the One That I Want (Gossip Girl, #6)\",eng,3.71,16643,17023,209,473,1616,5342,4516,5076,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348306159l/22193.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6392,158516,158516,152994,128,810114844,9780810114840.0,\"Ilya Ilf, Eugene Petrov, Maurice Friedberg, John H.C. Richardson\",1927.0,Двенадцать стульев,The Twelve Chairs,,4.42,13688,15241,267,141,381,1606,3952,9161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348256729l/158516.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6393,427920,427920,2461275,52,1558744630,9781558744640.0,\"Jack Canfield, Mark Victor Hansen, Kimberly Kirberger\",1997.0,Chicken Soup for the Teenage Soul (Chicken Soup for the Soul),\"Chicken Soup for the Teenage Soul: 101 Stories of Life, Love and Learning (Chicken Soup for the Soul)\",eng,3.91,14722,16097,716,324,1049,4013,5058,5653,https://images.gr-assets.com/books/1331052651l/427920.jpg,https://images.gr-assets.com/books/1331052651s/427920.jpg\n6394,18656036,18656036,26470722,28,316231053,9780316231050.0,Megan Abbott,2014.0,The Fever,The Fever,,3.12,14775,16630,2403,1059,3407,6274,4184,1706,https://images.gr-assets.com/books/1381359885l/18656036.jpg,https://images.gr-assets.com/books/1381359885s/18656036.jpg\n6395,125423,125423,542368,19,399218858,9780399218860.0,Eric Carle,1990.0,The Very Quiet Cricket,The Very Quiet Cricket,en-US,4.07,17016,17149,267,337,783,3621,4998,7410,https://images.gr-assets.com/books/1309287060l/125423.jpg,https://images.gr-assets.com/books/1309287060s/125423.jpg\n6397,155421,155421,150023,27,441010652,9780441010650.0,Simon R. Green,2003.0,Something from the Nightside,\"Something from the Nightside (Nightside, #1)\",eng,3.77,19206,20125,1174,519,1575,5432,7124,5475,https://images.gr-assets.com/books/1354812342l/155421.jpg,https://images.gr-assets.com/books/1354812342s/155421.jpg\n6399,84054,84054,1812585,71,6178715,9780006178710.0,Sidney Sheldon,1992.0,The Stars Shine Down,The Stars Shine Down,eng,3.65,12874,13975,359,238,1274,4660,4781,3022,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348909433l/84054.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6400,676555,676555,35475,13,811826848,9780811826850.0,\"The Beatles, Paul McCartney, Ringo Starr, John Lennon, George Harrison\",2000.0,The Beatles Anthology,The Beatles Anthology,eng,4.38,12474,12738,188,217,285,1479,3276,7481,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387720608l/676555.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6401,7640261,7640261,10168576,35,61707803,9780061707800.0,\"Christopher  Ryan, Cacilda Jethá\",2010.0,Sex at Dawn: The Prehistoric Origins of Modern Sexuality,Sex at Dawn: The Prehistoric Origins of Modern Sexuality,en-US,4.02,12521,15185,1641,399,796,2718,5414,5858,https://images.gr-assets.com/books/1291105594l/7640261.jpg,https://images.gr-assets.com/books/1291105594s/7640261.jpg\n6402,37451,37451,2456008,59,316911488,9780316911480.0,Cecily von Ziegesar,2002.0,You Know You Love Me,\"You Know You Love Me (Gossip Girl, #2)\",en-US,3.53,18052,19075,690,600,2333,6711,5205,4226,https://images.gr-assets.com/books/1388599269l/37451.jpg,https://images.gr-assets.com/books/1388599269s/37451.jpg\n6403,6609490,6609490,6989102,7,1442402849,9781442402840.0,\"Annette Pollert, L.J. Smith\",2009.0,Night World: The Ultimate Fan Guide.,Night World: The Ultimate Fan Guide,,4.36,13626,13670,33,325,427,1851,2517,8550,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347794541l/6609490.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6404,835202,835202,3346189,30,688040748,9780688040740.0,Vera B. Williams,1982.0,A Chair for My Mother ,A Chair for My Mother,eng,4.2,19919,20066,844,383,786,3235,5741,9921,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347403004l/835202.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6405,12021,12021,950451,23,349103232,9780349103240.0,Iain Banks,1992.0,The Crow Road,The Crow Road,eng,4.07,14365,15349,585,180,544,2814,6285,5526,https://images.gr-assets.com/books/1330063373l/12021.jpg,https://images.gr-assets.com/books/1330063373s/12021.jpg\n6406,46661,46661,4570662,37,385338104,9780385338100.0,Jonathan Tropper,2003.0,The Book of Joe,The Book of Joe,en-US,3.95,13064,14880,1420,118,494,3375,6912,3981,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923690l/46661.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6407,68380,68380,849,22,880386525,9780880386520.0,\"Margaret Weis, Tracy Hickman\",1985.0,Dragonlance Chronicles: Dragons of Autumn Twilight/Dragons of Winter Night/Dragons of Spring Dawning (Collectors Edition),Dragonlance Chronicles (Dragonlance #1-3),,4.21,13553,16403,426,187,561,2609,5369,7677,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266464667l/68380.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6408,1003761,1003761,989251,5,1421505754,9781421505760.0,Kiyoko Arai,2004.0,ビューティーポップ 1 [Byūtī poppu 1],\"Beauty Pop, Vol. 1 (Beauty Pop, #1)\",eng,4.15,16223,16268,160,447,873,2813,3851,8284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452368l/1003761.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6409,79879,79879,46681,31,61119725,9780061119730.0,Eric Carle,1997.0,From Head to Toe,From Head to Toe,,4.18,16074,16612,420,220,696,3134,4443,8119,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388448972l/79879.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6410,48758,48758,266710,18,1590521676,9781590521670.0,Joshua Harris,2000.0,Boy Meets Girl: Say Hello to Courtship,Boy Meets Girl: Say Hello to Courtship,en-GB,3.78,13868,14257,453,724,1266,3244,4167,4856,https://images.gr-assets.com/books/1170356477l/48758.jpg,https://images.gr-assets.com/books/1170356477s/48758.jpg\n6411,21328,21328,1425228,10,1401205003,9781401205000.0,\"Bill Willingham, Mark Buckingham, David Hahn, Steve Leialoha\",2006.0,\"Fables, Volume 6: Homelands\",\"Fables, Vol. 6: Homelands\",eng,4.3,18893,19219,585,123,330,2310,7260,9196,https://images.gr-assets.com/books/1327962707l/21328.jpg,https://images.gr-assets.com/books/1327962707s/21328.jpg\n6412,20761374,20761374,40094032,14,,2940149543340.0,Whitney G.,2014.0,Reasonable Doubt,\"Reasonable Doubt: Volume 1 (Reasonable Doubt, #1)\",eng,4.13,25788,29463,2867,454,1226,4874,10260,12649,https://images.gr-assets.com/books/1395319856l/20761374.jpg,https://images.gr-assets.com/books/1395319856s/20761374.jpg\n6413,2924318,2924318,2951639,42,374299102,9780374299100.0,Marilynne Robinson,2008.0,Home,\"Home (Gilead, #2)\",eng,3.97,13851,15891,2608,367,979,3060,5898,5587,https://images.gr-assets.com/books/1426188598l/2924318.jpg,https://images.gr-assets.com/books/1426188598s/2924318.jpg\n6414,23647129,23647129,43254799,14,718031822,9780718031820.0,Jen Hatmaker,2015.0,For the Love: Fighting for Grace in a World of Impossible Standards,For the Love: Fighting for Grace in a World of Impossible Standards,,4.1,16200,17427,1487,510,698,2842,5828,7549,https://images.gr-assets.com/books/1426296433l/23647129.jpg,https://images.gr-assets.com/books/1426296433s/23647129.jpg\n6416,18775297,18775297,26751379,31,1476751803,9781476751800.0,Christina Lauren,2014.0,Sweet Filthy Boy ,\"Sweet Filthy Boy (Wild Seasons, #1)\",eng,4.16,25337,28461,2830,367,998,4374,10569,12153,https://images.gr-assets.com/books/1395723782l/18775297.jpg,https://images.gr-assets.com/books/1395723782s/18775297.jpg\n6417,44133,44133,6302847,498,521293731,9780521293730.0,William Shakespeare,1600.0,The Winter's Tale,The Winter's Tale,eng,3.69,15385,19971,810,300,1692,6488,6925,4566,https://images.gr-assets.com/books/1327893509l/44133.jpg,https://images.gr-assets.com/books/1327893509s/44133.jpg\n6418,3437328,3437328,3478338,38,1405088834,9781405088830.0,Peter F. Hamilton,2008.0,The Temporal Void,The Temporal Void,eng,4.24,13478,15635,404,79,301,2098,6485,6672,https://images.gr-assets.com/books/1357349093l/3437328.jpg,https://images.gr-assets.com/books/1357349093s/3437328.jpg\n6419,19536001,19536001,27662564,16,1607069466,9781607069460.0,\"Matt Fraction, Chip Zdarsky\",2014.0,\"Sex Criminals, Volume One: One Weird Trick\",\"Sex Criminals, Vol. 1: One Weird Trick\",eng,3.99,22017,22260,2421,499,1208,4284,8354,7915,https://images.gr-assets.com/books/1396977214l/19536001.jpg,https://images.gr-assets.com/books/1396977214s/19536001.jpg\n6420,31157,31157,835713,25,842361936,9780842361930.0,\"Tim LaHaye, Jerry B. Jenkins\",2003.0,The Rising : Antichrist is Born : Before They Were Left Behind,\"The Rising: Antichrist is Born  (Before They Were Left Behind, #1)\",eng,4.18,13412,13831,187,403,600,2168,3563,7097,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390330711l/31157.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6421,16070143,16070143,21862443,61,375990690,9780375990690.0,Lauren Kate,2013.0,Teardrop,\"Teardrop (Teardrop, #1)\",eng,3.65,18998,21248,2318,1120,2291,5560,6187,6090,https://images.gr-assets.com/books/1360596375l/16070143.jpg,https://images.gr-assets.com/books/1360596375s/16070143.jpg\n6422,6495359,6495359,6686808,71,399156399,9780399156400.0,Patricia Cornwell,2009.0,The Scarpetta Factor ,\"The Scarpetta Factor (Kay Scarpetta, #17)\",en-US,3.67,16388,18371,1250,579,1766,5390,5965,4671,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442847757l/6495359._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6423,20443235,20443235,31175868,17,374384738,9780374384740.0,Marie Rutkoski,2016.0,The Winner's Kiss,\"The Winner's Kiss (The Winner's Trilogy, #3)\",eng,4.29,23125,25825,4447,184,638,3379,8968,12656,https://images.gr-assets.com/books/1455809407l/20443235.jpg,https://images.gr-assets.com/books/1455809407s/20443235.jpg\n6425,77449,77449,74826,15,345382846,9780345382850.0,Sharon Kay Penman,1985.0,Here be Dragons,\"Here be Dragons (Welsh Princes, #1)\",eng,4.3,16205,17444,1146,205,422,2190,5732,8895,https://images.gr-assets.com/books/1448657042l/77449.jpg,https://images.gr-assets.com/books/1448657042s/77449.jpg\n6426,9762,9762,2919169,30,1400045371,9781400045370.0,\"Byron Katie, Stephen Mitchell\",2002.0,Loving What Is: Four Questions That Can Change Your Life,Loving What Is: Four Questions That Can Change Your Life,,4.15,12568,13153,612,317,600,2158,3782,6296,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258105l/9762.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6427,11824,11824,14213,38,60521228,9780060521230.0,\"Sid Fleischman, Peter Sís\",1986.0,The Whipping Boy,The Whipping Boy,eng,3.54,18090,19391,1132,650,2050,6733,6106,3852,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925482l/11824.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6428,31538635,31538635,52885176,18,1781106282,9781781106280.0,\"J.K. Rowling, MinaLima\",2016.0,\"Short Stories from Hogwarts of Heroism, Hardship and Dangerous Hobbies\",\"Short Stories from Hogwarts of Heroism, Hardship and Dangerous Hobbies (Pottermore Presents, #1)\",eng,4.22,16285,24805,1743,636,713,3498,7555,12403,https://images.gr-assets.com/books/1471436733l/31538635.jpg,https://images.gr-assets.com/books/1471436733s/31538635.jpg\n6429,48811,48811,47752,4,448445867,9780448445860.0,Carolyn Keene,,\"Nancy Drew Complete Series Set, Books 1-64\",Nancy Drew: #1-64,eng,4.19,16743,16810,360,273,541,2897,5116,7983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923816l/48811.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6430,275245,275245,266906,5,1593080786,9781593080780.0,\"George Bernard Shaw, John A. Bertolini\",2004.0,Pygmalion and Three Other Plays,Pygmalion and Three Other Plays,en-US,4.01,16568,16588,37,219,679,3827,5784,6079,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389844602l/275245.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6433,10401084,10401084,15305022,18,758272812,9780758272810.0,Brigid Kemmerer,2012.0,Storm,\"Storm (Elemental, #1)\",en-US,3.96,21281,22950,2281,529,1220,4722,8619,7860,https://images.gr-assets.com/books/1325995724l/10401084.jpg,https://images.gr-assets.com/books/1325995724s/10401084.jpg\n6434,9462775,9462775,7269956,12,61976792,9780061976800.0,Maureen Johnson,2011.0,The Last Little Blue Envelope,\"The Last Little Blue Envelope (Little Blue Envelope, #2)\",en-US,3.86,19275,20354,1499,329,1224,5321,7518,5962,https://images.gr-assets.com/books/1288297853l/9462775.jpg,https://images.gr-assets.com/books/1288297853s/9462775.jpg\n6435,16884,16884,105195,18,684813785,9780684813780.0,Richard Rhodes,1986.0,The Making of the Atomic Bomb,The Making of the Atomic Bomb,eng,4.32,12201,13304,667,155,390,1672,3900,7187,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440621221l/16884._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6436,7979073,7979073,12348314,57,1409113965,9781409113970.0,Maeve Binchy,2010.0,Minding Frankie,Minding Frankie,eng,3.78,15606,18971,2201,218,1131,5575,7730,4317,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348083610l/7979073.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6437,95607,95607,1832796,22,842319476,31809014745.0,Francine Rivers,2000.0,Unveiled: Tamar (Lineage of Grace #1),Unveiled: Tamar (Lineage of Grace #1),,4.26,14441,14639,393,98,356,2275,4864,7046,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268504l/95607.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6439,92373,92373,2448682,81,033034837X,9780330348380.0,Ken Follett,1996.0,The Third Twin,The Third Twin,en-GB,3.64,14499,17990,767,346,1576,5845,6593,3630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348833324l/92373.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6440,99219,99219,1278722,45,765340771,9780765340770.0,\"Brian Herbert, Kevin J. Anderson\",2002.0,Dune: The Butlerian Jihad,\"The Butlerian Jihad (Legends of Dune, #1)\",eng,3.57,14868,15853,424,993,1695,4320,5026,3819,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1505458671l/99219._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6441,181206,181206,175093,46,385491743,9780385491750.0,Richard Koch,1950.0,The 80/20 Principle: The Secret to Success by Achieving More with Less,The 80/20 Principle: The Secret to Achieving More with Less,,3.99,13241,13524,273,243,633,2906,4915,4827,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437557431l/181206._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6442,782580,782580,768593,6,385152132,9780385152140.0,\"William Blake, David V. Erdman, Harold Bloom\",1965.0,The Complete Poetry & Prose of William Blake,The Complete Poetry and Prose,en-US,4.23,14157,14239,70,129,454,2357,4309,6990,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347678657l/782580.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6443,30008702,30008702,50111227,47,385542070,9780385542070.0,Ian McEwan,2016.0,Nutshell,Nutshell,eng,3.71,10904,20869,3088,601,1755,5579,7996,4938,https://images.gr-assets.com/books/1498680109l/30008702.jpg,https://images.gr-assets.com/books/1498680109s/30008702.jpg\n6444,13619,13619,1902274,35,1421501694,9781421501700.0,\"Tsugumi Ohba, Takeshi Obata\",2004.0,デスノート #2 (Desu Nōto) Gōryū (合流),\"Death Note, Vol. 2: Confluence (Death Note, #2)\",eng,4.42,20177,21579,807,60,307,2189,6929,12094,https://images.gr-assets.com/books/1419952210l/13619.jpg,https://images.gr-assets.com/books/1419952210s/13619.jpg\n6445,93371,93371,90020,20,1569714983,9781569714980.0,\"Katsuhiro Otomo, Yoko Umezawa, Linda M. York, Jo Duffy\",1984.0,Akira 1,\"Akira, Vol. 1\",eng,4.36,16116,16847,498,186,367,1881,5173,9240,https://images.gr-assets.com/books/1343804802l/93371.jpg,https://images.gr-assets.com/books/1343804802s/93371.jpg\n6446,243601,243601,1237325,86,074326603X,9780743266030.0,Robert   Harris,2006.0,Imperium,\"Imperium: A Novel of Ancient Rome (Cicero, #1)\",en-US,4.05,13959,17404,1267,151,564,3292,7661,5736,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442657816l/243601._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6447,40722,40722,14675,48,394743253,9780394743260.0,Richard Ford,1986.0,The Sportswriter,The Sportswriter,,3.7,12606,14240,960,550,1347,3488,5239,3616,https://images.gr-assets.com/books/1327936345l/40722.jpg,https://images.gr-assets.com/books/1327936345s/40722.jpg\n6448,47620,47620,3209595,33,439703700,9780439703700.0,Garth Nix,2004.0,Grim Tuesday,\"Grim Tuesday (The Keys to the Kingdom, #2)\",,3.86,19133,20613,446,218,1024,5757,8003,5611,https://images.gr-assets.com/books/1304528058l/47620.jpg,https://images.gr-assets.com/books/1304528058s/47620.jpg\n6449,7963189,7963189,11869600,33,272346783X,9782723467830.0,Julie Maroh,2010.0,Le bleu est une couleur chaude,Le bleu est une couleur chaude,fre,3.92,8504,18033,1944,479,1097,3885,6524,6048,https://images.gr-assets.com/books/1330712998l/7963189.jpg,https://images.gr-assets.com/books/1330712998s/7963189.jpg\n6450,25489012,25489012,44737184,33,385539282,9780385539290.0,Bill Bryson,2015.0,The Road to Little Dribbling,The Road to Little Dribbling: Adventures of an American in Britain,eng,3.71,9694,16940,2944,386,1375,4767,6652,3760,https://images.gr-assets.com/books/1444259875l/25489012.jpg,https://images.gr-assets.com/books/1444259875s/25489012.jpg\n6451,15942636,15942636,21409785,26,140227663X,9781402276640.0,Susanna Kearsley,2013.0,The Firebird,\"The Firebird (Slains, #2)\",eng,4.08,12421,19078,2261,216,653,3397,7857,6955,https://images.gr-assets.com/books/1347896972l/15942636.jpg,https://images.gr-assets.com/books/1347896972s/15942636.jpg\n6452,1753714,1753714,1751547,12,1427803196,9781427803190.0,\"Tachibana Higuchi, 樋口 橘\",2003.0,学園アリス１,\"Gakuen Alice, Vol. 01 (Gakuen Alice, #1)\",eng,4.23,15373,15497,148,349,757,2368,3507,8516,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347906020l/1753714.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6453,63832,63832,1383812,45,316353299,9780316353300.0,William Least Heat-Moon,1982.0,Blue Highways: A Journey into America,Blue Highways,,4.0,15693,16571,883,317,896,3284,5989,6085,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425628317l/63832.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6454,31181,31181,3766822,72,345485599,9780345485600.0,Anne Tyler,1988.0,Breathing Lessons,Breathing Lessons,eng,3.66,18053,19466,1105,427,1422,6136,7809,3672,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389130508l/31181.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6455,112200,112200,471777,98,517206064,9780517206060.0,Emily Dickinson,1890.0,Selected Poems of Emily Dickinson,Selected Poems,eng,4.16,16218,18047,283,273,650,3139,5766,8219,https://images.gr-assets.com/books/1260829838l/112200.jpg,https://images.gr-assets.com/books/1260829838s/112200.jpg\n6456,219499,219499,42915871,98,1593081316,9781593081320.0,\"Robert Louis Stevenson, Jenny Davidson\",1886.0,The Strange Case of Dr. Jekyll and Mr. Hyde ,The Strange Case of Dr. Jekyll and Mr. Hyde and Other Stories ,eng,3.96,20812,25784,523,211,1117,6266,10028,8162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389646683l/219499.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6457,1055617,1055617,1736890,12,884944441,9780884944450.0,Spencer W. Kimball,1969.0,The Miracle of Forgiveness,The Miracle of Forgiveness,,4.37,13795,14093,563,448,356,1325,3386,8578,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1180562350l/1055617._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6458,6718608,6718608,6914700,69,345516109,9780345516110.0,Anne Fortier,2010.0,Juliet,Juliet,en-US,3.9,19328,22607,3569,431,1481,5168,8356,7171,https://images.gr-assets.com/books/1366399299l/6718608.jpg,https://images.gr-assets.com/books/1366399299s/6718608.jpg\n6459,9394010,9394010,13277173,32,373775490,9780373775490.0,Gena Showalter,2011.0,\"The Darkest Secret (Lords of the Underworld, #7)\",The Darkest Secret (Lords of the Underworld #7),eng,4.32,23247,24612,946,130,530,3257,8077,12618,https://images.gr-assets.com/books/1288316327l/9394010.jpg,https://images.gr-assets.com/books/1288316327s/9394010.jpg\n6460,23602473,23602473,43212054,49,307594173,9780307594170.0,Toni Morrison,2014.0,God Help the Child,God Help the Child,eng,3.7,12228,15151,2330,320,1293,4299,5911,3328,https://images.gr-assets.com/books/1463008449l/23602473.jpg,https://images.gr-assets.com/books/1463008449s/23602473.jpg\n6461,2795053,2795053,2820826,18,1593079788,9781593079790.0,\"Gerard Way, Gabriel Bá, Dave Stewart, Nate Piekos, Tony Ong\",2007.0,\"The Umbrella Academy, Vol 1: The Apocalypse Suite\",\"The Umbrella Academy, Vol. 1: The Apocalypse Suite\",eng,3.97,17384,17586,862,443,1087,3652,5791,6613,https://images.gr-assets.com/books/1327877097l/2795053.jpg,https://images.gr-assets.com/books/1327877097s/2795053.jpg\n6463,98233,98233,94691,19,1590597141,9781590597150.0,Jessica Livingston,2001.0,Founders at Work: Stories of Startups' Early Days,Founders at Work: Stories of Startups' Early Days,en-US,3.94,15049,15682,212,520,1030,3290,4910,5932,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439953323l/98233._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6465,2331954,2331954,2338528,36,307406105,9780307406100.0,Scott Sigler,2008.0,Infected,\"Infected (Infected, #1)\",en-US,3.85,14346,16390,1435,520,1244,3706,5702,5218,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439359012l/2331954._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6466,15777621,15777621,21490415,28,374351384,9780374351380.0,Leila Sales,2013.0,This Song Will Save Your Life,This Song Will Save Your Life,eng,3.95,19947,21486,3166,642,1250,4432,7397,7765,https://images.gr-assets.com/books/1362753915l/15777621.jpg,https://images.gr-assets.com/books/1362753915s/15777621.jpg\n6467,765811,765811,1311370,30,014006690X,9780140066910.0,Gloria Naylor,1982.0,The Women of Brewster Place,The Women of Brewster Place,en-US,4.13,14777,15186,489,186,436,2716,5698,6150,https://images.gr-assets.com/books/1309209011l/765811.jpg,https://images.gr-assets.com/books/1309209011s/765811.jpg\n6468,23017947,23017947,42587497,14,785190228,9780785190230.0,\"G. Willow Wilson, Adrian Alphona, Jacob Wyatt\",2015.0,\"Ms. Marvel, Vol. 2: Generation Why\",\"Ms. Marvel, Vol. 2: Generation Why\",eng,4.14,17048,17562,1725,436,496,2579,6799,7252,https://images.gr-assets.com/books/1427559332l/23017947.jpg,https://images.gr-assets.com/books/1427559332s/23017947.jpg\n6469,56480,56480,55040,17,800758188,9780800758190.0,Elisabeth Elliot,1984.0,Passion and Purity: Learning to Bring Your Love Life Under Christ's Control,Passion and Purity: Learning to Bring Your Love Life Under Christ's Control,,4.15,13767,14346,381,303,675,2377,4235,6756,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437303179l/56480._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6470,13406425,13406425,15571673,28,1442440759,9781442440750.0,\"Jenny Han, Siobhan Vivian\",2012.0,Burn for Burn,\"Burn for Burn (Burn for Burn, #1)\",eng,3.87,18772,20309,2722,423,1203,4987,7748,5948,https://images.gr-assets.com/books/1332791803l/13406425.jpg,https://images.gr-assets.com/books/1332791803s/13406425.jpg\n6471,10131648,10131648,15029543,17,1416571760,9781416571770.0,David McCullough,2011.0,The Greater Journey: Americans In Paris,The Greater Journey: Americans in Paris,eng,3.9,14001,15278,1886,401,907,3375,5790,4805,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347613581l/10131648.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6472,429883,429883,826364,34,345390407,9780345390400.0,David Eddings,1994.0,The Hidden City,\"The Hidden City (The Tamuli, #3)\",eng,3.97,18718,19477,95,172,937,4855,6796,6717,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212612l/429883.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6473,22915460,22915460,41179885,14,,,\"Petra Durst-Benning, Samuel Willcocks\",2000.0,Die Glasbläserin,The Glassblower,eng,3.87,13478,14596,965,375,907,3272,5666,4376,https://images.gr-assets.com/books/1408013754l/22915460.jpg,https://images.gr-assets.com/books/1408013754s/22915460.jpg\n6474,12712435,12712435,17846412,22,307599469,9780307599470.0,Maggie Shipstead,2012.0,Seating Arrangements,Seating Arrangements,,3.02,14243,16075,2405,1143,3532,6346,3912,1142,https://images.gr-assets.com/books/1329425347l/12712435.jpg,https://images.gr-assets.com/books/1329425347s/12712435.jpg\n6475,6750,6750,1140359,39,142002429,9780142002420.0,David Foster Wallace,1987.0,The Broom of the System,The Broom of the System,,3.84,13011,15312,1229,235,964,3732,6436,3945,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923908l/6750.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6476,5082599,5082599,5149317,28,425226743,9780425226740.0,Julie James,2009.0,Practice Makes Perfect,Practice Makes Perfect (Berkley Sensation),eng,3.99,23783,24925,1410,402,1108,5245,9630,8540,https://images.gr-assets.com/books/1342552769l/5082599.jpg,https://images.gr-assets.com/books/1342552769s/5082599.jpg\n6477,81524,81524,2478886,40,439700930,9780439700930.0,Patrick Carman,2003.0,The Dark Hills Divide,\"The Dark Hills Divide (The Land of Elyon, #1)\",en-US,3.71,19358,19777,860,613,1820,5669,6170,5505,https://images.gr-assets.com/books/1393452185l/81524.jpg,https://images.gr-assets.com/books/1393452185s/81524.jpg\n6478,17331518,17331518,24034803,10,62284835,9780062284840.0,Tahereh Mafi,2013.0,Fracture Me,\"Fracture Me (Shatter Me, #2.5)\",eng,3.77,24092,25350,2872,497,2239,7512,7384,7718,https://images.gr-assets.com/books/1383413233l/17331518.jpg,https://images.gr-assets.com/books/1383413233s/17331518.jpg\n6479,25251757,25251757,44972782,23,031623107X,9780316231080.0,Megan Abbott,2016.0,You Will Know Me,You Will Know Me,eng,3.45,17002,20045,2690,506,2210,7585,7186,2558,https://images.gr-assets.com/books/1467210264l/25251757.jpg,https://images.gr-assets.com/books/1467210264s/25251757.jpg\n6480,119829,119829,2046265,20,345363132,9780345363140.0,Sharon Kay Penman,1982.0,The Sunne in Splendour,The Sunne in Splendour,eng,4.4,15364,16936,1060,186,334,1716,4970,9730,https://images.gr-assets.com/books/1361649213l/119829.jpg,https://images.gr-assets.com/books/1361649213s/119829.jpg\n6482,16130986,16109080,5692065,19,,,Scott Pratt,2008.0,An Innocent Client,An Innocent Client,eng,4.16,8045,16772,1180,246,546,2427,6601,6952,https://images.gr-assets.com/books/1352135419l/16130986.jpg,https://images.gr-assets.com/books/1352135419s/16130986.jpg\n6483,918789,918789,956435,24,671725661,9780671725660.0,Irving Shulman,1961.0,West Side Story,West Side Story,,4.12,16593,16663,94,338,800,3031,4860,7634,https://images.gr-assets.com/books/1350302485l/918789.jpg,https://images.gr-assets.com/books/1350302485s/918789.jpg\n6484,24870,24870,1006388,35,552142743,9780552142750.0,Anne McCaffrey,1998.0,The MasterHarper of Pern,\"The Masterharper of Pern (Pern, #15)\",eng,4.22,18322,20466,266,94,568,3672,6639,9493,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347779649l/24870.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6485,2272880,2272880,2278900,42,375424040,9780375424040.0,Leonard Mlodinow,2008.0,The Drunkard's Walk: How Randomness Rules Our Lives,The Drunkard's Walk: How Randomness Rules Our Lives,eng,3.88,12818,14979,1250,214,821,3668,6113,4163,https://images.gr-assets.com/books/1320392907l/2272880.jpg,https://images.gr-assets.com/books/1320392907s/2272880.jpg\n6486,13097901,13097901,18270137,43,316210730,9780316210740.0,James Patterson,2011.0,\"Merry Christmas, Alex Cross\",\"Merry Christmas, Alex Cross (Alex Cross, #19)\",eng,3.85,12343,17135,1394,257,1017,4732,6199,4930,https://images.gr-assets.com/books/1322032145l/13097901.jpg,https://images.gr-assets.com/books/1322032145s/13097901.jpg\n6487,3368,18197267,561281,44,321344758,9780321344760.0,Steve Krug,2000.0,Don't Make Me Think! A common sense approach to web usability,Don't Make Me Think: A Common Sense Approach to Web Usability,en-US,4.24,7296,14751,1139,64,315,2083,5892,6397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390867006l/3368.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6488,45020,45020,479518,34,425206866,9780425206870.0,Charlaine Harris,1996.0,\"Shakespeare's Landlord (Lily Bard, #1)\",\"Shakespeare's Landlord (Lily Bard, #1)\",eng,3.76,21091,22544,1189,454,1440,6820,8251,5579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270110l/45020.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6489,13183957,13183957,18364495,24,1620610086,9781620610080.0,Jennifer L. Armentrout,2012.0,Shadows,\"Shadows (Lux, #0.5)\",eng,4.16,26697,28619,2550,259,966,5045,9896,12453,https://images.gr-assets.com/books/1328414465l/13183957.jpg,https://images.gr-assets.com/books/1328414465s/13183957.jpg\n6490,8100267,8100267,12873035,31,141699176X,9781416991760.0,Orson Scott Card,2010.0,Pathfinder,\"Pathfinder (Pathfinder, #1)\",en-US,3.98,16979,18845,2130,305,872,3724,7948,5996,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269881l/8100267.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6491,29340182,29340182,46238704,18,316348406,9780316348410.0,Lindy West,2016.0,\"Shrill: Women Are Funny, It's Okay to Be Fat, and Feminists Don't Have to Be Nice\",Shrill: Notes from a Loud Woman,eng,4.23,15258,17946,2780,169,480,2297,7051,7949,https://images.gr-assets.com/books/1460015959l/29340182.jpg,https://images.gr-assets.com/books/1460015959s/29340182.jpg\n6492,47959,47959,1725813,24,451456734,9780451456730.0,Anne Bishop,2000.0,Queen of the Darkness,\"Queen of the Darkness (The Black Jewels, #3)\",,4.37,19743,21533,519,217,562,2556,5931,12267,https://images.gr-assets.com/books/1325423531l/47959.jpg,https://images.gr-assets.com/books/1325423531s/47959.jpg\n6493,21518647,25168121,25313644,12,,,Harper Sloan,2013.0,Axel,\"Axel (Corps Security, #1)\",,4.13,9556,33793,2984,700,1401,5250,11822,14620,https://images.gr-assets.com/books/1395241107l/21518647.jpg,https://images.gr-assets.com/books/1395241107s/21518647.jpg\n6494,8419428,8419428,11164541,26,425240169,9780425240170.0,Julie James,2011.0,A Lot Like Love,\"A Lot like Love (FBI/US Attorney, #2)\",eng,4.09,23883,25695,1371,180,768,4815,10805,9127,https://images.gr-assets.com/books/1284384506l/8419428.jpg,https://images.gr-assets.com/books/1284384506s/8419428.jpg\n6495,123170,123170,1206723,16,553154346,9780553154340.0,\"Jim Kjelgaard, Carl Pfeuffer\",1945.0,Big Red,\"Big Red (Big Red, #1)\",,4.11,15923,16068,199,239,532,3219,5306,6772,https://images.gr-assets.com/books/1320551723l/123170.jpg,https://images.gr-assets.com/books/1320551723s/123170.jpg\n6496,767307,767307,1441588,49,345427637,9780345427630.0,Caleb Carr,1997.0,The Angel of Darkness,\"The Angel of Darkness (Dr. Laszlo Kreizler, #2)\",en-US,3.94,16343,17727,883,120,775,4246,7431,5155,https://images.gr-assets.com/books/1433066571l/767307.jpg,https://images.gr-assets.com/books/1433066571s/767307.jpg\n6497,13337716,13337716,19054760,43,7466072,9780007466080.0,George R.R. Martin,2011.0,A Dance With Dragons: Part 2 After The Feast,\"A Dance with Dragons: After the Feast (A Song of Ice and Fire #5, Part 2 of 2)\",eng,4.41,11486,16917,929,75,238,1619,5766,9219,https://images.gr-assets.com/books/1327932256l/13337716.jpg,https://images.gr-assets.com/books/1327932256s/13337716.jpg\n6498,386421,386421,558538,6,307119394,9780307119390.0,Mercer Mayer,1983.0,I Was So Mad (Look-Look),I Was So Mad,en-GB,4.21,15379,15492,167,216,579,2847,3957,7893,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245664l/386421.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6499,6224895,6224895,6405607,55,9791680000,,Arthur Conan Doyle,1892.0,Sherlock Holmes : Silver Blaze,\"Silver Blaze (The Memoirs of Sherlock Holmes, #1)\",eng,4.18,14024,14295,122,229,414,2442,4736,6474,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1234141650l/6224895.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6500,25657,25657,1888390,20,312422288,9780312422290.0,Augusten Burroughs,2000.0,Sellevision,Sellevision,,3.54,12934,13633,879,452,1651,4474,4194,2862,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388456404l/25657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6501,16315,16315,1113267,175,031298166X,9780312981660.0,Agatha Christie,1949.0,Crooked House,Crooked House,eng,3.98,15657,20183,1298,151,724,4897,8089,6322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923185l/16315.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6502,316845,316845,2457438,70,000675399X,9780006754000.0,T.H. White,1938.0,The Sword in the Stone,\"The Sword in the Stone (The Once and Future King, #1)\",eng,3.92,17104,19482,624,440,1111,4525,6965,6441,https://images.gr-assets.com/books/1355212194l/316845.jpg,https://images.gr-assets.com/books/1355212194s/316845.jpg\n6503,82780,82780,2161186,27,439498821,9780439498820.0,Jaclyn Moriarty,2003.0,Finding Cassie Crazy,\"The Year of Secret Assignments (Ashbury/Brookfield, #2)\",eng,3.9,16357,17921,837,317,1264,4301,6010,6029,https://images.gr-assets.com/books/1388634474l/82780.jpg,https://images.gr-assets.com/books/1388634474s/82780.jpg\n6504,21412673,21412673,40713679,38,307962520,9780307962520.0,Anne Rice,2014.0,Prince Lestat,\"Prince Lestat (The Vampire Chronicles, #11)\",eng,3.76,12463,15899,2217,740,1499,3696,4883,5081,https://images.gr-assets.com/books/1394635385l/21412673.jpg,https://images.gr-assets.com/books/1394635385s/21412673.jpg\n6505,95693,95693,1298683,143,553280511,9780553280520.0,L.M. Montgomery,1926.0,The Blue Castle,The Blue Castle ,en-US,4.23,18190,20815,2672,260,672,3209,6627,10047,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442108651l/95693.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6508,102324,102324,2952350,22,930289226,9780930289220.0,\"Alan Moore, Stephen R. Bissette, John Totleben, Rick Veitch, Ramsey Campbell\",1983.0,\"The Saga of the Swamp Thing, Vol 20 - 27\",\"Swamp Thing, Vol. 1: Saga of the Swamp Thing\",eng,4.2,16374,18399,678,262,538,2812,6398,8389,https://images.gr-assets.com/books/1393967527l/102324.jpg,https://images.gr-assets.com/books/1393967527s/102324.jpg\n6509,63432,63432,2118902,65,345438205,9780345438200.0,Arthur C. Clarke,1997.0,3001: The Final Odyssey,\"3001: The Final Odyssey (Space Odyssey, #4)\",,3.49,14392,16614,561,521,2093,5721,5212,3067,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6510,21683,21683,2812184,64,380730367,9780380730360.0,Dennis Lehane,1999.0,Prayers for Rain ,\"Prayers for Rain (Kenzie & Gennaro, #5)\",,4.08,14713,16741,671,101,357,3005,7909,5369,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390016912l/21683.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6512,16372,16372,2107920,186,7120982,9780007120990.0,Agatha Christie,1962.0,The Mirror Crack'd from Side to Side,\"The Mirror Crack'd from Side to Side (Miss Marple, #9)\",eng,3.89,20177,23061,808,109,884,6586,9368,6114,https://images.gr-assets.com/books/1466335226l/16372.jpg,https://images.gr-assets.com/books/1466335226s/16372.jpg\n6513,6481245,6481245,6672493,34,440245265,9780440245260.0,Lara Adrian,2009.0,Shades of Midnight,\"Shades of Midnight (Midnight Breed, #7)\",en-US,4.28,21786,23572,711,112,461,3412,8243,11344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388946059l/6481245.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6514,196951,196951,190519,16,750026049,9780750026050.0,Jan Brett,1997.0,The Hat,The Hat,eng,4.25,17033,17336,272,166,517,2829,5072,8752,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172603741l/196951._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6515,11988046,11988046,16951806,15,62117378,9780062117370.0,Kasie West,2013.0,Pivot Point,\"Pivot Point (Pivot Point, #1)\",eng,4.08,20173,21502,3277,471,872,3549,8131,8479,https://images.gr-assets.com/books/1356020486l/11988046.jpg,https://images.gr-assets.com/books/1356020486s/11988046.jpg\n6516,39795,39795,1503624,114,1400031524,9781400031530.0,\"Henning Mankell, Laurie Thompson\",1992.0,Hundarna i Riga,\"The Dogs of Riga (Kurt Wallander, #2)\",eng,3.72,14794,18098,1166,173,1191,5616,7656,3462,https://images.gr-assets.com/books/1341858828l/39795.jpg,https://images.gr-assets.com/books/1341858828s/39795.jpg\n6517,23209924,23209924,25129883,34,385352875,9780385352870.0,Paolo Bacigalupi,2015.0,The Water Knife,The Water Knife,eng,3.83,11438,14369,2283,273,816,3368,6489,3423,https://images.gr-assets.com/books/1411059576l/23209924.jpg,https://images.gr-assets.com/books/1411059576s/23209924.jpg\n6518,6506085,6506085,6697677,6,,,Karl Weber,2009.0,\"Food Inc.: A Participant Guide: How Industrial Food is Making Us Sicker, Fatter, and Poorer-And What You Can Do About It\",\"Food Inc.: A Participant Guide: How Industrial Food is Making Us Sicker, Fatter, and Poorer-And What You Can Do About It\",eng,4.19,13467,13973,222,88,320,2390,5288,5887,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328318449l/6506085.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6519,342240,342240,1746319,37,399150862,9780399150870.0,Catherine Coulter,1996.0,The Cove,The Cove  (FBI Thriller #1),en-US,3.86,17561,18870,744,548,1228,4529,6672,5893,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439122987l/342240._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6520,14404,14404,2541445,39,752816993,9780752817000.0,Robert Crais,1987.0,The Monkey's Raincoat,\"The Monkey's Raincoat (Elvis Cole, #1)\",en-US,3.98,14940,17672,854,254,664,3829,7373,5552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348618089l/14404.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6521,368772,368772,1059565,63,316955108,9780316955100.0,Herman Wouk,1951.0,The Caine Mutiny,The Caine Mutiny,en-US,4.23,15820,16677,729,109,367,2481,6378,7342,https://images.gr-assets.com/books/1410224968l/368772.jpg,https://images.gr-assets.com/books/1410224968s/368772.jpg\n6523,55022,55022,1916440,35,753820331,9780753820340.0,James Lee Burke,1987.0,The neon rain,\"The Neon Rain (Dave Robicheaux, #1)\",eng,3.98,14693,16387,832,274,753,3431,6491,5438,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386748162l/55022.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6524,851393,851393,2375308,581,375700188,9780375700190.0,\"Thomas à Kempis, William Benham\",1418.0, De Imitatione Christi,The Imitation of Christ,,4.19,12563,14835,595,297,653,2317,4194,7374,https://images.gr-assets.com/books/1320442968l/851393.jpg,https://images.gr-assets.com/books/1320442968s/851393.jpg\n6526,237665,237665,330237,13,60588284,9780060588280.0,Kevin Henkes,2004.0,Kitten's First Full Moon,Kitten's First Full Moon,eng,4.07,18458,18642,1579,364,928,3649,5708,7993,https://images.gr-assets.com/books/1400866970l/237665.jpg,https://images.gr-assets.com/books/1400866970s/237665.jpg\n6527,28862528,28862528,48637040,17,163215711X,9781632157120.0,\"Brian K. Vaughan, Fiona Staples\",2016.0,\"Saga, Volume Six\",\"Saga, Vol. 6 (Saga, #6)\",eng,4.49,18433,18961,2085,23,127,1334,6492,10985,https://images.gr-assets.com/books/1486028997l/28862528.jpg,https://images.gr-assets.com/books/1486028997s/28862528.jpg\n6528,143761,143761,4083744,40,778322955,9780778322960.0,Debbie Macomber,2005.0,A Good Yarn,\"A Good Yarn (Blossom Street, #2)\",en-US,4.11,16467,17712,920,103,452,3636,6671,6850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1408849879l/143761.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6529,7776678,7776678,10686023,40,1401324029,9781401324020.0,Richard Castle,2010.0,Naked Heat,\"Naked Heat (Nikki Heat, #2)\",en-US,3.75,16146,19486,1804,171,1006,6448,7683,4178,https://images.gr-assets.com/books/1327874198l/7776678.jpg,https://images.gr-assets.com/books/1327874198s/7776678.jpg\n6532,125564,125564,3138654,69,439568404,9780439568400.0,R.L. Stine,1993.0,Night of the Living Dummy,\"Night of the Living Dummy (Goosebumps, #7)\",,3.8,16646,17991,802,508,1592,5044,4737,6110,https://images.gr-assets.com/books/1328867793l/125564.jpg,https://images.gr-assets.com/books/1328867793s/125564.jpg\n6533,78989,78989,375863,61,449208060,9780449208070.0,Jeffrey Archer,1977.0,Shall We Tell the President?,\"Shall We Tell the President? (Kane & Abel, #3)\",eng,3.69,12792,14482,459,191,1080,4705,5513,2993,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1520655298l/78989._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6534,6344832,6344832,6295253,33,425230155,9780425230150.0,Charlaine Harris,2009.0,\"Grave Secret (Harper Connelly, #4)\",\"Grave Secret (Harper Connelly, #4)\",eng,3.94,22334,24694,1380,169,1098,6134,9836,7457,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179757l/6344832.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6535,334286,334286,950109,25,140260706,9780140260700.0,Peter Shaffer,1973.0,Equus : a play,Equus,eng,3.94,15126,16409,488,393,1100,3430,5710,5776,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388634114l/334286.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6536,13817,13817,2960451,41,380789833,9780380789830.0,Raymond E. Feist,1998.0,\"Shards of a Broken Crown (The Serpentwar Saga, #4)\",\"Shards of a Broken Crown (The Serpentwar Saga, #4)\",,3.99,16227,17266,116,102,637,4094,6893,5540,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1508008670l/13817._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6537,17722973,17722973,24790180,39,316201545,9780316201540.0,\"Chris Colfer, Brandon Dorman\",2013.0,The Enchantress Returns,\"The Enchantress Returns (The Land of Stories, #2)\",eng,4.49,17845,19829,1676,111,300,1767,5194,12457,https://images.gr-assets.com/books/1364843824l/17722973.jpg,https://images.gr-assets.com/books/1364843824s/17722973.jpg\n6538,23485372,23485372,43076069,13,,,Charlie N. Holmberg,2015.0,The Master Magician,\"The Master Magician (The Paper Magician Trilogy, #3)\",en-GB,3.82,17142,17662,1443,193,1131,4950,6806,4582,https://images.gr-assets.com/books/1422130439l/23485372.jpg,https://images.gr-assets.com/books/1422130439s/23485372.jpg\n6539,15746,15746,3004873,52,553582755,9780553582760.0,Dean Koontz,2001.0,One Door Away from Heaven,One Door Away from Heaven,en-US,3.95,16299,17258,566,305,958,4070,5965,5960,https://images.gr-assets.com/books/1308459846l/15746.jpg,https://images.gr-assets.com/books/1308459846s/15746.jpg\n6540,7491418,7491418,7366229,43,312605390,9780312605390.0,Lisa Kleypas,2010.0,Love in the Afternoon,\"Love in the Afternoon (The Hathaways, #5)\",eng,4.2,24803,26793,1421,114,665,4348,10238,11428,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402012474l/7491418.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6541,1395209,1395209,1385362,44,60891270,9780060891280.0,\"Joseph Delaney, Patrick  Arrasmith\",2007.0,Attack of the Fiend (The Last Apprentice #4),\"Attack of the Fiend (The Last Apprentice / Wardstone Chronicles, #4)\",eng,4.19,14814,17183,537,139,437,2920,6199,7488,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347507804l/1395209.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6542,14165516,14165516,19804206,43,,,Jennifer Probst,2012.0,The Marriage Trap,\"The Marriage Trap (Marriage to a Billionaire, #2)\",eng,3.9,23655,26010,1242,255,1326,6654,10298,7477,https://images.gr-assets.com/books/1346736227l/14165516.jpg,https://images.gr-assets.com/books/1346736227s/14165516.jpg\n6543,246468,246468,238805,6,671796666,9780671796660.0,\"Sam Smith, Doug Grud\",1992.0,The Jordan Rules,The Jordan Rules,,4.23,11148,11513,179,184,404,1860,3198,5867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434304310l/246468._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6544,2897258,2897258,2923667,33,307381757,9780307381750.0,Michelle Moran,2008.0,The Heretic Queen,The Heretic Queen,eng,4.21,16155,18301,1442,144,428,2816,6916,7997,https://images.gr-assets.com/books/1422755729l/2897258.jpg,https://images.gr-assets.com/books/1422755729s/2897258.jpg\n6545,313620,313620,697362,39,310228638,9780310228640.0,John Ortberg,2001.0,\"If You Want to Walk on Water, You've Got to Get Out of the Boat\",\"If You Want to Walk on Water, You've Got to Get Out of the Boat\",,4.13,12608,12970,246,168,520,2384,4300,5598,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6546,4332082,4332082,3810543,48,670020486,9780670020480.0,Janice Y.K. Lee,2008.0,The Piano Teacher,The Piano Teacher,en-US,3.32,16172,18010,2667,466,2483,7500,5930,1631,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1547333546l/4332082._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6547,48834,48834,194624,16,689823959,9780689823950.0,Livia E. Bitton-Jackson,1997.0,I Have Lived A Thousand Years: Growing Up In The Holocaust,I Have Lived a Thousand Years,eng,4.17,15987,16411,757,295,481,2684,5709,7242,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194576l/48834.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6548,11104933,11104933,16027103,36,1594203075,9781594203080.0,\"Roy F. Baumeister, John Tierney\",2011.0,Willpower: Rediscovering the Greatest Human Strength,Willpower: Rediscovering the Greatest Human Strength,,3.95,12667,13820,836,281,692,3021,5211,4615,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347857263l/11104933.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6549,7907680,7907680,11175646,29,052595192X,9780525951930.0,Tami Hoag,2010.0,Secrets to the Grave,\"Secrets to the Grave (Oak Knoll, #2)\",eng,4.09,15381,17327,944,122,508,3301,7069,6327,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388713383l/7907680.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6550,9424367,9424367,14308787,24,1596435704,9781596435700.0,Caragh M. O'Brien,2011.0,Prized,\"Prized (Birthmarked, #2)\",en-US,3.99,19328,20795,1717,305,1011,4401,7958,7120,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442875603l/9424367._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6551,76660,76660,2119206,21,345318854,9780345318860.0,Piers Anthony,1985.0,With a Tangled Skein,\"With a Tangled Skein (Incarnations of Immortality, #3)\",en-GB,3.98,17286,17694,266,119,772,4346,6593,5864,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923111l/76660.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6552,14964,14964,3356743,47,316059854,9780316059860.0,Anita Shreve,2007.0,Body Surfing,Body Surfing,en-US,3.31,15041,16343,1661,439,2313,7075,4820,1696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388257738l/14964.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6553,7628,7628,1881188,362,1551113813,9781551113810.0,\"Ford Madox Ford, Kenneth Womack, William Baker\",1915.0,The Good Soldier,The Good Soldier,,3.72,14471,17622,1160,660,1623,4554,5933,4852,https://images.gr-assets.com/books/1389213508l/7628.jpg,https://images.gr-assets.com/books/1389213508s/7628.jpg\n6554,28484,28484,1251507,21,553567713,9780553567720.0,\"Margaret Weis, Tracy Hickman\",1993.0,Into the Labyrinth,\"Into the Labyrinth (The Death Gate Cycle, #6)\",en-US,4.09,16582,17226,120,136,635,3406,6451,6598,https://images.gr-assets.com/books/1327837279l/28484.jpg,https://images.gr-assets.com/books/1327837279s/28484.jpg\n6555,74821,74821,2138628,33,1411608313,9781411608310.0,J.L. Bourne,2004.0,Day by Day Armageddon,\"Day by Day Armageddon (Day by Day Armageddon,#1)\",eng,4.01,11646,14550,960,296,845,2795,5063,5551,https://images.gr-assets.com/books/1474936945l/74821.jpg,https://images.gr-assets.com/books/1474936945s/74821.jpg\n6558,96472,96472,461555,36,553269828,9780553269830.0,David Brin,1980.0,Sundiver,\"Sundiver (The Uplift Saga, #1)\",eng,3.65,17327,18433,522,361,1481,6061,6799,3731,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176548l/96472.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6559,66857,66857,2951429,27,1569472025,9781569472030.0,Stephen Fry,1997.0,Moab Is My Washpot,Moab Is My Washpot (Memoir #1),eng,3.98,14403,17128,819,382,729,3273,7140,5604,https://images.gr-assets.com/books/1327963490l/66857.jpg,https://images.gr-assets.com/books/1327963490s/66857.jpg\n6560,22454958,25313804,27676857,34,099050560X,9780990505600.0,Meredith Wild,2014.0,Hardline,\"Hardline (Hacker, #3)\",eng,4.26,7246,17804,808,166,508,2565,5905,8660,https://images.gr-assets.com/books/1402463128l/22454958.jpg,https://images.gr-assets.com/books/1402463128s/22454958.jpg\n6561,37297,37297,2696750,38,425214435,9780425214440.0,John Sandford,1991.0,Eyes of Prey,\"Eyes of Prey (Lucas Davenport, #3)\",en-US,4.18,16249,18159,499,84,263,2941,7897,6974,https://images.gr-assets.com/books/1400408527l/37297.jpg,https://images.gr-assets.com/books/1400408527s/37297.jpg\n6563,263172,263172,255110,24,60776242,9780060776240.0,Ellen Schreiber,2005.0,\"Kissing Coffins (Vampire Kisses, #2)\",\"Kissing Coffins (Vampire Kisses, #2)\",en-US,3.87,22124,22921,719,680,2041,5718,5613,8869,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191270l/263172.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6564,7519640,7519640,9737203,38,446556246,9780446556250.0,Sebastian Junger,2010.0,WAR,War,eng,4.22,13946,15686,1454,105,388,2263,6187,6743,https://images.gr-assets.com/books/1344271278l/7519640.jpg,https://images.gr-assets.com/books/1344271278s/7519640.jpg\n6565,8563789,8563789,13432259,22,1442413336,9781442413340.0,John Corey Whaley,2011.0,Where Things Come Back,Where Things Come Back,eng,3.81,14852,17534,2805,468,1372,4278,6267,5149,https://images.gr-assets.com/books/1330581469l/8563789.jpg,https://images.gr-assets.com/books/1330581469s/8563789.jpg\n6566,14963,14963,980920,64,316154512,9780316154510.0,Anita Shreve,2005.0,A Wedding in December,A Wedding in December,,3.08,15869,17142,1432,882,3376,7591,4075,1218,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389217010l/14963.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6567,131304,131304,1608124,41,7162219,9780007162220.0,Simon Singh,2004.0,Big Bang: The Origin of the Universe,Big Bang: The Origin of the Universe,,4.14,12488,13015,282,230,541,2237,4203,5804,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440656279l/131304._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6568,107007,107007,6156668,24,1401201180,9781401201180.0,\"Alan Moore, Kevin O'Neill\",2003.0,\"The League of Extraordinary Gentlemen, Vol. 2\",\"The League of Extraordinary Gentlemen, Vol. 2\",eng,3.94,17034,17879,536,243,959,4149,6863,5665,https://images.gr-assets.com/books/1327904678l/107007.jpg,https://images.gr-assets.com/books/1327904678s/107007.jpg\n6569,83083,83083,3303763,29,143035304,9780143035300.0,Jacqueline Winspear,2004.0,Birds of a Feather,\"Birds of a Feather (Maisie Dobbs, #2)\",en-US,3.95,18359,20713,1963,121,546,4794,9975,5277,https://images.gr-assets.com/books/1386728383l/83083.jpg,https://images.gr-assets.com/books/1386728383s/83083.jpg\n6570,714711,714711,700965,25,1904910033,9781904910040.0,Shiv Khera,1998.0,You Can Win,You Can Win: A Step by Step Tool for Top Achievers,,3.83,10752,11844,389,371,855,2906,4054,3658,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347228056l/714711.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6571,10551947,10551947,15455900,41,399256199,9780399256200.0,John Flanagan,2011.0,The Outcasts,\"The Outcasts (Brotherband Chronicles, #1)\",eng,4.37,16613,18183,1071,197,317,1901,5935,9833,https://images.gr-assets.com/books/1327968303l/10551947.jpg,https://images.gr-assets.com/books/1327968303s/10551947.jpg\n6572,520738,520738,1879439,33,847829863,9780847829870.0,Umberto Eco,2007.0,Storia della bruttezza,On Ugliness,,3.88,12728,13080,109,767,976,2492,3698,5147,https://images.gr-assets.com/books/1320443510l/520738.jpg,https://images.gr-assets.com/books/1320443510s/520738.jpg\n6573,35210,35210,35147,32,007141858X,9780071418580.0,Leil Lowndes,1999.0,How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships,How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships,en-US,3.8,12206,13156,490,439,1057,3446,4027,4187,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184197l/35210.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6574,985386,985386,970881,28,1591163277,9781591163280.0,Gosho Aoyama,1994.0,名探偵コナン 1,\"Case Closed, Vol. 1\",eng,4.36,12867,13948,265,200,379,1788,3414,8167,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347938489l/985386.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6575,79428,79428,14823978,58,60652942,9780060652940.0,C.S. Lewis,1943.0,The Abolition of Man,The Abolition of Man,en-US,4.07,14677,15783,933,268,710,3070,5344,6391,https://images.gr-assets.com/books/1418843138l/79428.jpg,https://images.gr-assets.com/books/1418843138s/79428.jpg\n6576,432020,432020,420998,16,1569319049,9781569319050.0,Yoshihiro Togashi,1990.0,Yu Yu Hakusho,\"Yu Yu Hakusho, Volume 1: Goodbye, Material World! (Yu Yu Hakusho, #1)\",eng,4.29,13807,14037,87,169,503,2075,3593,7697,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387350767l/432020.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6578,45110,45110,2960716,40,60758287,9780060758290.0,Robin Hobb,2005.0,Shaman's Crossing,\"Shaman's Crossing (Soldier Son, #1)\",,3.42,15287,17043,692,824,2353,5684,5221,2961,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924265l/45110.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6579,223462,223462,1345543,33,446694533,9780446694540.0,Joshilyn Jackson,2005.0,Gods in Alabama,Gods in Alabama,en-US,3.86,15290,16469,1731,207,899,4151,6979,4233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441072120l/223462._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6580,6193821,6193821,6374255,36,039915597X,9780399155970.0,Sue Grafton,2009.0,U Is for Undertow,\"U Is for Undertow (Kinsey Millhone, #21)\",en-US,3.93,18716,21416,2124,105,604,5579,9594,5534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194064l/6193821.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6581,111023,111023,106946,35,786907509,9780786907500.0,R.A. Salvatore,1993.0,Passage to Dawn,\"Passage to Dawn (Forgotten Realms: Legacy of the Drow, #4; Legend of Drizzt, #10)\",eng,4.07,13900,15492,152,118,574,3277,5697,5826,https://images.gr-assets.com/books/1312023199l/111023.jpg,https://images.gr-assets.com/books/1312023199s/111023.jpg\n6582,295649,295649,286886,26,015205085X,9780152050860.0,L.A. Meyer,2002.0,\"Bloody Jack: Being an Account of the Curious Adventures of Mary \"\"Jacky\"\" Faber, Ship's Boy\",\"Bloody Jack (Bloody Jack, #1)\",eng,4.11,19147,20265,2001,475,834,3403,6873,8680,https://images.gr-assets.com/books/1392868382l/295649.jpg,https://images.gr-assets.com/books/1392868382s/295649.jpg\n6583,27220736,27220736,4077583,39,1501135910,9781501135910.0,Phil Knight,2016.0,Shoe Dog: A Memoir by the Creator of Nike,Shoe Dog: A Memoir by the Creator of NIKE,eng,4.46,22373,28643,2407,405,487,2235,7997,17519,https://images.gr-assets.com/books/1457284880l/27220736.jpg,https://images.gr-assets.com/books/1457284880s/27220736.jpg\n6585,109367,109367,1097441,50,425204189,9780425204180.0,J.D. Robb,2005.0,\"Survivor in Death (In Death, #20)\",\"Survivor In Death (In Death, #20)\",en-US,4.38,19512,21465,596,58,246,2509,7396,11256,https://images.gr-assets.com/books/1298296888l/109367.jpg,https://images.gr-assets.com/books/1298296888s/109367.jpg\n6586,147941,147941,142771,10,067031255X,9780670312560.0,Andrew Loomis,1943.0,Figure Drawing for All It's Worth (How to draw and paint),Figure Drawing for All It's Worth (How to draw and paint),,3.99,12735,12971,76,637,909,2429,3003,5993,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387701635l/147941.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6587,72929,25337939,1413038,44,1573228737,9781573228730.0,Sarah Waters,1999.0,Affinity,Affinity,eng,3.73,13767,17173,1172,463,1409,4771,6274,4256,https://images.gr-assets.com/books/1328087803l/72929.jpg,https://images.gr-assets.com/books/1328087803s/72929.jpg\n6588,129947,129947,1414582,54,553381571,9780553381570.0,Pat Conroy,1969.0,The Water is Wide,The Water is Wide: A Memoir,,4.09,13513,15469,1124,93,492,3020,6247,5617,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347578693l/129947.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6589,41710,41710,3132229,66,425197387,9780425197390.0,Clive Cussler,1974.0,Iceberg,\"Iceberg (Dirk Pitt, #3)\",eng,3.83,16195,17357,366,141,863,5131,6881,4341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439683898l/41710.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6590,59715,59715,1010526,21,751507954,9780751507960.0,Bill Watterson,1990.0,The Authoritative Calvin and Hobbes,The Authoritative Calvin and Hobbes: A Calvin and Hobbes Treasury,eng,4.73,16087,18198,425,20,61,701,3295,14121,https://images.gr-assets.com/books/1391114055l/59715.jpg,https://images.gr-assets.com/books/1391114055s/59715.jpg\n6591,343881,343881,1154594,44,743234413,9780743234410.0,Tim Winton,1991.0,Cloudstreet,Cloudstreet,eng,3.97,13067,14863,1095,436,954,2670,5338,5465,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441969972l/343881._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6592,179735,179735,1109091,5,843955430,9780843955440.0,Jack Ketchum,1989.0,The Girl Next Door,The Girl Next Door,en-GB,3.95,13491,15793,1567,459,927,3193,5592,5622,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298460378l/179735.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6593,12839,12839,1430297,72,671732498,9780671732490.0,Carlos Castaneda,1968.0,A Separate Reality,A Separate Reality,,4.06,12296,13080,200,202,543,2595,4659,5081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388379914l/12839.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6594,25365,25365,849266,53,1400078377,9781400078370.0,\"Natsuo Kirino, Stephen Snyder\",1997.0,Out  アウト,Out,eng,3.93,14795,17053,1898,302,934,3617,7038,5162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749063l/25365.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6595,543086,543086,530403,69,64404455,9780064404460.0,\"Philippa Pearce, Susan Einzig\",1958.0,Tom's Midnight Garden,Tom's Midnight Garden,,4.05,16398,17849,532,279,762,3705,6189,6914,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198004l/543086.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6596,17563080,17563080,24495476,21,,,Anne Bishop,2014.0,Murder of Crows,\"Murder of Crows (The Others, #2)\",eng,4.31,22994,24694,2235,127,487,2975,9238,11867,https://images.gr-assets.com/books/1371752568l/17563080.jpg,https://images.gr-assets.com/books/1371752568s/17563080.jpg\n6599,17333302,17333302,24064606,56,031623480X,9780316234800.0,\"David  Perlmutter, Kristin Loberg\",2013.0,\"Grain Brain: The Surprising Truth about Wheat, Carbs, and Sugar--Your Brain's Silent Killers\",\"Grain Brain: The Surprising Truth about Wheat, Carbs,  and Sugar--Your Brain's Silent Killers\",eng,3.88,10305,13051,1123,486,783,2899,4534,4349,https://images.gr-assets.com/books/1395680212l/17333302.jpg,https://images.gr-assets.com/books/1395680212s/17333302.jpg\n6600,12527,12527,2280883,54,72434171,9780072434170.0,Annie Dillard,1974.0,Pilgrim at Tinker Creek,Pilgrim at Tinker Creek,eng,4.1,14685,16926,1667,584,905,2560,4988,7889,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388717988l/12527.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6601,13878,13878,747434,46,553588117,9780553588120.0,Raymond E. Feist,1989.0,Prince of the Blood,\"Prince of the Blood (Krondor's Sons, #1)\",en-US,3.94,16466,18117,207,98,742,4731,7110,5436,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194833l/13878.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6602,359581,359581,1867046,54,9993911550,9789993911560.0,Roger Zelazny,1978.0,The Courts of Chaos,The Courts of Chaos (The Chronicles of Amber #5),eng,4.19,16453,17315,254,104,487,3058,6113,7553,https://images.gr-assets.com/books/1417786728l/359581.jpg,https://images.gr-assets.com/books/1417786728s/359581.jpg\n6603,12158480,12158480,17129429,57,307719219,9780307719220.0,\"Daron Acemoğlu, James A. Robinson\",2012.0,\"Why Nations Fail: The Origins of Power, Prosperity, and Poverty \",\"Why Nations Fail: The Origins of Power, Prosperity, and Poverty\",,3.99,11752,14395,1440,205,729,2889,5701,4871,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348987396l/12158480.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6604,24796,24796,1461252,66,006078721X,9780060787220.0,\"Isabel Allende, Margaret Sayers Peden\",2005.0,El Zorro,Zorro,eng,3.75,14327,16954,1433,325,1188,4881,6615,3945,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388630835l/24796.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6605,49322,49322,898491,25,761123695,9780761123700.0,Marti Olsen Laney,2002.0,The Introvert Advantage: How to Thrive in an Extrovert World,The Introvert Advantage: How to Thrive in an Extrovert World,eng,3.88,12950,13581,756,344,934,3216,4602,4485,https://images.gr-assets.com/books/1348042078l/49322.jpg,https://images.gr-assets.com/books/1348042078s/49322.jpg\n6606,102956,102956,1940784,14,1563894289,9781563894280.0,\"Garth Ennis, Steve Dillon\",1998.0,Preacher: Dixie Fried,\"Preacher, Volume 5: Dixie Fried\",eng,4.29,15961,16192,199,184,435,2098,5210,8265,https://images.gr-assets.com/books/1309916427l/102956.jpg,https://images.gr-assets.com/books/1309916427s/102956.jpg\n6607,31491,31491,2337578,271,451530306,9780451530300.0,\"D.H. Lawrence, Daphne Merkin\",1915.0,The Rainbow,The Rainbow,eng,3.67,14044,15668,550,625,1454,4322,5313,3954,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193710l/31491.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6608,35805,35805,35731,52,439405572,9780439405580.0,Kathryn Lasky,2003.0,The Capture,\"The Capture (Guardians of Ga'Hoole, #1)\",eng,3.88,18830,20258,1296,511,1355,4938,6622,6832,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460181l/35805.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6609,8727466,8727466,13600443,29,307272702,9780307272710.0,Gary Taubes,2010.0,Why We Get Fat: And What to Do about It,Why We Get Fat: And What to Do About It,en-GB,4.04,11569,14398,1621,313,707,2601,5235,5542,https://images.gr-assets.com/books/1320563681l/8727466.jpg,https://images.gr-assets.com/books/1320563681s/8727466.jpg\n6610,410445,410445,3082377,47,399154485,9780399154480.0,Sue Grafton,2007.0,T is for Trespass ,\"T is for Trespass (Kinsey Millhone, #20)\",en-US,3.91,18582,20491,1529,153,680,5324,8941,5393,https://images.gr-assets.com/books/1266546923l/410445.jpg,https://images.gr-assets.com/books/1266546923s/410445.jpg\n6611,95395,95395,91962,12,156389405X,9781563894050.0,\"Garth Ennis, Steve Dillon, Steve Pugh, Matt Hollingsworth, Carlos Ezquerra, Richard Case\",1998.0,\"Preacher: Ancient History (Preacher, #4)\",\"Preacher, Volume 4: Ancient History\",eng,4.25,14945,15230,268,157,505,2190,4876,7502,https://images.gr-assets.com/books/1309916054l/95395.jpg,https://images.gr-assets.com/books/1309916054s/95395.jpg\n6612,29036,29036,29511,15,143036491,9780143036490.0,John M. Barry,2004.0,The Great Influenza: The Epic Story of the Deadliest Plague in History,The Great Influenza: The Story of the Deadliest Pandemic in History,eng,3.95,14762,15443,1294,251,801,3419,5935,5037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924908l/29036.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6613,79421,79421,930013,25,082546207X,9780825462080.0,\"Paul Hattaway, Brother Yun\",2000.0,The Heavenly Man: The Remarkable True Story of Chinese Christian Brother Yun,The Heavenly Man: The Remarkable True Story of Chinese Christian Brother Yun,eng,4.33,12537,13133,620,195,363,1716,3537,7322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388287262l/79421.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6614,18693743,18693743,25595312,28,425268780,9780425268780.0,Mark  Lawrence,2014.0,Prince of Fools,\"Prince of Fools (The Red Queen's War, #1)\",eng,4.07,11579,16567,1460,217,606,2838,7008,5898,https://images.gr-assets.com/books/1385072473l/18693743.jpg,https://images.gr-assets.com/books/1385072473s/18693743.jpg\n6615,6551,6551,2088454,108,142437298,9780142437290.0,\"Saul Bellow, Philip Roth\",1964.0,Herzog,Herzog,eng,3.79,14324,15455,843,501,1214,3757,5607,4376,https://images.gr-assets.com/books/1386924221l/6551.jpg,https://images.gr-assets.com/books/1386924221s/6551.jpg\n6616,12792658,12792658,17940593,27,147111810X,9781471118100.0,Neal Shusterman,2013.0,UnSouled,\"UnSouled (Unwind, #3)\",en-US,4.23,15526,19175,2037,87,382,2866,7625,8215,https://images.gr-assets.com/books/1378899523l/12792658.jpg,https://images.gr-assets.com/books/1378899523s/12792658.jpg\n6617,95747,95747,105847,51,807012394,9780807012390.0,Thich Nhat Hanh,1975.0,The Miracle of Mindfulness: A Manual on Meditation,The Miracle of Mindfulness: An Introduction to the Practice of Meditation,,4.26,13241,15001,688,150,358,2009,5360,7124,https://images.gr-assets.com/books/1320448079l/95747.jpg,https://images.gr-assets.com/books/1320448079s/95747.jpg\n6618,120840,120840,1704454,12,439050227,9780439050230.0,David Shannon,2002.0,David Gets in Trouble,David Gets In Trouble,,4.22,15055,15118,407,339,656,2496,3528,8099,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426869289l/120840.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6619,272264,272264,745050,34,340739304,9780340739300.0,Iris Johansen,1998.0,The Face Of Deception,\"The Face Of Deception (Eve Duncan, #1)\",eng,4.07,17235,18852,654,205,629,3884,7133,7001,https://images.gr-assets.com/books/1314902854l/272264.jpg,https://images.gr-assets.com/books/1314902854s/272264.jpg\n6620,5755,5755,2422982,47,60958332,9780060958340.0,Steven Pinker,1994.0,The Language Instinct: How the Mind Creates Language,The Language Instinct: How the Mind Creates Language,eng,4.05,12870,14314,723,234,606,2641,5629,5204,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342388l/5755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6621,20312459,20312459,28147218,16,1616203048,9781616203050.0,Tim Johnston,2015.0,Descent,Descent,eng,3.59,11443,14549,2099,538,1454,4206,5611,2740,https://images.gr-assets.com/books/1410170967l/20312459.jpg,https://images.gr-assets.com/books/1410170967s/20312459.jpg\n6622,780845,780845,766871,8,142150605X,9781421506050.0,Kentaro Yabuki,2001.0,\"Black Cat, Volume 1\",\"Black Cat, Volume 01\",eng,4.08,13945,13999,106,349,781,2710,3698,6461,https://images.gr-assets.com/books/1399825755l/780845.jpg,https://images.gr-assets.com/books/1399825755s/780845.jpg\n6623,12982393,12982393,18141649,34,316097772,9780316097770.0,Megan Abbott,2012.0,Dare Me,Dare Me,eng,3.23,15618,17353,2684,1154,3070,5956,4930,2243,https://images.gr-assets.com/books/1342214694l/12982393.jpg,https://images.gr-assets.com/books/1342214694s/12982393.jpg\n6624,10549501,10549501,14412686,21,451234871,9780451234870.0,Rachel Caine,2011.0,Last Breath,\"Last Breath (The Morganville Vampires, #11)\",eng,4.32,19963,21799,1224,190,482,3024,6600,11503,https://images.gr-assets.com/books/1327900044l/10549501.jpg,https://images.gr-assets.com/books/1327900044s/10549501.jpg\n6625,128711,128711,563704,74,,9780060878140.0,\"Alaa Al Aswany, علاء الأسواني\",2002.0,عمارة يعقوبيان,The Yacoubian Building,eng,3.65,7308,14576,1240,572,1272,4000,5607,3125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348797639l/128711.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6626,2176873,2176873,2182550,5,307394549,9780307394540.0,\"Martha Stewart, Victor Schrager\",2008.0,Martha Stewart's Cookies,Martha Stewart's Cookies: The Very Best Treats to Bake and to Share,eng,4.04,13991,14019,182,522,710,2545,4098,6144,https://images.gr-assets.com/books/1320457250l/2176873.jpg,https://images.gr-assets.com/books/1320457250s/2176873.jpg\n6627,7432,7432,1751542,27,312426216,9780312426220.0,Jacqueline Winspear,2005.0,Pardonable Lies,\"Pardonable Lies (Maisie Dobbs, #3)\",en-US,4.09,17947,19200,1418,76,343,3487,9191,6103,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442622025l/7432._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6628,65091,65091,1953064,29,1582349231,9781582349240.0,E.D. Baker,2002.0,\"The Frog Princess (The Tales of the Frog Princess, #1)\",\"The Frog Princess (Tales of the Frog Princess, #1)\",eng,3.81,22176,22774,1131,585,1759,6186,7108,7136,https://images.gr-assets.com/books/1397766099l/65091.jpg,https://images.gr-assets.com/books/1397766099s/65091.jpg\n6629,29034,29034,29507,36,143104403,9780143104410.0,\"Reginald Rose, David Mamet\",1954.0,Twelve Angry Men (Penguin Classics),Twelve Angry Men,,4.07,15986,17542,776,201,791,3323,6531,6696,https://images.gr-assets.com/books/1327910292l/29034.jpg,https://images.gr-assets.com/books/1327910292s/29034.jpg\n6630,5599692,5599692,5771048,18,1401223036,9781401223040.0,\"Neil Gaiman, Andy Kubert, Matt Wagner, Simon Bisley, Bernie Mireault, Mark Buckingham\",2009.0,Batman: Whatever Happened to the Caped Crusader?,Batman: Whatever Happened to the Caped Crusader?,eng,3.97,14359,15056,627,200,881,3475,5071,5429,https://images.gr-assets.com/books/1484915793l/5599692.jpg,https://images.gr-assets.com/books/1484915793s/5599692.jpg\n6631,8483233,8483233,13348402,31,61997161,9780061997170.0,Ree Drummond,2011.0,The Pioneer Woman: Black Heels to Tractor Wheels,The Pioneer Woman: Black Heels to Tractor Wheels,en-US,3.81,14976,16590,2677,528,1277,4126,5597,5062,https://images.gr-assets.com/books/1327898663l/8483233.jpg,https://images.gr-assets.com/books/1327898663s/8483233.jpg\n6632,114308,114308,2857646,33,394826205,9780394826200.0,Leo Lionni,1963.0,Swimmy ,Swimmy,en-US,4.13,19168,19466,525,380,782,3614,5864,8826,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348474037l/114308.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6633,169718,169718,2772467,328,142640607X,9781426406070.0,Sinclair Lewis,1922.0,Babbitt,Babbitt,,3.64,14204,17437,973,609,1551,5078,6402,3797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348449518l/169718.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6634,394469,394469,1196119,40,679736328,9780679736320.0,Cormac McCarthy,1979.0,Suttree,Suttree,eng,4.18,12824,13913,1077,209,555,2203,4510,6436,https://images.gr-assets.com/books/1397600192l/394469.jpg,https://images.gr-assets.com/books/1397600192s/394469.jpg\n6635,6937878,6937878,6902415,14,61689424,9780061689420.0,Ellen Schreiber,2010.0,\"Love Bites (Vampire Kisses, #7)\",\"Love Bites (Vampire Kisses, #7)\",en-US,4.13,17707,17970,316,327,1048,3489,4248,8858,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442794976l/6937878._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6637,2642070,2642070,2666806,10,1416950737,9781416950740.0,Tori Spelling,2008.0,sTORI Telling,sTORI Telling,en-US,3.62,14699,15512,1736,373,1433,5167,5237,3302,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347402378l/2642070.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6638,17333277,17333277,24064581,39,316210900,9780316210900.0,James Patterson,2013.0,Cross My Heart,\"Cross My Heart (Alex Cross, #21)\",eng,4.03,10946,15802,1665,261,712,3132,5931,5766,https://images.gr-assets.com/books/1410755815l/17333277.jpg,https://images.gr-assets.com/books/1410755815s/17333277.jpg\n6639,11324722,11324722,16252969,24,307377903,9780307377910.0,Jonathan Haidt,2012.0,The Righteous Mind: Why Good People Are Divided by Politics and Religion,The Righteous Mind: Why Good People are Divided by Politics and Religion,eng,4.16,12677,14886,1860,280,585,2212,5256,6553,https://images.gr-assets.com/books/1351393217l/11324722.jpg,https://images.gr-assets.com/books/1351393217s/11324722.jpg\n6640,17206,17206,592466,25,439700884,9780439700890.0,Garth Nix,2007.0,Lady Friday,\"Lady Friday (The Keys to the Kingdom, #5)\",en-US,3.91,17675,18565,275,163,900,5018,6784,5700,https://images.gr-assets.com/books/1304528767l/17206.jpg,https://images.gr-assets.com/books/1304528767s/17206.jpg\n6641,7405450,7405450,9315103,9,1849234752,9781849234760.0,Kristen Ashley,2009.0,Rock Chick Rescue,\"Rock Chick Rescue (Rock Chick, #2)\",eng,4.31,26661,29670,1792,133,645,3783,10444,14665,https://images.gr-assets.com/books/1416398897l/7405450.jpg,https://images.gr-assets.com/books/1416398897s/7405450.jpg\n6642,13490570,13490570,19029792,14,1613772270,9781613772270.0,\"Joe Hill, Gabriel Rodríguez\",2013.0,Clockworks,\"Locke & Key, Vol. 5: Clockworks\",eng,4.5,16441,17551,1067,100,252,1240,5119,10840,https://images.gr-assets.com/books/1343848792l/13490570.jpg,https://images.gr-assets.com/books/1343848792s/13490570.jpg\n6643,3223761,3223761,3257851,19,316002569,9780316002560.0,Wendy Mass,2008.0,Every Soul A Star,Every Soul a Star,eng,4.1,17282,18138,1653,256,777,3362,6237,7506,https://images.gr-assets.com/books/1330221785l/3223761.jpg,https://images.gr-assets.com/books/1330221785s/3223761.jpg\n6644,146064,146064,2421914,23,1582433542,9781582433550.0,Julia Scheeres,2005.0,Jesus Land : A Memoir,Jesus Land,en-US,3.97,13562,14456,1449,200,623,3122,6041,4470,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439587814l/146064._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6645,138070,138070,133088,13,618194576,9780618194580.0,David Wiesner,2006.0,Flotsam,Flotsam,en-US,4.28,19541,19628,2069,461,673,2478,5259,10757,https://images.gr-assets.com/books/1381052967l/138070.jpg,https://images.gr-assets.com/books/1381052967s/138070.jpg\n6646,24631990,24483265,44077500,27,,,Angela Marsons,2015.0,Silent Scream,\"Silent Scream (D.I. Kim Stone, #1)\",eng,4.02,9547,17965,1549,355,772,3390,7036,6412,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431858976l/24631990._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6647,6534132,6534132,6726263,11,316013560,9780316013570.0,Jerry Pinkney,2009.0,The Lion & the Mouse,The Lion and the Mouse,eng,4.23,17941,18255,2451,296,618,2791,5423,9127,https://images.gr-assets.com/books/1259865825l/6534132.jpg,https://images.gr-assets.com/books/1259865825s/6534132.jpg\n6648,133906,133906,129000,6,679764089,9780679764080.0,Langston Hughes,1994.0,The Collected Poems of Langston Hughes,The Collected Poems,,4.32,13835,14019,185,93,267,1901,4572,7186,https://images.gr-assets.com/books/1367492866l/133906.jpg,https://images.gr-assets.com/books/1367492866s/133906.jpg\n6649,12507214,12507214,17492836,34,765328666,9780765328660.0,Kendare Blake,2012.0,Girl of Nightmares,\"Girl of Nightmares (Anna, #2)\",eng,3.9,20708,22645,3111,363,1383,5512,8354,7033,https://images.gr-assets.com/books/1344463840l/12507214.jpg,https://images.gr-assets.com/books/1344463840s/12507214.jpg\n6651,6612005,6612005,6806006,8,1427817693,9781427817690.0,\"QuinRose, Soumei Hoshino\",2008.0,Heart no Kuni no Alice  ,\"Alice in the Country of Hearts, Vol. 01 (Alice in the Country of Hearts, #1)\",eng,4.21,14692,14831,268,379,775,2226,3355,8096,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388619383l/6612005.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6652,8949,8949,846981,49,316156280,9780316156290.0,Darren Shan,2005.0,\"Lord of the Shadows (Cirque Du Freak, #11)\",\"Lord of the Shadows (Cirque Du Freak, #11)\",eng,4.22,15794,17290,352,159,605,2807,5397,8322,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251260l/8949.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6653,30036,30036,388812,56,441203981,9780441203990.0,Michael Moorcock,1972.0,Elric of Melniboné,\"Elric of Melniboné (Elric, #1)\",en-US,3.89,17728,18953,673,334,1166,4528,7180,5745,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345555l/30036.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6654,537375,537375,277716,34,375404031,9780375404030.0,Caroline Alexander,1998.0,The Endurance: Shackleton's legendary Antarctic expedition,The Endurance: Shackleton's Legendary Antarctic Expedition,eng,4.31,14529,14772,400,189,266,1779,5102,7436,https://images.gr-assets.com/books/1320487170l/537375.jpg,https://images.gr-assets.com/books/1320487170s/537375.jpg\n6656,2617684,2617684,6538045,8,717287564,9780717287570.0,Walt Disney Company,1976.0,Winnie the Pooh and Tigger Too,Winnie the Pooh and Tigger Too (Disney's Wonderful World of Reading),eng,4.39,14121,14211,50,176,376,1999,2832,8828,https://images.gr-assets.com/books/1329390079l/2617684.jpg,https://images.gr-assets.com/books/1329390079s/2617684.jpg\n6658,1169808,1169808,1157551,62,61059919,9780061059920.0,L.J. Smith,1991.0,The Fury,\"The Fury (The Vampire Diaries, #3)\",en-US,3.55,19911,23800,730,1001,3026,7453,6435,5885,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1583708264l/1169808._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6659,26200563,26200563,46177490,12,1455539740,9781455539740.0,\"Lin-Manuel Miranda, Jeremy McCarter\",2016.0,Hamilton: The Revolution,Hamilton: The Revolution,eng,4.47,24800,25565,3339,693,530,1834,5496,17012,https://images.gr-assets.com/books/1451400644l/26200563.jpg,https://images.gr-assets.com/books/1451400644s/26200563.jpg\n6660,9838800,13595638,14729522,55,399256504,9780399256510.0,Harlan Coben,2011.0,Shelter,\"Shelter (Mickey Bolitar, #1)\",eng,3.92,9081,17190,1992,227,808,4130,6911,5114,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388283277l/9838800.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6662,14469,14469,2152803,34,1593080425,9781593080430.0,\"O. Henry, Victoria Blake\",1977.0,Selected Stories of O. Henry ,Selected Stories,,4.16,15308,15560,110,189,465,2772,5433,6701,https://images.gr-assets.com/books/1328753059l/14469.jpg,https://images.gr-assets.com/books/1328753059s/14469.jpg\n6663,3885,3885,7609,7,898214971,9780898214970.0,\"Janet Briggs, Beth Wittlinger\",2006.0,The Taste of Home Cookbook,The Taste of Home Cookbook,,4.25,14469,14543,38,185,493,2219,4215,7431,https://images.gr-assets.com/books/1309198140l/3885.jpg,https://images.gr-assets.com/books/1309198140s/3885.jpg\n6665,31335,31335,2925856,35,345396936,9780345396940.0,Anne Rice,1982.0,Cry to Heaven,Cry to Heaven,en-US,3.83,16988,17794,601,467,1486,4449,5576,5816,https://images.gr-assets.com/books/1385216547l/31335.jpg,https://images.gr-assets.com/books/1385216547s/31335.jpg\n6666,7849034,7849034,10965495,28,62012037,9780062012040.0,Josephine Angelini,2013.0,Goddess,\"Goddess (Starcrossed, #3)\",eng,4.24,20589,23486,1841,286,829,3412,7286,11673,https://images.gr-assets.com/books/1351415040l/7849034.jpg,https://images.gr-assets.com/books/1351415040s/7849034.jpg\n6667,7828882,7828882,7156794,37,451229444,9780451229440.0,J.R. Ward,2010.0,Crave,\"Crave (Fallen Angels, #2)\",en-US,4.09,22105,24211,1330,249,933,4718,8914,9397,https://images.gr-assets.com/books/1373163501l/7828882.jpg,https://images.gr-assets.com/books/1373163501s/7828882.jpg\n6668,460717,460717,1947264,86,553268465,9780553268460.0,Frederick Forsyth,1974.0,The Dogs of War,The Dogs of War,,3.96,14860,15773,261,106,641,3876,6353,4797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348845549l/460717.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6669,66655,66655,1888272,33,031285787X,9780312857880.0,Brian Lumley,1986.0,Necroscope ,\"Necroscope (Necroscope, #1)\",,3.99,14397,15734,496,430,901,3253,4987,6163,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170652860l/66655.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6670,760941,760941,1264345,19,515103292,9780515103300.0,\"Truddi Chase, Robert A. Phillips Jr.\",1980.0,When Rabbit Howls,When Rabbit Howls,en-GB,4.03,13975,14372,499,253,655,3077,4825,5562,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347947183l/760941.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6671,10433900,10433900,15338406,19,62026089,9780062026090.0,Robison Wells,2011.0,Variant,\"Variant (Variant, #1)\",en-US,3.92,18473,19423,2509,338,1158,4482,7102,6343,https://images.gr-assets.com/books/1298564680l/10433900.jpg,https://images.gr-assets.com/books/1298564680s/10433900.jpg\n6672,7520,7520,10636,28,141651631X,9781416516320.0,Brad Thor,2003.0,Path of the Assassin,\"Path of the Assassin (Scot Harvath, #2)\",eng,4.17,12652,15324,493,103,388,2445,6327,6061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389574030l/7520.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6673,568099,568099,2960837,37,345379071,9780345379080.0,David Gemmell,1986.0,Waylander ,\"Waylander (The Drenai Saga, #3)\",eng,4.26,13977,14969,233,70,340,2208,5372,6979,https://images.gr-assets.com/books/1403179303l/568099.jpg,https://images.gr-assets.com/books/1403179303s/568099.jpg\n6675,46755,46755,924766,68,385491050,9780385491050.0,Margaret Atwood,1972.0,Surfacing,Surfacing,eng,3.45,15494,16896,1018,595,2144,5992,5461,2704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924306l/46755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6676,15733851,15733851,21415597,36,000748805X,9780007488060.0,Mhairi McFarlane,2012.0,You Had Me At Hello,You Had Me At Hello,,3.79,12687,15836,1441,363,1097,4284,5778,4314,https://images.gr-assets.com/books/1348787624l/15733851.jpg,https://images.gr-assets.com/books/1348787624s/15733851.jpg\n6677,10256723,10256723,15156997,27,316037702,9780316037710.0,\"Kevin D. Mitnick, William L. Simon, Steve Wozniak\",2011.0,Ghost in the Wires: My Adventures as the World's Most Wanted Hacker,Ghost in the Wires: My Adventures as the World's Most Wanted Hacker,en-US,3.95,12831,14993,1287,393,770,3019,5860,4951,https://images.gr-assets.com/books/1344265017l/10256723.jpg,https://images.gr-assets.com/books/1344265017s/10256723.jpg\n6678,35233,35233,3251669,2,812538366,9780812538370.0,Robert Jordan,1990.0,\"The Wheel of Time: Boxed Set #1 (Wheel of Time, #1-3)\",\"The Wheel of Time: Boxed Set #1 (Wheel of Time, #1-3)\",,4.43,13049,13051,39,197,307,1172,3414,7961,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429436324l/35233.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6680,6621143,6621143,6815311,20,670011460,9780670011470.0,Susane Colasanti,2010.0,Something Like Fate,Something Like Fate,,3.72,17347,18139,1276,686,1873,4916,5050,5614,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399592376l/6621143.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6681,68521,68521,3314752,57,312206488,9780312206480.0,Bernard Cornwell,1997.0,Excalibur,\"Excalibur (The Warlord Chronicles, #3)\",,4.38,12925,15034,436,35,182,1758,5133,7926,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439813914l/68521._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6682,7352053,7352053,9116984,16,670021679,9780670021670.0,Robin Oliveira,2010.0,My Name Is Mary Sutter,My Name is Mary Sutter,en-US,3.81,16348,17720,2473,299,1047,4665,7429,4280,https://images.gr-assets.com/books/1263584183l/7352053.jpg,https://images.gr-assets.com/books/1263584183s/7352053.jpg\n6683,116563,116563,3464,30,152047387,9780152047380.0,Diane Duane,1983.0,So You Want to Be a Wizard,\"So You Want to Be a Wizard (Young Wizards, #1)\",en-US,3.8,20408,22281,971,798,1791,5478,7247,6967,https://images.gr-assets.com/books/1328877065l/116563.jpg,https://images.gr-assets.com/books/1328877065s/116563.jpg\n6684,16326,16326,820002,179,000711933X,9780007119330.0,Agatha Christie,1935.0,Death in the Clouds,\"Death in the Clouds (Hercule Poirot, #12)\",eng,3.78,17308,20651,862,120,1032,6644,8256,4599,https://images.gr-assets.com/books/1308808359l/16326.jpg,https://images.gr-assets.com/books/1308808359s/16326.jpg\n6685,7313444,7313444,8814805,28,1416586598,9781416586590.0,Brad Thor,2010.0,Foreign Influence,\"Foreign Influence (Scot Harvath, #9)\",en-US,4.24,13392,15033,462,124,302,2106,5874,6627,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439858958l/7313444._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6686,2197227,2197227,2262692,57,446580295,9780446580300.0,\"Douglas Preston, Lincoln Child\",2009.0,Cemetery Dance,\"Cemetery Dance (Pendergast, #9)\",eng,4.0,16120,18494,1042,138,658,4051,7897,5750,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442910567l/2197227._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6687,7332753,7332753,8987023,44,446540331,9780446540340.0,Christopher Hitchens,2010.0,Hitch-22: Some Confessions and Contradictions,Hitch-22: A Memoir,eng,4.03,12643,14373,1122,252,579,2673,5873,4996,https://images.gr-assets.com/books/1327906136l/7332753.jpg,https://images.gr-assets.com/books/1327906136s/7332753.jpg\n6688,10507,10507,234717,119,156029065,9780156029060.0,\"Umberto Eco, William Weaver, R.C.S. Libri\",2000.0,Baudolino,Baudolino,en-US,3.71,13941,16184,760,405,1424,4572,5848,3935,https://images.gr-assets.com/books/1479698120l/10507.jpg,https://images.gr-assets.com/books/1479698120s/10507.jpg\n6689,287633,287633,2830894,34,505523892,9780505523890.0,Christine Feehan,2000.0,Dark Magic,\"Dark Magic (Dark, #4)\",eng,4.24,20156,21829,593,221,752,3398,6579,10879,https://images.gr-assets.com/books/1327895205l/287633.jpg,https://images.gr-assets.com/books/1327895205s/287633.jpg\n6690,5369,5369,2696461,44,034548343X,,Steve Berry,2003.0,The Amber Room,The Amber Room,,3.83,16519,18188,881,291,1261,4804,6799,5033,https://images.gr-assets.com/books/1329497506l/5369.jpg,https://images.gr-assets.com/books/1329497506s/5369.jpg\n6691,8598554,8598554,13468352,39,038566740X,9780385667400.0,Terry Goodkind,2011.0,\"The Omen Machine (Richard and Kahlan, #1)\",\"The Omen Machine (Sword of Truth, #12; Richard and Kahlan, #1)\",eng,3.66,13301,15731,886,745,1667,4184,4673,4462,https://images.gr-assets.com/books/1320450369l/8598554.jpg,https://images.gr-assets.com/books/1320450369s/8598554.jpg\n6693,105760,105760,1258126,27,425098087,9780425098080.0,Robert Graysmith,1986.0,Zodiac,Zodiac,,3.89,13120,14116,485,155,698,3807,5376,4080,https://images.gr-assets.com/books/1297734691l/105760.jpg,https://images.gr-assets.com/books/1297734691s/105760.jpg\n6694,25613617,25613617,45424865,37,1784751995,9781784752000.0,\"James Patterson, Maxine Paetro\",2016.0,15th Affair,15th Affair (Women's Murder Club #15),eng,4.04,11112,17768,1502,166,717,3535,7124,6226,https://images.gr-assets.com/books/1444918177l/25613617.jpg,https://images.gr-assets.com/books/1444918177s/25613617.jpg\n6695,19000,19000,1442776,113,,9780743287200.0,John le Carré,2001.0,The Constant Gardener,The Constant Gardener,,3.78,13347,16460,1008,285,1086,4434,6891,3764,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348649766l/19000.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6696,87745,87745,2249197,71,446699489,9780446699490.0,David Baldacci,2000.0,Wish You Well,Wish You Well,eng,3.94,14838,17481,2030,268,956,3917,6728,5612,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441500949l/87745._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6697,31314,31314,1284702,10,1563054426,9781563054430.0,Sandra Boynton,1993.0,Barnyard Dance,Barnyard Dance,en-US,4.25,18694,18779,406,278,672,2956,4995,9878,https://images.gr-assets.com/books/1404580374l/31314.jpg,https://images.gr-assets.com/books/1404580374s/31314.jpg\n6699,26154406,26154406,45670644,14,1451686633,9781451686630.0,Lisa Lutz,2016.0,The Passenger,The Passenger,eng,3.71,13544,16824,2692,286,1112,5120,7067,3239,https://images.gr-assets.com/books/1456682660l/26154406.jpg,https://images.gr-assets.com/books/1456682660s/26154406.jpg\n6700,18211536,18211536,25633433,25,,,Abbi Glines,2014.0,\"Rush Too Far (Too Far, #4)\",\"Rush Too Far (Rosemary Beach, #4; Too Far, #4)\",eng,4.25,25432,26759,1816,296,905,3845,8607,13106,https://images.gr-assets.com/books/1393569509l/18211536.jpg,https://images.gr-assets.com/books/1393569509s/18211536.jpg\n6701,7968,7968,98069,47,812524268,9780812524260.0,Orson Scott Card,1988.0,\"Red Prophet (Tales of Alvin Maker, #2)\",\"Red Prophet (Tales of Alvin Maker, #2)\",en-US,3.78,16704,17625,446,211,1060,5211,7063,4080,https://images.gr-assets.com/books/1379147136l/7968.jpg,https://images.gr-assets.com/books/1379147136s/7968.jpg\n6702,682751,682751,2347064,26,810918684,9780810918690.0,Graeme Base,1986.0,Animalia,Animalia,eng,4.28,18886,19330,504,277,643,2867,5215,10328,https://images.gr-assets.com/books/1344705263l/682751.jpg,https://images.gr-assets.com/books/1344705263s/682751.jpg\n6703,12755792,12755792,17897317,14,,2940013283250.0,Elizabeth   Hunter,2011.0,A Hidden Fire,\"A Hidden Fire (Elemental Mysteries, #1)\",,4.05,13646,19967,1716,424,938,3614,7323,7668,https://images.gr-assets.com/books/1475548523l/12755792.jpg,https://images.gr-assets.com/books/1475548523s/12755792.jpg\n6704,139569,139569,1523329,14,1555838537,9781555838540.0,Leslie Feinberg,1993.0,Stone Butch Blues,Stone Butch Blues,en-US,4.27,13570,13969,760,197,411,1948,4256,7157,https://images.gr-assets.com/books/1328758827l/139569.jpg,https://images.gr-assets.com/books/1328758827s/139569.jpg\n6705,18296030,18296030,18770689,24,1423175123,9781423175120.0,Jennifer L. Armentrout,2014.0,Don't Look Back,Don't Look Back,eng,4.11,11499,21777,3300,303,806,3789,8159,8720,https://images.gr-assets.com/books/1380803444l/18296030.jpg,https://images.gr-assets.com/books/1380803444s/18296030.jpg\n6706,23719378,23719378,43328906,21,544409914,9780544409910.0,Amy  Stewart,2015.0,Girl Waits with Gun,\"Girl Waits with Gun (Kopp Sisters, #1)\",eng,3.78,13775,16206,2887,212,837,4494,7431,3232,https://images.gr-assets.com/books/1500687846l/23719378.jpg,https://images.gr-assets.com/books/1500687846s/23719378.jpg\n6707,18209290,18736672,25630049,23,307962903,9780307962900.0,Maggie Shipstead,2014.0,Astonish Me,Astonish Me,eng,3.57,7504,13825,1726,363,1153,4648,5546,2115,https://images.gr-assets.com/books/1384816768l/18209290.jpg,https://images.gr-assets.com/books/1384816768s/18209290.jpg\n6708,899608,899608,728902,12,394800230,9780394800230.0,\"Helen Marion Palmer, P.D. Eastman\",1961.0,A Fish Out of Water,A Fish Out of Water,eng,4.21,19536,19604,194,540,861,3130,4395,10678,https://images.gr-assets.com/books/1320551686l/899608.jpg,https://images.gr-assets.com/books/1320551686s/899608.jpg\n6709,12016,12016,124371,30,743421922,9780743421930.0,Iain M. Banks,2000.0,Look to Windward,\"Look to Windward (Culture, #7)\",eng,4.16,13916,16669,496,56,320,2720,7336,6237,https://images.gr-assets.com/books/1288930978l/12016.jpg,https://images.gr-assets.com/books/1288930978s/12016.jpg\n6712,87632,87632,402984,32,1585424803,9781585424800.0,Dean Karnazes,2005.0,Ultramarathon Man: Confessions of an All-Night Runner,Ultramarathon Man: Confessions of an All-Night Runner,,3.94,11706,12755,1090,189,689,2915,4882,4080,https://images.gr-assets.com/books/1309199653l/87632.jpg,https://images.gr-assets.com/books/1309199653s/87632.jpg\n6713,18007532,18007532,24349001,54,385349580,9780385349580.0,Robert   Harris,2013.0,An Officer and a Spy,An Officer and a Spy,eng,4.14,9411,14413,1773,166,407,2121,6280,5439,https://images.gr-assets.com/books/1378711003l/18007532.jpg,https://images.gr-assets.com/books/1378711003s/18007532.jpg\n6714,20897517,20897517,28027377,18,385535376,9780385535370.0,Hampton Sides,2014.0,In the Kingdom of Ice: The Grand and Terrible Polar Voyage of the USS Jeannette,In the Kingdom of Ice: The Grand and Terrible Polar Voyage of the USS Jeannette,eng,4.18,11444,13550,1809,280,424,1771,5139,5936,https://images.gr-assets.com/books/1395935993l/20897517.jpg,https://images.gr-assets.com/books/1395935993s/20897517.jpg\n6715,170651,170651,1961151,75,743484371,9780743484370.0,Mary Higgins Clark,1977.0,A Stranger Is Watching,A Stranger Is Watching,eng,3.91,15659,17151,314,110,674,4862,6469,5036,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348183418l/170651.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6716,80672,80672,2055054,47,142408786,9780142408780.0,Judy Blume,2002.0,Double Fudge,\"Double Fudge (Fudge, #5)\",eng,3.96,17622,18573,652,191,948,4768,6177,6489,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925126l/80672.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6717,8462184,8462184,13783430,5,451233557,9780451233550.0,Rachel Caine,2010.0,\"The Morganville Vampires, Volume 3\",\"The Morganville Vampires, Volume 3 (The Morganville Vampires, #5-6)\",eng,4.39,13849,13882,76,235,410,1621,3018,8598,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393480447l/8462184.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6719,2754510,2754510,3159815,24,1420100963,9781420100970.0,Richelle Mead,2008.0,Storm Born,Storm Born (Dark Swan #1),eng,3.9,25018,26618,1408,617,1674,6137,9445,8745,https://images.gr-assets.com/books/1327900947l/2754510.jpg,https://images.gr-assets.com/books/1327900947s/2754510.jpg\n6720,9674335,9674335,14562177,14,1600108865,9781600108860.0,\"Joe Hill, Gabriel Rodríguez\",2011.0,\"Locke & Key, Vol. 4: Keys to the Kingdom\",\"Locke & Key, Vol. 4: Keys to the Kingdom\",eng,4.44,17333,18790,1100,111,262,1592,6124,10701,https://images.gr-assets.com/books/1377306592l/9674335.jpg,https://images.gr-assets.com/books/1377306592s/9674335.jpg\n6721,3347892,3347892,3386279,31,61345725,9780061345720.0,Anna Godbersen,2009.0,Envy,\"Envy (Luxe, #3)\",en-US,3.91,20432,21991,1224,252,1296,5503,8143,6797,https://images.gr-assets.com/books/1327928712l/3347892.jpg,https://images.gr-assets.com/books/1327928712s/3347892.jpg\n6722,10596724,10596724,15504353,19,1250024633,9781250024630.0,Ann Aguirre,2013.0,Horde,\"Horde (Razorland, #3)\",en-CA,4.28,17422,18993,1822,196,520,2548,6277,9452,https://images.gr-assets.com/books/1362287692l/10596724.jpg,https://images.gr-assets.com/books/1362287692s/10596724.jpg\n6723,1476261,1476261,1570261,48,1905490208,9781905490200.0,Rajaa Alsanea,2005.0,بنات الرياض,Girls of Riyadh,eng,3.17,8200,14368,1960,1424,2337,4790,3940,1877,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564603744l/1476261.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6724,394772,394772,795131,27,694011479,9780694011480.0,Eric Carle,1975.0,The Mixed-Up Chameleon,The Mixed-Up Chameleon,,4.21,15530,15841,322,152,506,2970,4477,7736,https://images.gr-assets.com/books/1350959503l/394772.jpg,https://images.gr-assets.com/books/1350959503s/394772.jpg\n6725,14461,14461,1232488,28,446616419,9780446616420.0,Carrie Vaughn,2005.0,Kitty and the Midnight Hour,Kitty and the Midnight Hour (Kitty Norville #1),en-US,3.66,25102,26266,1528,1032,2343,7526,9005,6360,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441143510l/14461._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6726,235773,235773,985211,52,375706410,9780375706420.0,Ha Jin,1999.0,Waiting,Waiting,en-US,3.49,15277,16154,1493,487,1887,5499,5846,2435,https://images.gr-assets.com/books/1327881519l/235773.jpg,https://images.gr-assets.com/books/1327881519s/235773.jpg\n6727,9650,9650,1171545,116,1421808307,9781421808310.0,George Orwell,1934.0,Burmese Days,Burmese Days,,3.84,12119,14913,929,144,811,3918,6521,3519,https://images.gr-assets.com/books/1415573403l/9650.jpg,https://images.gr-assets.com/books/1415573403s/9650.jpg\n6728,13157,13157,2513115,52,755300203,9780755300200.0,\"James Patterson, Andrew Gross\",2003.0,The Jester,The Jester,en-GB,3.79,15313,16688,913,701,1283,4104,5376,5224,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347270829l/13157.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6729,160251,160251,154674,41,140065172,9780140065180.0,Judith Guest,1976.0,Ordinary People,Ordinary People,eng,3.9,15207,15850,822,240,928,3815,6108,4759,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172283738l/160251.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6730,20575446,20575446,39843450,17,1596436581,9781596436590.0,\"Cory Doctorow, Jen Wang\",2014.0,In Real Life,In Real Life,eng,3.8,16704,17101,2309,549,1213,4476,5730,5133,https://images.gr-assets.com/books/1391127564l/20575446.jpg,https://images.gr-assets.com/books/1391127564s/20575446.jpg\n6731,4352708,6058042,4400647,25,749909226,9780749909220.0,Sherrilyn Kenyon,2009.0,Bad Moon Rising,Bad Moon Rising (Dark-Hunter #18; Were-Hunter #4; Hellchaser #2),eng,4.29,13608,24199,951,127,613,3443,7952,12064,https://images.gr-assets.com/books/1361175509l/4352708.jpg,https://images.gr-assets.com/books/1361175509s/4352708.jpg\n6732,388223,388223,377847,88,3704313173,9783704313170.0,Alexandre Dumas,1862.0,\"Robin Hood, le prince des voleurs\",\"Robin Hood, The Prince of Thieves\",eng,4.0,14710,15152,135,124,627,3724,5374,5303,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1508050369l/388223.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6733,186103,186103,1641139,36,1595140838,9781595140840.0,Scott Westerfeld,2005.0,Peeps,\"Peeps (Peeps, #1)\",eng,3.77,20702,22514,1937,570,1747,6076,7940,6181,https://images.gr-assets.com/books/1443904244l/186103.jpg,https://images.gr-assets.com/books/1443904244s/186103.jpg\n6735,6600807,6600807,6794661,17,1595142908,9781595142900.0,\"Lili St. Crow, Lilith Saintcrow\",2010.0,Jealousy,\"Jealousy (Strange Angels, #3)\",,4.15,21396,21858,705,358,929,3941,6556,10074,https://images.gr-assets.com/books/1331245539l/6600807.jpg,https://images.gr-assets.com/books/1331245539s/6600807.jpg\n6736,367802,367802,357793,37,811202054,9780811202050.0,Dylan Thomas,1952.0,Collected Poems,Collected Poems,eng,4.2,13188,13796,213,109,354,2339,4869,6125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388789153l/367802.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6737,27070127,27070127,46190740,37,804141266,9780804141260.0,Anne Tyler,2016.0,Vinegar Girl,Vinegar Girl,eng,3.42,13216,16917,3369,458,1928,6605,5909,2017,https://images.gr-assets.com/books/1471553735l/27070127.jpg,https://images.gr-assets.com/books/1471553735s/27070127.jpg\n6738,13501,13501,15648,1,097640110X,9780976401100.0,\"Ben Avery, Mike S. Miller, George R.R. Martin\",1998.0,The Hedge Knight,\"The Hedge Knight (The Hedge Knight Graphic Novels, #1)\",eng,4.11,12192,16351,710,82,414,2996,6986,5873,https://images.gr-assets.com/books/1443806558l/13501.jpg,https://images.gr-assets.com/books/1443806558s/13501.jpg\n6740,10305247,10305247,7307773,59,1849163847,9781849163840.0,Peter  May,2009.0,The Black house,\"The Blackhouse (Lewis Trilogy, #1)\",eng,4.04,11745,16826,2026,182,608,3086,7369,5581,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328052791l/10305247.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6741,105574,105574,101766,60,60562536,9780060562530.0,Lisa Kleypas,2006.0,Scandal in Spring,\"Scandal in Spring (Wallflowers, #4)\",en-US,4.02,25262,27645,1296,130,967,6172,11250,9126,https://images.gr-assets.com/books/1452549904l/105574.jpg,https://images.gr-assets.com/books/1452549904s/105574.jpg\n6742,41490,41490,1080696,74,671004530,9780671004540.0,Mary Higgins Clark,2001.0,On the Street Where You Live,On the Street Where You Live,eng,3.85,16327,17412,599,142,817,5232,6480,4741,https://images.gr-assets.com/books/1341761800l/41490.jpg,https://images.gr-assets.com/books/1341761800s/41490.jpg\n6743,1316617,1316617,1305924,36,758216424,9780758216430.0,Richelle Mead,2008.0,Succubus On Top,\"Succubus on Top (Georgina Kincaid, #2)\",en-US,4.07,24091,26594,1164,220,984,5356,10116,9918,https://images.gr-assets.com/books/1315977158l/1316617.jpg,https://images.gr-assets.com/books/1315977158s/1316617.jpg\n6744,239105,239105,2971058,26,786913886,9780786913890.0,R.A. Salvatore,1998.0,The Silent Blade (Paths of Darkness #1),\"The Silent Blade (Forgotten Realms: Paths of Darkness, #1; Legend of Drizzt, #11)\",en-US,4.1,13813,15240,138,80,577,3125,5446,6012,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436098309l/239105._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6745,253264,253264,71698,27,345501039,9780345501040.0,\"Jerome Lawrence, Robert E.  Lee\",1955.0,Inherit the Wind,Inherit the Wind,eng,3.96,16418,17713,671,351,936,3920,6409,6097,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290640l/253264.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6746,23316,23316,1360829,20,312274920,9780312274920.0,Tony Hawks,1997.0,Round Ireland with a Fridge,Round Ireland with a Fridge,en-US,3.78,13143,14015,795,310,969,3816,5297,3623,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438308095l/23316._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6747,8535273,8535273,11095144,24,385738595,9780385738590.0,Carrie Ryan,2011.0,The Dark And Hollow Places,\"The Dark and Hollow Places (The Forest of Hands and Teeth, #3)\",eng,4.03,19282,20422,1927,407,1069,4029,6876,8041,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179932l/8535273.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6748,18127101,18127101,25461047,16,1455599735,9781455599740.0,Chelsea Handler,2014.0,Uganda Be Kidding Me,Uganda Be Kidding Me,eng,3.63,11627,13595,1208,479,1378,4081,4382,3275,https://images.gr-assets.com/books/1403174817l/18127101.jpg,https://images.gr-assets.com/books/1403174817s/18127101.jpg\n6749,6464094,6464094,6654562,31,031604086X,9780316040860.0,\"Pseudonymous Bosch, Gilbert Ford\",2009.0,This Book Is Not Good for You,\"This Book Is Not Good for You (Secret, #3)\",en-US,4.29,16852,17789,642,195,446,2539,5489,9120,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438634698l/6464094._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6750,6386555,6386555,6574787,7,1416544208,9781416544200.0,Chuck Klosterman,2009.0,Eating the Dinosaur,Eating the Dinosaur,eng,3.75,12571,13386,891,187,824,3817,5823,2735,https://images.gr-assets.com/books/1327949106l/6386555.jpg,https://images.gr-assets.com/books/1327949106s/6386555.jpg\n6751,285500,285500,1694397,57,553214829,9780553214830.0,Founding Fathers,1776.0,The Declaration of Independence and The Constitution of the United States ,The Declaration of Independence and The Constitution of the United States,,4.44,14047,17123,256,208,533,1846,3392,11144,https://images.gr-assets.com/books/1320508156l/285500.jpg,https://images.gr-assets.com/books/1320508156s/285500.jpg\n6752,550454,550454,1866705,53,765317508,9780765317510.0,Gary Jennings,1980.0,Aztec,\"Aztec (Aztec, #1)\",en-US,4.19,12422,13566,702,290,608,2027,3924,6717,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194488l/550454.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6753,25372801,25372801,45119441,14,765379945,9780765379950.0,Charlie Jane Anders,2016.0,All the Birds in the Sky,All the Birds in the Sky,eng,3.58,14769,18278,3358,666,1863,5385,6944,3420,https://images.gr-assets.com/books/1429225322l/25372801.jpg,https://images.gr-assets.com/books/1429225322s/25372801.jpg\n6754,13516846,13516846,19074404,41,62009494,9780062009490.0,Terry Pratchett,2012.0,Dodger,Dodger,eng,3.9,14775,18798,2482,213,990,4442,7902,5251,https://images.gr-assets.com/books/1343828971l/13516846.jpg,https://images.gr-assets.com/books/1343828971s/13516846.jpg\n6755,2915,2915,6815,39,044022750X,9780440227500.0,Gary Paulsen,1991.0,The River,\"The River (Brian's Saga, #2)\",,3.77,14198,16545,891,233,1225,5077,5558,4452,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924191l/2915.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6756,13929,13929,2024857,25,375833641,9780375833650.0,Juliet Marillier,2007.0,Wildwood Dancing,\"Wildwood Dancing (Wildwood, #1)\",en-US,4.09,21810,22892,2125,357,1016,4249,7961,9309,https://images.gr-assets.com/books/1393127105l/13929.jpg,https://images.gr-assets.com/books/1393127105s/13929.jpg\n6757,217433,217433,210514,33,449226352,9780449226350.0,Kristin Hannah,1996.0,Home Again,Home Again,eng,3.95,13791,15526,774,218,822,3593,5765,5128,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240279l/217433.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6758,761023,761023,1249260,49,425083896,9780425083900.0,Clive Barker,1984.0,Books of Blood: Volume One,Books of Blood: Volume One (Books of Blood #1),eng,4.0,14751,15981,411,384,751,3277,5565,6004,https://images.gr-assets.com/books/1429999423l/761023.jpg,https://images.gr-assets.com/books/1429999423s/761023.jpg\n6760,5053,5053,3015343,96,451208706,9780451208700.0,Ken Follett,1982.0,The Man from St. Petersburg,The Man From St. Petersburg,eng,3.84,13193,16436,739,167,750,4488,7160,3871,https://images.gr-assets.com/books/1411331808l/5053.jpg,https://images.gr-assets.com/books/1411331808s/5053.jpg\n6761,230003,230003,1579898,71,515142905,9780515142910.0,Nora Roberts,1996.0,Daring to Dream,\"Daring to Dream (Dream Trilogy, #1)\",eng,4.01,18952,20843,440,152,867,4936,7471,7417,https://images.gr-assets.com/books/1309200789l/230003.jpg,https://images.gr-assets.com/books/1309200789s/230003.jpg\n6762,89160,89160,86053,53,425176304,9780425176310.0,\"J.D. Robb, Nora Roberts\",2000.0,Judgment in Death,\"Judgment in Death (In Death, #11)\",eng,4.33,21446,24449,620,60,274,3197,8979,11939,https://images.gr-assets.com/books/1390135645l/89160.jpg,https://images.gr-assets.com/books/1390135645s/89160.jpg\n6763,74033,74033,425564,46,399154019,9780399154010.0,J.D. Robb,2007.0,\"Innocent in Death (In Death, #24)\",\"Innocent in Death (In Death, #24)\",en-US,4.36,19210,21262,791,53,233,2636,7381,10959,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425837557l/74033.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6764,15833693,15833693,21570166,20,62217208,9780062217200.0,Amanda Knox,2013.0,Waiting to Be Heard: A Memoir,Waiting to Be Heard: A Memoir,eng,3.8,11891,13198,1322,374,880,3350,4936,3658,https://images.gr-assets.com/books/1367786694l/15833693.jpg,https://images.gr-assets.com/books/1367786694s/15833693.jpg\n6765,157055,157055,1787093,17,152050841,9780152050850.0,Jean Ferris,2002.0,Once Upon a Marigold,\"Once Upon a Marigold (Upon a Marigold, #1)\",eng,3.98,20394,20860,1430,288,1089,4921,7089,7473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429468490l/157055.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6767,17834904,17834904,8586680,31,385344058,9780385344050.0,Alan Bradley,2014.0,The Dead in Their Vaulted Arches,\"The Dead in Their Vaulted Arches (Flavia de Luce, #6)\",eng,4.16,17789,20185,3032,123,473,3102,8869,7618,https://images.gr-assets.com/books/1432578235l/17834904.jpg,https://images.gr-assets.com/books/1432578235s/17834904.jpg\n6769,17860739,17860739,25004628,24,316201642,9780316201640.0,\"J.J. Abrams, Doug Dorst\",2013.0,S.,S.,eng,3.84,12533,14029,2445,587,1098,3027,4636,4681,https://images.gr-assets.com/books/1378767595l/17860739.jpg,https://images.gr-assets.com/books/1378767595s/17860739.jpg\n6770,22207,22207,23263,32,60875070,9780060875080.0,Heather O'Neill,2006.0,Lullabies for Little Criminals,Lullabies for Little Criminals,eng,3.95,14535,15087,1238,232,798,3177,6157,4723,https://images.gr-assets.com/books/1327893204l/22207.jpg,https://images.gr-assets.com/books/1327893204s/22207.jpg\n6772,716696,716696,1231363,777,,,\"Omar Khayyám, محمدعلی فروغی, قاسم غنی\",1120.0,رباعیات [Robāʿiāt-e ʿOmar Khayyām],رباعيات خيام,per,4.18,3200,13724,1111,218,568,2233,4163,6542,https://images.gr-assets.com/books/1441007730l/716696.jpg,https://images.gr-assets.com/books/1441007730s/716696.jpg\n6773,12383869,12383869,17364649,20,1442409096,9781442409100.0,Lauren DeStefano,2013.0,Sever,\"Sever (The Chemical Garden, #3)\",eng,3.8,21349,22665,2436,578,1845,5823,7688,6731,https://images.gr-assets.com/books/1343168408l/12383869.jpg,https://images.gr-assets.com/books/1343168408s/12383869.jpg\n6774,13538992,13538992,18670691,21,1250014468,9781250014470.0,Darynda Jones,2012.0,Fourth Grave Beneath My Feet,\"Fourth Grave Beneath My Feet (Charley Davidson, #4)\",eng,4.4,13274,26990,2259,69,283,2676,9611,14351,https://images.gr-assets.com/books/1338721218l/13538992.jpg,https://images.gr-assets.com/books/1338721218s/13538992.jpg\n6776,25295,25295,618823,25,078693137X,9780786931380.0,Richard A. Knaak,1988.0,The Legend of Huma (Dragonlance: Heroes #1),\"The Legend of Huma (Dragonlance: Heroes, #1)\",en-US,4.03,14765,15616,138,197,768,3620,4888,6143,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388340583l/25295.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6777,89691,89691,1585061,48,316778508,9780316778500.0,Carolyn  Parkhurst,2003.0,The Dogs of Babel,The Dogs of Babel,eng,3.56,14966,16181,2072,697,1748,4870,5528,3338,https://images.gr-assets.com/books/1344269639l/89691.jpg,https://images.gr-assets.com/books/1344269639s/89691.jpg\n6778,1027760,1027760,1092326,23,670446149,9780670446150.0,Ludwig Bemelmans,1956.0,Madeline and the Bad Hat,Madeline and the Bad Hat,en-US,4.27,16180,16295,118,158,479,2813,4189,8656,https://images.gr-assets.com/books/1355497395l/1027760.jpg,https://images.gr-assets.com/books/1355497395s/1027760.jpg\n6779,11166890,11166890,16091023,39,553807714,9780553807710.0,Dean Koontz,2011.0,77 Shadow Street,\"77 Shadow Street (Pendleton, #1)\",eng,3.29,14092,16528,1984,1517,2687,4860,4340,3124,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391441147l/11166890.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6780,47618,47618,805793,31,439436575,9780439436570.0,Garth Nix,2006.0,Sir Thursday,\"Sir Thursday (The Keys to the Kingdom, #4)\",en-US,3.94,17624,18494,310,163,808,4674,7171,5678,https://images.gr-assets.com/books/1304528609l/47618.jpg,https://images.gr-assets.com/books/1304528609s/47618.jpg\n6781,33418,33418,33496,38,1400033721,9781400033720.0,Michio Kaku,2004.0,\"Parallel Worlds: A Journey Through Creation, Higher Dimensions, and the Future of the Cosmos\",\"Parallel Worlds: A Journey Through Creation, Higher Dimensions, and the Future of the Cosmos\",eng,4.17,12620,13385,441,159,427,2128,4998,5673,https://images.gr-assets.com/books/1435244003l/33418.jpg,https://images.gr-assets.com/books/1435244003s/33418.jpg\n6782,74169,74169,1518341,26,849901812,9780849901810.0,Max Lucado,2006.0,Facing Your Giants: The God Who Made a Miracle Out of David Stands Ready to Make One Out of You,Facing Your Giants: A David and Goliath Story for Everyday People,,4.43,11691,11915,298,101,194,1329,3181,7110,https://images.gr-assets.com/books/1380857035l/74169.jpg,https://images.gr-assets.com/books/1380857035s/74169.jpg\n6783,8177526,30123388,13024053,24,,,Amanda Hocking,2010.0,Fate,\"Fate (My Blood Approves, #2)\",en-GB,3.99,18021,19564,691,274,1071,4294,6891,7034,https://images.gr-assets.com/books/1282281122l/8177526.jpg,https://images.gr-assets.com/books/1282281122s/8177526.jpg\n6784,32127,32127,2723165,20,553381156,9780553381150.0,Ina May Gaskin,2003.0,Ina May's Guide to Childbirth,Ina May's Guide to Childbirth,,4.42,12044,12881,1724,72,223,1242,4093,7251,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924890l/32127.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6785,905382,905382,1030655,33,805059962,9780805059960.0,\"Melissa Müller, Rita Kimber, Robert Kimber\",1998.0,Anne Frank : The Biography,Anne Frank : The Biography,,4.31,15656,15975,196,324,439,1909,4545,8758,https://images.gr-assets.com/books/1316739030l/905382.jpg,https://images.gr-assets.com/books/1316739030s/905382.jpg\n6786,15733523,15733523,21415013,12,9381626685,9789381626690.0,Ashwin Sanghi,2012.0,The Krishna Key,The Krishna Key,en-US,3.48,11563,12597,1261,502,1680,3968,4194,2253,https://images.gr-assets.com/books/1341289060l/15733523.jpg,https://images.gr-assets.com/books/1341289060s/15733523.jpg\n6787,250,250,1190908,111,802151825,9780802151830.0,Henry Miller,1938.0,Tropic of Capricorn,Tropic of Capricorn,eng,3.85,12082,13487,529,352,939,3153,5005,4038,https://images.gr-assets.com/books/1417652073l/250.jpg,https://images.gr-assets.com/books/1417652073s/250.jpg\n6788,920649,920649,905684,103,874068134,9780874068140.0,Ambrose Bierce,1890.0,An Occurrence at Owl Creek Bridge,An Occurrence at Owl Creek Bridge,eng,4.02,15332,16313,453,206,805,3451,5856,5995,https://images.gr-assets.com/books/1453993106l/920649.jpg,https://images.gr-assets.com/books/1453993106s/920649.jpg\n6789,2761356,2761356,2787065,9,1419953249,9781419953250.0,Katherine Allred,2005.0,The Sweet Gum Tree,The Sweet Gum Tree,eng,4.3,22577,24313,2874,460,788,2815,7197,13053,https://images.gr-assets.com/books/1367119561l/2761356.jpg,https://images.gr-assets.com/books/1367119561s/2761356.jpg\n6790,840163,840163,1486254,26,042519518X,9780425195180.0,Dale Brown,1987.0,Flight Of The Old Dog,\"Flight of the Old Dog (Patrick McLanahan, #1)\",eng,4.08,13607,13884,113,144,504,2828,5006,5402,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387709468l/840163.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6791,13374,13374,970518,37,1582433224,9781582433230.0,Miriam Toews,2004.0,A Complicated Kindness,A Complicated Kindness,en-US,3.64,13981,15765,1062,592,1521,4395,5731,3526,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434887050l/13374._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6792,1729146,1729146,2694663,29,1416914188,9781416914180.0,D.J. MacHale,2008.0,Raven Rise,\"Raven Rise (Pendragon, #9)\",en-US,4.2,17691,18086,351,253,689,2814,5706,8624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348123665l/1729146.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6793,25813937,25813937,45670647,19,1476748446,9781476748440.0,Kathleen Grissom,2016.0,Glory over Everything: Beyond The Kitchen House,Glory over Everything: Beyond The Kitchen House,eng,4.24,13451,16477,2118,120,276,1988,7212,6881,https://images.gr-assets.com/books/1444246918l/25813937.jpg,https://images.gr-assets.com/books/1444246918s/25813937.jpg\n6794,1291211,1291211,2164115,31,340881542,9780340881540.0,Robert Muchamore,2004.0,Class A (Cherub #2),\"Class A (Cherub, #2)\",en-US,4.26,14299,15638,630,92,374,2254,5496,7422,https://images.gr-assets.com/books/1356698938l/1291211.jpg,https://images.gr-assets.com/books/1356698938s/1291211.jpg\n6795,71784,71784,1983624,26,014303507X,9780143035080.0,Jan Karon,1999.0,Mitford Years New Song Unabridged,\"A New Song (Mitford Years, #5)\",,4.28,15387,16736,390,66,221,2516,6059,7874,https://images.gr-assets.com/books/1344358382l/71784.jpg,https://images.gr-assets.com/books/1344358382s/71784.jpg\n6796,1747182,1747182,1744887,45,752891634,9780752891640.0,Tami Hoag,2008.0,Deeper than the Dead,\"Deeper Than the Dead (Oak Knoll, #1)\",eng,4.04,14611,17541,1441,156,517,3519,7547,5802,https://images.gr-assets.com/books/1408930728l/1747182.jpg,https://images.gr-assets.com/books/1408930728s/1747182.jpg\n6797,4703427,4703427,4767755,24,765316552,9780765316550.0,Steven Erikson,2009.0,Dust of Dreams,\"Dust of Dreams (The Malazan Book of the Fallen, #9)\",eng,4.31,14435,16393,427,124,401,1946,5677,8245,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388268201l/4703427.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6798,17863,17863,930555,36,441014151,9780441014160.0,Charles Stross,2005.0,Accelerando,Accelerando (Singularity),en-US,3.87,14690,15799,976,468,1120,3479,5602,5130,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388240687l/17863.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6799,23209971,23209971,42753077,16,812996348,9780812996340.0,Sara Nović,2015.0,Girl at War,Girl at War,eng,3.98,13827,15900,1987,111,474,3295,7736,4284,https://images.gr-assets.com/books/1414348859l/23209971.jpg,https://images.gr-assets.com/books/1414348859s/23209971.jpg\n6800,164719,164719,3214275,40,316012335,9780316012330.0,Darren Shan,2005.0,Lord Loss,\"Lord Loss (The Demonata, #1)\",eng,4.21,15325,16835,1172,238,641,2568,5219,8169,https://images.gr-assets.com/books/1344267992l/164719.jpg,https://images.gr-assets.com/books/1344267992s/164719.jpg\n6801,6460331,6460331,6650736,32,545040604,9780545040600.0,Meg Cabot,2010.0,Runaway ,\"Runaway (Airhead, #3)\",eng,3.93,20846,21662,839,385,1424,5257,6928,7668,https://images.gr-assets.com/books/1328840338l/6460331.jpg,https://images.gr-assets.com/books/1328840338s/6460331.jpg\n6802,39796,39796,1503580,101,1400031567,9781400031570.0,\"Henning Mankell, Steven T. Murray\",1995.0,Villospår,\"Sidetracked (Kurt Wallander, #5)\",eng,4.05,13401,15721,658,133,374,2868,7499,4847,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388381747l/39796.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6803,15828714,15828714,21562220,13,,,Abbi Glines,2013.0,Sometimes It Lasts,\"Sometimes It Lasts (Sea Breeze, #5)\",eng,4.28,23166,23907,1347,156,565,3288,8224,11674,https://images.gr-assets.com/books/1415292563l/15828714.jpg,https://images.gr-assets.com/books/1415292563s/15828714.jpg\n6804,12143200,12143200,17113518,13,307970388,9780307970380.0,Rachel Maddow,2012.0,Drift: The Unmooring of American Military Power,Drift: The Unmooring of American Military Power,eng,4.07,12980,14938,1870,360,605,2349,6001,5623,https://images.gr-assets.com/books/1318753897l/12143200.jpg,https://images.gr-assets.com/books/1318753897s/12143200.jpg\n6805,18222699,18222699,25634760,29,547959214,9780547959210.0,Joelle Charbonneau,2014.0,Graduation Day,\"Graduation Day (The Testing, #3)\",eng,3.81,14963,17926,1585,280,1361,4762,6540,4983,https://images.gr-assets.com/books/1384363227l/18222699.jpg,https://images.gr-assets.com/books/1384363227s/18222699.jpg\n6806,48183,48183,1650770,30,446675059,9780446675060.0,Billie Letts,1998.0,The Honk and Holler Opening Soon,The Honk and Holler Opening Soon,en-US,3.93,16487,17033,613,140,711,4309,6935,4938,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440964560l/48183._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6807,32445,32445,22522,50,446531383,9780446531380.0,Dean Koontz,1995.0,Strange Highways,Strange Highways,,3.83,15265,15878,264,263,913,4642,5531,4529,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388354564l/32445.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6808,15047,15047,864738,61,802135226,9780802135220.0,Jeanette Winterson,1987.0,The Passion,The Passion,eng,4.12,13391,14941,1035,173,643,2616,5349,6160,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187737l/15047.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6809,206236,206236,158974,55,1400096936,9781400096930.0,Don Winslow,2005.0,The Power of the Dog,The Power of the Dog,eng,4.36,10195,14269,1207,123,261,1441,5042,7402,https://images.gr-assets.com/books/1467260965l/206236.jpg,https://images.gr-assets.com/books/1467260965s/206236.jpg\n6810,25817162,25817162,45584335,9,62347268,9780062347270.0,\"Stephanie Dray, Laura Kamoie\",2016.0,America's First Daughter,America's First Daughter,eng,4.22,13279,19194,2413,271,561,2395,7484,8483,https://images.gr-assets.com/books/1459542134l/25817162.jpg,https://images.gr-assets.com/books/1459542134s/25817162.jpg\n6811,17285883,17285883,23905509,19,61957933,9780061957930.0,Kim Harrison,2014.0,The Undead Pool,\"The Undead Pool (The Hollows, #12)\",eng,4.43,17043,21547,1695,82,272,2037,6988,12168,https://images.gr-assets.com/books/1379687538l/17285883.jpg,https://images.gr-assets.com/books/1379687538s/17285883.jpg\n6812,6329547,6329547,6515186,25,441017800,9780441017800.0,Ilona Andrews,2009.0,On the Edge,\"On the Edge (The Edge, #1)\",eng,4.02,25915,28288,2075,335,1074,5713,11618,9548,https://images.gr-assets.com/books/1307445575l/6329547.jpg,https://images.gr-assets.com/books/1307445575s/6329547.jpg\n6814,15698479,15698479,21356077,23,765333511,9780765333510.0,John Scalzi,2013.0,The Human Division,\"The Human Division (Old Man's War, #5)\",en-CA,4.07,13685,17058,1161,100,452,3107,7920,5479,https://images.gr-assets.com/books/1341582413l/15698479.jpg,https://images.gr-assets.com/books/1341582413s/15698479.jpg\n6816,148809,148809,948571,26,670037729,9780670037730.0,Jasper Fforde,2006.0,The Fourth Bear,\"The Fourth Bear (Nursery Crime, #2)\",en-US,4.07,16851,18701,1121,107,523,3726,8031,6314,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442630942l/148809._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6817,6471550,6471550,6662356,8,1401225659,9781401225650.0,\"Mike Carey, Bill Willingham, Peter Gross\",2010.0,\"The Unwritten, Volume 1: Tommy Taylor and the Bogus Identity\",\"The Unwritten, Vol. 1: Tommy Taylor and the Bogus Identity\",eng,3.76,16759,16951,934,693,1275,4114,6158,4711,https://images.gr-assets.com/books/1327887253l/6471550.jpg,https://images.gr-assets.com/books/1327887253s/6471550.jpg\n6818,1317696,1317696,2495143,78,224061631,9780224061640.0,Salman Rushdie,2008.0,The Enchantress of Florence,The Enchantress of Florence,eng,3.57,12310,14494,1804,579,1565,4290,5179,2881,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1200508801l/1317696.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6819,11256293,11256293,15779085,4,9380349300,9789380349300.0,Preeti Shenoy,2011.0,\"Life is What You Make It: A Story of Love, Hope and How Determination Can Overcome Even Destiny\",\"Life is What You Make It: A Story of Love, Hope and How Determination Can Overcome Even Destiny\",eng,3.54,11292,12361,764,519,1385,3882,4080,2495,https://images.gr-assets.com/books/1308754493l/11256293.jpg,https://images.gr-assets.com/books/1308754493s/11256293.jpg\n6820,1875,1875,5991,67,679724699,9780679724700.0,\"Michel Foucault, Robert Hurley\",1976.0,Histoire de la sexualité 1. La Volonté de savoir,\"The History of Sexuality, Volume 1: An Introduction\",eng,4.03,12565,13935,548,201,630,2708,5339,5057,https://images.gr-assets.com/books/1486236798l/1875.jpg,https://images.gr-assets.com/books/1486236798s/1875.jpg\n6821,206193,206193,2723482,20,743271181,9780743271190.0,Brad Thor,2006.0,Takedown,\"Takedown (Scot Harvath, #5)\",eng,4.26,13372,15051,306,117,299,2003,5771,6861,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440645490l/206193._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6822,32827,32827,14165539,547,1598184547,9781598184550.0,Jules Verne,1865.0,De la Terre à la Lune,\"From the Earth to the Moon (Extraordinary Voyages, #4)\",eng,3.78,14721,17702,564,209,1154,5413,6494,4432,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389545038l/32827.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6823,27525,27525,411077,33,842332367,9780842332360.0,\"Tim LaHaye, Jerry B. Jenkins\",2003.0,Armageddon: The Cosmic Battle of the Ages,\"Armageddon: The Cosmic Battle of the Ages (Left Behind, #11)\",en-US,4.02,14251,15345,265,384,864,3030,4876,6191,https://images.gr-assets.com/books/1406507661l/27525.jpg,https://images.gr-assets.com/books/1406507661s/27525.jpg\n6824,10677213,10677213,15586908,19,375507485,9780375507490.0,\"Steven Naifeh, Gregory White Smith\",2011.0,Van Gogh: The Life,Van Gogh: The Life,eng,4.09,13659,14020,309,538,707,2300,3940,6535,https://images.gr-assets.com/books/1411005913l/10677213.jpg,https://images.gr-assets.com/books/1411005913s/10677213.jpg\n6825,295132,295132,826924,39,60922249,9780060922240.0,Thomas  Moore,1988.0,Care of the Soul : A Guide for Cultivating Depth and Sacredness in Everyday Life,Care of the Soul: A Guide for Cultivating Depth and Sacredness in Everyday Life,,3.99,12375,12657,317,276,679,2705,4281,4716,https://images.gr-assets.com/books/1360677664l/295132.jpg,https://images.gr-assets.com/books/1360677664s/295132.jpg\n6826,7853757,7853757,10982820,54,61836923,9780061836920.0,Dennis Lehane,2010.0,Moonlight Mile ,\"Moonlight Mile (Kenzie & Gennaro,#6)\",en-US,3.71,15028,17273,1800,202,1130,5444,7269,3228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441143001l/7853757._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6828,27002,27002,948585,39,670038717,9780670038720.0,Jasper Fforde,2007.0,First Among Sequels ,\"First Among Sequels (Thursday Next, #5)\",eng,4.0,18722,20982,1447,91,703,4725,8973,6490,https://images.gr-assets.com/books/1338467549l/27002.jpg,https://images.gr-assets.com/books/1338467549s/27002.jpg\n6829,7531,7531,514237,17,375760911,9780375760910.0,Laurie Notaro,2002.0,The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life,The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life,en-GB,3.89,15198,15587,1127,519,1146,3450,4910,5562,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184921l/7531.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6830,11801463,11801463,16754534,22,61561630,9780061561630.0,Robin Hobb,2011.0,City of Dragons,\"City of Dragons (Rain Wild Chronicles, #3)\",en-US,4.05,13498,16939,804,85,540,3510,7121,5683,https://images.gr-assets.com/books/1322613975l/11801463.jpg,https://images.gr-assets.com/books/1322613975s/11801463.jpg\n6832,56912,56912,1283019,25,802715168,9780802715170.0,Ross King,2006.0,The Judgment of Paris: The Revolutionary Decade that Gave the World Impressionism,The Judgment of Paris: The Revolutionary Decade That Gave the World Impressionism,en-US,3.81,10382,10838,256,578,883,2442,3043,3892,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441521513l/56912._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6833,32456,32456,3047309,63,425214591,9780425214600.0,Dean Koontz,1984.0,Darkfall,Darkfall,en-US,3.8,15301,16501,387,184,991,5128,5784,4414,https://images.gr-assets.com/books/1308458183l/32456.jpg,https://images.gr-assets.com/books/1308458183s/32456.jpg\n6835,394228,394228,859452,64,553384813,9780553384820.0,Elizabeth  George,1989.0,Well-Schooled in Murder,\"Well-Schooled in Murder (Inspector Lynley, #3)\",eng,4.11,16485,17851,439,122,350,3300,7834,6245,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389348416l/394228.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6837,17332207,17332207,24035833,26,374281092,9780374281090.0,Alice McDermott,2013.0,Someone,Someone,eng,3.76,12401,13920,1854,324,1037,3723,5438,3398,https://images.gr-assets.com/books/1377579911l/17332207.jpg,https://images.gr-assets.com/books/1377579911s/17332207.jpg\n6838,186669,186669,1398332,78,1594480869,9781594480870.0,Lian Hearn,2003.0,Brilliance of the Moon ,\"Brilliance of the Moon (Tales of the Otori, #3)\",,4.04,13124,15593,382,85,534,3316,6437,5221,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441513199l/186669._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6839,3097601,3097601,3128756,10,60737557,9780060737560.0,Michael Thomas Ford,2008.0,Suicide Notes,Suicide Notes,eng,3.92,14749,15399,1096,435,1069,3395,4878,5622,https://images.gr-assets.com/books/1424990334l/3097601.jpg,https://images.gr-assets.com/books/1424990334s/3097601.jpg\n6840,107896,107896,16511713,65,345498127,9780345498120.0,David Nicholls,2003.0,Starter for Ten,Starter for Ten,eng,3.58,11757,15338,1089,357,1469,5007,5921,2584,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348794628l/107896.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6841,1563413,1563413,1555975,2,307020916,9780307020920.0,\"Elizabeth Ross, ROFry\",1973.0,The Three Little Pigs (A Little Golden Book),The Three Little Pigs,eng,4.26,14779,14795,84,183,544,2769,3100,8199,https://images.gr-assets.com/books/1310278098l/1563413.jpg,https://images.gr-assets.com/books/1310278098s/1563413.jpg\n6842,7184,7184,666376,271,192838431,9780192838440.0,\"Alexandre Dumas, David Coward, Auguste Maquet\",1845.0,Vingt ans après,\"Twenty Years After (The D'Artagnan Romances, #2)\",,4.01,14539,16611,461,112,736,3825,6141,5797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165607713l/7184.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6843,25114548,25114548,44808971,27,145558116X,9781455581160.0,Sandra Brown,2015.0,Friction,Friction,en-CA,3.93,9969,15167,1289,254,791,3340,6105,4677,https://images.gr-assets.com/books/1434044640l/25114548.jpg,https://images.gr-assets.com/books/1434044640s/25114548.jpg\n6844,447,447,168560,54,140115854,9780140115860.0,Paul Auster,1989.0,Moon Palace,Moon Palace,eng,3.99,12170,14552,622,149,674,3044,6009,4676,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390616212l/447.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6845,28483,28483,252258,20,055357325X,9780553573250.0,\"Margaret Weis, Tracy Hickman\",1994.0,The Seventh Gate,\"The Seventh Gate (The Death Gate Cycle, #7)\",en-US,4.09,14827,15524,141,149,633,3015,5580,6147,https://images.gr-assets.com/books/1327837380l/28483.jpg,https://images.gr-assets.com/books/1327837380s/28483.jpg\n6846,102459,102459,98785,24,1593070950,9781593070950.0,Mike Mignola,1994.0,Hellboy: Wake the Devil,\"Hellboy, Vol. 2: Wake the Devil (Hellboy, #2)\",eng,4.2,14144,14460,261,154,400,2223,5308,6375,https://images.gr-assets.com/books/1486039250l/102459.jpg,https://images.gr-assets.com/books/1486039250s/102459.jpg\n6848,9644151,9644151,14531613,9,1933718552,9781933718550.0,Mike Mullin,2011.0,Ashfall,\"Ashfall (Ashfall, #1)\",eng,3.96,18583,19771,2612,526,1041,4006,7319,6879,https://images.gr-assets.com/books/1301592315l/9644151.jpg,https://images.gr-assets.com/books/1301592315s/9644151.jpg\n6850,781498,781498,767519,18,140546235,9780140546230.0,\"Trinka Hakes Noble, Steven Kellogg\",1980.0,The Day Jimmy's Boa Ate the Wash,The Day Jimmy's Boa Ate the Wash,,4.16,16875,17024,215,187,603,3333,5042,7859,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348478859l/781498.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6851,13526026,13526026,19086732,40,1455518379,9781455518370.0,Nelson DeMille,2012.0,The Panther,\"The Panther  (John Corey, #6)\",eng,3.93,11695,15009,1635,263,823,3300,5911,4712,https://images.gr-assets.com/books/1338763739l/13526026.jpg,https://images.gr-assets.com/books/1338763739s/13526026.jpg\n6852,123063,123063,118483,68,1841954802,9781841954810.0,Michel Faber,2000.0,Under the Skin,Under the Skin,,3.72,11360,15351,1905,454,1239,3947,6173,3538,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171847901l/123063.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6853,140524,140524,135427,32,449208281,9780449208280.0,Dorothy Gilman,1966.0,The Unexpected Mrs. Pollifax,The Unexpected Mrs. Pollifax  (Mrs. Pollifax #1),eng,4.14,15666,17108,1251,133,422,3242,6481,6830,https://images.gr-assets.com/books/1407611607l/140524.jpg,https://images.gr-assets.com/books/1407611607s/140524.jpg\n6854,17159011,17159011,24152432,42,1455525839,9781455525840.0,\"Douglas Preston, Lincoln Child\",2013.0,White Fire,\"White Fire (Pendergast, #13)\",eng,4.07,12277,16014,1803,120,523,3007,6793,5571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581563145l/17159011.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6855,1051620,1051620,1561779,28,1841496049,9781841496050.0,Karen Miller,2005.0,\"The Innocent Mage (Kingmaker, Kingbreaker, #1)\",\"The Innocent Mage (Kingmaker, Kingbreaker, #1)\",eng,3.65,15419,16525,767,554,1513,4845,5814,3799,https://images.gr-assets.com/books/1327918882l/1051620.jpg,https://images.gr-assets.com/books/1327918882s/1051620.jpg\n6856,1337448,1337448,1327004,87,3453162897,9783453162890.0,\"Christiane F., Kai Hermann, Horst Rieck\",1978.0,Wir Kinder vom Bahnhof Zoo,Wir Kinder vom Bahnhof Zoo,ger,4.16,10070,18326,655,145,613,3062,6864,7642,https://images.gr-assets.com/books/1463309277l/1337448.jpg,https://images.gr-assets.com/books/1463309277s/1337448.jpg\n6857,32276,32276,1358127,54,345346297,9780345346290.0,Carl Sagan,1977.0,The Dragons of Eden: Speculations on the Evolution of Human Intelligence,Dragons of Eden: Speculations on the Evolution of Human Intelligence,eng,4.16,13310,14230,478,198,495,2305,5101,6131,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429540203l/32276.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6858,142079,142079,137034,52,425212696,9780425212690.0,Sue Grafton,2005.0,S is for Silence,\"S is for Silence (Kinsey Millhone, #19)\",eng,3.9,17879,19471,898,113,646,5365,8356,4991,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439457865l/142079._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6859,1303564,1303564,1292766,24,340884355,9780340884360.0,Robert Muchamore,2005.0,Maximum Security (Cherub #3),\"Maximum Security (Cherub, #3)\",eng,4.24,14860,15719,426,76,408,2436,5552,7247,https://images.gr-assets.com/books/1357225650l/1303564.jpg,https://images.gr-assets.com/books/1357225650s/1303564.jpg\n6860,375901,375901,1920769,53,2211065899,9782211065890.0,Leo Lionni,1967.0,Frederick,Frédéric,fre,4.19,16222,17478,401,201,621,3186,5192,8278,https://images.gr-assets.com/books/1329956148l/375901.jpg,https://images.gr-assets.com/books/1329956148s/375901.jpg\n6861,7059135,7059135,6662880,19,037321006X,9780373210060.0,Maria V. Snyder,2010.0,Inside Out,\"Inside Out (Insider, #1)\",eng,3.82,20472,22001,1882,598,1467,5568,8111,6257,https://images.gr-assets.com/books/1335383824l/7059135.jpg,https://images.gr-assets.com/books/1335383824s/7059135.jpg\n6862,17346698,17346698,24086771,11,1603093001,9781603093000.0,\"John             Lewis, Andrew Aydin, Nate Powell\",2013.0,March: Book One,\"March: Book One (March, #1)\",eng,4.33,19430,19871,2753,412,414,1814,6699,10532,https://images.gr-assets.com/books/1360539808l/17346698.jpg,https://images.gr-assets.com/books/1360539808s/17346698.jpg\n6863,218659,218659,963076,37,374504644,9780374504650.0,\"Flannery O'Connor, Robert Fitzgerald\",1965.0,Everything that Rises Must Converge,Everything That Rises Must Converge: Stories,eng,4.27,14534,15025,873,163,433,1876,5312,7241,https://images.gr-assets.com/books/1412859621l/218659.jpg,https://images.gr-assets.com/books/1412859621s/218659.jpg\n6864,1746470,1746470,1878138,23,312938829,9780312938830.0,Sherrilyn Kenyon,2008.0,Dream Chaser,\"Dream Chaser (Dark-Hunter #13, Dream-Hunter #3)\",eng,4.2,23294,24627,691,110,779,4307,8269,11162,https://images.gr-assets.com/books/1462051552l/1746470.jpg,https://images.gr-assets.com/books/1462051552s/1746470.jpg\n6865,45234,45234,1128909,68,067102082X,9780671020830.0,Hugh Laurie,1996.0,The Gun Seller,The Gun Seller,en-US,3.69,13247,16529,1690,311,1393,4865,6505,3455,https://images.gr-assets.com/books/1480110444l/45234.jpg,https://images.gr-assets.com/books/1480110444s/45234.jpg\n6866,8242117,8242117,13089627,27,307595609,9780307595610.0,Nora Ephron,2010.0,I remember nothing and other reflections,I Remember Nothing: and Other Reflections,en-US,3.73,13875,15822,2279,249,1211,4769,5913,3680,https://images.gr-assets.com/books/1320544923l/8242117.jpg,https://images.gr-assets.com/books/1320544923s/8242117.jpg\n6867,14082,14082,2501383,22,143039652,9780143039660.0,\"R.K. Narayan, Jhumpa Lahiri\",1943.0,Malgudi Days,Malgudi Days,eng,4.2,11527,12526,450,116,237,1807,5274,5092,https://images.gr-assets.com/books/1455574981l/14082.jpg,https://images.gr-assets.com/books/1455574981s/14082.jpg\n6868,28257707,28257707,48297245,24,006245773X,9780062457740.0,Mark Manson,2016.0,The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life,The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life,eng,4.03,41087,48659,3569,1484,2534,8529,16518,19594,https://images.gr-assets.com/books/1465761302l/28257707.jpg,https://images.gr-assets.com/books/1465761302s/28257707.jpg\n6869,2579284,2579284,2413310,35,393086925,9780393086930.0,James Grady,1974.0,Six Days of the Condor,Six Days of the Condor,eng,4.08,13779,14403,227,140,410,2849,5741,5263,https://images.gr-assets.com/books/1313011780l/2579284.jpg,https://images.gr-assets.com/books/1313011780s/2579284.jpg\n6870,698,698,3140490,51,307263940,9780307263940.0,Anne Tyler,2006.0,Digging to America,Digging to America,eng,3.53,15484,17260,1974,290,1589,6406,6627,2348,https://images.gr-assets.com/books/1327901292l/698.jpg,https://images.gr-assets.com/books/1327901292s/698.jpg\n6871,12360050,12360050,17340032,34,547807686,9780547807680.0,\"Oliver Pötzsch, Lee Chadeayne\",2009.0,\"Die Henkerstochter und der schwarze Mönch (Band 2 aus der Reihe \"\"Die Henkerstochter-Saga\"\")\",\"The Dark Monk (The Hangman's Daughter, #2)\",en-US,3.82,10785,16223,1316,143,744,4529,7243,3564,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442954456l/12360050._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6872,7145565,7145565,7410120,85,8756787650,9788756787660.0,Jussi Adler-Olsen,2009.0,Flaskepost fra P,\"Flaskepost fra P (Afdeling Q, #3)\",dan,4.04,9658,18828,1347,374,606,3164,8344,6340,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1258242269l/7145565.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6873,7979,7979,1179753,30,142400300,9780142400300.0,Brian Jacques,1994.0,The Bellmaker,\"The Bellmaker (Redwall, #7)\",,3.95,17476,18466,188,101,728,4999,6812,5826,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921177l/7979.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6876,105986,9858081,1121253,81,1841591009,9781841591000.0,P.G. Wodehouse,1938.0,The Code Of The Woosters,\"The Code of the Woosters (Jeeves, #7)\",eng,4.36,8979,17068,1135,69,222,1906,6214,8657,https://images.gr-assets.com/books/1299729089l/105986.jpg,https://images.gr-assets.com/books/1299729089s/105986.jpg\n6877,5849,5849,2927347,54,330487191,9780330487190.0,V.S. Naipaul,1961.0,A House for Mr. Biswas,A House for Mr Biswas,en-GB,3.82,13073,14609,647,430,1072,3582,5190,4335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1564755127l/5849.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6878,13708346,13708346,19194510,45,399157565,9780399157560.0,Patricia Cornwell,2012.0,The Bone Bed,\"The Bone Bed (Kay Scarpetta, #20)\",en-US,3.64,13557,17158,1732,500,1666,5337,5617,4038,https://images.gr-assets.com/books/1338860340l/13708346.jpg,https://images.gr-assets.com/books/1338860340s/13708346.jpg\n6879,8649656,8649656,13520837,26,718154835,9780718154840.0,Stephen Fry,2010.0,The Fry Chronicles: An Autobiography,The Fry Chronicles (Memoir #2),eng,3.87,14037,15730,998,262,844,3743,6632,4249,https://images.gr-assets.com/books/1376317909l/8649656.jpg,https://images.gr-assets.com/books/1376317909s/8649656.jpg\n6880,448836,448836,86945,181,915144867,9780915144860.0,\"John Locke, C.B. Macpherson\",1689.0,Second Treatise of Government,Second Treatise of Government,eng,3.75,14549,15287,215,479,1181,4276,5093,4258,https://images.gr-assets.com/books/1405624453l/448836.jpg,https://images.gr-assets.com/books/1405624453s/448836.jpg\n6881,17228280,17228280,23741757,14,,,Elizabeth Eulberg,2014.0,Better Off Friends,Better off Friends,eng,3.95,15692,19201,2613,403,1126,4219,6786,6667,https://images.gr-assets.com/books/1386372561l/17228280.jpg,https://images.gr-assets.com/books/1386372561s/17228280.jpg\n6882,6966823,9778945,7205526,57,393072223,9780393072230.0,Nicholas Carr,2010.0,The Shallows: What the Internet is Doing to Our Brains,The Shallows: What the Internet is Doing to Our Brains,eng,3.85,6938,15090,2107,308,933,3625,6106,4118,https://images.gr-assets.com/books/1368393880l/6966823.jpg,https://images.gr-assets.com/books/1368393880s/6966823.jpg\n6883,11488123,11488123,14558491,43,452297648,9780452297650.0,Natasha Solomons,2011.0,The House at Tyneford,The House at Tyneford,eng,3.78,14092,15698,1972,203,1006,4313,6673,3503,https://images.gr-assets.com/books/1377631578l/11488123.jpg,https://images.gr-assets.com/books/1377631578s/11488123.jpg\n6884,42547,42547,42030,40,446676500,9780446676500.0,\"Martin Luther King Jr., Clayborne Carson\",1986.0,\"The Autobiography of Martin Luther King, Jr.\",\"The Autobiography of Martin Luther King, Jr.\",eng,4.31,11261,11619,412,119,276,1549,3561,6114,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926572l/42547.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6885,522534,522534,18133,61,743444299,9780743444290.0,\"Mineko Iwasaki, Rande Brown\",2002.0,Geisha: A Life,\"Geisha, a Life\",en-US,3.92,12995,15656,1005,175,811,3820,6065,4785,https://images.gr-assets.com/books/1359402937l/522534.jpg,https://images.gr-assets.com/books/1359402937s/522534.jpg\n6886,666758,666758,1313,45,60684127,9780060684130.0,A.W. Tozer,1961.0,The Knowledge of the Holy: The Attributes of God: Their Meaning in the Christian Life,The Knowledge of the Holy,eng,4.37,13800,14753,526,260,395,1662,3800,8636,https://images.gr-assets.com/books/1411484750l/666758.jpg,https://images.gr-assets.com/books/1411484750s/666758.jpg\n6887,104160,104160,1529786,59,1401360203,9781401360210.0,\"Sergei Lukyanenko, Andrew Bromfield\",2000.0,Дневной дозор,Day Watch (Watch #2),eng,4.05,13812,17305,601,132,612,3329,7389,5843,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1410577807l/104160.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6888,136640,136640,1415837,49,076534629X,9780765346290.0,Douglas Preston,2003.0,The Codex,The Codex,,3.88,15047,16127,491,192,903,4304,6010,4718,https://images.gr-assets.com/books/1316729332l/136640.jpg,https://images.gr-assets.com/books/1316729332s/136640.jpg\n6889,2137,2137,1216429,64,312424086,9780312424080.0,Michael Cunningham,1990.0,A Home at the End of the World,A Home at the End of the World,en-US,3.89,13228,14967,780,256,896,3615,5657,4543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442779849l/2137.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6890,15752115,15752115,21446852,21,1401237770,9781401237780.0,\"Scott Snyder, Greg Capullo, Jonathan Glapion, James Tynion IV, Rafael Albuquerque, Jason Fabok, Becky Cloonan, Andy Clarke, Sandu Florea\",2013.0,\"Batman, Volume 2: The City of Owls\",\"Batman, Volume 2: The City of Owls\",eng,4.26,13864,15395,720,63,350,2109,5857,7016,https://images.gr-assets.com/books/1342309403l/15752115.jpg,https://images.gr-assets.com/books/1342309403s/15752115.jpg\n6891,28759,28759,3230346,19,886773520,9780886773530.0,Mercedes Lackey,1989.0,Magic's Pawn,Magic's Pawn (Valdemar: Last Herald-Mage #1),en-US,4.21,19865,20490,641,272,755,3212,6378,9873,https://images.gr-assets.com/books/1345854036l/28759.jpg,https://images.gr-assets.com/books/1345854036s/28759.jpg\n6892,28747,28747,3265487,21,99595818,9780099595820.0,George Saunders,1996.0,CivilWarLand in Bad Decline,CivilWarLand in Bad Decline,eng,4.22,10525,13213,1183,91,350,1856,5192,5724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1553962495l/28747.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6893,9739365,9739365,14628458,32,031269945X,9780312699450.0,\"Howard E. Wasdin, Stephen Templin\",2011.0,SEAL Team Six: Memoirs of an Elite Navy SEAL Sniper,SEAL Team Six: Memoirs of an Elite Navy SEAL Sniper,en-US,4.0,10582,11895,800,161,542,2571,4455,4166,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442949773l/9739365._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6894,190115,190115,183830,18,609810111,9780609810120.0,Caroline Myss,2001.0,Sacred Contracts: Awakening Your Divine Potential,Sacred Contracts: Awakening Your Divine Potential,en-US,3.97,12218,12481,191,252,786,2753,4008,4682,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388181731l/190115.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6895,4955,4955,1014179,26,1400095565,9781400095570.0,Dave Eggers,2005.0,How We Are Hungry,How We Are Hungry,eng,3.75,11282,12077,715,163,781,3678,4767,2688,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348367656l/4955.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6896,30292,30292,30661,25,872206335,9780872206340.0,\"Plato, G.M.A. Grube, John M. Cooper\",-385.0,\"Euthyphro, Apology, Crito, Meno, Phaedo\",\"Five Dialogues: Euthyphro, Apology, Crito, Meno, Phaedo\",eng,4.1,13301,13633,187,160,535,2692,4632,5614,https://images.gr-assets.com/books/1399079227l/30292.jpg,https://images.gr-assets.com/books/1399079227s/30292.jpg\n6897,26224667,26224667,46209108,11,,,Jana Aston,2015.0,Wrong,\"Wrong (Wrong, #1)\",eng,3.94,14596,21374,2184,641,1303,4316,7507,7607,https://images.gr-assets.com/books/1443007627l/26224667.jpg,https://images.gr-assets.com/books/1443007627s/26224667.jpg\n6898,79121,79121,244691,182,525453679,9780525453670.0,Oscar Wilde,1888.0,The Happy Prince and The House of Pomegranates,The Happy Prince,eng,4.22,17522,19156,545,175,648,3119,6130,9084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700803l/79121.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6899,18982011,18010355,25280045,21,,,J.D. Horn,2014.0,The Line,\"The Line (Witching Savannah, #1)\",eng,3.78,7834,15062,1360,282,924,4215,6097,3544,https://images.gr-assets.com/books/1385507733l/18982011.jpg,https://images.gr-assets.com/books/1385507733s/18982011.jpg\n6900,29519517,29519517,49812105,15,1682305066,9781682305060.0,Erin Watt,2016.0,Twisted Palace,\"Twisted Palace (The Royals, #3)\",eng,4.0,16342,20463,2351,394,1244,4026,7107,7692,https://images.gr-assets.com/books/1474992523l/29519517.jpg,https://images.gr-assets.com/books/1474992523s/29519517.jpg\n6901,2493973,2493973,2501288,22,375955712,9780375955720.0,Jeanne DuPrau,2008.0,The Diamond of Darkhold,\"The Diamond of Darkhold (Book of Ember, #4)\",eng,3.79,18425,20330,1586,262,1387,5966,7475,5240,https://images.gr-assets.com/books/1320636372l/2493973.jpg,https://images.gr-assets.com/books/1320636372s/2493973.jpg\n6902,596259,596259,582938,12,609807250,9780609807260.0,Gordon B. Hinckley,2000.0,Standing for Something: 10 Neglected Virtues That Will Heal Our Hearts and Homes,Standing for Something: 10 Neglected Virtues That Will Heal Our Hearts and Homes,,4.61,12708,13279,683,126,165,786,2622,9580,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192142l/596259.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6903,93802,93802,1820072,55,141019085,9780141019090.0,Daniel Silva,2003.0,A Death In Vienna,\"A Death in Vienna (Gabriel Allon, #4)\",eng,4.17,12761,15709,706,59,262,2506,6999,5883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389823717l/93802.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6906,9439989,9439989,14324610,22,758266928,9780758266930.0,Jennifer Estep,2011.0,Touch of Frost,\"Touch of Frost (Mythos Academy, #1)\",en-US,3.96,23343,25742,1905,560,1434,5436,9395,8917,https://images.gr-assets.com/books/1301505419l/9439989.jpg,https://images.gr-assets.com/books/1301505419s/9439989.jpg\n6907,10169662,10169662,13723008,56,,9780312595680.0,Chevy Stevens,2011.0,Never Knowing,Never Knowing,eng,3.85,16178,18173,2489,373,1155,4452,7114,5079,https://images.gr-assets.com/books/1294615110l/10169662.jpg,https://images.gr-assets.com/books/1294615110s/10169662.jpg\n6908,31268,31268,680939,54,752858521,9780752858520.0,Robert Ludlum,1984.0,The Aquitaine Progression,The Aquitaine Progression,eng,3.9,14100,14718,131,120,607,3965,5917,4109,https://images.gr-assets.com/books/1408931400l/31268.jpg,https://images.gr-assets.com/books/1408931400s/31268.jpg\n6909,103159,103159,842726,185,192838628,9780192838630.0,John Galsworthy,1921.0,The Forsyte Saga,\"The Forsyte Saga (The Forsyte Chronicles, #1-3)\",eng,4.15,14218,16090,712,250,596,2721,5418,7105,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286090l/103159.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6910,262228,262228,1300465,48,449003787,9780449003790.0,Sue Grafton,1999.0,\"\"\"O\"\" is for Outlaw\",\"O is for Outlaw (Kinsey Millhone, #15)\",eng,3.92,18715,20244,549,74,561,5686,8579,5344,https://images.gr-assets.com/books/1403183790l/262228.jpg,https://images.gr-assets.com/books/1403183790s/262228.jpg\n6911,2820533,2820533,2846471,12,1423111443,9781423111440.0,Laurie Faria Stolarz,2008.0,\"Deadly Little Secret (Touch, #1)\",\"Deadly Little Secret (Touch, #1)\",eng,3.86,20156,21162,1622,566,1702,5151,6373,7370,https://images.gr-assets.com/books/1325558484l/2820533.jpg,https://images.gr-assets.com/books/1325558484s/2820533.jpg\n6912,18282915,18282915,25756827,26,345543084,9780345543080.0,\"Janet Evanovich, Lee Goldberg\",2014.0,The Chase,\"The Chase (Fox and O'Hare, #2)\",eng,3.93,14059,18185,1730,115,613,4701,7735,5021,https://images.gr-assets.com/books/1381528974l/18282915.jpg,https://images.gr-assets.com/books/1381528974s/18282915.jpg\n6913,25403,25403,1015565,85,753819929,9780753819920.0,\"Jostein Gaarder, James Anderson\",2003.0,Appelsinpiken,The Orange Girl,eng,3.91,10355,15802,1355,275,1033,3697,5620,5177,https://images.gr-assets.com/books/1415583796l/25403.jpg,https://images.gr-assets.com/books/1415583796s/25403.jpg\n6914,228220,228220,1088950,66,425132951,9780425132950.0,\"Leigh Nichols, Dean Koontz\",1982.0,The House of Thunder,The House of Thunder,eng,3.78,14618,15519,417,290,1174,4623,5032,4400,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389299860l/228220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6915,71864,71864,79752,58,439829119,9780439829110.0,John Marsden,1994.0,The Dead of the Night,\"The Dead of Night (Tomorrow, #2)\",eng,4.13,15240,17279,607,69,399,3095,7410,6306,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214810l/71864.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6916,18869970,18869970,623258,130,316252964,9780316252970.0,Daphne du Maurier,1951.0,My Cousin Rachel,My Cousin Rachel,eng,3.92,9557,20819,2163,235,933,4818,9007,5826,https://images.gr-assets.com/books/1386609405l/18869970.jpg,https://images.gr-assets.com/books/1386609405s/18869970.jpg\n6917,70509,70509,1363422,40,812971671,9780812971680.0,Gary Shteyngart,2006.0,Absurdistan,Absurdistan,eng,3.29,10712,11734,1573,787,1824,3822,3748,1553,https://images.gr-assets.com/books/1486266465l/70509.jpg,https://images.gr-assets.com/books/1486266465s/70509.jpg\n6918,8677937,8677937,6966233,18,312599064,9780312599060.0,Sherrilyn Kenyon,2011.0,Invincible (Chronicles of Nick #2),\"Invincible (Chronicles of Nick, #2)\",en-US,4.27,19887,21653,1096,158,559,3136,7280,10520,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442858923l/8677937._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6919,55354,55354,893440,22,786887583,9780786887580.0,George Carlin,2001.0,Napalm & Silly Putty,Napalm & Silly Putty,eng,4.12,12798,13437,316,141,465,2561,4724,5546,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438051222l/55354._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6920,24815,24815,25602,19,751500283,9780751500290.0,Bill Watterson,1992.0,The Indispensable Calvin and Hobbes: A Calvin and Hobbes Treasury,The Indispensable Calvin and Hobbes,eng,4.73,14597,16911,325,19,62,666,2969,13195,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347311516l/24815.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6921,46349,46349,45472,28,812968379,9780812968380.0,Firoozeh Dumas,2003.0,Funny in Farsi: A Memoir of Growing Up Iranian in America,Funny in Farsi: A Memoir of Growing Up Iranian in America,eng,3.76,10008,13656,1957,253,941,3805,5460,3197,https://images.gr-assets.com/books/1411923160l/46349.jpg,https://images.gr-assets.com/books/1411923160s/46349.jpg\n6923,213975,213975,2501537,56,749934360,9780749934360.0,\"J.D. Robb, Susan Ericksen\",2000.0,Witness in Death,\"Witness in Death (In Death, #10)\",eng,4.3,19178,22479,693,55,284,3167,8399,10574,https://images.gr-assets.com/books/1368396677l/213975.jpg,https://images.gr-assets.com/books/1368396677s/213975.jpg\n6924,60211,60211,762497,44,671540661,9780671540660.0,Gene Wolfe,1980.0,The Shadow of the Torturer,The Shadow of the Torturer (The Book of the New Sun #1),eng,3.8,15507,16508,885,636,1538,3710,5303,5321,https://images.gr-assets.com/books/1329650008l/60211.jpg,https://images.gr-assets.com/books/1329650008s/60211.jpg\n6925,13069935,13069935,18236079,13,316194689,9780316194690.0,A.S. King,2012.0,Ask the Passengers,Ask the Passengers,en-US,3.88,17896,18978,2325,532,1180,4270,6966,6030,https://images.gr-assets.com/books/1371850438l/13069935.jpg,https://images.gr-assets.com/books/1371850438s/13069935.jpg\n6926,20499240,20499240,34142449,21,575132507,9780575132500.0,Ben Aaronovitch,2014.0,Foxglove Summer,\"Foxglove Summer (Peter Grant, #5)\",eng,4.18,12167,16816,1513,36,284,2398,7966,6132,https://images.gr-assets.com/books/1402338677l/20499240.jpg,https://images.gr-assets.com/books/1402338677s/20499240.jpg\n6927,261689,261689,3234291,64,99465639,9780099465640.0,Georgette Heyer,1950.0,The Grand Sophy,The Grand Sophy,eng,4.16,16282,18859,2284,198,559,2989,7328,7785,https://images.gr-assets.com/books/1414731822l/261689.jpg,https://images.gr-assets.com/books/1414731822s/261689.jpg\n6928,299215,299215,217623,102,226320618,9780226320620.0,Friedrich A. Hayek,1944.0,The Road to Serfdom,The Road to Serfdom,en-US,4.18,11306,13889,820,299,546,2016,4540,6488,https://images.gr-assets.com/books/1327787673l/299215.jpg,https://images.gr-assets.com/books/1327787673s/299215.jpg\n6929,18800655,18800655,24585130,18,,,Marko Kloos,2013.0,Terms of Enlistment,Terms of Enlistment (Frontlines #1),eng,3.96,12890,15009,983,161,595,3248,6658,4347,https://images.gr-assets.com/books/1391472650l/18800655.jpg,https://images.gr-assets.com/books/1391472650s/18800655.jpg\n6930,18076876,18076876,25382416,16,,,Joanna Wylde,2014.0,Reaper's Legacy,\"Reaper's Legacy (Reapers MC, #2)\",eng,4.27,28046,29069,2182,187,636,3801,10867,13578,https://images.gr-assets.com/books/1373565326l/18076876.jpg,https://images.gr-assets.com/books/1373565326s/18076876.jpg\n6931,41502,41502,1612336,42,385337493,9780385337500.0,Diana Gabaldon,2007.0,Lord John and the Brotherhood of the Blade ,\"Lord John and the Brotherhood of the Blade  (Lord John Grey, #2)\",en-US,3.86,14952,17164,797,271,918,4658,6402,4915,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421850685l/41502.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6932,12468,12468,838965,33,375700811,9780375700810.0,Norman Mailer,1979.0,The Executioner's Song,The Executioner's Song,eng,4.07,13829,15169,970,244,677,2693,5730,5825,https://images.gr-assets.com/books/1325755176l/12468.jpg,https://images.gr-assets.com/books/1325755176s/12468.jpg\n6933,15755201,15755201,21451913,41,399161481,9780399161480.0,Robert Crais,2013.0,Suspect,\"Suspect (Scott James & Maggie, #1)\",eng,4.14,14501,16993,2222,168,458,2735,7120,6512,https://images.gr-assets.com/books/1345131356l/15755201.jpg,https://images.gr-assets.com/books/1345131356s/15755201.jpg\n6934,11359,11359,2174297,50,1400033446,9781400033450.0,Toni Morrison,1981.0,Tar Baby,Tar Baby,en-CA,3.91,13951,14602,379,201,716,3690,5618,4377,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924530l/11359.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6935,837501,837501,174503,45,140320970,9780140320980.0,William Pène du Bois,1947.0,The Twenty-One Balloons,The Twenty-One Balloons,en-US,3.96,17385,18514,1048,353,1066,4120,6324,6651,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347453445l/837501.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6936,13093001,13093001,18154368,25,399157689,9780399157680.0,John Sandford,2012.0,Stolen Prey,\"Stolen Prey (Lucas Davenport, #22)\",eng,4.17,13426,16316,1016,97,322,2664,6887,6346,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391798162l/13093001.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6937,840,840,18518,38,465067107,9780465067110.0,Donald A. Norman,1988.0,The Psychology of Everyday Things,The Design of Everyday Things,en-US,4.18,11838,15202,1192,88,483,2327,6020,6284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442460745l/840._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6938,227658,227658,888455,23,439632501,9780439632510.0,Margaret Peterson Haddix,1995.0,Running Out of Time,Running Out of Time,eng,3.98,19126,20326,1291,224,1002,4639,7603,6858,https://images.gr-assets.com/books/1408913584l/227658.jpg,https://images.gr-assets.com/books/1408913584s/227658.jpg\n6941,129616,129616,124838,39,671737635,9780671737630.0,Judith McNaught,1988.0,Something Wonderful,\"Something Wonderful (Sequels, #2)\",eng,4.33,20049,20929,753,120,464,2671,6877,10797,https://images.gr-assets.com/books/1435634530l/129616.jpg,https://images.gr-assets.com/books/1435634530s/129616.jpg\n6942,2003767,2003767,3353247,70,399154914,9780399154910.0,Nora Roberts,2008.0,Tribute,Tribute,eng,3.92,18811,20535,1003,175,981,5464,7694,6221,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437070351l/2003767._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6943,46012,16116268,4083740,58,739420232,9780739420230.0,Debbie Macomber,2001.0,16 Lighthouse Road,\"16 Lighthouse Road (Cedar Cove, #1)\",eng,4.08,9938,17930,1100,222,617,3654,6444,6993,https://images.gr-assets.com/books/1388881732l/46012.jpg,https://images.gr-assets.com/books/1388881732s/46012.jpg\n6944,86172,86172,1997693,54,553381334,9780553381340.0,Tom Wolfe,1998.0,A Man in Full,A Man in Full,,3.8,12540,13565,760,265,945,3480,5407,3468,https://images.gr-assets.com/books/1320472513l/86172.jpg,https://images.gr-assets.com/books/1320472513s/86172.jpg\n6945,42631,42631,209794,20,1578562589,9781578562590.0,Joanna Weaver,2000.0,Having a Mary Heart in a Martha World: Finding Intimacy With God in the Busyness of Life,Having a Mary Heart in a Martha World: Finding Intimacy With God in the Busyness of Life,en-US,4.16,12501,12838,412,149,469,2232,4284,5704,https://images.gr-assets.com/books/1341472478l/42631.jpg,https://images.gr-assets.com/books/1341472478s/42631.jpg\n6946,7636774,7636774,13896199,29,61706558,9780061706550.0,Laura Lippman,2010.0,I'd Know You Anywhere,I'd Know You Anywhere,en-US,3.47,15337,17587,2055,329,1759,6903,6453,2143,https://images.gr-assets.com/books/1277582483l/7636774.jpg,https://images.gr-assets.com/books/1277582483s/7636774.jpg\n6947,18166936,18166936,21445699,37,763665665,9780763665660.0,Leslye Walton,2014.0,The Strange and Beautiful Sorrows of Ava Lavender,The Strange and Beautiful Sorrows of Ava Lavender,eng,4.12,18562,21560,4798,388,1066,3384,7410,9312,https://images.gr-assets.com/books/1397110326l/18166936.jpg,https://images.gr-assets.com/books/1397110326s/18166936.jpg\n6948,17349163,17349163,24034602,24,62200461,9780062200460.0,Joanna Trollope,2013.0,Sense & Sensibility,\"Sense & Sensibility (The Austen Project, #1)\",eng,3.55,11346,12379,1028,824,1443,3346,3651,3115,https://images.gr-assets.com/books/1363291870l/17349163.jpg,https://images.gr-assets.com/books/1363291870s/17349163.jpg\n6951,264778,264778,1220213,10,380842939,9780380842930.0,Anna Lee Waldo,1978.0,Sacajawea,Sacajawea (Lewis & Clark Expedition),eng,4.23,13504,13781,392,122,396,2290,4345,6628,https://images.gr-assets.com/books/1315509057l/264778.jpg,https://images.gr-assets.com/books/1315509057s/264778.jpg\n6952,1722717,1722717,1813124,37,1599901196,9781599901190.0,Gemma Malley,2007.0,The Declaration,\"The Declaration (The Declaration, #1)\",,3.71,16224,19274,1555,544,1631,5419,6926,4754,https://images.gr-assets.com/books/1317067021l/1722717.jpg,https://images.gr-assets.com/books/1317067021s/1722717.jpg\n6953,18687079,18687079,26530075,4,1616552956,9781616552950.0,\"Gene Luen Yang, Michael Dante DiMartino, Bryan Konietzko, Gurihiru\",2014.0,\"Avatar: The Last Airbender: The Rift, Part 1\",\"Avatar: The Last Airbender (The Rift, #1)\",eng,4.33,10560,10673,201,210,311,1356,2669,6127,https://images.gr-assets.com/books/1382378982l/18687079.jpg,https://images.gr-assets.com/books/1382378982s/18687079.jpg\n6954,12374,12374,2199385,52,99447126,9780099447120.0,Richard Ford,1995.0,Independence Day,Independence Day,eng,3.86,11663,12877,634,387,961,2714,4849,3966,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166501473l/12374.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6955,2336803,2336803,3055130,29,141654383X,9781416543830.0,Brad Thor,2008.0,The Last Patriot,\"The Last Patriot (Scot Harvath, #7)\",eng,4.16,12264,14106,669,132,390,2304,5567,5713,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388705552l/2336803.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6956,214856,214856,2155900,14,1416928065,9781416928060.0,Obert Skye,2005.0,\"Leven Thumps and the Gateway to Foo (Leven Thumps, #1)\",\"Leven Thumps and the Gateway to Foo (Leven Thumps, #1)\",,3.71,17760,18044,1539,709,1729,4896,5469,5241,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348786235l/214856.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6957,18228202,18228202,25663814,21,1414368186,9781414368180.0,Francine Rivers,2014.0,Bridge to Haven,Bridge to Haven,eng,4.07,11325,12877,1037,337,601,2356,4149,5434,https://images.gr-assets.com/books/1376078910l/18228202.jpg,https://images.gr-assets.com/books/1376078910s/18228202.jpg\n6958,16071736,20166980,21865739,31,030795871X,9780307958720.0,J. Courtney Sullivan,2013.0,The Engagements,The Engagements,eng,3.59,8634,15207,1885,420,1388,4828,5964,2607,https://images.gr-assets.com/books/1361254904l/16071736.jpg,https://images.gr-assets.com/books/1361254904s/16071736.jpg\n6959,13168,13168,1245146,46,590664875,9780590664880.0,Beverly Cleary,1970.0,Runaway Ralph,\"Runaway Ralph (Ralph S. Mouse, #2)\",,3.95,16845,17858,324,159,745,4874,6149,5931,https://images.gr-assets.com/books/1327883411l/13168.jpg,https://images.gr-assets.com/books/1327883411s/13168.jpg\n6960,13640229,13640229,19254508,8,,9781301160820.0,Kristen Ashley,2012.0,Creed,\"Creed (Unfinished Hero, #2)\",eng,4.17,26696,28929,1826,381,1125,4594,9929,12900,https://images.gr-assets.com/books/1347468402l/13640229.jpg,https://images.gr-assets.com/books/1347468402s/13640229.jpg\n6961,2142,2142,54935,29,849945119,9780849945110.0,Ted Dekker,2002.0,Blink,Blink,,4.17,12037,14057,747,143,482,2445,4810,6177,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388372253l/2142.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6962,27213121,27213121,47255119,53,006232022X,9780062320220.0,Daniel Silva,2016.0,The Black Widow,\"The Black Widow (Gabriel Allon, #16)\",eng,4.34,8822,16975,1608,163,364,1722,6044,8682,https://images.gr-assets.com/books/1460313822l/27213121.jpg,https://images.gr-assets.com/books/1460313822s/27213121.jpg\n6963,434764,434764,862892,9,1570089264,9781570089270.0,Stephen E. Robinson,1992.0,Believing Christ: The Parable of the Bicycle and Other Good News,Believing Christ: The Parable of the Bicycle and Other Good News,eng,4.51,12951,13348,818,164,220,1010,3223,8731,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387655499l/434764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6964,10586539,10586539,15493868,31,,,Amanda Hocking,2012.0,Wake (Watersong #1),Wake (Watersong #1),en-US,3.7,17833,19962,2243,632,1890,5704,6400,5336,https://images.gr-assets.com/books/1344231690l/10586539.jpg,https://images.gr-assets.com/books/1344231690s/10586539.jpg\n6966,17994,17994,1031975,64,385495323,9780385495320.0,Simon Singh,1999.0,\"The Code Book. How to Make It, Break It, Hack It, Crack It\",The Code Book: The Science of Secrecy from Ancient Egypt to Quantum Cryptography,eng,4.28,12919,15365,912,85,290,1889,6053,7048,https://images.gr-assets.com/books/1403181687l/17994.jpg,https://images.gr-assets.com/books/1403181687s/17994.jpg\n6967,67513,67513,65477,29,451460936,9780451460940.0,Karen Chance,2006.0,Touch the Dark,\"Touch the Dark (Cassandra Palmer, #1)\",eng,3.7,26970,28277,1531,1232,2621,7437,9074,7913,https://images.gr-assets.com/books/1307391100l/67513.jpg,https://images.gr-assets.com/books/1307391100s/67513.jpg\n6968,11286,11286,909623,38,446359203,9780446359210.0,Dan Simmons,1989.0,Carrion Comfort,Carrion Comfort,eng,3.89,13285,14794,768,395,934,3401,5236,4828,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203579l/11286.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6969,9858714,9858714,14749921,9,,,Lori Brighton,2010.0,The Mind Readers,\"The Mind Readers (Mind Readers, #1)\",eng,3.76,9825,16567,1302,503,1392,4426,5577,4669,https://images.gr-assets.com/books/1291820285l/9858714.jpg,https://images.gr-assets.com/books/1291820285s/9858714.jpg\n6970,815150,815150,1676569,38,044024417X,9780440244170.0,Karen Marie Moning,2000.0,The Highlander's Touch ,\"The Highlander's Touch (Highlander, #3)\",eng,4.15,22072,25398,1050,178,827,4756,9010,10627,https://images.gr-assets.com/books/1257330461l/815150.jpg,https://images.gr-assets.com/books/1257330461s/815150.jpg\n6972,353342,353342,1374812,33,786816589,9780786816580.0,Avi,2002.0,Crispin: The Cross of Lead,\"The Cross of Lead (Crispin, #1)\",eng,3.59,18277,19115,1738,866,1836,5728,6524,4161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405898248l/353342.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6973,76667,76667,1030359,18,345322215,9780345322210.0,Piers Anthony,1986.0,Wielding a Red Sword,\"Wielding a Red Sword (Incarnations of Immortality, #4)\",en-US,3.93,16222,16633,223,136,852,4305,6066,5274,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923571l/76667.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6974,18461986,18461986,26116275,29,,,Kylie Scott,2015.0,Deep,\"Deep (Stage Dive, #4)\",eng,4.09,25588,28007,2624,261,1124,5168,10658,10796,https://images.gr-assets.com/books/1397676461l/18461986.jpg,https://images.gr-assets.com/books/1397676461s/18461986.jpg\n6975,79006,79006,2452308,53,312933533,9780312933530.0,Jeffrey Archer,1993.0,Honour Among Thieves,Honor Among Thieves,,3.82,12409,13336,276,121,600,3955,5553,3107,https://images.gr-assets.com/books/1316131242l/79006.jpg,https://images.gr-assets.com/books/1316131242s/79006.jpg\n6976,7657484,7657484,10234999,25,1401224687,9781401224680.0,\"J. Michael Straczynski, Shane Davis, Sandra Hope, Barbara Ciardo, Rob Leigh\",2010.0,\"Superman: Earth One, Volume 1\",\"Superman: Earth One, Volume 1\",eng,3.9,12982,13693,637,410,945,3119,4411,4808,https://images.gr-assets.com/books/1320538241l/7657484.jpg,https://images.gr-assets.com/books/1320538241s/7657484.jpg\n6977,11106458,11106458,16028692,3,1442440430,9781442440430.0,Cassandra Clare,2011.0,The Mortal Instrument Series: City of Bones / City of Ashes / City of Glass / City of Fallen Angels,The Mortal Instruments (The Mortal Instruments #1-4),eng,4.59,13996,14474,376,142,221,940,2851,10320,https://images.gr-assets.com/books/1313073526l/11106458.jpg,https://images.gr-assets.com/books/1313073526s/11106458.jpg\n6978,609035,609035,3016652,239,800786645,9780800786650.0,\"John Foxe, W. Grinton Berry\",1563.0,Foxe's Book of Martyrs,Foxe's Book of Martyrs,en-CA,4.25,12117,13581,254,194,493,2106,3784,7004,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348566202l/609035.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6979,60223,60223,58587,28,60009241,9780060009240.0,Rachel Gibson,2003.0,See Jane Score,\"See Jane Score (Chinooks Hockey Team, #2)\",eng,4.06,20770,21808,656,200,835,4391,8442,7940,https://images.gr-assets.com/books/1330265531l/60223.jpg,https://images.gr-assets.com/books/1330265531s/60223.jpg\n6980,17174,17174,2506,17,312421850,9780312421850.0,Michael Dorris,1987.0,A Yellow Raft in Blue Water: A Novel,A Yellow Raft in Blue Water,en-US,3.84,14380,14789,869,312,942,3709,5627,4199,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439049792l/17174._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6981,6294549,6294549,6478937,21,756405718,9780756405720.0,Seanan McGuire,2009.0,Rosemary and Rue,\"Rosemary and Rue (October Daye, #1)\",en-US,3.74,21030,23038,2091,758,1719,6233,8296,6032,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406866868l/6294549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6982,64401,64401,1417626,29,441013465,9780441013460.0,Robert Lynn Asprin,1978.0,Another Fine Myth,\"Another Fine Myth (Myth Adventures, #1)\",en-US,4.03,17018,18048,502,174,728,3856,6853,6437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389251108l/64401.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6983,9279734,15732569,14161759,15,,,Elizabeth Reyes,2010.0,Forever Mine ,\"Forever Mine (The Moreno Brothers, #1)\",en-GB,3.88,18346,22383,1018,631,1440,5223,7815,7274,https://images.gr-assets.com/books/1327166807l/9279734.jpg,https://images.gr-assets.com/books/1327166807s/9279734.jpg\n6984,6617185,6617185,6811292,38,1568584253,9781568584260.0,\"Simon Kuper, Stefan Szymanski\",2009.0,\"Soccernomics: Why England Loses, Why Germany and Brazil Win, and Why the U.S., Japan, Australia, Turkey--and Even Iraq--Are Destined to Become the Kings of the World's Most Popular Sport\",\"Soccernomics: Why England Loses, Why Germany and Brazil Win, and Why the U.S., Japan, Australia, Turkey--and Even Iraq--Are Destined to Become the Kings of the World's Most Popular Sport\",en-US,3.91,10577,11824,541,278,586,2796,4406,3758,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432865592l/6617185._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6985,4499214,4499214,4548192,36,340893613,9780340893620.0,Catherine Fisher,2000.0,Sapphique,\"Sapphique (Incarceron, #2)\",eng,3.7,16475,19648,1786,475,1717,5784,6838,4834,https://images.gr-assets.com/books/1327885488l/4499214.jpg,https://images.gr-assets.com/books/1327885488s/4499214.jpg\n6986,127451,127451,2052615,14,553567152,9780553567150.0,Lurlene McDaniel,1995.0,\"Don't Die, My Love\",\"Don't Die, My Love\",,4.12,14197,14383,574,304,681,2795,3784,6819,https://images.gr-assets.com/books/1320416427l/127451.jpg,https://images.gr-assets.com/books/1320416427s/127451.jpg\n6987,40482,40482,1238407,65,067155302X,9780671553030.0,Tess Gerritsen,1996.0,Harvest ,Harvest,eng,4.09,14274,15904,581,84,463,3246,6280,5831,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193515l/40482.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6988,1587362,1587362,1580303,13,764524836,9780764524840.0,Mark Bittman,2007.0,How to Cook Everything Vegetarian: Simple Meatless Recipes for Great Food,How to Cook Everything Vegetarian: Simple Meatless Recipes for Great Food,eng,4.08,12262,12372,366,416,524,2113,3916,5403,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390927101l/1587362.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6989,20801166,20801166,40145315,22,1250061776,9781250061780.0,Sandy   Hall,2014.0,A Little Something Different,A Little Something Different,eng,3.65,14206,16719,3118,733,1571,4722,5545,4148,https://images.gr-assets.com/books/1396394307l/20801166.jpg,https://images.gr-assets.com/books/1396394307s/20801166.jpg\n6990,17349222,17349222,18373204,18,62236679,9780062236680.0,Ann Patchett,2011.0,This Is the Story of a Happy Marriage,This is the Story of a Happy Marriage,eng,4.03,13126,15190,2565,241,633,2731,6347,5238,https://images.gr-assets.com/books/1375215541l/17349222.jpg,https://images.gr-assets.com/books/1375215541s/17349222.jpg\n6992,7853137,7853137,10980742,80,307588920,9780307588920.0,John Verdon,2010.0,Think of a Number,\"Think of a Number (Dave Gurney, #1)\",eng,3.83,11877,17642,1837,304,1106,4490,7171,4571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394236041l/7853137.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6994,114203,114203,1461362,69,515137111,9780515137120.0,Nora Roberts,2003.0,Birthright,Birthright,eng,3.99,19024,20503,625,166,876,4932,7596,6933,https://images.gr-assets.com/books/1309282307l/114203.jpg,https://images.gr-assets.com/books/1309282307s/114203.jpg\n6995,434535,434535,2243662,11,1590382234,9781590382230.0,James L. Ferrell,2004.0,The Peacegiver: How Christ Offers to Heal Our Hearts and Homes,The Peacegiver: How Christ Offers to Heal Our Hearts and Homes,eng,4.41,12313,12528,2150,144,325,1324,3252,7483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388383083l/434535.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n6996,64895,64895,62987,43,99268701,9780099268700.0,Mark Kurlansky,1988.0,Cod: A Biography of the Fish that Changed the World,Cod: A Biography of the Fish that Changed the World,eng,3.92,13137,14378,1104,197,627,3465,5958,4131,https://images.gr-assets.com/books/1356452461l/64895.jpg,https://images.gr-assets.com/books/1356452461s/64895.jpg\n6997,8167094,8167094,13013056,38,307265633,9780307265630.0,Brian Greene,2011.0,The Hidden Reality: Parallel Universes and the Search for the Deep Laws of the Cosmos,The Hidden Reality: Parallel Universes and the Deep Laws of the Cosmos,eng,4.05,12080,13031,581,263,515,2415,4987,4851,https://images.gr-assets.com/books/1320431300l/8167094.jpg,https://images.gr-assets.com/books/1320431300s/8167094.jpg\n6998,38723,17573685,809732,68,393322572,9780393322580.0,\"Betty Friedan, Anna Quindlen\",1963.0,The Feminine Mystique,The Feminine Mystique,eng,3.85,9823,16455,1137,283,1001,4182,6432,4557,https://images.gr-assets.com/books/1479777578l/38723.jpg,https://images.gr-assets.com/books/1479777578s/38723.jpg\n6999,48862,48862,2468586,96,99478471,9780099478480.0,\"Graham Greene, J.M. Coetzee\",1938.0,Brighton Rock,Brighton Rock,eng,3.72,13871,16340,1000,295,1208,4767,6561,3509,https://images.gr-assets.com/books/1337363402l/48862.jpg,https://images.gr-assets.com/books/1337363402s/48862.jpg\n7000,12415695,12415695,15632745,2,,9789953566180.0,عبدالله المغلوث,2011.0,كخه يا بابا,كخه يا بابا,ara,3.71,12587,12610,1957,692,1285,3069,3562,4002,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1314105414l/12415695.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7001,6452760,6452760,6642965,34,670021156,9780670021150.0,\"Greg Mortenson, Khaled Hosseini\",2009.0,\"Stones into Schools: Promoting Peace with Books, Not Bombs, in Afghanistan and Pakistan\",\"Stones Into Schools: Promoting Peace With Books, Not Bombs, in Afghanistan and Pakistan\",eng,3.86,13543,14741,1786,430,907,3490,5407,4507,https://images.gr-assets.com/books/1260845553l/6452760.jpg,https://images.gr-assets.com/books/1260845553s/6452760.jpg\n7002,3009435,3009435,3039966,67,307264238,9780307264240.0,Toni Morrison,2008.0,A Mercy,A Mercy,en-US,3.65,14707,16104,2301,494,1493,4653,5926,3538,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439037000l/3009435._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7004,23675858,23675858,43283626,22,,,A.G. Riddle,2014.0,Departure,Departure,eng,3.79,11143,12344,1132,254,880,3201,4847,3162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430394515l/23675858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7006,16335,16335,1748,212,1579126952,9781579126960.0,Agatha Christie,1928.0,The Mystery of the Blue Train,\"The Mystery of the Blue Train (Hercule Poirot, #6)\",eng,3.77,17011,21095,1032,142,1142,6739,8463,4609,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389733972l/16335.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7007,10808006,10808006,15721497,45,316097403,9780316097410.0,\"James Patterson, Maxine Paetro\",2011.0,Private:  #1 Suspect,\"Private #1 Suspect (Private, #2)\",eng,3.95,13428,16409,967,161,684,3993,6623,4948,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390710719l/10808006.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7008,14295,14295,4225,25,747553866,9780747553860.0,George Saunders,2000.0,Pastoralia,Pastoralia,eng,4.11,10786,13719,1108,143,473,2277,5621,5205,https://images.gr-assets.com/books/1348067120l/14295.jpg,https://images.gr-assets.com/books/1348067120s/14295.jpg\n7009,13523061,13523061,19083750,24,446575062,9780446575060.0,Meg Jay,2012.0,The Defining Decade: Why Your Twenties Matter--And How to Make the Most of Them Now,The Defining Decade: Why Your Twenties Matter--And How to Make the Most of Them Now,,4.11,12731,15517,1514,168,640,2691,5808,6210,https://images.gr-assets.com/books/1334798998l/13523061.jpg,https://images.gr-assets.com/books/1334798998s/13523061.jpg\n7010,1085771,1085771,1072542,25,1582408289,9781582408290.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2007.0,The Walking Dead V 7,\"The Walking Dead, Vol. 07: The Calm Before\",eng,4.27,16769,17560,584,54,310,2546,6516,8134,https://images.gr-assets.com/books/1289097173l/1085771.jpg,https://images.gr-assets.com/books/1289097173s/1085771.jpg\n7011,291364,291364,561807,21,1844285073,9781844285080.0,H.A. Rey,1952.0,Curious George Rides a Bike,Curious George Rides a Bike,,4.24,15461,15669,115,181,563,2859,3854,8212,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348292189l/291364.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7012,175319,175319,3255858,22,671655973,9780671655980.0,Robert A. Heinlein,1958.0,Methuselah's Children,Methuselah's Children,en-US,3.98,15028,15995,219,130,649,3799,6231,5186,https://images.gr-assets.com/books/1253209003l/175319.jpg,https://images.gr-assets.com/books/1253209003s/175319.jpg\n7013,12663646,12663646,17778132,13,62124366,9780062124360.0,Lauren Oliver,2011.0,Hana,\"Hana (Delirium, #1.5)\",eng,3.63,20107,21357,1886,286,1918,7603,7063,4487,https://images.gr-assets.com/books/1324106918l/12663646.jpg,https://images.gr-assets.com/books/1324106918s/12663646.jpg\n7014,102955,102955,99258,11,1563896176,9781563896170.0,\"Garth Ennis, Steve Dillon, John McCrea\",2000.0,\"Preacher, Volume 8: All Hell's a-Coming\",\"Preacher, Volume 8: All Hell's a-Coming\",eng,4.33,14300,14514,172,160,387,1738,4431,7798,https://images.gr-assets.com/books/1309916812l/102955.jpg,https://images.gr-assets.com/books/1309916812s/102955.jpg\n7015,6356190,6356190,3252850,7,1880418738,9781880418730.0,\"Stephen King, Michael Whelan\",2008.0,The Little Sisters of Eluria,\"The Little Sisters of Eluria (The Dark Tower, #0.5)\",eng,4.24,14287,14401,161,140,431,2336,4454,7040,https://images.gr-assets.com/books/1328794822l/6356190.jpg,https://images.gr-assets.com/books/1328794822s/6356190.jpg\n7016,773480,773480,160884,11,067988632X,9780679886330.0,\"Stan Berenstain, Jan Berenstain\",1968.0,\"Inside, Outside, Upside Down\",\"Inside, Outside, Upside Down (Berenstain Bears Bright and Early Board Book)\",eng,4.13,15032,15184,124,230,744,3161,3680,7369,https://images.gr-assets.com/books/1428895593l/773480.jpg,https://images.gr-assets.com/books/1428895593s/773480.jpg\n7017,6574542,6574542,6767675,38,399156135,9780399156140.0,Robert Crais,2010.0,The First Rule,\"The First Rule (Elvis Cole, #13; Joe Pike, #2)\",en-US,4.2,14169,15610,808,65,279,2426,6481,6359,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442546114l/6574542._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7018,483445,483445,471792,42,042519891X,9780425198920.0,David Colbert,2001.0,\"The Magical Worlds of Harry Potter: A Treasury of Myths, Legends, and Fascinating Facts\",\"The Magical Worlds of Harry Potter: A Treasury of Myths, Legends, and Fascinating Facts\",eng,3.96,13820,15145,267,329,1125,3766,3593,6332,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441546433l/483445.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7019,825377,825377,2919579,23,763619612,9780763619620.0,Peter H. Reynolds,2003.0,The Dot,The Dot,en-US,4.26,17436,17666,1113,529,700,2316,4310,9811,https://images.gr-assets.com/books/1363702319l/825377.jpg,https://images.gr-assets.com/books/1363702319s/825377.jpg\n7020,6407514,6407514,6158856,12,1599901676,9781599901670.0,Shannon Hale,2009.0,Forest Born,\"Forest Born (The Books of Bayern, #4)\",en-US,4.01,20603,21243,2049,156,917,4782,8053,7335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437847914l/6407514._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7021,34605,34605,3059336,43,425188930,9780425188930.0,Clive Barker,1985.0,The Damnation Game,The Damnation Game,eng,3.82,14299,15328,373,290,989,4119,5713,4217,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390447329l/34605.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7022,78728,78728,3424606,85,60002107,9780060002110.0,\"Milan Kundera, Linda Asher\",2000.0,L'ignorance,Ignorance,fre,3.76,9625,12954,846,151,840,3812,5285,2866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385316513l/78728.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7024,2678349,2678349,2703638,31,,,محمد عبد الرحمن العريفي,2006.0,استمتع بحياتك,استمتع بحياتك,ara,4.21,10882,11813,1089,312,546,1622,3240,6093,https://images.gr-assets.com/books/1399206237l/2678349.jpg,https://images.gr-assets.com/books/1399206237s/2678349.jpg\n7026,337116,337116,1806578,57,055329461X,9780553294610.0,\"William Gibson, Bruce Sterling\",1990.0,The Difference Engine,The Difference Engine ,en-US,3.41,14517,16086,910,685,2316,5485,4984,2616,https://images.gr-assets.com/books/1327891675l/337116.jpg,https://images.gr-assets.com/books/1327891675s/337116.jpg\n7027,102954,102954,99257,13,1563895196,9781563895200.0,\"Garth Ennis, Steve Dillon\",1999.0,Preacher: Salvation,\"Preacher, Volume 7: Salvation\",,4.3,13902,14103,192,168,378,1806,4410,7341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348311524l/102954.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7028,13425570,13425570,18907551,32,62102427,9780062102420.0,\"Clayton M. Christensen, James Allworth, Karen Dillon\",2012.0,How Will You Measure Your Life?,How Will You Measure Your Life?,,4.06,11475,13762,1349,228,646,2650,4799,5439,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328046792l/13425570.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7029,11233988,11233988,16160067,27,763655988,9780763655980.0,Jon Klassen,2011.0,I Want My Hat Back,I Want My Hat Back,eng,4.39,18489,18928,2240,283,461,1919,5136,11129,https://images.gr-assets.com/books/1327888784l/11233988.jpg,https://images.gr-assets.com/books/1327888784s/11233988.jpg\n7030,239109,239109,1265950,24,786932287,9780786932280.0,R.A. Salvatore,2003.0,The Lone Drow,\"The Lone Drow (Forgotten Realms: Hunter's Blades, #2; Legend of Drizzt, #15)\",en-US,4.15,12877,13780,135,86,535,2492,4824,5843,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428294158l/239109.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7031,2983489,2983489,3013896,15,670031607,9780670031600.0,Denis Leary,2008.0,\"Why We Suck: A Feel Good Guide to Staying Fat, Loud, Lazy and Stupid\",\"Why We Suck: A Feel Good Guide to Staying Fat, Loud, Lazy and Stupid\",,3.67,12880,13368,901,642,1234,3706,4118,3668,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347584264l/2983489.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7032,61672,61672,1708708,171,2266127748,9782266127740.0,Françoise Sagan,1954.0,Bonjour tristesse,Bonjour tristesse,fre,3.62,12355,17221,1131,396,1639,5547,6110,3529,https://images.gr-assets.com/books/1346107613l/61672.jpg,https://images.gr-assets.com/books/1346107613s/61672.jpg\n7033,25671861,25671861,45495901,25,1466867507,9781466867500.0,Jeffrey Archer,2016.0,Cometh the Hour,\"Cometh the Hour (The Clifton Chronicles, #6)\",eng,4.13,7197,16257,1078,211,546,2593,6464,6443,https://images.gr-assets.com/books/1433791167l/25671861.jpg,https://images.gr-assets.com/books/1433791167s/25671861.jpg\n7034,11469379,11469379,16403657,37,1402792808,9781402792810.0,Corban Addison,2011.0,A Walk Across the Sun,A Walk Across the Sun,en-US,4.13,12091,13556,1779,168,443,2134,5477,5334,https://images.gr-assets.com/books/1328767745l/11469379.jpg,https://images.gr-assets.com/books/1328767745s/11469379.jpg\n7035,1126719,1126719,2020929,30,575099127,9780575099130.0,Alastair Reynolds,2008.0,House of Suns,House of Suns,eng,4.19,13033,14763,767,84,362,2219,6115,5983,https://images.gr-assets.com/books/1447892903l/1126719.jpg,https://images.gr-assets.com/books/1447892903s/1126719.jpg\n7037,391724,391724,15570126,158,1594561753,9781594561760.0,Edgar Allan Poe,1843.0,The Black Cat,The Black Cat,eng,4.07,16132,18899,1028,217,807,3645,6972,7258,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387720896l/391724.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7038,102327,102327,604650,15,886773687,9780886773690.0,John Steakley,1984.0,Armor,Armor,eng,4.12,13330,14170,716,274,682,2358,4618,6238,https://images.gr-assets.com/books/1465894856l/102327.jpg,https://images.gr-assets.com/books/1465894856s/102327.jpg\n7039,19312,19312,2056484,92,1930900244,9781930900240.0,\"Astrid Lindgren, Ilon Wikland, Jill M. Morgan\",1973.0,Bröderna Lejonhjärta,The Brothers Lionheart,eng,4.35,16325,20233,613,211,518,2379,5898,11227,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269738l/19312.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7041,268598,268598,260380,57,749934182,9780749934190.0,\"J.D. Robb, Susan Ericksen\",1999.0,Loyalty in Death,\"Loyalty in Death (In Death, #9)\",en-GB,4.3,19219,22372,690,37,256,3122,8505,10452,https://images.gr-assets.com/books/1458243301l/268598.jpg,https://images.gr-assets.com/books/1458243301s/268598.jpg\n7042,262229,262229,1300476,51,739429337,9780739429330.0,Sue Grafton,2002.0,\"\"\"Q\"\" is for Quarry\",\"Q is for Quarry (Kinsey Millhone, #17)\",eng,3.91,17505,19290,704,106,594,5323,8167,5100,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173232845l/262229.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7044,1373381,1373381,1363261,45,340830107,9780340830110.0,Jojo Moyes,2005.0,The Ship of Brides,The Ship of Brides,en-US,3.74,12821,16875,1863,277,1048,4952,7066,3532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387708487l/1373381.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7045,462684,462684,1951159,50,440867576,9780440867580.0,\"Jacqueline Wilson, Nick Sharratt\",1991.0,The Story of Tracy Beaker,The Story of Tracy Beaker,eng,3.69,14772,15313,382,551,1470,4540,4373,4379,https://images.gr-assets.com/books/1320527485l/462684.jpg,https://images.gr-assets.com/books/1320527485s/462684.jpg\n7046,543103,543103,908023,28,042520040X,9780425200410.0,Evan Wright,2004.0,Generation Kill,\"Generation Kill: Devil Dogs, Iceman, Captain America, and the New Face of American War\",en-US,4.25,11680,13447,747,55,288,1819,5303,5982,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441919496l/543103._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7048,2033217,2033217,2037923,66,399155015,9780399155020.0,Daniel Silva,2008.0,Moscow Rules,\"Moscow Rules (Gabriel Allon, #8)\",eng,4.17,13558,15823,884,69,317,2611,6739,6087,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441892771l/2033217._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7049,25733983,25733983,45572105,27,1101874937,9781101874940.0,Hope Jahren,2016.0,Lab Girl,Lab Girl,eng,4.04,16594,19798,3321,425,900,3506,7585,7382,https://images.gr-assets.com/books/1441826687l/25733983.jpg,https://images.gr-assets.com/books/1441826687s/25733983.jpg\n7050,2157243,2157243,909084,48,61240885,9780061240880.0,Derek Landy,2008.0,Playing with Fire,\"Playing with Fire (Skulduggery Pleasant, #2)\",en-US,4.31,15533,18533,1013,73,338,2536,6358,9228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388710353l/2157243.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7052,130916,130916,126092,38,60598328,9780060598330.0,Patricia Gaffney,1999.0,The Saving Graces,The Saving Graces,en-US,3.78,13969,14327,663,196,840,4437,5283,3571,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348825877l/130916.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7053,272607,272607,14597555,63,440222680,9780440222680.0,Harlan Coben,1996.0,Fade Away,Fade Away (Myron Bolitar #3),eng,3.99,14679,17622,773,59,380,4077,8262,4844,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390230993l/272607.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7054,8948,8948,3214288,43,316156299,9780316156300.0,Darren Shan,2002.0,\"Sons of Destiny (Cirque Du Freak, Book 12)\",\"Sons of Destiny (Cirque Du Freak, #12)\",,4.22,14997,16453,741,345,694,2518,4359,8537,https://images.gr-assets.com/books/1344270002l/8948.jpg,https://images.gr-assets.com/books/1344270002s/8948.jpg\n7055,84927,84927,1265060,25,60935499,9780060935500.0,Peter Shaffer,1979.0,Amadeus,Amadeus,eng,4.2,14285,14528,193,186,448,2359,4869,6666,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388269687l/84927.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7056,62485,62485,64669,17,078691811X,9780786918120.0,R.A. Salvatore,2000.0,\"The Icewind Dale Trilogy Collector's Edition (Forgotten Realms: Icewind Dale, #1-3)\",\"The Icewind Dale Trilogy Collector's Edition (Forgotten Realms: Icewind Dale, #1-3; Legend of Drizzt, #4-6)\",en-US,4.28,11293,12741,213,76,368,1857,4102,6338,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442601703l/62485._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7057,12753231,12753231,17894351,30,312569033,9780312569040.0,Emmy Laybourne,2012.0,Monument 14,\"Monument 14 (Monument 14, #1)\",eng,3.89,17360,18739,2649,463,1196,4256,6796,6028,https://images.gr-assets.com/books/1337779838l/12753231.jpg,https://images.gr-assets.com/books/1337779838s/12753231.jpg\n7058,251964,251964,766654,18,60727217,9780060727220.0,Jude Deveraux,1980.0,The Black Lyon,\"The Black Lyon (Montgomery/Taggert, #1)\",eng,3.99,14456,15837,329,380,847,3437,5036,6137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924537l/251964.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7059,12542,12542,1057710,16,1594489424,9781594489430.0,Anne Lamott,2007.0,Grace [Eventually]: Thoughts on Faith,Grace (Eventually): Thoughts on Faith,en-US,3.98,12863,13561,1053,215,636,2927,5235,4548,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442888834l/12542._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7060,335459,335459,325931,3,307354164,9780307354170.0,Martha Stewart,2007.0,Everyday Food: Great Food Fast,Everyday Food: Great Food Fast,eng,3.93,11969,11973,145,394,752,2625,3689,4513,https://images.gr-assets.com/books/1320479731l/335459.jpg,https://images.gr-assets.com/books/1320479731s/335459.jpg\n7061,17831617,17831617,24948174,20,,,Christina Lauren,2013.0,Beautiful Bombshell,\"Beautiful Bombshell (Beautiful Bastard, #2.5)\",en-US,4.06,23755,24452,1185,232,1103,4985,8767,9365,https://images.gr-assets.com/books/1373436923l/17831617.jpg,https://images.gr-assets.com/books/1373436923s/17831617.jpg\n7062,12743472,12743472,17882885,27,1408319462,9781408319470.0,Teri Terry,2012.0,Slated,\"Slated (Slated, #1)\",eng,4.07,17404,19805,2404,272,868,3661,7489,7515,https://images.gr-assets.com/books/1453582609l/12743472.jpg,https://images.gr-assets.com/books/1453582609s/12743472.jpg\n7063,1398034,1398034,1881100,41,9799731232,9789799731230.0,Pramoedya Ananta Toer,1975.0,Bumi Manusia,Bumi Manusia,ind,4.37,8574,10499,1190,126,204,1067,3320,5782,https://images.gr-assets.com/books/1464891625l/1398034.jpg,https://images.gr-assets.com/books/1464891625s/1398034.jpg\n7064,108385,108385,3019372,37,843958448,9780843958450.0,Christine Feehan,2000.0,Dark Gold (Dark #3),\"Dark Gold (Dark, #3)\",eng,4.16,19210,20961,562,193,888,3795,6555,9530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185122l/108385.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7065,5957702,5957702,6130410,54,743294394,9780743294390.0,Kathy Reichs,2009.0,206 Bones,\"206 Bones (Temperance Brennan, #12)\",en-US,3.92,17160,19519,1126,177,810,5006,7889,5637,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441798279l/5957702._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7066,6076387,6076387,6252965,38,375409289,9780375409290.0,Lorrie Moore,2009.0,A Gate at the Stairs,A Gate at the Stairs,eng,3.14,13590,15214,3050,1135,2946,5374,4165,1594,https://images.gr-assets.com/books/1327909646l/6076387.jpg,https://images.gr-assets.com/books/1327909646s/6076387.jpg\n7067,8593026,25070022,111166,9,,,Rebecca Forster,2004.0,Hostile Witness,\"Hostile Witness (Witness Series, #1)\",eng,3.72,8031,14749,1265,399,1039,4283,5605,3423,https://images.gr-assets.com/books/1334706916l/8593026.jpg,https://images.gr-assets.com/books/1334706916s/8593026.jpg\n7068,929782,929782,1702482,398,140187723,9780140187720.0,\"Jack London, Andrew Sinclair\",1909.0,Martin Eden,Martin Eden,eng,4.39,12744,14933,741,134,398,1627,4159,8615,https://images.gr-assets.com/books/1344411175l/929782.jpg,https://images.gr-assets.com/books/1344411175s/929782.jpg\n7069,68455,68455,66349,63,8370541240,9788370541250.0,Andrzej Sapkowski,1997.0,Wieża Jaskółki,\"Wieża Jaskółki (Saga o Wiedźminie, #6)\",pol,4.34,10195,16630,400,73,347,1955,5744,8511,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208555920l/68455.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7070,1632833,1632833,2795082,55,385339526,9780385339520.0,Conn Iggulden,2008.0,\"Lords of the Bow (Conqueror, #2)\",\"Genghis: Lords of the Bow (Conqueror, #2)\",eng,4.31,11600,13612,529,26,181,1555,5589,6261,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388213209l/1632833.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7072,13227319,13227319,18841564,15,1401235638,9781401235640.0,\"Brian Azzarello, Cliff Chiang, Tony Akins, Dan Green, Matthew Wilson, Jared K. Fletcher\",2012.0,\"Wonder Woman, Volume 1: Blood\",\"Wonder Woman, Volume 1: Blood\",eng,3.87,15698,16945,921,622,1095,3896,5589,5743,https://images.gr-assets.com/books/1336978265l/13227319.jpg,https://images.gr-assets.com/books/1336978265s/13227319.jpg\n7073,20348781,20348781,28402852,19,,9780692221910.0,Brittainy C. Cherry,2014.0,Loving Mr. Daniels,Loving Mr. Daniels,eng,4.28,18058,21909,3106,372,805,2733,6420,11579,https://images.gr-assets.com/books/1392378701l/20348781.jpg,https://images.gr-assets.com/books/1392378701s/20348781.jpg\n7074,13020,13020,3335240,401,1904271359,9781904271350.0,\"William Shakespeare, David Scott Kastan\",1597.0,The History of Henry the Fourth,\"King Henry IV, Part 1 (Wars of the Roses, #2)\",eng,3.81,14988,18748,685,331,1437,5048,6531,5401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347520897l/13020.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7075,159061,159061,153526,8,316236535,9780316236540.0,Ed Emberley,1992.0,\"Go Away, Big Green Monster!\",\"Go Away, Big Green Monster!\",eng,4.21,14322,14417,437,236,633,2440,3711,7397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1541359994l/159061._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7076,6606855,6606855,6800778,15,1427817413,9781427817420.0,\"Jinsei Kataoka, Kazuma Kondou\",2007.0,デッドマン・ワンダーランド 1,\"Deadman Wonderland, Volume 1 (Deadman Wonderland, #1)\",eng,4.2,12932,13675,307,240,587,2204,3826,6818,https://images.gr-assets.com/books/1446490168l/6606855.jpg,https://images.gr-assets.com/books/1446490168s/6606855.jpg\n7077,15096257,15096257,20751151,13,1612184650,9781612184650.0,Linda Lafferty,2012.0,The Bloodletter's Daughter: A Novel of Old Bohemia,The Bloodletter's Daughter: A Novel of Old Bohemia,eng,3.75,7654,13269,1185,304,951,3620,5308,3086,https://images.gr-assets.com/books/1355074644l/15096257.jpg,https://images.gr-assets.com/books/1355074644s/15096257.jpg\n7079,11666,11666,2580165,47,449911942,9780449911940.0,John Updike,1990.0,Rabbit at Rest,Rabbit at Rest (Rabbit Angstrom #4),eng,3.96,12221,12685,406,348,716,2490,4642,4489,https://images.gr-assets.com/books/1320394471l/11666.jpg,https://images.gr-assets.com/books/1320394471s/11666.jpg\n7080,32426,32426,3375850,53,553582909,9780553582900.0,\"David Axton, Dean Koontz\",1976.0,Prison of Ice ,Icebound,eng,3.73,15271,16024,376,361,1328,4987,5007,4341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388203375l/32426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7081,519933,519933,1003876,48,688163653,9780688163660.0,Diana Wynne Jones,1988.0,The Lives of Christopher Chant,\"The Lives of Christopher Chant (Chrestomanci, #2)\",,4.22,17117,18344,428,147,400,2924,6625,8248,https://images.gr-assets.com/books/1356549015l/519933.jpg,https://images.gr-assets.com/books/1356549015s/519933.jpg\n7082,382450,382450,2564105,63,553383051,9780553383060.0,George R.R. Martin,1982.0,Fevre Dream,Fevre Dream,eng,3.85,12708,16199,1561,224,906,4083,6919,4067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197708l/382450.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7083,819667,819667,1215900,14,803725507,9780803725510.0,\"Caralyn Buehner, Mark Buehner\",2002.0,Snowmen at Night,Snowmen at Night,en-US,4.23,15697,15854,408,170,554,2706,4494,7930,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439255395l/819667._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7084,25802884,25802884,45656922,6,,,Alessandra Torre,2015.0,Hollywood Dirt,\"Hollywood Dirt (Hollywood Dirt, #1)\",eng,4.12,20467,22104,2538,346,829,3635,8343,8951,https://images.gr-assets.com/books/1439214601l/25802884.jpg,https://images.gr-assets.com/books/1439214601s/25802884.jpg\n7085,15769463,23016364,21476322,14,1478314605,9781478314610.0,Tara Sivec,2012.0,Futures and Frosting,\"Futures and Frosting (Chocolate Lovers, #2)\",eng,4.28,16341,22833,1815,255,616,2964,7587,11411,https://images.gr-assets.com/books/1344367548l/15769463.jpg,https://images.gr-assets.com/books/1344367548s/15769463.jpg\n7087,18054175,22328544,25337922,47,006228553X,9780062285540.0,Matthew Quick,2014.0,The Good Luck of Right Now,The Good Luck of Right Now,eng,3.61,12230,14725,2320,444,1270,4595,5740,2676,https://images.gr-assets.com/books/1370898422l/18054175.jpg,https://images.gr-assets.com/books/1370898422s/18054175.jpg\n7088,1605034,1605034,1598345,45,375424482,9780375424490.0,Alexander McCall Smith,2008.0,The Miracle at Speedy Motors ,\"The Miracle at Speedy Motors (No.1 Ladies' Detective Agency, #9)\",en-US,4.09,16887,18599,1200,33,316,3657,8582,6011,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438086011l/1605034._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7089,3759,3759,983949,131,142002046,9780142002050.0,Ian Fleming,1959.0,Goldfinger,\"Goldfinger (James Bond, #7)\",eng,3.8,13267,15321,689,151,810,4545,6213,3602,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433975399l/3759._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7090,371456,371456,89633,181,3746611091,9783746611100.0,Émile Zola,1880.0,Nana,\"Nana (Les Rougon-Macquart, #9)\",ger,3.84,13610,15562,424,370,1065,3847,5749,4531,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174236758l/371456.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7091,12988089,12988089,17498555,15,1442454148,9781442454150.0,Richard Paul Evans,2012.0,Rise of the Elgen,\"Rise of the Elgen (Michael Vey, #2)\",eng,4.29,15152,16060,1473,112,378,2190,5428,7952,https://images.gr-assets.com/books/1332381957l/12988089.jpg,https://images.gr-assets.com/books/1332381957s/12988089.jpg\n7092,103035,103035,530471,45,743417321,9780743417330.0,Clive Barker,1988.0,Cabal,Cabal,en-US,3.92,13557,15140,374,189,698,3823,5780,4650,https://images.gr-assets.com/books/1405259936l/103035.jpg,https://images.gr-assets.com/books/1405259936s/103035.jpg\n7093,347143,347143,2299471,32,307356361,9780307356370.0,Tom Perrotta,2007.0,The Abstinence Teacher,The Abstinence Teacher,,3.24,13303,14980,2254,621,2372,6020,4768,1199,https://images.gr-assets.com/books/1320459201l/347143.jpg,https://images.gr-assets.com/books/1320459201s/347143.jpg\n7094,30314465,29467945,49744435,29,,,David Baldacci,2016.0,No Man's Land,\"No Man's Land (John Puller, #4)\",eng,4.19,8834,19699,1301,180,526,2964,7745,8284,https://images.gr-assets.com/books/1469561999l/30314465.jpg,https://images.gr-assets.com/books/1469561999s/30314465.jpg\n7095,144127,144127,139049,32,812541626,9780812541620.0,David Farland,1998.0,The Sum of All Men,The Runelords (Runelords #1),en-US,3.74,14938,15694,411,389,1271,4295,5826,3913,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196460l/144127.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7096,17329041,17329041,21999016,30,241963745,9780241963750.0,Suzanne Rindell,2013.0,The Other Typist,The Other Typist,en-GB,3.55,7107,14844,2515,411,1484,4764,5870,2315,https://images.gr-assets.com/books/1385399311l/17329041.jpg,https://images.gr-assets.com/books/1385399311s/17329041.jpg\n7098,35125,35125,35062,45,2290011150,9782290011160.0,Alan Dean Foster,1979.0,Alien,Alien,eng,4.08,13669,14259,272,178,576,2908,4859,5738,https://images.gr-assets.com/books/1332019229l/35125.jpg,https://images.gr-assets.com/books/1332019229s/35125.jpg\n7099,8805443,8805443,13088275,40,399157077,9780399157070.0,Robert Crais,2011.0,The Sentry,\"The Sentry (Elvis Cole, #14; Joe Pike, #3)\",eng,4.2,14248,15561,837,79,314,2351,6471,6346,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438489020l/8805443._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7100,13111733,18338465,18285292,14,1456527738,9781456527730.0,J.M. Darhower,2014.0,Sempre,\"Sempre (Sempre, #1)\",eng,4.21,14217,23525,2491,662,1036,3140,6659,12028,https://images.gr-assets.com/books/1340797919l/13111733.jpg,https://images.gr-assets.com/books/1340797919s/13111733.jpg\n7101,17333171,17333171,24064353,16,042527067X,9780425270680.0,Ilona Andrews,2015.0,Magic Shifts,\"Magic Shifts (Kate Daniels, #8)\",eng,4.47,16363,20829,1808,41,156,1727,6946,11959,https://images.gr-assets.com/books/1414091260l/17333171.jpg,https://images.gr-assets.com/books/1414091260s/17333171.jpg\n7102,961833,961833,1916770,36,553573764,9780553573760.0,Susanna Kearsley,1994.0,Mariana,Mariana,,4.06,13572,17781,1947,143,615,3465,7317,6241,https://images.gr-assets.com/books/1330496361l/961833.jpg,https://images.gr-assets.com/books/1330496361s/961833.jpg\n7103,6678,6678,1413831,68,141311428,9780141311420.0,\"Roald Dahl, Quentin Blake\",1986.0,Going Solo,Going Solo,eng,4.04,14086,16071,986,146,656,3345,6185,5739,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391620175l/6678.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7104,517344,517344,505277,34,786838825,9780786838820.0,\"Sara Pennypacker, Marla Frazee\",2006.0,\"Clementine (Clementine, #1)\",\"Clementine (Clementine, #1)\",en-US,3.9,15584,16189,1602,501,1126,3690,5098,5774,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441718778l/517344._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7105,8752885,8752885,13626110,23,1841498874,9781841498870.0,Daniel Abraham,2011.0,The Dragon's Path,\"The Dragon's Path (The Dagger and the Coin, #1)\",eng,3.78,13508,15494,1117,311,893,4059,6860,3371,https://images.gr-assets.com/books/1292362307l/8752885.jpg,https://images.gr-assets.com/books/1292362307s/8752885.jpg\n7106,402128,402128,372536,89,151686564,9780151686570.0,\"T.S. Eliot, Edward Gorey\",1939.0,Old Possum's Book of Practical Cats,Old Possum's Book of Practical Cats,en-US,4.09,15410,17494,852,256,785,3349,5873,7231,https://images.gr-assets.com/books/1327882662l/402128.jpg,https://images.gr-assets.com/books/1327882662s/402128.jpg\n7107,25106926,25106926,44759727,28,1471132978,9781471132970.0,Philippa Gregory,2015.0,The Taming of the Queen,\"The Taming of the Queen (The Plantagenet and Tudor Novels, #11)\",eng,3.89,9793,15631,1538,192,738,3824,6690,4187,https://images.gr-assets.com/books/1433348581l/25106926.jpg,https://images.gr-assets.com/books/1433348581s/25106926.jpg\n7109,39792,39792,1323052,92,1565849930,9781565849940.0,\"Henning Mankell, Laurie Thompson\",1994.0,Mannen som log,\"The Man Who Smiled (Kurt Wallander, #4)\",eng,3.93,12545,15130,661,128,522,3614,6932,3934,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265770l/39792.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7110,16012,16012,17803,11,1931514607,9781931514610.0,Ai Yazawa,2000.0,Paradise Kiss 1,\"Paradise Kiss, Vol. 1 (Paradise Kiss, #1)\",eng,4.11,14065,14196,191,423,791,2447,3672,6863,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293641l/16012.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7111,4485966,4485966,4642546,33,1591842247,9781591842250.0,Geoff Colvin,2008.0,Talent Is Overrated: What Really Separates World-Class Performers from Everybody Else,Talent is Overrated: What Really Separates World-Class Performers from Everybody Else,en-US,3.96,12511,13454,816,201,656,3024,5118,4455,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440778775l/4485966._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7112,3122173,3122173,3153516,20,312947062,9780312947060.0,Sherrilyn Kenyon,2008.0,One Silent Night,One Silent Night (Dark-Hunter #15),eng,4.13,21869,23318,750,183,994,4558,7546,10037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404685592l/3122173.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7113,61906,61906,2792,45,743468406,9780743468400.0,Lois McMaster Bujold,1986.0,The Warrior's Apprentice,\"The Warrior's Apprentice (Vorkosigan Saga, #2)\",eng,4.29,15782,17960,914,48,302,2284,7012,8314,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170597854l/61906._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7114,2501453,2501453,2508818,3,,9789953890590.0,\"أحلام مستغانمي, Ahlam Mosteghanemi\",2003.0,عابر سرير,عابر سرير,ara,3.64,11783,11856,712,625,1281,3241,3294,3415,https://images.gr-assets.com/books/1291848845l/2501453.jpg,https://images.gr-assets.com/books/1291848845s/2501453.jpg\n7115,62103,62103,60356,6,805017224,9780805017230.0,\"George C. Perry, Clive Barda, Jane Rice, Andrew Lloyd Webber\",1987.0,The Complete Phantom of the Opera,The Complete Phantom of the Opera,eng,4.29,13681,13752,58,199,456,1923,3728,7446,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440130005l/62103._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7116,295834,295834,581426,30,810993236,9780810993240.0,\"Michael Buckley, Peter Ferguson\",2005.0,The Unusual Suspects,\"The Unusual Suspects (The Sisters Grimm, #2)\",en-US,4.22,17793,18509,853,131,446,3074,6344,8514,https://images.gr-assets.com/books/1276514128l/295834.jpg,https://images.gr-assets.com/books/1276514128s/295834.jpg\n7117,174845,174845,168889,42,60608528,9780060608520.0,Dietrich Bonhoeffer,1939.0,Gemeinsames Leben,Life Together: The Classic Exploration of Christian Community,,4.29,12811,14093,716,163,323,1876,4640,7091,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525219497l/174845._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7118,228992,228992,3082278,33,345418484,9780345418490.0,Stephen R. Donaldson,1983.0,The White Gold Wielder,\"White Gold Wielder (The Second Chronicles of Thomas Covenant, #3)\",eng,4.01,14117,15569,143,259,711,3255,5757,5587,https://images.gr-assets.com/books/1329385743l/228992.jpg,https://images.gr-assets.com/books/1329385743s/228992.jpg\n7119,203288,203288,2522719,35,345334310,9780345334310.0,Anne McCaffrey,1969.0,The Ship Who Sang,\"The Ship Who Sang (Brainship, #1)\",en-US,4.0,18613,19183,337,173,902,4587,6687,6834,https://images.gr-assets.com/books/1355931323l/203288.jpg,https://images.gr-assets.com/books/1355931323s/203288.jpg\n7120,23168817,23168817,42713958,28,076537708X,9780765377080.0,\"Liu Cixin, Joel Martinsen\",2008.0,黑暗森林,\"The Dark Forest (Remembrance of Earth’s Past, #2)\",eng,4.38,12476,16560,1669,82,347,1664,5617,8850,https://images.gr-assets.com/books/1412064931l/23168817.jpg,https://images.gr-assets.com/books/1412064931s/23168817.jpg\n7121,11806716,11806716,13465100,25,1841499005,9781841499000.0,Mira Grant,2012.0,Blackout,\"Blackout (Newsflesh Trilogy, #3)\",eng,4.11,14819,16807,1621,234,712,2803,6256,6802,https://images.gr-assets.com/books/1317680509l/11806716.jpg,https://images.gr-assets.com/books/1317680509s/11806716.jpg\n7122,9489502,9489502,14374946,48,1455500135,9781455500130.0,\"Douglas Preston, Lincoln Child\",2011.0,Cold Vengance,\"Cold Vengeance (Pendergast, #11)\",,4.09,13230,16767,1222,88,495,3207,7071,5906,https://images.gr-assets.com/books/1344264848l/9489502.jpg,https://images.gr-assets.com/books/1344264848s/9489502.jpg\n7123,32443,32443,2200679,52,425153975,9780425153970.0,\"Leigh Nichols, Dean Koontz\",1981.0,The Eyes of Darkness,The Eyes of Darkness,eng,3.85,14002,14761,296,153,789,4451,5099,4269,https://images.gr-assets.com/books/1328218196l/32443.jpg,https://images.gr-assets.com/books/1328218196s/32443.jpg\n7124,47957,47957,2510727,22,451456726,9780451456720.0,Anne Bishop,1999.0,Heir to the Shadows,\"Heir to the Shadows (The Black Jewels, #2)\",en-US,4.33,18541,20479,556,207,563,2571,6074,11064,https://images.gr-assets.com/books/1325423413l/47957.jpg,https://images.gr-assets.com/books/1325423413s/47957.jpg\n7126,84844,84844,4648325,45,752815393,9780752815400.0,Tami Hoag,1996.0,Guilty as Sin (Deer Lake #2),\"Guilty as Sin  (Deer Lake, #2)\",eng,4.1,13575,14540,284,86,374,2979,5613,5488,https://images.gr-assets.com/books/1340516937l/84844.jpg,https://images.gr-assets.com/books/1340516937s/84844.jpg\n7127,153007,153007,39896,19,044661002X,9780446610020.0,Jacqueline Carey,2006.0,Kushiel's Scion,\"Kushiel's Scion (Imriel's Trilogy, #1)\",en-GB,4.19,16358,17564,539,111,553,2963,6277,7660,https://images.gr-assets.com/books/1344265086l/153007.jpg,https://images.gr-assets.com/books/1344265086s/153007.jpg\n7128,89185,89185,2926628,36,441010644,9780441010650.0,Alastair Reynolds,2001.0,Chasm City,Chasm City,eng,4.12,13802,15124,599,80,421,2621,6448,5554,https://images.gr-assets.com/books/1309203334l/89185.jpg,https://images.gr-assets.com/books/1309203334s/89185.jpg\n7129,6791212,6791212,6995232,38,230744273,9780230744270.0,Martin Sixsmith,2009.0,\"The Lost Child of Philomena Lee: A Mother, Her Son And A Fifty Year Search\",\"The Lost Child of Philomena Lee: A Mother, Her Son and a 50 Year Search\",eng,3.65,7261,12619,1583,659,1226,3265,4203,3266,https://images.gr-assets.com/books/1338612242l/6791212.jpg,https://images.gr-assets.com/books/1338612242s/6791212.jpg\n7130,438024,438024,379247,27,545010306,9780545010310.0,Jim Benton,2004.0,Let's Pretend This Never Happened (Dear Dumb Diary #1),Let's Pretend This Never Happened (Dear Dumb Diary #1),,3.98,13347,14089,592,583,1041,2806,3342,6317,https://images.gr-assets.com/books/1328861650l/438024.jpg,https://images.gr-assets.com/books/1328861650s/438024.jpg\n7131,1432370,1432370,1422905,34,786868910,9780786868920.0,Liz Murray,2010.0,\"Breaking Night: A Memoir of Forgiveness, Survival, and My Journey from Homeless to Harvard\",\"Breaking Night: A Memoir of Forgiveness, Survival, and My Journey from Homeless to Harvard\",en-US,4.19,12664,14186,1952,146,369,2065,5600,6006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442723929l/1432370._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7132,8315872,8315872,13165093,36,399157034,9780399157040.0,\"J.D. Robb, Nora Roberts\",2011.0,Treachery in Death,\"Treachery in Death (In Death, #32)\",en-US,4.43,17289,19938,1093,52,202,2023,6550,11111,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440092413l/8315872._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7133,17797253,17797253,24969951,22,345516532,9780345516530.0,Nancy Horan,2014.0,Under the Wide and Starry Sky,Under the Wide and Starry Sky,eng,3.57,12105,14189,2512,333,1433,4648,5343,2432,https://images.gr-assets.com/books/1367256646l/17797253.jpg,https://images.gr-assets.com/books/1367256646s/17797253.jpg\n7134,13070346,13070346,18236513,10,,,Quinn Loftis,2011.0,Blood Rites ,\"Blood Rites (The Grey Wolves, #2)\",eng,4.41,16421,18435,851,169,399,2032,4853,10982,https://images.gr-assets.com/books/1321501581l/13070346.jpg,https://images.gr-assets.com/books/1321501581s/13070346.jpg\n7135,11908,11908,2453177,75,143039571,9780143039570.0,\"Saul Bellow, Christopher Hitchens\",1953.0,The Adventures of Augie March,The Adventures of Augie March,,3.84,12830,13746,824,421,1076,3112,4741,4396,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388270246l/11908.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7136,18221931,18221931,25655088,7,,,Tijan,2013.0,Carter Reed,\"Carter Reed (Carter Reed, #1)\",eng,4.03,26670,26764,2325,675,1531,4739,9147,10672,https://images.gr-assets.com/books/1376139745l/18221931.jpg,https://images.gr-assets.com/books/1376139745s/18221931.jpg\n7137,47345,47345,813560,58,743225082,9780743225080.0,Tony Parsons,1999.0,Man and Boy,\"Man and Boy (Harry Silver, #1)\",eng,3.55,11603,13042,527,357,1256,4543,4643,2243,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388877591l/47345.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7138,10115,10115,12852,30,330353829,9780330353820.0,Margaret George,1997.0,The Memoirs of Cleopatra,The Memoirs of Cleopatra,eng,4.17,14235,16088,1045,234,591,2596,5424,7243,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388502841l/10115.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7139,10503124,10503124,15408919,48,345505514,9780345505510.0,Steve Berry,2011.0,The Jefferson Key,\"The Jefferson Key (Cotton Malone, #7)\",en-US,3.88,13472,15574,1138,207,819,3965,6250,4333,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433168156l/10503124._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7140,18339630,18339630,25892986,26,345808002,9780345808000.0,Miriam Toews,2014.0,All My Puny Sorrows,All My Puny Sorrows,eng,3.93,11602,13834,1981,280,894,2772,5425,4463,https://images.gr-assets.com/books/1416181263l/18339630.jpg,https://images.gr-assets.com/books/1416181263s/18339630.jpg\n7141,18339743,18339743,25893105,4,804138567,9780804138570.0,Miranda Beverly-Whittemore,2014.0,Bittersweet,Bittersweet,eng,3.44,11544,13835,1677,634,1651,4614,4839,2097,https://images.gr-assets.com/books/1404476771l/18339743.jpg,https://images.gr-assets.com/books/1404476771s/18339743.jpg\n7142,513367,513367,96418,34,553341030,9780553342540.0,John Gribbin,1984.0,In Search of Schrödinger's Cat : Quantum Physics And Reality,In Search of Schrödinger's Cat: Quantum Physics and Reality,eng,4.0,12399,13369,335,173,559,2914,5159,4564,https://images.gr-assets.com/books/1440464162l/513367.jpg,https://images.gr-assets.com/books/1440464162s/513367.jpg\n7143,62571,62571,3354329,37,765357054,9780765357050.0,F. Paul Wilson,1981.0,The Keep ,\"The Keep (Adversary Cycle, #1)\",en-US,3.98,13211,14610,531,219,721,3306,5180,5184,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925088l/62571.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7146,164323,164323,2888612,48,553383663,9780553383670.0,David A. Vise,2006.0,\"The Google Story: Inside the Hottest Business, Media, and Technology Success of Our Time\",\"The Google Story: Inside the Hottest Business, Media, and Technology Success of Our Time\",,3.81,11158,11814,471,239,705,3257,4429,3184,https://images.gr-assets.com/books/1320394284l/164323.jpg,https://images.gr-assets.com/books/1320394284s/164323.jpg\n7147,3344411,3344411,1481990,86,1933633638,9781933633630.0,\"Hans Fallada, Michael Hofmann, Geoff Wilkes\",1947.0,Jeder stirbt für sich allein,Every Man Dies Alone,eng,4.21,6838,15445,2062,138,456,2110,6003,6738,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391275409l/3344411.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7148,24934065,24934065,44589645,33,698410424,9780698410430.0,Alwyn Hamilton,2016.0,Rebel of the Sands,\"Rebel of the Sands (Rebel of the Sands, #1)\",eng,3.96,16789,23329,4449,358,1143,4732,10038,7058,https://images.gr-assets.com/books/1446829335l/24934065.jpg,https://images.gr-assets.com/books/1446829335s/24934065.jpg\n7149,21618,21618,94590,34,441005667,9780441005670.0,Joe Haldeman,1997.0,Forever Peace ,\"Forever Peace (The Forever War, #2)\",en-US,3.73,14124,14669,365,258,1079,4369,5569,3394,https://images.gr-assets.com/books/1267317517l/21618.jpg,https://images.gr-assets.com/books/1267317517s/21618.jpg\n7150,762064,762064,1899207,50,425178579,9780425178580.0,\"J.D. Robb, Nora Roberts\",2001.0,Betrayal in Death,\"Betrayal in Death (In Death, #12)\",eng,4.31,19215,21430,594,45,238,2908,8085,10154,https://images.gr-assets.com/books/1388255545l/762064.jpg,https://images.gr-assets.com/books/1388255545s/762064.jpg\n7151,123632,123632,1715933,55,440351839,9780440351830.0,\"C.G. Jung, Joseph L. Henderson, Aniela Jaffé, Jolande Jacobi, John Freeman, Marie-Louise von Franz\",1964.0,Man and His Symbols,Man and His Symbols,eng,4.18,12463,13625,426,146,453,2237,4787,6002,https://images.gr-assets.com/books/1327336291l/123632.jpg,https://images.gr-assets.com/books/1327336291s/123632.jpg\n7152,625554,20178265,611921,8,159038363X,9781590383640.0,Gerald N. Lund,1994.0,\"The Work and the Glory, Vol. 1: Pillar of Light\",\"Pillar of Light (The Work and the Glory, #1)\",,4.28,12722,14255,894,117,337,1951,4949,6901,https://images.gr-assets.com/books/1416338631l/625554.jpg,https://images.gr-assets.com/books/1416338631s/625554.jpg\n7153,7955881,7955881,11645576,16,545208858,9780545208860.0,Kazu Kibuishi,2010.0,Amulet: Book Three: The Cloud Searchers,\"The Cloud Searchers (Amulet, #3)\",eng,4.36,15936,16272,934,91,297,2085,5056,8743,https://images.gr-assets.com/books/1422028852l/7955881.jpg,https://images.gr-assets.com/books/1422028852s/7955881.jpg\n7154,27276262,27276262,45476016,30,1501126229,9781501126220.0,Steven  Rowley,2016.0,Lily and the Octopus,Lily and the Octopus,eng,3.74,13667,16201,3346,509,1379,4153,5885,4275,https://images.gr-assets.com/books/1499086357l/27276262.jpg,https://images.gr-assets.com/books/1499086357s/27276262.jpg\n7155,3447,3447,1144054,29,061870986X,9780618709860.0,Tim O'Brien,1994.0,In the Lake of the Woods,In the Lake of the Woods,eng,3.78,12441,13658,1156,292,1011,3584,5352,3419,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447688l/3447.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7156,6264710,6264710,6447962,45,312949820,9780312949820.0,\"Lisa Kleypas, Rosalyn Landor\",2009.0,Tempt Me at Twilight,\"Tempt Me at Twilight (The Hathaways, #3)\",eng,4.18,23125,25056,1295,130,566,4230,9940,10190,https://images.gr-assets.com/books/1380326419l/6264710.jpg,https://images.gr-assets.com/books/1380326419s/6264710.jpg\n7157,12677913,12677913,16766265,31,1402798431,9781402798440.0,Colleen Houck,2012.0,Tiger's Destiny,\"Tiger's Destiny (The Tiger Saga, #4)\",eng,4.41,18503,19385,2057,287,589,1994,4526,11989,https://images.gr-assets.com/books/1340738756l/12677913.jpg,https://images.gr-assets.com/books/1340738756s/12677913.jpg\n7158,372385,372385,14597614,51,440222702,9780440222700.0,Harlan Coben,1997.0,Back Spin,Back Spin (Myron Bolitar #4),eng,3.96,14333,17019,741,75,477,4064,7776,4627,https://images.gr-assets.com/books/1431404184l/372385.jpg,https://images.gr-assets.com/books/1431404184s/372385.jpg\n7159,73100,73100,1088958,46,380808080,,Susan Elizabeth Phillips,2000.0,This Heart of Mine,\"This Heart of Mine (Chicago Stars, #5)\",eng,4.12,21976,23916,969,283,814,4336,8808,9675,https://images.gr-assets.com/books/1391625031l/73100.jpg,https://images.gr-assets.com/books/1391625031s/73100.jpg\n7160,13605727,13605727,19200600,14,1937053415,9781937053410.0,Jennifer L. Armentrout,2012.0,Elixir,\"Elixir (Covenant, #3.5)\",,4.41,21974,23481,1561,137,433,2606,6822,13483,https://images.gr-assets.com/books/1336124504l/13605727.jpg,https://images.gr-assets.com/books/1336124504s/13605727.jpg\n7161,17452179,17452179,24339901,47,571297889,9780571297890.0,Louise Doughty,2013.0,Apple Tree Yard,Apple Tree Yard,eng,3.71,10082,15670,1588,520,1323,4134,5852,3841,https://images.gr-assets.com/books/1371030400l/17452179.jpg,https://images.gr-assets.com/books/1371030400s/17452179.jpg\n7162,136642,136642,6909481,53,2841873900,9782841873910.0,\"Douglas Preston, Lincoln Child\",2000.0,The Ice Limit,The Ice Limit (Ice Limit #1),fre,3.97,12250,15065,563,125,649,3626,5780,4885,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172082459l/136642.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7165,389827,389827,379443,23,764200119,9780764200110.0,Janette Oke,1983.0,When Calls the Heart,\"When Calls the Heart (Canadian West, #1)\",en-US,4.19,13609,15495,708,163,578,2648,4802,7304,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347248405l/389827.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7167,133241,133241,3734,60,671870114,9780671870120.0,Julie Garwood,1993.0,Saving Grace,Saving Grace,eng,4.25,19061,20493,632,109,531,3261,6836,9756,https://images.gr-assets.com/books/1304789462l/133241.jpg,https://images.gr-assets.com/books/1304789462s/133241.jpg\n7168,7198269,7198269,7178698,47,312605382,9780312605380.0,Lisa Kleypas,2010.0,Married By Morning,\"Married By Morning (The Hathaways, #4)\",eng,4.14,22830,24614,1304,159,698,4458,9596,9703,https://images.gr-assets.com/books/1380326600l/7198269.jpg,https://images.gr-assets.com/books/1380326600s/7198269.jpg\n7169,30593,30593,1153252,90,1400041988,9781400041980.0,\"Vladimir Nabokov, David Lodge\",1953.0,Pnin,Pnin,eng,3.9,11538,14007,986,160,767,3348,5798,3934,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434737531l/30593._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7170,76661,76661,891282,17,345322231,9780345322230.0,Piers Anthony,1987.0,\"Being a Green Mother (Incarnations of Immortality, #5)\",\"Being a Green Mother (Incarnations of Immortality, #5)\",en-GB,3.95,15569,15986,197,158,851,4028,5591,5358,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388334575l/76661.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7171,3334563,3334563,6874450,20,1905294964,9781905294960.0,Cornelia Funke,1990.0,Inkheart,\"The Inkheart Trilogy: Inkheart, Inkspell, Inkdeath (Inkworld, #1-3)\",eng,4.17,14014,15215,452,279,631,2516,4572,7217,https://images.gr-assets.com/books/1346484626l/3334563.jpg,https://images.gr-assets.com/books/1346484626s/3334563.jpg\n7172,537094,537094,13183177,163,1419176528,9781419176520.0,Nikolai Gogol,1842.0,Шинель,The Overcoat,,4.12,12091,16469,1073,134,558,2980,6382,6415,https://images.gr-assets.com/books/1448040003l/537094.jpg,https://images.gr-assets.com/books/1448040003s/537094.jpg\n7173,102030,102030,347050,52,4770019572,9784770019580.0,\"Eiji Yoshikawa, Charles Terry, Edwin O. Reischauer\",1935.0,宮本武蔵 Miyamoto Musashi,Musashi,eng,4.43,9574,11744,759,64,193,1218,3461,6808,https://images.gr-assets.com/books/1327942522l/102030.jpg,https://images.gr-assets.com/books/1327942522s/102030.jpg\n7174,6696465,6696465,6892105,16,545052424,9780545052430.0,Wendy Mass,2010.0,Finally,\"Finally (Willow Falls, #2)\",,4.19,13268,14951,1114,185,600,2422,4663,7081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388620542l/6696465.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7175,6398972,6398972,6587666,56,385532458,9780385532460.0,John Grisham,2008.0,Ford County,Ford County,eng,3.56,13770,16272,1759,546,1650,5336,5554,3186,https://images.gr-assets.com/books/1320454906l/6398972.jpg,https://images.gr-assets.com/books/1320454906s/6398972.jpg\n7176,93157,93157,3095060,269,140436030,9780140436040.0,Matthew      Lewis,1796.0,The Monk,The Monk,eng,3.8,13633,16888,1206,515,1340,4187,5869,4977,https://images.gr-assets.com/books/1365712491l/93157.jpg,https://images.gr-assets.com/books/1365712491s/93157.jpg\n7177,23281640,23281640,42819638,19,399168796,9780399168800.0,John Sandford,2015.0,Gathering Prey,\"Gathering Prey (Lucas Davenport, #25)\",,4.18,9757,14944,1355,164,418,2138,6013,6211,https://images.gr-assets.com/books/1417985559l/23281640.jpg,https://images.gr-assets.com/books/1417985559s/23281640.jpg\n7178,17232261,17232261,23748550,32,345522028,9780345522020.0,Jamie Ford,2013.0,Songs of Willow Frost,Songs of Willow Frost,eng,3.64,13645,15237,2449,326,1184,4812,6218,2697,https://images.gr-assets.com/books/1367527068l/17232261.jpg,https://images.gr-assets.com/books/1367527068s/17232261.jpg\n7179,280366,280366,1127182,82,312340702,9780312340700.0,\"Arnaldur Indriðason, Bernard Scudder\",2000.0,Mýrin,\"Jar City (Inspector Erlendur, #3)\",eng,3.8,11803,16035,1442,186,789,4502,7110,3448,https://images.gr-assets.com/books/1316129835l/280366.jpg,https://images.gr-assets.com/books/1316129835s/280366.jpg\n7180,28568,28568,473328,59,743437810,9780743437810.0,Jeffery Deaver,2003.0,The Vanished Man,\"The Vanished Man (Lincoln Rhyme, #5)\",en-US,4.08,13353,15480,616,81,435,3019,6519,5426,https://images.gr-assets.com/books/1257881028l/28568.jpg,https://images.gr-assets.com/books/1257881028s/28568.jpg\n7182,324737,324737,315430,28,310211883,9780310211880.0,\"Jim Cymbala, Dean Merrill\",1997.0,\"Fresh Wind, Fresh Fire\",\"Fresh Wind, Fresh Fire: What Happens When God's Spirit Invades the Heart of His People\",,4.24,11677,12242,282,117,428,1903,3693,6101,https://images.gr-assets.com/books/1384258871l/324737.jpg,https://images.gr-assets.com/books/1384258871s/324737.jpg\n7183,12291438,12291438,17268041,18,62128027,9780062128030.0,Megan Shepherd,2013.0,The Madman’s Daughter,\"The Madman’s Daughter (The Madman’s Daughter, #1)\",eng,3.69,17647,19008,3298,713,1899,4898,6545,4953,https://images.gr-assets.com/books/1354155885l/12291438.jpg,https://images.gr-assets.com/books/1354155885s/12291438.jpg\n7184,16131072,16131072,21956607,35,316211222,9780316211220.0,\"James Patterson, Howard Roughan\",2013.0,Second Honeymoon,\"Second Honeymoon (Honeymoon, #2)\",eng,3.89,11418,14899,1207,127,701,3787,6323,3961,https://images.gr-assets.com/books/1352225697l/16131072.jpg,https://images.gr-assets.com/books/1352225697s/16131072.jpg\n7185,23355069,23355069,42911918,17,,,Samantha Young,2015.0,Hero,\"Hero (Hero, #1)\",eng,4.1,21777,24619,2501,345,982,4118,9523,9651,https://images.gr-assets.com/books/1413500793l/23355069.jpg,https://images.gr-assets.com/books/1413500793s/23355069.jpg\n7186,55352,55352,805035,12,786891122,9780786891120.0,George Carlin,1997.0,Brain Droppings,Brain Droppings,eng,4.11,13255,13900,394,180,492,2538,5035,5655,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389605173l/55352.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7187,8696,8696,525730,42,345371984,9780345371980.0,\"Douglas Adams, Mark Carwardine\",1990.0,Last Chance to See,Last Chance to See,,4.33,13860,15440,845,95,339,2031,4916,8059,https://images.gr-assets.com/books/1327867839l/8696.jpg,https://images.gr-assets.com/books/1327867839s/8696.jpg\n7188,1653655,1653655,1648247,13,439903440,9780439903450.0,Gordon Korman,2008.0,Swindle,\"Swindle (Swindle, #1)\",eng,3.94,13562,14061,1154,283,907,3219,4640,5012,https://images.gr-assets.com/books/1328843225l/1653655.jpg,https://images.gr-assets.com/books/1328843225s/1653655.jpg\n7190,15832932,15832932,21569082,20,803739095,9780803739090.0,Huntley Fitzpatrick,2014.0,What I Thought Was True,What I Thought Was True,eng,3.71,16390,17545,1753,553,1547,5053,5707,4685,https://images.gr-assets.com/books/1479774148l/15832932.jpg,https://images.gr-assets.com/books/1479774148s/15832932.jpg\n7192,10429037,10429037,14785454,16,62081861,9780062081860.0,Sara Shepard,2011.0,Ruthless,\"Ruthless (Pretty Little Liars, #10)\",en-US,3.93,16885,17869,906,338,1159,4400,5498,6474,https://images.gr-assets.com/books/1314802629l/10429037.jpg,https://images.gr-assets.com/books/1314802629s/10429037.jpg\n7193,18667976,18667976,26493639,19,399162178,9780399162180.0,Beatriz Williams,2014.0,The Secret Life of Violet Grant,The Secret Life of Violet Grant,eng,3.97,12825,14706,1669,255,646,2882,6478,4445,https://images.gr-assets.com/books/1393212446l/18667976.jpg,https://images.gr-assets.com/books/1393212446s/18667976.jpg\n7194,37338,16087857,37227,23,425213617,9780425213610.0,Shayla Black,2007.0,Wicked Ties,\"Wicked Ties (Wicked Lovers, #1)\",en-US,3.97,22097,24470,1360,682,1422,4908,8415,9043,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430790214l/37338.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7195,47878,47878,46861,21,043984665X,9780439846650.0,Jenny Nimmo,2007.0,\"Charlie Bone and the Beast (The Children of the Red King, # 6)\",\"Charlie Bone and the Beast (The Children of the Red King, #6)\",en-US,3.93,16397,16803,264,271,970,4251,5490,5821,https://images.gr-assets.com/books/1290344896l/47878.jpg,https://images.gr-assets.com/books/1290344896s/47878.jpg\n7196,27406436,27406436,47453830,18,,,Vi Keeland,2016.0,The Baller: A Down and Dirty Football Novel,The Baller: A Down and Dirty Football Novel,eng,4.13,17375,22369,2309,299,726,3616,8891,8837,https://images.gr-assets.com/books/1447850960l/27406436.jpg,https://images.gr-assets.com/books/1447850960s/27406436.jpg\n7197,22055280,22055280,39923827,25,765336413,9780765336420.0,Brian Staveley,2015.0,The Providence of Fire,\"The Providence of Fire (Chronicle of the Unhewn Throne, #2)\",eng,4.16,11629,14101,849,73,370,2129,6172,5357,https://images.gr-assets.com/books/1405301050l/22055280.jpg,https://images.gr-assets.com/books/1405301050s/22055280.jpg\n7198,51985,51985,2376452,78,300115466,9780300115470.0,\"Jean-Paul Sartre, Arlette Elkaïm-Sartre, Annie Cohen-Solal, Carol Macomber\",1946.0,L'Existentialisme est un humanisme ,Existentialism Is a Humanism,en-GB,3.96,12493,15055,569,228,704,3403,5788,4932,https://images.gr-assets.com/books/1328870158l/51985.jpg,https://images.gr-assets.com/books/1328870158s/51985.jpg\n7199,15451058,15451058,44904964,21,679456201,9780679456210.0,Gloria Steinem,2015.0,My Life on the Road,My Life on the Road,eng,4.08,15997,17852,2554,345,542,2967,7549,6449,https://images.gr-assets.com/books/1440005972l/15451058.jpg,https://images.gr-assets.com/books/1440005972s/15451058.jpg\n7201,6609864,6609864,6803831,22,61767603,9780061767610.0,Lauren Conrad,2010.0,Sugar and Spice,\"Sweet Little Lies (L.A. Candy, #2)\",en-US,3.53,14901,15946,756,417,1874,5804,4558,3293,https://images.gr-assets.com/books/1258145375l/6609864.jpg,https://images.gr-assets.com/books/1258145375s/6609864.jpg\n7204,342994,342994,1773894,116,439643635,9780439643630.0,\"Hans Christian Andersen, Rachel Isadora\",1845.0,Den Lille Pige med Svovlstikkerne,The Little Match Girl,eng,4.08,16478,17499,551,338,794,3445,5501,7421,https://images.gr-assets.com/books/1411481144l/342994.jpg,https://images.gr-assets.com/books/1411481144s/342994.jpg\n7205,95643,95643,92181,25,156031566,9780156031560.0,Rory Stewart,2004.0,The Places In Between,The Places in Between,en-US,3.88,11445,11934,1274,222,786,2822,4500,3604,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1567837295l/95643.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7206,24611454,24611454,43635283,41,425280101,9780425280100.0,Nora Roberts,2015.0,Stars of Fortune,\"Stars of Fortune (The Guardians Trilogy, #1)\",eng,4.0,12822,18887,1597,627,922,3575,6460,7303,https://images.gr-assets.com/books/1458079016l/24611454.jpg,https://images.gr-assets.com/books/1458079016s/24611454.jpg\n7208,16342,16342,2728434,170,425205967,9780425205970.0,Agatha Christie,1959.0,Cat Among the Pigeons,\"Cat Among the Pigeons (Hercule Poirot, #32)\",eng,3.82,17221,19943,795,103,954,6237,7790,4859,https://images.gr-assets.com/books/1275665326l/16342.jpg,https://images.gr-assets.com/books/1275665326s/16342.jpg\n7209,15786792,18730321,21506045,41,385535309,9780385535300.0,Edward Rutherfurd,2013.0,Paris,Paris,eng,3.95,8441,14185,1944,246,670,3037,5826,4406,https://images.gr-assets.com/books/1344117043l/15786792.jpg,https://images.gr-assets.com/books/1344117043s/15786792.jpg\n7210,77995,26530372,75319,61,486270645,9780486270650.0,Guy de Maupassant,1884.0,The Necklace and Other Short Stories,The Necklace and Other Short Stories,eng,3.94,11688,14366,369,161,752,3542,5232,4679,https://images.gr-assets.com/books/1327649717l/77995.jpg,https://images.gr-assets.com/books/1327649717s/77995.jpg\n7211,84786,84786,449521,86,446694258,9780446694250.0,Michael Connelly,1999.0,Void Moon,Void Moon,eng,3.95,14090,16576,674,137,641,4052,6880,4866,https://images.gr-assets.com/books/1344267460l/84786.jpg,https://images.gr-assets.com/books/1344267460s/84786.jpg\n7212,34057,34057,1105754,474,543895882,9780543895880.0,Rudyard Kipling,1897.0,Captains Courageous,Captains Courageous,eng,3.88,14823,16335,608,304,927,4334,5651,5119,https://images.gr-assets.com/books/1327959659l/34057.jpg,https://images.gr-assets.com/books/1327959659s/34057.jpg\n7214,31333,31333,2925978,36,8466302204,9788466302200.0,Anne Rice,1997.0,Violin,Violin,eng,3.26,14911,16147,499,1447,2676,5236,3776,3012,https://images.gr-assets.com/books/1479198883l/31333.jpg,https://images.gr-assets.com/books/1479198883s/31333.jpg\n7215,25527908,29243722,45315154,36,1250076420,9781250076430.0,Sharon Guskin,2016.0,The Forgetting Time,The Forgetting Time,eng,3.79,8457,16832,2161,189,926,4626,7498,3593,https://images.gr-assets.com/books/1442527065l/25527908.jpg,https://images.gr-assets.com/books/1442527065s/25527908.jpg\n7217,13618,13618,6791,35,1421501708,9781421501700.0,\"Tsugumi Ohba, Takeshi Obata\",2004.0,デスノート #3 (Desu Nōto) Gekisō (激走),\"Death Note, Vol. 3: Hard Run (Death Note, #3)\",eng,4.42,18012,19155,619,61,273,1970,6141,10710,https://images.gr-assets.com/books/1419952370l/13618.jpg,https://images.gr-assets.com/books/1419952370s/13618.jpg\n7218,11309018,11309018,16236911,37,399256180,9780399256190.0,John Flanagan,2011.0,The Lost Stories,\"The Lost Stories (Ranger's Apprentice, #11)\",eng,4.27,15816,18664,842,123,564,2785,5818,9374,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348471987l/11309018.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7219,15738951,15738951,21423965,7,,,Lee Child,2012.0,\"Deep Down (Jack Reacher, #16.5)\",\"Deep Down (Jack Reacher, #16.5)\",en-US,3.87,9916,15452,701,254,955,4018,5589,4636,https://images.gr-assets.com/books/1373921650l/15738951.jpg,https://images.gr-assets.com/books/1373921650s/15738951.jpg\n7220,10947600,10947600,13329559,14,1921794097,9781921794090.0,Hannah Harrington,2011.0,Saving June,Saving June,eng,3.97,14867,16238,1489,425,954,3358,5384,6117,https://images.gr-assets.com/books/1349156138l/10947600.jpg,https://images.gr-assets.com/books/1349156138s/10947600.jpg\n7221,23398806,23398806,25004816,63,451475496,9780451475500.0,M.J. Arlidge,2014.0,Eeny Meeny,\"Eeny Meeny (Helen Grace, #1)\",eng,3.88,8498,16218,2345,298,932,3794,6563,4631,https://images.gr-assets.com/books/1418746579l/23398806.jpg,https://images.gr-assets.com/books/1418746579s/23398806.jpg\n7223,7830126,7830126,10890594,42,553807722,9780553807720.0,Dean Koontz,2010.0,What the Night Knows,What the Night Knows,eng,3.74,13873,16106,1571,461,1285,4395,5865,4100,https://images.gr-assets.com/books/1308459193l/7830126.jpg,https://images.gr-assets.com/books/1308459193s/7830126.jpg\n7224,16174197,16174197,22023268,14,,,Kitty French,2012.0,Knight & Play,\"Knight & Play (Knight, #1)\",eng,4.04,24297,25097,1443,485,1260,4742,8959,9651,https://images.gr-assets.com/books/1354181901l/16174197.jpg,https://images.gr-assets.com/books/1354181901s/16174197.jpg\n7225,18405221,18405221,26039753,29,,,Anthony  Ryan,2015.0,Queen of Fire,\"Queen of Fire (Raven's Shadow, #3)\",eng,3.64,11985,13913,915,359,1377,4194,4927,3056,https://images.gr-assets.com/books/1417350958l/18405221.jpg,https://images.gr-assets.com/books/1417350958s/18405221.jpg\n7226,404223,404223,2177176,34,345418468,9780345418460.0,Stephen R. Donaldson,1979.0,The Wounded Land,\"The Wounded Land (The Second Chronicles of Thomas Covenant, #1)\",,3.96,14549,16115,190,289,770,3613,6025,5418,https://images.gr-assets.com/books/1323997527l/404223.jpg,https://images.gr-assets.com/books/1323997527s/404223.jpg\n7227,249042,249042,1258333,49,679736395,9780679736390.0,William Styron,1990.0,Darkness Visible: A Memoir of Madness,Darkness Visible: A Memoir of Madness,,4.04,13396,15109,1118,160,746,2981,5607,5615,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190195l/249042.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7228,13057939,13057939,18223133,34,1451657706,9781451657710.0,Vaddey Ratner,2012.0,In the Shadow of the Banyan,In the Shadow of the Banyan,,4.04,12946,14443,2134,219,633,2599,5909,5083,https://images.gr-assets.com/books/1346714710l/13057939.jpg,https://images.gr-assets.com/books/1346714710s/13057939.jpg\n7230,6611038,6611038,6805023,19,1439147973,9781439147980.0,Jennifer Estep,2010.0,Spider's Bite,\"Spider's Bite (Elemental Assassin, #1)\",eng,3.87,24192,26324,1836,695,1709,5993,9799,8128,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1536005690l/6611038._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7231,123845,123845,1472936,36,486277909,9780486277900.0,Ralph Waldo Emerson,1844.0,Self-Reliance and Other Essays,Self-Reliance and Other Essays,en-US,4.14,14484,14717,282,154,542,2653,5092,6276,https://images.gr-assets.com/books/1319099192l/123845.jpg,https://images.gr-assets.com/books/1319099192s/123845.jpg\n7233,769016,769016,2738870,61,380811960,9780380811960.0,\"Adele Faber, Elaine Mazlish, Kimberly Ann Coe\",1979.0,How to Talk So Teens Will Listen and Listen So Teens Will Talk,How to Talk So Kids Will Listen & Listen So Kids Will Talk,en-US,4.24,10931,13966,1547,114,414,1989,4997,6452,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442201568l/769016._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7234,294951,294951,286201,16,879101369,9780879101370.0,\"Joseph Stein, Jerry Bock, Sheldon Harnick\",1964.0,Fiddler On the Roof: Based on Sholom Aleichem's Stories,Fiddler on the Roof,eng,4.2,14049,14141,62,210,529,2360,4195,6847,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347523415l/294951.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7235,17607848,17607848,24566340,24,1459245954,9781459245950.0,Sylvia Day,2013.0,Afterburn,\"Afterburn (Jax & Gia, #1)\",eng,3.97,17821,20104,1159,279,1025,4490,7619,6691,https://images.gr-assets.com/books/1369326801l/17607848.jpg,https://images.gr-assets.com/books/1369326801s/17607848.jpg\n7236,7926,7926,361114,31,385732953,9780385732960.0,Sydney Taylor,1951.0,All-of-a-Kind Family,\"All-of-a-Kind Family (All-of-a-Kind Family, #1)\",eng,4.23,18383,19119,759,337,558,2869,6002,9353,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389583949l/7926.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7237,18114057,22668803,25441287,19,525953183,9780525953180.0,Daniel Suarez,2014.0,Influx,Influx,eng,3.91,6938,12264,1133,191,603,2773,5237,3460,https://images.gr-assets.com/books/1374634071l/18114057.jpg,https://images.gr-assets.com/books/1374634071s/18114057.jpg\n7238,15560,15560,589782,29,345396553,9780345396560.0,Terry Brooks,2000.0,Ilse Witch ,\"Ilse Witch (Voyage of the Jerle Shannara, #1)\",en-US,3.95,14386,15210,235,123,715,3792,5692,4888,https://images.gr-assets.com/books/1403187876l/15560.jpg,https://images.gr-assets.com/books/1403187876s/15560.jpg\n7239,95420,95420,695094,22,375701044,9780375701050.0,Katharine Graham,1997.0,Personal History,Personal History,en-US,4.13,13714,14328,750,255,516,2360,5196,6001,https://images.gr-assets.com/books/1320504681l/95420.jpg,https://images.gr-assets.com/books/1320504681s/95420.jpg\n7240,27824826,27824826,47804789,45,,,Jane Harper,2017.0,The Dry,\"The Dry (Aaron Falk, #1)\",eng,4.07,19843,27901,3682,257,705,4791,13128,9020,https://images.gr-assets.com/books/1456113132l/27824826.jpg,https://images.gr-assets.com/books/1456113132s/27824826.jpg\n7241,40320,40320,3173182,23,312983271,9780312983280.0,\"Janet Evanovich, Charlotte Hughes\",1981.0,Full House,Full House (Full #1),eng,3.63,17813,18533,623,454,1954,6120,5463,4542,https://images.gr-assets.com/books/1479699904l/40320.jpg,https://images.gr-assets.com/books/1479699904s/40320.jpg\n7242,291,291,1676536,119,806501901,9780806501900.0,\"Kahlil Gibran, Anthony R. Ferris\",1912.0,الأجنحة المتكسرة,The Broken Wings,eng,3.93,5611,12435,1425,272,792,2796,4251,4324,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347637124l/291.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7243,14889780,14889780,21366940,43,446554995,9780446554990.0,\"Douglas Preston, Lincoln Child\",2012.0,Two Graves,\"Two Graves (Pendergast, #12)\",,4.03,12164,15678,1478,118,598,3300,6397,5265,https://images.gr-assets.com/books/1346937130l/14889780.jpg,https://images.gr-assets.com/books/1346937130s/14889780.jpg\n7244,13109291,13109291,18282611,18,62116851,9780062116860.0,Robin Hobb,2013.0,Blood of Dragons,\"Blood of Dragons (Rain Wild Chronicles, #4)\",eng,4.12,12165,15410,887,84,432,2772,6336,5786,https://images.gr-assets.com/books/1341265576l/13109291.jpg,https://images.gr-assets.com/books/1341265576s/13109291.jpg\n7245,539904,539904,1246930,38,450837319,9780450837320.0,Cornelius Ryan,1974.0,A Bridge Too Far,A Bridge Too Far,eng,4.24,13676,14329,250,82,242,2170,5443,6392,https://images.gr-assets.com/books/1326921431l/539904.jpg,https://images.gr-assets.com/books/1326921431s/539904.jpg\n7246,87220,87220,963222,33,60540745,9780060540750.0,Jerry Spinelli,2002.0,Loser,Loser,eng,3.72,15079,15678,1613,427,1384,4446,5259,4162,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347404110l/87220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7247,498835,498835,1027521,81,752860550,9780752860560.0,Kate Mosse,2007.0,Sepulchre,\"Sepulchre (Languedoc, #2)\",en-GB,3.73,13368,15790,1253,351,1275,4473,5818,3873,https://images.gr-assets.com/books/1328120460l/498835.jpg,https://images.gr-assets.com/books/1328120460s/498835.jpg\n7249,100247,100247,96659,11,812992180,9780812992180.0,Rolf Potts,2002.0,Vagabonding: An Uncommon Guide to the Art of Long-Term World Travel,Vagabonding: An Uncommon Guide to the Art of Long-Term World Travel,eng,3.92,13128,14025,836,276,860,3243,4984,4662,https://images.gr-assets.com/books/1320532720l/100247.jpg,https://images.gr-assets.com/books/1320532720s/100247.jpg\n7250,12383252,12383252,17363999,19,425247546,9780425247550.0,Laurell K. Hamilton,2012.0,Kiss the Dead,\"Kiss the Dead (Anita Blake, Vampire Hunter #21)\",eng,3.79,18225,20568,1620,800,1926,5104,5693,7045,https://images.gr-assets.com/books/1328767132l/12383252.jpg,https://images.gr-assets.com/books/1328767132s/12383252.jpg\n7251,10775,10775,476408,77,684804522,9780684804520.0,Ernest Hemingway,1985.0,The Garden of Eden,The Garden of Eden,en-US,3.74,12948,13852,887,335,1201,3748,4958,3610,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405529251l/10775.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7252,1333030,1333030,1322547,23,425219437,9780425219430.0,Maya Banks,2008.0,\"Sweet Surrender (Sweet Series, #1)\",\"Sweet Surrender (Sweet, #1)\",en-US,3.99,20856,22582,964,464,1255,4550,7978,8335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1542977347l/1333030._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7253,22875,22875,409548,34,345418476,9780345418470.0,Stephen R. Donaldson,1982.0,The One Tree,\"The One Tree (The Second Chronicles of Thomas Covenant, #2)\",eng,3.96,13812,15334,136,247,786,3444,5739,5118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328044747l/22875.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7254,24816,24816,2369970,23,836217691,9780836217700.0,Bill Watterson,1994.0,Homicidal Psycho Jungle Cat: A Calvin and Hobbes Collection,Homicidal Psycho Jungle Cat: A Calvin and Hobbes Collection,eng,4.71,14113,15729,289,13,53,696,2900,12067,https://images.gr-assets.com/books/1448818381l/24816.jpg,https://images.gr-assets.com/books/1448818381s/24816.jpg\n7255,17190226,17190226,23642301,16,,9781482334300.0,J.C. Reed,2013.0,Surrender Your Love,\"Surrender Your Love (Surrender Your Love, #1)\",eng,3.91,20398,24191,1437,548,1417,5442,9156,7628,https://images.gr-assets.com/books/1359887738l/17190226.jpg,https://images.gr-assets.com/books/1359887738s/17190226.jpg\n7256,17985262,17699389,24581193,35,,,Matthew Mather,2013.0,CyberStorm,CyberStorm,eng,3.75,6028,14279,1273,350,1172,3795,5382,3580,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394227619l/17985262.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7257,24476,24476,1596506,21,743406567,9780743406570.0,Chuck Klosterman,2001.0,Fargo Rock City: A Heavy Metal Odyssey in Rural North Dakota,Fargo Rock City: A Heavy Metal Odyssey in Rural North Dakota,en-US,3.8,11376,11665,532,225,752,3196,4486,3006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440854466l/24476._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7258,795034,795034,19075137,40,886775981,9780886775990.0,Tad Williams,1993.0,To Green Angel Tower (Siege),\"To Green Angel Tower, Part 1 (Memory, Sorrow, and Thorn, #3; Part 1)\",en-US,4.18,13830,15138,154,142,484,2479,5398,6635,https://images.gr-assets.com/books/1309992858l/795034.jpg,https://images.gr-assets.com/books/1309992858s/795034.jpg\n7259,6818019,6818019,7026660,47,307589676,9780307589680.0,\"Nujood Ali, Delphine Minoui, Linda Coverdale\",2009.0,\"Moi Nojoud, 10 ans, divorcée\",\"I Am Nujood, Age 10 and Divorced\",eng,3.79,13607,15351,2294,169,1002,4480,5895,3805,https://images.gr-assets.com/books/1320467214l/6818019.jpg,https://images.gr-assets.com/books/1320467214s/6818019.jpg\n7260,43798,43798,2926011,25,345376048,9780345376050.0,Anne Rice,1979.0,The Feast of All Saints,The Feast of All Saints,en-US,3.83,15221,16011,364,356,1231,4227,5160,5037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385216547l/43798.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7261,18453074,18453074,26098475,32,316033979,9780316033980.0,Joshua Ferris,2014.0,To rise again at a decent hour,To Rise Again at a Decent Hour,eng,3.08,10270,12209,2090,1034,2443,4431,3161,1140,https://images.gr-assets.com/books/1391305201l/18453074.jpg,https://images.gr-assets.com/books/1391305201s/18453074.jpg\n7262,150720,150720,1632,9,571199976,9780571199980.0,David Auburn,2000.0,Proof: A Play,Proof,eng,4.01,13777,14029,297,205,682,2937,5215,4990,https://images.gr-assets.com/books/1417605435l/150720.jpg,https://images.gr-assets.com/books/1417605435s/150720.jpg\n7263,121581,121581,49669,32,441653049,9780441653040.0,\"Robert A. Heinlein, Damon Knight\",1967.0,The Past through Tomorrow,\"The Past Through Tomorrow (Future History, #1-21)\",eng,4.15,13920,14323,111,72,358,2746,5249,5898,https://images.gr-assets.com/books/1325885616l/121581.jpg,https://images.gr-assets.com/books/1325885616s/121581.jpg\n7264,86525,86525,90300,25,394720954,9780394720950.0,Robert A. Caro,2002.0,Master of the Senate,\"Master of the Senate (The Years of Lyndon Johnson, #3)\",eng,4.41,11411,11983,587,192,373,1205,2798,7415,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189118l/86525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7265,15722284,15722284,21396257,30,,,Dean Koontz,2015.0,Saint Odd,\"Saint Odd (Odd Thomas, #7)\",eng,4.12,11714,14279,1704,188,566,2499,5098,5928,https://images.gr-assets.com/books/1403303609l/15722284.jpg,https://images.gr-assets.com/books/1403303609s/15722284.jpg\n7266,6671,6671,3159194,71,037581423X,9780375814240.0,Roald Dahl,1977.0,The Wonderful Story Of Henry Sugar And Six More,The Wonderful Story of Henry Sugar and Six More,eng,4.15,13419,16370,840,97,510,3073,5928,6762,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389581369l/6671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7268,7926242,7926242,11239961,58,399157212,9780399157220.0,Patricia Cornwell,2010.0,Port Mortuary,\"Port Mortuary (Kay Scarpetta, #18)\",en-US,3.55,14765,17153,1498,823,2050,5097,5183,4000,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435641760l/7926242._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7269,672948,672948,165384,109,449912450,9780449912450.0,Erich Maria Remarque,1945.0,Arc de Triomphe,Arch of Triumph: A Novel of a Man Without a Country,,4.4,11391,13380,313,75,276,1476,3965,7588,https://images.gr-assets.com/books/1353844109l/672948.jpg,https://images.gr-assets.com/books/1353844109s/672948.jpg\n7270,154795,154795,149410,31,1563890976,9781563890970.0,\"Dan Jurgens, Jerry Ordway, Louise Simonson, Roger Stern, Jon Bogdanove, Tom Grummett, Jackson Butch Guice, Brett Breeding, Rick Burchett, Doug Hazlewood, Dennis Janke, Denis Rodier\",1993.0,The Death of Superman,The Death of Superman,en-US,3.89,12630,13287,303,309,1056,3249,3878,4795,https://images.gr-assets.com/books/1383536130l/154795.jpg,https://images.gr-assets.com/books/1383536130s/154795.jpg\n7271,144800,144800,938197,57,1841959111,9781841959120.0,Steven Hall,2007.0,The Raw Shark Texts,The Raw Shark Texts,en-US,3.87,11010,13806,1611,425,1051,2931,4874,4525,https://images.gr-assets.com/books/1405099268l/144800.jpg,https://images.gr-assets.com/books/1405099268s/144800.jpg\n7272,27904311,27904311,46919813,46,1423160924,9781423160920.0,Rick Riordan,2016.0,The Hammer of Thor,\"The Hammer of Thor (Magnus Chase and the Gods of Asgard, #2)\",eng,4.37,22736,26621,3390,171,452,2852,9141,14005,https://images.gr-assets.com/books/1463950690l/27904311.jpg,https://images.gr-assets.com/books/1463950690s/27904311.jpg\n7273,15771862,15771862,21480584,36,,,Sonali Deraniyagala,2013.0,Wave,Wave,eng,3.7,12008,13198,2128,466,1217,3512,4626,3377,https://images.gr-assets.com/books/1362126716l/15771862.jpg,https://images.gr-assets.com/books/1362126716s/15771862.jpg\n7274,1307,1307,728299,25,553295411,9780553295410.0,\"Margaret Weis, Tracy Hickman\",1991.0,Fire Sea,\"Fire Sea (The Death Gate Cycle, #3)\",en-US,4.05,14707,15554,183,80,588,3376,5968,5542,https://images.gr-assets.com/books/1325422748l/1307.jpg,https://images.gr-assets.com/books/1325422748s/1307.jpg\n7275,13547504,13547504,19112644,30,743236718,9780743236710.0,Andrew Solomon,2012.0,\"Far from the Tree: Parents, Children, and the Search for Identity\",\"Far from the Tree: Parents, Children, and the Search for Identity\",eng,4.26,11879,13240,1875,251,445,1677,4053,6814,https://images.gr-assets.com/books/1363008433l/13547504.jpg,https://images.gr-assets.com/books/1363008433s/13547504.jpg\n7276,958277,958277,594845,33,679826424,9780679826420.0,\"Barbara Park, Denise Brunkus\",1992.0,Junie B. Jones and the Stupid Smelly Bus,\"Junie B. Jones and the  Stupid Smelly Bus (Junie B. Jones, #1)\",en-US,3.9,16918,17517,1408,800,1360,3863,4261,7233,https://images.gr-assets.com/books/1353109909l/958277.jpg,https://images.gr-assets.com/books/1353109909s/958277.jpg\n7277,23887,23887,6325280,161,60882867,9780060882860.0,\"Gabriel García Márquez, Gregory Rabassa\",1975.0,El otoño del patriarca,The Autumn of the Patriarch,eng,3.84,10576,13673,711,354,951,3339,4865,4164,https://images.gr-assets.com/books/1410136666l/23887.jpg,https://images.gr-assets.com/books/1410136666s/23887.jpg\n7278,3276637,3276637,3312922,48,7201788,9780007201780.0,Conn Iggulden,2008.0,Bones of the Hills,\"Bones of the Hills (Conqueror, #3)\",eng,4.32,11461,13094,390,48,151,1530,5138,6227,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1540580457l/3276637._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7279,13330771,13330771,18538423,47,307957241,9780307957240.0,Oliver Sacks,1995.0,Hallucinations,Hallucinations,eng,3.85,11443,12886,1101,230,755,3348,4938,3615,https://images.gr-assets.com/books/1440360108l/13330771.jpg,https://images.gr-assets.com/books/1440360108s/13330771.jpg\n7280,12444297,12444297,40105040,3,385344414,9780385344420.0,Karen Marie Moning,2015.0,Burned,\"Burned (Fever, #7)\",eng,4.12,17562,21149,2806,320,970,3597,7208,9054,https://images.gr-assets.com/books/1407503200l/12444297.jpg,https://images.gr-assets.com/books/1407503200s/12444297.jpg\n7281,3301759,3301759,18440614,325,,9781496166400.0,Edgar Allan Poe,1841.0,The Murders in the Rue Morgue,The Murders in the Rue Morgue,eng,3.92,15114,17180,594,200,912,4233,6513,5322,https://images.gr-assets.com/books/1409105459l/3301759.jpg,https://images.gr-assets.com/books/1409105459s/3301759.jpg\n7282,104086,104086,3238632,52,451458222,9780451458220.0,Guy Gavriel Kay,1984.0,The Summer Tree,The Summer Tree (The Fionavar Tapestry #1),en-US,3.99,16187,17645,1003,417,975,3435,6283,6535,https://images.gr-assets.com/books/1412531529l/104086.jpg,https://images.gr-assets.com/books/1412531529s/104086.jpg\n7283,7909,7909,10931,16,64400964,9780064400960.0,\"Maud Hart Lovelace, Lois Lenski\",1940.0,Betsy-Tacy,\"Betsy-Tacy (Betsy-Tacy, #1)\",en-US,4.07,18024,18558,877,591,747,3406,5777,8037,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440321278l/7909._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7284,2020935,2020935,2799404,16,316014559,9780316014560.0,Sara Zarr,2008.0,Sweethearts,Sweethearts,en-US,3.64,16515,17151,1688,608,1860,5098,5186,4399,https://images.gr-assets.com/books/1336053590l/2020935.jpg,https://images.gr-assets.com/books/1336053590s/2020935.jpg\n7285,1474628,1474628,2881737,44,434017841,9780434017840.0,Lauren Groff,2008.0,The Monsters of Templeton,The Monsters of Templeton,eng,3.58,13849,15878,2465,446,1538,4937,6241,2716,https://images.gr-assets.com/books/1328051913l/1474628.jpg,https://images.gr-assets.com/books/1328051913s/1474628.jpg\n7286,18107951,18107951,25429815,26,425263150,9780425263150.0,Charlaine Harris,2014.0,Midnight Crossroad,\"Midnight Crossroad (Midnight, Texas, #1)\",eng,3.63,15029,19360,2985,586,1659,6152,6927,4036,https://images.gr-assets.com/books/1384456102l/18107951.jpg,https://images.gr-assets.com/books/1384456102s/18107951.jpg\n7287,269746,269746,2516519,21,553584707,9780553584710.0,Diane Mott Davidson,1990.0,Catering to Nobody,\"Catering to Nobody (A Goldy Bear Culinary Mystery, #1)\",en-US,3.85,15777,16506,718,314,814,4603,6111,4664,https://images.gr-assets.com/books/1340227366l/269746.jpg,https://images.gr-assets.com/books/1340227366s/269746.jpg\n7288,12614410,12614410,17632083,23,373210574,9780373210570.0,Julie Kagawa,2012.0,The Lost Prince,\"The Lost Prince (The Iron Fey: Call of the Forgotten, #1)\",eng,4.05,21049,22483,2319,340,972,4564,8031,8576,https://images.gr-assets.com/books/1335463790l/12614410.jpg,https://images.gr-assets.com/books/1335463790s/12614410.jpg\n7289,2095583,2095583,2100943,60,743294386,9780743294390.0,Kathy Reichs,2008.0,Devil Bones,\"Devil Bones (Temperance Brennan, #11)\",eng,3.89,18180,20410,1017,197,948,5493,8105,5667,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388258845l/2095583.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7290,116114,116114,2504920,59,517223007,9780517223000.0,James  Jones,1951.0,From Here to Eternity,From Here to Eternity,eng,4.09,13106,13959,345,164,510,2652,5266,5367,https://images.gr-assets.com/books/1330924946l/116114.jpg,https://images.gr-assets.com/books/1330924946s/116114.jpg\n7291,389763,389763,456945,27,1401911846,9781401911840.0,Wayne W. Dyer,1899.0,Change Your Thoughts - Change Your Life: Living the Wisdom of the Tao,Change Your Thoughts - Change Your Life: Living the Wisdom of the Tao,eng,4.24,11997,12818,383,218,383,1877,3988,6352,https://images.gr-assets.com/books/1328770256l/389763.jpg,https://images.gr-assets.com/books/1328770256s/389763.jpg\n7292,81176,81176,979931,57,446693790,9780446693790.0,Michael Moore,2003.0,\"Dude, Where's My Country?\",\"Dude, Where's My Country?\",en-US,3.4,12468,13810,356,766,1678,4945,4172,2249,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427030928l/81176.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7293,364089,364089,23123,82,345412214,9780345412220.0,Mario Puzo,1996.0,The Last Don,The Last Don,eng,3.8,11327,12606,355,128,762,3658,5055,3003,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436903416l/364089.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7294,11995136,11995136,16959274,7,,9789770930920.0,\"يوسف زيدان, Youssef Ziedan\",2012.0,محال,محال,ara,3.31,10074,10110,1283,705,1483,3426,2938,1558,https://images.gr-assets.com/books/1324288676l/11995136.jpg,https://images.gr-assets.com/books/1324288676s/11995136.jpg\n7295,19452,19452,1300531,43,60724501,9780060724500.0,Meg Cabot,2005.0,Ready or Not,\"Ready or Not (All-American Girl, #2)\",eng,3.4,21089,22530,793,1067,3297,7810,6277,4079,https://images.gr-assets.com/books/1327951939l/19452.jpg,https://images.gr-assets.com/books/1327951939s/19452.jpg\n7296,128755,128755,2747783,67,743453026,9780743453030.0,Kathy Reichs,2005.0,Cross Bones,\"Cross Bones (Temperance Brennan, #8)\",,3.86,17850,20093,894,244,1051,5451,7795,5552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389771698l/128755.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7297,163363,163363,1526762,20,809015803,9780809015800.0,Gerda Weissmann Klein,1959.0,All But My Life,All But My Life: A Memoir,en-US,4.28,13710,14111,893,268,398,1790,4332,7323,https://images.gr-assets.com/books/1316131452l/163363.jpg,https://images.gr-assets.com/books/1316131452s/163363.jpg\n7298,577542,577542,359486,77,688143202,9780688143210.0,\"Rudyard Kipling, Jerry Pinkney\",1894.0,Rikki-Tikki-Tavi,Rikki-Tikki-Tavi,,3.96,13851,18495,706,299,918,4434,6390,6454,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388410608l/577542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7299,2249196,2249196,18442054,5,1401218377,9781401218380.0,\"Grant Morrison, Frank Quitely\",2009.0,\"All-Star Superman, Vol. 2\",\"All-Star Superman, Vol. 2\",eng,4.33,12420,12769,251,154,446,1594,3411,7164,https://images.gr-assets.com/books/1320477944l/2249196.jpg,https://images.gr-assets.com/books/1320477944s/2249196.jpg\n7300,17345242,17345242,23840347,35,553805444,9780553805440.0,\"George R.R. Martin, Elio M. García Jr., Linda Antonsson\",2014.0,The World of Ice and Fire,The World of Ice & Fire: The Untold History of Westeros and the Game of Thrones,eng,4.25,12119,15187,1349,107,431,2248,5204,7197,https://images.gr-assets.com/books/1400360220l/17345242.jpg,https://images.gr-assets.com/books/1400360220s/17345242.jpg\n7301,110386,110386,13341300,48,380820854,9780380820860.0,Julia Quinn,2003.0,\"To Sir Phillip, With Love\",\"To Sir Phillip, With Love (Bridgertons, #5)\",eng,3.89,21928,24143,1031,223,1335,6449,9109,7027,https://images.gr-assets.com/books/1274211519l/110386.jpg,https://images.gr-assets.com/books/1274211519s/110386.jpg\n7302,454236,454236,1165980,49,140009769X,9781400097690.0,\"Nando Parrado, Vince Rause\",2006.0,Miracle in the Andes: 72 Days on the Mountain and My Long Trek Home,Miracle in the Andes,,4.21,11057,12048,750,91,261,1915,4532,5249,https://images.gr-assets.com/books/1320544978l/454236.jpg,https://images.gr-assets.com/books/1320544978s/454236.jpg\n7304,298730,298730,2901348,13,689839103,9780689839110.0,Margaret Peterson Haddix,2003.0,Among the Barons,\"Among the Barons (Shadow Children, #4)\",en-US,4.08,17495,18050,631,94,589,3901,6685,6781,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178243l/298730.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7306,125662,125662,121027,53,439568420,9780439568420.0,R.L. Stine,1992.0,Say Cheese and Die!,\"Say Cheese and Die! (Goosebumps, #4)\",eng,3.72,15540,16764,579,396,1672,5277,4235,5184,https://images.gr-assets.com/books/1328867794l/125662.jpg,https://images.gr-assets.com/books/1328867794s/125662.jpg\n7307,328907,328907,891831,18,60932309,9780060932300.0,Bernard Cornwell,1997.0,Sharpe's Tiger,\"Sharpe's Tiger (Sharpe, #1)\",en-US,4.08,12793,14602,674,58,301,2884,6528,4831,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1525539270l/328907.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7308,207684,207684,2114772,39,60837640,9780060837650.0,Meg Cabot,2007.0,Jinx,Jinx,en-US,3.72,21745,23372,1332,435,2065,7164,7724,5984,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440702549l/207684._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7310,21874813,21874813,41166152,24,345539931,9780345539940.0,Alan Bradley,2015.0,As Chimney Sweepers Come to Dust ,\"As Chimney Sweepers Come to Dust (Flavia de Luce, #7)\",eng,3.94,14337,16627,2591,95,602,4004,7387,4539,https://images.gr-assets.com/books/1406214651l/21874813.jpg,https://images.gr-assets.com/books/1406214651s/21874813.jpg\n7311,13258,13258,18650,59,312421990,9780312421990.0,Zoë Heller,2003.0,Notes on a Scandal,What Was She Thinking? [Notes on a Scandal],eng,3.69,11774,15290,1463,343,1205,4370,6296,3076,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922976l/13258.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7312,25293695,25293695,45020928,22,045147516X,9780451475170.0,J.R. Ward,2016.0,The Beast,\"The Beast (Black Dagger Brotherhood, #14)\",eng,4.45,13243,17886,2362,117,326,1653,5003,10787,https://images.gr-assets.com/books/1437025828l/25293695.jpg,https://images.gr-assets.com/books/1437025828s/25293695.jpg\n7313,65399,65399,982483,22,425193942,9780425193940.0,Dorothea Benton Frank,1999.0,Sullivan's Island,\"Sullivan's Island (Lowcountry Tales, #1)\",eng,4.02,13081,14224,625,153,534,3075,5520,4942,https://images.gr-assets.com/books/1327888744l/65399.jpg,https://images.gr-assets.com/books/1327888744s/65399.jpg\n7314,229149,229149,6740112,14,1892213753,9781892213750.0,\"CLAMP, Anita Sengupta\",1998.0,カードキャプターさくら 7 [Cardcaptor Sakura 7],\"Cardcaptor Sakura: Master of the Clow, Vol. 1 (Cardcaptor Sakura, #7)\",eng,4.34,12151,12363,55,216,374,1690,2855,7228,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176507l/229149.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7315,10897866,10897866,15813784,10,1460995457,9781460995460.0,G.P. Ching,2011.0,The Soulkeepers (The Soulkeepers #1),\"The Soulkeepers (The Soulkeepers, #1)\",en-US,3.71,7328,13510,993,655,1228,3454,4253,3920,https://images.gr-assets.com/books/1308260933l/10897866.jpg,https://images.gr-assets.com/books/1308260933s/10897866.jpg\n7316,33820,33820,3343186,58,446611913,9780446611920.0,Nelson DeMille,2002.0,Up Country,Up Country,,3.99,12902,14022,671,162,670,3010,5450,4730,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388288352l/33820.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7317,1048645,1048645,2454980,42,439636485,9780439636480.0,Michael Morpurgo,2003.0,Private Peaceful,Private Peaceful,eng,4.16,13123,15168,1099,178,506,2534,5390,6560,https://images.gr-assets.com/books/1328868065l/1048645.jpg,https://images.gr-assets.com/books/1328868065s/1048645.jpg\n7318,383514,383514,2309133,18,425215679,9780425215680.0,Rhys Bowen,2007.0,Her Royal Spyness (Her Royal Spyness Mysteries #1),\"Her Royal Spyness (Her Royal Spyness Mysteries, #1)\",en-US,3.76,17498,19342,2107,362,1177,5706,7510,4587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174342700l/383514._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7319,12288282,12288282,17264774,17,,9781101585190.0,Ilona Andrews,2012.0,Gunmetal Magic,\"Gunmetal Magic (Kate Daniels, #5.5)\",eng,4.28,21396,24386,1590,102,369,3227,9691,10997,https://images.gr-assets.com/books/1331230049l/12288282.jpg,https://images.gr-assets.com/books/1331230049s/12288282.jpg\n7320,22381326,22381326,41796499,38,,,Joe Abercrombie,2015.0,Half a War,\"Half a War (Shattered Sea, #3)\",eng,4.01,10629,13975,1238,58,410,2903,6522,4082,https://images.gr-assets.com/books/1429885218l/22381326.jpg,https://images.gr-assets.com/books/1429885218s/22381326.jpg\n7322,15729261,15729261,21408119,32,,,Jennifer Probst,2012.0,The Marriage Mistake,\"The Marriage Mistake (Marriage to a Billionaire, #3)\",eng,3.96,21512,24071,1199,266,1158,5553,9419,7675,https://images.gr-assets.com/books/1348628724l/15729261.jpg,https://images.gr-assets.com/books/1348628724s/15729261.jpg\n7323,886512,886512,2983941,27,694006513,9780694006520.0,Bruce Degen,1982.0,Jamberry,Jamberry,,4.17,15478,15786,399,213,714,2922,4230,7707,https://images.gr-assets.com/books/1393791849l/886512.jpg,https://images.gr-assets.com/books/1393791849s/886512.jpg\n7324,8269450,8269450,13117562,13,385670516,9780385670520.0,Kelley Armstrong,2009.0,\"Darkest Powers Trilogy (Darkest Powers, #1-3)\",\"Darkest Powers Trilogy (Darkest Powers, #1-3)\",eng,4.47,14473,14657,224,142,306,1455,3355,9399,https://images.gr-assets.com/books/1411868332l/8269450.jpg,https://images.gr-assets.com/books/1411868332s/8269450.jpg\n7325,261604,261604,2976393,23,812570812,9780812570820.0,Elizabeth Haydon,1999.0,Rhapsody: Child of Blood,\"Rhapsody: Child of Blood (Symphony of Ages, #1)\",eng,3.95,16329,16962,497,494,1096,3470,5629,6273,https://images.gr-assets.com/books/1453703106l/261604.jpg,https://images.gr-assets.com/books/1453703106s/261604.jpg\n7326,91201,91201,816383,33,553278118,9780553278120.0,Erich Segal,1988.0,Doctors,Doctors,eng,4.0,11331,11736,414,121,532,2614,4447,4022,https://images.gr-assets.com/books/1383563051l/91201.jpg,https://images.gr-assets.com/books/1383563051s/91201.jpg\n7327,142395,142395,2944319,79,1566562937,9781566562940.0,\"Amin Maalouf, Russell Harris\",1988.0,Samarcande,Samarkand,eng,4.2,7600,13959,1116,121,404,2057,5350,6027,https://images.gr-assets.com/books/1327995121l/142395.jpg,https://images.gr-assets.com/books/1327995121s/142395.jpg\n7328,7685763,7685763,10338572,35,399156879,9780399156880.0,J.D. Robb,2010.0,Indulgence in Death,\"Indulgence in Death (In Death, #31)\",eng,4.32,16464,18990,834,76,256,2549,6746,9363,https://images.gr-assets.com/books/1292915498l/7685763.jpg,https://images.gr-assets.com/books/1292915498s/7685763.jpg\n7329,15852479,15852479,21600154,33,316230812,9780316230810.0,NoViolet Bulawayo,2013.0,We Need New Names,We Need New Names,eng,3.71,11262,13208,1826,279,937,3875,5404,2713,https://images.gr-assets.com/books/1352225506l/15852479.jpg,https://images.gr-assets.com/books/1352225506s/15852479.jpg\n7330,894072,894072,879277,5,307021521,9780307021530.0,Marian Potter,1953.0,The Little Red Caboose (Little Golden Book),The Little Red Caboose (Little Golden Book),,4.21,15978,15983,85,174,598,3120,3837,8254,https://images.gr-assets.com/books/1364853044l/894072.jpg,https://images.gr-assets.com/books/1364853044s/894072.jpg\n7331,5093760,5093760,5160502,11,451226801,9780451226810.0,Jen Lancaster,2009.0,\"Pretty in Plaid: A Life, a Witch, and a Wardrobe, or, the Wonder Years Before the Condescending, Egomanical, Self-Centered Smart-Ass Phase\",Pretty in Plaid,eng,3.88,14860,15510,1089,217,960,4116,5450,4767,https://images.gr-assets.com/books/1484147603l/5093760.jpg,https://images.gr-assets.com/books/1484147603s/5093760.jpg\n7332,180930,180930,503350,28,875421180,9780875421190.0,Scott Cunningham,1988.0,Wicca: A Guide for the Solitary Practitioner,Wicca: A Guide for the Solitary Practitioner,en-US,4.01,12264,12770,410,259,714,2737,3937,5123,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347491489l/180930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7333,179142,179142,2537034,42,141185465,9780141185460.0,\"Arthur Miller, Christopher Bigsby\",1947.0,All My Sons,All My Sons,eng,3.87,15337,16124,499,291,1078,4008,5774,4973,https://images.gr-assets.com/books/1309210788l/179142.jpg,https://images.gr-assets.com/books/1309210788s/179142.jpg\n7334,7863274,7863274,11018320,38,330425781,9780330425780.0,Cath Crowley,2010.0,Graffiti Moon,Graffiti Moon,eng,3.9,14176,16494,1840,748,1099,3351,5176,6120,https://images.gr-assets.com/books/1320129868l/7863274.jpg,https://images.gr-assets.com/books/1320129868s/7863274.jpg\n7335,845403,845403,94898,30,688040454,9780688040450.0,John Steptoe,1986.0,Mufaro's Beautiful Daughters: An African Tale,Mufaro's Beautiful Daughters: An African Tale,en-US,4.32,16479,16695,697,174,392,2331,4824,8974,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442969300l/845403._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7336,61904,61904,819610,38,380818612,9780380818620.0,Lois McMaster Bujold,2003.0,Paladin of Souls,\"Paladin of Souls (World of the Five Gods, #2)\",eng,4.13,15855,17377,884,184,568,3011,6675,6939,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388350884l/61904.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7337,13589182,13589182,19176675,23,670024961,9780670024960.0,Robert Greene,2012.0,Mastery,Mastery,,4.27,12717,14215,946,191,494,1855,4441,7234,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348274726l/13589182.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7338,4986,4986,1683550,27,743422007,9780743422000.0,Kurt Vonnegut Jr.,1999.0,\"God Bless You, Dr. Kevorkian\",\"God Bless You, Dr. Kevorkian\",eng,3.83,11543,12640,612,97,712,3691,4826,3314,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388428899l/4986.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7339,3090282,3090282,3121382,12,1416551050,9781416551060.0,Molly Wizenberg,2009.0,A Homemade Life: Stories and Recipes from My Kitchen Table,A Homemade Life: Stories and Recipes from My Kitchen Table,eng,3.94,13310,14009,1690,213,714,3168,5520,4394,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347468210l/3090282.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7340,138069,138069,133087,18,618007016,9780618007010.0,David Wiesner,2001.0,The Three Pigs,The Three Pigs,en-US,4.15,16295,16385,1749,278,713,2977,4781,7636,https://images.gr-assets.com/books/1172092242l/138069.jpg,https://images.gr-assets.com/books/1172092242s/138069.jpg\n7341,26123,26123,26823,36,1400078393,9781400078390.0,Martin E.P. Seligman,1990.0,Learned Optimism: How to Change Your Mind and Your Life,Learned Optimism: How to Change Your Mind and Your Life,en-GB,3.98,11310,12096,540,243,630,2612,4291,4320,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190754l/26123.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7342,7827221,7827221,10880922,17,61779849,9780061779850.0,Kimberly Derting,2011.0,Desires of the Dead,\"Desires of the Dead (The Body Finder, #2)\",en-US,4.07,20654,21374,1588,261,915,4272,7528,8398,https://images.gr-assets.com/books/1288223505l/7827221.jpg,https://images.gr-assets.com/books/1288223505s/7827221.jpg\n7343,563887,563887,1426160,9,590462253,9780590462260.0,\"John Lawrence Peterson, Roberta Carter Clark\",1967.0,The Littles,The Littles,,3.98,15650,15744,225,255,734,3941,4883,5931,https://images.gr-assets.com/books/1360058166l/563887.jpg,https://images.gr-assets.com/books/1360058166s/563887.jpg\n7344,155106,155106,1096604,17,64440192,9780064440200.0,\"Peggy Parish, Barbara Siebel Thomas\",1966.0,Amelia Bedelia and the Surprise Shower,Amelia Bedelia and the Surprise Shower,eng,4.27,14438,14509,107,215,437,2483,3509,7865,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347266336l/155106.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7345,12125,12125,213788,42,689851324,9780689851320.0,Cynthia Voigt,1981.0,\"Homecoming (Tillerman Family, #1)\",\"Homecoming (Tillerman Cycle, #1)\",eng,3.92,17023,18107,1077,546,1097,3864,6414,6186,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390250078l/12125.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7346,112751,112751,990233,35,440240972,9780440240980.0,Karen Marie Moning,2005.0,Spell of the Highlander ,\"Spell of the Highlander (Highlander, #7)\",eng,4.27,21143,22662,850,120,513,3331,7885,10813,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389924700l/112751.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7347,28482,28482,2306480,23,553563696,9780553563700.0,\"Margaret Weis, Tracy Hickman\",1993.0,The Hand of Chaos,\"The Hand of Chaos (The Death Gate Cycle, #5)\",en-US,4.05,14911,15595,118,130,565,3340,5963,5597,https://images.gr-assets.com/books/1327837169l/28482.jpg,https://images.gr-assets.com/books/1327837169s/28482.jpg\n7348,382680,382680,14597583,56,440225442,9780440225450.0,Harlan Coben,1998.0,One False Move,One False Move (Myron Bolitar #5),eng,4.07,13599,15979,689,54,296,3181,7440,5008,https://images.gr-assets.com/books/1403190750l/382680.jpg,https://images.gr-assets.com/books/1403190750s/382680.jpg\n7349,62012,62012,1105543,62,380000830,9780380000840.0,Roger Zelazny,1972.0,The Guns of Avalon,The Guns of Avalon (The Chronicles of Amber #2),eng,4.16,15131,16220,384,70,492,2913,6111,6634,https://images.gr-assets.com/books/1368213721l/62012.jpg,https://images.gr-assets.com/books/1368213721s/62012.jpg\n7350,163465,163465,1258731,56,435124773,9780435124780.0,Katherine Paterson,1978.0,The Great Gilly Hopkins,The Great Gilly Hopkins,eng,3.83,15886,17596,983,547,1170,4460,6014,5405,https://images.gr-assets.com/books/1443418961l/163465.jpg,https://images.gr-assets.com/books/1443418961s/163465.jpg\n7351,32807,32807,1272308,64,425199320,9780425199330.0,Clive Cussler,2003.0,Trojan Odyssey,\"Trojan Odyssey (Dirk Pitt, #17)\",eng,3.92,13635,14568,340,97,536,3901,5973,4061,https://images.gr-assets.com/books/1371338649l/32807.jpg,https://images.gr-assets.com/books/1371338649s/32807.jpg\n7352,138872,138872,497394,18,345338545,9780345338550.0,James Alexander Thom,1981.0,Follow the River,Follow the River,en-US,4.21,13697,14603,1923,185,418,2108,5278,6614,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387651947l/138872.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7353,91571,91571,278178,63,743484908,9780743484910.0,\"William Shakespeare, Barbara A. Mowat, Paul Werstine\",1603.0,Measure for Measure,Measure for Measure,eng,3.67,15474,17562,625,257,1551,5901,5947,3906,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348266360l/91571.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7354,228221,228221,888386,46,425127583,9780425127580.0,\"Owen  West, Dean Koontz\",1981.0,The Mask,The Mask,eng,3.75,14336,14925,229,257,1209,4753,4504,4202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389216755l/228221.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7355,13514612,13514612,19070336,24,1423176375,9781423176370.0,Cristin Terrill,2013.0,All Our Yesterdays,All Our Yesterdays,eng,4.05,16338,18234,3013,414,889,3375,6293,7263,https://images.gr-assets.com/books/1370046261l/13514612.jpg,https://images.gr-assets.com/books/1370046261s/13514612.jpg\n7357,5368,5368,2522906,70,141009829,9780141009830.0,Kathleen Winsor,1944.0,Forever Amber,Forever Amber ,eng,3.98,13286,14607,958,350,905,3059,4675,5618,https://images.gr-assets.com/books/1350464965l/5368.jpg,https://images.gr-assets.com/books/1350464965s/5368.jpg\n7358,8619814,8619814,13490451,74,375868704,9780375868700.0,John  Stephens,2011.0,The Emerald Atlas,\"The Emerald Atlas (The Books of Beginning, #1)\",eng,3.92,15057,16955,2061,352,1008,3773,6366,5456,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180813l/8619814.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7359,28390369,28390369,48487231,32,241144159,9780241144150.0,Zadie Smith,2016.0,Swing Time,Swing Time,eng,3.6,17311,20503,2590,376,1885,6749,8096,3397,https://images.gr-assets.com/books/1456491713l/28390369.jpg,https://images.gr-assets.com/books/1456491713s/28390369.jpg\n7360,42435,42435,41918,24,805073663,9780805073670.0,Doug Stanton,2001.0,In Harm's Way: The Sinking of the U.S.S. Indianapolis and the Extraordinary Story of Its Survivors,In Harm's Way: The Sinking of the U.S.S. Indianapolis and the Extraordinary Story of Its Survivors,,4.25,12406,13346,699,149,271,1797,4951,6178,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442540445l/42435._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7361,1819632,1819632,1819204,13,1598163221,9781598163220.0,Yuna Kagesaki,2003.0,Karin,\"Chibi Vampire, Vol. 01\",eng,3.99,13110,13200,177,486,1021,2635,3056,6002,https://images.gr-assets.com/books/1404303540l/1819632.jpg,https://images.gr-assets.com/books/1404303540s/1819632.jpg\n7362,18667779,18667779,25626888,6,525425888,9780525425880.0,Nina LaCour,2014.0,Everything Leads to You,Everything Leads to You,eng,3.89,17583,18734,2191,580,1193,4257,6366,6338,https://images.gr-assets.com/books/1389744233l/18667779.jpg,https://images.gr-assets.com/books/1389744233s/18667779.jpg\n7363,363851,363851,2621692,22,316058297,9780316058290.0,Wendy Mass,2006.0,Jeremy Fink and the Meaning of Life,Jeremy Fink and the Meaning of Life,en-US,4.02,15567,16317,1522,315,883,3252,5635,6232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442089244l/363851._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7364,216048,216048,209160,14,399237321,9780399237320.0,Patricia Polacco,1998.0,\"Thank You, Mr. Falker\",\"Thank You, Mr. Falker\",en-US,4.52,13049,13604,881,131,272,1209,2735,9257,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438482485l/216048._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7365,20821159,20821159,40167043,25,399158448,9780399158440.0,William Gibson,2014.0,The Peripheral,The Peripheral,eng,3.94,8839,12069,1572,281,621,2335,5102,3730,https://images.gr-assets.com/books/1402651292l/20821159.jpg,https://images.gr-assets.com/books/1402651292s/20821159.jpg\n7366,6464937,6464937,6655407,84,307269760,9780307269770.0,Alice Munro,2009.0,Too Much Happiness,Too Much Happiness,eng,3.82,12106,14749,1917,331,1027,3433,6090,3868,https://images.gr-assets.com/books/1320459874l/6464937.jpg,https://images.gr-assets.com/books/1320459874s/6464937.jpg\n7367,13614836,13614836,19215651,22,162266910X,9781622669100.0,\"J. Lynn, Jennifer L. Armentrout\",2012.0,Tempting the Best Man,\"Tempting the Best Man (Gamble Brothers, #1)\",eng,3.73,25398,28533,1691,536,2272,8530,10334,6861,https://images.gr-assets.com/books/1336112984l/13614836.jpg,https://images.gr-assets.com/books/1336112984s/13614836.jpg\n7368,17158513,17158513,23581952,20,,,C.S. Pacat,2015.0,Prince's Gambit,\"Captive Prince: Volume Two (Captive Prince, #2)\",eng,4.51,15899,22196,2897,135,352,1640,6059,14010,https://images.gr-assets.com/books/1356027904l/17158513.jpg,https://images.gr-assets.com/books/1356027904s/17158513.jpg\n7370,267243,267243,1268146,37,743263065,9780743263060.0,William  Kennedy,1983.0,Ironweed,Ironweed,eng,3.86,12194,13452,535,267,860,3338,5030,3957,https://images.gr-assets.com/books/1408926209l/267243.jpg,https://images.gr-assets.com/books/1408926209s/267243.jpg\n7371,6621101,6621101,14525767,31,345505670,9780345505680.0,Jonathan Kellerman,2009.0,Deception,\"Deception (Alex Delaware, #25)\",en-US,3.96,13026,14320,537,111,493,3602,5730,4384,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441374678l/6621101._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7372,40580,40580,1084282,14,141019999,9780141019990.0,Michael Moore,2001.0,Stupid white men and other sorry excuses for the state of the nation,Stupid White Men,en-GB,3.3,10835,13776,570,573,1845,5736,4086,1536,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349128567l/40580.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7373,23766634,23766634,25126752,18,1408857901,9781408857910.0,Sarah J. Maas,2017.0,A Court of Wings and Ruin,\"A Court of Wings and Ruin (A Court of Thorns and Roses, #3)\",eng,4.54,55037,68830,12210,463,1289,5123,15585,46370,https://images.gr-assets.com/books/1485528243l/23766634.jpg,https://images.gr-assets.com/books/1485528243s/23766634.jpg\n7374,4893390,4893390,4958838,41,7302142,9780007302150.0,Derek Landy,2008.0,The Faceless Ones,\"The Faceless Ones (Skulduggery Pleasant, #3)\",eng,4.4,14971,16785,712,53,230,1881,5366,9255,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347680563l/4893390.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7375,63689,63689,811411,59,618658947,9780618658950.0,Paul Theroux,1969.0,The Great Railway Bazaar: By Train Through Asia ,The Great Railway Bazaar,en-US,3.91,12110,13107,643,310,701,2838,5257,4001,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440437557l/63689._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7376,13117308,13117308,18291985,20,1439192987,9781439192990.0,Brad Thor,2012.0,Black List,\"Black List (Scot Harvath, #11)\",eng,4.2,11176,13920,800,113,382,2028,5439,5958,https://images.gr-assets.com/books/1339809055l/13117308.jpg,https://images.gr-assets.com/books/1339809055s/13117308.jpg\n7377,22417,22417,932279,13,1563894815,9781563894820.0,\"Warren Ellis, Darick Robertson\",1999.0,\"Transmetropolitan, Vol. 2: Lust for Life\",\"Transmetropolitan, Vol. 2: Lust for Life (Transmetropolitan, #2)\",eng,4.35,13527,14546,291,185,349,1637,4391,7984,https://images.gr-assets.com/books/1427758922l/22417.jpg,https://images.gr-assets.com/books/1427758922s/22417.jpg\n7378,101869,101869,322252,28,441013651,9780441013650.0,Charles Stross,2004.0,The Atrocity Archives,\"The Atrocity Archives (Laundry Files, #1)\",en-US,3.95,12600,15790,1292,235,725,3415,6599,4816,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440461724l/101869._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7379,10867,10867,1401713,39,786888016,9780786888020.0,Steve Martin,2003.0,The Pleasure of My Company,The Pleasure of My Company,en-US,3.78,12378,13784,1354,189,882,3938,5557,3218,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442278234l/10867._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7380,138683,138683,4595372,54,143036432,9780143036430.0,C.J. Sansom,2004.0,Dark Fire,\"Dark Fire (Matthew Shardlake, #2)\",en-US,4.24,11927,15152,924,42,217,2063,6581,6249,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441320549l/138683._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7382,11381910,11381910,16313425,25,393081508,9780393081500.0,Liz Moore,2012.0,Heft,Heft,,3.96,12722,14007,2159,160,504,2825,6772,3746,https://images.gr-assets.com/books/1327958826l/11381910.jpg,https://images.gr-assets.com/books/1327958826s/11381910.jpg\n7383,7998,7998,1178237,25,142401420,9780142401420.0,Brian Jacques,1995.0,Outcast of Redwall,\"Outcast of Redwall (Redwall, #8)\",en-US,3.9,15874,16743,197,139,881,4673,5844,5206,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422350841l/7998.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7384,543873,543873,2834931,69,385341067,9780385341070.0,Lloyd Jones,2006.0,Mister Pip,Mister Pip,eng,3.66,11657,14790,1854,348,1269,4354,5892,2927,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1308963140l/543873.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7385,1191,1191,5386,4,030723827X,9780307238280.0,\"Giada De Laurentiis, Victoria Pearson\",2006.0,Giada's Family Dinners,Giada's Family Dinners,,3.99,12061,12081,68,484,582,2361,3795,4859,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193499l/1191.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7386,185012,185012,178823,13,1559362766,9781559362760.0,John Patrick Shanley,2005.0,Doubt: A Parable,Doubt,,4.13,14050,14611,345,191,548,2458,5419,5995,https://images.gr-assets.com/books/1327908288l/185012.jpg,https://images.gr-assets.com/books/1327908288s/185012.jpg\n7387,675614,675614,661618,31,142409863,9780142409860.0,Cate Tiernan,2001.0,Book of Shadows,\"Book of Shadows (Sweep, #1)\",eng,4.04,18691,20597,1132,467,1155,4119,6230,8626,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388801617l/675614.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7388,2141830,2141830,2147319,22,312348266,9780312348270.0,Beth Harbison,2008.0,Secrets of a shoe addict,\"Secrets of a Shoe Addict (Shoe Addict, #2)\",,3.73,12762,13066,413,450,1093,3748,4026,3749,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441063520l/2141830._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7389,22609080,22609080,26314782,28,147679250X,9781476792510.0,Anna Todd,2014.0,After We Fell,\"After We Fell (After, #3)\",eng,3.88,12776,18858,1150,976,1610,3733,4938,7601,https://images.gr-assets.com/books/1420938115l/22609080.jpg,https://images.gr-assets.com/books/1420938115s/22609080.jpg\n7390,6589074,6589074,6782627,16,1442152613,9781442152620.0,Laurie Fabiano,2006.0,Elizabeth Street,Elizabeth Street,eng,3.9,7821,12567,1242,144,608,3016,5430,3369,https://images.gr-assets.com/books/1328420628l/6589074.jpg,https://images.gr-assets.com/books/1328420628s/6589074.jpg\n7391,13415554,13415554,18721148,14,,,Sarah J. Maas,2012.0,The Assassin and the Pirate Lord,\"The Assassin and the Pirate Lord (Throne of Glass, #0.1)\",eng,4.23,20559,21820,1358,138,552,3590,7522,10018,https://images.gr-assets.com/books/1335782612l/13415554.jpg,https://images.gr-assets.com/books/1335782612s/13415554.jpg\n7392,24965,24965,813445,137,143037579,9780143037580.0,\"Søren Kierkegaard, Alastair Hannay\",1843.0,Frygt og Bæven,Fear and Trembling,eng,4.01,10983,13503,638,266,660,2712,4860,5005,https://images.gr-assets.com/books/1309286516l/24965.jpg,https://images.gr-assets.com/books/1309286516s/24965.jpg\n7393,30334,30334,2219294,14,044023803X,9780440238030.0,Amelia Atwater-Rhodes,2003.0,Hawksong,\"Hawksong (The Kiesha'ra, #1)\",eng,4.15,18231,18807,785,258,800,3400,5673,8676,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388389062l/30334.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7394,45260,45260,1396625,23,333725034,9780333725030.0,Peter F. Hamilton,1999.0,The Naked God ,\"The Naked God (Night's Dawn, #3)\",,4.2,12418,14001,327,175,457,2066,5038,6265,https://images.gr-assets.com/books/1316548289l/45260.jpg,https://images.gr-assets.com/books/1316548289s/45260.jpg\n7395,14481,14481,1508836,18,60266880,9780060266880.0,\"Peggy Parish, Wallace Tripp\",1971.0,\"Come Back, Amelia Bedelia\",\"Come Back, Amelia Bedelia\",,4.25,14154,14322,115,195,452,2495,3580,7600,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348600429l/14481.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7396,790171,790171,1127127,140,671726528,9780671726520.0,Thor Heyerdahl,1948.0,Kon-Tiki Ekspedisjonen,Kon-Tiki: Across The Pacific In A Raft,en-US,4.1,13541,15561,835,143,463,3002,6085,5868,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348547584l/790171.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7397,15815364,15815364,21541860,42,1594487294,9781594487290.0,Mohsin Hamid,2013.0,How to Get Filthy Rich in Rising Asia,How to Get Filthy Rich in Rising Asia,eng,3.76,11023,12934,1836,255,886,3520,5287,2986,https://images.gr-assets.com/books/1353428459l/15815364.jpg,https://images.gr-assets.com/books/1353428459s/15815364.jpg\n7398,15852,15852,2638443,266,143039822,9780143039820.0,\"Albert Einstein, Nigel Calder, Robert W. Lawson\",1916.0,Über die spezielle und die allgemeine Relativitätstheorie,Relativity: The Special and the General Theory,eng,4.17,11069,12957,446,174,515,2201,4134,5933,https://images.gr-assets.com/books/1420607613l/15852.jpg,https://images.gr-assets.com/books/1420607613s/15852.jpg\n7399,33770,33770,38609,29,006098824X,9780060988240.0,Anna Maxted,2000.0,Getting Over It,Getting Over It,,3.53,13240,13406,230,607,1415,4453,4130,2801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423599391l/33770.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7400,10866233,10866233,15781430,20,545169178,9780545169170.0,Siobhan Vivian,2012.0,The List,The List,eng,3.46,16569,18700,2601,748,2540,6328,5472,3612,https://images.gr-assets.com/books/1439733432l/10866233.jpg,https://images.gr-assets.com/books/1439733432s/10866233.jpg\n7401,19534,19534,993612,15,055337849X,9780553378500.0,David James Duncan,1992.0,The Brothers K,The Brothers K,eng,4.39,11010,11512,1571,152,331,1097,3254,6678,https://images.gr-assets.com/books/1403176622l/19534.jpg,https://images.gr-assets.com/books/1403176622s/19534.jpg\n7402,9484114,9484114,14369512,18,307591565,9780307591560.0,Shawn Achor,2010.0,The Happiness Advantage: The Seven Principles of Positive Psychology That Fuel Success and Performance at Work,The Happiness Advantage: The Seven Principles of Positive Psychology That Fuel Success and Performance at Work,,4.15,11131,13532,1103,195,466,2204,4974,5693,https://images.gr-assets.com/books/1381289860l/9484114.jpg,https://images.gr-assets.com/books/1381289860s/9484114.jpg\n7403,13167796,13167796,18347052,29,765330539,9780765330540.0,W. Bruce Cameron,2012.0,A Dog's Journey: Another Novel for Humans,\"A Dog's Journey (A Dog's Purpose, #2)\",en-US,4.41,12513,15327,2164,73,282,1615,4681,8676,https://images.gr-assets.com/books/1327061453l/13167796.jpg,https://images.gr-assets.com/books/1327061453s/13167796.jpg\n7405,6672183,6672183,6867146,10,1401225667,9781401225670.0,\"Grant Morrison, Frank Quitely, Philip Tan, Jonathan Glapion, Alex Sinclair\",2010.0,Batman & Robin: Batman Reborn,Batman & Robin: Batman Reborn,eng,4.08,13542,14071,342,200,636,2722,4797,5716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1563698691l/6672183._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7406,1157452,1157452,1145033,9,1421501201,9781421501210.0,Matsuri Hino,2002.0,めるぷり メルヘン☆プリンス 1,\"MeruPuri, Vol. 1 (MeruPuri, #1)\",eng,4.14,14343,14467,164,497,820,2430,3200,7520,https://images.gr-assets.com/books/1324321395l/1157452.jpg,https://images.gr-assets.com/books/1324321395s/1157452.jpg\n7407,11031,11031,1248065,103,156029588,9780156029580.0,\"Arturo Pérez-Reverte, Margaret Jull Costa\",1990.0,La tabla de Flandes,The Flanders Panel,en-CA,3.8,11868,14855,745,258,1074,3854,5874,3795,https://images.gr-assets.com/books/1328874807l/11031.jpg,https://images.gr-assets.com/books/1328874807s/11031.jpg\n7408,576570,576570,1312136,10,823404420,9780823404420.0,\"Janet Stevens, Hans Christian Andersen\",1835.0,Prinsessen på ærten,The Princess and the Pea,,4.1,14851,14867,156,134,673,3381,4120,6559,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348192494l/576570.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7409,4662,4662,3315478,62,684842505,9780684842510.0,\"F. Scott Fitzgerald, Matthew J. Bruccoli\",1920.0,The Short Stories of F. Scott Fitzgerald,The Short Stories,eng,4.23,11525,12955,282,95,307,1895,4846,5812,https://images.gr-assets.com/books/1400891315l/4662.jpg,https://images.gr-assets.com/books/1400891315s/4662.jpg\n7410,397466,397466,2317232,39,067172939X,9780671729390.0,V.C. Andrews,1986.0,Dark Angel,\"Dark Angel (Casteel, #2)\",eng,3.96,14720,15364,179,151,912,3867,4911,5523,https://images.gr-assets.com/books/1322289444l/397466.jpg,https://images.gr-assets.com/books/1322289444s/397466.jpg\n7411,77787,77787,1134058,26,553298046,9780553298050.0,Timothy Zahn,1997.0,Star Wars: Specter of the Past,\"Specter of the Past (Star Wars: The Hand of Thrawn, #1)\",eng,3.98,13705,14439,251,82,529,3527,5745,4556,https://images.gr-assets.com/books/1326718522l/77787.jpg,https://images.gr-assets.com/books/1326718522s/77787.jpg\n7412,25507925,25507925,45286444,19,,,Tyler Oakley,2015.0,Binge,Binge,,4.3,13541,15999,1676,259,536,2051,4423,8730,https://images.gr-assets.com/books/1438341092l/25507925.jpg,https://images.gr-assets.com/books/1438341092s/25507925.jpg\n7413,22471294,22471294,41912642,22,,,Alessandra Torre,2014.0,Black Lies,Black Lies,eng,4.32,18741,22823,3805,351,692,2697,6579,12504,https://images.gr-assets.com/books/1407450110l/22471294.jpg,https://images.gr-assets.com/books/1407450110s/22471294.jpg\n7414,351648,351648,1361691,48,61128856,9780061128850.0,Laura Lippman,2007.0,What The Dead Know,What the Dead Know,en-US,3.54,14404,17182,2066,353,1568,6131,6754,2376,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442370504l/351648._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7415,17798233,17798233,24897193,26,,,\"Jay Crownover, Charlotte Connan de vries\",2014.0,\"Rome (Marked Men, #3)\",\"Rome (Marked Men, #3)\",eng,4.22,26881,28114,2181,162,690,4205,10810,12247,https://images.gr-assets.com/books/1378491674l/17798233.jpg,https://images.gr-assets.com/books/1378491674s/17798233.jpg\n7416,76527,76527,2280279,342,141439777,9780141439780.0,\"Laurence Sterne, Melvyn New\",1767.0,\"The Life and Opinions of Tristram Shandy, Gentleman\",\"The Life and Opinions of Tristram Shandy, Gentleman\",eng,3.74,13641,15954,939,954,1547,3575,4498,5380,https://images.gr-assets.com/books/1403402384l/76527.jpg,https://images.gr-assets.com/books/1403402384s/76527.jpg\n7418,98048,98048,2003391,34,142001821,9780142001820.0,Susan Vreeland,2001.0,The Passion of Artemisia,The Passion of Artemisia,eng,3.86,13791,14772,758,283,818,3759,5719,4193,https://images.gr-assets.com/books/1311648181l/98048.jpg,https://images.gr-assets.com/books/1311648181s/98048.jpg\n7419,270435,270435,124826,23,937611352,9780937611360.0,Louise L. Hay,1976.0,Heal Your Body,Heal Your Body: The Mental Causes for Physical Illness and the Metaphysical Way to Overcome Them,en-US,4.34,11502,11714,125,139,342,1542,3059,6632,https://images.gr-assets.com/books/1404193356l/270435.jpg,https://images.gr-assets.com/books/1404193356s/270435.jpg\n7420,284698,284698,276206,16,159182236X,9781591822360.0,\"Mia Ikumi, Reiko Yoshida\",2003.0,東京ミュウミュウ (Tokyo Mew Mew) 1,\"Tokyo Mew Mew, Vol. 1 (Tokyo Mew Mew, #1)\",en-US,3.95,12970,13450,175,552,1189,2763,2757,6189,https://images.gr-assets.com/books/1371146694l/284698.jpg,https://images.gr-assets.com/books/1371146694s/284698.jpg\n7421,11595276,11595276,16537207,8,62020560,9780062020570.0,Emily M. Danforth,2012.0,The Miseducation of Cameron Post,The Miseducation of Cameron Post,en-US,3.99,16235,17385,2101,493,903,3200,6542,6247,https://images.gr-assets.com/books/1309190566l/11595276.jpg,https://images.gr-assets.com/books/1309190566s/11595276.jpg\n7423,2173611,2173611,2179265,32,61477958,9780061477960.0,Diana Wynne Jones,2008.0,House of Many Ways,\"House of Many Ways (Howl's Moving Castle, #3)\",en-US,4.03,17697,20317,1477,98,715,4376,8350,6778,https://images.gr-assets.com/books/1293848674l/2173611.jpg,https://images.gr-assets.com/books/1293848674s/2173611.jpg\n7424,23602561,23602561,44367493,39,1101874996,9781101875000.0,Don Winslow,2015.0,The Cartel,The Cartel,eng,4.28,9270,12819,1349,119,352,1490,4658,6200,https://images.gr-assets.com/books/1429552939l/23602561.jpg,https://images.gr-assets.com/books/1429552939s/23602561.jpg\n7425,25937671,25937671,45835034,28,1101902760,9781101902770.0,Sue Klebold,2016.0,A Mother's Reckoning: Living in the Aftermath of Tragedy,A Mother's Reckoning: Living in the Aftermath of Tragedy,eng,4.13,12795,16585,2822,305,508,2506,6639,6627,https://images.gr-assets.com/books/1453261078l/25937671.jpg,https://images.gr-assets.com/books/1453261078s/25937671.jpg\n7426,13062,13062,990633,36,446695696,9780446695700.0,Carl Hiaasen,1989.0,Skin Tight,\"Skin Tight (Mick Stranahan, #1)\",en-US,3.96,13039,14239,569,81,426,3413,6443,3876,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439439549l/13062._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7427,3750,3750,1387985,117,142002062,9780142002060.0,Ian Fleming,1955.0,Moonraker,\"Moonraker (James Bond, #3)\",eng,3.7,12016,14685,905,97,921,5041,5820,2806,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388215989l/3750.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7428,364550,364550,3078362,145,521357306,9780521357300.0,\"John Locke, Peter Laslett, Raymond Geuss\",1689.0,Two Treatises of Government,Two Treatises of Government,eng,3.81,13056,13378,120,316,882,3718,4605,3857,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348664298l/364550.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7429,16900,16900,522004,57,1420925229,9781420925230.0,Henry David Thoreau,1995.0,Civil Disobedience and Reading,Civil Disobedience and Other Essays,eng,4.06,12557,13706,227,141,609,2752,5009,5195,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348316137l/16900.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7430,17533,17533,2080617,220,316030899,9780316030890.0,Louisa May Alcott,1876.0,Rose in Bloom,\"Rose in Bloom (Eight Cousins, #2)\",en-US,4.03,16842,18265,430,329,838,3875,6112,7111,https://images.gr-assets.com/books/1344269387l/17533.jpg,https://images.gr-assets.com/books/1344269387s/17533.jpg\n7431,18718848,18718848,26584442,28,,,David  Arnold,2015.0,Mosquitoland,Mosquitoland,eng,3.92,14312,17108,2882,390,1107,3710,6207,5694,https://images.gr-assets.com/books/1402661616l/18718848.jpg,https://images.gr-assets.com/books/1402661616s/18718848.jpg\n7432,25228579,25228579,43508893,7,,,Barbara Claypole White,2015.0,The Perfect Son,The Perfect Son,eng,3.97,10090,10892,926,213,517,2264,4340,3558,https://images.gr-assets.com/books/1429633273l/25228579.jpg,https://images.gr-assets.com/books/1429633273s/25228579.jpg\n7433,82436,82436,1149644,41,375836942,9780375836950.0,Melina Marchetta,1992.0,Looking for Alibrandi,Looking for Alibrandi,eng,3.85,14685,17432,1244,308,991,4419,6951,4763,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554658769l/82436._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7434,17257993,17257993,23852415,7,,,Kristen Ashley,2013.0,Raid,\"Raid (Unfinished Hero, #3)\",eng,4.23,24604,27019,1789,241,809,3833,9838,12298,https://images.gr-assets.com/books/1361025483l/17257993.jpg,https://images.gr-assets.com/books/1361025483s/17257993.jpg\n7435,15813668,15813668,21539864,14,1250014409,9781250014400.0,Darynda Jones,2013.0,Fifth Grave Past the Light,\"Fifth Grave Past the Light (Charley Davidson, #5)\",eng,4.49,21286,24287,2410,63,230,1923,7666,14405,https://images.gr-assets.com/books/1355718001l/15813668.jpg,https://images.gr-assets.com/books/1355718001s/15813668.jpg\n7436,416580,416580,1892181,72,312957572,9780312957580.0,Wilbur Smith,1995.0,The Seventh Scroll,\"The Seventh Scroll (Ancient Egypt, #2)\",en-US,4.1,11501,13284,452,127,531,2387,5065,5174,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438003865l/416580._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7437,12813860,12813860,18066340,11,316084220,9780316084220.0,Kody Keplinger,2012.0,A Midsummer's Nightmare,A Midsummer's Nightmare,eng,3.83,17247,18056,1325,531,1243,4596,6130,5556,https://images.gr-assets.com/books/1327469139l/12813860.jpg,https://images.gr-assets.com/books/1327469139s/12813860.jpg\n7438,17571466,17571466,24510359,23,1476717710,9781476717720.0,Nick Cutter,2014.0,The Troop,The Troop,eng,3.71,11620,13829,2747,444,1200,3561,5339,3285,https://images.gr-assets.com/books/1397768496l/17571466.jpg,https://images.gr-assets.com/books/1397768496s/17571466.jpg\n7439,820480,820480,2831944,46,1405092726,9781405092720.0,C.J. Sansom,2008.0,Revelation,\"Revelation (Matthew Shardlake, #4)\",eng,4.32,11868,14266,752,48,209,1613,5696,6700,https://images.gr-assets.com/books/1327170369l/820480.jpg,https://images.gr-assets.com/books/1327170369s/820480.jpg\n7440,11339,11339,9295,70,292760280,9780292760290.0,\"Pablo Neruda, Stephen Tapscott\",1959.0,Cien sonetos de amor,100 Love Sonnets,eng,4.4,11425,12429,473,145,263,1256,3572,7193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388324821l/11339.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7441,18316089,18316089,25649723,27,1400067243,9781400067240.0,Amy Bloom,2014.0,Lucky Us,Lucky Us,,3.21,11205,13391,1902,681,2312,5208,3845,1345,https://images.gr-assets.com/books/1400853144l/18316089.jpg,https://images.gr-assets.com/books/1400853144s/18316089.jpg\n7442,110393,110393,1460849,46,006053124X,9780060531250.0,Julia Quinn,2005.0,It's In His Kiss,\"It's in His Kiss (Bridgertons, #7)\",eng,4.01,20377,22188,920,149,860,5022,8714,7443,https://images.gr-assets.com/books/1314461965l/110393.jpg,https://images.gr-assets.com/books/1314461965s/110393.jpg\n7443,31538614,31538614,52218734,18,1781106290,9781781106300.0,\"J.K. Rowling, MinaLima\",2016.0,\"Short Stories from Hogwarts of Power, Politics and Pesky Poltergeists\",\"Short Stories from Hogwarts of Power, Politics and Pesky Poltergeists (Pottermore Presents, #2)\",eng,4.2,10032,15880,1246,62,376,2872,5600,6970,https://images.gr-assets.com/books/1471436601l/31538614.jpg,https://images.gr-assets.com/books/1471436601s/31538614.jpg\n7444,9454,9454,995802,179,198245971,9780198245970.0,\"Georg Wilhelm Friedrich Hegel, A.V. Miller, John Niemeyer Findlay\",1807.0,Phänomenologie des Geistes,Phenomenology of Spirit,eng,3.91,11744,12263,231,466,897,2605,3609,4686,https://images.gr-assets.com/books/1425522818l/9454.jpg,https://images.gr-assets.com/books/1425522818s/9454.jpg\n7446,479561,479561,6519560,23,330351435,9780330351430.0,Peter F. Hamilton,1997.0,The Neutronium Alchemist,\"The Neutronium Alchemist (Night's Dawn, #2)\",eng,4.25,12726,14060,282,99,370,1888,5322,6381,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347555003l/479561.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7447,9995135,9995135,14889975,25,373776578,9780373776570.0,Gena Showalter,2012.0,The Darkest Seduction,The Darkest Seduction (Lords of the Underworld #9),eng,4.35,20057,21331,1177,127,515,2676,6464,11549,https://images.gr-assets.com/books/1316891535l/9995135.jpg,https://images.gr-assets.com/books/1316891535s/9995135.jpg\n7448,30226723,30226723,42721001,11,62310712,9780062310710.0,Victoria Aveyard,2017.0,King's Cage,\"King's Cage (Red Queen, #3)\",eng,4.03,30692,36807,5193,683,1887,6895,13675,13667,https://images.gr-assets.com/books/1467121158l/30226723.jpg,https://images.gr-assets.com/books/1467121158s/30226723.jpg\n7450,5557442,5557442,5728574,11,,9789770922810.0,يوسف زيدان,2006.0,ظل الأفعى,ظل الأفعى,ara,3.0,8299,10879,1593,1708,2203,3013,2312,1643,https://images.gr-assets.com/books/1409365252l/5557442.jpg,https://images.gr-assets.com/books/1409365252s/5557442.jpg\n7451,9266810,9266810,14147661,21,61701246,9780061701240.0,Sarah Mlynowski,2011.0,Ten Things We Did (and Probably Shouldn't Have) ,Ten Things We Did (and Probably Shouldn't Have),en-US,3.74,15396,17430,1697,461,1478,4936,5757,4798,https://images.gr-assets.com/books/1293821561l/9266810.jpg,https://images.gr-assets.com/books/1293821561s/9266810.jpg\n7452,13042154,13042154,18206269,25,1442430001,9781442430010.0,Moira Young,2012.0,Rebel Heart,\"Rebel Heart (Dust Lands, #2)\",eng,3.89,16265,17545,1965,484,1140,3929,6268,5724,https://images.gr-assets.com/books/1326311073l/13042154.jpg,https://images.gr-assets.com/books/1326311073s/13042154.jpg\n7453,4507,4507,1370491,32,553803077,9780553803080.0,Julie Gregory,2003.0,Sickened,Sickened: The Memoir of a Munchausen by Proxy Childhood,,3.72,11860,13713,1079,271,1109,4097,4942,3294,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388279744l/4507.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7454,96082,96082,7403922,58,316713732,9780316713730.0,Anita Shreve,2001.0,The Last Time They Met,The Last Time They Met,,3.48,13180,14791,1229,618,1715,5119,4568,2771,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171309348l/96082.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7455,25817493,25817493,45674421,16,62409204,9780062409200.0,Paulette Jiles,2016.0,News of the World,News of the World,eng,4.14,15476,20540,3626,170,573,3324,8636,7837,https://images.gr-assets.com/books/1440342988l/25817493.jpg,https://images.gr-assets.com/books/1440342988s/25817493.jpg\n7456,40710,40710,3245625,22,1416505415,9781416505420.0,Brad Thor,2005.0,Blowback,\"Blowback (Scot Harvath, #4)\",eng,4.17,11410,13098,363,91,330,2153,5177,5347,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924777l/40710.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7457,9864913,9864913,14756358,14,014310425X,9780143104250.0,Devdutt Pattanaik,2010.0,Jaya: An Illustrated Retelling of the Mahabharata,Jaya: An Illustrated Retelling of the Mahabharata,eng,4.2,9534,10597,840,82,220,1487,4542,4266,https://images.gr-assets.com/books/1357361164l/9864913.jpg,https://images.gr-assets.com/books/1357361164s/9864913.jpg\n7458,51114,51114,49887,15,312099436,9780312099440.0,Gail Tsukiyama,1991.0,Women of the Silk,Women of the Silk,en-US,3.94,12769,13177,951,132,581,3135,5451,3878,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441615784l/51114._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7459,54492,54492,2661176,379,140621318,9780140621310.0,Anthony Hope,1894.0,The Prisoner of Zenda,The Prisoner of Zenda,eng,3.87,12530,14746,694,197,817,4073,5337,4322,https://images.gr-assets.com/books/1356449081l/54492.jpg,https://images.gr-assets.com/books/1356449081s/54492.jpg\n7460,8349348,30123399,13202110,24,557489563,9780557489560.0,Amanda Hocking,2010.0,Flutter,\"Flutter (My Blood Approves, #3)\",eng,3.97,14828,17935,576,255,1045,4079,6089,6467,https://images.gr-assets.com/books/1282496658l/8349348.jpg,https://images.gr-assets.com/books/1282496658s/8349348.jpg\n7463,15157,15157,2204735,76,446608890,9780446608890.0,David Baldacci,1999.0,Saving Faith,Saving Faith,eng,3.82,13377,15113,618,154,771,4301,6283,3604,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190537l/15157.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7464,171471,171471,2971091,27,786914041,9780786914040.0,R.A. Salvatore,1999.0,The Spine of the World (Paths of Darkness #2),\"The Spine of the World (Forgotten Realms: Paths of Darkness, #2; Legend of Drizzt, #12)\",en-US,3.89,12099,13409,157,305,972,3248,4318,4566,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388201689l/171471.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7465,308540,308540,299495,48,439568331,9780439568330.0,R.L. Stine,1993.0,The Haunted Mask,\"The Haunted Mask (Goosebumps, #11)\",eng,3.77,14043,14799,563,334,1389,4424,3863,4789,https://images.gr-assets.com/books/1328867787l/308540.jpg,https://images.gr-assets.com/books/1328867787s/308540.jpg\n7466,136641,136641,1125436,47,765349655,9780765349650.0,Douglas Preston,2005.0,Tyrannosaur Canyon,Tyrannosaur Canyon (Wyman Ford #1),eng,3.78,13452,14590,588,212,894,4281,5674,3529,https://images.gr-assets.com/books/1419207931l/136641.jpg,https://images.gr-assets.com/books/1419207931s/136641.jpg\n7467,28016509,28016509,48027180,63,425285049,9780425285050.0,J.P. Delaney,2017.0,The Girl Before,The Girl Before,eng,3.7,23500,34415,4477,829,2691,9883,13716,7296,https://images.gr-assets.com/books/1485972587l/28016509.jpg,https://images.gr-assets.com/books/1485972587s/28016509.jpg\n7468,15673,15673,226002,25,747569118,9780747569110.0,Louis Sachar,1995.0,Wayside School Gets a Little Stranger,Wayside School Gets A Little Stranger (Wayside School #3),eng,4.18,15566,16501,435,208,599,2935,5001,7758,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348972146l/15673.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7469,11279,11279,1623734,2,446362662,9780446362660.0,Dan Simmons,1991.0,Summer of Night,Summer of Night,en-US,4.0,13014,14441,850,302,691,2903,5308,5237,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400270646l/11279.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7470,4961959,4961959,6793325,3,345506391,9780345506400.0,\"Jim Butcher, Mark Powers, Ardian Syaf\",2009.0,Jim Butcher's the Dresden Files: Storm Front,\"The Dresden Files:  Storm Front, Volume 1-  The Gathering Storm\",eng,4.36,11953,11977,201,57,204,1451,3908,6357,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348528100l/4961959.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7471,13064,13064,2160020,24,446695718,9780446695720.0,Carl Hiaasen,1986.0,Tourist Season,Tourist Season,en-US,3.95,13850,14739,619,110,538,3478,6486,4127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438832189l/13064._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7472,16076787,16076787,21872840,5,,9789992195740.0,أحمد خالد توفيق,2012.0,السنجة,السنجة,ara,3.16,10449,10724,1478,1051,1895,3540,2772,1466,https://images.gr-assets.com/books/1349778839l/16076787.jpg,https://images.gr-assets.com/books/1349778839s/16076787.jpg\n7473,366346,366346,4083763,57,778322602,9780778322600.0,Debbie Macomber,2002.0,204 Rosewood Lane,\"204 Rosewood Lane (Cedar Cove, #2)\",eng,4.15,14454,15947,559,113,415,3072,5688,6659,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174153026l/366346._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7474,16071767,16071767,23590922,46,345539478,9780345539470.0,Karin Slaughter,2013.0,Unseen,\"Unseen (Will Trent, #7)\",eng,4.17,12277,16051,1226,113,392,2532,6612,6402,https://images.gr-assets.com/books/1361517437l/16071767.jpg,https://images.gr-assets.com/books/1361517437s/16071767.jpg\n7475,6681333,6681333,6876567,20,525422439,9780525422430.0,Heather Brewer,2010.0,The Chronicles of Vladimir Tod: Eleventh Grade Burns,\"Eleventh Grade Burns (The Chronicles of Vladimir Tod, #4)\",,4.31,14758,15366,609,156,432,2188,4287,8303,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347728700l/6681333.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7476,175324,175324,2887127,80,345330137,9780345330130.0,Robert A. Heinlein,1956.0,Double Star,Double Star,eng,3.88,14661,15787,511,107,764,4475,6023,4418,https://images.gr-assets.com/books/1327984434l/175324.jpg,https://images.gr-assets.com/books/1327984434s/175324.jpg\n7477,390305,390305,280213,63,778322335,9780778322340.0,Alex Kava,2000.0,A Perfect Evil,\"A Perfect Evil (Maggie O'Dell, #1)\",eng,4.02,13542,14595,564,226,513,3075,5706,5075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174376748l/390305._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7479,7981,7981,801203,28,142402451,9780142402450.0,\"Brian Jacques, Allan Curless\",1997.0,The Long Patrol,\"The Long Patrol (Redwall, #10)\",,4.1,15343,15948,199,62,489,3459,5748,6190,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437625105l/7981._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7480,11107244,11107244,16029496,40,670022950,9780670022950.0,Steven Pinker,2010.0,The Better Angels of Our Nature. Why Violence has Declined,The Better Angels of Our Nature: Why Violence Has Declined,eng,4.19,11437,12958,1288,302,514,1774,4134,6234,https://images.gr-assets.com/books/1311281857l/11107244.jpg,https://images.gr-assets.com/books/1311281857s/11107244.jpg\n7481,821003,821003,3355608,63,525444459,9780525444460.0,\"A.A. Milne, Ernest H. Shepard\",1924.0,When We Were Very Young,\"When We Were Very Young (Winnie-the-Pooh, #3)\",en-US,4.32,17922,18677,343,145,472,2823,5139,10098,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198334l/821003.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7482,22367526,22367526,41777804,30,399169520,9780399169530.0,M.O. Walsh,2015.0,My Sunshine Away,My Sunshine Away,eng,3.6,11118,13135,1810,350,1262,4050,5109,2364,https://images.gr-assets.com/books/1412528921l/22367526.jpg,https://images.gr-assets.com/books/1412528921s/22367526.jpg\n7483,370057,370057,360032,18,1414310587,9781414310590.0,Dee Henderson,2001.0,The Truth Seeker (O'Malley #3),The Truth Seeker (O'Malley #3),,4.39,13796,14433,284,72,233,1735,4364,8029,https://images.gr-assets.com/books/1406514043l/370057.jpg,https://images.gr-assets.com/books/1406514043s/370057.jpg\n7484,1244286,1244286,2095743,3,9799625734,9789799625730.0,Dee Lestari,2006.0,Filosofi Kopi: Kumpulan Cerita dan Prosa Satu Dekade,Filosofi Kopi: Kumpulan Cerita dan Prosa Satu Dekade,ind,3.82,8904,9295,926,114,501,2643,3701,2336,https://images.gr-assets.com/books/1356018939l/1244286.jpg,https://images.gr-assets.com/books/1356018939s/1244286.jpg\n7485,364826,364826,2072467,155,,,\"Mika Waltari, ذبیح‌الله منصوری\",1945.0,Sinuhe egyptiläinen ,سینوهه,per,4.08,5907,11871,545,344,641,1958,3743,5185,https://images.gr-assets.com/books/1388361248l/364826.jpg,https://images.gr-assets.com/books/1388361248s/364826.jpg\n7486,7907782,7907782,11176006,50,393079988,9780393079980.0,Nicole Krauss,2010.0,Great House,Great House,eng,3.45,13582,14979,2220,634,1954,4900,4987,2504,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554121436l/7907782._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7487,28374062,28374062,47294100,16,62430211,9780062430210.0,Karin Slaughter,2016.0,The Kept Woman,\"The Kept Woman (Will Trent, #8)\",eng,4.1,8175,18120,1537,216,625,3116,7374,6789,https://images.gr-assets.com/books/1462032117l/28374062.jpg,https://images.gr-assets.com/books/1462032117s/28374062.jpg\n7488,11808919,11808919,15872322,24,,9780983475440.0,Marie Force,2011.0,\"Maid for Love (Gansett Island Series, #1)\",\"Maid for Love (Gansett Island Series, #1)\",eng,3.98,14989,19754,1229,349,1021,4232,7220,6932,https://images.gr-assets.com/books/1402425002l/11808919.jpg,https://images.gr-assets.com/books/1402425002s/11808919.jpg\n7489,95619,95619,1465705,21,842365834,9780842365830.0,Francine Rivers,2003.0,And the Shofar Blew,And the Shofar Blew,eng,4.11,11618,12125,482,154,510,2258,4069,5134,https://images.gr-assets.com/books/1406507476l/95619.jpg,https://images.gr-assets.com/books/1406507476s/95619.jpg\n7490,31357,31357,2589269,44,1841490237,9781841490240.0,Orson Scott Card,1989.0,Prentice Alvin (Tales of Alvin Maker #3),\"Prentice Alvin (Tales of Alvin Maker, #3)\",en-US,3.77,14326,15734,286,137,887,4864,6378,3468,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386745612l/31357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7491,97875,97875,2086052,38,1400079446,9781400079440.0,Alexander McCall Smith,2005.0,44 Scotland Street,\"44 Scotland Street (44 Scotland Street, #1)\",eng,3.61,14795,16768,1932,450,1646,5140,6218,3314,https://images.gr-assets.com/books/1298439814l/97875.jpg,https://images.gr-assets.com/books/1298439814s/97875.jpg\n7492,268275,268275,2644082,59,743466772,9780743466780.0,Sandra Brown,2005.0,Chill Factor,Chill Factor,en-US,3.95,13255,15092,974,147,647,3606,6119,4573,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388186654l/268275.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7493,2108198,2108198,2113600,37,747595380,9780747595380.0,\"Neil Gaiman, Mark Buckingham\",2008.0,Odd and the Frost Giants,Odd and the Frost Giants,eng,3.95,15407,20286,2570,81,687,5043,8927,5548,https://images.gr-assets.com/books/1323790894l/2108198.jpg,https://images.gr-assets.com/books/1323790894s/2108198.jpg\n7495,669780,669780,382533,67,435900668,9780435900660.0,\"Tayeb Salih, Denys Johnson-Davies\",1966.0,موسم الهجرة إلى الشمال,Season of Migration to the North,eng,3.71,5985,13054,1664,623,1184,3205,4418,3624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663113l/669780.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7496,24100,24100,99441,96,006093140X,9780060931410.0,Doris Lessing,1962.0,The Golden Notebook,The Golden Notebook,en-US,3.75,13790,15378,1267,727,1465,3429,5023,4734,https://images.gr-assets.com/books/1367457541l/24100.jpg,https://images.gr-assets.com/books/1367457541s/24100.jpg\n7497,396266,396266,272249,39,7191324,9780007191320.0,Jennifer Donnelly,2008.0,The Winter Rose,\"The Winter Rose (The Tea Rose, #2)\",,4.29,13930,15659,1226,158,348,1959,5495,7699,https://images.gr-assets.com/books/1319665261l/396266.jpg,https://images.gr-assets.com/books/1319665261s/396266.jpg\n7498,29923,29923,168568,19,345434811,9780345434810.0,Jeff Shaara,1991.0,The Last Full Measure,\"The Last Full Measure (The Civil War Trilogy, #3)\",eng,4.22,12037,12619,299,64,218,1924,5063,5350,https://images.gr-assets.com/books/1331939776l/29923.jpg,https://images.gr-assets.com/books/1331939776s/29923.jpg\n7499,120461,120461,1064288,86,2226135022,9782226135020.0,Éric-Emmanuel Schmitt,1996.0,Oscar et la dame rose,Oscar et la dame rose,,4.2,9928,16496,1072,255,663,2516,5141,7921,https://images.gr-assets.com/books/1399593530l/120461.jpg,https://images.gr-assets.com/books/1399593530s/120461.jpg\n7500,46676,46676,45783,55,1400034728,9781400034730.0,Harold S. Kushner,1981.0,When Bad Things Happen to Good People,When Bad Things Happen to Good People,,4.02,10615,11565,643,234,607,2414,3785,4525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192408l/46676.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7501,17768,77432,1200321,69,6499163,9780006499170.0,Patrick O'Brian,1972.0,Post Captain,\"Post Captain (Aubrey/Maturin, #2)\",en-US,4.29,7714,13741,708,38,222,1761,5412,6308,https://images.gr-assets.com/books/1375475591l/17768.jpg,https://images.gr-assets.com/books/1375475591s/17768.jpg\n7502,2208744,2208744,2214520,9,1599901102,9781599901110.0,Jessica Day George,2008.0,\"Dragon Flight (Dragon Slippers, #2)\",\"Dragon Flight (Dragon Slippers, #2)\",en-US,4.18,15918,16460,846,205,499,2840,5512,7404,https://images.gr-assets.com/books/1441437868l/2208744.jpg,https://images.gr-assets.com/books/1441437868s/2208744.jpg\n7503,730501,730501,1401152,193,543904709,9780543904710.0,Susan Coolidge,1872.0,What Katy Did  ,\"What Katy Did (Carr Family, #1)\",eng,3.89,13935,15496,329,311,914,3989,5256,5026,https://images.gr-assets.com/books/1327538133l/730501.jpg,https://images.gr-assets.com/books/1327538133s/730501.jpg\n7504,766917,766917,3259531,24,140309276,9780140309270.0,Robert McCloskey,1942.0,Homer Price,Homer Price (A Puffin Book),eng,4.07,16836,17255,444,253,666,3602,5764,6970,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348994806l/766917.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7505,153782,153782,1112068,14,059039696X,9780590396970.0,Tamora Pierce,2003.0,Shatterglass,\"Shatterglass (The Circle Opens, #4)\",eng,4.16,18253,19233,242,104,596,3731,6493,8309,https://images.gr-assets.com/books/1366303866l/153782.jpg,https://images.gr-assets.com/books/1366303866s/153782.jpg\n7506,18878,18878,18969761,13,345456327,9780345456330.0,David Eddings,1982.0,The Belgariad: Part One - Pawn of Prophecy / Queen of Sorcery / Magician's Gambit,\"The Belgariad, Vol. 1: Pawn of Prophecy / Queen of Sorcery / Magician's Gambit (The Belgariad, #1-3)\",eng,4.27,13215,13502,369,125,419,1945,4262,6751,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185770l/18878.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7507,359194,359194,964959,39,1400064112,9781400064110.0,Philip G. Zimbardo,2007.0,The Lucifer Effect: Understanding How Good People Turn Evil,The Lucifer Effect: Understanding How Good People Turn Evil,eng,3.94,11860,12944,653,345,741,2660,4809,4389,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388365513l/359194.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7508,6606456,6606456,6800379,29,345471016,9780345471020.0,Nancy Pickard,2010.0,The Scent of Rain and Lightning,The Scent of Rain and Lightning,eng,3.79,14423,15925,2098,201,903,4337,7048,3436,https://images.gr-assets.com/books/1320509039l/6606456.jpg,https://images.gr-assets.com/books/1320509039s/6606456.jpg\n7509,361081,361081,6841892,47,553276328,9780553276330.0,\"Clive Cussler, Michael Pritchard\",1983.0,Pacific Vortex!,\"Pacific Vortex! (Dirk Pitt, #1)\",eng,3.76,14476,15512,491,220,913,4951,5693,3735,https://images.gr-assets.com/books/1269478239l/361081.jpg,https://images.gr-assets.com/books/1269478239s/361081.jpg\n7510,17835766,17835766,24956525,24,,,Abbi Glines,2014.0,One More Chance,\"One More Chance (Rosemary Beach, #8; Chance, #2)\",eng,4.29,23899,25308,1898,211,707,3304,8413,12673,https://images.gr-assets.com/books/1397837715l/17835766.jpg,https://images.gr-assets.com/books/1397837715s/17835766.jpg\n7511,23197269,23197269,42742263,24,316098108,9780316098110.0,Kim Stanley Robinson,2015.0,Aurora,Aurora,eng,3.73,9686,12250,1841,316,1011,3163,4957,2803,https://images.gr-assets.com/books/1436300570l/23197269.jpg,https://images.gr-assets.com/books/1436300570s/23197269.jpg\n7512,238137,238137,2881814,56,749934417,9780749934420.0,J.D. Robb,2002.0,Purity in Death,\"Purity in Death (In Death, #15)\",eng,4.33,16947,19962,568,30,198,2677,7394,9663,https://images.gr-assets.com/books/1305124004l/238137.jpg,https://images.gr-assets.com/books/1305124004s/238137.jpg\n7513,116343,116343,1282681,59,60548266,9780060548260.0,Mary  Stewart,1973.0,The Hollow Hills,\"The Hollow Hills (Arthurian Saga, #2)\",eng,4.23,17045,18033,418,47,286,2851,7117,7732,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395143293l/116343.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7514,303454,303454,1879,13,689857950,9780689857960.0,Margaret Peterson Haddix,2004.0,\"Among the Brave (Shadow Children, #5)\",\"Among the Brave (Shadow Children, #5)\",en-US,4.14,16527,16985,565,90,472,3307,6133,6983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388682574l/303454.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7515,43081,43081,42519,25,312330340,9780312330350.0,\"Rusty Young, Thomas McFadden\",2003.0,\"Marching Powder: A True Story of Friendship, Cocaine, and South America's Strangest Jail\",\"Marching Powder: A True Story of Friendship, Cocaine, and South America's Strangest Jail\",eng,4.22,7313,12172,640,71,334,1775,4716,5276,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245700l/43081.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7516,1025039,1025039,2452440,8,1931514585,9781931514580.0,Fuyumi Soryo,1996.0,マース (Mars) #1,\"Mars, Volume 01\",eng,4.13,14044,14105,221,460,754,2411,3337,7143,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438768054l/1025039.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7517,5553,5553,736922,39,465023924,9780465023930.0,Richard Feynman,1962.0,Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant Teacher,Six Easy Pieces: Essentials of Physics By Its Most Brilliant Teacher,eng,4.19,11867,13240,428,133,417,2123,4700,5867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400827293l/5553.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7518,688663,688663,675016,12,307336794,9780307336800.0,Alice Waters,2007.0,The Art of Simple Food: Notes and Recipes from a Delicious Revolution,\"The Art of Simple Food: Notes, Lessons, and Recipes from a Delicious Revolution\",,4.11,13022,13090,375,405,516,2226,4091,5852,https://images.gr-assets.com/books/1320458644l/688663.jpg,https://images.gr-assets.com/books/1320458644s/688663.jpg\n7519,96980,96980,891324,24,345418522,9780345418520.0,Piers Anthony,1981.0,\"Centaur Aisle (Xanth, #4)\",\"Centaur Aisle (Xanth, #4)\",,3.77,15431,16530,164,109,950,5612,5774,4085,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544543l/96980.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7520,332348,332348,1214929,28,385340117,9780385340110.0,Michelle Richmond,2006.0,The Year of Fog,The Year of Fog,,3.46,12248,13257,2229,375,1625,4774,4499,1984,https://images.gr-assets.com/books/1320513174l/332348.jpg,https://images.gr-assets.com/books/1320513174s/332348.jpg\n7521,194479,194479,188088,32,1563897504,9781563897500.0,\"Marv Wolfman, George Pérez\",1985.0,Crisis on Infinite Earths,Crisis on Infinite Earths,en-US,4.01,12915,13350,367,224,786,2906,4196,5238,https://images.gr-assets.com/books/1327906696l/194479.jpg,https://images.gr-assets.com/books/1327906696s/194479.jpg\n7522,24807,24807,3249447,14,1594482225,9781594482230.0,John Hodgman,2005.0,The Areas of My Expertise,The Areas of My Expertise: An Almanac of Complete World Knowledge Compiled with Instructive Annotation and Arranged in Useful Order,en-US,3.81,11246,11935,848,361,930,2830,4301,3513,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442971510l/24807._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7523,31538647,31538647,52218770,18,,,J.K. Rowling,2016.0,Hogwarts: An Incomplete and Unreliable Guide,\"Hogwarts: An Incomplete and Unreliable Guide (Pottermore Presents, #3)\",eng,4.21,14977,15844,1339,63,346,2806,5543,7086,https://images.gr-assets.com/books/1502156557l/31538647.jpg,https://images.gr-assets.com/books/1502156557s/31538647.jpg\n7524,19314,19314,2056506,96,140317201,9780140317210.0,\"Astrid Lindgren, Patricia Crampton, Trina Schart Hyman\",1981.0,Ronja Rövardotter,\"Ronia, the Robber's Daughter\",eng,4.27,14470,18360,580,147,475,2623,6056,9059,https://images.gr-assets.com/books/1451632787l/19314.jpg,https://images.gr-assets.com/books/1451632787s/19314.jpg\n7525,7189177,7189177,16979391,56,1439102392,9781439102400.0,Kathy Reichs,2010.0,Spider Bones,\"Spider Bones (Temperance Brennan, #13)\",eng,3.9,15403,18197,1196,182,881,4716,7139,5279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435331035l/7189177._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7526,235127,235127,6573248,20,1416909834,9781416909840.0,Andrew Clements,2007.0,No Talking,No Talking,eng,3.94,14083,14531,1070,264,875,3428,4864,5100,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388688752l/235127.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7527,23602504,23602504,26659491,62,385354193,9780385354200.0,\"Jo Nesbø, Neil Smith\",2014.0,Blod på snø,\"Blood on Snow (Blood on Snow, #1)\",eng,3.5,9370,13939,1597,371,1528,4993,4788,2259,https://images.gr-assets.com/books/1422370944l/23602504.jpg,https://images.gr-assets.com/books/1422370944s/23602504.jpg\n7528,13282015,13282015,18486388,15,1468139339,9781468139330.0,Elisabeth Naughton,2011.0,Wait for Me,\"Wait for Me (Against All Odds, #1)\",eng,3.98,12572,16174,1409,268,783,3171,6659,5293,https://images.gr-assets.com/books/1344212446l/13282015.jpg,https://images.gr-assets.com/books/1344212446s/13282015.jpg\n7529,12031532,12031532,16997854,35,1905802498,9781905802490.0,Tan Twan Eng,2011.0,The Garden of Evening Mists,The Garden of Evening Mists,eng,4.08,10211,13165,1866,197,554,2244,5213,4957,https://images.gr-assets.com/books/1333033941l/12031532.jpg,https://images.gr-assets.com/books/1333033941s/12031532.jpg\n7531,696177,696177,682496,10,1421511835,9781421511830.0,Arina Tanemura,2005.0,紳士同盟† 1,\"The Gentlemen's Alliance †, Vol. 1\",eng,3.96,13260,13431,150,645,1067,2618,2997,6104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347625163l/696177.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7533,94813,94813,91402,26,843949945,9780843949940.0,Christine Feehan,2002.0,Dark Guardian,\"Dark Guardian (Dark, #9)\",en-US,4.33,17197,18231,348,133,461,2430,5402,9805,https://images.gr-assets.com/books/1327896501l/94813.jpg,https://images.gr-assets.com/books/1327896501s/94813.jpg\n7534,8492,8492,63709,18,1581345267,9781581345260.0,Frank E. Peretti,1992.0,Prophet,Prophet,en-US,3.92,11708,12324,243,230,723,3016,4130,4225,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388474537l/8492.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7535,18602341,18602341,26373227,16,62280708,9780062280700.0,Danielle  Paige,2015.0,The Wicked Will Rise,\"The Wicked Will Rise (Dorothy Must Die, #2)\",eng,3.82,16739,18487,2285,255,1094,5155,7240,4743,https://images.gr-assets.com/books/1423841142l/18602341.jpg,https://images.gr-assets.com/books/1423841142s/18602341.jpg\n7537,20613761,20613761,39895091,12,1555976905,9781555976900.0,Claudia Rankine,2014.0,Citizen: An American Lyric,Citizen: An American Lyric,eng,4.3,14115,14813,1726,248,407,1654,4840,7664,https://images.gr-assets.com/books/1420944502l/20613761.jpg,https://images.gr-assets.com/books/1420944502s/20613761.jpg\n7538,16387,16387,883903,1,1585673927,9781585673930.0,P.G. Wodehouse,1925.0,\"Carry On, Jeeves\",\"Carry on, Jeeves (Jeeves, #3)\",eng,4.28,13133,15144,838,39,186,1983,6222,6714,https://images.gr-assets.com/books/1358970388l/16387.jpg,https://images.gr-assets.com/books/1358970388s/16387.jpg\n7539,1809175,1809175,1808499,50,006137587X,9780061375870.0,\"Sarah Prineas, Antonio Javier Caparo\",2008.0,The Magic Thief,\"The Magic Thief (Magic Thief, #1)\",eng,3.94,14371,15260,1093,363,874,3396,5338,5289,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348418598l/1809175.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7540,29393,29393,522136,9,316787531,9780316787540.0,Michael Azerrad,2001.0,Our Band Could Be Your Life: Scenes from the American Indie Underground 1981-1991,Our Band Could Be Your Life: Scenes from the American Indie Underground 1981-1991,,4.2,10562,10904,563,233,335,1394,3987,4955,https://images.gr-assets.com/books/1168029429l/29393.jpg,https://images.gr-assets.com/books/1168029429s/29393.jpg\n7541,56353,56353,2054888,13,609809105,9780609809100.0,Rosalind Miles,1992.0,\"I, Elizabeth\",\"I, Elizabeth\",en-US,4.01,12132,12353,337,174,549,2614,4656,4360,https://images.gr-assets.com/books/1403186670l/56353.jpg,https://images.gr-assets.com/books/1403186670s/56353.jpg\n7542,22009741,22009741,41322201,33,,9780718155350.0,Marian Keyes,2014.0,The Woman who Stole my Life,The Woman Who Stole My Life,eng,3.52,8693,13675,1419,395,1525,4701,4746,2308,https://images.gr-assets.com/books/1428674566l/22009741.jpg,https://images.gr-assets.com/books/1428674566s/22009741.jpg\n7543,80834,80834,204166,32,1897299214,9781897299210.0,Guy Delisle,2003.0,Pyongyang,Pyongyang: A Journey in North Korea,eng,3.93,12903,14579,1243,216,724,3271,6047,4321,https://images.gr-assets.com/books/1327884533l/80834.jpg,https://images.gr-assets.com/books/1327884533s/80834.jpg\n7544,5055,5055,879303,95,451211472,9780451211480.0,Ken Follett,1991.0,Night over Water,Night Over Water,eng,3.78,12329,14769,718,148,799,4455,6174,3193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388249830l/5055.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7545,18775284,18775284,26680417,13,1476764581,9781476764580.0,Courtney Maum,2014.0,I Am Having So Much Fun Here Without You,I Am Having So Much Fun Here Without You,eng,3.37,9374,10879,1156,539,1533,3835,3270,1702,https://images.gr-assets.com/books/1403390765l/18775284.jpg,https://images.gr-assets.com/books/1403390765s/18775284.jpg\n7546,22192,22192,1588093,48,316912123,9780316912130.0,Cecily von Ziegesar,2003.0,All I Want Is Everything,\"All I Want is Everything (Gossip Girl, #3)\",eng,3.56,15467,16076,422,433,1879,5728,4270,3766,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437790591l/22192._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7547,407999,407999,397306,20,684841487,9780684841490.0,Michael E. Porter,1980.0,Competitive Strategy: Techniques for Analyzing Industries and Competitors,Competitive Strategy: Techniques for Analyzing Industries and Competitors,,4.14,10850,11087,71,182,400,1890,3856,4759,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347564683l/407999.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7548,255458,255458,526775,20,310286700,9780310286710.0,Wayne A. Grudem,1994.0,Systematic Theology: An Introduction to Biblical Doctrine,Systematic Theology: An Introduction to Biblical Doctrine,,4.23,11053,11491,263,238,435,1504,3557,5757,https://images.gr-assets.com/books/1328224325l/255458.jpg,https://images.gr-assets.com/books/1328224325s/255458.jpg\n7549,380976,380976,7176513,58,449003795,9780449003790.0,Sue Grafton,2000.0,\"\"\"P\"\" is for Peril\",\"P is for Peril (Kinsey Millhone, #16)\",,3.85,16799,18512,644,106,655,5617,7662,4472,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390789158l/380976.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7550,25855506,25855506,45724425,24,1449474195,9781449474200.0,Sarah Andersen,2016.0,\"Adulthood Is a Myth: A \"\"Sarah's Scribbles\"\" Collection\",\"Adulthood Is a Myth (Sarah's Scribbles, #1)\",eng,4.14,39601,41223,3594,1669,1734,5824,11787,20209,https://images.gr-assets.com/books/1481219756l/25855506.jpg,https://images.gr-assets.com/books/1481219756s/25855506.jpg\n7551,301538,301538,887432,27,1585676772,9781585676770.0,R. Scott Bakker,2003.0,The Darkness That Comes Before,\"The Darkness That Comes Before (The Prince of Nothing, #1)\",eng,3.78,13146,14555,735,738,1221,3012,5170,4414,https://images.gr-assets.com/books/1421630062l/301538.jpg,https://images.gr-assets.com/books/1421630062s/301538.jpg\n7552,7841677,7841677,10935145,20,1416551603,9781416551610.0,Kristin Kimball,2010.0,\"The Dirty Life: On Farming, Food, and Love\",\"The Dirty Life: On Farming, Food, and Love\",eng,4.04,11559,12667,1764,124,453,2389,5515,4186,https://images.gr-assets.com/books/1277929135l/7841677.jpg,https://images.gr-assets.com/books/1277929135s/7841677.jpg\n7553,9917998,9917998,14360639,19,1442402350,9781442402360.0,Jonathan Maberry,2011.0,Dust & Decay,\"Dust & Decay (Rot & Ruin, #2)\",eng,4.29,13646,14559,1362,159,345,1846,4991,7218,https://images.gr-assets.com/books/1293823083l/9917998.jpg,https://images.gr-assets.com/books/1293823083s/9917998.jpg\n7554,13574417,13574417,19155818,13,1423170288,9781423170280.0,Melissa Landers,2014.0,Alienated,\"Alienated (Alienated, #1)\",eng,3.95,18171,19983,3185,480,1216,4086,7303,6898,https://images.gr-assets.com/books/1384610045l/13574417.jpg,https://images.gr-assets.com/books/1384610045s/13574417.jpg\n7555,18806240,18806240,26737294,16,,,Laura Ruby,2015.0,Bone Gap,Bone Gap,eng,3.86,15150,16756,3451,315,1133,3937,6550,4821,https://images.gr-assets.com/books/1402928507l/18806240.jpg,https://images.gr-assets.com/books/1402928507s/18806240.jpg\n7556,52471,52471,2179632,34,743430344,9780743430340.0,Adriana Trigiani,2001.0,\"Big Cherry Holler (Big Stone Gap, Book 2)\",\"Big Cherry Holler (Big Stone Gap, #2)\",eng,3.92,13356,14754,706,110,609,3763,6071,4201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347322179l/52471.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7558,90475,90475,1361086,54,60096187,9780060096180.0,Meg Cabot,2004.0,Teen Idol,Teen Idol,en-US,3.53,20271,21934,871,529,2631,7845,6621,4308,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348470853l/90475.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7559,5587960,5587960,5759301,60,307271072,9780307271080.0,Chimamanda Ngozi Adichie,2009.0,The Thing Around Your Neck,The Thing Around Your Neck,eng,4.18,11861,14292,1485,49,295,2226,6191,5531,https://images.gr-assets.com/books/1320413162l/5587960.jpg,https://images.gr-assets.com/books/1320413162s/5587960.jpg\n7560,27883214,27883214,45697227,51,1250095255,9781250095250.0,Stephanie Garber,2017.0,Caraval,Caraval,eng,3.97,30975,35821,8360,831,2531,7001,12105,13353,https://images.gr-assets.com/books/1465563623l/27883214.jpg,https://images.gr-assets.com/books/1465563623s/27883214.jpg\n7561,2179832,2179832,3341228,44,61573132,9780061573130.0,James Frey,2008.0,Bright Shiny Morning,Bright Shiny Morning,eng,3.8,10762,11777,1397,332,966,2832,4244,3403,https://images.gr-assets.com/books/1415586680l/2179832.jpg,https://images.gr-assets.com/books/1415586680s/2179832.jpg\n7562,2267195,2267195,1731763,16,078915479X,9780789154800.0,Kate Chopin,1894.0,The Story of an Hour,The Story of an Hour,eng,4.08,13308,14687,438,198,611,2944,4950,5984,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348249668l/2267195.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7563,85391,85391,3101473,48,140249435,9780140249440.0,John Updike,1981.0,Rabbit Is Rich,Rabbit Is Rich (Rabbit Angstrom #3),eng,3.9,12455,13300,499,379,777,2914,4970,4260,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1207331711l/85391.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7564,12752313,12752313,17893211,14,1400069343,9781400069350.0,Anna Quindlen,2012.0,\"Lots of Candles, Plenty of Cake\",\"Lots of Candles, Plenty of Cake\",eng,3.71,12792,14121,2309,311,1196,4029,5330,3255,https://images.gr-assets.com/books/1330649974l/12752313.jpg,https://images.gr-assets.com/books/1330649974s/12752313.jpg\n7565,7531478,7531478,9776802,12,193481332X,9781934813320.0,Cheryl Rainfield,2010.0,Scars,Scars,en-US,4.17,12452,12976,1018,318,683,2056,3285,6634,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347954389l/7531478.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7566,5941079,5941079,6113554,25,60837381,9780060837390.0,Mary Kay Andrews,2009.0,The Fixer Upper,The Fixer Upper,en-US,3.88,14560,15813,1339,161,704,4204,6545,4199,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684989l/5941079._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7567,6688121,6688121,6883482,6,,9789792248620.0,Ahmad Fuadi,2009.0,Negeri 5 Menara,\"Negeri 5 Menara (Negeri 5 Menara, #1)\",ind,4.04,10018,10127,1067,117,403,2033,3938,3636,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1249749162l/6688121.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7568,129510,129510,2585973,43,345496876,9780345496870.0,Naomi Novik,2007.0,Empire of Ivory,\"Empire of Ivory (Temeraire, #4)\",,3.93,15449,17512,880,69,636,4407,7763,4637,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389968861l/129510.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7569,541920,541920,1795751,29,805062882,9780805062880.0,Rick Atkinson,2002.0,\"An Army at Dawn: The War in Africa, 1942-1943\",\"An Army at Dawn: The War in North Africa, 1942-1943 (World War II Liberation Trilogy, #1)\",eng,4.25,11111,12578,756,129,310,1730,4590,5819,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440057096l/541920._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7570,170618,170618,3013598,87,743460529,9780743460520.0,Mary Higgins Clark,2002.0,Daddy's Little Girl,Daddy's Little Girl,,3.85,14602,15904,671,159,810,4703,5808,4424,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347359178l/170618.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7571,30343,30343,13538232,52,1416532358,9781416532350.0,Sandra Brown,2006.0,Ricochet,Ricochet,eng,3.96,13327,14836,668,129,595,3619,5830,4663,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1283517524l/30343.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7572,199530,199530,3263283,35,1400061261,9781400061270.0,Fannie Flagg,2006.0,Can't Wait to Get to Heaven,Can't Wait to Get to Heaven,eng,3.89,12262,14190,1758,178,784,3597,5491,4140,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391183531l/199530.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7573,8706185,8706185,6449955,38,076532153X,9780765321530.0,Jo Walton,2011.0,Among Others,Among Others,eng,3.68,14761,17776,3547,622,1718,4662,6460,4314,https://images.gr-assets.com/books/1317792367l/8706185.jpg,https://images.gr-assets.com/books/1317792367s/8706185.jpg\n7574,238127,238127,1269361,50,749934395,9780749934390.0,J.D. Robb,2001.0,Seduction in Death,\"Seduction in Death (In Death, #13)\",eng,4.3,17565,20374,563,41,243,2812,7645,9633,https://images.gr-assets.com/books/1305123885l/238127.jpg,https://images.gr-assets.com/books/1305123885s/238127.jpg\n7575,56616,56616,1298177,53,679723226,9780679723230.0,James M. Cain,1936.0,Double Indemnity,Double Indemnity,eng,4.12,13559,14770,781,111,443,2593,6014,5609,https://images.gr-assets.com/books/1404786837l/56616.jpg,https://images.gr-assets.com/books/1404786837s/56616.jpg\n7576,490403,490403,1329431,21,312947054,9780312947060.0,Sherrilyn Kenyon,2007.0,Upon the Midnight Clear,\"Upon the Midnight Clear (Dark-Hunter #12, Dream-Hunter #2)\",eng,4.0,21567,22861,653,315,1422,5219,6938,8967,https://images.gr-assets.com/books/1437691219l/490403.jpg,https://images.gr-assets.com/books/1437691219s/490403.jpg\n7577,1908456,1908456,1910340,26,321525655,9780321525660.0,Garr Reynolds,2007.0,Presentation Zen: Simple Ideas on Presentation Design and Delivery (Voices That Matter),Presentation Zen: Simple Ideas on Presentation Design and Delivery,,4.08,10896,11459,390,200,519,2138,3898,4704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348381669l/1908456.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7579,29744,29744,2971270,79,679601597,9780679601590.0,Philip Roth,1959.0,\"Goodbye, Columbus and Five Short Stories\",\"Goodbye, Columbus and Five Short Stories\",,3.87,10089,12882,693,137,641,3338,5467,3299,https://images.gr-assets.com/books/1408068287l/29744.jpg,https://images.gr-assets.com/books/1408068287s/29744.jpg\n7580,9366879,9366879,14250389,7,545141028,9780545141020.0,\"Tom Sniegoski, Jeff Smith, Thomas E. Sniegoski, Steve Hamaker\",2009.0,\"Bone: Quest For The Spark, Book One \",\"Bone: Quest for the Spark, Vol. 1\",eng,4.33,11416,11444,106,184,415,1582,2498,6765,https://images.gr-assets.com/books/1328839457l/9366879.jpg,https://images.gr-assets.com/books/1328839457s/9366879.jpg\n7583,7200351,7200351,6965033,22,312546564,9780312546560.0,Sherrilyn Kenyon,2010.0,No Mercy,\"No Mercy (Dark-Hunter #18, Were-Hunter, #5)\",en-US,4.28,19453,21357,917,76,530,3139,7209,10403,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440982954l/7200351._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7584,23363928,26892110,42797715,14,553418602,9780553418610.0,Scott  Hawkins,2015.0,The Library at Mount Char,The Library at Mount Char,eng,4.07,7814,15908,3321,360,653,2539,6250,6106,https://images.gr-assets.com/books/1416181258l/23363928.jpg,https://images.gr-assets.com/books/1416181258s/23363928.jpg\n7585,551536,551536,538777,17,439845823,9780439845820.0,Chris d'Lacey,2005.0,Fire Star,\"Fire Star (The Last Dragon Chronicles, #3)\",eng,3.91,13595,14228,442,388,1018,3320,4206,5296,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198705l/551536.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7586,12659,12659,2591601,40,375761411,9780375761420.0,James A. Michener,1985.0,Texas,Texas,,4.06,13581,14155,317,138,497,3002,5244,5274,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273149l/12659.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7587,95707,95707,121347,54,446532754,9780446532750.0,Joel Osteen,2004.0,Your Best Life Now: 7 Steps to Living at Your Full Potential,Your Best Life Now: 7 Steps to Living at Your Full Potential,,4.0,10338,10894,542,570,580,1895,3086,4763,https://images.gr-assets.com/books/1344265872l/95707.jpg,https://images.gr-assets.com/books/1344265872s/95707.jpg\n7589,68483,68483,1129239,48,671720147,9780671720150.0,Lois McMaster Bujold,1990.0,The Vor Game,\"The Vor Game (Vorkosigan Saga, #6)\",eng,4.28,15252,16597,549,52,227,2200,6713,7405,https://images.gr-assets.com/books/1322571824l/68483.jpg,https://images.gr-assets.com/books/1322571824s/68483.jpg\n7591,20706269,23341578,27869457,31,316216828,9780316216820.0,Lauren Beukes,2014.0,Broken Monsters,Broken Monsters,eng,3.59,7086,13695,2112,444,1323,4128,5355,2445,https://images.gr-assets.com/books/1394562848l/20706269.jpg,https://images.gr-assets.com/books/1394562848s/20706269.jpg\n7592,11623,11623,3094683,42,385720254,9780385720250.0,\"Sylvia Plath, Karen V. Kukil\",1982.0,The Journals of Sylvia Plath,The Unabridged Journals of Sylvia Plath,eng,4.29,12419,14219,517,97,333,1972,4763,7054,https://images.gr-assets.com/books/1473939372l/11623.jpg,https://images.gr-assets.com/books/1473939372s/11623.jpg\n7593,5986375,5986375,6160130,38,316068225,9780316068220.0,David Foster Wallace,2009.0,This is Water,\"This Is Water: Some Thoughts, Delivered on a Significant Occasion, about Living a Compassionate Life\",eng,4.53,13312,14858,1245,73,237,1170,3675,9703,https://images.gr-assets.com/books/1344270056l/5986375.jpg,https://images.gr-assets.com/books/1344270056s/5986375.jpg\n7594,5552,5552,4099794,43,691024170,9780691024170.0,Richard Feynman,1985.0,QED: The Strange Theory of Light and Matter,QED: The Strange Theory of Light and Matter,,4.23,10438,11480,358,150,321,1721,3835,5453,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920718l/5552.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7597,269386,269386,1266792,16,609804138,9780609804130.0,Jill Conner Browne,1999.0,The Sweet Potato Queens' Book of Love,The Sweet Potato Queens' Book of Love,eng,3.7,12903,13614,789,526,1259,3811,4263,3755,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187488l/269386.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7598,2964700,2964700,2994229,13,375814701,9780375814710.0,Tamora Pierce,2011.0,Mastiff,\"Mastiff (Beka Cooper, #3)\",en-US,4.24,19695,20774,1403,240,703,3057,6547,10227,https://images.gr-assets.com/books/1302921347l/2964700.jpg,https://images.gr-assets.com/books/1302921347s/2964700.jpg\n7599,179264,179264,837760,34,60825316,9780060825320.0,Debra Dean,2006.0,The Madonnas of Leningrad,The Madonnas of Leningrad,,3.77,12620,13964,1895,189,935,3994,5692,3154,https://images.gr-assets.com/books/1479681269l/179264.jpg,https://images.gr-assets.com/books/1479681269s/179264.jpg\n7600,6098691,6098691,6502183,22,345495969,9780345495970.0,Laurell K. Hamilton,2009.0,Divine Misdemeanors ,\"Divine Misdemeanors (Merry Gentry, #8)\",eng,4.04,19184,21387,683,396,1259,4386,6456,8890,https://images.gr-assets.com/books/1327878336l/6098691.jpg,https://images.gr-assets.com/books/1327878336s/6098691.jpg\n7601,2983654,2983654,3014061,39,031236847X,9780312368470.0,Chelsea Cain,2008.0,Sweetheart,\"Sweetheart (Archie Sheridan & Gretchen Lowell, #2)\",en-US,4.05,14342,15495,1242,162,542,3054,6305,5432,https://images.gr-assets.com/books/1311994924l/2983654.jpg,https://images.gr-assets.com/books/1311994924s/2983654.jpg\n7602,7011225,7011225,7256442,87,972212076X,9789722120760.0,José Saramago,2009.0,Caim,Caim,por,3.89,7402,12541,1116,196,725,2957,5059,3604,https://images.gr-assets.com/books/1408538386l/7011225.jpg,https://images.gr-assets.com/books/1408538386s/7011225.jpg\n7603,22321,22321,513838,43,425190447,9780425190450.0,William Gibson,1999.0,All Tomorrow's Parties,\"All Tomorrow's Parties (Bridge, #3)\",en-US,3.88,11672,12890,336,56,556,3540,5425,3313,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420821255l/22321.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7604,7562764,7562764,9886333,33,575088877,9780575088870.0,Hannu Rajaniemi,2010.0,The Quantum Thief,\"The Quantum Thief (Jean le Flambeur, #1)\",eng,3.83,11137,14446,1529,422,974,3208,5824,4018,https://images.gr-assets.com/books/1327950631l/7562764.jpg,https://images.gr-assets.com/books/1327950631s/7562764.jpg\n7605,9925913,9925913,14818841,24,,,John Sandford,2011.0,Shock Wave,\"Shock Wave (Virgil Flowers, #5)\",eng,4.19,11578,14834,906,61,231,2297,6499,5746,https://images.gr-assets.com/books/1292472145l/9925913.jpg,https://images.gr-assets.com/books/1292472145s/9925913.jpg\n7606,12075,12075,3157863,202,415254086,9780415254080.0,Ludwig Wittgenstein,1921.0,Logisch-Philosophische Abhandlung,Tractatus Logico-Philosophicus,en-US,4.06,11069,12182,406,297,699,2188,3813,5185,https://images.gr-assets.com/books/1396830687l/12075.jpg,https://images.gr-assets.com/books/1396830687s/12075.jpg\n7607,215492,215492,2313455,192,2314576,9780002314570.0,Agatha Christie,1933.0,Lord Edgware Dies,\"Lord Edgware Dies (Hercule Poirot, #9)\",eng,3.88,14117,18696,870,78,650,5427,7864,4677,https://images.gr-assets.com/books/1375949065l/215492.jpg,https://images.gr-assets.com/books/1375949065s/215492.jpg\n7608,107021,107021,1399483,19,1401200923,9781401200920.0,\"Jeph Loeb, Jim Lee, Scott Williams\",2003.0,Batman (Volume 2): Hush,\"Batman: Hush, Vol. 2\",eng,4.25,12151,12500,208,126,426,1856,3902,6190,https://images.gr-assets.com/books/1460914478l/107021.jpg,https://images.gr-assets.com/books/1460914478s/107021.jpg\n7609,5600151,5600151,4690388,38,1416585834,9781416585830.0,Spencer Quinn,2008.0,Dog on It,Dog on It (A Chet and Bernie Mystery #1),en-US,3.85,13525,15539,2784,202,809,4023,6540,3965,https://images.gr-assets.com/books/1342376684l/5600151.jpg,https://images.gr-assets.com/books/1342376684s/5600151.jpg\n7611,28351,28351,1579656,25,7169922,9780007169920.0,Dr. Seuss,1937.0,And to Think That I Saw It on Mulberry Street,And to Think That I Saw it on Mulberry Street,en-US,3.99,17584,19213,508,251,1069,4766,5675,7452,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389840830l/28351.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7612,17334495,17334495,24066037,18,141654786X,9781416547860.0,Doris Kearns Goodwin,2013.0,\"The Bully Pulpit: Theodore Roosevelt, William Howard Taft, and the Golden Age of Journalism\",\"The Bully Pulpit: Theodore Roosevelt, William Howard Taft, and the Golden Age of Journalism\",eng,4.16,10384,12008,1498,220,342,1699,4775,4972,https://images.gr-assets.com/books/1386557352l/17334495.jpg,https://images.gr-assets.com/books/1386557352s/17334495.jpg\n7613,15801381,15801381,17064531,20,1416997962,9781416997960.0,Brandon Mull,2013.0,\"Chasing the Prophecy (Beyonders, #3)\",\"Chasing the Prophecy (Beyonders, #3)\",eng,4.35,11816,13529,1039,160,289,1521,4259,7300,https://images.gr-assets.com/books/1356328161l/15801381.jpg,https://images.gr-assets.com/books/1356328161s/15801381.jpg\n7614,77736,77736,1913024,34,671875965,9780671875960.0,David Weber,1994.0,The Short Victorious War,\"The Short Victorious War (Honor Harrington, #3)\",,4.16,14563,16376,336,76,305,2836,6814,6345,https://images.gr-assets.com/books/1321561719l/77736.jpg,https://images.gr-assets.com/books/1321561719s/77736.jpg\n7615,73965,73965,1045053,24,385315546,9780385315550.0,Caroline Knapp,1996.0,Drinking: A Love Story,Drinking: A Love Story,,4.04,12234,13121,850,165,596,2606,4958,4796,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202057l/73965.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7616,1219103,1219103,2308685,444,1421820609,9781421820610.0,Jules Verne,1863.0,Cinq semaines en ballon,\"Five Weeks in a Balloon (Extraordinary Voyages, #1)\",,3.74,13062,14905,282,325,1122,4535,5061,3862,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347375248l/1219103.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7617,10324808,10324808,15227248,22,1250000238,9781250000230.0,\"P.C. Cast, Kristin Cast\",2011.0,Dragon's Oath,\"Dragon's Oath (House of Night Novellas, #1)\",en-US,4.06,16558,17807,881,296,935,3849,5099,7628,https://images.gr-assets.com/books/1359740283l/10324808.jpg,https://images.gr-assets.com/books/1359740283s/10324808.jpg\n7618,7823038,7823038,10865876,22,451463803,9780451463810.0,Kalayna Price,2010.0,Grave Witch,\"Grave Witch (Alex Craft, #1)\",en-US,3.96,22112,23725,1619,368,999,5174,9816,7368,https://images.gr-assets.com/books/1327440625l/7823038.jpg,https://images.gr-assets.com/books/1327440625s/7823038.jpg\n7619,16300,16300,739878,151,2317850,9780002317860.0,Agatha Christie,1976.0,Sleeping Murder,\"Sleeping Murder (Miss Marple, #13)\",eng,3.91,15612,19388,994,102,769,5288,7800,5429,https://images.gr-assets.com/books/1308808135l/16300.jpg,https://images.gr-assets.com/books/1308808135s/16300.jpg\n7620,212525,212525,4708346,10,553212559,9780553212560.0,\"Edith Wharton, Mary Gordon\",1911.0,Ethan Frome and Other Short Fiction,Ethan Frome and Other Short Fiction,en-US,3.65,14271,14319,73,947,1410,3537,4178,4247,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391561572l/212525.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7621,13419891,13419891,18814070,12,,,Sarah J. Maas,2012.0,The Assassin and the Desert,\"The Assassin and the Desert (Throne of Glass, #0.3)\",eng,4.4,18943,19932,1033,103,325,2271,6067,11166,https://images.gr-assets.com/books/1335783827l/13419891.jpg,https://images.gr-assets.com/books/1335783827s/13419891.jpg\n7622,132626,132626,127755,11,679724621,9780679724630.0,\"Friedrich Nietzsche, Walter Kaufmann, R.J. Hollingdale\",1887.0,On the Genealogy of Morals / Ecce Homo,On the Genealogy of Morals/Ecce Homo,en-US,4.14,11893,11940,172,168,437,2130,4067,5138,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1531184643l/132626.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7623,121410,121410,551874,31,618257322,9780618257320.0,Steven Callahan,1986.0,Adrift: Seventy-Six Days Lost at Sea,Adrift: Seventy-Six Days Lost at Sea,en-US,4.09,10666,11553,599,144,378,2157,4449,4425,https://images.gr-assets.com/books/1356596323l/121410.jpg,https://images.gr-assets.com/books/1356596323s/121410.jpg\n7624,129620,129620,3083686,51,1416530738,9781416530730.0,Judith McNaught,1987.0,Once and Always,\"Once and Always (Sequels, #1)\",eng,4.21,18197,19618,733,219,599,3046,6650,9104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1426108166l/129620.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7626,95658,95658,49274,18,316701319,9780316701310.0,Lisi Harrison,2004.0,\"Best Friends for Never (The Clique, #2)\",\"Best Friends for Never (The Clique, #2)\",,3.73,15345,15578,849,519,1604,4324,4228,4903,https://images.gr-assets.com/books/1344263568l/95658.jpg,https://images.gr-assets.com/books/1344263568s/95658.jpg\n7627,11734251,11734251,16683183,44,7331789,9780007331790.0,Bernard Cornwell,2011.0,Death of Kings,\"Death of Kings (The Saxon Stories, #6)\",eng,4.28,10479,13999,718,36,150,1768,5979,6066,https://images.gr-assets.com/books/1327963375l/11734251.jpg,https://images.gr-assets.com/books/1327963375s/11734251.jpg\n7628,9151181,9151181,14030099,30,1605292885,9781605292880.0,\"Howard Schultz, Joanne Gordon\",2007.0,Onward: How Starbucks Fought for Its Life without Losing Its Soul,Onward: How Starbucks Fought for Its Life without Losing Its Soul,en-CA,3.79,11119,12140,760,316,889,3236,4341,3358,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390950547l/9151181.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7629,978098,978098,962994,39,158648303X,9781586483040.0,Laurence Rees,2005.0,Auschwitz: A New History,Auschwitz,eng,4.24,10437,11608,344,252,316,1528,3841,5671,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387726300l/978098.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7630,9013,9013,1019008,61,1592289444,9781592289450.0,Slavomir Rawicz,1956.0,The Long Walk: The True Story of a Trek to Freedom,The Long Walk: The True Story of a Trek to Freedom,eng,4.18,10188,11990,1829,118,357,1876,4543,5096,https://images.gr-assets.com/books/1417980460l/9013.jpg,https://images.gr-assets.com/books/1417980460s/9013.jpg\n7631,682153,682153,668546,72,515135062,9780515135060.0,Nora Roberts,2002.0,Three Fates,Three Fates,eng,4.03,17082,18071,510,167,745,4166,6232,6761,https://images.gr-assets.com/books/1309201516l/682153.jpg,https://images.gr-assets.com/books/1309201516s/682153.jpg\n7632,20983362,20983362,40360384,40,1484715772,9781484715770.0,Alexandra Bracken,2016.0,Passenger,\"Passenger (Passenger, #1)\",eng,3.84,23070,24910,5065,765,1786,5420,9610,7329,https://images.gr-assets.com/books/1446749751l/20983362.jpg,https://images.gr-assets.com/books/1446749751s/20983362.jpg\n7633,102857,102857,3093644,48,425215687,9780425215680.0,\"J.D. Robb, Susan Ericksen\",2006.0,\"Born in Death (In Death, #23)\",\"Born in Death (In Death, #23)\",en-US,4.33,17912,19972,634,61,271,2688,6938,10014,https://images.gr-assets.com/books/1298297096l/102857.jpg,https://images.gr-assets.com/books/1298297096s/102857.jpg\n7634,18666006,18666006,26489935,16,385534833,9780385534830.0,Chris Bohjalian,2014.0,\"Close Your Eyes, Hold Hands\",\"Close Your Eyes, Hold Hands\",eng,3.59,12107,13725,2210,360,1372,4302,5187,2504,https://images.gr-assets.com/books/1392355248l/18666006.jpg,https://images.gr-assets.com/books/1392355248s/18666006.jpg\n7635,834378,834378,2887138,169,451199863,9780451199870.0,Agatha Christie,1953.0,A Pocket Full of Rye,\"A Pocket Full of Rye (Miss Marple, #7)\",eng,3.83,17513,19949,762,88,751,6293,8096,4721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760577l/834378.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7636,7011879,7011879,7257194,7,8188575658,9788188575660.0,\"Durjoy Datta, Maanvi Ahuja\",2008.0,of course i love you,Of Course I Love You...! Till I Find Someone Better...,en-GB,3.21,6671,9661,301,1059,1663,2910,2203,1826,https://images.gr-assets.com/books/1274597947l/7011879.jpg,https://images.gr-assets.com/books/1274597947s/7011879.jpg\n7637,184850,184850,2043796,47,778324907,9780778324900.0,Robyn Carr,2007.0,Virgin River,\"Virgin River (Virgin River, #1)\",,4.12,17371,19555,1513,314,749,3292,7150,8050,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191717l/184850.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7638,12009,12009,2465248,28,1597800449,9781597800440.0,Iain M. Banks,2004.0,The Algebraist,The Algebraist,eng,3.99,13210,14793,606,185,684,3067,5984,4873,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388530602l/12009.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7639,192510,192510,186149,91,964913980X,,\"José Mauro de Vasconcelos, قاسم صنعوی\",1968.0,Meu Pé de Laranja Lima,درخت زیبای من,per,4.36,2716,15091,931,164,392,1644,4516,8375,https://images.gr-assets.com/books/1502523710l/192510.jpg,https://images.gr-assets.com/books/1502523710s/192510.jpg\n7640,22642472,22642472,18444137,26,385539126,9780385539130.0,Margaret Atwood,2014.0,Stone Mattress,Stone Mattress: Nine Tales,eng,3.93,10622,14352,1898,205,663,3003,6568,3913,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404769155l/22642472.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7641,262545,262545,254488,15,151012377,9780151012370.0,Ivan Doig,2006.0,The Whistling Season,The Whistling Season,,4.01,11379,13111,2132,133,521,2548,5842,4067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441691915l/262545._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7642,16000044,16000044,21761131,31,1595145931,9781595145930.0,\"Morgan Rhodes, Michelle Rowen\",2013.0,Rebel Spring,\"Rebel Spring (Falling Kingdoms, #2)\",eng,4.16,18379,20295,2694,155,669,3219,7936,8316,https://images.gr-assets.com/books/1379031383l/16000044.jpg,https://images.gr-assets.com/books/1379031383s/16000044.jpg\n7643,18170134,18170134,25538798,39,316211265,9780316211260.0,\"James Patterson, Marshall Karp\",2014.0,NYPD Red 2,\"NYPD Red 2 (NYPD Red, #2)\",eng,4.07,9293,14204,991,103,382,2711,6180,4828,https://images.gr-assets.com/books/1373501096l/18170134.jpg,https://images.gr-assets.com/books/1373501096s/18170134.jpg\n7644,12661,12661,1200992,40,812970438,9780812970430.0,James A. Michener,1978.0,Chesapeake,Chesapeake,en-US,4.14,15408,16846,656,113,489,3004,6523,6717,https://images.gr-assets.com/books/1421707536l/12661.jpg,https://images.gr-assets.com/books/1421707536s/12661.jpg\n7647,37100,37100,1344080,48,743451791,9780743451800.0,Walter Mosley,1990.0,Devil in a Blue Dress,\"Devil in a Blue Dress (Easy Rawlins, #1)\",eng,3.91,12969,14217,884,134,718,3384,6091,3890,https://images.gr-assets.com/books/1336545202l/37100.jpg,https://images.gr-assets.com/books/1336545202s/37100.jpg\n7648,265650,265650,961,3,763622583,9780763622590.0,\"Michael Rosen, Jane Ray\",2003.0,Shakespeare's Romeo and Juliet,Shakespeare's Romeo and Juliet,,4.09,19052,19117,101,315,836,3940,5827,8199,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173257853l/265650.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7649,298663,298663,1724756,62,679733973,9780679733970.0,Jim Thompson,1952.0,The Killer Inside Me,The Killer Inside Me,,3.9,12425,13993,1046,269,834,3139,5584,4167,https://images.gr-assets.com/books/1403187402l/298663.jpg,https://images.gr-assets.com/books/1403187402s/298663.jpg\n7650,588747,588747,1294338,177,192835203,9780192835210.0,Mary Elizabeth Braddon,1862.0,Lady Audley's Secret,Lady Audley's Secret,eng,3.73,13329,15362,836,425,1186,4318,5587,3846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388692586l/588747.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7651,2528,2528,1030699,91,156010593,9780156010600.0,\"José Saramago, Margaret Jull Costa\",1997.0,Todos os Nomes,All the Names,en-US,3.88,9520,12630,920,202,745,3074,5005,3604,https://images.gr-assets.com/books/1327955213l/2528.jpg,https://images.gr-assets.com/books/1327955213s/2528.jpg\n7652,60057,60057,1319726,33,345472446,9780345472440.0,Adriana Trigiani,2003.0,\"Lucia, Lucia\",\"Lucia, Lucia\",eng,3.92,13360,14952,1352,119,649,3786,6155,4243,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388342036l/60057.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7653,7514925,7514925,9720811,15,62114611,9780062114620.0,Jodi Lynn Anderson,2012.0,Tiger Lily,Tiger Lily,eng,3.98,16217,19116,4012,483,1234,3791,6258,7350,https://images.gr-assets.com/books/1329681513l/7514925.jpg,https://images.gr-assets.com/books/1329681513s/7514925.jpg\n7654,11430,11430,13887,30,842382895,9780842382890.0,\"Karen Kingsbury, Gary Smalley\",2003.0,Return,\"Return (Redemption, #3)\",eng,4.44,11737,12329,279,49,165,1310,3623,7182,https://images.gr-assets.com/books/1406513762l/11430.jpg,https://images.gr-assets.com/books/1406513762s/11430.jpg\n7655,114982,114982,1128656,80,394895894,9780394895900.0,Philip Pullman,1985.0,The Ruby in the Smoke,\"The Ruby in the Smoke (Sally Lockhart, #1)\",en-US,3.75,16214,19279,1129,276,1204,5713,7926,4160,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424038246l/114982.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7656,319300,319300,578160,35,375753834,9780375753830.0,Amanda Foreman,1998.0,Georgiana: Duchess of Devonshire,Georgiana: Duchess of Devonshire,en-US,3.79,11621,13740,1041,398,964,3569,5032,3777,https://images.gr-assets.com/books/1332041559l/319300.jpg,https://images.gr-assets.com/books/1332041559s/319300.jpg\n7658,12551077,12551077,17552643,11,1402271875,9781402271880.0,Miranda Kenneally,2012.0,Stealing Parker,Stealing Parker,en-US,3.88,15997,16789,1216,358,1110,4177,5628,5516,https://images.gr-assets.com/books/1334451985l/12551077.jpg,https://images.gr-assets.com/books/1334451985s/12551077.jpg\n7660,21330,21330,2910,15,1401204864,9781401204860.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Tony Akins, Jimmy Palmiotti\",2005.0,\"Fables, Volume 5: The Mean Seasons\",\"Fables, Vol. 5: The Mean Seasons\",eng,4.19,17909,18221,545,120,340,2889,7435,7437,https://images.gr-assets.com/books/1327870458l/21330.jpg,https://images.gr-assets.com/books/1327870458s/21330.jpg\n7661,82888,82888,1889484,207,850515033,9780850515040.0,Machado de Assis,1899.0,Dom Casmurro,Dom Casmurro,por,4.24,10590,12196,363,127,410,1823,3921,5915,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348286455l/82888.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7662,57913,57913,813,15,440539811,9780440539810.0,\"Robert Shea, Robert Anton Wilson\",1975.0,The Illuminatus! Trilogy,The Illuminatus! Trilogy,eng,4.0,12444,13144,732,439,876,2427,3929,5473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923913l/57913.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7663,6420846,6420846,6610047,23,374324913,9780374324920.0,Alexander Gordon Smith,2009.0,Lockdown,\"Lockdown (Escape from Furnace, #1)\",en-US,4.1,14024,15565,1995,346,734,2651,5128,6706,https://images.gr-assets.com/books/1409279086l/6420846.jpg,https://images.gr-assets.com/books/1409279086s/6420846.jpg\n7664,16696,16696,818664,31,60777109,9780060777100.0,\"Michael Chabon, Jay Ryan\",2004.0,The Final Solution: A Story of Detection,The Final Solution,en-US,3.31,12466,13740,1454,282,1965,6003,4240,1250,https://images.gr-assets.com/books/1407709227l/16696.jpg,https://images.gr-assets.com/books/1407709227s/16696.jpg\n7666,7870457,7870457,11044835,11,1607062607,9781607062610.0,\"John Layman, Rob Guillory\",2010.0,International Flavor,\"Chew, Vol. 2: International Flavor\",eng,4.13,13134,13315,582,256,402,2126,5146,5385,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347756860l/7870457.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7667,452244,452244,440863,21,440212812,9780440212810.0,Poppy Z. Brite,1992.0,Lost Souls,Lost Souls,eng,3.89,13905,14634,626,548,1055,3173,4517,5341,https://images.gr-assets.com/books/1420793346l/452244.jpg,https://images.gr-assets.com/books/1420793346s/452244.jpg\n7668,86658,86658,3876535,525,192801694,9780192801690.0,Joseph Conrad,1907.0,The Secret Agent: A Simple Tale,The Secret Agent,,3.59,11590,14284,943,452,1379,4536,5166,2751,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171075859l/86658.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7669,514210,514210,1223062,39,375705104,9780375705110.0,Alan W. Watts,1957.0,The Way of Zen,The Way of Zen,eng,4.18,11166,11779,375,83,325,2034,4326,5011,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348297121l/514210.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7670,13642710,13642710,19257521,34,857662937,9780857662930.0,Ramez Naam,2012.0,Nexus,\"Nexus (Nexus, #1)\",eng,4.06,9623,12752,1342,181,531,2242,5246,4552,https://images.gr-assets.com/books/1347149654l/13642710.jpg,https://images.gr-assets.com/books/1347149654s/13642710.jpg\n7671,896622,896622,1331430,48,380007789,9780380007780.0,Kathleen E. Woodiwiss,1974.0,The wolf and the dove,The Wolf and the Dove,,4.14,13694,15105,562,312,704,2527,4579,6983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430144076l/896622.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7673,21412360,21412360,30834204,43,1439138338,9781439138340.0,Colm Tóibín,2014.0,Nora Webster,Nora Webster,eng,3.58,10353,13050,2087,416,1335,3896,5066,2337,https://images.gr-assets.com/books/1451442745l/21412360.jpg,https://images.gr-assets.com/books/1451442745s/21412360.jpg\n7674,11532160,11532160,16470427,16,615487424,9780615487430.0,Jamie McGuire,2011.0,Requiem (Providence #2),\"Requiem (Providence, #2)\",eng,4.15,16911,17976,755,193,628,3092,6487,7576,https://images.gr-assets.com/books/1307717182l/11532160.jpg,https://images.gr-assets.com/books/1307717182s/11532160.jpg\n7675,7840156,7840156,10929345,43,345505492,9780345505490.0,Steve Berry,2010.0,The Emperor's Tomb,\"The Emperor's Tomb (Cotton Malone, #6)\",en-US,3.95,13159,14748,779,123,667,3496,5985,4477,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440785779l/7840156._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7676,18079661,18079661,25323488,36,525953086,9780525953080.0,Lisa Gardner,2014.0,Fear Nothing,\"Fear Nothing (Detective D.D. Warren, #7)\",eng,4.1,5982,14645,1351,139,420,2544,6279,5263,https://images.gr-assets.com/books/1372049470l/18079661.jpg,https://images.gr-assets.com/books/1372049470s/18079661.jpg\n7677,184644,184644,178465,6,618443363,9780618443370.0,\"Dorie Greenspan, Alan    Richardson\",1980.0,Baking: From My Home to Yours,Baking: From My Home to Yours,en-US,4.18,11662,11686,133,333,471,1877,3126,5879,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439765067l/184644._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7679,10813480,10813480,15727095,9,,,Kristen Ashley,2011.0,For You,\"For You (The 'Burg, #1)\",eng,4.19,23889,24277,1528,414,793,3414,8756,10900,https://images.gr-assets.com/books/1327337194l/10813480.jpg,https://images.gr-assets.com/books/1327337194s/10813480.jpg\n7680,439363,439363,428191,14,1421513439,9781421513430.0,\"Aya Nakahara, Pookie Rolf\",2001.0,ラブ★コン 1,\"Love★Com, Vol. 1\",eng,4.22,13801,13994,215,398,624,2107,3267,7598,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347987937l/439363.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7681,148584,148584,895143,169,425067823,9780425067830.0,Agatha Christie,1972.0,Elephants Can Remember,\"Elephants Can Remember (Hercule Poirot, #37)\",eng,3.62,15420,18300,884,332,1638,6340,6243,3747,https://images.gr-assets.com/books/1309211932l/148584.jpg,https://images.gr-assets.com/books/1309211932s/148584.jpg\n7683,98,98,4462,45,761129588,9780761129580.0,\"Heidi Murkoff, Sharon Mazel, Heidi Murkoff, Arlene Eisenberg, Sandee Hathaway, Mark D. Widome\",1989.0,What to Expect the First Year,What to Expect the First Year (What to Expect),eng,3.86,10807,13247,784,359,816,3301,4586,4185,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1156876973l/98._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7685,11699349,11699349,16646457,10,039925644X,9780399256450.0,Kristin Levine,2012.0,The Lions of Little Rock,The Lions of Little Rock,eng,4.22,12962,13692,1632,304,447,1744,4655,6542,https://images.gr-assets.com/books/1442034711l/11699349.jpg,https://images.gr-assets.com/books/1442034711s/11699349.jpg\n7686,169487,169487,163663,28,074322423X,9780743224240.0,Phillip C. McGraw,2000.0,Self Matters: Creating Your Life from the Inside Out,Self Matters: Creating Your Life from the Inside Out,en-US,3.62,9609,9920,109,516,1037,2877,2790,2700,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442707143l/169487._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7688,7942008,7942008,11374642,15,1427818762,9781427818770.0,Hidekaz Himaruya,2008.0,ヘタリア 1 Axis Powers,\"Hetalia: Axis Powers, Vol. 1 (Hetalia: Axis Powers, #1)\",en-US,4.35,11985,12075,195,317,461,1380,2391,7526,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388335318l/7942008.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7689,1298171,1298171,1287327,21,1591827582,9781591827580.0,\"Andrew Stanton, Walt Disney Company\",1996.0,Finding Nemo,Finding Nemo,,4.47,12160,12210,51,102,310,1412,2323,8063,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182582191l/1298171.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7690,14480,14480,888928,7,60087803,9780060087810.0,\"Herman Parish, Lynn Sweat\",2002.0,Calling Doctor Amelia Bedelia (I Can Read Book 2),Calling Doctor Amelia Bedelia,,4.29,12422,12452,43,177,404,2059,2849,6963,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925323l/14480.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7691,11324166,11324166,13210557,23,,,Gail Carriger,2012.0,Timeless,\"Timeless (Parasol Protectorate, #5)\",eng,4.12,18617,21814,2176,100,571,3968,9168,8007,https://images.gr-assets.com/books/1327890901l/11324166.jpg,https://images.gr-assets.com/books/1327890901s/11324166.jpg\n7692,112874,112874,142735,35,1589190645,9781589190640.0,Jan Karon,1995.0,\"These High, Green Hills\",\"These High, Green Hills (Mitford Years, #3)\",,4.27,14106,15486,475,45,202,2303,5939,6997,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171663787l/112874._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7693,23158207,23158207,42705109,39,,,\"Eric Schmidt, Jonathan Rosenberg\",2014.0,How Google Works,How Google Works,en-CA,4.03,11703,13299,883,228,592,2456,5287,4736,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422538855l/23158207.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7694,20559676,20559676,25337090,17,,,J.A. Redmerski,2013.0,Killing Sarai,\"Killing Sarai (In the Company of Killers, #1)\",eng,4.17,11301,22997,2409,409,907,3368,7967,10346,https://images.gr-assets.com/books/1389883928l/20559676.jpg,https://images.gr-assets.com/books/1389883928s/20559676.jpg\n7695,10893138,10893138,16947613,64,7350430,9780007350440.0,Cecelia Ahern,2011.0,The Time of My Life,The Time of My Life,eng,3.85,11684,14662,1346,295,978,3677,5393,4319,https://images.gr-assets.com/books/1327918581l/10893138.jpg,https://images.gr-assets.com/books/1327918581s/10893138.jpg\n7696,821000,821000,1359963,58,525444467,9780525444470.0,\"A.A. Milne, Ernest H. Shepard\",1927.0,Now We Are Six,\"Now We Are Six (Winnie-the-Pooh, #4)\",eng,4.38,15840,16568,287,85,355,2267,4411,9450,https://images.gr-assets.com/books/1348199373l/821000.jpg,https://images.gr-assets.com/books/1348199373s/821000.jpg\n7697,3665811,3665811,3709042,13,61671355,9780061671360.0,L.J. Smith,2009.0,The Secret Circle: The Captive Part II and The Power,\"The Captive Part II / The Power (The Secret Circle, #2-3)\",eng,4.11,16231,17148,553,218,815,3446,5116,7553,https://images.gr-assets.com/books/1341592078l/3665811.jpg,https://images.gr-assets.com/books/1341592078s/3665811.jpg\n7698,16045078,16045078,21823294,15,1250019672,9781250019680.0,Mary Kay Andrews,2013.0,Ladies' Night ,Ladies' Night,en-US,3.8,12306,14024,1480,218,791,3961,5657,3397,https://images.gr-assets.com/books/1376835524l/16045078.jpg,https://images.gr-assets.com/books/1376835524s/16045078.jpg\n7699,14759321,14759321,20408849,21,312591837,9780312591830.0,Jane Green,2013.0,Family Pictures,Family Pictures ,eng,3.62,12089,14152,1662,342,1281,4464,5370,2695,https://images.gr-assets.com/books/1365217958l/14759321.jpg,https://images.gr-assets.com/books/1365217958s/14759321.jpg\n7700,7384801,7384801,7085183,32,440245273,9780440245280.0,Lara Adrian,2010.0,\"Taken by Midnight (Midnight Breed, #8)\",\"Taken by Midnight (Midnight Breed, #8)\",eng,4.27,19135,20818,802,105,458,3009,7314,9932,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274764l/7384801.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7701,1249630,1249630,1238374,114,9725681363,9789725681370.0,\"José Maria de Eça de Queirós, Ester de Lemos\",1888.0,Os Maias,Os Maias,por,3.99,10649,12744,376,238,751,2474,4685,4596,https://images.gr-assets.com/books/1362526641l/1249630.jpg,https://images.gr-assets.com/books/1362526641s/1249630.jpg\n7702,23252517,23252517,42794706,19,,,Amy Harmon,2014.0,The Law of Moses,\"The Law of Moses (The Law of Moses, #1)\",eng,4.37,17279,17920,2938,242,528,1794,5120,10236,https://images.gr-assets.com/books/1415024195l/23252517.jpg,https://images.gr-assets.com/books/1415024195s/23252517.jpg\n7703,29975458,29975458,50373510,26,544920953,9780544920960.0,Amy Gentry,2016.0,Good as Gone,Good as Gone,eng,3.53,12121,18041,1739,424,1765,6454,6710,2688,https://images.gr-assets.com/books/1464329788l/29975458.jpg,https://images.gr-assets.com/books/1464329788s/29975458.jpg\n7704,114188,114188,2405272,58,515142883,9780515142880.0,Nora Roberts,1996.0,Holding the Dream,Holding the Dream (Dream Trilogy #2),en-US,4.02,16902,18628,301,98,709,4492,6792,6537,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390318067l/114188.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7706,99297,99297,95730,21,1402208766,9781402208770.0,Amanda Grange,2005.0,Mr. Darcy's Diary,\"Mr. Darcy's Diary (Jane Austen Heroes, #1)\",en-GB,3.63,15151,16028,1445,595,1559,4819,5305,3750,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202072l/99297.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7707,297186,297186,1026877,38,2266120921,9782266120920.0,Robert Crais,1999.0,L.A. Requiem,\"L.A. Requiem (Elvis Cole, #8)\",fre,4.26,12632,14156,493,72,212,1810,5924,6138,https://images.gr-assets.com/books/1328900044l/297186.jpg,https://images.gr-assets.com/books/1328900044s/297186.jpg\n7710,89884,89884,1168090,29,375725768,9780375725760.0,Kent Haruf,2004.0,Eventide,\"Eventide (Plainsong, #2)\",eng,4.16,12661,14087,1302,60,310,2220,6165,5332,https://images.gr-assets.com/books/1320471712l/89884.jpg,https://images.gr-assets.com/books/1320471712s/89884.jpg\n7711,5199185,5199185,18970415,17,080905101X,9780809051010.0,\"Tim Hamilton, Ray Bradbury\",2009.0,Fahrenheit 451: The Authorized Adaptation,Fahrenheit 451: The Authorized Adaptation,eng,3.92,11809,12229,564,277,707,2785,4439,4021,https://images.gr-assets.com/books/1416448162l/5199185.jpg,https://images.gr-assets.com/books/1416448162s/5199185.jpg\n7712,2122216,2122216,2127653,11,,,Maki Minami,2003.0,スペシャル·エー,\"Special A, Vol. 1 (Special A, #1)\",ind,4.18,14607,15289,159,396,755,2499,3621,8018,https://images.gr-assets.com/books/1408207157l/2122216.jpg,https://images.gr-assets.com/books/1408207157s/2122216.jpg\n7713,6255949,6255949,6439033,25,1421527618,9781421527610.0,\"Hiroshi Sakurazaka, 桜坂洋, Alexander O. Smith, Joseph Reeder\",2004.0,オール・ユー・ニード・イズ・キル,All You Need Is Kill,eng,4.05,10073,13242,1463,81,449,2508,5872,4332,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1568911292l/6255949._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7714,24408,24408,2846541,32,395137195,9780395137190.0,Elizabeth George Speare,1961.0,The Bronze Bow,The Bronze Bow,en-US,3.93,15507,16325,1465,487,977,3406,5729,5726,https://images.gr-assets.com/books/1369712582l/24408.jpg,https://images.gr-assets.com/books/1369712582s/24408.jpg\n7715,23426,23426,14280312,77,802142400,9780802142400.0,Alain de Botton,1993.0,Essays in Love,On Love,eng,3.97,8288,12750,1169,168,648,2698,5071,4165,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389004893l/23426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7716,27397,27397,227861,28,679772677,9780679772680.0,Jonathan Harr,1995.0,A Civil Action,A Civil Action,en-US,3.94,11985,12304,701,99,493,2968,5178,3566,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436324928l/27397._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7717,621739,621739,3012947,24,142407089,9780142407080.0,Wanda Gág,1928.0,Millions of Cats,Millions of Cats,,4.08,16991,17260,612,282,921,3510,4888,7659,https://images.gr-assets.com/books/1318725166l/621739.jpg,https://images.gr-assets.com/books/1318725166s/621739.jpg\n7718,313256,313256,2799713,30,,,Christine Feehan,2000.0,Dark challenge,\"Dark Challenge (Dark, #5)\",,4.23,17015,18612,355,120,556,3150,5924,8862,https://images.gr-assets.com/books/1330425767l/313256.jpg,https://images.gr-assets.com/books/1330425767s/313256.jpg\n7719,15791403,15791403,21513003,38,1611130433,9781611130430.0,\"James Patterson, David Ellis\",2013.0,Mistress,Mistress,,3.52,10475,13598,1565,577,1561,4362,4368,2730,https://images.gr-assets.com/books/1375363772l/15791403.jpg,https://images.gr-assets.com/books/1375363772s/15791403.jpg\n7720,208146,208146,201468,23,395570352,9780395570360.0,Allen Say,1993.0,Grandfather's Journey,Grandfather's Journey,en-US,4.12,13337,13547,1138,257,579,2453,4269,5989,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403355395l/208146.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7721,38030,38030,811180,37,60519134,9780060519130.0,Mary Kay Andrews,2002.0,Savannah Blues,\"Savannah Blues (Weezie and Bebe Mysteries, #1)\",en-US,3.97,13886,15169,1036,123,572,3594,6157,4723,https://images.gr-assets.com/books/1327883095l/38030.jpg,https://images.gr-assets.com/books/1327883095s/38030.jpg\n7722,294043,294043,285324,34,038081093X,9780380810930.0,James Rollins,2000.0,Excavation,Excavation,en-US,4.02,13148,14341,506,128,537,3230,5478,4968,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1401242550l/294043.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7724,144789,144789,504379,47,312937660,9780312937670.0,Matthew Reilly,2003.0,Scarecrow,\"Scarecrow (Shane Schofield, #3)\",eng,4.21,11900,12927,420,147,414,1991,4414,5961,https://images.gr-assets.com/books/1316635676l/144789.jpg,https://images.gr-assets.com/books/1316635676s/144789.jpg\n7725,9064899,9064899,13942966,19,61985880,9780061985880.0,Kiersten White,2012.0,Endlessly,\"Endlessly (Paranormalcy, #3)\",eng,3.99,18789,19490,1528,292,1177,4388,6202,7431,https://images.gr-assets.com/books/1320349604l/9064899.jpg,https://images.gr-assets.com/books/1320349604s/9064899.jpg\n7727,73184,73184,996684,26,1573225681,9781573225690.0,Thich Nhat Hanh,1995.0,\"Living Buddha, Living Christ\",\"Living Buddha, Living Christ\",eng,4.13,10943,11804,514,219,374,2052,4160,4999,https://images.gr-assets.com/books/1309211729l/73184.jpg,https://images.gr-assets.com/books/1309211729s/73184.jpg\n7728,1170158,1170158,964597,40,140050930,9780140050940.0,Ursula K. Le Guin,1975.0,The Earthsea Trilogy,The Earthsea Trilogy,eng,4.25,14199,15178,296,158,408,2185,5190,7237,https://images.gr-assets.com/books/1295382040l/1170158.jpg,https://images.gr-assets.com/books/1295382040s/1170158.jpg\n7729,17325147,17325147,24022649,21,1477817158,9781477817160.0,Jessica Park,2013.0,Left Drowning,\"Left Drowning (Left Drowning, #1)\",eng,4.14,17461,20780,2437,480,934,3191,6684,9491,https://images.gr-assets.com/books/1372359048l/17325147.jpg,https://images.gr-assets.com/books/1372359048s/17325147.jpg\n7730,7268995,7268995,8391024,18,1596434023,9781596434030.0,\"Philip C. Stead, Erin E. Stead\",2010.0,A Sick Day for Amos McGee,A Sick Day for Amos McGee,en-US,4.25,15444,15473,1925,275,522,2192,4630,7854,https://images.gr-assets.com/books/1312019421l/7268995.jpg,https://images.gr-assets.com/books/1312019421s/7268995.jpg\n7731,18651980,18651980,26112550,23,62286447,9780062286440.0,Smith Henderson,2014.0,Fourth of July Creek,Fourth of July Creek,eng,3.83,10390,11935,1920,333,830,2600,4952,3220,https://images.gr-assets.com/books/1417981221l/18651980.jpg,https://images.gr-assets.com/books/1417981221s/18651980.jpg\n7732,276877,276877,2883746,40,758211821,9780758211830.0,Lisa Jackson,2007.0,Absolute Fear,\"Absolute Fear (New Orleans, #4)\",en-US,4.15,13190,13864,381,113,388,2553,5121,5689,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435282812l/276877._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7733,43992,43992,5951603,55,743292499,9780743292500.0,Greg Iles,2006.0,True Evil,True Evil,eng,4.05,11234,13779,835,109,429,2729,5884,4628,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433562939l/43992._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7734,59091,59091,1238780,80,082031661X,9780820316610.0,\"Erskine Caldwell, Lewis Nordan\",1932.0,Tobacco Road,Tobacco Road (Brown Thrasher Books),en-US,3.73,10959,11779,587,411,983,3087,4154,3144,https://images.gr-assets.com/books/1369852920l/59091.jpg,https://images.gr-assets.com/books/1369852920s/59091.jpg\n7735,1747896,1747896,3254095,43,802715354,9780802715360.0,Kate Summerscale,2008.0,The Suspicions of Mr. Whicher: Murder and the Undoing of a Great Victorian Detective,The Suspicions of Mr. Whicher: A Shocking Murder and the Undoing of a Great Victorian Detective,en-US,3.43,11316,14608,1652,616,1898,4959,4881,2254,https://images.gr-assets.com/books/1312021413l/1747896.jpg,https://images.gr-assets.com/books/1312021413s/1747896.jpg\n7736,425377,425377,414437,48,380776162,9780380776160.0,Loretta Chase,1995.0,Lord of Scoundrels,\"Lord of Scoundrels (Scoundrels, #3)\",eng,4.12,19137,22132,1652,422,1003,3765,7333,9609,https://images.gr-assets.com/books/1381766823l/425377.jpg,https://images.gr-assets.com/books/1381766823s/425377.jpg\n7737,60177,60177,891152,262,543895149,9780543895140.0,L. Frank Baum,1907.0,Ozma of Oz,\"Ozma of Oz (Oz, #3)\",eng,3.97,14829,17270,777,140,660,4484,6356,5630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170538598l/60177._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7738,2371,2371,1391380,28,844662925,9780844662920.0,David McCullough,1968.0,The Johnstown Flood,The Johnstown Flood,eng,4.11,11691,13740,1202,121,351,2442,5842,4984,https://images.gr-assets.com/books/1313667349l/2371.jpg,https://images.gr-assets.com/books/1313667349s/2371.jpg\n7739,3268926,3268926,3132696,22,141659485X,9781416594860.0,Glenn Beck,2008.0,The Christmas Sweater,The Christmas Sweater,eng,3.79,12916,13413,2361,417,1064,3409,4573,3950,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442052035l/3268926._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7740,16074748,16074748,21525091,45,1442449632,9781442449630.0,Rachel Renée Russell,2010.0,Tales From a Not-So-Happy-Heartbreaker,\"Tales from a Not-So-Happy Heartbreaker (Dork Diaries, #6)\",eng,4.42,9554,13170,638,270,390,1405,2562,8543,https://images.gr-assets.com/books/1418103694l/16074748.jpg,https://images.gr-assets.com/books/1418103694s/16074748.jpg\n7741,294045,294045,1018137,31,380818809,9780380818810.0,James Rollins,2001.0,Deep Fathom,Deep Fathom,eng,4.07,13227,14153,360,101,493,2981,5348,5230,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348924000l/294045.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7742,3216451,3216451,3887843,47,446533424,9780446533420.0,Nelson DeMille,2008.0,The Gate House,The Gate House,en-US,3.71,12625,13679,1207,445,1112,3767,5004,3351,https://images.gr-assets.com/books/1397190673l/3216451.jpg,https://images.gr-assets.com/books/1397190673s/3216451.jpg\n7743,19501672,19501672,24797649,24,62294806,9780062294810.0,\"J. Lynn, Jennifer L. Armentrout\",2014.0,Stay with Me,\"Stay with Me (Wait for You, #3)\",eng,4.17,20654,23018,1876,222,726,3678,8588,9804,https://images.gr-assets.com/books/1400524327l/19501672.jpg,https://images.gr-assets.com/books/1400524327s/19501672.jpg\n7744,15743075,15743075,13626536,54,758290411,9780758290410.0,Sylvia Day,2011.0,Seven Years to Sin,Seven Years to Sin,en-US,3.89,10703,16403,1022,371,979,3951,5892,5210,https://images.gr-assets.com/books/1355259011l/15743075.jpg,https://images.gr-assets.com/books/1355259011s/15743075.jpg\n7745,13580928,13580928,19165894,14,1423166000,9781423166010.0,Ally Carter,2013.0,Perfect Scoundrels,\"Perfect Scoundrels (Heist Society, #3)\",en-GB,4.28,20029,20912,1711,145,406,2889,7463,10009,https://images.gr-assets.com/books/1340716595l/13580928.jpg,https://images.gr-assets.com/books/1340716595s/13580928.jpg\n7746,6562380,6562380,6755222,24,547225474,9780547225470.0,\"Larry Bird, Earvin Johnson, Jackie MacMullan\",2009.0,When the Game Was Ours,When the Game Was Ours,en-US,4.16,9401,9869,377,206,331,1630,3207,4495,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439998377l/6562380._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7747,66676,66676,231629,28,786937904,9780786937900.0,R.A. Salvatore,2004.0,The Two Swords (Hunter's Blades #3),\"The Two Swords (Forgotten Realms: Hunter's Blades, #3; Legend of Drizzt, #16)\",en-GB,4.16,11756,12670,114,68,444,2288,4407,5463,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390694377l/66676.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7748,31304,31304,908233,179,451200187,9780451200180.0,Agatha Christie,1971.0,Nemesis,\"Nemesis (Miss Marple, #12)\",eng,3.84,15406,17889,775,159,1047,5104,6749,4830,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760569l/31304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7749,3379,3379,91467,32,1582342156,9781582342150.0,Douglas Coupland,2001.0,All Families Are Psychotic,All Families are Psychotic,,3.69,10461,11830,531,211,923,3638,4592,2466,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405992884l/3379.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7750,867387,867387,3100762,39,61000019,9780061000010.0,Tony Hillerman,1970.0,The Blessing Way,\"The Blessing Way (Leaphorn & Chee, #1)\",en-US,4.06,14138,15443,651,117,421,3133,6516,5256,https://images.gr-assets.com/books/1179033344l/867387.jpg,https://images.gr-assets.com/books/1179033344s/867387.jpg\n7751,12029468,12029468,16995682,20,312591829,9780312591820.0,Jane Green,2012.0,Another Piece of My Heart,Another Piece of My Heart,eng,3.7,11882,13585,1451,327,1044,4059,5126,3029,https://images.gr-assets.com/books/1321468393l/12029468.jpg,https://images.gr-assets.com/books/1321468393s/12029468.jpg\n7752,1457790,1457790,1448591,100,9137126385,9789137126390.0,Camilla Läckberg,2005.0,Stenhuggaren,\"Stenhuggaren (Patrik Hedström, #3)\",swe,3.85,6435,15722,1269,260,759,3862,7092,3749,https://images.gr-assets.com/books/1334876462l/1457790.jpg,https://images.gr-assets.com/books/1334876462s/1457790.jpg\n7753,1908511,1908511,1910398,10,1423109600,9781423109600.0,Mo Willems,2008.0,The Pigeon Wants a Puppy!,The Pigeon Wants a Puppy!,en-US,4.37,17490,17555,730,213,496,2174,4458,10214,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442862172l/1908511._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7754,22551809,22551809,42009504,21,081299325X,9780812993260.0,David  Brooks,2015.0,The Road to Character,The Road to Character,eng,3.66,10648,12263,1213,574,1189,3279,4001,3220,https://images.gr-assets.com/books/1422216361l/22551809.jpg,https://images.gr-assets.com/books/1422216361s/22551809.jpg\n7755,23884,23884,1066730,135,1400043336,9781400043330.0,\"Gabriel García Márquez, Edith Grossman\",1989.0,El general en su laberinto,The General in His Labyrinth,eng,3.66,10286,13356,604,241,1124,4243,5011,2737,https://images.gr-assets.com/books/1361537151l/23884.jpg,https://images.gr-assets.com/books/1361537151s/23884.jpg\n7756,60142,60142,2115431,126,8466309152,9788466309160.0,Mario Vargas Llosa,1962.0,La ciudad y los perros,La ciudad y los perros,spa,4.09,9782,11826,497,182,427,2026,4708,4483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388862058l/60142.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7757,18599754,18599754,26365948,22,62271121,9780062271130.0,Cammie McGovern,2014.0,Amy & Matthew,Say What You Will,eng,3.7,11559,13778,1905,408,1202,3951,4796,3421,https://images.gr-assets.com/books/1392738015l/18599754.jpg,https://images.gr-assets.com/books/1392738015s/18599754.jpg\n7758,21489683,21489683,40816611,52,345543858,9780345543850.0,Tess Gerritsen,2014.0,Die Again,\"Die Again (Rizzoli & Isles, #11)\",eng,4.16,10837,15729,1618,94,384,2524,6674,6053,https://images.gr-assets.com/books/1395144977l/21489683.jpg,https://images.gr-assets.com/books/1395144977s/21489683.jpg\n7759,85993,85993,1926611,69,60724552,9780060724560.0,Meg Cabot,2006.0,Party Princess,\"Party Princess (The Princess Diaries, #7)\",,3.67,19068,21002,498,393,1893,7070,6487,5159,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266468983l/85993.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7761,323289,323289,30783,64,044619154X,9780446191550.0,Sandra Brown,1995.0,Witness,The Witness,eng,3.98,10558,14481,751,144,579,3200,6017,4541,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266524389l/323289.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7762,6692041,6692041,311976,64,1608190463,9781608190460.0,Susan Abulhawa,2006.0,The Scar of David,Mornings in Jenin,,4.35,8590,13222,2386,150,331,1378,4229,7134,https://images.gr-assets.com/books/1312020216l/6692041.jpg,https://images.gr-assets.com/books/1312020216s/6692041.jpg\n7763,207694,207694,201020,24,60560118,9780060560120.0,Melissa Nathan,2003.0,The Nanny,The Nanny,,3.78,10872,11250,189,337,896,3116,3487,3414,https://images.gr-assets.com/books/1389595555l/207694.jpg,https://images.gr-assets.com/books/1389595555s/207694.jpg\n7764,22892122,22892122,42462101,10,1501101536,9781501101530.0,Katy Evans,2015.0,Manwhore,\"Manwhore (Manwhore, #1)\",eng,4.14,19220,21242,2423,438,999,3105,7308,9392,https://images.gr-assets.com/books/1421552037l/22892122.jpg,https://images.gr-assets.com/books/1421552037s/22892122.jpg\n7765,16479439,16479439,10753679,28,804136572,9780804136570.0,Peter Clines,2010.0,Ex-Heroes,\"Ex-Heroes (Ex-Heroes, #1)\",,3.87,5354,12111,1258,163,688,2926,5119,3215,https://images.gr-assets.com/books/1360646185l/16479439.jpg,https://images.gr-assets.com/books/1360646185s/16479439.jpg\n7766,89184,89184,86076,32,441012914,9780441012920.0,Alastair Reynolds,2003.0,Absolution Gap,Absolution Gap,en-GB,4.01,12105,13441,421,82,538,2745,5871,4205,https://images.gr-assets.com/books/1309210984l/89184.jpg,https://images.gr-assets.com/books/1309210984s/89184.jpg\n7767,17490,17490,19047,21,1405201711,9781405201710.0,Enid Blyton,1991.0,\"The Faraway Tree Stories (The Enchanted Wood, The Faraway Tree, The Folk of the Faraway Tree)\",The Faraway Tree Stories (The Faraway Tree #1-3),eng,4.28,11405,13026,293,213,421,1887,3543,6962,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388863626l/17490.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7768,171001,171001,2264761,17,874869226,9780874869220.0,Misty Bernall,1999.0,She Said Yes: The Unlikely Martyrdom of Cassie Bernall,She Said Yes: The Unlikely Martyrdom of Cassie Bernall,eng,3.9,12272,12771,610,349,909,3065,3778,4670,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663661l/171001.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7769,30919,30919,1001166,62,141187492,9780141187500.0,Evelyn Waugh,1937.0,Scoop,Scoop,eng,3.86,12032,13654,703,212,811,3459,5306,3866,https://images.gr-assets.com/books/1416017359l/30919.jpg,https://images.gr-assets.com/books/1416017359s/30919.jpg\n7770,85622,85622,2637573,12,609809547,9780609809550.0,Rita Golden Gelman,2001.0,Tales of a Female Nomad: Living at Large in the World,Tales of a Female Nomad: Living at Large in the World,eng,3.84,11380,11886,1142,357,868,2847,4022,3792,https://images.gr-assets.com/books/1320531284l/85622.jpg,https://images.gr-assets.com/books/1320531284s/85622.jpg\n7771,19631,19631,1769,26,312241224,9780312241220.0,Lorrie Moore,1998.0,Birds of America: Stories,Birds of America,eng,4.12,10768,11602,976,140,476,1923,4416,4647,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388641896l/19631.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7772,26252659,26252659,46249382,15,692572031,9780692572030.0,Lauren Blakely,2016.0,Big Rock,Big Rock,eng,3.97,15203,20083,2363,340,1081,4307,7531,6824,https://images.gr-assets.com/books/1485375190l/26252659.jpg,https://images.gr-assets.com/books/1485375190s/26252659.jpg\n7773,23207027,28374007,42750582,26,,,Kendare Blake,2016.0,Three Dark Crowns,\"Three Dark Crowns (Three Dark Crowns, #1)\",eng,3.86,9386,21650,4782,467,1491,5006,8385,6301,https://images.gr-assets.com/books/1469265644l/23207027.jpg,https://images.gr-assets.com/books/1469265644s/23207027.jpg\n7774,6422680,6422680,6611909,34,031604279X,9780316042800.0,Elizabeth Bard,2010.0,\"Lunch in Paris: A Love Story, with Recipes\",\"Lunch in Paris: A Love Story, with Recipes\",eng,3.67,11458,12522,1357,318,1052,3902,4477,2773,https://images.gr-assets.com/books/1344266322l/6422680.jpg,https://images.gr-assets.com/books/1344266322s/6422680.jpg\n7775,159177,159177,153639,32,451200829,9780451200820.0,John Jakes,1984.0,Love and War ,\"Love and War (North and South, #2)\",eng,4.1,13844,14353,249,113,449,2913,5269,5609,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389903265l/159177.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7777,9443405,9443405,6498897,44,316074233,9780316074230.0,\"David Foster Wallace, Michael Pietsch\",2011.0,The Pale King,The Pale King,en-US,3.95,10982,12088,1580,335,644,2150,5083,3876,https://images.gr-assets.com/books/1324405497l/9443405.jpg,https://images.gr-assets.com/books/1324405497s/9443405.jpg\n7778,27297,27297,3320969,348,140443487,9780140443490.0,\"Confucius, D.C. Lau\",-476.0,論語 [Lún Yǔ],The Analects,eng,3.82,9807,13227,468,282,1027,3516,4303,4099,https://images.gr-assets.com/books/1309201523l/27297.jpg,https://images.gr-assets.com/books/1309201523s/27297.jpg\n7779,50039,50039,702279,23,1556525893,9781556525900.0,\"Pamela Des Barres, Dave Navarro\",1987.0,I'm with the Band: Confessions of a Groupie,I'm with the Band: Confessions of a Groupie,en-US,3.67,11172,11795,611,471,1206,3329,3575,3214,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388303269l/50039.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7780,5148720,5148720,5215692,29,553820273,9780553820270.0,Richelle Mead,2009.0,Succubus Heat,\"Succubus Heat (Georgina Kincaid, #4)\",en-GB,4.19,20108,22467,848,151,625,3611,8469,9611,https://images.gr-assets.com/books/1363643447l/5148720.jpg,https://images.gr-assets.com/books/1363643447s/5148720.jpg\n7781,4714126,4714126,4778526,23,1607060221,9781607060220.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2009.0,\"The Walking Dead, Vol. 9: Here We Remain\",\"The Walking Dead, Vol. 09: Here We Remain\",en-GB,4.25,14085,14845,551,47,214,2263,5781,6540,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412196024l/4714126.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7782,20613920,20613920,39895498,10,,,Mariana Zapata,2014.0,Under Locke,Under Locke,eng,4.11,24373,24473,1969,375,1093,4099,8896,10010,https://images.gr-assets.com/books/1390340678l/20613920.jpg,https://images.gr-assets.com/books/1390340678s/20613920.jpg\n7783,625094,625094,1132275,219,679731210,9780679731210.0,\"Giuseppe Tomasi di Lampedusa, Archibald Colquhoun\",1958.0,Il Gattopardo,The Leopard,eng,3.99,9664,14685,1079,308,836,2984,5114,5443,https://images.gr-assets.com/books/1376481466l/625094.jpg,https://images.gr-assets.com/books/1376481466s/625094.jpg\n7784,22469,22469,1409945,34,785123288,9780785123290.0,\"Paul Jenkins, Andy Kubert, Richard Isanove, Joe Quesada, Bill Jemas\",2001.0,Wolverine: Origin,Wolverine: Origin,eng,3.96,10790,12786,330,209,799,2857,4339,4582,https://images.gr-assets.com/books/1320663605l/22469.jpg,https://images.gr-assets.com/books/1320663605s/22469.jpg\n7785,397456,397456,550582,41,671670689,9780671670690.0,V.C. Andrews,1990.0,Dawn ,\"Dawn (Cutler, #1)\",eng,3.87,13674,14091,255,205,1086,3872,4162,4766,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554374947l/397456._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7786,285212,285212,276710,9,425216594,9780425216590.0,\"Patricia Briggs, Eileen Wilks, Karen Chance, Sunny\",2007.0,On the Prowl,\"On the Prowl (Alpha & Omega, #0.5)\",eng,4.05,21757,22552,1115,128,880,5153,8074,8317,https://images.gr-assets.com/books/1422192630l/285212.jpg,https://images.gr-assets.com/books/1422192630s/285212.jpg\n7787,37303,37303,582951,27,425137562,9780425137570.0,John Sandford,1992.0,Silent Prey,Silent Prey (Lucas Davenport #4),en-US,4.13,14522,16052,380,58,275,2845,7191,5683,https://images.gr-assets.com/books/1309286873l/37303.jpg,https://images.gr-assets.com/books/1309286873s/37303.jpg\n7788,231989,231989,856940,30,765356163,9780765356160.0,Sara Douglass,1995.0,Battleaxe (The Axis Trilogy #1),\"The Wayfarer Redemption (Wayfarer Redemption, #1)\",eng,3.93,12632,14470,363,373,873,3198,4989,5037,https://images.gr-assets.com/books/1312033613l/231989.jpg,https://images.gr-assets.com/books/1312033613s/231989.jpg\n7789,70287,70287,2901163,29,684856069,9780684856060.0,Sandra Gulland,1995.0,The Many Lives & Secret Sorrows of Josephine B.,\"The Many Lives & Secret Sorrows of Josephine B. (Josephine Bonaparte, #1)\",,4.09,12398,13302,792,185,482,2380,5109,5146,https://images.gr-assets.com/books/1355931779l/70287.jpg,https://images.gr-assets.com/books/1355931779s/70287.jpg\n7790,7701043,7701043,10395196,3,,9789777780550.0,حسن الجندي,2011.0,الجزار,الجزار,ara,4.11,9413,10370,1329,246,534,1662,3367,4561,https://images.gr-assets.com/books/1270726397l/7701043.jpg,https://images.gr-assets.com/books/1270726397s/7701043.jpg\n7791,12037026,12037026,17003601,22,312380828,9780312380820.0,Lisa Scottoline,2012.0,Come Home,Come Home,,3.56,12971,14130,1690,464,1519,4482,4926,2739,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347425080l/12037026.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7792,7825557,7825557,10874302,28,525423346,9780525423350.0,Adam Gidwitz,2010.0,A Tale Dark and Grimm,\"A Tale Dark & Grimm (A Tale Dark & Grimm, #1)\",en-US,4.04,15041,17643,2875,344,926,3488,5866,7019,https://images.gr-assets.com/books/1345696603l/7825557.jpg,https://images.gr-assets.com/books/1345696603s/7825557.jpg\n7793,7165405,7165405,6799328,42,316037834,9780316037840.0,Trudi Canavan,2010.0,The Ambassador's Mission,\"The Ambassador's Mission (Traitor Spy Trilogy, #1)\",en-US,3.9,12385,14733,499,167,738,3698,5874,4256,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440185052l/7165405._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7794,50695,50695,14069,76,307277712,9780307277720.0,Philip Roth,2006.0,Everyman,Everyman,eng,3.54,10298,12700,1283,278,1325,4387,4631,2079,https://images.gr-assets.com/books/1327649258l/50695.jpg,https://images.gr-assets.com/books/1327649258s/50695.jpg\n7795,1300350,1300350,6317555,4,9799625726,9789799625720.0,Dee Lestari,2002.0,Supernova: Akar,Supernova: Akar,ind,3.78,7932,8322,638,131,614,2403,3017,2157,https://images.gr-assets.com/books/1410249029l/1300350.jpg,https://images.gr-assets.com/books/1410249029s/1300350.jpg\n7796,491735,491735,461588,32,312313829,9780312313820.0,\"Alisa Valdes, Alisa Valdes-Rodriguez\",2003.0,The Dirty Girls Social Club,\"The Dirty Girls Social Club (Dirty Girls, #1)\",,3.46,11045,11639,686,695,1531,3681,3218,2514,https://images.gr-assets.com/books/1317066640l/491735.jpg,https://images.gr-assets.com/books/1317066640s/491735.jpg\n7798,70912,70912,1087069,49,6513905,9780006513900.0,Luke Rhinehart,1971.0,The Dice Man,The Dice Man,eng,3.6,9813,12633,730,817,1335,3155,4150,3176,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348073555l/70912.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7799,6867952,6867952,7083417,14,316084255,9780316084250.0,\"Yana Toboso, Tomo Kimura\",2007.0,黒執事 II [Kuroshitsuji II],\"Black Butler, Vol. 2 (Black Butler, #2)\",eng,4.48,15194,15713,314,127,279,1547,3675,10085,https://images.gr-assets.com/books/1403792460l/6867952.jpg,https://images.gr-assets.com/books/1403792460s/6867952.jpg\n7800,7519866,7519866,9738038,42,330517090,9780330517100.0,Bret Easton Ellis,2010.0,Imperial Bedrooms,Imperial Bedrooms ,en-US,3.14,11093,12724,1084,890,2427,4784,3199,1424,https://images.gr-assets.com/books/1278878105l/7519866.jpg,https://images.gr-assets.com/books/1278878105s/7519866.jpg\n7801,22296542,22296542,24945287,15,,,\"Krista Ritchie, Becca Ritchie\",2013.0,Addicted to You,\"Addicted to You (Addicted, #1)\",eng,3.9,12746,20746,2441,649,1326,4507,7324,6940,https://images.gr-assets.com/books/1400803526l/22296542.jpg,https://images.gr-assets.com/books/1400803526s/22296542.jpg\n7802,22021611,22021611,41338754,10,698184890,9780698184890.0,Gayle Forman,2014.0,Just One Night,\"Just One Night (Just One Day, #2.5)\",eng,4.12,15986,17406,2018,231,805,3117,5774,7479,https://images.gr-assets.com/books/1398780998l/22021611.jpg,https://images.gr-assets.com/books/1398780998s/22021611.jpg\n7805,71863,71863,2057013,53,439829127,9780439829120.0,John Marsden,1995.0,\"The Third Day, The Frost\",\"A Killing Frost (Tomorrow, #3)\",,4.19,13199,15090,503,37,317,2500,6152,6084,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389910066l/71863.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7806,181077,181077,2029501,66,,9780698118030.0,\"Eleanor Coerr, Ronald Himler\",1977.0,Sadako and the Thousand Paper Cranes,Sadako and the Thousand Paper Cranes,,4.09,14578,16161,1195,160,562,3208,5901,6330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348780305l/181077.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7807,13616,13616,6790,31,142150331X,9781421503320.0,\"Tsugumi Ohba, Takeshi Obata\",2004.0,デスノート #4 (Desu Nōto) Koigokoro (恋心),\"Death Note, Vol. 4: Love (Death Note, #4)\",eng,4.38,16819,17860,560,67,329,2135,5595,9734,https://images.gr-assets.com/books/1432686076l/13616.jpg,https://images.gr-assets.com/books/1432686076s/13616.jpg\n7808,77661,77661,3222080,104,684803860,9780684803870.0,Josephine Tey,1951.0,The Daughter of Time,\"The Daughter of Time (Inspector Alan Grant, #5)\",en-US,3.95,15626,17898,2224,323,1062,3835,6613,6065,https://images.gr-assets.com/books/1394326949l/77661.jpg,https://images.gr-assets.com/books/1394326949s/77661.jpg\n7809,93799,93799,1027588,52,451215737,9780451215730.0,Daniel Silva,2005.0,Prince of Fire,\"Prince of Fire (Gabriel Allon, #5)\",eng,4.17,11250,13683,523,52,253,2147,6033,5198,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193057l/93799.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7810,26097,26097,1037708,79,60928417,9780060928410.0,\"Milan Kundera, Linda Asher\",1995.0,La lenteur,Slowness,en-US,3.66,8620,11204,650,223,920,3587,4183,2291,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400521122l/26097.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7811,20883847,20883847,40224712,17,316219126,9780316219130.0,Brian  McClellan,2015.0,The Autumn Republic ,\"The Autumn Republic (Powder Mage, #3)\",eng,4.35,10910,13231,778,38,169,1318,5239,6467,https://images.gr-assets.com/books/1393261950l/20883847.jpg,https://images.gr-assets.com/books/1393261950s/20883847.jpg\n7812,11041,11041,1369571,109,1579125743,9781579125740.0,Anaïs Nin,1977.0,Delta of Venus,Delta of Venus,eng,3.69,10561,13945,887,372,1218,4027,5141,3187,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388793271l/11041.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7813,6488483,6488483,6679864,22,1607061228,9781607061230.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2010.0,The Walking Dead Volume 11,\"The Walking Dead, Vol. 11: Fear the Hunters\",,4.33,13202,14777,562,76,208,1758,5457,7278,https://images.gr-assets.com/books/1266000285l/6488483.jpg,https://images.gr-assets.com/books/1266000285s/6488483.jpg\n7814,102439,102439,3101132,28,812536363,9780812536360.0,Vernor Vinge,2006.0,Rainbows End,Rainbows End,eng,3.76,12314,13272,804,306,1038,3588,4954,3386,https://images.gr-assets.com/books/1316729149l/102439.jpg,https://images.gr-assets.com/books/1316729149s/102439.jpg\n7815,23122175,23122175,42671149,8,,,Kristen Callihan,2015.0,The Friend Zone,\"The Friend Zone (Game On, #2)\",eng,4.21,21130,24009,1755,248,736,3451,8930,10644,https://images.gr-assets.com/books/1430227184l/23122175.jpg,https://images.gr-assets.com/books/1430227184s/23122175.jpg\n7816,17163514,17163514,23589581,14,356502287,9780356502280.0,Michael J. Sullivan,2013.0,The Rose and the Thorn,\"The Rose and the Thorn (The Riyria Chronicles, #2)\",eng,4.39,11791,13629,668,40,143,1276,5218,6952,https://images.gr-assets.com/books/1362121827l/17163514.jpg,https://images.gr-assets.com/books/1362121827s/17163514.jpg\n7817,104159,104159,1662148,57,1401360211,9781401360210.0,\"Sergei Lukyanenko, Andrew Bromfield\",2004.0,Сумеречный дозор,Twilight Watch (Watch #3),eng,4.11,11770,14636,460,84,414,2610,6179,5349,https://images.gr-assets.com/books/1382426338l/104159.jpg,https://images.gr-assets.com/books/1382426338s/104159.jpg\n7818,4107256,4107256,4154422,28,1841497762,9781841497760.0,Kelley Armstrong,2009.0,Frostbitten,\"Frostbitten (Women of the Otherworld, #10)\",eng,4.29,18094,20367,774,73,356,2825,7507,9606,https://images.gr-assets.com/books/1327437513l/4107256.jpg,https://images.gr-assets.com/books/1327437513s/4107256.jpg\n7820,15433,15433,17405,21,345418549,9780345418550.0,Piers Anthony,1982.0,\"Night Mare (Xanth, #6)\",\"Night Mare (Xanth, #6)\",,3.81,15008,15916,150,113,916,5138,5452,4297,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1179544619l/15433.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7821,13507011,13507011,19058182,38,,,\"Sandra Brown, Stephen Lang\",2012.0,Low Pressure,Low Pressure,eng,3.86,12076,14894,1353,186,790,3804,6195,3919,https://images.gr-assets.com/books/1396934108l/13507011.jpg,https://images.gr-assets.com/books/1396934108s/13507011.jpg\n7822,303098,303098,131682,66,3426619148,9783426619150.0,\"Douglas Preston, Lincoln Child\",1998.0,Riptide,Riptide,,3.93,11835,13883,544,86,671,3485,5469,4172,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173555399l/303098._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7823,3331756,3331756,3369780,14,,,غسان كنفاني,1969.0,عائد إلى حيفا,عائد إلى حيفا,ara,4.32,11315,11976,2255,96,260,1360,4222,6038,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1211383720l/3331756.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7824,13811,13811,274108,36,380803240,9780380803250.0,Raymond E. Feist,2002.0,Talon of the Silver Hawk,\"Talon of the Silver Hawk (Conclave of Shadows, #1)\",eng,4.01,13120,14056,180,120,634,3116,5325,4861,https://images.gr-assets.com/books/1409594805l/13811.jpg,https://images.gr-assets.com/books/1409594805s/13811.jpg\n7825,3124122,3124122,3155467,54,345485793,9780345485790.0,Steve Berry,2008.0,The Charlemagne Pursuit,\"The Charlemagne Pursuit (Cotton Malone, #4)\",en-US,3.88,12874,14403,799,160,714,3714,5898,3917,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435806459l/3124122._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7826,12722,12722,21887652,113,141185538,9780141185540.0,John Steinbeck,1942.0,The Moon Is Down,The Moon Is Down,eng,3.87,12809,14721,1051,166,734,3867,5998,3956,https://images.gr-assets.com/books/1327961310l/12722.jpg,https://images.gr-assets.com/books/1327961310s/12722.jpg\n7827,126151,126151,121500,23,684848287,9780684848280.0,Mark Mathabane,1986.0,Kaffir Boy: An Autobiography--The True Story of a Black Youth's Coming of Age in Apartheid South Africa,Kaffir Boy: An Autobiography,en-US,4.15,11633,12195,645,159,413,2015,4420,5188,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442887234l/126151._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7828,12482658,12482658,17467408,41,307957276,9780307957280.0,Anne Tyler,2012.0,The Beginner's Goodbye,The Beginner's Goodbye,eng,3.58,12780,14812,2499,284,1301,5084,5812,2331,https://images.gr-assets.com/books/1333577280l/12482658.jpg,https://images.gr-assets.com/books/1333577280s/12482658.jpg\n7829,93276,93276,89928,23,195019059,9780195019060.0,\"Thomas Malory, Eugène Vinaver\",1860.0,The Story of King Arthur,King Arthur and His Knights: Selected Tales,,4.1,13286,13350,43,102,430,2785,4726,5307,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348963591l/93276.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7831,4488657,4488657,4757628,8,9770148083,,\"صلاح جاهين, يحيى حقي\",1963.0,رباعيات صلاح جاهين,رباعيات صلاح جاهين,ara,4.43,9995,10576,625,120,201,1041,2826,6388,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1228559895l/4488657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7832,118389,118389,1800811,11,848809971,9780848809970.0,T.S. Eliot,1915.0,The Love Song of J. Alfred Prufrock and Other Poems,The Love Song of J. Alfred Prufrock and Other Poems,eng,4.32,14775,15149,169,188,464,1925,4294,8278,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1229242079l/118389.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7833,17567,17567,1194469,213,1576469115,9781576469120.0,Gene Stratton-Porter,1909.0,A Girl of the Limberlost,\"A Girl of the Limberlost (Limberlost, #2)\",eng,4.14,13071,15705,1242,230,628,2788,5194,6865,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749079l/17567.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7834,20426917,20426917,30157568,15,006195795X,9780061957960.0,Kim Harrison,2014.0,The Witch with No Name,\"The Witch With No Name (The Hollows, #13)\",en-US,4.43,13513,17570,1836,92,326,1690,5269,10193,https://images.gr-assets.com/books/1398700782l/20426917.jpg,https://images.gr-assets.com/books/1398700782s/20426917.jpg\n7836,124272,124272,121908,230,812967194,9780812967200.0,\"Henry James, Amy Bloom, Pierre A. Walker\",1901.0,The Wings of the Dove,The Wings of the Dove,eng,3.81,12812,13643,456,479,1013,3277,4768,4106,https://images.gr-assets.com/books/1320514843l/124272.jpg,https://images.gr-assets.com/books/1320514843s/124272.jpg\n7837,7140220,7140220,7404111,11,470581786,9780470581780.0,Nancy Reagin,2010.0,Twilight and History,Twilight and History,en-US,4.38,11186,11260,34,382,381,1322,1667,7508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347615881l/7140220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7838,122649,122649,1897835,224,140621733,9780141197940.0,Oscar Wilde,1893.0,Lady Windermere's Fan,Lady Windermere's Fan,eng,3.9,13408,14946,607,87,594,3991,6370,3904,https://images.gr-assets.com/books/1336666367l/122649.jpg,https://images.gr-assets.com/books/1336666367s/122649.jpg\n7839,33335,33335,33417,22,743289803,9780743289800.0,\"Masaru Emoto, David A. Thayne\",2001.0,The Hidden Messages in Water,The Hidden Messages in Water,,4.27,10800,11156,358,197,377,1590,3095,5897,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440232568l/33335._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7840,759960,759960,1366476,52,440975344,9780440975340.0,S.E. Hinton,1975.0,Rumble Fish,Rumble Fish,,3.77,14002,14999,746,174,978,4692,5370,3785,https://images.gr-assets.com/books/1320491172l/759960.jpg,https://images.gr-assets.com/books/1320491172s/759960.jpg\n7841,825509,825509,995847,75,449225151,9780449225160.0,Ken Follett,1995.0,A Place Called Freedom,A Place Called Freedom,eng,3.87,10267,14104,734,146,712,3631,5905,3710,https://images.gr-assets.com/books/1320559980l/825509.jpg,https://images.gr-assets.com/books/1320559980s/825509.jpg\n7842,47667,47667,1090709,97,156032732,9780156032740.0,\"José Saramago, Margaret Jull Costa\",2004.0,Ensaio Sobre a Lucidez,Seeing,eng,3.76,7445,12132,1087,290,953,3207,4663,3019,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1600099270l/47667._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7843,17182421,17182421,21762912,49,778315339,9780778315340.0,Jason Mott,2013.0,The Returned,The Returned,eng,3.29,11449,13269,2452,581,2122,5100,3798,1668,https://images.gr-assets.com/books/1372089735l/17182421.jpg,https://images.gr-assets.com/books/1372089735s/17182421.jpg\n7844,356824,356824,346991,22,60198818,9780060198820.0,Ramachandra Guha,2007.0,India After Gandhi: The History of the World's Largest Democracy,India After Gandhi: The History of the World's Largest Democracy,eng,4.34,9357,10422,824,83,198,1058,3787,5296,https://images.gr-assets.com/books/1500471959l/356824.jpg,https://images.gr-assets.com/books/1500471959s/356824.jpg\n7845,18668059,18668059,26493723,23,1591846358,9781591846350.0,Ryan Holiday,2014.0,The Obstacle Is the Way: The Timeless Art of Turning Adversity to Advantage,The Obstacle Is the Way: The Timeless Art of Turning Trials into Triumph,eng,4.11,12470,15248,1102,321,747,2513,5000,6667,https://images.gr-assets.com/books/1391440316l/18668059.jpg,https://images.gr-assets.com/books/1391440316s/18668059.jpg\n7846,197457,197457,2833963,30,60892013,9780060892010.0,Erin Hunter,2007.0,The Sight,\"The Sight (Warriors: Power of Three, #1)\",en-US,4.27,15904,16891,528,202,664,2591,4346,9088,https://images.gr-assets.com/books/1363489119l/197457.jpg,https://images.gr-assets.com/books/1363489119s/197457.jpg\n7847,18870159,18870159,26869240,11,1481420763,9781481420760.0,Abbi Glines,2014.0,Bad for You,\"Bad for You (Sea Breeze, #7)\",eng,4.3,19392,21120,1518,158,478,2736,7153,10595,https://images.gr-assets.com/books/1390861093l/18870159.jpg,https://images.gr-assets.com/books/1390861093s/18870159.jpg\n7848,347698,347698,1374275,49,1841959146,9781841959150.0,Kate Grenville,2005.0,The Secret River,The Secret River,eng,3.79,11051,13228,1361,338,886,3251,5547,3206,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388508143l/347698.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7849,18422,18422,19842,36,310214696,9780310214690.0,\"Ben Carson, Cecil Murphey\",1990.0,Gifted Hands: The Ben Carson Story,Gifted Hands: The Ben Carson Story,eng,4.21,9871,12017,1607,167,412,1785,4035,5618,https://images.gr-assets.com/books/1331248043l/18422.jpg,https://images.gr-assets.com/books/1331248043s/18422.jpg\n7850,363973,363973,1287577,26,64431835,9780064431840.0,\"Linda Williams, Megan Lloyd\",1986.0,The Little Old Lady Who Was Not Afraid of Anything,The Little Old Lady Who Was Not Afraid of Anything,en-US,4.25,14270,14534,468,139,461,2505,3984,7445,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441377475l/363973._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7851,6076768,6076768,6253354,24,1416586571,9781416586580.0,Brad Thor,2009.0,The Apostle,\"The Apostle (Scot Harvath, #8)\",eng,4.11,11267,12851,517,117,375,2412,4964,4983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442630611l/6076768._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7852,556629,556629,2101042,31,842339655,9780842339650.0,R.C. Sproul,1984.0,The Holiness of God,The Holiness of God,,4.35,10960,11572,381,181,282,1329,3313,6467,https://images.gr-assets.com/books/1175783071l/556629.jpg,https://images.gr-assets.com/books/1175783071s/556629.jpg\n7853,858514,858514,1705201,18,688170277,9780688170270.0,Kevin Henkes,2000.0,Wemberly Worried,Wemberly Worried,,4.22,14325,14500,900,191,496,2412,4300,7101,https://images.gr-assets.com/books/1415584914l/858514.jpg,https://images.gr-assets.com/books/1415584914s/858514.jpg\n7854,2992061,2992061,1329454,17,312942303,9780312942300.0,Sherrilyn Kenyon,1996.0,Born of the Night,\"Born of Night (The League, #1)\",eng,4.21,11309,21996,1394,393,907,3322,6530,10844,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549166388l/2992061._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7855,351559,351559,1459650,87,61043559,9780061043550.0,Dorothy L. Sayers,1933.0,Murder Must Advertise,\"Murder Must Advertise  (Lord Peter Wimsey, #10)\",eng,4.21,14672,15762,654,102,353,2572,5771,6964,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389232617l/351559.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7856,851678,851678,837187,16,739458736,9780743276950.0,Carole Radziwill,2005.0,\"What Remains: A Memoir of Fate, Friendship, and Love\",\"What Remains: A Memoir of Fate, Friendship, and Love\",,4.16,9602,11631,1282,90,343,1814,4712,4672,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1297935017l/851678.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7857,22571699,22571699,26949988,19,425256758,9780425256760.0,Patricia Briggs,2015.0,Dead Heat,Dead Heat (Alpha & Omega #4),eng,4.27,15320,19632,1776,67,365,2610,7668,8922,https://images.gr-assets.com/books/1406232150l/22571699.jpg,https://images.gr-assets.com/books/1406232150s/22571699.jpg\n7858,820273,820273,700809,22,039586786X,9780395867860.0,\"Nancy E. Shaw, Margot Apple\",1986.0,Sheep in a Jeep,Sheep in a Jeep,en-CA,4.11,13788,14252,448,193,652,2874,4278,6255,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348754949l/820273.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7859,141077,141077,2266654,259,812968239,9780812968230.0,\"Leo Tolstoy, Isai Kamen, Doris Lessing\",1889.0,Крейцерова соната,The Kreutzer Sonata,,3.9,10915,13242,718,220,818,3158,4958,4088,https://images.gr-assets.com/books/1451489791l/141077.jpg,https://images.gr-assets.com/books/1451489791s/141077.jpg\n7860,132688,132688,758985,6,679747656,9780679747660.0,Julia Child,1989.0,The Way to Cook,The Way to Cook,en-US,4.31,11500,11656,102,185,288,1512,3447,6224,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348719968l/132688.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7861,257257,257257,249321,7,714847984,9780714847990.0,Phaidon Press,1996.0,The 20th Century Art Book,The 20th Century Art Book,,3.94,9927,10098,24,317,613,2349,2879,3940,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173206855l/257257.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7862,276289,276289,267935,28,3822837032,9783822837030.0,\"Bruno Ernst, M.C. Escher, John E. Brigham\",1976.0,De toverspiegel van M.C. Escher,The Magic Mirror of M.C. Escher,eng,4.15,11103,11205,27,247,504,1877,3262,5315,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388608974l/276289.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7863,6801652,6801652,6245936,17,1421531720,9781421531720.0,\"Matsuri Hino, Tomo Kimura\",2008.0,ヴァンパイア騎士 9,\"Vampire Knight, Vol. 9\",eng,4.31,14193,14345,116,296,600,1953,2985,8511,https://images.gr-assets.com/books/1329240058l/6801652.jpg,https://images.gr-assets.com/books/1329240058s/6801652.jpg\n7866,33449,33449,33525,42,887306667,9780887306660.0,\"Al Ries, Jack Trout\",1993.0,The 22 Immutable Laws of Marketing: Violate Them at Your Own Risk!,The 22 Immutable Laws of Marketing: Violate Them at Your Own Risk,en-US,4.02,9955,10711,361,195,549,2150,3761,4056,https://images.gr-assets.com/books/1417627150l/33449.jpg,https://images.gr-assets.com/books/1417627150s/33449.jpg\n7869,23419,23419,14280291,72,679779175,9780679779180.0,Alain de Botton,2000.0,The Consolations of Philosophy,The Consolations of Philosophy,en-US,3.99,10291,13228,1014,145,542,2814,5529,4198,https://images.gr-assets.com/books/1403191802l/23419.jpg,https://images.gr-assets.com/books/1403191802s/23419.jpg\n7871,17412188,17412188,24257094,71,857520199,9780857520200.0,S.J. Watson,2015.0,Second Life,Second Life,eng,3.24,9056,12414,2001,757,2204,4267,3639,1547,https://images.gr-assets.com/books/1410793297l/17412188.jpg,https://images.gr-assets.com/books/1410793297s/17412188.jpg\n7872,527862,527862,1087332,38,393312801,9780393312800.0,Irvine Welsh,1994.0,The Acid House,The Acid House,,3.69,10752,11696,285,145,787,3902,4561,2301,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347788489l/527862.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7874,111126,111126,2457240,84,375727434,9780375727440.0,Alice Munro,2001.0,\"Hateship, Friendship, Courtship, Loveship, Marriage\",\"Hateship, Friendship, Courtship, Loveship, Marriage: Stories\",,4.06,10945,12818,1245,154,597,2341,5022,4704,https://images.gr-assets.com/books/1494106094l/111126.jpg,https://images.gr-assets.com/books/1494106094s/111126.jpg\n7876,16256798,16256798,22300682,36,1885167776,9781885167770.0,\"Gary Keller, Jay Papasan\",2012.0,The One Thing: The Surprisingly Simple Truth Behind Extraordinary Results ,The One Thing: The Surprisingly Simple Truth Behind Extraordinary Results,eng,4.17,13388,16617,1424,252,676,2582,5668,7439,https://images.gr-assets.com/books/1362177469l/16256798.jpg,https://images.gr-assets.com/books/1362177469s/16256798.jpg\n7877,20980373,20980373,40357587,8,,,Whitney G.,2014.0,Reasonable Doubt: Volume 2,\"Reasonable Doubt: Volume 2 (Reasonable Doubt, #2)\",eng,4.14,21134,23623,1932,241,860,4052,8669,9801,https://images.gr-assets.com/books/1397189810l/20980373.jpg,https://images.gr-assets.com/books/1397189810s/20980373.jpg\n7878,417524,417524,150331,15,670878553,9780670878550.0,Simms Taback,1977.0,Joseph Had a Little Overcoat,Joseph Had a Little Overcoat,eng,4.12,14810,14844,1009,331,634,2661,4493,6725,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437646815l/417524._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7879,511527,511527,499516,37,440867592,9780440867590.0,\"Jacqueline Wilson, Nick Sharratt, Sue Heap\",1995.0,Double Act,Double Act,en-GB,3.69,13204,13753,418,349,1340,4284,4004,3776,https://images.gr-assets.com/books/1353573624l/511527.jpg,https://images.gr-assets.com/books/1353573624s/511527.jpg\n7880,1301153,1301153,1290335,53,60724617,9780060724610.0,Meg Cabot,2007.0,Princess Mia,\"Princess Mia (The Princess Diaries, #9)\",en-US,3.82,17889,19575,616,330,1383,5591,6451,5820,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348221230l/1301153.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7881,290039,290039,281390,15,743218574,9780743218570.0,Omar Tyree,1993.0,Flyy Girl,\"Flyy Girl (Flyy Girl, #1)\",en-US,4.21,9869,11005,377,194,471,1807,2891,5642,https://images.gr-assets.com/books/1415677404l/290039.jpg,https://images.gr-assets.com/books/1415677404s/290039.jpg\n7882,10374638,10374638,13897390,36,174275001X,9781742750020.0,Deborah Rodriguez,2011.0,A Cup of Friendship,The Little Coffee Shop of Kabul,eng,3.57,7607,12693,1571,434,1303,3880,4797,2279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1296689560l/10374638.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7883,47697,47697,534309,4,811835928,9780811835920.0,\"Alisa Kwitney, Neil Gaiman\",2003.0,The Sandman: King of Dreams,The Sandman: King of Dreams,eng,4.61,11538,11541,30,75,142,724,2342,8258,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439583183l/47697._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7884,7006562,7006562,7251072,16,785134530,9780785134530.0,\"Marc Guggenheim, Alex Maleev, Stephen King\",2008.0,Stephen King's N.,Stephen King's N.,eng,4.22,10844,11339,247,183,418,1910,3062,5766,https://images.gr-assets.com/books/1492728218l/7006562.jpg,https://images.gr-assets.com/books/1492728218s/7006562.jpg\n7886,28735,28735,29234,15,886774632,9780886774640.0,Mercedes Lackey,1991.0,By the Sword,By the Sword (Valdemar),eng,4.24,17268,17731,227,74,403,3034,5969,8251,https://images.gr-assets.com/books/1424369518l/28735.jpg,https://images.gr-assets.com/books/1424369518s/28735.jpg\n7887,13451,13451,3048970,28,067103264X,9780671032650.0,Stephen King,1999.0,Storm of the Century: An Original Screenplay,Storm of the Century: An Original Screenplay,,3.86,14629,15343,265,257,1120,4087,5005,4874,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438560419l/13451._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7888,147844,147844,142679,27,756401933,9780756401930.0,Kristen Britain,2003.0,First Rider's Call,\"First Rider's Call (Green Rider, #2)\",eng,4.2,16292,17509,501,92,443,2837,6665,7472,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347642517l/147844.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7889,4102763,4102763,4149926,46,312539517,9780312539510.0,Jeffrey Archer,2009.0,Paths of Glory,Paths of Glory,en-US,3.88,11086,12568,1030,165,659,3178,5146,3420,https://images.gr-assets.com/books/1312068627l/4102763.jpg,https://images.gr-assets.com/books/1312068627s/4102763.jpg\n7890,33732,33732,3409,41,037377138X,9780373771390.0,Jennifer Crusie,1996.0,Anyone But You ,Anyone But You,eng,3.8,16747,17908,964,221,1035,5366,6768,4518,https://images.gr-assets.com/books/1263487145l/33732.jpg,https://images.gr-assets.com/books/1263487145s/33732.jpg\n7891,635083,635083,984587,21,688114490,9780688114500.0,Kevin Henkes,1993.0,Owen,Owen,eng,4.25,14919,15077,548,154,437,2390,4542,7554,https://images.gr-assets.com/books/1415585883l/635083.jpg,https://images.gr-assets.com/books/1415585883s/635083.jpg\n7892,17167572,17167572,21930358,30,006206777X,9780062067780.0,\"Terry Pratchett, Stephen Baxter\",2013.0,The Long War,\"The Long War (The Long Earth, #2)\",eng,3.58,11074,14582,1264,264,1310,5100,5499,2409,https://images.gr-assets.com/books/1368422103l/17167572.jpg,https://images.gr-assets.com/books/1368422103s/17167572.jpg\n7893,14014,14014,972253,24,886774004,9780886774000.0,Mercedes Lackey,1988.0,Arrow's Fall,\"Arrow's Fall (Heralds of Valdemar, #3)\",en-US,4.18,17342,17943,272,95,510,3311,6131,7896,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388518059l/14014.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7894,3888,3888,7612,6,193361501X,9781933615010.0,\"America's Test Kitchen, Carl Tremblay, Daniel J. Van Ackere\",2005.0,The America's Test Kitchen Family Cookbook,The America's Test Kitchen Family Cookbook,,4.31,12081,12292,214,237,324,1520,3472,6739,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348281876l/3888.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7895,24093,24093,1006377,20,590396439,9780590396430.0,Tamora Pierce,2001.0,Street Magic,\"Street Magic (The Circle Opens, #2)\",eng,4.12,18897,19900,272,103,685,4078,6907,8127,https://images.gr-assets.com/books/1328861813l/24093.jpg,https://images.gr-assets.com/books/1328861813s/24093.jpg\n7896,26722820,26722820,45981532,35,778319334,9780778319340.0,Phaedra Patrick,2016.0,The Curious Charms of Arthur Pepper,The Curious Charms of Arthur Pepper,eng,3.91,12080,15467,2820,101,585,3692,7255,3834,https://images.gr-assets.com/books/1456116507l/26722820.jpg,https://images.gr-assets.com/books/1456116507s/26722820.jpg\n7897,8573642,8573642,13442466,14,62060759,9780062060750.0,Jodi Meadows,2012.0,Incarnate,\"Incarnate (Newsoul, #1)\",en-US,3.73,19034,20030,2530,901,1819,4930,6521,5859,https://images.gr-assets.com/books/1358271343l/8573642.jpg,https://images.gr-assets.com/books/1358271343s/8573642.jpg\n7898,6419887,6419887,6609046,43,61730327,9780061730320.0,\"William Kamkwamba, Bryan Mealer\",2009.0,The Boy Who Harnessed the Wind: Creating Currents of Electricity and Hope,The Boy Who Harnessed the Wind: Creating Currents of Electricity and Hope,en-US,4.07,13374,14754,2555,213,525,2626,6003,5387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347318102l/6419887.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7899,280240,280240,271837,21,140558640,9780140558650.0,Paul O. Zelinsky,1986.0,Rumpelstilzchen,Rumpelstiltskin,eng,4.23,14306,14623,514,77,364,2801,4308,7073,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388253409l/280240.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7900,17910048,17910048,24241248,14,076532699X,9780765327000.0,Katherine Addison,2014.0,The Goblin Emperor,The Goblin Emperor,eng,4.05,11443,13975,2627,242,651,2429,5490,5163,https://images.gr-assets.com/books/1373039517l/17910048.jpg,https://images.gr-assets.com/books/1373039517s/17910048.jpg\n7901,21437200,21437200,40747882,12,080417072X,9780804170730.0,\"Rob Thomas, Jennifer Graham\",2015.0,Mr. Kiss and Tell ,\"Mr. Kiss and Tell (Veronica Mars, #2)\",eng,4.01,12729,15011,1836,58,324,3225,7201,4203,https://images.gr-assets.com/books/1405566768l/21437200.jpg,https://images.gr-assets.com/books/1405566768s/21437200.jpg\n7902,15808816,15808816,22171084,17,425252868,9780425252860.0,\"Adam Makos, Larry Alexander\",2012.0,A Higher Call: An Incredible True Story of Combat and Chivalry in the War-Torn Skies of World War II,A Higher Call: An Incredible True Story of Combat and Chivalry in the War-Torn Skies of World War II,eng,4.32,8975,10951,1309,149,307,1290,3377,5828,https://images.gr-assets.com/books/1350889524l/15808816.jpg,https://images.gr-assets.com/books/1350889524s/15808816.jpg\n7904,355,355,924656,32,345316509,9780345316510.0,Robert A. Heinlein,1984.0,Job: A Comedy of Justice,Job: A Comedy of Justice,en-US,3.77,14592,14901,415,349,1295,4031,4962,4264,https://images.gr-assets.com/books/1438043968l/355.jpg,https://images.gr-assets.com/books/1438043968s/355.jpg\n7905,12081467,12081467,17049448,27,375868429,9780375868430.0,Carl Hiaasen,2012.0,Chomp!,Chomp,eng,3.93,12832,14252,1864,214,657,3342,5684,4355,https://images.gr-assets.com/books/1320532144l/12081467.jpg,https://images.gr-assets.com/books/1320532144s/12081467.jpg\n7906,166580,166580,160861,20,1840232048,9781840232040.0,\"Neil Gaiman, Yoshitaka Amano\",1999.0,The Sandman: The Dream Hunters,The Sandman: The Dream Hunters,eng,4.38,14629,16104,509,35,231,1939,5251,8648,https://images.gr-assets.com/books/1327940077l/166580.jpg,https://images.gr-assets.com/books/1327940077s/166580.jpg\n7907,11686,11686,436251,36,375724427,9780375724430.0,John Cheever,1978.0,The Stories of John Cheever,The Stories of John Cheever,eng,4.27,11156,12447,600,146,309,1608,4364,6020,https://images.gr-assets.com/books/1339732173l/11686.jpg,https://images.gr-assets.com/books/1339732173s/11686.jpg\n7909,450573,450573,821971,14,573613311,9780573613320.0,Neil Simon,1965.0,The Odd Couple,The Odd Couple,eng,4.02,12571,12791,103,171,563,2854,4446,4757,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347953468l/450573.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7910,31555,31555,1981,24,688172172,9780688172180.0,\"V.S. Ramachandran, Sandra Blakeslee, Oliver Sacks\",1998.0,Phantoms in the Brain: Probing the Mysteries of the Human Mind,Phantoms in the Brain: Probing the Mysteries of the Human Mind,eng,4.25,12194,12775,507,180,386,1731,4261,6217,https://images.gr-assets.com/books/1409601908l/31555.jpg,https://images.gr-assets.com/books/1409601908s/31555.jpg\n7911,129523,129523,545467,52,425197956,9780425197950.0,J.D. Robb,2004.0,\"Divided in Death (In Death, #18)\",\"Divided in Death (In Death, #18)\",en-US,4.32,17321,19525,559,44,215,2617,7164,9485,https://images.gr-assets.com/books/1389938707l/129523.jpg,https://images.gr-assets.com/books/1389938707s/129523.jpg\n7913,56919,56919,52079,80,9707311169,9789707311170.0,Mario Benedetti,1960.0,La tregua,La tregua,spa,4.19,10137,12280,1043,133,429,1957,4263,5498,https://images.gr-assets.com/books/1371167309l/56919.jpg,https://images.gr-assets.com/books/1371167309s/56919.jpg\n7914,24041443,24041443,43446244,37,055339231X,9780553392320.0,Vanessa Diffenbaugh,2015.0,We Never Asked for Wings,We Never Asked for Wings,eng,3.82,10972,13189,1791,152,617,3469,6173,2778,https://images.gr-assets.com/books/1432153065l/24041443.jpg,https://images.gr-assets.com/books/1432153065s/24041443.jpg\n7915,23341894,23341894,26212678,17,1484705270,9781484705280.0,Tamara Ireland Stone,2015.0,Every Last Word,Every Last Word,eng,4.2,19214,20437,3021,419,756,2985,6362,9915,https://images.gr-assets.com/books/1431016937l/23341894.jpg,https://images.gr-assets.com/books/1431016937s/23341894.jpg\n7916,55095,55095,1417,24,316781460,9780316781470.0,\"James Andrew Miller, Tom Shales\",2001.0,Live from New York: An Uncensored History of Saturday Night Live,Live from New York: An Uncensored History of Saturday Night Live,en-US,4.04,10112,12325,842,87,405,2526,5234,4073,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439437449l/55095._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7917,25017,25017,2084098,31,60838590,9780060838590.0,Simon Winchester,2003.0,\"Krakatoa: The Day the World Exploded: August 27, 1883 \",Krakatoa: The Day the World Exploded,eng,3.86,12625,13459,994,208,781,3380,5458,3632,https://images.gr-assets.com/books/1407108467l/25017.jpg,https://images.gr-assets.com/books/1407108467s/25017.jpg\n7919,2049993,2049993,2054929,30,141383356,9780141383350.0,Eoin Colfer,2007.0,Airman,Airman,eng,4.14,15257,16323,1347,197,619,2855,5757,6895,https://images.gr-assets.com/books/1327967233l/2049993.jpg,https://images.gr-assets.com/books/1327967233s/2049993.jpg\n7921,5048174,5048174,5114779,82,,,Kurt Vonnegut Jr.,1962.0,2BR02B,2BR02B,eng,3.93,7442,12567,806,88,510,3111,5288,3570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328301776l/5048174.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7922,8643220,8643220,13521050,9,1595144293,9781595144290.0,\"Richelle Mead, Emma Vieceli, Leigh Dragoon\",2011.0,Vampire Academy: The Graphic Novel,\"Vampire Academy: The Graphic Novel (Vampire Academy: The Graphic Novel, #1)\",,4.11,13445,13621,730,524,735,2284,3214,6864,https://images.gr-assets.com/books/1331468259l/8643220.jpg,https://images.gr-assets.com/books/1331468259s/8643220.jpg\n7923,64666,64666,77298,70,330343475,9780330343470.0,Oliver Sacks,1995.0,An Anthropologist on Mars: Seven Paradoxical Tales,An Anthropologist on Mars: Seven Paradoxical Tales,eng,4.18,10894,12892,768,69,276,1960,5526,5061,https://images.gr-assets.com/books/1356447436l/64666.jpg,https://images.gr-assets.com/books/1356447436s/64666.jpg\n7924,7469133,7469133,9552554,34,385532350,9780385532360.0,Jeff Lindsay,2010.0,Dexter Is Delicious,\"Dexter Is Delicious (Dexter, #5)\",,3.79,13582,15277,1057,230,1047,4356,5746,3898,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1527406223l/7469133.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7925,835495,835495,400452,26,152010661,9780152010670.0,\"Mem Fox, Jane Dyer\",1993.0,Time for Bed,Time for Bed,eng,4.16,13568,13791,362,169,694,2556,3696,6676,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347387574l/835495.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7927,339026,339026,1214027,50,439670209,9780439670200.0,P.B. Kerr,2004.0,The Akhenaten Adventure,\"The Akhenaten Adventure (Children of the Lamp, #1)\",,3.76,15306,16363,615,407,1351,4666,5347,4592,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388443430l/339026.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7928,815158,815158,2028676,12,525456074,9780525456070.0,Paul O. Zelinsky,1997.0,Rapunzel,Rapunzel,eng,4.16,13896,14376,921,121,466,2934,4328,6527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430277005l/815158.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7929,23731881,23731881,43264515,6,316369152,9780316369150.0,\"J.K. Rowling, Joel Holland\",2015.0,Very Good Lives: The Fringe Benefits of Failure and the Importance of Imagination,Very Good Lives: The Fringe Benefits of Failure and the Importance of Imagination,eng,4.26,12510,13494,1838,312,408,1755,3965,7054,https://images.gr-assets.com/books/1418419116l/23731881.jpg,https://images.gr-assets.com/books/1418419116s/23731881.jpg\n7930,17401198,16244754,18281165,26,,,Rachel Abbott,2011.0,Only the Innocent,Only the Innocent (DCI Tom Douglas #1),eng,4.03,4513,13661,695,307,709,2500,4905,5240,https://images.gr-assets.com/books/1361257672l/17401198.jpg,https://images.gr-assets.com/books/1361257672s/17401198.jpg\n7931,6145711,6145711,6324599,22,,9781607060760.0,Robert Kirkman,2009.0,\"The Walking Dead, Vol. 10: What We Become\",\"The Walking Dead, Vol. 10: What We Become\",eng,4.29,14118,14754,500,46,200,2020,5691,6797,https://images.gr-assets.com/books/1353969736l/6145711.jpg,https://images.gr-assets.com/books/1353969736s/6145711.jpg\n7932,144793,144793,1808566,52,312983220,9780312983220.0,Matthew Reilly,2001.0,Area 7,\"Area 7 (Shane Schofield, #2)\",eng,4.08,12024,13212,383,108,492,2578,5086,4948,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185761l/144793.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7933,20797535,20797535,40138964,19,,,Marcus Sakey,2014.0,A Better World,\"A Better World (Brilliance Saga, #2)\",eng,4.15,10702,12880,708,80,256,1965,5923,4656,https://images.gr-assets.com/books/1394856007l/20797535.jpg,https://images.gr-assets.com/books/1394856007s/20797535.jpg\n7934,77368,77368,2984336,24,441008658,9780441008650.0,Robin McKinley,2000.0,Spindle's End,Spindle's End,eng,3.79,18395,19652,1204,339,1336,5560,7276,5141,https://images.gr-assets.com/books/1308815054l/77368.jpg,https://images.gr-assets.com/books/1308815054s/77368.jpg\n7935,13634927,13634927,19245708,9,,,Diana Gabaldon,2012.0,\"A Leaf on the Wind of All Hallows (Outlander, #8.5)\",\"A Leaf on the Wind of All Hallows (Outlander, #8.5)\",eng,4.24,13891,14414,821,70,334,2330,5035,6645,https://images.gr-assets.com/books/1351354006l/13634927.jpg,https://images.gr-assets.com/books/1351354006s/13634927.jpg\n7936,21843117,21843117,41113081,10,,9780990490400.0,R.S. Grey,2014.0,Scoring Wilder,Scoring Wilder,eng,4.1,17771,20700,1777,375,928,3354,7661,8382,https://images.gr-assets.com/books/1401806540l/21843117.jpg,https://images.gr-assets.com/books/1401806540s/21843117.jpg\n7937,13562054,13562054,19137273,4,9770931357,9789770931360.0,عزالدين شكري فشير,2012.0,باب الخروج: رسالة علي المفعمة ببهجة غير متوقعة,باب الخروج: رسالة علي المفعمة ببهجة غير متوقعة,ara,3.88,9246,9560,1754,255,605,2017,3825,2858,https://images.gr-assets.com/books/1340915967l/13562054.jpg,https://images.gr-assets.com/books/1340915967s/13562054.jpg\n7938,13037558,13037558,21456496,8,316097462,9780316097470.0,\"James Patterson, Michael Ledwidge\",2012.0,\"I, Michael Bennett\",\"I, Michael Bennett (Michael Bennett, #5)\",eng,4.04,12464,15012,1409,169,679,2954,5850,5360,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388229421l/13037558.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7939,19090384,19090384,21910727,13,1625173431,9781625173430.0,Ilona Andrews,2012.0,Clean Sweep,\"Clean Sweep (Innkeeper Chronicles, #1)\",eng,4.2,16071,21035,1899,211,469,3126,8361,8868,https://images.gr-assets.com/books/1385939257l/19090384.jpg,https://images.gr-assets.com/books/1385939257s/19090384.jpg\n7940,2977487,2977487,3007852,32,758216432,9780758216430.0,Richelle Mead,2008.0,Succubus Dreams ,\"Succubus Dreams (Georgina Kincaid, #3)\",en-US,4.14,21530,23418,1040,133,668,4303,8905,9409,https://images.gr-assets.com/books/1315977451l/2977487.jpg,https://images.gr-assets.com/books/1315977451s/2977487.jpg\n7941,241936,241936,2046826,51,345451902,9780345451900.0,Robert Crais,2003.0,The Last Detective,\"The Last Detective (Elvis Cole, #9)\",en-US,4.24,12160,13490,383,57,197,1837,5738,5661,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177599l/241936.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7942,48304,48304,47257,5,1569242739,9781569242740.0,\"Isa Chandra Moskowitz, Terry Hope Romero, Sara Quin\",2006.0,Vegan Cupcakes Take Over the World: 75 Dairy-Free Recipes for Cupcakes that Rule,Vegan Cupcakes Take Over the World: 75 Dairy-Free Recipes for Cupcakes that Rule,en-US,4.08,11509,11543,339,596,579,1762,2968,5638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176764l/48304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7943,522471,522471,510354,30,142404241,9780142404250.0,Joan Bauer,2000.0,Hope Was Here,Hope Was Here,eng,4.0,14954,15670,1340,217,738,3408,5832,5475,https://images.gr-assets.com/books/1309211597l/522471.jpg,https://images.gr-assets.com/books/1309211597s/522471.jpg\n7944,16061734,16061734,19176680,30,670025488,9780670025480.0,A.M. Homes,2012.0,May We Be Forgiven,May We Be Forgiven,en-CA,3.66,7545,11953,1750,416,1121,3180,4682,2554,https://images.gr-assets.com/books/1349221581l/16061734.jpg,https://images.gr-assets.com/books/1349221581s/16061734.jpg\n7946,39926,39926,836516,43,60512180,9780060512190.0,Naomi Wolf,1990.0,The Beauty Myth: How Images of Beauty Are Used Against Women,The Beauty Myth,eng,3.89,13037,14266,790,234,790,3493,5552,4197,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197585l/39926.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7949,315578,315578,330158,49,1559702028,9781559702030.0,\"Miklós Nyiszli, Tibère Kremer, Bruno Bettelheim, Richard Seaver\",1946.0,Orvos voltam Auschwitzban,Auschwitz: A Doctor's Eyewitness Account,en-US,4.24,8422,12221,1045,108,284,1712,4572,5545,https://images.gr-assets.com/books/1356698317l/315578.jpg,https://images.gr-assets.com/books/1356698317s/315578.jpg\n7950,2358737,2358737,2365504,49,374166854,9780374166850.0,Thomas L. Friedman,2008.0,\"Hot, Flat, and Crowded: Why We Need a Green Revolution--and How It Can Renew America\",\"Hot, Flat, and Crowded: Why We Need a Green Revolution--and How It Can Renew America\",en-US,3.68,10714,11584,1418,320,961,3333,4488,2482,https://images.gr-assets.com/books/1312006327l/2358737.jpg,https://images.gr-assets.com/books/1312006327s/2358737.jpg\n7951,825576,825576,334487,23,307021106,9780307021110.0,\"Kathryn Jackson, Byron Jackson, Gustav Tenggren\",1947.0,The Saggy Baggy Elephant (Little Golden Book),The Saggy Baggy Elephant (A Little Golden Book),eng,4.06,15288,15397,135,191,724,3627,4240,6615,https://images.gr-assets.com/books/1320481063l/825576.jpg,https://images.gr-assets.com/books/1320481063s/825576.jpg\n7952,2183,2183,314156,322,140447970,9780140447970.0,\"Gustave Flaubert, Robert Baldick, Geoffrey Wall\",1869.0,L'Éducation sentimentale,Sentimental Education,eng,3.83,11642,13782,510,395,1121,3229,4718,4319,https://images.gr-assets.com/books/1327788473l/2183.jpg,https://images.gr-assets.com/books/1327788473s/2183.jpg\n7954,17455541,17455541,24346221,9,,,\"Phil Robertson, Mark Schlabach\",2013.0,Legend of the Duck Commander,\"Happy, Happy, Happy\",en-US,4.06,10102,11300,1182,268,518,2117,3713,4684,https://images.gr-assets.com/books/1362252767l/17455541.jpg,https://images.gr-assets.com/books/1362252767s/17455541.jpg\n7955,1242729,1242729,2071020,2,9793600691,9789793600700.0,Raditya Dika,2005.0,Kambing Jantan: Sebuah Catatan Harian Pelajar Bodoh ,Kambing Jantan: Sebuah Catatan Harian Pelajar Bodoh ,ind,3.59,8685,8686,684,330,994,2782,2364,2216,https://images.gr-assets.com/books/1406103629l/1242729.jpg,https://images.gr-assets.com/books/1406103629s/1242729.jpg\n7956,16301111,16301111,19927826,6,,,Kirsty Moseley,2012.0,Best Friends with a Self-Confessed Player,\"Always You (Best Friend, #1)\",eng,3.96,18043,18343,1120,870,1297,3207,5371,7598,https://images.gr-assets.com/books/1438766503l/16301111.jpg,https://images.gr-assets.com/books/1438766503s/16301111.jpg\n7957,12027429,12027429,16993521,17,778314189,9780778314190.0,Maria V. Snyder,2012.0,Scent of Magic,\"Scent of Magic (Healer, #2)\",en-US,4.13,16400,18396,1322,222,581,3147,7118,7328,https://images.gr-assets.com/books/1335295226l/12027429.jpg,https://images.gr-assets.com/books/1335295226s/12027429.jpg\n7958,11889938,11889938,16848889,41,399158278,9780399158280.0,Robert Crais,2012.0,Taken,\"Taken (Elvis Cole, #15; Joe Pike, #4)\",en-US,4.17,12492,13955,896,89,346,2169,5805,5546,https://images.gr-assets.com/books/1315773532l/11889938.jpg,https://images.gr-assets.com/books/1315773532s/11889938.jpg\n7959,56066,56066,2317186,20,60564679,9780060564670.0,Mary Kay Andrews,2006.0,Savannah Breeze,\"Savannah Breeze (Weezie and Bebe Mysteries, #2)\",eng,4.05,13053,14169,779,81,428,3081,5757,4822,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388265660l/56066.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7960,13925,13925,2271292,38,765345013,9780765345010.0,Juliet Marillier,2001.0,Child of the Prophecy ,\"Child of the Prophecy (Sevenwaters, #3)\",eng,4.11,15142,16878,731,87,591,3278,6378,6544,https://images.gr-assets.com/books/1343590673l/13925.jpg,https://images.gr-assets.com/books/1343590673s/13925.jpg\n7961,84552,84552,3334006,48,451458621,9780451458630.0,\"Marion Zimmer Bradley, Diana L. Paxson\",2000.0,Priestess of Avalon ,\"Priestess of Avalon (Avalon, #4)\",en-US,4.03,13823,14586,182,117,606,3401,5072,5390,https://images.gr-assets.com/books/1274559433l/84552.jpg,https://images.gr-assets.com/books/1274559433s/84552.jpg\n7962,17407233,17407233,21489886,30,,,Tara Sue Me,2012.0,The submissive,\"The Submissive (Submissive, #1)\",eng,3.97,14069,16067,1194,410,957,3346,5299,6055,https://images.gr-assets.com/books/1361512956l/17407233.jpg,https://images.gr-assets.com/books/1361512956s/17407233.jpg\n7963,88514,88514,2205765,77,1400030269,9781400030260.0,Michel Houellebecq,2001.0,Plateforme,Platform,eng,3.79,9024,12071,675,290,838,2975,4939,3029,https://images.gr-assets.com/books/1328330240l/88514.jpg,https://images.gr-assets.com/books/1328330240s/88514.jpg\n7964,15801967,15801967,21525361,36,1451686579,9781451686580.0,Jonah Berger,2013.0,Contagious. Why Things Catch On.,Contagious: Why Things Catch On,eng,3.88,11287,12601,1169,258,705,3086,4801,3751,https://images.gr-assets.com/books/1376783352l/15801967.jpg,https://images.gr-assets.com/books/1376783352s/15801967.jpg\n7965,122211,122211,939528,19,451209133,9780451209140.0,Terry McMillan,1989.0,Disappearing Acts,Disappearing Acts,eng,4.21,11309,11582,164,73,346,2091,3693,5379,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348975826l/122211.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7966,877752,877752,2267601,15,159532402X,9781595324020.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",2001.0,フルーツバスケット 7,\"Fruits Basket, Vol. 7\",en-US,4.41,16111,16304,205,126,317,2010,4165,9686,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442962522l/877752._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7967,1173576,1173576,1161341,37,61438294,9780061438300.0,\"Joe Navarro, Marvin Karlins\",2008.0,What Every Body is Saying: An FBI Agent's Guide to Speed-Reading People,What Every Body is Saying: An Ex-FBI Agent's Guide to Speed-Reading People,eng,3.9,10204,11626,732,159,636,2867,4525,3439,https://images.gr-assets.com/books/1355055362l/1173576.jpg,https://images.gr-assets.com/books/1355055362s/1173576.jpg\n7968,114152,114152,671758,63,515142891,9780515142890.0,Nora Roberts,1996.0,Finding the Dream,Finding the Dream (Dream Trilogy #3),eng,4.06,16408,18006,322,81,594,4177,6505,6649,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390318069l/114152.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7970,27999,27999,2888523,53,684852225,9780684852220.0,Annie Proulx,1999.0,Close Range: Wyoming Stories,Close Range,en-US,3.99,11107,12281,843,249,534,2407,4943,4148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442895695l/27999._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7971,373925,373925,864992,15,1557830665,9781557830660.0,\"Stephen Sondheim, Hugh Wheeler, Christopher Godfrey Bond\",1974.0,Sweeney Todd: The Demon Barber of Fleet Street (Applause Musical Library),Sweeney Todd: The Demon Barber of Fleet Street,eng,4.17,12850,12965,56,354,553,1984,3665,6409,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388460219l/373925.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7972,836984,836984,1563512,43,345450728,9780345450720.0,Kristin Hannah,2002.0,Distant Shores,Distant Shores,,3.7,12174,14698,1053,242,1126,4686,5425,3219,https://images.gr-assets.com/books/1320544877l/836984.jpg,https://images.gr-assets.com/books/1320544877s/836984.jpg\n7973,12067972,12067972,17035474,21,,,Tammara Webber,2011.0,Where You Are,\"Where You Are (Between the Lines, #2)\",eng,3.94,18402,18655,839,228,816,4437,7565,5609,https://images.gr-assets.com/books/1367082773l/12067972.jpg,https://images.gr-assets.com/books/1367082773s/12067972.jpg\n7974,25200,25200,1796157,109,800871863,9780800871860.0,\"Shūsaku Endō, William Johnston\",1966.0,沈黙,Silence,eng,4.1,11917,14574,2030,117,587,2534,5828,5508,https://images.gr-assets.com/books/1327991351l/25200.jpg,https://images.gr-assets.com/books/1327991351s/25200.jpg\n7975,6609758,6609758,6313339,48,545142997,9780545142990.0,Rachel Ward,2008.0,Numbers,\"Numbers (Numbers, #1)\",eng,3.46,16717,19913,2386,1280,2720,5745,5822,4346,https://images.gr-assets.com/books/1386036562l/6609758.jpg,https://images.gr-assets.com/books/1386036562s/6609758.jpg\n7976,238140,238140,6491892,50,749934409,9780749934410.0,J.D. Robb,2002.0,Reunion in Death,\"Reunion in Death (In Death, #14)\",eng,4.33,16688,19686,581,43,211,2550,7337,9545,https://images.gr-assets.com/books/1305123931l/238140.jpg,https://images.gr-assets.com/books/1305123931s/238140.jpg\n7977,173572,173572,2643939,25,310245729,9780310245730.0,Philip Yancey,1977.0,Where Is God When It Hurts?,Where Is God When It Hurts?,en-GB,4.22,9972,10681,239,134,275,1654,3674,4944,https://images.gr-assets.com/books/1328847643l/173572.jpg,https://images.gr-assets.com/books/1328847643s/173572.jpg\n7978,6553733,6553733,6746308,17,61727660,9780061727660.0,Jacqueline Winspear,2010.0,The Mapping of Love and Death,\"The Mapping of Love and Death (Maisie Dobbs, #7)\",en-US,4.19,14010,15555,1304,95,259,2183,7016,6002,https://images.gr-assets.com/books/1329659691l/6553733.jpg,https://images.gr-assets.com/books/1329659691s/6553733.jpg\n7979,29072594,29072594,49302622,42,1501141511,9781501141520.0,Bruce Springsteen,2016.0,Born to Run,Born to Run,eng,4.18,14276,17338,2645,352,547,2436,6292,7711,https://images.gr-assets.com/books/1472979089l/29072594.jpg,https://images.gr-assets.com/books/1472979089s/29072594.jpg\n7982,114128,114128,3037785,62,425197220,9780425197230.0,Nora Roberts,1994.0,Hidden Riches,Hidden Riches,en-US,3.97,12871,14347,268,120,647,3687,4990,4903,https://images.gr-assets.com/books/1309207156l/114128.jpg,https://images.gr-assets.com/books/1309207156s/114128.jpg\n7983,215643,215643,208772,29,042521575X,9780425215750.0,Nalini Singh,2007.0,Visions of Heat,Visions of Heat (Psy-Changeling #2),eng,4.13,22754,25542,1438,116,787,4781,9848,10010,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388450756l/215643.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7984,25953369,25953369,45855800,48,62363603,9780062363600.0,Margot Lee Shetterly,2016.0,Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race,Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race,eng,3.92,19947,25212,4211,497,1461,5611,9595,8048,https://images.gr-assets.com/books/1481844518l/25953369.jpg,https://images.gr-assets.com/books/1481844518s/25953369.jpg\n7985,20995,20995,912908,33,1861977697,9781861977690.0,Robert Greene,2001.0,Art of Seduction,The Art of Seduction,eng,4.05,10100,11526,736,272,642,2154,3592,4866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388282563l/20995.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7986,40217,40217,39898,23,446500038,9780446500040.0,Jacqueline Carey,2007.0,Kushiel's Justice,\"Kushiel's Justice (Imriel's Trilogy, #2)\",eng,4.24,14422,15587,415,83,393,2469,5424,7218,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387707057l/40217.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7987,13497991,13497991,19042585,23,356501507,9780356501500.0,Iain M. Banks,2012.0,The Hydrogen Sonata,The Hydrogen Sonata (Culture #10),eng,4.15,10964,13807,1067,83,373,2175,5980,5196,https://images.gr-assets.com/books/1340894566l/13497991.jpg,https://images.gr-assets.com/books/1340894566s/13497991.jpg\n7988,17661831,17661831,24652514,19,670064181,9780670064180.0,Joseph Boyden,2013.0,The Orenda,The Orenda,eng,4.24,10830,12227,1766,139,360,1538,4546,5644,https://images.gr-assets.com/books/1363710334l/17661831.jpg,https://images.gr-assets.com/books/1363710334s/17661831.jpg\n7989,20878809,20878809,40218701,21,553499084,9780553499090.0,R.J. Palacio,2014.0,The Julian chapter,The Julian Chapter (Wonder Story),eng,4.31,10437,15000,1808,144,351,1867,4942,7696,https://images.gr-assets.com/books/1399502333l/20878809.jpg,https://images.gr-assets.com/books/1399502333s/20878809.jpg\n7990,90078,90078,1689887,165,1406790273,9781406790280.0,John Locke,1689.0,An Essay Concerning Human Understanding,An Essay Concerning Human Understanding,,3.82,11456,11957,92,196,865,3359,4049,3488,https://images.gr-assets.com/books/1416179522l/90078.jpg,https://images.gr-assets.com/books/1416179522s/90078.jpg\n7991,16307,16307,3038509,172,7120680,9780007120680.0,Agatha Christie,1969.0,Hallowe'en Party,\"Hallowe'en Party (Hercule Poirot, #36)\",eng,3.66,14932,18577,1078,239,1457,6398,6729,3754,https://images.gr-assets.com/books/1295673439l/16307.jpg,https://images.gr-assets.com/books/1295673439s/16307.jpg\n7992,9266793,9266793,14147644,26,61869724,9780061869720.0,Sara Shepard,2011.0,Never Have I Ever ,\"Never Have I Ever (The Lying Game, #2)\",eng,4.03,15419,16442,1073,148,712,3579,5983,6020,https://images.gr-assets.com/books/1289526446l/9266793.jpg,https://images.gr-assets.com/books/1289526446s/9266793.jpg\n7993,28698036,28698036,48896020,5,,,Brandon Sanderson,2016.0,Mistborn: Secret History,\"Secret History (Mistborn, #3.5)\",eng,4.38,12796,13424,1081,30,191,1573,4535,7095,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1453756231l/28698036._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7994,952,952,5166,35,1881273652,9781881273650.0,\"Gary Chapman, D. Ross Campbell\",1995.0,The Five Love Languages of Children,The Five Love Languages of Children,,4.21,9744,12513,1329,97,350,1998,4476,5592,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440895321l/952._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7995,15904,15904,3216621,57,1400077095,9781400077090.0,Alexander McCall Smith,2004.0,The Sunday Philosophy Club ,\"The Sunday Philosophy Club (Isabel Dalhousie, #1)\",en-US,3.36,14279,16388,1908,745,2358,5879,5102,2304,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422152744l/15904.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n7996,238142,238142,230676,48,042520300X,9780425203000.0,J.D. Robb,2004.0,\"Visions in Death (In Death, #19)\",\"Visions in Death (In Death, #19)\",eng,4.33,16888,18858,571,30,210,2482,6831,9305,https://images.gr-assets.com/books/1390188401l/238142.jpg,https://images.gr-assets.com/books/1390188401s/238142.jpg\n7997,133954,133954,3319458,374,451528719,9780451528710.0,\"Henry James, Michael Cunningham\",1880.0,Washington Square,Washington Square,,3.67,12071,14611,1068,353,1214,4407,5626,3011,https://images.gr-assets.com/books/1309286618l/133954.jpg,https://images.gr-assets.com/books/1309286618s/133954.jpg\n7998,174879,174879,168933,45,039575531X,9780395755310.0,\"Carl R. Rogers, Peter D. Kramer\",1961.0,On Becoming a Person:  A Therapist's View of Psychotherapy,On Becoming a Person: A Therapist's View of Psychotherapy,,4.11,9988,10370,166,220,423,1817,3476,4434,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348329148l/174879.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8000,16176,16176,1254615,27,60556579,9780060556570.0,Matt Ridley,1993.0,The Red Queen: Sex and the Evolution of Human Nature,The Red Queen: Sex and the Evolution of Human Nature,en-US,4.02,11437,11933,454,222,565,2301,4467,4378,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432490063l/16176._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8004,287380,287380,278812,13,1931514798,9781931514800.0,\"Masami Tsuda, Darcy Lockman, Jack Niida\",1996.0,彼氏彼女の事情 #1,\"Kare Kano: His and Her Circumstances, Vol. 1\",en-US,3.96,12863,13009,134,495,978,2695,3203,5638,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925098l/287380.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8005,21457243,21457243,40771712,15,045146527X,9780451465280.0,Anne Bishop,2015.0,Vision in Silver ,\"Vision in Silver (The Others, #3)\",eng,4.27,15605,18756,1979,85,424,2504,6980,8763,https://images.gr-assets.com/books/1404354570l/21457243.jpg,https://images.gr-assets.com/books/1404354570s/21457243.jpg\n8006,22674493,22674493,42179966,30,1478927941,9781478927940.0,\"James Patterson, Marshall Karp\",2015.0,NYPD Red 3,\"NYPD Red 3 (NYPD Red, #3)\",,4.03,6798,12121,806,105,387,2553,5071,4005,https://images.gr-assets.com/books/1423508688l/22674493.jpg,https://images.gr-assets.com/books/1423508688s/22674493.jpg\n8007,8664368,8664368,13535892,45,1408808870,9781408808870.0,Howard Jacobson,2010.0,The Finkler Question,The Finkler Question,eng,2.76,9627,12062,1913,1887,3046,3909,2466,754,https://images.gr-assets.com/books/1319018978l/8664368.jpg,https://images.gr-assets.com/books/1319018978s/8664368.jpg\n8008,238139,238139,1269360,49,749934433,9780749934440.0,J.D. Robb,2003.0,Imitation in Death,\"Imitation in Death (In Death, #17)\",en-US,4.34,17318,19866,539,38,185,2572,7282,9789,https://images.gr-assets.com/books/1305124047l/238139.jpg,https://images.gr-assets.com/books/1305124047s/238139.jpg\n8009,1219954,1219954,1208431,19,60594772,9780060594770.0,Iris Rainer Dart,1985.0,Beaches,Beaches,eng,4.14,12362,12670,179,149,514,2356,4088,5563,https://images.gr-assets.com/books/1490973062l/1219954.jpg,https://images.gr-assets.com/books/1490973062s/1219954.jpg\n8010,24271,24271,960,74,440229081,9780440229090.0,David Almond,1998.0,Skellig,\"Skellig (Skellig, #1)\",eng,3.77,13778,16437,1785,532,1402,4050,5720,4733,https://images.gr-assets.com/books/1320460285l/24271.jpg,https://images.gr-assets.com/books/1320460285s/24271.jpg\n8011,130119,130119,300449,231,1420926993,9781420927000.0,David Hume,1748.0,An Enquiry concerning Human Understanding,An Enquiry Concerning Human Understanding,eng,3.9,11646,13144,286,263,809,3193,4551,4328,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348617665l/130119.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8012,170641,170641,1484825,71,743268571,9780743268580.0,Mary Higgins Clark,2007.0,I Heard That Song Before,I Heard That Song Before,eng,3.81,12611,14292,901,134,839,4312,5285,3722,https://images.gr-assets.com/books/1408925501l/170641.jpg,https://images.gr-assets.com/books/1408925501s/170641.jpg\n8013,20821299,20821299,40167157,24,803741715,9780803741710.0,B.J. Novak,2014.0,The Book with No Pictures,The Book with No Pictures,eng,4.34,13984,14548,2277,336,434,1549,3909,8320,https://images.gr-assets.com/books/1400873472l/20821299.jpg,https://images.gr-assets.com/books/1400873472s/20821299.jpg\n8014,155981,155981,150518,50,671700758,9780671700750.0,Maxwell Maltz,1960.0,Psycho-Cybernetics. A New Way to Get More Living Out of Life,\"Psycho-Cybernetics, A New Way to Get More Living Out of Life\",,4.2,10652,11122,312,195,452,1768,3172,5535,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347404991l/155981.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8015,4950,4950,981525,46,061871166X,9780618711670.0,Amitav Ghosh,2004.0,The Hungry Tide,The Hungry Tide,eng,3.91,9722,11085,847,114,505,2647,4816,3003,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433646536l/4950.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8016,8646,8646,2744160,48,385337639,9780385337630.0,Mary Lawson,2002.0,Crow Lake,Crow Lake,eng,3.85,12220,13615,1551,143,663,3565,5961,3283,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388187730l/8646.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8017,15728921,12030880,16997178,17,,,Catherine Ryan Hyde,2011.0,Don't Let Me Go,Don't Let Me Go,en-US,4.13,4911,11547,1171,115,353,1930,4711,4438,https://images.gr-assets.com/books/1348261563l/15728921.jpg,https://images.gr-assets.com/books/1348261563s/15728921.jpg\n8018,588234,588234,2937863,29,140086838,9780140086840.0,Leslie Marmon Silko,1977.0,Ceremony,Ceremony,en-US,3.73,11547,13557,1019,516,1266,3440,4437,3898,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1573576343l/588234.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8020,28204534,28204534,49449510,13,1632156741,9781632156750.0,\"Brian K. Vaughan, Cliff Chiang, Matthew Wilson\",2016.0,The Paper Girls - Vol 1,\"Paper Girls, Vol. 1 (Paper Girls, #1)\",eng,3.87,23858,24217,2694,987,1235,5089,9546,7360,https://images.gr-assets.com/books/1458578587l/28204534.jpg,https://images.gr-assets.com/books/1458578587s/28204534.jpg\n8021,828015,828015,1798108,64,888994168,9780888994160.0,Deborah Ellis,2000.0,The Breadwinner,\"The Breadwinner (The Breadwinner, #1)\",eng,3.93,11816,13872,1497,277,753,3090,5280,4472,https://images.gr-assets.com/books/1388330682l/828015.jpg,https://images.gr-assets.com/books/1388330682s/828015.jpg\n8022,16000980,16000980,21762418,22,778314472,9780778314480.0,Robyn Carr,2013.0,The Wanderer,\"The Wanderer (Thunder Point, #1)\",eng,3.95,11256,13664,986,272,652,3014,5265,4461,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390008289l/16000980.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8023,10765,10765,878478,47,1582346178,9781582346180.0,Stephen Clarke,2004.0,A Year in the Merde,A Year in the Merde,en-US,3.54,10319,12216,1100,405,1381,3888,4246,2296,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432601757l/10765._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8024,18635039,18635039,26431596,16,62132520,9780062132530.0,Dorothea Benton Frank,2014.0,The Hurricane Sisters ,The Hurricane Sisters,eng,3.49,10793,13089,1534,455,1533,4513,4279,2309,https://images.gr-assets.com/books/1395873591l/18635039.jpg,https://images.gr-assets.com/books/1395873591s/18635039.jpg\n8025,66933,66933,865773,53,802141323,9780802141320.0,\"Frantz Fanon, Jean-Paul Sartre, Richard Philcox, Homi K. Bhabha\",1961.0,Les Damnés de la terre,The Wretched of the Earth,eng,4.16,11142,12233,474,192,461,1952,4189,5439,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1545547240l/66933.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8026,41698,41698,1064794,57,1416516859,9781416516860.0,Clive Cussler,1984.0,Deep Six,\"Deep Six (Dirk Pitt, #7)\",en-US,3.88,13100,13925,237,61,505,4055,5687,3617,https://images.gr-assets.com/books/1400897211l/41698.jpg,https://images.gr-assets.com/books/1400897211s/41698.jpg\n8027,974122,974122,959019,37,1576739759,9781576739750.0,\"Bruce H. Wilkinson, David Kopp\",2001.0,Secrets of the Vine: Breaking Through to Abundance,Secrets of the Vine: Breaking Through to Abundance,en-US,4.13,10040,10262,137,181,507,1909,2901,4764,https://images.gr-assets.com/books/1335813686l/974122.jpg,https://images.gr-assets.com/books/1335813686s/974122.jpg\n8028,58728,58728,13377363,54,553586386,9780553586380.0,\"Anne Frank, Susan Massotty\",1960.0,\"Verhaaltjes, en gebeurtenissen uit het Achterhuis. Cady's leven\",Anne Frank's Tales from the Secret Annex,,4.23,10587,11235,196,289,452,1628,2895,5971,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388749846l/58728.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8029,20174424,20174424,28030792,20,080413717X,9780804137170.0,Robert Jackson Bennett,2014.0,City of Stairs,\"City of Stairs (The Divine Cities, #1)\",eng,4.13,11863,14286,1989,209,446,2103,6096,5432,https://images.gr-assets.com/books/1394545220l/20174424.jpg,https://images.gr-assets.com/books/1394545220s/20174424.jpg\n8030,512475,512475,4603746,64,743484274,9780743484280.0,Mary Higgins Clark,1980.0,The Cradle Will Fall,The Cradle Will Fall,,3.89,14370,15666,330,93,695,4504,5996,4378,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348145655l/512475.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8031,114701,114701,299695,23,439108381,9780439108390.0,Bruce Coville,1994.0,Into the Land of the Unicorns,\"Into the Land of the Unicorns (Unicorn Chronicles, #1)\",en-US,4.04,14976,15575,554,202,727,3468,4983,6195,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388331416l/114701.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8032,33723,33723,33774,3,373250746,9780373250740.0,\"Lauren Henderson, Chris Manby, Sarah Mlynowski, Jill A. Davis, Stella Duffy, Lisa Jewell, Marian Keyes, Sophie Kinsella, Adèle Lang, Carole Matthews, Anna Maxted, Megan McCafferty, Alisa Valdes, Isabel Wolff, Meg Cabot, Jessica Adams, Louise Bagshawe, Emily Barr, Jenny Colgan, Lynda Curnyn, Jennifer Weiner\",2004.0,Girls Night In,Girls' Night In,eng,3.61,11485,11559,182,421,1235,3719,3194,2990,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387663697l/33723.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8033,21025,21025,22212,48,60938110,9780060938120.0,\"Irvin D. Yalom, Nicola Ferguson\",2001.0,The Gift of Therapy: An Open Letter to a New Generation of Therapists and Their Patients,The Gift of Therapy: An Open Letter to a New Generation of Therapists and Their Patients,,4.22,9569,10817,384,161,354,1554,3600,5148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1581004586l/21025._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8034,160830,160830,155231,28,1591841003,9781591841000.0,Seth Godin,2005.0,All Marketers Are Liars: The Power of Telling Authentic Stories in a Low-Trust World,All Marketers Are Liars: The Power of Telling Authentic Stories in a Low-Trust World,en-US,3.88,9068,9855,347,276,616,2271,3518,3174,https://images.gr-assets.com/books/1420382656l/160830.jpg,https://images.gr-assets.com/books/1420382656s/160830.jpg\n8035,36159,36159,2498,23,756403146,9780756403140.0,C.S. Friedman,1991.0,Black Sun Rising,\"Black Sun Rising (The Coldfire Trilogy, #1)\",en-US,3.93,13994,15285,535,327,1014,3305,5406,5233,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437435124l/36159._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8037,752994,752994,685838,184,486270653,9780486270650.0,Molière,1666.0,Le Misanthrope ou L'Atrabilaire Amoureux,The Misanthrope,eng,3.78,12994,14435,250,240,1049,4133,5200,3813,https://images.gr-assets.com/books/1416873266l/752994.jpg,https://images.gr-assets.com/books/1416873266s/752994.jpg\n8038,44660,44660,43992,4,345340442,9780345340440.0,David Eddings,1984.0,\"The Belgariad Boxed Set: Pawn of Prophecy, Queen of Sorcery, Magician's Gambit, Castle of Wizardry, & Enchanters' End Game (The Belgariad, #1-5)\",\"The Belgariad Boxed Set: Pawn of Prophecy / Queen of Sorcery / Magician's Gambit / Castle of Wizardry / Enchanters' End Game (The Belgariad, #1-5)\",eng,4.26,11755,11800,215,105,411,1759,3518,6007,https://images.gr-assets.com/books/1391347386l/44660.jpg,https://images.gr-assets.com/books/1391347386s/44660.jpg\n8039,60937,60937,1300300,28,753819481,9780753819490.0,Alice Walker,1989.0,The Temple of My Familiar,The Temple of My Familiar,eng,4.05,11471,12187,403,191,540,2534,4177,4745,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170553835l/60937._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8040,9542259,9542259,14428619,26,349400202,9780349400200.0,J.R. Ward,2011.0,\"Envy (Fallen Angels, #3)\",\"Envy (Fallen Angels, #3)\",eng,4.21,15836,18889,1134,137,515,2981,6881,8375,https://images.gr-assets.com/books/1464568467l/9542259.jpg,https://images.gr-assets.com/books/1464568467s/9542259.jpg\n8041,18892134,18892134,25389332,8,,,Veronica Roth,2014.0,Four: The Son,\"The Son (Divergent, #0.3)\",eng,4.11,11370,15179,481,135,594,3113,5025,6312,https://images.gr-assets.com/books/1395049991l/18892134.jpg,https://images.gr-assets.com/books/1395049991s/18892134.jpg\n8042,2948832,2948832,2978308,47,312949812,9780312949820.0,Lisa Kleypas,2008.0,Seduce Me at Sunrise,\"Seduce Me at Sunrise (The Hathaways, #2)\",eng,4.1,22167,23947,1280,139,815,4572,9348,9073,https://images.gr-assets.com/books/1390526497l/2948832.jpg,https://images.gr-assets.com/books/1390526497s/2948832.jpg\n8043,26721568,26721568,43959628,25,373212054,9780373212060.0,Jennifer L. Armentrout,2016.0,The Problem with Forever,The Problem with Forever,eng,4.0,17394,20553,3257,340,1143,4070,7525,7475,https://images.gr-assets.com/books/1452349399l/26721568.jpg,https://images.gr-assets.com/books/1452349399s/26721568.jpg\n8044,28686840,28686840,48860979,32,385755929,9780385755920.0,Jennifer Niven,2016.0,Holding Up the Universe,Holding Up the Universe,eng,3.93,19504,23681,4068,367,1321,5240,9441,7312,https://images.gr-assets.com/books/1463377718l/28686840.jpg,https://images.gr-assets.com/books/1463377718s/28686840.jpg\n8045,12357,12357,748402,9,141006579,9780141006570.0,Sarah Vowell,2000.0,Take the Cannoli: Stories from the New World,Take the Cannoli,,3.86,10235,12330,743,176,642,3151,5088,3273,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166501351l/12357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8047,126061,126061,452382,84,451037707,9780451037700.0,James D. Watson,1968.0,The Double Helix: A Personal Account of the Discovery of the Structure of DNA,The Double Helix,eng,3.87,11415,12997,637,278,769,3208,4823,3919,https://images.gr-assets.com/books/1384152213l/126061.jpg,https://images.gr-assets.com/books/1384152213s/126061.jpg\n8048,823412,823412,557068,10,718147715,9780718147720.0,Jamie Oliver,2006.0,Cook with Jamie,Cook with Jamie,eng,4.05,10592,10891,104,167,457,2268,3788,4211,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348728611l/823412.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8049,20253,20253,705946,46,553580302,9780553580300.0,\"Brian Herbert, Kevin J. Anderson\",2000.0,Dune: House Harkonnen,House Harkonnen (Prelude to Dune #2),eng,3.63,11890,13027,218,542,1230,3796,4349,3110,https://images.gr-assets.com/books/1403181168l/20253.jpg,https://images.gr-assets.com/books/1403181168s/20253.jpg\n8050,2992069,3992020,3022533,21,749909056,9780749909060.0,Sherrilyn Kenyon,2009.0,Dream Warrior,Dream Warrior (Dream-Hunter #4; Dark-Hunter #17),eng,4.21,12404,20896,582,98,617,3608,7024,9549,https://images.gr-assets.com/books/1358132728l/2992069.jpg,https://images.gr-assets.com/books/1358132728s/2992069.jpg\n8051,6282334,6282334,6466309,19,1400066212,9781400066220.0,Tracy Kidder,2000.0,Strength in What Remains,Strength in What Remains: A Journey of Remembrance and Forgiveness,eng,4.01,11833,12735,1649,130,455,2619,5469,4062,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1394335626l/6282334.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8053,38739,23014868,2897191,47,312966202,9780312966200.0,James Herriot,1981.0,The Lord God Made Them All,The Lord God Made Them All,en-US,4.39,12510,16529,346,36,144,1950,5631,8768,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210936l/38739.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8054,112693,112693,3190836,39,7191480,9780007191480.0,Louise Rennison,2005.0,... Then He Ate My Boy Entracers,\"Then He Ate My Boy Entrancers (Confessions of Georgia Nicolson, #6)\",eng,4.09,14737,16507,380,150,629,3467,5622,6639,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347563558l/112693.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8055,94807,94807,91397,8,60267887,9780060267890.0,Arnold Lobel,1987.0,Frog And Toad Book Set: Frog And Toad Are Friends; Frog And Toad Together; Days With Frog And Toad; Frog And Toad All Year,The Frog and Toad Treasury: Frog and Toad are Friends/Frog and Toad Together/Frog and Toad All Year  (Frog and Toad #1-3),,4.4,13214,14203,206,112,313,1900,3320,8558,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923023l/94807.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8056,12254379,12254379,18525322,59,,,\"Haruki Murakami, Jay Rubin\",2009.0,1Q84 Books 1-2,\"1Q84 #1-2 (1Q84, #1-2)\",eng,4.07,8342,12788,1130,196,588,2153,5079,4772,https://images.gr-assets.com/books/1327925087l/12254379.jpg,https://images.gr-assets.com/books/1327925087s/12254379.jpg\n8057,140345,140345,1507078,39,6499473,9780006499470.0,\"Mary Westmacott, Agatha Christie\",1944.0,Absent in the Spring ,Absent In The Spring,eng,4.14,9787,9971,191,131,393,1955,2915,4577,https://images.gr-assets.com/books/1396225976l/140345.jpg,https://images.gr-assets.com/books/1396225976s/140345.jpg\n8059,22402972,22402972,41828131,30,399162593,9780399162600.0,Lynda Mullaly Hunt,2015.0,Fish In A Tree,Fish in a Tree,eng,4.28,15582,16881,2938,252,433,2043,5752,8401,https://images.gr-assets.com/books/1403181554l/22402972.jpg,https://images.gr-assets.com/books/1403181554s/22402972.jpg\n8060,13414594,13414594,18713722,41,345528921,9780345528930.0,Debbie Macomber,2012.0,The Inn At Rose Harbor,The Inn at Rose Harbor (Rose Harbor #1),eng,3.93,13001,15645,1723,226,808,3879,5717,5015,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185644l/13414594.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8061,12926432,12926432,16690598,41,770435629,9780770435620.0,Fiona Carnarvon,2011.0,Lady Almina and the Real Downton Abbey: The Lost Legacy of Highclere Castle,Lady Almina and the Real Downton Abbey: The Lost Legacy of Highclere Castle,eng,3.61,12235,14331,2090,361,1172,4793,5363,2642,https://images.gr-assets.com/books/1344371479l/12926432.jpg,https://images.gr-assets.com/books/1344371479s/12926432.jpg\n8062,116445,116445,1789199,17,451460413,9780451460420.0,S.M. Stirling,2004.0,Dies the Fire ,\"Dies the Fire (Emberverse, #1)\",eng,3.92,11912,12931,1296,487,874,2427,4515,4628,https://images.gr-assets.com/books/1414175443l/116445.jpg,https://images.gr-assets.com/books/1414175443s/116445.jpg\n8064,113576,113576,1604,11,1591840538,9781591840530.0,\"Bethany McLean, Peter Elkind\",2003.0,The Smartest Guys in the Room: The Amazing Rise and Scandalous Fall of Enron,The Smartest Guys in the Room: The Amazing Rise and Scandalous Fall of Enron,,4.14,10525,11228,383,92,282,1885,4634,4335,https://images.gr-assets.com/books/1309204701l/113576.jpg,https://images.gr-assets.com/books/1309204701s/113576.jpg\n8065,27213163,27213163,47255158,18,62359983,9780062359990.0,Jacqueline Woodson,2016.0,Another Brooklyn,Another Brooklyn,eng,3.87,13176,14800,2480,262,859,3372,6333,3974,https://images.gr-assets.com/books/1491253077l/27213163.jpg,https://images.gr-assets.com/books/1491253077s/27213163.jpg\n8066,94672,94672,3338224,29,451218469,9780451218470.0,John Shors,2004.0,Beneath a Marble Sky,Beneath a Marble Sky,eng,3.99,11427,12222,1698,208,628,2401,4798,4187,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442623817l/94672._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8067,39032,39032,1295464,52,765354934,9780765354940.0,\"Douglas Preston, Lincoln Child\",1996.0,Mount Dragon,Mount Dragon,,3.91,12656,13940,332,91,653,3762,5404,4030,https://images.gr-assets.com/books/1312037682l/39032.jpg,https://images.gr-assets.com/books/1312037682s/39032.jpg\n8068,64960,64960,1572345,41,042511984X,9780425119850.0,\"Brian Coffey, Dean Koontz\",1977.0,The Face of Fear,The Face of Fear,eng,3.8,13345,13739,196,152,952,4280,4431,3924,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432840275l/64960._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8069,58547,58547,57016,28,157322359X,9781573223590.0,Kurt Cobain,2002.0,Journals,Journals,,3.98,10349,11524,471,241,749,2531,3474,4529,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388192877l/58547.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8071,28703,28703,3019373,75,330412744,9780330412740.0,Don DeLillo,2003.0,Cosmopolis,Cosmopolis,en-GB,3.22,10099,12434,1160,772,2200,4423,3582,1457,https://images.gr-assets.com/books/1328389098l/28703.jpg,https://images.gr-assets.com/books/1328389098s/28703.jpg\n8073,3673357,3673357,3716647,39,61257052,9780061257060.0,Adriana Trigiani,2009.0,Very Valentine,Very Valentine,en-US,3.8,13279,14998,1809,225,964,4122,5982,3705,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442506747l/3673357._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8074,21324,21324,22505,12,1401210015,9781401210010.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Shawn McManus, Andrew Pepoy\",2006.0,\"Fables, Volume 8: Wolves\",\"Fables, Vol. 8: Wolves\",eng,4.28,15530,15795,519,91,257,2071,6051,7325,https://images.gr-assets.com/books/1375393296l/21324.jpg,https://images.gr-assets.com/books/1375393296s/21324.jpg\n8075,41962,41962,888796,63,009949857X,9780099498580.0,Maeve Binchy,1982.0,Light A Penny Candle,Light a Penny Candle,eng,3.88,13144,14547,589,131,673,4060,5615,4068,https://images.gr-assets.com/books/1320391955l/41962.jpg,https://images.gr-assets.com/books/1320391955s/41962.jpg\n8076,184324,184324,3266642,20,515140880,9780515140880.0,Christine Feehan,2002.0,\"Dark Demon (Carpathians, #16)\",\"Dark Demon (Dark, #16)\",eng,4.34,15915,16622,276,114,394,2240,4915,8959,https://images.gr-assets.com/books/1309288721l/184324.jpg,https://images.gr-assets.com/books/1309288721s/184324.jpg\n8077,10822174,10822174,15245057,19,1607063921,9781607063930.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2011.0,\"The Walking Dead, Vol. 14: No Way Out \",\"The Walking Dead, Vol. 14: No Way Out\",eng,4.34,13590,14110,556,73,237,1670,4977,7153,https://images.gr-assets.com/books/1327883131l/10822174.jpg,https://images.gr-assets.com/books/1327883131s/10822174.jpg\n8078,138399,138399,13328488,8,1582406987,9781582406980.0,\"Robert Kirkman, Charlie Adlard\",2005.0,The Walking Dead. Book Two,\"The Walking Dead, Book Two (The Walking Dead #13-24)\",eng,4.35,12650,12957,514,48,195,1480,4622,6612,https://images.gr-assets.com/books/1366213424l/138399.jpg,https://images.gr-assets.com/books/1366213424s/138399.jpg\n8079,59780,59780,865267,65,156226006,9780156226000.0,\"Italo Calvino, William Weaver, Ανταίος Χρυσοστομίδης, Ελευθερία Κοψιδά\",1965.0,Le cosmicomiche,Cosmicomics,en-US,4.2,10389,11623,743,106,380,1885,3973,5279,https://images.gr-assets.com/books/1327975008l/59780.jpg,https://images.gr-assets.com/books/1327975008s/59780.jpg\n8080,60935,60935,435527,1,671789457,9780671789460.0,Alice Walker,1992.0,Possessing the Secret of Joy,Possessing the Secret of Joy,,4.06,11748,12535,476,145,492,2518,4689,4691,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170553834l/60935.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8081,190999,190999,348798,60,20248717,9780020248710.0,Clifford D. Simak,1963.0,Way Station,Way Station,eng,4.03,12087,15116,725,176,573,3228,5802,5337,https://images.gr-assets.com/books/1326490682l/190999.jpg,https://images.gr-assets.com/books/1326490682s/190999.jpg\n8082,7476122,7476122,6847345,25,373210051,9780373210050.0,Rachel Vincent,2010.0,My Soul to Keep,\"My Soul to Keep (Soul Screamers, #3)\",eng,4.09,17033,17854,928,227,725,3530,6090,7282,https://images.gr-assets.com/books/1268059270l/7476122.jpg,https://images.gr-assets.com/books/1268059270s/7476122.jpg\n8083,175113,175113,169164,40,023252078X,9780232520780.0,Henri J.M. Nouwen,1991.0,The Return of the Prodigal Son: A Story of Homecoming,The Return of the Prodigal Son: A Story of Homecoming,eng,4.38,10802,12111,684,124,311,1346,3444,6886,https://images.gr-assets.com/books/1327010857l/175113.jpg,https://images.gr-assets.com/books/1327010857s/175113.jpg\n8084,33293,7937510,2074000,25,393324869,9780393324860.0,Charles Wheelan,2002.0,Naked Economics: Undressing the Dismal Science,Naked Economics: Undressing the Dismal Science,,4.0,5646,11154,809,131,484,2238,4749,3552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388217711l/33293.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8085,153781,153781,1112036,19,590396056,9780590396060.0,Tamora Pierce,2000.0,Magic Steps,\"Magic Steps (The Circle Opens, #1)\",,3.98,17813,18884,354,123,902,4704,6573,6582,https://images.gr-assets.com/books/1366188641l/153781.jpg,https://images.gr-assets.com/books/1366188641s/153781.jpg\n8086,16233105,17944662,22227144,13,,,Addison Moore,2012.0,Someone To Love,\"Someone to Love (Someone to Love, #1)\",en-US,3.74,14747,17574,848,555,1440,4723,6128,4728,https://images.gr-assets.com/books/1355429121l/16233105.jpg,https://images.gr-assets.com/books/1355429121s/16233105.jpg\n8087,104101,104101,955081,38,60733497,9780060733490.0,Guy Gavriel Kay,1995.0,The Lions of Al-Rassan,The Lions of Al-Rassan,eng,4.27,13954,15532,991,159,463,2058,5160,7692,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348007861l/104101.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8088,162086,162086,156439,15,1416521836,9781416521840.0,Laura Wiess,2007.0,Such a Pretty Girl,Such a Pretty Girl,eng,3.89,13445,13787,1100,346,1029,3291,4279,4842,https://images.gr-assets.com/books/1336185676l/162086.jpg,https://images.gr-assets.com/books/1336185676s/162086.jpg\n8090,350065,350065,340317,42,297775340,9780297775350.0,Judith Krantz,1978.0,Scruples,Scruples,eng,3.8,12465,12927,190,225,910,3845,4163,3784,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390623030l/350065.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8091,4618898,4618898,4668853,16,312385188,9780312385190.0,Sandra Dallas,1997.0,Prayers for Sale,Prayers for Sale,eng,3.83,13730,14413,2164,181,749,3876,6138,3469,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441720342l/4618898._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8093,15760,15760,359575,49,553582895,9780553582900.0,Dean Koontz,1994.0,Dark Rivers of the Heart,Dark Rivers of the Heart,,3.88,13792,14708,391,191,807,4011,5336,4363,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921195l/15760.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8094,226858,226858,219740,14,345423291,9780345423290.0,Elizabeth Berg,1998.0,What We Keep ,What We Keep ,eng,3.91,12742,13320,671,71,475,3529,5719,3526,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925334l/226858.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8095,6647312,6647312,6841835,65,1416985794,9781416985790.0,\"Janne Teller, Martin Aitken\",2000.0,Intet,Nothing,eng,3.76,9290,14823,2333,753,1367,3181,4863,4659,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348405700l/6647312.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8096,26581,26581,3470,11,452156610,9780452156620.0,\"A.N. Roquelaure, Anne Rice\",1983.0,Sleeping Beauty Box Set,Sleeping Beauty Box Set,eng,3.98,9850,11848,307,625,841,2114,2797,5471,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348561551l/26581.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8097,94510,94510,2647240,13,1563896451,9781563896450.0,\"Brian Azzarello, Eduardo Risso\",1999.0,\"100 Bullets, Vol. 1: First Shot, Last Call (100 bullets, #1)\",\"100 Bullets, Vol. 1: First Shot, Last Call\",eng,3.82,13026,13117,359,298,985,3368,4614,3852,https://images.gr-assets.com/books/1327888942l/94510.jpg,https://images.gr-assets.com/books/1327888942s/94510.jpg\n8098,1116393,1116393,1561784,24,1841496057,9781841496050.0,Karen Miller,2005.0,\"Innocence Lost (Kingmaker, Kingbreaker, #2)\",\"The Awakened Mage (Kingmaker, Kingbreaker, #2)\",eng,3.71,12475,13406,431,359,1134,3888,4672,3353,https://images.gr-assets.com/books/1327918842l/1116393.jpg,https://images.gr-assets.com/books/1327918842s/1116393.jpg\n8099,14358,14358,1234050,22,440910811,9780440910820.0,Madeleine L'Engle,1980.0,\"A Ring of Endless Light (Austin Family, #4)\",\"A Ring of Endless Light (Austin Family, #4)\",eng,4.14,15629,16756,643,150,584,3198,5665,7159,https://images.gr-assets.com/books/1279354664l/14358.jpg,https://images.gr-assets.com/books/1279354664s/14358.jpg\n8100,10757806,10757806,14982110,21,316036064,9780316036060.0,Sara Zarr,2011.0,How to Save a Life,How to Save a Life,en-US,3.89,13864,14335,1772,290,808,3388,5511,4338,https://images.gr-assets.com/books/1337211222l/10757806.jpg,https://images.gr-assets.com/books/1337211222s/10757806.jpg\n8101,6324903,6324903,6510453,35,1416577572,9781416577580.0,Matthew Reilly,2009.0,The Five Greatest Warriors,\"The 5 Greatest Warriors (Jack West Jr, #3)\",eng,4.24,10772,12321,406,103,378,1826,4224,5790,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442798615l/6324903._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8102,25337081,25337081,45073734,25,399170898,9780399170900.0,J.D. Robb,2016.0,Brotherhood in Death,\"Brotherhood in Death (In Death, #42)\",eng,4.35,9041,15189,1466,145,307,1726,4923,8088,https://images.gr-assets.com/books/1439226052l/25337081.jpg,https://images.gr-assets.com/books/1439226052s/25337081.jpg\n8103,176788,176788,2612,25,886773776,9780886773780.0,Mercedes Lackey,1987.0,\"Arrow's Flight (Heralds of Valdemar, #2)\",\"Arrow's Flight (Heralds of Valdemar, #2)\",eng,4.13,17226,17884,274,76,565,3615,6284,7344,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388537944l/176788.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8104,161656,161656,903484,38,763628115,9780763628120.0,\"Liz Kessler, Sarah Gibb\",2003.0,The Tail of Emily Windsnap,\"The Tail of Emily Windsnap (Emily Windsnap, #1)\",eng,3.89,16453,17523,1590,293,1226,4516,5604,5884,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388242543l/161656.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8105,23341862,23341862,42901339,11,1455554596,9781455554590.0,Sarah Hepola,2015.0,Blackout: Remembering the Things I Drank to Forget,Blackout: Remembering the Things I Drank to Forget,eng,3.96,9165,11756,1235,185,471,2512,5030,3558,https://images.gr-assets.com/books/1423750824l/23341862.jpg,https://images.gr-assets.com/books/1423750824s/23341862.jpg\n8106,13003565,13003565,16102896,30,399256202,9780399256200.0,John Flanagan,2012.0,The Invaders,\"The Invaders (Brotherband Chronicles, #2)\",eng,4.4,13040,14222,494,74,198,1502,4593,7855,https://images.gr-assets.com/books/1327983041l/13003565.jpg,https://images.gr-assets.com/books/1327983041s/13003565.jpg\n8107,44796,44796,2095270,349,1598185217,9781598185220.0,W. Somerset Maugham,1919.0,The Moon and Sixpence,The Moon and Sixpence,,4.11,10074,13062,825,76,453,2351,5245,4937,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348314865l/44796.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8109,23753,23753,1789924,5,1401210821,9781401210820.0,\"Neil Gaiman, Mike Dringenberg, Chris Bachalo, Michael Zulli, Kelly Jones, Charles Vess, Colleen Doran, Malcolm Jones III, Steve Parkhouse, Daniel Vozzo, Lee Loughridge, Steve Oliff, Todd Klein, Dave McKean, Sam Kieth\",2006.0,\"The Absolute Sandman, Volume One\",\"The Absolute Sandman, Volume One\",eng,4.65,13401,13726,476,72,128,684,2744,10098,https://images.gr-assets.com/books/1312226853l/23753.jpg,https://images.gr-assets.com/books/1312226853s/23753.jpg\n8111,11831,11831,1968913,40,689863624,9780689863620.0,Cynthia Voigt,1982.0,\"Dicey's Song (Tillerman Family, #2)\",\"Dicey's Song (Tillerman Cycle, #2)\",eng,3.94,14926,15683,607,348,816,3573,5623,5323,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923650l/11831.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8112,763429,763429,13328482,4,1582408254,9781582408260.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn, Rus Wooton\",2007.0,The Walking Dead. Book Three,\"The Walking Dead, Book Three (The Walking Dead #25-36)\",eng,4.43,12384,12469,431,54,172,1230,3938,7075,https://images.gr-assets.com/books/1426446934l/763429.jpg,https://images.gr-assets.com/books/1426446934s/763429.jpg\n8114,9998,9998,58336,90,679733787,9780679733780.0,\"Kōbō Abe, E. Dale Saunders\",1962.0,砂の女 [Suna no onna],The Woman in the Dunes,eng,3.91,11467,13886,1026,264,838,3046,5523,4215,https://images.gr-assets.com/books/1361254930l/9998.jpg,https://images.gr-assets.com/books/1361254930s/9998.jpg\n8115,77298,77298,17171130,119,140248927,9780140248920.0,\"Mario Vargas Llosa, Helen R. Lane\",1977.0,La tía Julia y el escribidor,Aunt Julia and the Scriptwriter,eng,3.9,9228,12384,773,163,660,2947,5075,3539,https://images.gr-assets.com/books/1327993472l/77298.jpg,https://images.gr-assets.com/books/1327993472s/77298.jpg\n8116,25005214,25005214,44676143,10,62422960,9780062422960.0,Victoria Aveyard,2015.0,Queen Song,\"Queen Song (Red Queen, #0.1)\",,3.74,12436,13562,1076,746,921,3569,4267,4059,https://images.gr-assets.com/books/1437677533l/25005214.jpg,https://images.gr-assets.com/books/1437677533s/25005214.jpg\n8117,22418,22418,978451,14,1563895684,9781563895680.0,\"Warren Ellis, Darick Robertson, Rodney Ramos\",1999.0,\"Transmetropolitan, Vol. 3: Year of the Bastard\",\"Transmetropolitan, Vol. 3: Year of the Bastard (Transmetropolitan, #3)\",eng,4.4,12188,13035,213,172,292,1255,3786,7530,https://images.gr-assets.com/books/1452027011l/22418.jpg,https://images.gr-assets.com/books/1452027011s/22418.jpg\n8119,18163646,18163646,25526485,16,,,Amy Zhang,2014.0,Falling Into Place,Falling into Place,,3.88,12411,13919,2165,307,887,3387,4896,4442,https://images.gr-assets.com/books/1393613084l/18163646.jpg,https://images.gr-assets.com/books/1393613084s/18163646.jpg\n8120,56594,56594,55155,18,60688246,9780060688240.0,\"Sheldon Vanauken, C.S. Lewis\",1977.0,A Severe Mercy,\"A Severe Mercy: A Story of Faith, Tragedy and Triumph\",en-US,4.32,11207,11588,807,177,360,1363,3329,6359,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440774555l/56594._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8121,9862761,9862761,14754158,30,307265722,9780307265720.0,Charles C. Mann,2011.0,1493: Uncovering the New World Columbus Created,1493: Uncovering the New World Columbus Created,en-GB,4.05,10963,11959,1125,238,496,2129,4615,4481,https://images.gr-assets.com/books/1327900945l/9862761.jpg,https://images.gr-assets.com/books/1327900945s/9862761.jpg\n8122,9429531,9429531,14314019,20,758254091,9780758254090.0,Anna Jean Mayhew,2011.0,The Dry Grass of August,The Dry Grass of August,,3.82,12446,13479,1624,160,722,3615,5921,3061,https://images.gr-assets.com/books/1327170212l/9429531.jpg,https://images.gr-assets.com/books/1327170212s/9429531.jpg\n8125,5981872,5981872,6155268,30,843960434,9780843960430.0,Jennifer Ashley,2009.0,The Madness of Lord Ian Mackenzie,\"The Madness of Lord Ian Mackenzie (Mackenzies & McBrides, #1)\",eng,4.07,19932,22160,1905,556,1068,3819,7596,9121,https://images.gr-assets.com/books/1322336718l/5981872.jpg,https://images.gr-assets.com/books/1322336718s/5981872.jpg\n8126,127712,127712,3870,32,99453452,9780099453450.0,Stephen Hunter,1993.0,Point of Impact,\"Point of Impact (Bob Lee Swagger, #1)\",eng,4.26,10318,12092,589,133,265,1463,4666,5565,https://images.gr-assets.com/books/1315656617l/127712.jpg,https://images.gr-assets.com/books/1315656617s/127712.jpg\n8127,6193,6193,2055648,89,009947915X,9780099479150.0,J.M. Coetzee,1983.0,Life & Times of Michael K.,Life and Times of Michael K,,3.85,10647,12246,709,239,775,3004,4840,3388,https://images.gr-assets.com/books/1327203650l/6193.jpg,https://images.gr-assets.com/books/1327203650s/6193.jpg\n8128,16948,16948,882029,21,044900483X,9780449004840.0,Mary Doria Russell,1998.0,Children of God,\"Children of God (The Sparrow, #2)\",eng,4.05,12938,14009,1298,113,557,2685,5856,4798,https://images.gr-assets.com/books/1373509005l/16948.jpg,https://images.gr-assets.com/books/1373509005s/16948.jpg\n8130,1776251,1776251,1488433,12,718152433,9780718152440.0,Jamie Oliver,2007.0,Jamie at Home: Cook Your Way to the Good Life,Jamie at Home: Cook Your Way to the Good Life,,4.09,10588,10787,129,123,380,2246,3712,4326,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347729405l/1776251.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8131,41701,41701,2861842,77,425197395,9780425197390.0,Clive Cussler,1973.0,The Mediterranean Caper,\"The Mediterranean Caper (Dirk Pitt, #2)\",eng,3.75,13139,14972,503,199,997,4703,5454,3619,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442726835l/41701._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8132,18892,18892,3044552,64,451454243,9780451454250.0,\"Marion Zimmer Bradley, Diana L. Paxson\",1993.0,The Forest House,\"The Forest House (Avalon, #2)\",eng,3.85,13951,15377,341,173,894,4272,5825,4213,https://images.gr-assets.com/books/1319444215l/18892.jpg,https://images.gr-assets.com/books/1319444215s/18892.jpg\n8133,37302,37302,2315985,35,743484193,9780743484190.0,John Sandford,1999.0,Certain Prey,\"Certain Prey (Lucas Davenport, #10)\",eng,4.2,12320,14257,425,49,181,2196,6279,5552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348125158l/37302.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8134,478657,478657,1791813,28,425210812,9780425210820.0,MaryJanice Davidson,2005.0,Undead and Unreturnable,\"Undead and Unreturnable (Undead, #4)\",en-US,3.89,18700,20072,531,160,958,5811,7202,5941,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388191267l/478657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8135,96594,96594,93102,27,441014763,9780441014770.0,Jack Campbell,2007.0,\"Fearless (The Lost Fleet, #2)\",\"Fearless (The Lost Fleet, #2)\",,3.97,12733,14477,457,71,481,3313,6537,4075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348244880l/96594.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8136,820956,820956,806796,20,553578553,9780553578550.0,Sara Donati,2000.0,Dawn on a Distant Shore,\"Dawn on a Distant Shore (Wilderness, #2)\",en-US,4.19,11461,12990,471,97,329,2032,5061,5471,https://images.gr-assets.com/books/1403186902l/820956.jpg,https://images.gr-assets.com/books/1403186902s/820956.jpg\n8138,27864391,27864391,83062,62,,9781474601570.0,David Ebershoff,2000.0,The Danish Girl,The Danish Girl,eng,3.74,8292,13984,1700,239,927,4006,5842,2970,https://images.gr-assets.com/books/1451790312l/27864391.jpg,https://images.gr-assets.com/books/1451790312s/27864391.jpg\n8140,5481,5481,16335101,80,60898526,9780060898530.0,Aldous Huxley,1958.0,Brave New World Revisited ,Brave New World Revisited ,en-US,3.93,11073,12286,714,231,691,2765,4567,4032,https://images.gr-assets.com/books/1410136964l/5481.jpg,https://images.gr-assets.com/books/1410136964s/5481.jpg\n8141,40483,40483,2462307,124,345301110,9780345301120.0,\"Pauline Réage, Sabine d'Estree\",1954.0,Histoire d'O,Story of O (Story of O #1),eng,3.34,10922,14059,1270,1129,2193,4235,3781,2721,https://images.gr-assets.com/books/1464369941l/40483.jpg,https://images.gr-assets.com/books/1464369941s/40483.jpg\n8142,45106,45106,2469,27,60757639,9780060757630.0,Robin Hobb,2006.0,Forest Mage,\"Forest Mage (Soldier Son, #2)\",en-US,3.35,11953,13542,404,750,2104,4570,3850,2268,https://images.gr-assets.com/books/1446012746l/45106.jpg,https://images.gr-assets.com/books/1446012746s/45106.jpg\n8143,425124,425124,1352373,53,380726297,9780380726300.0,Dennis Lehane,1997.0,Sacred,\"Sacred (Kenzie & Gennaro, #3)\",,3.94,12247,14111,726,63,375,3379,6769,3525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435786018l/425124._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8144,18799585,15096138,20386536,16,,,Kendra Elliot,2012.0,Hidden ,Hidden (Bone Secrets. #1),eng,3.98,8758,13745,767,251,680,2882,5210,4722,https://images.gr-assets.com/books/1386936783l/18799585.jpg,https://images.gr-assets.com/books/1386936783s/18799585.jpg\n8145,29104680,29104680,49343156,5,,,Penelope Douglas,2016.0,Punk 57,Punk 57,,4.22,12748,16703,2026,260,626,2224,5648,7945,https://images.gr-assets.com/books/1466189204l/29104680.jpg,https://images.gr-assets.com/books/1466189204s/29104680.jpg\n8146,337623,337623,1427512,49,425138232,9780425138240.0,Jack Higgins,1992.0,Eye of the Storm,\"Eye of the Storm (Sean Dillon, #1)\",eng,3.96,11724,12202,120,136,457,2974,4873,3762,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390941227l/337623.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8147,17835351,17835351,24955642,2,,,Sean Patrick,2013.0,Nikola Tesla: Imagination and the Man That Invented the 20th Century,Nikola Tesla: Imagination and the Man That Invented the 20th Century,eng,3.79,13584,13604,780,514,1191,3142,4568,4189,https://images.gr-assets.com/books/1366561721l/17835351.jpg,https://images.gr-assets.com/books/1366561721s/17835351.jpg\n8148,23221,23221,2610019,41,60880120,9780060880120.0,Meg Cabot,2006.0,How to Be Popular,How to Be Popular,eng,3.54,18568,19634,925,511,2279,6843,6018,3983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385321684l/23221.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8149,7707,7707,1701532,13,451530098,9780451530100.0,\"George Bernard Shaw, Alan Jay Lerner\",1956.0,Pygmalion and My Fair Lady (50th Anniversary Edition) (Signet Classics (Paperback)),Pygmalion & My Fair Lady,,4.24,13318,13460,63,133,380,2146,4225,6576,https://images.gr-assets.com/books/1327891970l/7707.jpg,https://images.gr-assets.com/books/1327891970s/7707.jpg\n8150,22028,22028,4362765,71,345432401,9780345432410.0,Mario Puzo,1999.0,Omertà,Omerta,eng,3.68,10538,11377,330,182,898,3724,4151,2422,https://images.gr-assets.com/books/1327867034l/22028.jpg,https://images.gr-assets.com/books/1327867034s/22028.jpg\n8151,12157365,12157365,17128227,12,62103733,9780062103730.0,Elizabeth Norris,2012.0,Unraveling,\"Unraveling (Unraveling, #1)\",en-US,3.84,16361,17460,1908,649,1321,4130,5495,5865,https://images.gr-assets.com/books/1337474732l/12157365.jpg,https://images.gr-assets.com/books/1337474732s/12157365.jpg\n8152,265264,265264,1984746,49,330311735,9780330311730.0,Richard Bach,1988.0,One,One,,3.94,9349,10538,252,237,666,2407,3428,3800,https://images.gr-assets.com/books/1356137029l/265264.jpg,https://images.gr-assets.com/books/1356137029s/265264.jpg\n8153,37187,37187,843214,44,763618985,9780763618990.0,Kate DiCamillo,2001.0,The Tiger Rising,The Tiger Rising,eng,3.78,14832,15625,1919,323,1198,4365,5496,4243,https://images.gr-assets.com/books/1479692331l/37187.jpg,https://images.gr-assets.com/books/1479692331s/37187.jpg\n8154,28734,28734,170912,17,886774268,9780886774260.0,Mercedes Lackey,1990.0,Magic's Price,Magic's Price (Valdemar: Last Herald-Mage #3),eng,4.26,17108,17559,270,138,503,2703,5466,8749,https://images.gr-assets.com/books/1478489331l/28734.jpg,https://images.gr-assets.com/books/1478489331s/28734.jpg\n8156,527744,527744,1812530,180,425173909,9780425173910.0,Agatha Christie,1953.0,After the Funeral ,\"After the Funeral (Hercule Poirot, #29)\",eng,3.84,13569,16648,767,62,688,5048,6925,3925,https://images.gr-assets.com/books/1384881992l/527744.jpg,https://images.gr-assets.com/books/1384881992s/527744.jpg\n8158,13614,13614,1782163,31,1421506297,9781421506300.0,\"Tsugumi Ohba, Takeshi Obata\",2005.0,デスノート #8 (Desu Nōto) Mato (的),\"Death Note, Vol. 8: Target (Death Note, #8)\",eng,4.27,14494,14881,352,124,497,2266,4318,7676,https://images.gr-assets.com/books/1487897453l/13614.jpg,https://images.gr-assets.com/books/1487897453s/13614.jpg\n8160,12617,12617,857416,25,375714499,9780375714500.0,\"Noam Chomsky, Edward S. Herman\",1988.0,Manufacturing Consent: The Political Economy of the Mass Media,Manufacturing Consent: The Political Economy of the Mass Media,eng,4.22,10301,10987,350,127,332,1556,3936,5036,https://images.gr-assets.com/books/1222383663l/12617.jpg,https://images.gr-assets.com/books/1222383663s/12617.jpg\n8161,19307,19307,1316342,68,670557110,9780670557110.0,\"Astrid Lindgren, Gerry Bothmer\",1948.0,Pippi Långstrump i Söderhavet,Pippi in the South Seas,en-US,4.1,13911,14941,209,213,553,3072,4735,6368,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348636160l/19307.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8163,40471,40471,791775,34,330314920,9780330314920.0,Cormac McCarthy,1968.0,Outer Dark,Outer Dark,,3.88,9172,11246,900,117,552,2737,4989,2851,https://images.gr-assets.com/books/1356452527l/40471.jpg,https://images.gr-assets.com/books/1356452527s/40471.jpg\n8164,16175040,20759641,22024655,21,,,Kresley Cole,2013.0,Endless Knight ,\"Endless Knight (The Arcana Chronicles, #2)\",eng,4.39,14677,18065,2033,151,388,1945,5415,10166,https://images.gr-assets.com/books/1369329231l/16175040.jpg,https://images.gr-assets.com/books/1369329231s/16175040.jpg\n8165,40992,40992,40575,11,312890176,9780312890180.0,Gene Wolfe,1994.0,Shadow & Claw,Shadow & Claw (The Book of the New Sun #1-2),eng,4.04,11282,12766,832,382,919,2124,3759,5582,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180510l/40992.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8166,23503361,23503361,43085307,19,812995228,9780812995220.0,Julia Pierpont,2015.0,Parmi les dix milliers de choses,Among the Ten Thousand Things,eng,2.84,8458,9713,1317,1083,2630,3554,1658,788,https://images.gr-assets.com/books/1464907467l/23503361.jpg,https://images.gr-assets.com/books/1464907467s/23503361.jpg\n8167,10878,10878,1005676,23,743250451,9780743250450.0,Hunter S. Thompson,1979.0,The Great Shark Hunt: Strange Tales from a Strange Time,\"The Great Shark Hunt: Strange Tales from a Strange Time (The Gonzo Papers, #1)\",en-US,4.07,9953,10752,306,35,287,2210,4543,3677,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402149917l/10878.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8168,47730,47730,46720,13,395957761,9780395957770.0,\"Anne Sexton, Maxine Kumin\",1981.0,The Complete Poems: Anne Sexton,The Complete Poems,en-US,4.28,11888,12264,305,117,303,1680,4089,6075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425271044l/47730.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8169,11830394,11830394,16785236,24,316098124,9780316098120.0,Kim Stanley Robinson,2012.0,2312,2312,eng,3.43,10042,12097,1828,675,1648,3688,3975,2111,https://images.gr-assets.com/books/1405778758l/11830394.jpg,https://images.gr-assets.com/books/1405778758s/11830394.jpg\n8170,119838,119838,2373129,20,689806981,9780689806990.0,Sharon M. Draper,1994.0,Tears of a Tiger,\"Tears of a Tiger (Hazelwood High, #1)\",eng,4.16,11266,11781,1993,266,583,1875,3293,5764,https://images.gr-assets.com/books/1348102787l/119838.jpg,https://images.gr-assets.com/books/1348102787s/119838.jpg\n8171,6287290,6287290,6471569,35,61231428,9780061231420.0,James Rollins,2009.0,Altar of Eden,Altar of Eden,en-US,4.01,12250,13885,789,124,567,3092,5420,4682,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347551027l/6287290.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8172,1011359,1011359,3352921,16,1591169909,9781591169900.0,Bisco Hatori,2003.0,桜蘭高校ホスト部 2,\"Ouran High School Host Club, Vol. 2 (Ouran High School Host Club, #2)\",eng,4.46,14350,14504,231,78,239,1618,3607,8962,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388199687l/1011359.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8173,176326,176326,654751,20,810949148,9780810949140.0,\"Michael Buckley, Peter Ferguson\",2006.0,The Problem Child,\"The Problem Child (The Sisters Grimm, #3)\",en-US,4.27,15353,16131,576,109,343,2459,5366,7854,https://images.gr-assets.com/books/1349015533l/176326.jpg,https://images.gr-assets.com/books/1349015533s/176326.jpg\n8174,1206073,1206073,1773948,17,195170342,195170342.0,David Hackett Fischer,2003.0,Washington's Crossing,Washington's Crossing,eng,4.11,10445,10993,339,226,493,1905,3593,4776,https://images.gr-assets.com/books/1353284022l/1206073.jpg,https://images.gr-assets.com/books/1353284022s/1206073.jpg\n8175,4830,4830,1214874,65,679783482,9780679783480.0,Salman Rushdie,2005.0,Shalimar the Clown,Shalimar the Clown,eng,3.86,10396,11231,809,200,707,2670,4514,3140,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388809435l/4830.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8176,8745,8745,2736618,81,688172377,9780688172370.0,\"Waris Dirie, Cathleen Miller\",1998.0,Desert Flower: The Extraordinary Journey of a Desert Nomad,Desert Flower,eng,4.09,9609,12900,821,84,477,2437,5078,4824,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439762656l/8745._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8177,615921,615921,602356,29,345467817,9780345467810.0,Eric S. Nylund,2003.0,First Strike,Halo: First Strike,en-GB,4.12,9670,10548,273,55,352,1978,4010,4153,https://images.gr-assets.com/books/1320418133l/615921.jpg,https://images.gr-assets.com/books/1320418133s/615921.jpg\n8178,16117182,16117182,21935161,7,,,Natasha Preston,2013.0,Broken Silence,\"Broken Silence (Silence, #2)\",eng,4.14,8280,12776,676,189,603,2243,3971,5770,https://images.gr-assets.com/books/1388207146l/16117182.jpg,https://images.gr-assets.com/books/1388207146s/16117182.jpg\n8179,4076,4076,7786,38,1861977166,9781861977170.0,\"Tom Peters, Robert H. Waterman Jr.\",1982.0,In Search of Excellence,In Search of Excellence: Lessons from America's Best-Run Companies,,3.91,9469,10121,151,267,636,2254,3544,3420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388304029l/4076.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8180,17899392,17899392,25073414,50,316239992,9780316240000.0,\"James Patterson, Emily Raymond\",2013.0,First Love,First Love,,3.76,9890,13331,1747,380,1198,3461,4443,3849,https://images.gr-assets.com/books/1408925704l/17899392.jpg,https://images.gr-assets.com/books/1408925704s/17899392.jpg\n8181,107029,107029,103160,5,1401204457,9781401204460.0,\"Bill Finger, Gardner F. Fox, Bob Kane, Jerry Robinson, Sheldon Moldoff\",2005.0,Batman Chronicles: Volume 1,\"The Batman Chronicles, Vol. 1\",en-US,3.99,9593,9661,100,458,583,1821,2501,4298,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388285873l/107029.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8183,7879278,7879278,11075036,10,1434764338,9781434764330.0,Lisa Tawn Bergren,2011.0,Waterfall,\"Waterfall (River of Time, #1)\",en-US,4.04,15884,17028,1887,603,930,2970,5171,7354,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429307722l/7879278.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8184,20890479,20890479,39861474,42,385682824,9780385682820.0,Rachel Joyce,2014.0,The Love Song of Miss Queenie Hennessy,\"The Love Song of Miss Queenie Hennessy (Harold Fry, #2)\",eng,4.04,10730,14102,2450,164,549,2663,5956,4770,https://images.gr-assets.com/books/1403202599l/20890479.jpg,https://images.gr-assets.com/books/1403202599s/20890479.jpg\n8185,15559,15559,2419073,35,345435753,9780345435750.0,Terry Brooks,2002.0,Morgawr ,\"Morgawr (The Voyage of the Jerle Shannara, #3)\",eng,3.96,12797,13525,147,94,636,3371,5070,4354,https://images.gr-assets.com/books/1341521219l/15559.jpg,https://images.gr-assets.com/books/1341521219s/15559.jpg\n8186,116053,116053,6958004,62,340752459,9780340752460.0,Rosamunde Pilcher,1990.0,September,September,eng,4.12,12412,13787,457,95,408,2683,5224,5377,https://images.gr-assets.com/books/1420776195l/116053.jpg,https://images.gr-assets.com/books/1420776195s/116053.jpg\n8187,4808763,4808763,4873881,12,1884214495,9781884214490.0,\"Isaac Asimov, Bob E. Flick, Jim Gallant\",1956.0,The Last Question (When the World Ends),The Last Question,eng,4.58,11762,12651,760,50,146,819,3039,8597,https://images.gr-assets.com/books/1274107046l/4808763.jpg,https://images.gr-assets.com/books/1274107046s/4808763.jpg\n8188,52783,52783,2222957,80,140189424,9780140189420.0,\"Saul Bellow, Luciano Bianciardi\",1959.0,Henderson the Rain King,Henderson the Rain King,eng,3.79,11226,11928,674,365,977,2946,4107,3533,https://images.gr-assets.com/books/1297116277l/52783.jpg,https://images.gr-assets.com/books/1297116277s/52783.jpg\n8189,9654,9654,2164933,94,451209435,9780451209440.0,Erica Jong,1973.0,Fear of Flying,Fear of Flying,en-US,3.44,13061,14932,1277,715,1953,5003,4508,2753,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190180l/9654.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8190,9349915,9349915,14233294,34,316176044,9780316176040.0,\"Sarah Blakley-Cartwright, David Leslie Johnson, Catherine Hardwicke\",2011.0,Red Riding Hood,Red Riding Hood,en-US,3.51,14220,16482,1962,924,2096,4997,4608,3857,https://images.gr-assets.com/books/1344267754l/9349915.jpg,https://images.gr-assets.com/books/1344267754s/9349915.jpg\n8191,4765642,4765642,4830448,11,9381626715,9789381626720.0,Rashmi Bansal,2008.0,Stay Hungry Stay Foolish,Stay Hungry Stay Foolish,eng,3.62,8598,8992,295,190,735,3015,3419,1633,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1236261939l/4765642.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8192,6694,6694,419514,75,140568190,9780140568200.0,\"Roald Dahl, Quentin Blake\",1985.0,The Giraffe and the Pelly and Me,The Giraffe and the Pelly and Me,eng,3.8,14180,16489,813,126,1059,5264,5628,4412,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1165604309l/6694._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8193,17934521,17934521,25206775,33,1250039819,9781250039810.0,Nickolas Butler,2014.0,Shotgun Lovesongs,Shotgun Lovesongs,eng,3.78,9878,11717,1891,153,756,3183,5104,2521,https://images.gr-assets.com/books/1396818566l/17934521.jpg,https://images.gr-assets.com/books/1396818566s/17934521.jpg\n8194,671724,671724,1558654,49,440240956,9780440240950.0,Conn Iggulden,2004.0,\"The Death of Kings (Emperor, #2)\",\"The Death of Kings (Emperor, #2)\",eng,4.25,10633,12193,304,58,224,1595,5027,5289,https://images.gr-assets.com/books/1320470253l/671724.jpg,https://images.gr-assets.com/books/1320470253s/671724.jpg\n8195,106882,106882,1770059,55,375435484,9780375435480.0,Mireille Guiliano,2004.0,French Women Don't Get Fat,French Women Don't Get Fat: The Secret of Eating for Pleasure,eng,3.48,10584,13111,1574,387,1610,4653,4224,2237,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171567893l/106882._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8196,289601,289601,2596896,24,061858532X,9780618585330.0,Laura Whitcomb,2005.0,A Certain Slant of Light,\"A Certain Slant of Light (Light, #1)\",en-US,3.83,16769,17513,1819,496,1356,4279,5886,5496,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441806268l/289601._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8197,493455,493455,2569547,7,1416936408,9781416936400.0,Scott Westerfeld,2007.0,\"The Uglies Trilogy (Uglies, #1-3)\",\"The Uglies Trilogy (Uglies, #1-3)\",,4.06,13405,13473,805,243,689,2531,4537,5473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1255574775l/493455.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8198,22693231,22693231,26634437,34,62311115,9780062311120.0,Greg Iles,2015.0,The Bone Tree,The Bone Tree,en-US,4.18,8055,12399,1484,185,438,1745,4643,5388,https://images.gr-assets.com/books/1421259645l/22693231.jpg,https://images.gr-assets.com/books/1421259645s/22693231.jpg\n8199,78971,78971,3320952,53,312939779,9780312939780.0,Jeffrey Archer,2005.0,False Impression,False Impression,en-US,3.67,10338,12252,739,220,978,3882,4730,2442,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429040577l/78971.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8200,13105527,13105527,18278582,5,1926760689,9781926760680.0,\"pleasefindthis, Iain S. Thomas, Jon Ellis\",2011.0,I Wrote This For You,I Wrote This For You,eng,4.17,11533,12796,1212,372,673,1869,3403,6479,https://images.gr-assets.com/books/1413756174l/13105527.jpg,https://images.gr-assets.com/books/1413756174s/13105527.jpg\n8201,56913,56913,55442,6,1400049350,9781400049360.0,\"Ina Garten, Quentin Bacon\",2004.0,Barefoot in Paris,Barefoot in Paris,en-GB,4.19,11128,11200,129,365,429,1589,3170,5647,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185491l/56913.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8203,347577,347577,516302,42,60589353,9780060589360.0,Louise Rennison,2004.0,...and that's when it fell off in my hand,\"Away Laughing on a Fast Camel (Confessions of Georgia Nicolson, #5)\",,4.06,14351,17076,396,182,658,3713,5867,6656,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1312508902l/347577.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8204,16056862,16056862,21842751,14,,,Natasha Anders,2012.0,The Unwanted Wife,\"The Unwanted Wife (Unwanted, #1)\",eng,3.94,17458,19673,1578,453,1130,4122,7385,6583,https://images.gr-assets.com/books/1349084566l/16056862.jpg,https://images.gr-assets.com/books/1349084566s/16056862.jpg\n8205,29991719,29991719,50395229,8,,,Emma Chase,2016.0,Royally Screwed,\"Royally Screwed (Royally, #1)\",eng,4.11,15906,19263,2374,235,782,3288,7374,7584,https://images.gr-assets.com/books/1463068765l/29991719.jpg,https://images.gr-assets.com/books/1463068765s/29991719.jpg\n8206,6239873,6239873,6422638,30,61626317,9780061626320.0,Anna Godbersen,2009.0,Splendor,\"Splendor (Luxe, #4)\",en-US,3.84,16276,17569,1486,341,1244,4445,6360,5179,https://images.gr-assets.com/books/1295983771l/6239873.jpg,https://images.gr-assets.com/books/1295983771s/6239873.jpg\n8207,31175,31175,2685446,335,1582870950,9781582870950.0,Charlotte Brontë,1857.0,The Professor,The Professor,eng,3.56,12140,13993,675,318,1520,4948,4354,2853,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1220194504l/31175.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8208,9815702,9815702,14706158,21,451234863,9780451234860.0,Chloe Neill,2011.0,\"Drink Deep (Chicagoland Vampires, #5)\",\"Drink Deep (Chicagoland Vampires, #5)\",en-US,4.12,21860,23698,1728,228,914,4389,8522,9645,https://images.gr-assets.com/books/1296789716l/9815702.jpg,https://images.gr-assets.com/books/1296789716s/9815702.jpg\n8209,4653511,4653511,120632,20,,,غسان كنفاني,1963.0,رجال في الشمس,رجال في الشمس,ara,4.16,10016,10923,1821,121,363,1724,4114,4601,https://images.gr-assets.com/books/1321707850l/4653511.jpg,https://images.gr-assets.com/books/1321707850s/4653511.jpg\n8210,132391,132391,245197,222,698400011,9780698400020.0,\"Hans Christian Andersen, Lisbeth Zwerger, Anthea Bell\",1836.0,Den lille havfrue,The Little Mermaid,en-US,4.02,14361,16587,698,249,839,3711,5391,6397,https://images.gr-assets.com/books/1309204955l/132391.jpg,https://images.gr-assets.com/books/1309204955s/132391.jpg\n8211,207687,207687,1136805,29,60525134,9780060525130.0,Meg Cabot,2007.0,\"Big Boned (Heather Wells, #3)\",\"Big Boned (Heather Wells, #3)\",eng,3.84,17672,18715,1070,207,1017,5372,7177,4942,https://images.gr-assets.com/books/1496810737l/207687.jpg,https://images.gr-assets.com/books/1496810737s/207687.jpg\n8212,330760,330760,2696001,48,802131867,9780802131870.0,Jack Kerouac,1958.0,The Subterraneans,The Subterraneans,eng,3.68,10325,11547,440,191,978,3678,4157,2543,https://images.gr-assets.com/books/1428958819l/330760.jpg,https://images.gr-assets.com/books/1428958819s/330760.jpg\n8213,181400,181400,175281,13,745917437,9780745917440.0,\"Angela Elwell Hunt, Tim Jonke\",1989.0,The Tale of Three Trees: A Traditional Folktale,The Tale of Three Trees,en-US,4.52,13226,13393,340,90,186,1236,3034,8847,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442446987l/181400._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8214,419103,419103,272557,38,1593072953,9781593072960.0,Frank Miller,1994.0,Sin City: The Big Fat Kill,\"Sin City, Vol. 3: The Big Fat Kill (Sin City, #3)\",en-US,4.1,12625,13656,270,167,432,2503,5293,5261,https://images.gr-assets.com/books/1470924869l/419103.jpg,https://images.gr-assets.com/books/1470924869s/419103.jpg\n8215,16341,16341,2969715,192,7120842,9780007120840.0,Agatha Christie,1942.0,The Moving Finger,\"The Moving Finger (Miss Marple, #4)\",en-GB,3.84,15142,18483,1063,125,855,5508,7365,4630,https://images.gr-assets.com/books/1396227246l/16341.jpg,https://images.gr-assets.com/books/1396227246s/16341.jpg\n8216,392217,392217,1434181,64,042516098X,9780425160980.0,Patricia Cornwell,1996.0,Hornet's Nest,\"Hornet's Nest (Andy Brazil, #1)\",eng,3.28,12973,13552,349,892,2186,4858,3409,2207,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388461967l/392217.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8217,126066,126066,121421,30,785267239,9780785267230.0,\"John Eldredge, Brent Curtis\",1997.0,The Sacred Romance Drawing Closer To The Heart Of God,The Sacred Romance Drawing Closer To The Heart Of God,eng,4.0,9882,10477,277,262,617,2165,3211,4222,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441807205l/126066._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8218,236056,236056,639745,43,590590898,9780590590890.0,Louis Sachar,1987.0,There's a Boy in the Girls' Bathroom,There's a Boy in the Girls' Bathroom,eng,3.95,12732,15093,1380,346,933,3488,4763,5563,https://images.gr-assets.com/books/1346870062l/236056.jpg,https://images.gr-assets.com/books/1346870062s/236056.jpg\n8219,17233800,17233800,23751121,26,037321099X,9780373210990.0,Katie McGarry,2013.0,Crash Into You,\"Crash into You (Pushing the Limits, #3)\",eng,4.28,21136,22480,2517,213,639,3073,7314,11241,https://images.gr-assets.com/books/1370532247l/17233800.jpg,https://images.gr-assets.com/books/1370532247s/17233800.jpg\n8220,7993566,7993566,12482174,9,375504877,9780375504880.0,Edmund Morris,2010.0,Colonel Roosevelt,Colonel Roosevelt,eng,4.1,12745,13186,497,364,611,2153,4276,5782,https://images.gr-assets.com/books/1320530371l/7993566.jpg,https://images.gr-assets.com/books/1320530371s/7993566.jpg\n8221,65336,65336,1017679,19,081120958X,9780811209590.0,\"William Carlos Williams, Charles Tomlinson\",1949.0,Selected Poems,Selected Poems,,4.15,11740,12108,153,170,395,1977,4458,5108,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1549475131l/65336.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8222,77786,77786,209567,22,553100351,9780553100360.0,Timothy Zahn,1998.0,Star Wars: Vision of the Future,\"Vision of the Future (Star Wars: The Hand of Thrawn, #2)\",eng,4.06,11657,12908,203,60,414,2790,5081,4563,https://images.gr-assets.com/books/1328289436l/77786.jpg,https://images.gr-assets.com/books/1328289436s/77786.jpg\n8223,6449422,6449422,44798125,67,4103534230,9784103534240.0,Haruki Murakami,2009.0,1Q84 Book 2 [Ichi-kyū-hachi-yon],\"1Q84 BOOK 2 (1Q84, #2)\",jpn,4.04,9668,12598,680,123,506,2418,5299,4252,https://images.gr-assets.com/books/1329955515l/6449422.jpg,https://images.gr-assets.com/books/1329955515s/6449422.jpg\n8224,20439328,20439328,30862334,29,,,Ali Smith,2014.0,How to Be Both,How to Be Both,eng,3.61,9431,11633,1656,692,1196,2881,4009,2855,https://images.gr-assets.com/books/1405890478l/20439328.jpg,https://images.gr-assets.com/books/1405890478s/20439328.jpg\n8225,85989,85989,2668285,56,60724560,9780060724570.0,Meg Cabot,2006.0,Princess on the Brink,\"Princess on the Brink (The Princess Diaries, #8)\",,3.7,17654,19366,567,431,1675,6203,6016,5041,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441944648l/85989.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8226,341281,341281,2502604,230,140435476,9780140435470.0,\"Thomas Hardy, Patricia Ingham\",1887.0,The Woodlanders,The Woodlanders,eng,3.82,10835,11642,381,337,700,2965,4313,3327,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389977312l/341281.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8228,4071018,4071018,4118164,26,385524927,9780385524930.0,Barbara Delinsky,2009.0,While My Sister Sleeps,While My Sister Sleeps,en-US,3.82,12719,13295,963,203,789,3736,5043,3524,https://images.gr-assets.com/books/1320495122l/4071018.jpg,https://images.gr-assets.com/books/1320495122s/4071018.jpg\n8229,419083,419083,952423,37,142000957,9780142000950.0,Mark Bowden,2001.0,Killing Pablo: The Hunt for the World's Greatest Outlaw,Killing Pablo: The Hunt for the World's Greatest Outlaw,,3.93,9469,11303,652,75,382,2679,5273,2894,https://images.gr-assets.com/books/1311648121l/419083.jpg,https://images.gr-assets.com/books/1311648121s/419083.jpg\n8230,12968662,15015218,18044854,41,1451672721,9781451672720.0,Chris Cleave,2012.0,Gold,Gold,eng,3.68,6997,13423,2262,256,1000,4091,5524,2552,https://images.gr-assets.com/books/1340468522l/12968662.jpg,https://images.gr-assets.com/books/1340468522s/12968662.jpg\n8231,3064985,3064985,3095990,30,1554682746,9781554682740.0,Lesley Livingston,2009.0,Wondrous Strange,\"Wondrous Strange (Wondrous Strange, #1)\",eng,3.69,17738,19591,1446,708,1854,5541,6115,5373,https://images.gr-assets.com/books/1327879404l/3064985.jpg,https://images.gr-assets.com/books/1327879404s/3064985.jpg\n8232,10395,10395,13106,31,60731427,9780060731430.0,Franklin Foer,2004.0,How Soccer Explains the World: An Unlikely Theory of Globalization,How Soccer Explains the World,,3.76,9231,9944,716,246,669,2794,3715,2520,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441241407l/10395._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8233,45974,45974,983806,153,141183047,9780141183050.0,\"Fernando Pessoa, Richard Zenith\",1913.0,Livro do Desassossego,The Book of Disquiet,eng,4.5,9115,13132,1159,140,289,1046,3052,8605,https://images.gr-assets.com/books/1382871857l/45974.jpg,https://images.gr-assets.com/books/1382871857s/45974.jpg\n8234,12791521,12791521,17939401,21,1401232086,9781401232080.0,\"Geoff Johns, Gary Frank, Jon Sibal, Brad Anderson, Rob Leigh\",2012.0,\"Batman: Earth One, Volume 1\",\"Batman: Earth One, Volume 1\",eng,4.06,11302,12109,806,183,540,2182,4644,4560,https://images.gr-assets.com/books/1344369854l/12791521.jpg,https://images.gr-assets.com/books/1344369854s/12791521.jpg\n8236,583924,583924,2523590,33,425204332,9780425204340.0,MaryJanice Davidson,2005.0,Undead and Unappreciated,\"Undead and Unappreciated (Undead, #3)\",en-US,3.88,18066,20129,620,180,905,5749,7615,5680,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442543610l/583924._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8237,20980959,20980959,40358210,41,1455525898,9781455525900.0,\"Douglas Preston, Lincoln Child\",2014.0,Blue Labyrinth,\"Blue Labyrinth (Pendergast, #14)\",eng,4.11,9184,12665,1260,99,380,2108,5469,4609,https://images.gr-assets.com/books/1408116686l/20980959.jpg,https://images.gr-assets.com/books/1408116686s/20980959.jpg\n8238,7940589,7940589,11366179,24,670022209,9780670022200.0,Manning Marable,2011.0,Malcolm X: A Life of Reinvention,Malcolm X: A Life of Reinvention,eng,4.2,11448,11878,588,251,364,1757,3875,5631,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347690389l/7940589.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8239,32349,32349,3289577,79,60723513,9780060723510.0,Marlo Morgan,1990.0,Mutant Message Down Under,Mutant Message Down Under,eng,3.79,9981,12423,1357,665,1069,2633,3940,4116,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441257420l/32349._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8240,4769247,4769247,4834062,34,440244501,9780440244510.0,Lara Adrian,2009.0,Ashes of Midnight,\"Ashes of Midnight (Midnight Breed, #6)\",eng,4.19,18982,20730,738,115,634,3549,7405,9027,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274773l/4769247.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8241,112879,112879,2169264,17,081091610X,9780810916100.0,\"Michael Buckley, Peter Ferguson\",2007.0,Once Upon a Crime,\"Once Upon a Crime (The Sisters Grimm, #4)\",eng,4.26,15091,15723,477,135,365,2428,5186,7609,https://images.gr-assets.com/books/1349015477l/112879.jpg,https://images.gr-assets.com/books/1349015477s/112879.jpg\n8242,168814,168814,163017,9,891343377,9780891343370.0,Bert Dodson,1985.0,Keys to Drawing,Keys to Drawing,eng,4.0,10004,10065,36,350,587,2082,2721,4325,https://images.gr-assets.com/books/1172360760l/168814.jpg,https://images.gr-assets.com/books/1172360760s/168814.jpg\n8243,158988,158988,153455,11,1401213162,9781401213170.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Andrew Pepoy, Gene Ha, Joshua Middleton, Iñaki Miranda, Mike Allred\",2007.0,\"Fables, Volume 9: Sons of Empire\",\"Fables, Vol. 9: Sons of Empire\",eng,4.24,15232,15419,399,115,299,2204,6002,6799,https://images.gr-assets.com/books/1375396700l/158988.jpg,https://images.gr-assets.com/books/1375396700s/158988.jpg\n8244,1233478,1233478,1222082,29,451461991,9780451462000.0,Karen Chance,2008.0,Embrace the Night,\"Embrace the Night (Cassandra Palmer, #3)\",en-US,4.09,19294,20122,475,218,732,4013,7287,7872,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432372340l/1233478._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8245,171624,171624,2155765,42,586026193,9780586026200.0,Len Deighton,1962.0,The Ipcress File,\"The Ipcress File (Secret File, #1)\",en-US,3.94,12052,12523,202,140,485,3094,5115,3689,https://images.gr-assets.com/books/1295903974l/171624.jpg,https://images.gr-assets.com/books/1295903974s/171624.jpg\n8246,158944,158944,3245947,13,679450815,9780679450820.0,\"Marion Cunningham, Fannie Merritt Farmer, Archibald Candy Corporation\",1979.0,The Boston Cooking-School Cook Book 1896,The Fannie Farmer Cookbook: Anniversary,,4.1,12723,13027,120,296,580,2517,3761,5873,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347424134l/158944.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8247,3240691,3240691,3275385,22,,6221102019420.0,بهاء طاهر,2006.0,واحة الغروب,واحة الغروب,ara,3.82,10365,10570,1306,270,706,2531,4203,2860,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503527816l/3240691._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8249,27208,27208,3359269,68,156478214X,9781564782140.0,Flann O'Brien,1967.0,The Third Policeman,The Third Policeman,eng,4.02,10352,12304,1300,331,710,2206,4156,4901,https://images.gr-assets.com/books/1343027425l/27208.jpg,https://images.gr-assets.com/books/1343027425s/27208.jpg\n8250,4285768,4285768,6479313,43,375424490,9780375424500.0,Alexander McCall Smith,2009.0,Tea Time for the Traditionally Built,\"Tea Time for the Traditionally Built (No. 1 Ladies' Detective Agency, #10)\",eng,4.11,15001,16847,1432,44,242,3138,7801,5622,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388185473l/4285768.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8251,273512,273512,2147176,36,60827629,9780060827620.0,Erin Hunter,2006.0,\"Starlight (Warriors: The New Prophecy, #4)\",\"Starlight (Warriors: The New Prophecy, #4)\",en-US,4.28,15719,16719,350,125,468,2637,4793,8696,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1392456105l/273512.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8252,13522957,13522957,19083644,14,,,Suzanne Wright,2012.0,Feral Sins,\"Feral Sins (The Phoenix Pack, #1)\",eng,4.12,21978,25674,2199,657,1224,3882,8561,11350,https://images.gr-assets.com/books/1331458140l/13522957.jpg,https://images.gr-assets.com/books/1331458140s/13522957.jpg\n8253,87424,87424,1826874,56,867199032,9780867199030.0,\"Hergé, Leslie Lonsdale-Cooper, Michael Turner\",1930.0,Tintin au pays des Soviets,Tintin in the Land of the Soviets (Tintin #1),eng,3.67,10702,11762,360,525,1495,2998,3022,3722,https://images.gr-assets.com/books/1327959256l/87424.jpg,https://images.gr-assets.com/books/1327959256s/87424.jpg\n8254,9998705,9998705,14893625,47,1439102414,9781439102410.0,Kathy Reichs,2011.0,Flash and Bones,\"Flash and Bones (Temperance Brennan, #14)\",eng,3.86,14064,16483,1169,114,850,4674,6405,4440,https://images.gr-assets.com/books/1306253347l/9998705.jpg,https://images.gr-assets.com/books/1306253347s/9998705.jpg\n8255,23453099,23453099,43014905,28,1594206627,9781594206630.0,Ottessa Moshfegh,2015.0,Eileen,Eileen,eng,3.38,10460,13919,2289,671,1878,4671,4824,1875,https://images.gr-assets.com/books/1479545528l/23453099.jpg,https://images.gr-assets.com/books/1479545528s/23453099.jpg\n8256,1566705,1566705,1333029,48,142333745X,9781423337450.0,J.D. Robb,2007.0,Creation in Death ,\"Creation in Death (In Death, #25)\",eng,4.34,16050,18592,646,38,228,2368,6639,9319,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1185298023l/1566705._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8257,770040,770040,756099,7,670062405,9780670062410.0,Anna Dewdney,2007.0,Llama Llama Mad at Mama,Llama Llama Mad at Mama,en-US,4.28,14175,14285,532,224,468,1986,3968,7639,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442605521l/770040._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8258,18594594,18594594,26341000,41,345547497,9780345547490.0,Karin Slaughter,2014.0,Cop Town,Cop Town,eng,3.88,10660,13997,1704,274,780,3299,5612,4032,https://images.gr-assets.com/books/1384822680l/18594594.jpg,https://images.gr-assets.com/books/1384822680s/18594594.jpg\n8259,165053,165053,159363,9,810949792,9780810949800.0,\"Nicholas Ganz, Tristan Manco\",2004.0,Graffiti World: Street Art from Five Continents,Graffiti World: Street Art from Five Continents,,4.01,9000,9088,57,263,632,1875,2278,4040,https://images.gr-assets.com/books/1302039517l/165053.jpg,https://images.gr-assets.com/books/1302039517s/165053.jpg\n8260,1918702,1918702,339327,17,399216197,9780399216190.0,Ed Young,1989.0,Lon Po Po,Lon Po Po: A Red-Riding Hood Story from China,eng,4.03,14340,14551,863,262,626,3197,4759,5707,https://images.gr-assets.com/books/1265127897l/1918702.jpg,https://images.gr-assets.com/books/1265127897s/1918702.jpg\n8261,348632,348632,2256479,63,316065765,9780316065760.0,Anita Amirrezvani,2007.0,The Blood of Flowers,The Blood of Flowers,en-US,3.95,11871,13418,1643,123,581,2988,5880,3846,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440786428l/348632._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8262,45181,45181,975095,278,140367357,9780140367360.0,E. Nesbit,1902.0,Five Children and It ,\"Five Children and It (Five Children, #1)\",eng,3.88,16059,18074,748,354,1106,4620,6341,5653,https://images.gr-assets.com/books/1327882197l/45181.jpg,https://images.gr-assets.com/books/1327882197s/45181.jpg\n8263,18387597,18387597,26008568,5,,,Essam Youssef,2013.0,2 ضباط,2 ضباط,ara,3.64,8109,8864,1218,532,942,2165,2727,2498,https://images.gr-assets.com/books/1377876467l/18387597.jpg,https://images.gr-assets.com/books/1377876467s/18387597.jpg\n8264,559889,559889,293507,63,671000314,9780671000320.0,Clive Cussler,1985.0,\"Flood Tide (Dirk Pitt, #14)\",\"Flood Tide (Dirk Pitt, #14)\",eng,3.88,11987,12674,234,63,499,3623,5199,3290,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328033231l/559889.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8265,23299512,23299512,42855493,22,62380877,9780062380880.0,Victoria Schwab,2016.0,This Savage Song,\"This Savage Song (Monsters of Verity, #1)\",eng,4.14,17210,22459,5057,185,662,3593,9472,8547,https://images.gr-assets.com/books/1445529989l/23299512.jpg,https://images.gr-assets.com/books/1445529989s/23299512.jpg\n8266,8456124,8456124,13320256,30,62003941,9780062003940.0,\"L.J. Smith, Kevin Williamson, Julie Plec\",2011.0,Bloodlust,\"Bloodlust (The Vampire Diaries: Stefan's Diaries, #2)\",en-US,4.05,11333,12124,318,340,770,2498,2875,5641,https://images.gr-assets.com/books/1287687704l/8456124.jpg,https://images.gr-assets.com/books/1287687704s/8456124.jpg\n8268,17838528,17838528,24961929,18,1481404547,9781481404550.0,Morgan Matson,2016.0,The Unexpected Everything,The Unexpected Everything,eng,4.07,18752,20475,4074,234,778,3731,8374,7358,https://images.gr-assets.com/books/1443203227l/17838528.jpg,https://images.gr-assets.com/books/1443203227s/17838528.jpg\n8269,43799,43799,2926023,33,727853414,9780727853420.0,\"Anne Rampling, Anne Rice\",1985.0,Exit to Eden,Exit to Eden,eng,3.55,11846,13778,429,518,1761,4429,3722,3348,https://images.gr-assets.com/books/1328206253l/43799.jpg,https://images.gr-assets.com/books/1328206253s/43799.jpg\n8270,6654104,6654104,6848739,11,1423121716,9781423121720.0,\"Mary-Jane Knight, Rick Riordan\",2010.0,Percy Jackson: The Ultimate Guide,Percy Jackson & the Olympians:  The Ultimate Guide,en-US,4.12,14173,14625,440,201,753,2966,3946,6759,https://images.gr-assets.com/books/1360574678l/6654104.jpg,https://images.gr-assets.com/books/1360574678s/6654104.jpg\n8271,13239822,13239822,18330291,41,802120202,9780802120200.0,G. Willow Wilson,2012.0,Alif the Unseen,Alif the Unseen,en-US,3.84,10982,12831,2258,258,793,3062,5407,3311,https://images.gr-assets.com/books/1325543155l/13239822.jpg,https://images.gr-assets.com/books/1325543155s/13239822.jpg\n8272,50001,50001,1347757,22,345465296,9780345465290.0,\"Robert Foster, J.R.R. Tolkien\",1974.0,The Complete Guide to Middle-Earth,The Complete Guide to Middle-Earth,,4.17,10280,10934,73,204,444,2030,2914,5342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170366180l/50001._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8273,12449167,12449167,14812102,52,1451655789,9781451655780.0,Lucinda Riley,2010.0,Hothouse Flower,The Orchid House,en-US,3.8,9282,13167,1343,315,1022,3256,4962,3612,https://images.gr-assets.com/books/1320957431l/12449167.jpg,https://images.gr-assets.com/books/1320957431s/12449167.jpg\n8274,29008738,29008738,49250534,9,1533134138,9781533134130.0,Amy Harmon,2016.0,The Bird and the Sword,\"The Bird and the Sword (The Bird and the Sword Chronicles, #1)\",eng,4.29,11705,15905,2447,142,536,2009,5152,8066,https://images.gr-assets.com/books/1462457112l/29008738.jpg,https://images.gr-assets.com/books/1462457112s/29008738.jpg\n8275,92845,92845,1928459,55,1857231082,9781857231080.0,Terry Brooks,1987.0,The Black Unicorn ,\"The Black Unicorn (Magic Kingdom of Landover, #2)\",eng,3.75,14108,15332,262,135,1068,4933,5479,3717,https://images.gr-assets.com/books/1460848089l/92845.jpg,https://images.gr-assets.com/books/1460848089s/92845.jpg\n8276,16076,16076,23893547,272,743487672,9780743487670.0,\"Kate Chopin, Cynthia Brantley Johnson, Alyssa  Harad\",1899.0,The Awakening and Selected Short Stories,The Awakening and Selected Stories,eng,3.84,8505,14092,618,486,1096,3210,4735,4565,https://images.gr-assets.com/books/1403398895l/16076.jpg,https://images.gr-assets.com/books/1403398895s/16076.jpg\n8277,2296567,2296567,2302876,41,316113786,9780316113790.0,Uwem Akpan,2008.0,Say You're One of Them,Say You're One of Them,,3.49,10899,12658,2196,642,1558,3843,4184,2431,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266709325l/2296567.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8278,6688087,6688087,5851700,41,547229895,9780547229900.0,Elly Griffiths,2009.0,The Crossing Places,\"The Crossing Places (Ruth Galloway, #1)\",en-GB,3.87,12427,15671,1802,188,689,3967,6974,3853,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349088962l/6688087.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8279,721003,721003,3348719,18,152024174,9780152024180.0,Roland Smith,2007.0,Peak,Peak (Peak #1),en-US,3.98,13314,14027,2024,297,714,2873,5278,4865,https://images.gr-assets.com/books/1328876929l/721003.jpg,https://images.gr-assets.com/books/1328876929s/721003.jpg\n8280,39799,39799,1428663,94,99448874,9780099448880.0,\"Henning Mankell, Ebba Segerberg\",1997.0,Steget efter,\"One Step Behind  (Kurt Wallander, #7)\",eng,4.08,10619,13172,617,98,289,2329,6177,4279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169315340l/39799.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8281,825473,825473,811223,75,553264907,9780553264910.0,Frederick Forsyth,1979.0,The Devil's Alternative,The Devil's Alternative,,4.0,9927,10636,151,69,337,2425,4473,3332,https://images.gr-assets.com/books/1333578726l/825473.jpg,https://images.gr-assets.com/books/1333578726s/825473.jpg\n8283,138684,138684,1698960,13,670038318,9780670038310.0,C.J. Sansom,2006.0,Sovereign ,\"Sovereign (Matthew Shardlake, #3)\",en-US,4.28,11071,14074,818,48,193,1728,5947,6158,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440215651l/138684._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8285,440960,440960,2189612,14,1401212409,9781401212410.0,\"Grant Morrison, Andy Kubert, John Van Fleet, Jesse Delperdang\",2005.0,Batman: Batman and Son,Batman and Son,eng,3.81,10188,10660,290,279,777,2804,3604,3196,https://images.gr-assets.com/books/1328217465l/440960.jpg,https://images.gr-assets.com/books/1328217465s/440960.jpg\n8286,101255,101255,1164036,22,684800012,9780684800010.0,Harold McGee,1984.0,On Food and Cooking: The Science and Lore of the Kitchen,On Food and Cooking: The Science and Lore of the Kitchen,en-US,4.48,10631,11136,438,97,172,991,2883,6993,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347221060l/101255.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8287,668710,668710,654752,15,810993589,9780810993590.0,\"Michael Buckley, Peter Ferguson\",2007.0,Magic and Other Misdemeanors,\"Magic and Other Misdemeanors (The Sisters Grimm, #5)\",,4.29,15038,15633,421,124,344,2217,5104,7844,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425243201l/668710.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8288,9962040,9962040,14855973,25,345519477,9780345519470.0,Maya Banks,2011.0,In Bed with a Highlander,\"In Bed with a Highlander (McCabe Trilogy, #1)\",eng,4.05,20529,22360,1641,352,1017,4232,8395,8364,https://images.gr-assets.com/books/1348705921l/9962040.jpg,https://images.gr-assets.com/books/1348705921s/9962040.jpg\n8289,577283,577283,1607259,52,679736638,9780679736640.0,William Styron,1967.0,The Confessions of Nat Turner,The Confessions of Nat Turner,eng,3.96,11535,12045,394,252,606,2525,4677,3985,https://images.gr-assets.com/books/1406138384l/577283.jpg,https://images.gr-assets.com/books/1406138384s/577283.jpg\n8290,18931,18931,647861,26,1580628362,9781580628360.0,Jodee Blanco,2003.0,Please Stop Laughing at Me... One Woman's Inspirational Story,Please Stop Laughing at Me... One Woman's Inspirational Story,en-US,3.84,9178,10414,1051,410,865,2339,3171,3629,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420925136l/18931.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8292,9712341,9712341,14600859,7,184756190X,9781847561910.0,Gemma Burgess,2011.0,A Girl Like You,A Girl Like You,eng,3.95,12117,12716,690,368,802,2752,4029,4765,https://images.gr-assets.com/books/1289919160l/9712341.jpg,https://images.gr-assets.com/books/1289919160s/9712341.jpg\n8294,7081,7081,18280036,14,765309416,9780765309420.0,John Scalzi,2006.0,The Android's Dream,The Android's Dream,en-US,3.97,11476,13653,1284,139,456,2947,6299,3812,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441762412l/7081._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8295,3291,3291,130037,103,743217187,9780743217190.0,Isabel Allende,1988.0,Cuentos de Eva Luna,The Stories of Eva Luna,en-US,3.96,10862,13067,539,112,617,3093,5159,4086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439782373l/3291.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8296,7579,7579,720899,25,767901576,9780767901570.0,Lama Surya Das,1997.0,Awakening the Buddha Within : Tibetan Wisdom for the Western World,Awakening the Buddha Within: Tibetan Wisdom for the Western World,en-US,4.18,9912,10524,291,119,305,1788,3680,4632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442401545l/7579._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8297,11821514,11821514,627927,8,,,Edie Claire,2003.0,Long Time Coming,Long Time Coming,en-US,3.77,9327,12670,848,343,991,3384,4480,3472,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328346826l/11821514.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8298,33906,33906,2420507,19,316014532,9780316014530.0,Sara Zarr,2007.0,Story of a Girl,Story of a Girl,en-US,3.67,14282,15064,1608,391,1430,4626,4886,3731,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436244825l/33906._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8299,18108795,18078028,25384470,15,,,Lee Child,2013.0,High Heat,High Heat (Jack Reacher #17.5),eng,3.93,4842,13153,682,211,709,3092,4919,4222,https://images.gr-assets.com/books/1467986444l/18108795.jpg,https://images.gr-assets.com/books/1467986444s/18108795.jpg\n8301,13252406,13252406,18453476,34,399158812,9780399158810.0,J.D. Robb,2012.0,Delusion in Death,\"Delusion in Death (In Death, #35)\",en-US,4.31,13716,16990,1154,88,253,2227,6131,8291,https://images.gr-assets.com/books/1334022208l/13252406.jpg,https://images.gr-assets.com/books/1334022208s/13252406.jpg\n8302,504369,504369,1695604,29,743435745,9780743435740.0,David Weber,1994.0,Field of Dishonor,\"Field of Dishonor (Honor Harrington, #4)\",eng,4.19,13157,14609,299,59,305,2372,5900,5973,https://images.gr-assets.com/books/1321561655l/504369.jpg,https://images.gr-assets.com/books/1321561655s/504369.jpg\n8303,13235689,13235689,18433052,27,1936365537,9781936365530.0,David Byrne,2012.0,How Music Works,How Music Works,,3.95,10163,11016,738,380,518,2214,4018,3886,https://images.gr-assets.com/books/1340792878l/13235689.jpg,https://images.gr-assets.com/books/1340792878s/13235689.jpg\n8304,18404093,18404093,26037952,14,1250019699,9781250019690.0,Mary Kay Andrews,2014.0,Save the Date,Save the Date,eng,3.87,11080,12612,1158,202,632,3229,5133,3416,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390618287l/18404093.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8305,10006,10006,3011932,50,965913228,9780965913220.0,Paul Auster,2004.0,Oracle Night,Oracle Night,eng,3.77,8827,11107,636,138,684,3198,4656,2431,https://images.gr-assets.com/books/1328287302l/10006.jpg,https://images.gr-assets.com/books/1328287302s/10006.jpg\n8306,40526,40526,6887879,44,575073608,9780575073610.0,Jack Finney,1970.0,Time and Again,\"Time and Again (Time, #1)\",eng,3.98,11251,14384,1794,265,852,2972,5177,5118,https://images.gr-assets.com/books/1393198563l/40526.jpg,https://images.gr-assets.com/books/1393198563s/40526.jpg\n8307,22027055,22027055,39938149,16,,,Heather Burch,2014.0,One Lavender Ribbon ,One Lavender Ribbon,en-US,3.78,9175,12054,1014,401,1107,2943,3839,3764,https://images.gr-assets.com/books/1401681451l/22027055.jpg,https://images.gr-assets.com/books/1401681451s/22027055.jpg\n8308,1022866,1022866,1009030,38,882706306,9780882706310.0,\"Nicky Cruz, Jamie Buckingham\",1969.0,Run Baby Run,Run Baby Run,en-US,4.21,10697,11071,183,103,288,2018,3442,5220,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436560736l/1022866._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8309,539282,539282,60745,17,452264014,9780452264010.0,August Wilson,1986.0,Fences (The Century Cycle #6),Fences (The Century Cycle #6),eng,3.84,11991,12834,882,269,943,3198,4640,3784,https://images.gr-assets.com/books/1481833774l/539282.jpg,https://images.gr-assets.com/books/1481833774s/539282.jpg\n8310,78629,78629,75922,28,340863684,9780340863690.0,Richard Wurmbrand,1940.0,Tortured for Christ,Tortured for Christ N/E,en-US,4.34,9622,10292,389,102,275,1322,2910,5683,https://images.gr-assets.com/books/1419182359l/78629.jpg,https://images.gr-assets.com/books/1419182359s/78629.jpg\n8311,25663717,25663717,45486674,8,1250076927,9781250076920.0,Lynda Cohen Loigman,2016.0,The Two-Family House,The Two-Family House,eng,3.94,9395,13320,1695,136,611,2976,5847,3750,https://images.gr-assets.com/books/1479207044l/25663717.jpg,https://images.gr-assets.com/books/1479207044s/25663717.jpg\n8312,30636,30636,2682328,52,6280943,9780006280940.0,C.S. Lewis,1947.0,Miracles: A Preliminary Study,Miracles,eng,4.08,10821,11594,456,194,490,2233,3992,4685,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168079584l/30636._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8313,5771014,5771014,5942757,30,1598878735,9781598878740.0,\"Daniel Coyle, John Farrell\",2009.0,\"The Talent Code: Unlocking the Secret of Skill in Sports, Art, Music, Math, and Just About Everything Else\",\"The Talent Code: Unlocking the Secret of Skill in Sports, Art, Music, Math, and Just About Everything Else\",,4.07,10334,12043,946,147,476,2308,4618,4494,https://images.gr-assets.com/books/1404579448l/5771014.jpg,https://images.gr-assets.com/books/1404579448s/5771014.jpg\n8314,18693753,18693753,26732116,28,670016381,9780670016390.0,Elizabeth Little,2014.0,Dear Daughter,Dear Daughter,eng,3.44,10004,11822,1452,562,1439,3924,4036,1861,https://images.gr-assets.com/books/1395618683l/18693753.jpg,https://images.gr-assets.com/books/1395618683s/18693753.jpg\n8315,23745189,22833921,42386247,5,,,Carrie Anne Noble,2015.0,The Mermaid's Sister,The Mermaid's Sister,en-US,3.64,6221,11664,1432,302,1080,3643,4081,2558,https://images.gr-assets.com/books/1421800056l/23745189.jpg,https://images.gr-assets.com/books/1421800056s/23745189.jpg\n8316,16396,9515964,2817794,75,140284125,9780140284130.0,P.G. Wodehouse,1923.0,The Inimitable Jeeves ,\"The Inimitable Jeeves (Jeeves, #2)\",en-US,4.26,7376,14210,811,40,211,1949,5885,6125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760419l/16396.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8317,534415,534415,521922,36,786901896,9780786901890.0,\"Margaret Weis, Tracy Hickman\",1995.0,Dragons of Summer Flame,\"Dragons of Summer Flame (Dragonlance: The Second Generation, #2)\",eng,3.84,11465,13074,163,222,936,3556,4387,3973,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389236610l/534415.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8318,6045456,6045456,6221043,64,446402400,9780446402410.0,Tom Rob Smith,2009.0,The Secret Speech,\"The Secret Speech (Leo Demidov, #2)\",eng,3.78,9880,12967,1238,150,655,3738,5741,2683,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1529494668l/6045456.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8319,7908638,7908638,10999224,27,307272583,9780307272580.0,Carl Hiaasen,2010.0,Star Island,\"Star Island (Skink, #6)\",,3.44,11806,14044,1920,418,1645,5304,4755,1922,https://images.gr-assets.com/books/1320464091l/7908638.jpg,https://images.gr-assets.com/books/1320464091s/7908638.jpg\n8320,68496,68496,2959401,44,345495160,9780345495170.0,China Miéville,2007.0,Un Lun Dun,Un Lun Dun,eng,3.81,13243,15493,1672,440,1116,3761,5736,4440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170692699l/68496._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8321,13617,13617,1782161,28,1421506262,9781421506260.0,\"Tsugumi Ohba, Takeshi Obata\",2005.0,\"デスノート #5 (Desu Nōto) Hakushi (白紙,) \",\"Death Note, Vol. 5: Whiteout (Death Note, #5)\",eng,4.35,15786,16312,463,77,341,2110,5082,8702,https://images.gr-assets.com/books/1449779269l/13617.jpg,https://images.gr-assets.com/books/1449779269s/13617.jpg\n8322,10532477,10532477,15438779,37,1401324436,9781401324440.0,Richard Castle,2011.0,Heat Rises,\"Heat Rises (Nikki Heat, #3)\",en-US,3.92,12449,15087,1296,79,512,3986,6457,4053,https://images.gr-assets.com/books/1302579268l/10532477.jpg,https://images.gr-assets.com/books/1302579268s/10532477.jpg\n8323,18956,18956,3187942,26,805080759,9780805080760.0,David Simon,1991.0,Homicide: A Year on the Killing Streets,Homicide: A Year on the Killing Streets,en-US,4.38,10279,12035,932,101,250,1226,3913,6545,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432402772l/18956._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8324,155712,155712,3232591,32,425183238,9780425183240.0,\"Benedict Freedman, Nancy Freedman\",1947.0,Mrs. Mike,\"Mrs. Mike (Mrs. Mike, #1)\",eng,4.13,12826,14364,1756,145,508,2600,5183,5928,https://images.gr-assets.com/books/1309212489l/155712.jpg,https://images.gr-assets.com/books/1309212489s/155712.jpg\n8325,22886113,22886113,42455676,13,1476791619,9781476791620.0,Connor Franta,2015.0,A Work in Progress,A Work in Progress,eng,4.36,14397,14823,1795,246,554,1678,3466,8879,https://images.gr-assets.com/books/1426466460l/22886113.jpg,https://images.gr-assets.com/books/1426466460s/22886113.jpg\n8326,18090147,18090147,25146823,22,62285505,9780062285510.0,Rene Denfeld,2014.0,The Enchanted,The Enchanted,eng,3.96,11515,13413,2636,314,744,2646,5185,4524,https://images.gr-assets.com/books/1373991244l/18090147.jpg,https://images.gr-assets.com/books/1373991244s/18090147.jpg\n8327,7116709,7116709,7377150,49,718155181,9780718155190.0,Paul  Hoffman,2010.0,The Left Hand of God ,\"The Left Hand of God (The Left Hand of God, #1)\",en-GB,3.66,10638,13367,1089,458,1235,3704,5021,2949,https://images.gr-assets.com/books/1257742712l/7116709.jpg,https://images.gr-assets.com/books/1257742712s/7116709.jpg\n8328,17332564,17332564,24037773,31,006221635X,9780062216360.0,Katie Cotugno,2013.0,How to Love,How to Love,eng,3.73,12515,13848,1936,484,1280,3648,4528,3908,https://images.gr-assets.com/books/1366904609l/17332564.jpg,https://images.gr-assets.com/books/1366904609s/17332564.jpg\n8329,7062,7062,2297476,22,375758232,9780375758230.0,Adam Gopnik,2000.0,Paris to the Moon,Paris to the Moon,eng,3.75,11065,11607,959,329,900,3067,4305,3006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388345313l/7062.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8330,8720917,8720917,13593837,40,385613504,9780385613510.0,Jenny Downham,2010.0,You Against Me,You Against Me,eng,3.7,15118,16478,1397,538,1455,4543,5752,4190,https://images.gr-assets.com/books/1311064228l/8720917.jpg,https://images.gr-assets.com/books/1311064228s/8720917.jpg\n8331,343718,343718,1397270,17,439717000,9780439717010.0,Ann M. Martin,2005.0,A Dog's Life: Autobiography of a Stray,A Dog's Life: The Autobiography of a Stray,eng,4.18,11112,12615,1162,155,528,2156,3782,5994,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198703l/343718.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8332,153783,153783,1060295,17,439441722,9780439441730.0,Tamora Pierce,2005.0,The Will of the Empress,\"The Will of the Empress (Circle Reforged, #1)\",eng,4.15,16730,17589,455,236,720,3077,5668,7888,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390187660l/153783.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8333,15823426,15823426,21553734,32,345530411,9780345530420.0,\"Tyler Hamilton, Daniel Coyle\",2012.0,\"The Secret Race: Inside the Hidden World of the Tour de France: Doping, Cover-ups, and Winning at All Costs\",\"The Secret Race: Inside the Hidden World of the Tour de France: Doping, Cover-ups, and Winning at All Costs\",eng,4.32,8711,10423,1102,77,125,1040,4300,4881,https://images.gr-assets.com/books/1344963275l/15823426.jpg,https://images.gr-assets.com/books/1344963275s/15823426.jpg\n8334,3757,3757,3131771,127,142002038,9780142002030.0,Ian Fleming,1958.0,Dr. No,\"Doctor No (James Bond, #6)\",eng,3.76,10569,13460,686,121,754,4202,5509,2874,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428348040l/3757.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8335,18090150,18090150,25337782,70,62291408,9780062291400.0,\"Isabel Allende, Oliver Brock, Frank Wynne\",2013.0,El juego de Ripper,Ripper,eng,3.24,8919,12129,1950,893,1983,4163,3484,1606,https://images.gr-assets.com/books/1422871316l/18090150.jpg,https://images.gr-assets.com/books/1422871316s/18090150.jpg\n8336,74862,74862,1829890,43,9649051759,,Samad Behrangi,1965.0,ماهی سیاه کوچولو,ماهی سیاه کوچولو,per,4.11,5364,8080,395,127,387,1465,2562,3539,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170869052l/74862._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8337,74406,74406,603433,50,141181362,9780141181360.0,Robertson Davies,1970.0,Fifth Business,Fifth Business,eng,4.04,11651,13578,827,265,712,2360,5062,5179,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170852646l/74406.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8338,2324124,2324124,2330648,8,618829253,9780618829260.0,\"Alan    Richardson, Karen Tack\",2008.0,\"Hello, Cupcake!: Irresistibly Playful Creations Anyone Can Make\",\"Hello, Cupcake\",en-US,4.05,10653,10704,211,214,586,2243,3074,4587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442609590l/2324124._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8340,41958,41958,41459,78,752865366,9780752865360.0,Maeve Binchy,2004.0,Nights of Rain and Stars,Nights of Rain and Stars,en-GB,3.67,12365,14137,1015,282,1158,4544,5117,3036,https://images.gr-assets.com/books/1355496059l/41958.jpg,https://images.gr-assets.com/books/1355496059s/41958.jpg\n8341,9529502,9529502,14415584,25,61944394,9780061944390.0,Lincoln Peirce,2009.0,Big Nate on a Roll,\"Big Nate on a Roll (Big Nate Novels, #3)\",,4.32,9873,10340,386,203,382,1326,2469,5960,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348187631l/9529502.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8342,12546674,12546674,17533854,27,1467964409,9781467964400.0,Catherine Bybee,2011.0,Wife by wednesday,\"Wife by Wednesday (The Weekday Brides, #1)\",eng,3.77,10586,16368,1174,347,1115,4645,6122,4139,https://images.gr-assets.com/books/1355031471l/12546674.jpg,https://images.gr-assets.com/books/1355031471s/12546674.jpg\n8343,824318,824318,810094,8,804467250,9780804467250.0,\"Dick Riley, Pam McAllister, Bruce Cassiday\",1979.0,\"The  Bedside, Bathtub and Armchair Companion to Agatha Christie\",\"The New Bedside, Bathtub and Armchair Companion to Agatha Christie\",en-US,4.23,10356,10405,25,141,323,1775,2879,5287,https://images.gr-assets.com/books/1409153866l/824318.jpg,https://images.gr-assets.com/books/1409153866s/824318.jpg\n8345,12988016,12988016,18147798,24,1451650051,9781451650050.0,Kresley Cole,2012.0,\"Shadow's Claim (The Dacians, #1)\",\"Shadow's Claim (Immortals After Dark, #13; The Dacians, #1)\",eng,4.28,17866,19916,1410,171,509,2618,6842,9776,https://images.gr-assets.com/books/1336161703l/12988016.jpg,https://images.gr-assets.com/books/1336161703s/12988016.jpg\n8346,17910544,17910544,25096149,13,034553283X,9780345532830.0,Kelly Corrigan,2014.0,Glitter and Glue,Glitter and Glue,eng,3.76,10841,11987,1722,225,731,3308,5116,2607,https://images.gr-assets.com/books/1403166272l/17910544.jpg,https://images.gr-assets.com/books/1403166272s/17910544.jpg\n8347,61834,61834,1230097,83,805077642,9780805077640.0,\"Walter Lord, Nathaniel Philbrick\",1955.0,A Night to Remember,A Night to Remember,en-US,4.0,11475,13544,983,138,524,3037,5376,4469,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440174850l/61834._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8348,6944566,9498875,7178069,25,393062627,9780393062620.0,Brady Udall,2010.0,The Lonely Polygamist,The Lonely Polygamist,en-US,3.5,9773,13769,2499,584,1632,4142,5134,2277,https://images.gr-assets.com/books/1459640976l/6944566.jpg,https://images.gr-assets.com/books/1459640976s/6944566.jpg\n8349,13061,13061,308671,30,446677167,9780446677160.0,Carl Hiaasen,1995.0,Stormy Weather,Stormy Weather,en-US,3.94,11452,12735,698,80,400,3125,5729,3401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435608425l/13061._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8350,6303733,6303733,6488344,32,739318926,9780739318930.0,\"Richard Russo, Arthur Morey\",2009.0,That Old Cape Magic,That Old Cape Magic,eng,3.3,12095,14461,2177,452,1951,6065,4768,1225,https://images.gr-assets.com/books/1320442735l/6303733.jpg,https://images.gr-assets.com/books/1320442735s/6303733.jpg\n8351,6634409,6634409,6828809,17,425227944,9780425227950.0,Maya Banks,2010.0,The Darkest Hour,\"The Darkest Hour (KGI, #1)\",eng,4.17,19619,21205,1329,267,707,3440,7593,9198,https://images.gr-assets.com/books/1327927870l/6634409.jpg,https://images.gr-assets.com/books/1327927870s/6634409.jpg\n8352,10108463,10108463,15005760,36,038553504X,9780385535040.0,Donald Ray Pollock,2011.0,The Devil All the Time,The Devil All the Time,eng,4.09,9620,11252,1703,175,465,1738,4643,4231,https://images.gr-assets.com/books/1320561517l/10108463.jpg,https://images.gr-assets.com/books/1320561517s/10108463.jpg\n8353,18111281,18111281,25436407,75,,9780670077040.0,Saroo Brierley,2013.0,A Long Way Home,A Long Way Home,eng,4.12,12404,23718,2348,226,644,4103,9746,8999,https://images.gr-assets.com/books/1371983160l/18111281.jpg,https://images.gr-assets.com/books/1371983160s/18111281.jpg\n8355,11690,11690,1574123,100,1400033888,9781400033880.0,Orhan Pamuk,2003.0,İstanbul: Hatıralar ve Şehir,Istanbul: Memories and the City,eng,3.77,9919,12130,1192,250,959,3249,4592,3080,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290334l/11690.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8356,287655,287655,42252,20,452286107,9780452286110.0,\"Clare Naylor, Mimi Hare\",2004.0,The Second Assistant: A Tale from the Bottom of the Hollywood Ladder,The Second Assistant: A Tale from the Bottom of the Hollywood Ladder,en-US,3.52,11268,11515,281,425,1424,3843,3363,2460,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442366160l/287655._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8357,1990,1990,901325,311,140436146,9780140436140.0,\"Charles Dickens, Patricia Ingham, Hablot Knight Browne\",1844.0,The Life and Adventures of Martin Chuzzlewit,Martin Chuzzlewit,eng,3.82,11784,12637,424,366,909,3134,4410,3818,https://images.gr-assets.com/books/1334392783l/1990.jpg,https://images.gr-assets.com/books/1334392783s/1990.jpg\n8358,71870,71870,69587,42,043985802X,9780439858020.0,John Marsden,1996.0,\"Darkness, Be My Friend\",\"Darkness, Be My Friend (Tomorrow, #4)\",en-US,4.11,12447,13894,330,57,369,2694,5620,5154,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442590306l/71870._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8359,6251012,6251012,6433885,7,,,Stephen King,2009.0,UR,UR,eng,3.65,13518,13884,1110,263,1237,4601,4822,2961,https://images.gr-assets.com/books/1295433746l/6251012.jpg,https://images.gr-assets.com/books/1295433746s/6251012.jpg\n8360,133488,133488,1094851,37,449206521,9780449206520.0,James A. Michener,1947.0,Tales of the South Pacific,Tales of the South Pacific,en-US,4.03,11999,12254,309,105,492,2716,4544,4397,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425684588l/133488.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8361,5845,5845,1158939,64,330487140,9780330487150.0,V.S. Naipaul,1979.0,A Bend in the River,A Bend in the River,eng,3.77,11011,12220,677,348,935,3129,4595,3213,https://images.gr-assets.com/books/1353691563l/5845.jpg,https://images.gr-assets.com/books/1353691563s/5845.jpg\n8362,25852784,25852784,45720714,16,553447432,9780553447440.0,Matthew Desmond,2016.0,Evicted: Poverty and Profit in the American City,Evicted: Poverty and Profit in the American City,eng,4.48,15165,17326,3019,98,251,1329,5234,10414,https://images.gr-assets.com/books/1453060710l/25852784.jpg,https://images.gr-assets.com/books/1453060710s/25852784.jpg\n8363,13565676,13565676,19143595,13,,,Sarah J. Maas,2012.0,The Assassin and the Empire,\"The Assassin and the Empire (Throne of Glass, #0.5)\",eng,4.42,17277,17997,1221,140,341,1882,5040,10594,https://images.gr-assets.com/books/1341877441l/13565676.jpg,https://images.gr-assets.com/books/1341877441s/13565676.jpg\n8364,17835773,17835773,24956536,11,,,Abbi Glines,2013.0,Misbehaving,\"Misbehaving (Sea Breeze, #6)\",eng,4.18,18648,19439,1151,143,586,3358,6936,8416,https://images.gr-assets.com/books/1415353706l/17835773.jpg,https://images.gr-assets.com/books/1415353706s/17835773.jpg\n8365,21416690,21416690,40717845,21,1447256239,9781447256240.0,Genevieve Cogman,2015.0,The Invisible Library,\"The Invisible Library (The Invisible Library, #1)\",eng,3.73,12058,16812,2831,340,1180,4730,7010,3552,https://images.gr-assets.com/books/1416823893l/21416690.jpg,https://images.gr-assets.com/books/1416823893s/21416690.jpg\n8366,112322,112322,1629732,42,449911608,9780449911600.0,Anne Tyler,1991.0,Saint Maybe,Saint Maybe,en-US,3.88,13134,13968,612,109,569,3804,5963,3523,https://images.gr-assets.com/books/1453274893l/112322.jpg,https://images.gr-assets.com/books/1453274893s/112322.jpg\n8368,541341,541341,528702,13,618665455,9780618665460.0,Mary Downing Hahn,2007.0,Deep and Dark and Dangerous: A Ghost Story,Deep and Dark and Dangerous (A Ghost Story),,4.22,12839,13605,1649,157,533,2225,3915,6775,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348351238l/541341.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8369,3130430,3130430,3161838,19,1416554955,9781416554950.0,\"Melissa Anelli, J.K. Rowling\",2008.0,\"Harry, A History: The True Story of a Boy Wizard, His Fans, and Life Inside the Harry Potter Phenomenon\",\"Harry, a History: The True Story of a Boy Wizard, His Fans, and Life Inside the Harry Potter Phenomenon\",en-US,4.09,12308,12528,652,337,715,2386,3149,5941,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442437397l/3130430._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8370,3700085,3700085,3743599,35,545054745,9780545054740.0,Francisco X. Stork,2008.0,Marcelo in the Real World,Marcelo in the Real World,eng,3.95,14651,15701,2487,331,821,3263,6213,5073,https://images.gr-assets.com/books/1328838330l/3700085.jpg,https://images.gr-assets.com/books/1328838330s/3700085.jpg\n8371,228199,228199,9813490,25,451190556,9780451190550.0,Stephen King,1996.0,\"The Green Mile, Part 4: The Bad Death of Eduard Delacroix\",\"The Green Mile, Part 4: The Bad Death of Eduard Delacroix\",eng,4.52,12958,13446,141,44,153,1158,3561,8530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1556210860l/228199._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8372,8343444,8343444,13194534,3,,9789792257810.0,Tere Liye,2010.0,Daun Yang Jatuh Tak Pernah Membenci Angin,Daun Yang Jatuh Tak Pernah Membenci Angin,ind,3.97,9974,10001,863,335,581,2047,3152,3886,https://images.gr-assets.com/books/1485759293l/8343444.jpg,https://images.gr-assets.com/books/1485759293s/8343444.jpg\n8373,623976,623976,2591148,34,439925509,9780439925500.0,Brandon Sanderson,2007.0,Alcatraz Versus the Evil Librarians,\"Alcatraz Versus the Evil Librarians (Alcatraz, #1)\",eng,3.87,13474,15374,2393,328,937,3729,5745,4635,https://images.gr-assets.com/books/1332516621l/623976.jpg,https://images.gr-assets.com/books/1332516621s/623976.jpg\n8374,13163846,13163846,18342898,14,145210655X,9781452106560.0,Jeffrey Brown,2012.0,Darth Vader and Son,Darth Vader and Son,eng,4.14,14005,15307,1326,263,568,2661,5065,6750,https://images.gr-assets.com/books/1392020416l/13163846.jpg,https://images.gr-assets.com/books/1392020416s/13163846.jpg\n8375,2068,2068,1835,24,068482471X,9780684824710.0,Daniel C. Dennett,1995.0,Darwin's Dangerous Idea: Evolution and the Meanings of Life,Darwin's Dangerous Idea: Evolution and the Meanings of Life,en-US,4.03,11090,11292,222,276,592,2164,3717,4543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1412689162l/2068.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8376,68452,68452,66346,52,8370541291,9788370541290.0,Andrzej Sapkowski,1999.0,Pani Jeziora,\"Pani Jeziora (Saga o Wiedźminie, #7)\",pol,4.28,9902,13993,403,138,516,1796,4451,7092,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1208556022l/68452.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8377,244102,244102,236496,32,042518546X,9780425185470.0,C.J. Box,2001.0,Open Season,\"Open Season (Joe Pickett, #1)\",en-US,3.91,10659,13377,1220,207,551,3187,5730,3702,https://images.gr-assets.com/books/1255789732l/244102.jpg,https://images.gr-assets.com/books/1255789732s/244102.jpg\n8378,12926132,12926132,18081677,18,1599908735,9781599908730.0,Shannon Hale,2012.0,Palace of Stone,\"Palace of Stone (Princess Academy, #2)\",eng,3.95,16023,16889,2173,128,684,4142,6875,5060,https://images.gr-assets.com/books/1345726316l/12926132.jpg,https://images.gr-assets.com/books/1345726316s/12926132.jpg\n8379,22725443,22725443,41246261,52,812997530,9780812997540.0,Jill Alexander Essbaum,2015.0,Hausfrau,Hausfrau,eng,3.24,9949,11842,2270,813,2033,4001,3468,1527,https://images.gr-assets.com/books/1419180448l/22725443.jpg,https://images.gr-assets.com/books/1419180448s/22725443.jpg\n8380,386142,386142,375834,10,751534552,9780751534560.0,Amanda Brown,2001.0,Legally Blonde,Legally Blonde,,3.68,11094,11320,189,517,1174,3135,3102,3392,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389052907l/386142.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8381,21414439,21414439,40715259,28,,,Susan Dennard,2016.0,Truthwitch,\"Truthwitch (The Witchlands, #1)\",eng,3.93,17752,20666,4273,554,1196,4013,8321,6582,https://images.gr-assets.com/books/1428675822l/21414439.jpg,https://images.gr-assets.com/books/1428675822s/21414439.jpg\n8382,4813,4813,1788700,40,006054094X,9780060540940.0,Gavin Menzies,2002.0,1421: The Year China Discovered America,1421: The Year China Discovered America,eng,3.58,10200,10971,906,790,1077,2810,3578,2716,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388274909l/4813.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8383,13513205,13513205,19068510,7,374386153,9780374386150.0,\"Hope Larson, Madeleine L'Engle\",2012.0,A Wrinkle in Time: The Graphic Novel,A Wrinkle in Time: The Graphic Novel,eng,3.95,12337,12650,1265,370,761,2749,4061,4709,https://images.gr-assets.com/books/1334801023l/13513205.jpg,https://images.gr-assets.com/books/1334801023s/13513205.jpg\n8384,225343,225343,1897560,37,679767959,9780679767950.0,Nora Ephron,1983.0,Heartburn,Heartburn,eng,3.57,12503,14448,1869,391,1547,4680,5116,2714,https://images.gr-assets.com/books/1386647458l/225343.jpg,https://images.gr-assets.com/books/1386647458s/225343.jpg\n8385,13528417,13528417,18468023,50,316211338,9780316211340.0,Liza Klaussmann,2012.0,Tigers in Red Weather,Tigers in Red Weather,eng,3.42,10800,12882,1781,384,1648,4701,4531,1618,https://images.gr-assets.com/books/1336156424l/13528417.jpg,https://images.gr-assets.com/books/1336156424s/13528417.jpg\n8386,92375,92375,1576118,90,451210743,9780451210750.0,Ken Follett,2002.0,Hornet Flight,Hornet Flight,en-US,3.83,11362,13379,652,91,621,3756,5961,2950,https://images.gr-assets.com/books/1309202400l/92375.jpg,https://images.gr-assets.com/books/1309202400s/92375.jpg\n8387,39801,39801,67116,93,99464691,9780099464690.0,\"Henning Mankell, Laurie Thompson\",1993.0,Den vita lejoninnan,\"The White Lioness (Kurt Wallander, #3)\",eng,3.84,10678,13705,888,144,662,3684,6022,3193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1169315341l/39801._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8388,28485,28485,1919217,30,553290983,9780553290980.0,\"Margaret Weis, Tracy Hickman\",1990.0,\"Elven Star (The Death Gate Cycle, #2)\",\"Elven Star (The Death Gate Cycle, #2)\",en-US,3.98,13576,14623,222,126,727,3352,5590,4828,https://images.gr-assets.com/books/1324543424l/28485.jpg,https://images.gr-assets.com/books/1324543424s/28485.jpg\n8389,52872,52872,1094776,20,802170374,9780802170380.0,Sherman Alexie,2007.0,Flight: A Novel,Flight,en-US,3.89,12016,12429,1894,188,652,3064,4976,3549,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440251533l/52872._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8390,12073,12073,2078450,62,631231277,9780631231270.0,\"Ludwig Wittgenstein, G.E.M. Anscombe\",1953.0,Philosophische Untersuchungen,Philosophical Investigations,en-US,4.23,9403,10085,224,240,389,1389,2869,5198,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440047548l/12073._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8391,9915707,9915707,14808326,18,,,Carrie Jones,2012.0,Endure,\"Endure (Need, #4)\",eng,4.08,16128,16676,1061,312,848,3297,5016,7203,https://images.gr-assets.com/books/1330073413l/9915707.jpg,https://images.gr-assets.com/books/1330073413s/9915707.jpg\n8392,23545800,23545800,43145292,16,,,Claire Contreras,2015.0, Kaleidoscope Hearts,\"Kaleidoscope Hearts (Hearts, #1)\",eng,4.06,15396,19275,2231,267,841,3496,7484,7187,https://images.gr-assets.com/books/1421251011l/23545800.jpg,https://images.gr-assets.com/books/1421251011s/23545800.jpg\n8393,68524,68524,66401,60,312187149,9780312187150.0,Bernard Cornwell,1996.0,Enemy of God,\"Enemy of God (The Warlord Chronicles, #2)\",en-US,4.38,8664,12740,448,35,140,1337,4681,6547,https://images.gr-assets.com/books/1311985643l/68524.jpg,https://images.gr-assets.com/books/1311985643s/68524.jpg\n8395,18246727,18246727,25697736,10,,,Tarryn Fisher,2014.0,Mud Vein,Mud Vein,eng,4.11,16593,16961,3439,477,1046,2611,4882,7945,https://images.gr-assets.com/books/1379536072l/18246727.jpg,https://images.gr-assets.com/books/1379536072s/18246727.jpg\n8396,579696,579696,1602327,8,609804618,9780609804610.0,\"Scott Dikkers, Maria Schneider, John Krewson, Robert Siegel, David Javerbaum, Todd Hanson, Carol Kolb, Mike Loew, Tim Harrod\",1998.0,Our Dumb Century: The Onion Presents 100 Years of Headlines from America's Finest News Source,Our Dumb Century: The Onion Presents 100 Years of Headlines from America's Finest News Source,eng,4.18,10999,11198,123,120,317,1929,3918,4914,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388195124l/579696.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8397,294044,294044,1544016,35,60521600,9780060521610.0,James Rollins,2003.0,Ice Hunt,Ice Hunt,eng,4.04,12302,13347,453,99,497,2872,5209,4670,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347585309l/294044.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8398,29484,29484,3341450,17,425212017,9780425212010.0,Laurell K. Hamilton,2006.0,Strange Candy,\"Strange Candy (Anita Blake, Vampire Hunter #0.5)\",en-US,3.74,14468,15035,311,549,1505,4160,3895,4926,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442357477l/29484._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8399,79016,79016,1813641,60,312997124,9780312997120.0,Jeffrey Archer,1983.0,First Among Equals,First Among Equals,eng,3.87,11171,11940,265,127,552,3227,4914,3120,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389154944l/79016.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8400,53200,53200,64240,63,553374117,9780553374120.0,Stephen Hawking,1993.0,Black Holes and Baby Universes and Other Essays,Black Holes and Baby Universes,eng,4.09,9477,10127,228,136,431,1927,3547,4086,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924312l/53200.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8401,179033,179033,172962,21,6473296,9780006473300.0,Stephen R. Donaldson,1977.0,\"The Chronicles of Thomas Covenant, the Unbeliever\",\"The Chronicles of Thomas Covenant, the Unbeliever (The Chronicles of Thomas Covenant the Unbeliever, #1-3)\",eng,3.78,12122,12330,278,782,1067,2482,3783,4216,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386920669l/179033.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8402,8074967,8074967,12787590,24,425243915,9780425243920.0,Nalini Singh,2011.0,Archangel's Blade,\"Archangel's Blade (Guild Hunter, #4)\",,4.26,20804,23303,1555,151,590,3344,8111,11107,https://images.gr-assets.com/books/1327877499l/8074967.jpg,https://images.gr-assets.com/books/1327877499s/8074967.jpg\n8403,31795,31795,32011,83,671739166,9780671739160.0,Will Durant,1926.0,The Story of Philosophy,The Story of Philosophy: The Lives and Opinions of the World's Greatest Philosophers,eng,4.09,8618,10289,631,153,425,1850,3751,4110,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438471992l/31795._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8404,110763,110763,1167079,37,679724532,9780679724540.0,Elaine Pagels,1979.0,The Gnostic Gospels,The Gnostic Gospels,en-US,3.93,11216,11785,504,262,553,2676,4544,3750,https://images.gr-assets.com/books/1403187711l/110763.jpg,https://images.gr-assets.com/books/1403187711s/110763.jpg\n8405,242157,242157,2948287,54,385338902,9780385338900.0,Jonathan Tropper,2007.0,How to Talk to a Widower,How to Talk to a Widower,,3.97,9884,12018,1291,99,409,2598,5595,3317,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173052631l/242157.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8406,841973,841973,2816507,276,345324390,9780345324400.0,Edgar Rice Burroughs,1913.0,The Gods of Mars,\"The Gods of Mars (Barsoom, #2)\",eng,3.86,10859,13244,765,88,601,3841,5296,3418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348188943l/841973.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8407,17570105,17570105,24508931,32,1442364459,9781442364460.0,\"Vince Flynn, Kyle Mills, Armand Schultz\",2015.0,The Survivor,\"The Survivor (Mitch Rapp, #14)\",eng,4.2,6945,12140,925,105,299,1770,4902,5064,https://images.gr-assets.com/books/1443534014l/17570105.jpg,https://images.gr-assets.com/books/1443534014s/17570105.jpg\n8409,18467818,18467818,26127435,17,802122515,9780802122510.0,Roxane Gay,2014.0,An Untamed State,An Untamed State,eng,4.05,10809,12037,2219,280,624,1953,4550,4630,https://images.gr-assets.com/books/1395145925l/18467818.jpg,https://images.gr-assets.com/books/1395145925s/18467818.jpg\n8410,2176735,2176735,1405064,38,374116342,9780374116350.0,Tim Winton,2008.0,Breath,Breath,,3.8,10233,11357,1047,201,751,2895,4755,2755,https://images.gr-assets.com/books/1317792624l/2176735.jpg,https://images.gr-assets.com/books/1317792624s/2176735.jpg\n8411,164723,164723,159038,6,890420254,9780890420260.0,American Psychiatric Association,1952.0,Diagnostic and Statistical Manual of Mental Disorders DSM-IV-TR (Text Revision),Diagnostic and Statistical Manual of Mental Disorders DSM-IV-TR,eng,3.87,10114,10155,219,471,738,2229,2948,3769,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389919214l/164723.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8412,104737,104737,1039296,40,6514944,9780006514950.0,Laurie R. King,1995.0,A Monstrous Regiment of Women,\"A Monstrous Regiment of Women (Mary Russell, #2)\",eng,4.04,15363,18005,1397,112,561,3704,7788,5840,https://images.gr-assets.com/books/1334169424l/104737.jpg,https://images.gr-assets.com/books/1334169424s/104737.jpg\n8413,40271,40271,1193303,38,312850530,9780312850530.0,Orson Scott Card,1995.0,Alvin Journeyman (Tales of Alvin Maker #4),\"Alvin Journeyman (Tales of Alvin Maker, #4)\",en-US,3.72,12663,13787,246,147,878,4537,5391,2834,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388256345l/40271.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8414,17262236,17262236,23859036,28,1423183096,9781423183100.0,Elizabeth Wein,2013.0,Rose Under Fire,\"Rose Under Fire (Code Name Verity, #2)\",eng,4.13,13526,15064,2573,430,523,2029,5764,6318,https://images.gr-assets.com/books/1368219053l/17262236.jpg,https://images.gr-assets.com/books/1368219053s/17262236.jpg\n8415,511240,511240,499238,16,1413903177,9781413903170.0,\"Kiyohiko Azuma, あずま きよひこ\",2003.0,よつばと! 1,\"Yotsuba&!, Vol. 01 (Yotsuba&! #1)\",eng,4.34,12754,13443,618,213,469,1622,3359,7780,https://images.gr-assets.com/books/1284943754l/511240.jpg,https://images.gr-assets.com/books/1284943754s/511240.jpg\n8416,35476,35476,3813941,59,803283857,9780803283860.0,\"Black Elk, John G. Neihardt\",1932.0,Black Elk Speaks,Black Elk Speaks: Being the Life Story of a Holy Man of the Oglala Sioux,en-GB,4.13,8888,10942,514,114,407,2010,3837,4574,https://images.gr-assets.com/books/1328819916l/35476.jpg,https://images.gr-assets.com/books/1328819916s/35476.jpg\n8417,6326920,6326920,6512514,46,385529376,9780385529370.0,Ben Mezrich,2009.0,\"The Accidental Billionaires: The Founding of Facebook: A Tale of Sex, Money, Genius and Betrayal\",\"The Accidental Billionaires: The Founding of Facebook, a Tale of Sex, Money, Genius and Betrayal\",en-US,3.5,9400,11768,1443,309,1288,4213,4124,1834,https://images.gr-assets.com/books/1320527444l/6326920.jpg,https://images.gr-assets.com/books/1320527444s/6326920.jpg\n8418,1050383,1050383,2209673,59,034083384X,9780340833840.0,Jeffery Deaver,2007.0,The Sleeping Doll,\"The Sleeping Doll (Kathryn Dance, #1)\",eng,3.92,11895,13826,857,149,549,3401,5877,3850,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348064162l/1050383.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8419,252999,252999,1847372,28,084394952X,9780843949520.0,Christine Feehan,2002.0,Dark Legend,\"Dark Legend (Dark, #8)\",eng,4.33,16196,17255,312,80,420,2356,5197,9202,https://images.gr-assets.com/books/1330425833l/252999.jpg,https://images.gr-assets.com/books/1330425833s/252999.jpg\n8420,107017,107017,3655307,24,1401200605,9781401200600.0,\"Jeph Loeb, Jim Lee, Scott Williams\",2002.0,Batman Hush #1,\"Batman: Hush, Vol. 1\",eng,4.1,31527,32057,273,1350,1408,5013,9223,15063,https://images.gr-assets.com/books/1460914534l/107017.jpg,https://images.gr-assets.com/books/1460914534s/107017.jpg\n8421,13112023,13112023,18285607,30,778313654,9780778313660.0,Heather Gudenkauf,2012.0,One Breath Away,One Breath Away,eng,3.98,13179,14331,1943,161,653,3113,5820,4584,https://images.gr-assets.com/books/1333763497l/13112023.jpg,https://images.gr-assets.com/books/1333763497s/13112023.jpg\n8422,2967316,2967316,2996853,48,743292511,9780743292510.0,Greg Iles,2009.0,The Devil's Punchbowl,The Devil's Punchbowl,eng,4.05,10626,13052,1036,155,458,2461,5478,4500,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421371209l/2967316.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8423,47944,47944,46927,14,142500593,9780142500590.0,Sara Ryan,2001.0,Empress of the World,\"Empress of the World (Battle Hall Davies, #1)\",en-US,3.73,11076,11263,431,405,1069,3166,3114,3509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425519439l/47944.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8424,2637138,2637138,2661857,9,345507460,9780345507460.0,Jim Butcher,2008.0,Welcome to the Jungle,\"Welcome to the Jungle (The Dresden Files, #0.5)\",eng,4.09,13833,13973,497,102,427,2946,5164,5334,https://images.gr-assets.com/books/1320418408l/2637138.jpg,https://images.gr-assets.com/books/1320418408s/2637138.jpg\n8427,8389671,8389671,13247769,15,307393879,9780307393880.0,Alice Hoffman,2011.0,The Red Garden,The Red Garden,eng,3.69,13236,15299,2206,323,1205,4590,5987,3194,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293576l/8389671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8428,42407,42407,2094984,25,1405204664,9781405204670.0,Jean de Brunhoff,1933.0,Le Roi Babar,Babar the King,en-US,4.18,14296,14385,39,210,592,2811,3625,7147,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922352l/42407.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8429,13623777,13623777,19213015,14,006174266X,9780061742670.0,Gordon Korman,2012.0,Ungifted,Ungifted,eng,4.0,11956,12727,1703,283,548,2593,4806,4497,https://images.gr-assets.com/books/1340757270l/13623777.jpg,https://images.gr-assets.com/books/1340757270s/13623777.jpg\n8430,160194,160194,746005,18,1400031605,9781400031600.0,Michael Frayn,1982.0,Noises Off,Noises Off,,4.18,12709,12897,158,240,469,2030,4163,5995,https://images.gr-assets.com/books/1320486520l/160194.jpg,https://images.gr-assets.com/books/1320486520s/160194.jpg\n8431,372384,372384,14597674,55,440225450,9780440225450.0,Harlan Coben,1999.0,The Final Detail,The Final Detail (Myron Bolitar #6),eng,4.0,11989,14482,628,76,353,3200,6669,4184,https://images.gr-assets.com/books/1300230473l/372384.jpg,https://images.gr-assets.com/books/1300230473s/372384.jpg\n8432,3972,3972,1537178,34,380817934,9780380817930.0,Dan Simmons,2005.0,Olympos,\"Olympos (Ilium, #2)\",en-US,3.93,11393,12698,479,206,766,2765,4945,4016,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388216654l/3972.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8433,3872,3872,7600,31,802715524,9780802715520.0,Tom Standage,2005.0,A History of the World in 6 Glasses,A History of the World in 6 Glasses,en-US,3.74,10473,12688,1583,182,794,3820,5184,2708,https://images.gr-assets.com/books/1415681601l/3872.jpg,https://images.gr-assets.com/books/1415681601s/3872.jpg\n8435,71622,71622,3194786,37,446697435,9780446697440.0,Robert Hicks,2005.0,The Widow of the South,The Widow of the South,eng,3.75,12419,13242,1476,338,1067,3548,4953,3336,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388418705l/71622.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8437,10790276,10790276,15702554,14,1414358466,9781414358470.0,\"Randy Alcorn, Alex Kendrick, Stephen Kendrick\",2011.0,Courageous,Courageous,,4.53,9409,10136,363,65,141,878,2325,6727,https://images.gr-assets.com/books/1406505682l/10790276.jpg,https://images.gr-assets.com/books/1406505682s/10790276.jpg\n8438,6345760,6345760,6532095,50,763644102,9780763644110.0,\"Kate DiCamillo, Yoko Tanaka\",2009.0,The Magician's Elephant,The Magician's Elephant,eng,3.82,14726,16108,2735,255,1109,4342,5960,4442,https://images.gr-assets.com/books/1320520056l/6345760.jpg,https://images.gr-assets.com/books/1320520056s/6345760.jpg\n8439,31178,31178,2731250,44,345477243,9780345477250.0,Anne Tyler,2001.0,Back When We Were Grownups,Back When We Were Grownups,eng,3.51,13416,14632,1237,315,1422,5501,5341,2053,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388202509l/31178.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8440,23289,23289,750536,81,097496090X,9780974960910.0,James Joyce,1914.0,The Dead,The Dead,eng,4.09,11279,12015,481,232,651,2152,3785,5195,https://images.gr-assets.com/books/1456153413l/23289.jpg,https://images.gr-assets.com/books/1456153413s/23289.jpg\n8441,5607622,11512161,5778998,7,,,\"محمد المنسي قنديل, Mohamed Mansi Qandil\",2004.0,قمر على سمرقند,قمر على سمرقند,ara,3.9,5070,9977,1644,386,587,1976,3765,3263,https://images.gr-assets.com/books/1288464594l/5607622.jpg,https://images.gr-assets.com/books/1288464594s/5607622.jpg\n8443,7831742,7831742,10897116,29,1606840584,9781606840580.0,Bree Despain,2010.0,The Lost Saint,\"The Lost Saint (The Dark Divine, #2)\",eng,4.04,15328,15712,1006,297,835,3234,4991,6355,https://images.gr-assets.com/books/1327883674l/7831742.jpg,https://images.gr-assets.com/books/1327883674s/7831742.jpg\n8444,4946005,4946005,21899169,49,553807145,9780553807140.0,Dean Koontz,2009.0,Relentless,Relentless,en-US,3.71,12416,13662,1223,394,1016,4015,4940,3297,https://images.gr-assets.com/books/1320399029l/4946005.jpg,https://images.gr-assets.com/books/1320399029s/4946005.jpg\n8445,73906,73906,497654,46,038070613X,9780380706140.0,Stephen R. Lawhead,1987.0,Taliesin. Book I of the Pendragon Cycle,\"Taliesin (The Pendragon Cycle, #1)\",eng,3.98,12435,13534,513,206,714,2902,5017,4695,https://images.gr-assets.com/books/1170843303l/73906.jpg,https://images.gr-assets.com/books/1170843303s/73906.jpg\n8447,18323154,18323154,25843086,3,,,حسن كمال,2013.0,المرحوم,المرحوم,ara,3.51,8937,9020,1250,576,1071,2526,2854,1993,https://images.gr-assets.com/books/1376392753l/18323154.jpg,https://images.gr-assets.com/books/1376392753s/18323154.jpg\n8448,92956,92956,4092,33,812532597,9780812532590.0,Orson Scott Card,1992.0,The Memory of Earth,\"The Memory of Earth (Homecoming, #1)\",eng,3.56,13107,13657,497,382,1352,4570,4874,2479,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390186790l/92956.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8449,6751356,6751356,6947807,11,006170654X,9780061706550.0,Dolen Perkins-Valdez,2009.0,Wench,Wench,en-US,3.68,12250,13820,1935,197,1014,4313,5753,2543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348551327l/6751356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8450,3556419,3556419,3598551,25,451412702,9780451412710.0,Karen Chance,2009.0,Curse the Dawn,\"Curse the Dawn (Cassandra Palmer, #4)\",eng,4.16,18032,18785,491,188,585,3296,6766,7950,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204854l/3556419.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8451,26661,26661,27340,35,805423516,9780805423520.0,Beth Moore,2000.0,Praying God's Word: Breaking Free From Spiritual Strongholds,Praying God's Word: Breaking Free From Spiritual Strongholds,,4.45,9530,10391,168,70,175,1128,2648,6370,https://images.gr-assets.com/books/1266101982l/26661.jpg,https://images.gr-assets.com/books/1266101982s/26661.jpg\n8452,5946,5946,1155500,43,679772669,9780679772670.0,Michael Ondaatje,1987.0,In the Skin of a Lion,In the Skin of a Lion,,3.88,11289,12433,762,281,844,2885,4556,3867,https://images.gr-assets.com/books/1405864361l/5946.jpg,https://images.gr-assets.com/books/1405864361s/5946.jpg\n8453,22131009,22131009,41477631,10,,,Jodi Picoult,2014.0,Where There's Smoke,Where There's Smoke,en-US,3.56,7802,12720,1006,476,1408,4096,3990,2750,https://images.gr-assets.com/books/1401375667l/22131009.jpg,https://images.gr-assets.com/books/1401375667s/22131009.jpg\n8454,5559,5559,6529222,53,5559608475,9785559608470.0,\"Jack Welch, John A. Byrne, Mike Barnicle\",2001.0,Jack: Straight from the Gut,Jack: Straight from the Gut,eng,3.79,9781,10614,304,331,727,2670,3953,2933,https://images.gr-assets.com/books/1297699934l/5559.jpg,https://images.gr-assets.com/books/1297699934s/5559.jpg\n8455,30125,30125,19157021,16,60256575,9780060256580.0,Shel Silverstein,1981.0,The Missing Piece Meets the Big O,The Missing Piece Meets the Big O ,en-US,4.32,9056,10135,458,70,302,1496,2750,5517,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437926898l/30125._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8456,44559,44559,245284,85,60997028,9780060997020.0,\"Milan Kundera, Aaron Asher\",1969.0,Život je jinde,Life is Elsewhere,eng,3.95,8834,11199,544,98,482,2619,4647,3353,https://images.gr-assets.com/books/1327945876l/44559.jpg,https://images.gr-assets.com/books/1327945876s/44559.jpg\n8457,77477,77477,1121880,36,345468694,9780345468700.0,Anna Quindlen,2002.0,Blessings,Blessings,,3.56,12480,13787,1304,223,1139,5147,5205,2073,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390372380l/77477.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8458,12900491,12900491,18054770,20,373776985,9780373776990.0,Gena Showalter,2012.0,Wicked Nights,\"Wicked Nights (Angels of the Dark, #1)\",eng,4.11,17942,19576,1385,375,840,3308,6840,8213,https://images.gr-assets.com/books/1320067374l/12900491.jpg,https://images.gr-assets.com/books/1320067374s/12900491.jpg\n8459,11237412,11237412,16163583,9,,,Pittacus Lore,2011.0,Six's Legacy,\"Six's Legacy (Lorien Legacies: The Lost Files, #1)\",eng,4.08,13853,14442,551,126,501,3113,5112,5590,https://images.gr-assets.com/books/1363281063l/11237412.jpg,https://images.gr-assets.com/books/1363281063s/11237412.jpg\n8460,28760,28760,3230347,19,886774012,9780886774010.0,Mercedes Lackey,1990.0,Magic's Promise,Magic's Promise (Valdemar: Last Herald-Mage #2),eng,4.2,16547,17013,238,107,519,2978,5612,7797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923597l/28760.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8463,3698601,3698601,3742113,8,1416575642,9781416575640.0,Mark Bittman,2008.0,Food Matters: A Guide to Conscious Eating with More Than 75 Recipes,Food Matters: A Guide to Conscious Eating with More Than 75 Recipes,,3.97,10408,10658,689,122,417,2501,4261,3357,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348378773l/3698601.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8464,60471,60471,58832,53,340752475,9780340752470.0,Rosamunde Pilcher,1995.0,Coming Home,Coming Home,eng,4.27,11355,13172,714,86,285,1910,4607,6284,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347734548l/60471.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8465,133767,133767,577477,34,842332359,9780842332350.0,\"Tim LaHaye, Jerry B. Jenkins\",2004.0,Glorious Appearing: The End of Days,\"Glorious Appearing: The End of Days (Left Behind, #12)\",eng,3.96,10474,12340,387,434,903,2538,3363,5102,https://images.gr-assets.com/books/1402100211l/133767.jpg,https://images.gr-assets.com/books/1402100211s/133767.jpg\n8466,7824768,7824768,10871526,2,,9789953715100.0,خالد الباتلي,2010.0,ليتها تقرأ,ليتها تقرأ,ara,3.04,9807,9829,1427,1662,1921,2575,1731,1940,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1267871717l/7824768.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8467,16158527,16158527,21998943,23,399159312,9780399159310.0,John Sandford,2013.0,Silken Prey,\"Silken Prey (Lucas Davenport, #23)\",eng,4.16,10456,13640,1263,69,261,2149,6117,5044,https://images.gr-assets.com/books/1355077509l/16158527.jpg,https://images.gr-assets.com/books/1355077509s/16158527.jpg\n8469,251665,251665,687946,48,679759328,9780679759320.0,Anita Brookner,1984.0,Hotel du Lac,Hotel du Lac,eng,3.56,11066,12114,720,342,1276,3952,4304,2240,https://images.gr-assets.com/books/1346713260l/251665.jpg,https://images.gr-assets.com/books/1346713260s/251665.jpg\n8470,151926,151926,3082366,32,452276721,9780452276730.0,Pat Barker,1995.0,The Ghost Road,\"The Ghost Road (Regeneration, #3)\",en-US,4.11,11723,12609,425,182,500,2128,4681,5118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441850690l/151926._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8471,682793,682793,2630409,344,553211587,9780553211580.0,Mark Twain,1893.0,The Tragedy of Puddn'head Wilson,Pudd'nhead Wilson,eng,3.74,11014,13549,854,174,928,4107,5330,3010,https://images.gr-assets.com/books/1473261603l/682793.jpg,https://images.gr-assets.com/books/1473261603s/682793.jpg\n8472,208036,208036,2479557,201,1888009039,9781888009030.0,\"Aristotle, Joe Sachs\",-330.0,τὰ μετὰ τὰ φυσικά,Metaphysics,,4.0,10112,10645,129,181,607,2377,3299,4181,https://images.gr-assets.com/books/1355049704l/208036.jpg,https://images.gr-assets.com/books/1355049704s/208036.jpg\n8473,15793231,15793231,18670766,25,1250021529,9781250021530.0,Emily Murdoch,2013.0,If You Find Me,If You Find Me,eng,4.06,13683,15455,2662,210,616,2760,6377,5492,https://images.gr-assets.com/books/1369597694l/15793231.jpg,https://images.gr-assets.com/books/1369597694s/15793231.jpg\n8474,13065,13065,923380,26,044669570X,9780446695700.0,Carl Hiaasen,1991.0,Native Tongue,\"Native Tongue (Skink, #2)\",eng,3.94,10717,11782,503,89,399,2900,5140,3254,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442404083l/13065._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8475,128940,128940,919911,17,312147015,9780312147010.0,Sandra Dallas,1995.0,The Persian Pickle Club,The Persian Pickle Club,en-US,3.78,13732,14297,1919,158,782,4367,5798,3192,https://images.gr-assets.com/books/1311998766l/128940.jpg,https://images.gr-assets.com/books/1311998766s/128940.jpg\n8476,6763961,6763961,17289417,27,373210043,9780373210050.0,Rachel Vincent,2009.0,My Soul to Save,\"My Soul to Save (Soul Screamers, #2)\",en-US,3.98,18243,19280,1110,221,958,4664,6651,6786,https://images.gr-assets.com/books/1255722532l/6763961.jpg,https://images.gr-assets.com/books/1255722532s/6763961.jpg\n8477,351023,351023,341267,44,141319623,9780141319630.0,Jill Murphy,,The Worst Witch,\"The Worst Witch (Worst Witch, #1)\",,3.94,13003,13661,341,216,725,3580,4344,4796,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349047328l/351023.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8478,981463,981463,1566522,21,689717385,9780689717380.0,\"Cynthia Rylant, Stephen Gammell\",1985.0,The Relatives Came,The Relatives Came,eng,4.2,13099,13252,527,143,497,2312,3852,6448,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348676911l/981463.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8479,125502,125502,1309881,40,340682388,9780340682390.0,Siri Hustvedt,2002.0,What I Loved,What I Loved,en-GB,4.02,9974,11472,988,232,628,2037,4307,4268,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347721158l/125502.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8480,4212386,4212386,4259766,2,,9789791227450.0,Andrea Hirata,2008.0,Maryamah Karpov: Mimpi-mimpi Lintang,\"Maryamah Karpov: Mimpi-mimpi Lintang (Tetralogi Laskar Pelangi, #4)\",ind,3.6,8399,8407,640,231,986,2694,2484,2012,https://images.gr-assets.com/books/1271605823l/4212386.jpg,https://images.gr-assets.com/books/1271605823s/4212386.jpg\n8481,11133791,11133791,16057047,9,1416983309,9781416983310.0,Ellen Hopkins,2012.0,Tilt,Tilt,eng,4.2,12141,12729,986,202,487,2016,3894,6130,https://images.gr-assets.com/books/1346263814l/11133791.jpg,https://images.gr-assets.com/books/1346263814s/11133791.jpg\n8482,2747288,2747288,2772968,25,345491149,9780345491140.0,Todd J. McCaffrey,2008.0,Dragonheart (Dragonriders of Pern),\"Dragonheart (Pern, #21)\",,4.14,10996,11869,169,206,464,2260,3417,5522,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435343903l/2747288._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8484,7980,7980,1889,27,142401447,9780142401450.0,Brian Jacques,1996.0,The Pearls of Lutra,\"Pearls of Lutra (Redwall, #9)\",,3.99,15605,16306,174,150,668,4002,5916,5570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388786457l/7980.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8485,4224060,4224060,4271462,71,670020478,9780670020480.0,\"Ken Robinson, Lou Aronica\",2009.0,The Element: A New View of Human Capacity,The Element: How Finding Your Passion Changes Everything,eng,3.89,9074,11124,1216,230,779,2596,3932,3587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347351470l/4224060.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8486,24611425,24611425,44222605,22,670025771,9780670025770.0,Geraldine Brooks,2015.0,The Secret Chord,The Secret Chord,eng,3.55,9228,11156,2139,446,1120,3383,4221,1986,https://images.gr-assets.com/books/1428406962l/24611425.jpg,https://images.gr-assets.com/books/1428406962s/24611425.jpg\n8488,17443673,29698573,24321178,18,1482658143,9781482658150.0,Amy Harmon,2013.0,A Different Blue,A Different Blue,eng,4.22,14183,19902,2546,266,658,2776,6977,9225,https://images.gr-assets.com/books/1364846607l/17443673.jpg,https://images.gr-assets.com/books/1364846607s/17443673.jpg\n8489,2159007,2159007,2164522,13,1416544186,9781416544180.0,Chuck Klosterman,2008.0,Downtown Owl,Downtown Owl,eng,3.53,9666,10394,1052,259,1080,3611,3797,1647,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348123580l/2159007.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8490,797094,797094,783064,29,345459210,9780345459210.0,William C. Dietz,2003.0,The Flood,Halo: The Flood,en-US,3.69,9709,10516,432,379,1118,2901,3137,2981,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388298645l/797094.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8491,92846,92846,2990120,34,345397673,9780345397680.0,Terry Brooks,2001.0,Antrax,\"Antrax (Voyage of the Jerle Shannara, #2)\",eng,3.94,12947,13617,155,96,653,3482,5096,4290,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388210781l/92846.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8492,676,676,752463,10,375755195,9780375755190.0,Billy Collins,2001.0,Sailing Alone Around the Room: New and Selected Poems,Sailing Alone Around the Room: New and Selected Poems,eng,4.24,10999,11254,575,213,352,1423,3853,5413,https://images.gr-assets.com/books/1403183272l/676.jpg,https://images.gr-assets.com/books/1403183272s/676.jpg\n8493,12924253,12924253,18079694,21,62048546,9780062048550.0,Anna Carey,2012.0,Once,\"Once (Eve, #2)\",en-US,3.9,15315,16382,1161,292,1000,4020,5769,5301,https://images.gr-assets.com/books/1321127130l/12924253.jpg,https://images.gr-assets.com/books/1321127130s/12924253.jpg\n8494,17970255,17970255,25189752,14,,,Samantha Young,2013.0,Into the Deep,\"Into the Deep (Into the Deep, #1)\",eng,4.09,19288,19710,1615,267,703,3455,7770,7515,https://images.gr-assets.com/books/1373117694l/17970255.jpg,https://images.gr-assets.com/books/1373117694s/17970255.jpg\n8495,61909,61909,287351,31,671876465,9780671876460.0,Lois McMaster Bujold,1994.0,Mirror Dance,\"Mirror Dance (Vorkosigan Saga, #8)\",en-US,4.32,14391,15355,458,69,221,1825,5804,7436,https://images.gr-assets.com/books/1297831387l/61909.jpg,https://images.gr-assets.com/books/1297831387s/61909.jpg\n8496,384457,384457,1734360,23,312363044,9780312363050.0,\"Jennifer Crusie, Bob Mayer\",2007.0,Agnes and the Hitman,Agnes and the Hitman,eng,3.93,15848,16850,1476,399,1010,3856,5695,5890,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388277284l/384457.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8497,6493321,6493321,6684749,35,1596914521,9781596914520.0,\"Apostolos Doxiadis, Christos H. Papadimitriou, Alecos Papadatos, Annie Di Donna\",2009.0,Logicomix: An Epic Search for Truth,Logicomix: An epic search for truth,en-US,4.01,11004,12191,1211,134,522,2435,5125,3975,https://images.gr-assets.com/books/1312031956l/6493321.jpg,https://images.gr-assets.com/books/1312031956s/6493321.jpg\n8498,7992363,7992363,12476227,88,2246760011,9782246760020.0,Laurent Binet,2009.0,HHhH,HHhH,fre,4.07,7765,12259,1671,229,523,1968,4990,4549,https://images.gr-assets.com/books/1490084601l/7992363.jpg,https://images.gr-assets.com/books/1490084601s/7992363.jpg\n8499,22693222,22693222,42205784,21,62305190,9780062305190.0,Kate Andersen Brower,2015.0,The Residence: Inside the Private World of the White House,The Residence: Inside the Private World of the White House,,3.75,8841,11660,1583,194,770,3446,4627,2623,https://images.gr-assets.com/books/1406045992l/22693222.jpg,https://images.gr-assets.com/books/1406045992s/22693222.jpg\n8500,17455815,17455815,24346742,32,,,Jennifer L. Armentrout,2014.0,Stone Cold Touch,\"Stone Cold Touch (The Dark Elements, #2)\",eng,4.38,18262,20527,2624,113,369,2239,6696,11110,https://images.gr-assets.com/books/1394110942l/17455815.jpg,https://images.gr-assets.com/books/1394110942s/17455815.jpg\n8501,16127237,16127237,21422049,69,345540875,9780345540870.0,Lori Nelson Spielman,2013.0,The Life List,The Life List,eng,4.08,8301,12773,1900,171,538,2315,4820,4929,https://images.gr-assets.com/books/1354593069l/16127237.jpg,https://images.gr-assets.com/books/1354593069s/16127237.jpg\n8502,11864728,11864728,16821668,20,61797081,9780061797090.0,Kelley Armstrong,2013.0,The Rising,\"The Rising (Darkness Rising, #3)\",eng,4.13,17452,18781,1493,149,639,3592,6714,7687,https://images.gr-assets.com/books/1340062496l/11864728.jpg,https://images.gr-assets.com/books/1340062496s/11864728.jpg\n8503,80890,80890,3458174,233,679417370,9780679417380.0,\"Thomas Mann, John E. Woods, T.J. Reed\",1901.0,Buddenbrooks: Verfall einer Familie,Buddenbrooks: The Decline of a Family,eng,4.13,12049,15027,674,284,667,2380,5108,6588,https://images.gr-assets.com/books/1337128414l/80890.jpg,https://images.gr-assets.com/books/1337128414s/80890.jpg\n8504,231560,231560,622687,247,1406507881,9781406507880.0,Anton Chekhov,1897.0,Дядя Ваня,Uncle Vanya,eng,3.84,11418,13337,346,267,933,3393,4804,3940,https://images.gr-assets.com/books/1443337895l/231560.jpg,https://images.gr-assets.com/books/1443337895s/231560.jpg\n8505,10844125,10844125,15758551,34,031609739X,9780316097390.0,\"James Patterson, Richard DiLallo\",2011.0,The Christmas Wedding,The Christmas Wedding,eng,3.32,12736,14248,1835,972,2300,4791,3564,2621,https://images.gr-assets.com/books/1327889901l/10844125.jpg,https://images.gr-assets.com/books/1327889901s/10844125.jpg\n8506,18392,9783478,1177518,44,441010288,9780441010290.0,T.A. Barron,1996.0,The Lost Years of Merlin,\"The Lost Years (The Lost Years of Merlin, #1)\",eng,3.97,12146,14928,629,277,701,3391,5350,5209,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388263143l/18392.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8507,6080889,6080889,2830002,31,778325644,9780778325640.0,Maria V. Snyder,2009.0,Storm Glass,\"Storm Glass (Glass, #1)\",eng,3.95,18218,20205,1444,225,973,4726,7908,6373,https://images.gr-assets.com/books/1327899480l/6080889.jpg,https://images.gr-assets.com/books/1327899480s/6080889.jpg\n8508,11229,11229,1410491,59,014118616X,9780141186160.0,\"Iris Murdoch, Mary Kinzie\",1978.0,\"The Sea, the Sea\",\"The Sea, the Sea\",eng,3.9,10849,12164,786,297,792,2634,4517,3924,https://images.gr-assets.com/books/1302898449l/11229.jpg,https://images.gr-assets.com/books/1302898449s/11229.jpg\n8510,103815,103815,1685711,11,689857977,9780689857970.0,Margaret Peterson Haddix,2005.0,\"Among the Enemy (Shadow Children, #6)\",\"Among the Enemy (Shadow Children, #6)\",en-US,4.16,14836,15316,516,79,417,2949,5473,6398,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390277896l/103815.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8511,13502970,13502970,19051459,10,,9781479207120.0,Amy A. Bartol,2012.0,Incendiary,\"Incendiary (The Premonition, #4)\",en-US,4.43,12468,14489,781,139,312,1423,3897,8718,https://images.gr-assets.com/books/1352268218l/13502970.jpg,https://images.gr-assets.com/books/1352268218s/13502970.jpg\n8512,769658,769658,755717,55,,,L. Ron Hubbard,1982.0,Battlefield Earth: A Saga of the Year 3000,Battlefield Earth: A Saga of the Year 3000,eng,3.49,11671,13780,1011,1517,1602,3128,3741,3792,https://images.gr-assets.com/books/1349316024l/769658.jpg,https://images.gr-assets.com/books/1349316024s/769658.jpg\n8513,129565,129565,124787,9,670032085,9780670032080.0,Dave Ramsey,1992.0,Financial Peace Revisited,Financial Peace Revisited,,4.31,10914,11271,614,95,263,1528,3508,5877,https://images.gr-assets.com/books/1309201190l/129565.jpg,https://images.gr-assets.com/books/1309201190s/129565.jpg\n8514,43352,43352,2643785,61,671888587,9780671888590.0,Mary Higgins Clark,1993.0,I'll Be Seeing You,I'll Be Seeing You,eng,3.79,13804,14668,305,81,668,4907,5597,3415,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1522789846l/43352._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8516,12349,12349,265218,34,140280464,9780140280460.0,Ruth Ozeki,1998.0,My Year of Meats,My Year of Meats,eng,3.93,10297,11143,1254,134,496,2420,5070,3023,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388513889l/12349.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8517,60925,60925,59257,31,446696161,9780446696170.0,Octavia E. Butler,2005.0,Fledgling,Fledgling,en-US,3.9,11792,12942,1806,299,827,2876,4773,4167,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441479816l/60925._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8518,11665750,11665750,16610933,9,,,Kristen Ashley,2011.0,At Peace,\"At Peace (The 'Burg, #2)\",en-GB,4.49,23308,23659,1744,179,377,1787,6642,14674,https://images.gr-assets.com/books/1327913073l/11665750.jpg,https://images.gr-assets.com/books/1327913073s/11665750.jpg\n8519,401876,401876,1596107,47,385337388,9780385337380.0,\"Samuel Shem, John Updike\",1978.0,The House of God,The House of God,eng,3.95,8812,10364,790,226,621,2146,3842,3529,https://images.gr-assets.com/books/1320486672l/401876.jpg,https://images.gr-assets.com/books/1320486672s/401876.jpg\n8520,18045473,17779550,6357430,26,,,\"Ayşe Kulin, John W. Baker\",2002.0,Nefes Nefese,Last Train to Istanbul,eng,3.81,6870,11932,852,242,830,3006,4755,3099,https://images.gr-assets.com/books/1370617022l/18045473.jpg,https://images.gr-assets.com/books/1370617022s/18045473.jpg\n8521,22749539,22749539,42294915,21,439874025,9780439874020.0,Pam Muñoz Ryan,2015.0,Echo,Echo,eng,4.36,14864,15642,3526,208,359,1555,5013,8507,https://images.gr-assets.com/books/1460587774l/22749539.jpg,https://images.gr-assets.com/books/1460587774s/22749539.jpg\n8522,428862,428862,417864,35,039953346X,9780399533460.0,Keri Smith,2007.0,Wreck This Journal,Wreck This Journal,,4.19,10012,12794,797,298,581,1986,3407,6522,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348003539l/428862.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8523,70561,70561,2944012,102,60007761,9780060007770.0,\"Aleksandr Solzhenitsyn, Edward E. Ericson Jr.\",1973.0,\"Архипелаг ГУЛАГ, 1918-1956\",The Gulag Archipelago 1918-1956,eng,4.15,10693,12777,615,142,484,2123,4535,5493,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388293026l/70561.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8524,270032,270032,1154253,81,874778883,9780874778880.0,Heinrich Harrer,1952.0,Sieben Jahre in Tibet,Seven Years in Tibet,,4.05,11283,12917,685,124,439,2529,5378,4447,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251499l/270032.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8525,6080420,6080420,6257109,14,307270742,9780307270740.0,J. Courtney Sullivan,2009.0,Commencement,Commencement ,en-US,3.36,12653,13848,1724,542,1889,5253,4419,1745,https://images.gr-assets.com/books/1392259807l/6080420.jpg,https://images.gr-assets.com/books/1392259807s/6080420.jpg\n8526,592089,592089,578830,11,439395623,9780439395620.0,Suzanne Weyn,2004.0,The Bar Code Tattoo (Point Thriller),\"The Bar Code Tattoo (Bar Code, #1)\",eng,3.55,14037,14770,1284,849,1883,4098,4133,3807,https://images.gr-assets.com/books/1443904058l/592089.jpg,https://images.gr-assets.com/books/1443904058s/592089.jpg\n8527,8158992,8158992,13001065,27,1451649916,9781451649920.0,Kresley Cole,2013.0,MacRieve,\"MacRieve (Immortals After Dark, #14)\",eng,4.3,17488,20164,1527,147,503,2563,6796,10155,https://images.gr-assets.com/books/1360517706l/8158992.jpg,https://images.gr-assets.com/books/1360517706s/8158992.jpg\n8528,8105569,8105569,12899560,23,446546313,9780446546320.0,Larry Levin,2009.0,Oogy: The Dog Only a Family Could Love,Oogy: The Dog Only a Family Could Love,en-GB,4.04,10273,10938,1275,171,673,2167,3439,4488,https://images.gr-assets.com/books/1289446928l/8105569.jpg,https://images.gr-assets.com/books/1289446928s/8105569.jpg\n8529,36064,36064,35975,53,037572737X,9780375727380.0,James Ellroy,1995.0,American Tabloid,\"American Tabloid (Underworld USA, #1)\",eng,4.21,10193,11525,647,153,392,1674,3967,5339,https://images.gr-assets.com/books/1403181563l/36064.jpg,https://images.gr-assets.com/books/1403181563s/36064.jpg\n8530,7124101,7124101,11014959,21,1442408626,9781442408620.0,Thomas E. Sniegoski,2010.0,\"The Fallen and Leviathan (The Fallen, #1-2)\",\"The Fallen and Leviathan (The Fallen, #1-2)\",eng,3.74,13676,14076,867,685,1362,3381,4078,4570,https://images.gr-assets.com/books/1282266008l/7124101.jpg,https://images.gr-assets.com/books/1282266008s/7124101.jpg\n8531,20082,20082,555,47,345419391,9780345419390.0,Anne McCaffrey,1989.0,The Renegades of Pern,\"The Renegades of Pern (Pern, #10)\",,3.84,14387,16047,207,116,1005,4811,5578,4537,https://images.gr-assets.com/books/1283622741l/20082.jpg,https://images.gr-assets.com/books/1283622741s/20082.jpg\n8532,2530,2530,1517,110,156005204,9780156005200.0,\"José Saramago, Giovanni Pontiero\",1982.0,Memorial do Convento,Baltasar and Blimunda,eng,3.9,5321,11867,589,296,818,2542,4360,3851,https://images.gr-assets.com/books/1483229660l/2530.jpg,https://images.gr-assets.com/books/1483229660s/2530.jpg\n8533,153136,153136,147818,6,688044026,9780688044020.0,\"Rose Levy Beranbaum, Maria Guarnaschelli, Vincent Lee, Manuela Paul, Dean G. Bornstein\",1988.0,The Cake Bible,The Cake Bible,,4.2,9412,9413,135,182,363,1601,2538,4729,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348092602l/153136.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8534,23507745,23507745,43111795,30,1484709012,9781484709020.0,Robert  Beatty,2015.0,Serafina and the Black Cloak,\"Serafina and the Black Cloak (Serafina, #1)\",eng,3.9,12256,14112,2402,324,782,3365,5157,4484,https://images.gr-assets.com/books/1420158894l/23507745.jpg,https://images.gr-assets.com/books/1420158894s/23507745.jpg\n8535,599090,599090,123227,96,1857239407,9781857239410.0,\"Alan Dean Foster, George Lucas\",1976.0,Star Wars: From the Adventures of Luke Skywalker,A New Hope  (Star Wars: Novelizations #4),eng,4.07,10647,12547,413,162,581,2611,4017,5176,https://images.gr-assets.com/books/1408936775l/599090.jpg,https://images.gr-assets.com/books/1408936775s/599090.jpg\n8536,6021523,6021523,6196976,20,345498208,9780345498200.0,Nancy Thayer,2009.0,Summer House,Summer House,eng,3.91,11460,12150,551,159,530,3171,4711,3579,https://images.gr-assets.com/books/1320412131l/6021523.jpg,https://images.gr-assets.com/books/1320412131s/6021523.jpg\n8537,331695,331695,902805,30,1592400825,9781592400830.0,Sarah Turnbull,2003.0,Almost French: Love and a New Life in Paris,Almost French: Love and a New Life in Paris,,3.68,10668,11659,812,221,904,3744,4320,2470,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441921862l/331695._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8538,71458,71458,1167530,81,,,Amélie Nothomb,1999.0,Stupeur et tremblements,Stupeur et tremblements,fre,3.72,9448,14535,1091,385,1158,4014,5629,3349,https://images.gr-assets.com/books/1336069300l/71458.jpg,https://images.gr-assets.com/books/1336069300s/71458.jpg\n8539,43797,43797,6122437,8,345476867,9780345476870.0,Anne Rice,1998.0,Pandora / Vittorio the Vampire (New Tales of the Vampires),Pandora / Vittorio the Vampire (New Tales of the Vampires),,4.03,10977,11425,52,156,606,2581,3458,4624,https://images.gr-assets.com/books/1320491463l/43797.jpg,https://images.gr-assets.com/books/1320491463s/43797.jpg\n8540,9266769,9266769,14147620,54,61728934,9780061728940.0,Candace Bushnell,2011.0,Summer and the City,\"Summer and the City (The Carrie Diaries, #2)\",en-US,3.63,11366,12781,1046,315,1277,4123,4224,2842,https://images.gr-assets.com/books/1366212836l/9266769.jpg,https://images.gr-assets.com/books/1366212836s/9266769.jpg\n8541,142545,142545,301685,73,1410400964,9781410400960.0,Jeffery Deaver,2002.0,The Stone Monkey,\"The Stone Monkey (Lincoln Rhyme, #4)\",eng,3.94,11769,13676,450,99,476,3469,5682,3950,https://images.gr-assets.com/books/1336331827l/142545.jpg,https://images.gr-assets.com/books/1336331827s/142545.jpg\n8542,210243,210243,2635612,47,042520426X,9780425204270.0,J.D. Robb,2005.0,Origin in Death,\"Origin in Death (In Death, #21)\",eng,4.34,16775,18687,597,34,231,2411,6602,9409,https://images.gr-assets.com/books/1410761398l/210243.jpg,https://images.gr-assets.com/books/1410761398s/210243.jpg\n8543,148769,148769,143581,16,689849230,9780689849240.0,Angela Johnson,2003.0,The First Part Last,\"The First Part Last (Heaven, #2)\",eng,3.96,12689,13062,1481,245,827,2985,4178,4827,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388305354l/148769.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8544,7783191,7783191,10711242,32,307459659,9780307459660.0,\"Christopher Chabris, Daniel Simons\",2010.0,The Invisible Gorilla,The Invisible Gorilla: And Other Ways Our Intuitions Deceive Us,eng,3.88,10080,10826,586,227,710,2588,3946,3355,https://images.gr-assets.com/books/1320530790l/7783191.jpg,https://images.gr-assets.com/books/1320530790s/7783191.jpg\n8545,84842,84842,1744878,49,055358359X,9780553583600.0,Tami Hoag,2006.0,Prior Bad Acts,\"Prior Bad Acts (Kovac and Liska, #3)\",eng,4.07,11454,12674,463,84,306,2643,5210,4431,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922318l/84842.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8546,608906,608906,2083960,30,61131644,9780061131650.0,Erin Hunter,2007.0,Firestar's Quest,\"Firestar's Quest (Warriors Super Edition, #1)\",eng,4.32,14773,15680,514,233,496,2117,3969,8865,https://images.gr-assets.com/books/1363488985l/608906.jpg,https://images.gr-assets.com/books/1363488985s/608906.jpg\n8547,1833852,1833852,1833795,48,385521723,9780385521730.0,Steve Toltz,2008.0,A Fraction of the Whole,A Fraction of the Whole,,4.06,7646,10378,1552,210,605,1756,3624,4183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437371336l/1833852._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8548,13531024,13531024,19092692,20,763655996,9780763655990.0,Jon Klassen,2012.0,This is Not My Hat,This is Not My Hat,eng,4.23,14779,14941,2377,312,559,1986,4655,7429,https://images.gr-assets.com/books/1360096324l/13531024.jpg,https://images.gr-assets.com/books/1360096324s/13531024.jpg\n8549,4924862,4924862,4990463,19,761147489,9780761147480.0,Ramit Sethi,2009.0,I Will Teach You To Be Rich,I Will Teach You To Be Rich,eng,4.04,10209,11746,897,188,581,2126,4480,4371,https://images.gr-assets.com/books/1404581320l/4924862.jpg,https://images.gr-assets.com/books/1404581320s/4924862.jpg\n8550,23197346,23197346,45955392,23,446580856,9780446580850.0,Nelson DeMille,2015.0,Radiant Angel,\"Radiant Angel (John Corey, #7)\",eng,3.84,6590,10607,1234,184,582,2780,4246,2815,https://images.gr-assets.com/books/1427202729l/23197346.jpg,https://images.gr-assets.com/books/1427202729s/23197346.jpg\n8551,29103028,29103028,46189029,9,,,Jeff Wheeler,2016.0,The Queen's Poisoner,\"The Queen's Poisoner (Kingfountain, #1)\",en-GB,4.07,14126,14322,1039,293,501,2387,5807,5334,https://images.gr-assets.com/books/1455564888l/29103028.jpg,https://images.gr-assets.com/books/1455564888s/29103028.jpg\n8552,11436,11436,281025,27,84386874,9780842386880.0,\"Karen Kingsbury, Gary Smalley\",2004.0,Rejoice,\"Rejoice (Redemption, #4)\",eng,4.45,11013,11597,193,40,148,1233,3355,6821,https://images.gr-assets.com/books/1406505041l/11436.jpg,https://images.gr-assets.com/books/1406505041s/11436.jpg\n8553,8492907,8492907,13358451,51,385530803,9780385530800.0,Michio Kaku,2011.0,Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100 ,Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100,eng,3.98,10159,11605,919,212,532,2463,4461,3937,https://images.gr-assets.com/books/1320504811l/8492907.jpg,https://images.gr-assets.com/books/1320504811s/8492907.jpg\n8554,13597723,13597723,19187762,19,1423168232,9781423168230.0,Jennifer Lynn Barnes,2013.0,The Naturals,\"The Naturals (The Naturals, #1)\",eng,4.16,16704,18010,2671,209,595,2984,6452,7770,https://images.gr-assets.com/books/1374862751l/13597723.jpg,https://images.gr-assets.com/books/1374862751s/13597723.jpg\n8556,39798,39798,67171,77,99459051,9780099459060.0,\"Henning Mankell, Ebba Segerberg\",1997.0,Brandvägg,\"Firewall (Wallander, #8)\",eng,3.95,10138,12414,582,102,457,2790,5656,3409,https://images.gr-assets.com/books/1341858941l/39798.jpg,https://images.gr-assets.com/books/1341858941s/39798.jpg\n8557,2073686,2073686,2078934,15,081099478X,9780810994780.0,\"Michael Buckley, Peter Ferguson\",2008.0,Tales From the Hood,\"Tales From the Hood (The Sisters Grimm, #6)\",en-US,4.29,15020,15534,415,129,337,2284,5001,7783,https://images.gr-assets.com/books/1397791708l/2073686.jpg,https://images.gr-assets.com/books/1397791708s/2073686.jpg\n8558,844051,844051,246330,59,316611689,9780316611690.0,\"Charles Bernard Nordhoff, James Norman Hall\",1932.0,Mutiny on the Bounty,\"Mutiny on the Bounty (The Bounty Trilogy, #1)\",en-US,3.97,11746,12266,195,120,510,3085,4491,4060,https://images.gr-assets.com/books/1344266653l/844051.jpg,https://images.gr-assets.com/books/1344266653s/844051.jpg\n8559,1015311,1015311,2553131,18,1931514941,9781931514940.0,Ken Akamatsu,1999.0,ラブひな #1,\"Love Hina, Vol. 01\",eng,3.73,10926,11046,119,684,1135,2594,2664,3969,https://images.gr-assets.com/books/1324954179l/1015311.jpg,https://images.gr-assets.com/books/1324954179s/1015311.jpg\n8560,19049,19049,106848,16,075730334X,9780757303340.0,\"William Arntz, Betsy Chasse, Mark Vicente\",2005.0,What the Bleep Do We Know!?: Discovering the Endless Possibilities for Altering Your Everyday Reality,What the Bleep Do We Know!?: Discovering the Endless Possibilities for Altering Your Everyday Reality,,4.25,9759,10033,142,212,369,1387,2820,5245,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190527l/19049.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8561,15954540,15954540,15693991,18,1612187005,9781612187010.0,Jeff Wheeler,2011.0,The Wretched of Muirwood,\"The Wretched of Muirwood (Legends of Muirwood, #1)\",eng,3.97,6029,13068,868,205,598,2729,5329,4207,https://images.gr-assets.com/books/1356123105l/15954540.jpg,https://images.gr-assets.com/books/1356123105s/15954540.jpg\n8562,891812,891812,3062691,50,380753022,9780380753020.0,Johanna Lindsey,1990.0,Gentle Rogue,\"Gentle Rogue (Malory-Anderson Family, #3)\",en-US,4.23,15496,16709,566,137,496,2686,5482,7908,https://images.gr-assets.com/books/1333636257l/891812.jpg,https://images.gr-assets.com/books/1333636257s/891812.jpg\n8563,22886868,22886868,42456608,37,62429973,9780062429970.0,Terry Pratchett,2015.0,The Shepherd's Crown,\"The Shepherd's Crown (Discworld, #41; Tiffany Aching, #5)\",eng,4.34,9134,13799,2099,47,238,1644,4868,7002,https://images.gr-assets.com/books/1433600285l/22886868.jpg,https://images.gr-assets.com/books/1433600285s/22886868.jpg\n8564,54620,54620,2887963,216,192805622,9780192805620.0,\"Elizabeth Gaskell, Shirley Foster\",1848.0,Mary Barton,Mary Barton,eng,3.7,11742,13179,646,396,1087,3731,4788,3177,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1298427440l/54620.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8565,115476,115476,678519,373,486424529,9780486424520.0,Joseph Conrad,1904.0,Nostromo: a Tale of the Seaboard,Nostromo,eng,3.81,11478,12681,463,465,986,2933,4362,3935,https://images.gr-assets.com/books/1328865264l/115476.jpg,https://images.gr-assets.com/books/1328865264s/115476.jpg\n8566,13333093,13333093,18541011,20,758278438,9780758278430.0,Ellen Marie Wiseman,2012.0,The Plum Tree,The Plum Tree,eng,4.02,8479,10909,1194,151,516,2094,4352,3796,https://images.gr-assets.com/books/1339438508l/13333093.jpg,https://images.gr-assets.com/books/1339438508s/13333093.jpg\n8567,13621,13621,1782154,29,1421506289,9781421506290.0,\"Tsugumi Ohba, Takeshi Obata\",2005.0,デスノート #7 (Desu Nōto) Zero (零),\"Death Note, Vol. 7: Zero (Death Note, #7)\",,4.41,14480,14907,470,90,296,1603,4277,8641,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442172576l/13621._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8568,4345290,4345290,21574260,24,980003431,9780980003440.0,Michael J. Sullivan,2008.0,The Crown Conspiracy,\"The Crown Conspiracy (The Riyria Revelations, #1)\",eng,4.15,12198,13127,786,166,460,2063,4970,5468,https://images.gr-assets.com/books/1313141264l/4345290.jpg,https://images.gr-assets.com/books/1313141264s/4345290.jpg\n8569,15767586,15767586,21473047,17,1250029880,9781250029880.0,Sherrilyn Kenyon,2013.0,Styxx,\"Styxx (Dark-Hunter, #22)\",eng,4.58,14344,16857,2217,243,318,1024,3075,12197,https://images.gr-assets.com/books/1359269406l/15767586.jpg,https://images.gr-assets.com/books/1359269406s/15767586.jpg\n8570,59142,59142,1399014,479,019280474X,9780192804750.0,\"Honoré de Balzac, Sylvia Raphael, Christopher Prendergast\",1833.0,Eugénie Grandet,Eugénie Grandet,eng,3.79,11028,13280,445,238,945,3626,5028,3443,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388286601l/59142.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8571,19552,19552,20777,13,039458404X,9780394584040.0,\"Marcella Hazan, Karin Kretschmann\",1992.0,Essentials of Classic Italian Cooking,Essentials of Classic Italian Cooking,,4.26,10729,10878,143,217,344,1416,3286,5615,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439124302l/19552._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8572,82991,82991,80125,59,312340710,9780312340710.0,\"Arnaldur Indriðason, Bernard Scudder\",2001.0,Grafarþögn,Silence of the Grave (Inspector Erlendur #4),eng,3.94,8918,12145,930,150,459,2723,5478,3335,https://images.gr-assets.com/books/1316131788l/82991.jpg,https://images.gr-assets.com/books/1316131788s/82991.jpg\n8573,11387392,11387392,10965894,25,803737203,9780803737200.0,Jess Rothenberg,2012.0,The Catastrophic History of You and Me,The Catastrophic History of You and Me,en-US,4.04,12890,14184,1965,347,762,2601,4720,5754,https://images.gr-assets.com/books/1327879884l/11387392.jpg,https://images.gr-assets.com/books/1327879884s/11387392.jpg\n8574,7906105,7906105,11169441,19,805090053,9780805090060.0,April Henry,2010.0,\"Girl, Stolen\",\"Girl, Stolen (Girl, Stolen #1)\",eng,3.99,13108,13945,2006,212,713,3200,4724,5096,https://images.gr-assets.com/books/1316730155l/7906105.jpg,https://images.gr-assets.com/books/1316730155s/7906105.jpg\n8575,1211904,1211904,1200294,6,1590388003,9781590388010.0,Obert Skye,2007.0,\"Leven Thumps and the Eyes of the Want (Leven Thumps, #3)\",\"Leven Thumps and the Eyes of the Want (Leven Thumps, #3)\",eng,3.97,11192,11530,334,271,744,2526,3525,4464,https://images.gr-assets.com/books/1414559844l/1211904.jpg,https://images.gr-assets.com/books/1414559844s/1211904.jpg\n8576,25624089,25624089,45436495,12,,,\"Bill O'Reilly, Martin Dugard\",2015.0,Killing Reagan,Killing Reagan: The Violent Assault That Changed a Presidency,eng,4.08,9794,10919,1174,164,344,1903,4598,3910,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437224995l/25624089._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8577,8046680,8046680,12689293,10,1935618040,9781935618040.0,\"Leah Wilson, Jennifer Lynn Barnes, Mary Borsellino, Sarah Rees Brennan, Terri  Clark, Bree Despain, Adrienne Kress, Sarah Darer Littman, Cara Lockwood, Elizabeth M. Rees, Carrie Ryan, Ned Vizzini, Lili Wilkinson, Blythe Woolston\",2011.0,The girl who was on fire,The Girl Who Was on Fire: Your Favorite Authors on Suzanne Collins' Hunger Games Trilogy,en-US,4.28,10189,10659,514,213,415,1556,2425,6050,https://images.gr-assets.com/books/1327889490l/8046680.jpg,https://images.gr-assets.com/books/1327889490s/8046680.jpg\n8578,394683,394683,1672323,25,006444001X,9780064440010.0,\"Russell Hoban, Lillian Hoban\",1970.0,A Bargain for Frances,A Bargain for Frances,eng,4.25,13135,13323,162,146,399,2350,3549,6879,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347221170l/394683.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8579,15806231,15806231,21530499,33,399158820,9780399158830.0,J.D. Robb,2013.0,Calculated in Death,\"Calculated in Death (In Death, #36)\",eng,4.23,12807,16402,1199,108,380,2500,5985,7429,https://images.gr-assets.com/books/1346079575l/15806231.jpg,https://images.gr-assets.com/books/1346079575s/15806231.jpg\n8580,22929741,22929741,42499230,22,1555977073,9781555977080.0,Maggie Nelson,2015.0,The Argonauts,The Argonauts,eng,3.99,11925,13249,1556,406,807,2390,4513,5133,https://images.gr-assets.com/books/1410981835l/22929741.jpg,https://images.gr-assets.com/books/1410981835s/22929741.jpg\n8581,502295,502295,3352513,19,316005274,9780316005270.0,\"Jann S. Wenner, Corey Seymour\",2007.0,Gonzo: The Life of Hunter S. Thompson,Gonzo: The Life of Hunter S. Thompson,en-US,4.07,9915,10108,252,78,324,2117,3879,3710,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1430152207l/502295.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8582,25664459,25664459,45487238,22,374106681,9780374106680.0,Dominic Smith,2016.0,The Last Painting of Sara de Vos,The Last Painting of Sara de Vos,eng,3.83,12029,16421,1638,762,878,3461,6538,4782,https://images.gr-assets.com/books/1494524049l/25664459.jpg,https://images.gr-assets.com/books/1494524049s/25664459.jpg\n8583,29925715,29920081,50301699,13,,,Louise Jensen,2016.0,The Sister,The Sister,eng,3.77,11603,21116,1214,768,1492,5437,7470,5949,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1460794537l/29925715._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8584,10421530,10421530,15324210,19,758266944,9780758266940.0,Jennifer Estep,2011.0,Kiss of Frost,\"Kiss of Frost (Mythos Academy, #2)\",,4.05,18386,20025,1140,234,882,4118,7181,7610,https://images.gr-assets.com/books/1310420615l/10421530.jpg,https://images.gr-assets.com/books/1310420615s/10421530.jpg\n8585,920780,920780,905812,17,439050235,9780439050230.0,David Shannon,2002.0,Duck On A Bike,Duck On A Bike,eng,4.06,12461,12554,452,227,659,2615,3690,5363,https://images.gr-assets.com/books/1328870602l/920780.jpg,https://images.gr-assets.com/books/1328870602s/920780.jpg\n8586,10518423,10518423,15424477,23,1401341705,9781401341700.0,Margaret Leroy,2011.0,The Collaborator,The Soldier's Wife,en-US,3.88,11421,12306,1387,190,593,2938,5383,3202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442718986l/10518423._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8587,17667561,17667561,24662849,19,,,Jennifer A. Nielsen,2014.0,The Shadow Throne,\"The Shadow Throne (The Ascendance Trilogy, #3)\",eng,4.23,15731,16729,2277,112,534,2540,5724,7819,https://images.gr-assets.com/books/1395418016l/17667561.jpg,https://images.gr-assets.com/books/1395418016s/17667561.jpg\n8589,87264,87264,605176,192,850515025,9780850515020.0,Machado de Assis,1880.0,Memórias Póstumas de Brás Cubas,Memórias Póstumas de Brás Cubas,por,4.23,8306,10577,406,119,382,1618,3333,5125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348283742l/87264.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8590,7264206,7264206,8349215,37,61160881,9780061160880.0,Elizabeth  George,2010.0,This Body of Death,\"This Body of Death (Inspector Lynley, #16)\",en-US,4.01,12396,13700,1084,175,515,2785,5745,4480,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441601872l/7264206._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8591,773514,773514,340031,105,553262149,9780553262150.0,L.M. Montgomery,1925.0,Emily Climbs,\"Emily Climbs (Emily, #2)\",eng,4.14,15498,17033,420,162,532,3212,6029,7098,https://images.gr-assets.com/books/1403189071l/773514.jpg,https://images.gr-assets.com/books/1403189071s/773514.jpg\n8592,2152871,2152871,2158370,20,446500046,9780446500040.0,Jacqueline Carey,2001.0,Kushiel's Mercy,\"Kushiel's Mercy (Imriel's Trilogy, #3)\",en-US,4.3,13337,14452,471,79,315,2002,4820,7236,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347229019l/2152871.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8594,12040447,12040447,16910905,23,765332000,9780765332000.0,Orson Scott Card,2011.0,Shadows in Flight,\"Shadows in Flight (Ender's Shadow, #5)\",en-GB,3.76,11464,13221,1002,221,1033,3786,4867,3314,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1395376383l/12040447.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8595,20705702,20705702,40025563,14,62289241,9780062289250.0,Ilona Andrews,2014.0,Burn For Me,\"Burn for Me (Hidden Legacy, #1)\",eng,4.34,17853,22064,2607,478,482,2108,7023,11973,https://images.gr-assets.com/books/1396368355l/20705702.jpg,https://images.gr-assets.com/books/1396368355s/20705702.jpg\n8596,1689469,1689469,1686300,39,743281640,9780743281640.0,Robert Crais,2008.0,Chasing Darkness,\"Chasing Darkness (Elvis Cole, #12)\",en-US,4.18,11070,12786,587,50,197,2009,5629,4901,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432086419l/1689469._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8597,301023,301023,292090,10,810987880,9780810987880.0,Lauren Myracle,2004.0,\"ttyl (Internet Girls, #1)\",\"ttyl (Internet Girls, #1)\",en-US,3.46,14505,14790,1824,1006,2083,4412,3749,3540,https://images.gr-assets.com/books/1350771009l/301023.jpg,https://images.gr-assets.com/books/1350771009s/301023.jpg\n8598,34548,34548,691460,10,312291450,9780312291460.0,Bruce Campbell,2001.0,If Chins Could Kill: Confessions of a B Movie Actor,If Chins Could Kill: Confessions of a B-Movie Actor,,3.99,11853,12391,670,315,467,2483,4904,4222,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424560070l/34548.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8599,1898916,1898916,1900553,19,1421515636,9781421515630.0,\"Matsuri Hino, Tomo Kimura\",2006.0,ヴァンパイア騎士 4,\"Vampire Knight, Vol. 4 (Vampire Knight, #4)\",eng,4.31,13515,13718,205,175,477,1987,3365,7714,https://images.gr-assets.com/books/1318835401l/1898916.jpg,https://images.gr-assets.com/books/1318835401s/1898916.jpg\n8600,1821187,12991188,2046778,23,3499237709,9783499237710.0,\"Denis Johnson, Bettina Abarbanell\",2002.0,Train Dreams,Train Dreams,ger,3.89,4886,11357,1549,146,653,2709,4669,3180,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1188814001l/1821187._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8601,16248196,16248196,18183653,64,62219685,9780062219690.0,Rolf Dobelli,2011.0,Die Kunst des klaren Denkens,The Art of Thinking Clearly,,3.79,8367,11101,984,347,819,2735,4082,3118,https://images.gr-assets.com/books/1364848267l/16248196.jpg,https://images.gr-assets.com/books/1364848267s/16248196.jpg\n8602,1296415,1296415,1685291,24,152002650,9780152002660.0,Ellen Stoll Walsh,1989.0,Mouse Paint,Mouse Paint,eng,4.15,12839,13155,439,169,495,2617,3825,6049,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347765015l/1296415.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8604,901680,901680,886857,20,3822859710,9783822859710.0,Ulrich Bischoff,1990.0,Edvard Munch,Edvard Munch: 1863-1944 (Basic Art),,4.07,8308,8372,17,170,484,1616,2389,3713,https://images.gr-assets.com/books/1381324687l/901680.jpg,https://images.gr-assets.com/books/1381324687s/901680.jpg\n8605,48697,48697,47640,2,631227083,9780631227080.0,\"Charles Harrison, Paul Wood\",2002.0,\"Art in Theory, 1900-2000: An Anthology of Changing Ideas\",Art in Theory 1900 - 2000: An Anthology of Changing Ideas,en-US,3.94,7861,7866,47,313,538,1662,2138,3215,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388290665l/48697.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8606,9677870,9677870,14565750,25,811879542,9780811879540.0,\"Hervé Tullet, Christopher Franceschelli\",2010.0,Un livre,Press Here,en-US,4.44,15315,15459,1481,182,386,1506,3684,9701,https://images.gr-assets.com/books/1327934372l/9677870.jpg,https://images.gr-assets.com/books/1327934372s/9677870.jpg\n8607,828483,828483,4413351,23,340894334,9780340894330.0,Robert Muchamore,2005.0,The Killing (Cherub #4),\"The Killing (Cherub, #4)\",eng,4.12,11584,12355,306,85,423,2411,4417,5019,https://images.gr-assets.com/books/1409557087l/828483.jpg,https://images.gr-assets.com/books/1409557087s/828483.jpg\n8608,43929,43929,14597691,50,752849190,9780752849200.0,Harlan Coben,1999.0,Darkest Fear,Darkest Fear (Myron Bolitar #7),eng,4.03,10955,14064,634,73,303,2928,6603,4157,https://images.gr-assets.com/books/1315745037l/43929.jpg,https://images.gr-assets.com/books/1315745037s/43929.jpg\n8609,724371,724371,1026788,29,192723715,9780192723710.0,\"Alfred Tennyson, Charles Keeping\",1833.0,The Lady of Shalott,The Lady of Shalott,en-US,4.17,14848,15229,205,144,495,2806,4956,6828,https://images.gr-assets.com/books/1400891098l/724371.jpg,https://images.gr-assets.com/books/1400891098s/724371.jpg\n8610,95661,95661,2936728,18,689875460,9780689875460.0,Lisi Harrison,2005.0,\"Revenge of the Wannabes (The Clique, #3)\",\"Revenge of the Wannabes (The Clique, #3)\",,3.76,12935,13703,701,449,1344,3741,3664,4505,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348352372l/95661.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8611,80449,80449,13751223,203,019283617X,9780192836180.0,\"Friedrich Nietzsche, Douglas Smith\",1887.0,Zur Genealogie der Moral,On the Genealogy of Morals,,4.1,9214,11809,358,191,489,2114,4199,4816,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923909l/80449.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8612,133017,133017,128139,14,1563890526,9781563890530.0,\"Jamie Delano, John Ridgway, Alfredo Alcalá\",1988.0,\"John Constantine, Hellblazer: Volume 1: Original Sins\",Hellblazer: Original Sins,eng,4.1,12881,12992,248,160,420,2446,4840,5126,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347360733l/133017.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8614,25451852,25451852,45216688,4,,,Jonathan Renshaw,2015.0,Dawn of Wonder,\"Dawn of Wonder (The Wakening, #1)\",eng,4.36,12166,12358,1126,171,357,1224,3748,6858,https://images.gr-assets.com/books/1450681609l/25451852.jpg,https://images.gr-assets.com/books/1450681609s/25451852.jpg\n8615,13007638,13007638,16243683,36,749955910,9780749955920.0,J.D. Robb,2012.0,Celebrity in Death,\"Celebrity in Death (In Death, #34)\",eng,4.28,13182,17472,1112,85,301,2471,6392,8223,https://images.gr-assets.com/books/1328318908l/13007638.jpg,https://images.gr-assets.com/books/1328318908s/13007638.jpg\n8617,62032,62032,1482372,60,1585678449,9781585678440.0,\"Walter Moers, John Brownjohn\",1999.0,Die 13½ Leben des Käpt'n Blaubär ,\"The 13½ Lives of Captain Bluebear (Zamonia, #1)\",eng,4.2,10560,13552,1039,258,607,1923,4176,6588,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388176963l/62032.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8618,530793,530793,1037620,39,140132937,9780679730020.0,Antonia Fraser,1992.0,The Wives of Henry VIII,The Wives of Henry VIII,,4.15,13159,13991,350,143,338,2353,5656,5501,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347223113l/530793.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8619,10659536,10659536,15568720,10,61998168,9780061998160.0,Shel Silverstein,2011.0,Every Thing On It,Every Thing on It,,4.39,11547,11630,533,97,247,1433,3141,6712,https://images.gr-assets.com/books/1331416624l/10659536.jpg,https://images.gr-assets.com/books/1331416624s/10659536.jpg\n8620,489972,489972,2499762,50,394839730,9780394839740.0,Raymond Briggs,1978.0,The Snowman,The Snowman,eng,4.28,13496,13726,441,141,483,2141,3561,7400,https://images.gr-assets.com/books/1355497688l/489972.jpg,https://images.gr-assets.com/books/1355497688s/489972.jpg\n8622,13363270,13363270,18591913,8,,,Quinn Loftis,2012.0,Just One Drop,\"Just One Drop (The Grey Wolves, #3)\",en-GB,4.48,15606,15748,723,96,278,1537,3827,10010,https://images.gr-assets.com/books/1325565121l/13363270.jpg,https://images.gr-assets.com/books/1325565121s/13363270.jpg\n8623,61665,61665,1321045,30,345379187,9780345379180.0,\"Carl Sagan, Ann Druyan\",1997.0,Billions and Billions: Thoughts on Life and Death at the Brink of the Millennium,Billions & Billions: Thoughts on Life and Death at the Brink of the Millennium,,4.26,10690,11336,366,104,295,1612,3851,5474,https://images.gr-assets.com/books/1366573520l/61665.jpg,https://images.gr-assets.com/books/1366573520s/61665.jpg\n8624,6433836,6433836,6623336,27,399155988,9780399155990.0,John Sandford,2009.0,Rough Country,\"Rough Country (Virgil Flowers, #3)\",en-US,4.15,12594,14486,765,60,316,2468,6148,5494,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441137633l/6433836._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8625,46917,46917,864749,52,449911934,9780449911940.0,John Updike,1971.0,Rabbit Redux,Rabbit Redux (Rabbit Angstrom #2),eng,3.79,11051,11727,604,269,798,3052,4564,3044,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436228651l/46917._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8626,78408,78408,126288,19,60562250,9780060562250.0,Lemony Snicket,2002.0,Lemony Snicket: The Unauthorized Autobiography,Lemony Snicket: The Unauthorized Autobiography (A Series of Unfortunate Events companion),,3.72,14205,14992,571,372,1415,4415,4558,4232,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390625414l/78408.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8627,194618,25365667,364846,59,330344951,9780330344950.0,Winston Graham,1945.0,Ross Poldark,\"Ross Poldark (Poldark, #1)\",eng,4.11,5990,13540,1577,105,371,2362,5830,4872,https://images.gr-assets.com/books/1360785361l/194618.jpg,https://images.gr-assets.com/books/1360785361s/194618.jpg\n8628,25663888,25663888,45486802,39,1250067847,9781250067840.0,Gregg Hurwitz,2016.0,Orphan X,\"Orphan X (Orphan X, #1)\",eng,4.08,10320,14983,1971,188,539,2559,6349,5348,https://images.gr-assets.com/books/1435262799l/25663888.jpg,https://images.gr-assets.com/books/1435262799s/25663888.jpg\n8629,11757975,11757975,16708410,26,,,Bella Andre,2011.0,The Look of Love,\"The Look of Love (San Francisco Sullivans, #1; The Sullivans, #1)\",eng,3.87,18776,19622,1285,506,1387,4543,6959,6227,https://images.gr-assets.com/books/1398783845l/11757975.jpg,https://images.gr-assets.com/books/1398783845s/11757975.jpg\n8630,7940591,7940591,11366182,19,1587672286,9781587672290.0,Stephen King,2010.0,Blockade Billy,Blockade Billy,eng,3.4,12179,14450,1355,377,1855,5902,4212,2104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347704033l/7940591.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8631,31271,31271,3351575,55,752858637,9780752858630.0,Robert Ludlum,1973.0,The Matlock Paper,The Matlock Paper,eng,3.86,11118,11491,75,92,521,3305,4595,2978,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348897098l/31271.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8632,736376,736376,2270861,16,1565125525,9781565125520.0,Roland Merullo,2007.0,Breakfast with Buddha,Breakfast with Buddha,en-US,3.82,8634,11499,1814,171,774,2923,4692,2939,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348360531l/736376.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8633,29022,29022,372997,232,140449213,9780140449210.0,\"Suetonius, Michael Grant, Robert Graves\",119.0,De vita Caesarum ,The Twelve Caesars,eng,4.05,11283,12958,458,149,496,2701,4867,4745,https://images.gr-assets.com/books/1347187766l/29022.jpg,https://images.gr-assets.com/books/1347187766s/29022.jpg\n8634,18039755,18039755,22012689,10,1627761314,9781627761310.0,\"Ibraheem Abbas, إبراهيم عباس, Yasser Bahjatt\",2013.0,حوجن,حوجن [Ḥawjan],ara,3.75,10203,10577,1590,945,1121,1951,2206,4354,https://images.gr-assets.com/books/1370371939l/18039755.jpg,https://images.gr-assets.com/books/1370371939s/18039755.jpg\n8635,360562,360562,2918547,14,140294295,9780140294290.0,Bernard Cornwell,1988.0,Sharpe's Rifles,\"Sharpe's Rifles (Sharpe, #6)\",eng,4.21,10342,11557,303,26,181,1805,4857,4688,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388234787l/360562.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8636,192214,192214,2799032,26,345479335,9780345479330.0,R.A. Salvatore,1999.0,\"Vector Prime (Star Wars: The New Jedi Order, #1)\",\"Vector Prime (Star Wars: The New Jedi Order, #1)\",eng,3.79,10769,12125,336,408,891,3117,4131,3578,https://images.gr-assets.com/books/1412181316l/192214.jpg,https://images.gr-assets.com/books/1412181316s/192214.jpg\n8637,24767,24767,944240,31,60519568,9780060519570.0,Scott Westerfeld,2005.0,\"Touching Darkness (Midnighters, #2)\",\"Touching Darkness (Midnighters, #2)\",en-US,3.89,16168,17422,784,164,912,4709,6581,5056,https://images.gr-assets.com/books/1315537376l/24767.jpg,https://images.gr-assets.com/books/1315537376s/24767.jpg\n8638,3545387,3545387,3587409,25,1416593381,9781416593390.0,Lisa Lutz,2009.0,Revenge of the Spellmans,\"Revenge of the Spellmans (The Spellmans, #3)\",en-US,4.14,14258,15174,954,176,359,2481,6382,5776,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440209570l/3545387._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8640,93575,93575,341789,72,61043494,9780061043500.0,Dorothy L. Sayers,1935.0,Gaudy Night,\"Gaudy Night (Lord Peter Wimsey, #12)\",eng,4.26,14750,16378,1203,166,526,2267,5352,8067,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197565l/93575.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8641,17158532,17158532,23581990,14,174348495X,9781743484950.0,C.S. Pacat,2016.0,Kings Rising,\"Kings Rising (Captive Prince, #3)\",eng,4.5,14210,17960,3003,140,340,1429,4555,11496,https://images.gr-assets.com/books/1454160767l/17158532.jpg,https://images.gr-assets.com/books/1454160767s/17158532.jpg\n8642,18129852,18129852,25465053,17,,,\"Penelope Douglas, Abby Craden, Nelson Hobbs\",2014.0,Rival,\"Rival (Fall Away, #2)\",eng,4.16,21940,22806,1765,272,848,3671,8099,9916,https://images.gr-assets.com/books/1394971101l/18129852.jpg,https://images.gr-assets.com/books/1394971101s/18129852.jpg\n8643,287861,287861,3981652,51,60082097,9780060082090.0,Philip Reeve,2001.0,Mortal Engines,\"Mortal Engines (The Hungry City Chronicles, #1)\",eng,3.98,12868,14520,1127,242,760,2971,5583,4964,https://images.gr-assets.com/books/1352173057l/287861.jpg,https://images.gr-assets.com/books/1352173057s/287861.jpg\n8644,10399742,10399742,15303665,34,1846058317,9781846058320.0,\"James Patterson, Mark Pearson\",2011.0,Private London,Private London (Private #4),eng,3.75,9922,12899,891,209,944,3825,4836,3085,https://images.gr-assets.com/books/1328415596l/10399742.jpg,https://images.gr-assets.com/books/1328415596s/10399742.jpg\n8645,6659254,6659254,6853921,13,451463072,9780451463070.0,Faith Hunter,2010.0,Blood Cross,\"Blood Cross (Jane Yellowrock, #2)\",eng,4.13,16307,18017,626,141,514,3225,7051,7086,https://images.gr-assets.com/books/1255066735l/6659254.jpg,https://images.gr-assets.com/books/1255066735s/6659254.jpg\n8646,204479,204479,197869,22,,9780984857400.0,Gemma Halliday,2006.0,Spying in High Heels,\"Spying in High Heels (High Heels, #1)\",eng,3.67,11034,14015,1247,354,1226,4302,4906,3227,https://images.gr-assets.com/books/1327885046l/204479.jpg,https://images.gr-assets.com/books/1327885046s/204479.jpg\n8647,776159,776159,1939840,129,394758250,9780394758250.0,Raymond Chandler,1943.0,The Lady in the Lake,\"The Lady in the Lake (Philip Marlowe, #4)\",eng,4.07,11613,13285,702,35,301,2638,6098,4213,https://images.gr-assets.com/books/1501530591l/776159.jpg,https://images.gr-assets.com/books/1501530591s/776159.jpg\n8648,232958,232958,225642,10,439673631,9780439673630.0,\"Bernadette Rossetti-Shustak, Caroline Jayne Church\",2005.0,I Love You Through And Through,I Love You Through and Through,,4.39,10808,10865,290,125,289,1320,2628,6503,https://images.gr-assets.com/books/1328866587l/232958.jpg,https://images.gr-assets.com/books/1328866587s/232958.jpg\n8651,10084,10084,1003667,20,886778441,9780886778450.0,Tad Williams,1998.0,River of Blue Fire,\"River of Blue Fire (Otherland, #2)\",eng,4.0,12015,12765,237,130,625,2643,5053,4314,https://images.gr-assets.com/books/1309992269l/10084.jpg,https://images.gr-assets.com/books/1309992269s/10084.jpg\n8652,295169,295169,2919537,54,786814179,9780786814180.0,\"William Nicholson, Peter Sís\",2000.0,The Wind Singer,\"The Wind Singer (Wind on Fire, #1)\",eng,3.84,12654,14508,472,341,957,3647,5351,4212,https://images.gr-assets.com/books/1293635554l/295169.jpg,https://images.gr-assets.com/books/1293635554s/295169.jpg\n8653,93436,93436,1535663,52,156031612,9780156031620.0,Scarlett Thomas,2006.0,The End of Mr. Y.,The End of Mr. Y,en-US,3.79,7920,12726,1420,486,1144,2795,4407,3894,https://images.gr-assets.com/books/1389137862l/93436.jpg,https://images.gr-assets.com/books/1389137862s/93436.jpg\n8654,587638,587638,2636942,36,345501748,9780345501740.0,\"Michael Chabon, Gary Gianni\",2007.0,Gentlemen of the Road,Gentlemen of the Road,eng,3.42,10440,11472,1577,362,1416,4262,3900,1532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388591921l/587638.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8655,9476510,9476510,14361764,12,316043001,9780316043010.0,\"James Andrew Miller, Tom Shales\",2011.0,Those Guys Have All the Fun: Inside the World of ESPN,Those Guys Have All the Fun: Inside the World of ESPN,en-US,3.69,9413,10193,573,313,833,2990,3593,2464,https://images.gr-assets.com/books/1344271458l/9476510.jpg,https://images.gr-assets.com/books/1344271458s/9476510.jpg\n8656,129984,129984,855961,48,743484258,9780743484250.0,Daniel Wallace,1998.0,Big Fish: A Novel of Mythic Proportions,Big Fish,en-GB,3.64,11526,13645,1301,292,1276,4315,4936,2826,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348134701l/129984.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8657,17936925,17936925,25147432,27,425266869,9780425266860.0,Tammara Webber,2014.0,Breakable,\"Breakable (Contours of the Heart, #2)\",eng,4.06,17319,19321,2081,240,887,3777,7005,7412,https://images.gr-assets.com/books/1384787127l/17936925.jpg,https://images.gr-assets.com/books/1384787127s/17936925.jpg\n8658,15818333,15818333,18334314,24,62209841,9780062209850.0,Lisa O'Donnell,2012.0,The Death of Bees,The Death of Bees,eng,3.81,11530,13043,2129,302,708,3173,5824,3036,https://images.gr-assets.com/books/1358353202l/15818333.jpg,https://images.gr-assets.com/books/1358353202s/15818333.jpg\n8659,531421,531421,519013,26,076790284X,9780767902850.0,Frances Mayes,1999.0,Bella Tuscany,Bella Tuscany,,3.74,10773,11189,388,197,791,3456,4000,2745,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427782211l/531421.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8660,9526658,9526658,14412693,18,451236718,9780451236720.0,Rachel Caine,2012.0,Black Dawn,\"Black Dawn (The Morganville Vampires, #12)\",eng,4.26,14778,16717,994,106,448,2622,5311,8230,https://images.gr-assets.com/books/1318112062l/9526658.jpg,https://images.gr-assets.com/books/1318112062s/9526658.jpg\n8662,60932,60932,249012,24,446610380,9780446610380.0,Octavia E. Butler,1998.0,Parable of the Talents,\"Parable of the Talents (Earthseed, #2)\",eng,4.21,10500,12335,897,86,359,1859,4628,5403,https://images.gr-assets.com/books/1170553715l/60932.jpg,https://images.gr-assets.com/books/1170553715s/60932.jpg\n8663,16164271,16164271,22007627,13,1613778538,9781613778530.0,\"Joe Hill, Gabriel Rodríguez\",2014.0,\"Locke & Key, Vol. 6: Alpha & Omega\",\"Locke & Key, Vol. 6: Alpha & Omega\",eng,4.5,14363,15068,1463,161,273,1153,3746,9735,https://images.gr-assets.com/books/1391443566l/16164271.jpg,https://images.gr-assets.com/books/1391443566s/16164271.jpg\n8664,56674,56674,55232,82,,9780743265230.0,J.G. Ballard,1984.0,Empire of the Sun,\"Empire of the Sun (Empire of the Sun, #1)\",,3.98,11185,12966,637,100,501,2803,5674,3888,https://images.gr-assets.com/books/1338519188l/56674.jpg,https://images.gr-assets.com/books/1338519188s/56674.jpg\n8665,1034605,1034605,1020930,2,307020754,,\"Patricia M. Scarry, Richard Scarry\",1961.0,\"The Country Mouse and the City Mouse, The Dog and His Bone, The Fox and the Crow (A Little Golden Book)\",The Country Mouse and the City Mouse; The Fox and the Crow; The Dog and His Bone,,4.28,11493,11493,19,104,312,2095,2748,6234,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425356980l/1034605.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8666,28239,28239,1832876,28,618446877,9780618446870.0,Paul Theroux,2002.0,Dark Star Safari ,Dark Star Safari: Overland from Cairo to Cape Town,en-US,3.96,9662,10297,742,224,546,2020,4175,3332,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441636831l/28239._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8667,653711,653711,1173956,30,345327861,9780345327860.0,Anne McCaffrey,1982.0,Crystal Singer,\"Crystal Singer (Crystal Singer, #1)\",en-US,4.07,14864,16050,360,134,672,3450,5470,6324,https://images.gr-assets.com/books/1403186691l/653711.jpg,https://images.gr-assets.com/books/1403186691s/653711.jpg\n8668,13546173,13546173,19111271,12,,,Sarah J. Maas,2012.0,The Assassin and the Underworld,\"The Assassin and the Underworld (Throne of Glass, #0.4)\",eng,4.37,17008,17850,1014,101,323,2181,5512,9733,https://images.gr-assets.com/books/1336062984l/13546173.jpg,https://images.gr-assets.com/books/1336062984s/13546173.jpg\n8669,2865944,2865944,2330655,10,60283246,9780060283250.0,\"Laura Joffe Numeroff, Felicia Bond\",2008.0,If You Give a Cat a Cupcake,If You Give a Cat a Cupcake,,4.2,11948,12061,394,139,473,2283,3156,6010,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347928619l/2865944.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8670,11099729,11099729,15371735,24,034551128X,9780345511290.0,James Luceno,2012.0,Star Wars: Darth Plagueis,Darth Plagueis,eng,4.07,9052,12000,1257,119,478,2319,4586,4498,https://images.gr-assets.com/books/1405546262l/11099729.jpg,https://images.gr-assets.com/books/1405546262s/11099729.jpg\n8671,26072609,26072609,46009964,14,006245496X,9780062454970.0,\"Anderson Cooper, Gloria Vanderbilt\",2016.0,\"The Rainbow Comes and Goes: A Mother and Son On Life, Love, and Loss\",\"The Rainbow Comes and Goes: A Mother and Son On Life, Love, and Loss\",eng,3.79,10758,14694,1659,791,891,3306,5265,4441,https://images.gr-assets.com/books/1456162664l/26072609.jpg,https://images.gr-assets.com/books/1456162664s/26072609.jpg\n8672,23208397,32940838,42751755,21,316261246,9780316261240.0,Ben H. Winters,2016.0,Underground Airlines,Underground Airlines,eng,3.88,9728,12434,1952,113,560,3006,5774,2981,https://images.gr-assets.com/books/1443732702l/23208397.jpg,https://images.gr-assets.com/books/1443732702s/23208397.jpg\n8673,644655,644655,2327400,40,312359667,9780312359670.0,Ann Cleeves,2006.0,Raven Black,\"Raven Black (Shetland Island, #1)\",en-US,3.85,10617,14283,1405,190,682,3596,6447,3368,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437937604l/644655._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8674,12019355,12019355,15448653,17,1250002826,9781250002820.0,Sherrilyn Kenyon,2012.0,Infamous,\"Infamous (Chronicles of Nick, #3)\",,4.36,8185,16373,937,81,279,1938,5436,8639,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442858923l/12019355._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8675,792938,792938,1240854,16,440220424,9780440220430.0,\"Sarah L. Delany, A. Elizabeth Delany, Amy Hill Hearth\",1993.0,Having Our Say: The Delany Sisters' First 100 Years,Having Our Say: The Delany Sisters' First 100 Years,en-US,4.14,11668,12056,491,170,388,2096,4360,5042,https://images.gr-assets.com/books/1403192701l/792938.jpg,https://images.gr-assets.com/books/1403192701s/792938.jpg\n8676,1862313,1862313,2886449,28,374299250,9780374299260.0,Richard Price,2008.0,Lush Life,Lush Life,eng,3.69,9478,10288,1553,203,725,3023,4439,1898,https://images.gr-assets.com/books/1316137153l/1862313.jpg,https://images.gr-assets.com/books/1316137153s/1862313.jpg\n8677,152662,152662,1147214,22,671038540,9780671038540.0,Peter Hedges,1991.0,What's Eating Gilbert Grape,What's Eating Gilbert Grape,eng,4.1,11352,11977,403,143,458,2307,4274,4795,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348880019l/152662.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8678,15723286,15723286,21398040,26,,,Gail Carriger,2013.0,Curtsies & Conspiracies,\"Curtsies & Conspiracies (Finishing School, #2)\",eng,4.11,15078,18011,2041,91,355,3220,8081,6264,https://images.gr-assets.com/books/1359660588l/15723286.jpg,https://images.gr-assets.com/books/1359660588s/15723286.jpg\n8681,16256,16256,2569715,34,055299877X,9780552998770.0,Armistead Maupin,1980.0,More Tales of the City,\"More Tales of the City (Tales of the City, #2)\",en-GB,4.18,9799,11575,439,19,186,1953,4929,4488,https://images.gr-assets.com/books/1347443502l/16256.jpg,https://images.gr-assets.com/books/1347443502s/16256.jpg\n8682,110871,110871,1656117,108,140449442,9780140449440.0,\"Émile Zola, Robin Buss\",1867.0,Thérèse Raquin,Thérèse Raquin,eng,3.71,10734,14432,1079,436,1231,3933,5378,3454,https://images.gr-assets.com/books/1282318692l/110871.jpg,https://images.gr-assets.com/books/1282318692s/110871.jpg\n8684,17557143,33393313,24989372,13,,,J.S. Scott,2013.0,The Billionaire's Obsession ~ Simon,\"The Billionaire's Obsession ~ Simon (The Billionaire's Obsession, #1)\",eng,4.0,7492,16989,856,452,935,3307,5796,6499,https://images.gr-assets.com/books/1362454880l/17557143.jpg,https://images.gr-assets.com/books/1362454880s/17557143.jpg\n8685,28965131,28965131,49193186,30,125011117X,9781250111170.0,Sarah Pinborough,2017.0,Behind Her Eyes,Behind Her Eyes,eng,3.77,17944,21613,5003,658,1876,5082,8228,5769,https://images.gr-assets.com/books/1485279813l/28965131.jpg,https://images.gr-assets.com/books/1485279813s/28965131.jpg\n8686,129798,129798,954927,341,486437507,9780486437510.0,\"Robert W. Chambers, E.F. Bleiler\",1895.0,The King in Yellow,The King in Yellow and Other Horror Stories,eng,3.57,5719,11971,1148,236,1170,4269,4170,2126,https://images.gr-assets.com/books/1416873291l/129798.jpg,https://images.gr-assets.com/books/1416873291s/129798.jpg\n8687,77427,77427,1200332,63,393307611,9780393307610.0,Patrick O'Brian,1973.0,H.M.S. Surprise ,H.M.S. Surprise,eng,4.42,10513,12308,489,19,107,1137,4490,6555,https://images.gr-assets.com/books/1453820127l/77427.jpg,https://images.gr-assets.com/books/1453820127s/77427.jpg\n8688,665,665,443285,53,451163931,9780451163940.0,\"Ayn Rand, Nathaniel Branden\",1961.0,The Virtue of Selfishness: A New Concept of Egoism,The Virtue of Selfishness: A New Concept of Egoism,eng,3.47,10198,10682,433,1337,1071,2463,2837,2974,https://images.gr-assets.com/books/1425001997l/665.jpg,https://images.gr-assets.com/books/1425001997s/665.jpg\n8689,2449962,2449962,4084010,47,778325504,9780778325500.0,Debbie Macomber,2008.0,Twenty Wishes,\"Twenty Wishes (Blossom Street, #5)\",eng,4.16,12324,13481,1099,88,393,2471,4886,5643,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388218162l/2449962.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8690,3479967,3479967,3521296,22,670020575,9780670020580.0,Joseph Boyden,2008.0,Through Black Spruce,Through Black Spruce,en-US,4.11,10305,11071,788,125,368,1769,4660,4149,https://images.gr-assets.com/books/1480136683l/3479967.jpg,https://images.gr-assets.com/books/1480136683s/3479967.jpg\n8691,6928893,6928893,10475576,18,312571259,9780312571250.0,Susan  Wilson,2010.0,One Good Dog,One Good Dog,en-US,4.07,10379,11712,1576,137,387,2160,4843,4185,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442535715l/6928893._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8692,15050,15050,922184,40,802135781,9780802135780.0,Jeanette Winterson,1989.0,Sexing the Cherry,Sexing the Cherry,eng,3.83,10450,12017,724,257,850,3024,4455,3431,https://images.gr-assets.com/books/1328824090l/15050.jpg,https://images.gr-assets.com/books/1328824090s/15050.jpg\n8693,6674372,6674372,6869461,25,312576986,9780312576980.0,Randy Susan Meyers,2009.0,The Murderer's Daughters,The Murderer's Daughters,en-US,3.68,10567,12410,1240,179,903,4066,4832,2430,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437274492l/6674372._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8694,1158706,1158706,2501504,42,399154701,9780399154710.0,J.D. Robb,2008.0,Strangers in Death ,\"Strangers in Death (In Death, #26)\",eng,4.29,15651,17476,619,47,229,2573,6463,8164,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436905661l/1158706._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8695,10929432,10929432,15846509,15,1423157311,9781423157310.0,Victoria Schwab,2013.0,The Archived,\"The Archived (The Archived, #1)\",eng,4.02,16580,18048,3455,370,810,3282,7157,6429,https://images.gr-assets.com/books/1338729878l/10929432.jpg,https://images.gr-assets.com/books/1338729878s/10929432.jpg\n8696,251446,251446,14477,19,802130917,9780802130910.0,David Mamet,1983.0,Glengarry Glen Ross,Glengarry Glen Ross,eng,3.95,11636,11958,311,349,801,2290,4231,4287,https://images.gr-assets.com/books/1396078804l/251446.jpg,https://images.gr-assets.com/books/1396078804s/251446.jpg\n8697,10506,10506,1792697,114,156030373,9780156030370.0,Umberto Eco,1994.0,L'isola del giorno prima,The Island of the Day Before,,3.43,9723,11448,515,519,1529,3834,3592,1974,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435151040l/10506._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8698,25332115,25332115,45067930,8,1250077699,9781250077690.0,Ruth Wariner,2016.0,The Sound of Gravel,The Sound of Gravel,eng,4.15,12045,14113,2021,241,429,1996,5738,5709,https://images.gr-assets.com/books/1436200674l/25332115.jpg,https://images.gr-assets.com/books/1436200674s/25332115.jpg\n8699,194870,194870,2286967,11,072324734X,9780723247340.0,Beatrix Potter,1982.0,The Complete Adventures of Peter Rabbit,The Complete Adventures of Peter Rabbit,eng,4.46,13271,13387,48,84,261,1563,2977,8502,https://images.gr-assets.com/books/1309201736l/194870.jpg,https://images.gr-assets.com/books/1309201736s/194870.jpg\n8700,1275105,1275105,3260020,59,606300538,9780606300540.0,Charles M. Schulz,1965.0,A Charlie Brown Christmas ,A Charlie Brown Christmas,,4.48,11639,13889,241,226,295,1401,2629,9338,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1182437635l/1275105._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8702,3115070,3115070,3146356,27,425223256,9780425223250.0,Nalini Singh,2008.0,Hostage to Pleasure,\"Hostage to Pleasure (Psy-Changeling, #5)\",en-US,4.22,19705,21672,993,89,475,3419,8180,9509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400085485l/3115070.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8703,385255,385255,909535,13,743254430,9780743254430.0,Adrian Nicole LeBlanc,2003.0,\"Random Family: Love, Drugs, Trouble, and Coming of Age in the Bronx\",\"Random Family: Love, Drugs, Trouble, and Coming of Age in the Bronx\",en-US,4.23,9053,9581,1261,124,329,1314,3235,4579,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442198039l/385255._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8704,42641,42641,1491227,411,735102864,9780735102870.0,\"Leo Tolstoy, Louise Maude, Aylmer Maude\",1899.0,Воскресение,Resurrection,eng,4.1,9482,11905,677,146,543,2146,4268,4802,https://images.gr-assets.com/books/1335874776l/42641.jpg,https://images.gr-assets.com/books/1335874776s/42641.jpg\n8705,8643407,8643407,13514467,16,1439134340,9781439134340.0,Larry Correia,2011.0,Hard Magic,\"Hard Magic (Grimnoir Chronicles, #1)\",eng,4.13,10808,11947,985,228,425,1801,4582,4911,https://images.gr-assets.com/books/1327951330l/8643407.jpg,https://images.gr-assets.com/books/1327951330s/8643407.jpg\n8706,6878614,6878614,7096036,27,1847376177,9781847376180.0,John Sandford,2010.0,Storm Prey,\"Storm Prey (Lucas Davenport, #20)\",,4.15,11566,13962,799,63,297,2423,5948,5231,https://images.gr-assets.com/books/1272913373l/6878614.jpg,https://images.gr-assets.com/books/1272913373s/6878614.jpg\n8707,214333,214333,503785,27,310240506,9780310240500.0,Lee Strobel,2004.0,The Case for a Creator: A Journalist Investigates Scientific Evidence That Points Toward God,The Case for a Creator: A Journalist Investigates Scientific Evidence That Points Toward God,,4.1,9216,9689,342,303,422,1535,3124,4305,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438312193l/214333._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8708,11737387,11737387,16686573,13,1937007294,9781937007290.0,Benedict Jacka,2012.0,Fated,\"Fated (Alex Verus, #1)\",eng,3.89,12609,14854,1203,196,629,3539,6761,3729,https://images.gr-assets.com/books/1330906653l/11737387.jpg,https://images.gr-assets.com/books/1330906653s/11737387.jpg\n8709,16077150,16077150,21873437,35,755358783,9780755358790.0,Maggie O'Farrell,2013.0,Instructions for a Heatwave,Instructions for a Heatwave,en-GB,3.62,9071,11634,1552,213,950,3737,4920,1814,https://images.gr-assets.com/books/1349796972l/16077150.jpg,https://images.gr-assets.com/books/1349796972s/16077150.jpg\n8710,12022496,12022496,17079585,31,345505719,9780345505710.0,Jonathan Kellerman,2012.0,Victims,\"Victims (Alex Delaware, #27)\",eng,3.94,10482,12555,839,85,467,3165,5245,3593,https://images.gr-assets.com/books/1313220531l/12022496.jpg,https://images.gr-assets.com/books/1313220531s/12022496.jpg\n8712,25222064,25222064,44937426,59,1419717014,9781419717020.0,Jeff Kinney,2015.0,Old School,\"Old School (Diary of a Wimpy Kid, #10)\",eng,4.28,11836,18154,1867,413,625,2442,4590,10084,https://images.gr-assets.com/books/1430174375l/25222064.jpg,https://images.gr-assets.com/books/1430174375s/25222064.jpg\n8713,31194270,29904284,50278264,5,,,Victoria Helen Stone,2016.0,\"Evelyn, After\",\"Evelyn, After\",en-CA,3.64,9255,14969,836,579,1298,4430,5267,3395,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1469171173l/31194270._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8714,751635,751635,189657,22,786813075,9780786813070.0,Sharon G. Flake,1998.0,The Skin I'm In,The Skin I'm In,eng,4.13,9634,10873,1397,153,492,1979,3377,4872,https://images.gr-assets.com/books/1305064345l/751635.jpg,https://images.gr-assets.com/books/1305064345s/751635.jpg\n8715,16065538,16065538,21856179,36,006178480X,9780061784800.0,James Rollins,2013.0,The Eye of God: A Sigma Force Novel,The Eye of God (Sigma Force #9),eng,4.11,9389,12423,1012,89,366,2194,5236,4538,https://images.gr-assets.com/books/1359823174l/16065538.jpg,https://images.gr-assets.com/books/1359823174s/16065538.jpg\n8716,28922,28922,2464610,63,571225365,9780571225360.0,Kazuo Ishiguro,1986.0,An Artist of the Floating World,An Artist of the Floating World,eng,3.72,10430,12710,1012,127,773,3937,5547,2326,https://images.gr-assets.com/books/1327786035l/28922.jpg,https://images.gr-assets.com/books/1327786035s/28922.jpg\n8717,1528410,1528410,1387510,80,802118585,9780802118580.0,\"Pascal Mercier, Barbara Harshav\",2004.0,Nachtzug nach Lissabon,Night Train to Lisbon,eng,3.7,7838,11939,1316,578,1207,2748,4069,3337,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388511706l/1528410.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8718,18052985,18052985,25337669,16,62240196,9780062240190.0,Tessa Dare,2014.0,Romancing the Duke,\"Romancing the Duke (Castles Ever After, #1)\",eng,3.91,15558,17707,2043,451,870,3966,6938,5482,https://images.gr-assets.com/books/1377311107l/18052985.jpg,https://images.gr-assets.com/books/1377311107s/18052985.jpg\n8719,25176,25176,3114345,25,451410815,9780451410820.0,Martha Grimes,1981.0,\"The Man With a Load of Mischief (Richard Jury Mystery, #1)\",\"The Man With a Load of Mischief (Richard Jury, #1)\",eng,4.01,11947,12431,385,230,488,2547,4824,4342,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1423070440l/25176.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8720,11714997,11714997,16662891,9,1463756976,9781463756970.0,Jessica Sorensen,2011.0,The Underworld,\"The Underworld (Fallen Star, #2)\",eng,4.12,11604,13910,477,152,512,2572,4966,5708,https://images.gr-assets.com/books/1417703488l/11714997.jpg,https://images.gr-assets.com/books/1417703488s/11714997.jpg\n8721,2372,2372,1025700,29,743262131,9780743262130.0,David McCullough,1977.0,\"The Path Between the Seas: The Creation of the Panama Canal, 1870-1914\",\"The Path Between the Seas: The Creation of the Panama Canal, 1870-1914\",eng,4.19,9349,11891,1052,118,329,1796,4567,5081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197198l/2372.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8722,26116430,26116430,46062644,25,62277022,9780062277020.0,Louise Erdrich,2016.0,LaRose,LaRose,eng,3.86,9136,11302,1863,268,718,2539,4524,3253,https://images.gr-assets.com/books/1445606455l/26116430.jpg,https://images.gr-assets.com/books/1445606455s/26116430.jpg\n8723,17978144,17978144,25206651,22,1620402750,9781620402760.0,Lucie Whitehouse,2014.0,Before we met,Before We Met,eng,3.43,7826,10533,1113,310,1298,3978,3435,1512,https://images.gr-assets.com/books/1369569396l/17978144.jpg,https://images.gr-assets.com/books/1369569396s/17978144.jpg\n8724,2187270,2187270,2192977,30,61256684,9780061256680.0,\"The Waiter, Steve Dublanica\",2008.0,Waiter Rant: Thanks for the Tip-Confessions of a Cynical Waiter,Waiter Rant: Thanks for the Tip-Confessions of a Cynical Waiter,eng,3.49,10341,12012,1654,350,1333,4338,4034,1957,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348571120l/2187270.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8725,15728721,15728721,21407171,11,385366434,9780385366430.0,Kevin Hearne,2012.0,Two Ravens and One Crow,\"Two Ravens and One Crow (The Iron Druid Chronicles, #4.5)\",eng,4.2,11562,13475,516,20,203,2280,5577,5395,https://images.gr-assets.com/books/1344336650l/15728721.jpg,https://images.gr-assets.com/books/1344336650s/15728721.jpg\n8726,296264,296264,3080386,454,543896609,9780543896600.0,Robert Louis Stevenson,1888.0,The Black Arrow: A Tale of the Two Roses,The Black Arrow,eng,3.81,12298,13696,404,194,852,4010,4965,3675,https://images.gr-assets.com/books/1328014614l/296264.jpg,https://images.gr-assets.com/books/1328014614s/296264.jpg\n8727,7997069,7997069,12502746,62,399157239,9780399157230.0,\"Tom Clancy, Grant Blackwood\",2010.0,Dead or Alive,\"Dead or Alive (Jack Ryan Universe, #13)\",eng,3.79,10644,12697,974,259,866,3450,4873,3249,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391052641l/7997069.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8728,563458,563458,550593,38,671729403,9780671729400.0,V.C. Andrews,1984.0,\"Fallen Hearts (Casteel, #3)\",\"Fallen Hearts (Casteel, #3)\",eng,3.89,12450,12873,112,133,880,3550,3980,4330,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554313062l/563458._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8729,185289,185289,1298638,16,756403014,9780756403010.0,Melanie Rawn,1985.0,Dragon Prince,\"Dragon Prince (Dragon Prince, #1)\",eng,3.94,12739,13416,371,323,868,2928,4442,4855,https://images.gr-assets.com/books/1309210730l/185289.jpg,https://images.gr-assets.com/books/1309210730s/185289.jpg\n8730,7099389,7099389,7357104,52,1439156336,9781439156340.0,Jeffery Deaver,2010.0,The Burning Wire,\"The Burning Wire (Lincoln Rhyme, #9)\",en-US,4.04,11376,13314,759,96,445,2783,5507,4483,https://images.gr-assets.com/books/1441925165l/7099389.jpg,https://images.gr-assets.com/books/1441925165s/7099389.jpg\n8731,166101,166101,2174991,19,316899984,9780316899990.0,Breena Clarke,1999.0,\"River, Cross My Heart\",\"River, Cross My Heart\",eng,3.47,11642,11881,262,298,1219,4724,3882,1758,https://images.gr-assets.com/books/1344268600l/166101.jpg,https://images.gr-assets.com/books/1344268600s/166101.jpg\n8732,109499,109499,105521,15,802472966,9780802472960.0,\"Nancy Leigh DeMoss, Elisabeth Elliot\",2000.0,Lies Women Believe: And the Truth that Sets Them Free,Lies Women Believe: And the Truth that Sets Them Free,eng,4.1,9714,9833,297,224,499,1766,2910,4434,https://images.gr-assets.com/books/1328823111l/109499.jpg,https://images.gr-assets.com/books/1328823111s/109499.jpg\n8733,194808,194808,1618080,78,968709184,9780968709180.0,Jack London,1903.0,To Build a Fire,To Build a Fire,eng,3.92,12133,12653,441,330,815,2781,4290,4437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172591496l/194808._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8734,95659,95659,253904,20,316701343,9780316701340.0,Lisi Harrison,2005.0,Invasion of the Boy Snatchers,\"Invasion of the Boy Snatchers (The Clique, #4)\",,3.79,13093,13343,586,424,1301,3533,3542,4543,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441654393l/95659._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8735,4660,4660,1831615,47,345417968,9780345417960.0,John Irving,1974.0,The 158-Pound Marriage,The 158-Pound Marriage,en-US,3.22,10532,11189,323,346,1831,4980,3031,1001,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388184362l/4660.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8736,6150530,6150530,6329677,44,1401322905,9781401322910.0,Chris Anderson,2009.0,Free: The Future of a Radical Price,Free: The Future of a Radical Price,en-US,3.83,10607,11472,605,311,771,2961,3962,3467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442784976l/6150530._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8737,769712,769712,755771,33,156097432X,9781560974320.0,\"Joe Sacco, Edward Said\",1996.0,Palestine,Palestine,eng,4.2,9823,10949,658,149,351,1556,3975,4918,https://images.gr-assets.com/books/1327884409l/769712.jpg,https://images.gr-assets.com/books/1327884409s/769712.jpg\n8738,198511,198511,192026,72,452275040,9780452275040.0,\"Vincent van Gogh, Irving Stone, Jean   Stone\",1937.0,Dear Theo: The Letters of Vincent Van Gogh,Dear Theo,en-US,4.09,9121,9761,189,237,503,1744,2904,4373,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420843371l/198511.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8739,15732712,15732712,21413550,50,7350481,9780007350480.0,Cecelia Ahern,2012.0,One Hundred Names,One Hundred Names,eng,3.75,10994,13925,1681,265,1049,3978,5210,3423,https://images.gr-assets.com/books/1421928433l/15732712.jpg,https://images.gr-assets.com/books/1421928433s/15732712.jpg\n8740,78960,78960,6582437,199,1419122126,9781419122120.0,Louisa May Alcott,1868.0,Good Wives,\"Good Wives (Little Women, #1.5)\",,3.92,13964,15888,441,296,899,3903,5395,5395,https://images.gr-assets.com/books/1282713827l/78960.jpg,https://images.gr-assets.com/books/1282713827s/78960.jpg\n8741,16248223,16248223,22277074,26,62227327,9780062227320.0,Yangsze Choo,2013.0,The Ghost Bride,The Ghost Bride,eng,3.74,11645,13975,2497,362,1174,3728,5252,3459,https://images.gr-assets.com/books/1356671808l/16248223.jpg,https://images.gr-assets.com/books/1356671808s/16248223.jpg\n8742,34941,34941,3304766,71,99409968,9780099409960.0,\"Terry Brooks, George Lucas\",1999.0,The Phantom Menace,Star Wars - Episode I: The Phantom Menace,eng,3.55,11602,13106,505,392,1660,4408,3677,2969,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349115978l/34941.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8745,266765,266765,1181396,48,552551317,9780552551310.0,Jacqueline Wilson,1997.0,Girls in Love,\"Girls in Love (Girls, #1)\",eng,3.53,11953,12440,221,508,1514,4215,3290,2913,https://images.gr-assets.com/books/1438919442l/266765.jpg,https://images.gr-assets.com/books/1438919442s/266765.jpg\n8746,294613,294613,1221276,21,64440516,9780064440520.0,\"Else Holmelund Minarik, Maurice Sendak\",1960.0,Little Bear's Friend,Little Bear's Friend,,4.3,12446,12504,73,90,315,2084,3259,6756,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347358232l/294613.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8747,254799,254799,246926,12,743235274,9780743235270.0,Twyla Tharp,2003.0,The Creative Habit: Learn It and Use It for Life,The Creative Habit: Learn It and Use It for Life,eng,4.0,12838,13338,765,306,800,2760,4250,5222,https://images.gr-assets.com/books/1477230182l/254799.jpg,https://images.gr-assets.com/books/1477230182s/254799.jpg\n8748,3243517,3243517,832084,27,,,\"Mourid Barghouti, مريد البرغوثي\",1997.0, رأيت رام الله,رأيت رام الله,ara,4.15,8602,10454,1986,152,358,1689,3829,4426,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1209267638l/3243517.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8749,10429025,10429025,7790670,9,61990655,9780061990660.0,Jocelyn Davies,2011.0,A Beautiful Dark ,\"A Beautiful Dark (A Beautiful Dark, #1)\",en-US,3.9,16529,16909,1320,557,1238,3819,5086,6209,https://images.gr-assets.com/books/1327916579l/10429025.jpg,https://images.gr-assets.com/books/1327916579s/10429025.jpg\n8750,18889,18889,1579084,54,788720392,9780788720390.0,\"Marion Zimmer Bradley, Diana L. Paxson\",1996.0,Lady of Avalon,\"Lady of Avalon (Avalon, #3)\",eng,3.88,12663,14297,261,147,748,3848,5522,4032,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1167118126l/18889.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8751,15985392,15985392,21739837,47,399160450,9780399160460.0,\"Tom Clancy, Mark Greaney\",2012.0,Threat Vector,\"Threat Vector (Jack Ryan Universe, #15)\",en-US,4.1,8320,10984,773,92,319,1900,4711,3962,https://images.gr-assets.com/books/1352225908l/15985392.jpg,https://images.gr-assets.com/books/1352225908s/15985392.jpg\n8752,829313,829313,120812,36,671725823,9780671725820.0,\"Miles Davis, Quincy Troupe\",1989.0,Miles: The Autobiography,Miles: The Autobiography,en-US,4.18,8827,9244,490,160,272,1420,3274,4118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348411049l/829313.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8753,816752,816752,164744,28,440409411,9780440409410.0,Elizabeth Winthrop,1985.0,\"The Castle In The Attic (The Castle In The Attic, #1)\",\"The Castle in the Attic (The Castle in the Attic, #1)\",eng,3.96,14611,15194,598,205,688,3777,5326,5198,https://images.gr-assets.com/books/1178654581l/816752.jpg,https://images.gr-assets.com/books/1178654581s/816752.jpg\n8754,6303704,6303704,6488314,26,61767891,9780061767890.0,Steven Tyler,2011.0,Does the Noise in My Head Bother You?,Does the Noise in My Head Bother You?,en-US,3.47,9312,10459,1071,676,1398,3163,2761,2461,https://images.gr-assets.com/books/1400065793l/6303704.jpg,https://images.gr-assets.com/books/1400065793s/6303704.jpg\n8755,11985631,11985631,21848004,15,,,George R.R. Martin,2003.0,The Sworn Sword,\"The Sworn Sword (The Tales of Dunk and Egg, #2)\",eng,4.07,11291,11969,381,37,263,2404,5362,3903,https://images.gr-assets.com/books/1397654143l/11985631.jpg,https://images.gr-assets.com/books/1397654143s/11985631.jpg\n8756,2230284,2230284,2660568,72,1416549978,9781416549970.0,Jeffery Deaver,2008.0,The Broken Window,\"The Broken Window (Lincoln Rhyme, #8)\",eng,4.07,11706,13972,939,81,309,2734,6251,4597,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388193324l/2230284.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8758,22431039,22431039,41852426,32,1476778019,9781476778010.0,Christina Lauren,2015.0,Beautiful Secret,\"Beautiful Secret (Beautiful Bastard, #4)\",eng,4.13,17215,19915,1699,207,807,3402,7249,8250,https://images.gr-assets.com/books/1416624825l/22431039.jpg,https://images.gr-assets.com/books/1416624825s/22431039.jpg\n8760,143513,143513,1000099,173,486275442,9780486275440.0,Anton Chekhov,1900.0,Три сестры,The Three Sisters,eng,3.76,10688,12383,364,295,1048,3411,4181,3448,https://images.gr-assets.com/books/1416873197l/143513.jpg,https://images.gr-assets.com/books/1416873197s/143513.jpg\n8761,107670,107670,2827335,53,439679966,9780439679960.0,Anthony Horowitz,2006.0,Evil Star,\"Evil Star (The Gatekeepers, #2)\",,3.98,12391,14255,448,148,695,3249,5336,4827,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388447187l/107670.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8763,40313,40313,1268433,21,031298328X,9780312983280.0,\"Janet Evanovich, Charlotte Hughes\",2002.0,Full Tilt,Full Tilt (Full #2),en-US,3.7,14923,15433,319,261,1407,5010,4769,3986,https://images.gr-assets.com/books/1479699860l/40313.jpg,https://images.gr-assets.com/books/1479699860s/40313.jpg\n8764,3173125,3173125,3205574,62,316032220,9780316032220.0,Josh Bazell,2008.0,Beat the Reaper,Beat the Reaper (Peter Brown #1),en-US,3.79,10987,13114,2193,278,886,3311,5497,3142,https://images.gr-assets.com/books/1316092271l/3173125.jpg,https://images.gr-assets.com/books/1316092271s/3173125.jpg\n8765,284195,284195,275714,12,312989768,9780312989770.0,Elin Hilderbrand,2002.0,Nantucket Nights,Nantucket Nights,,3.64,9825,11510,912,324,1056,3546,4080,2504,https://images.gr-assets.com/books/1317065229l/284195.jpg,https://images.gr-assets.com/books/1317065229s/284195.jpg\n8766,99218,99218,2081848,37,076534078X,9780765340790.0,\"Brian Herbert, Kevin J. Anderson\",2002.0,Dune: The Machine Crusade ,\"The Machine Crusade (Legends of Dune, #2)\",eng,3.73,10126,11041,221,476,924,2853,3665,3123,https://images.gr-assets.com/books/1412547890l/99218.jpg,https://images.gr-assets.com/books/1412547890s/99218.jpg\n8767,99452,99452,1318428,24,345418530,9780345418530.0,Piers Anthony,1982.0,\"Ogre, Ogre (Xanth, #5)\",\"Ogre, Ogre (Xanth #5)\",,3.73,13795,14744,180,119,1005,5153,4966,3501,https://images.gr-assets.com/books/1350835009l/99452.jpg,https://images.gr-assets.com/books/1350835009s/99452.jpg\n8768,892295,892295,6164528,5,517502917,9780517502910.0,\"Arthur Conan Doyle, William S. Baring-Gould\",1967.0,The Annotated Sherlock Holmes,The Annotated Sherlock Holmes: The Four Novels and the Fifty-Six Short Stories Complete (2 Volume Set),,4.58,9551,9624,66,44,95,710,2161,6614,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437177008l/892295._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8769,18693621,18693621,26542165,15,425272354,9780425272350.0,Joanna Wylde,2014.0,Devil's Game,\"Devil's Game (Reapers MC, #3)\",eng,4.3,20085,23102,1909,143,422,2920,8536,11081,https://images.gr-assets.com/books/1433115819l/18693621.jpg,https://images.gr-assets.com/books/1433115819s/18693621.jpg\n8770,8793878,8793878,13667879,8,,2940011080650.0,Nicky Charles,2010.0,The Keeping,\"The Keeping (Law of the Lycans, #3)\",eng,4.18,12852,15307,932,158,532,2445,5491,6681,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1281241537l/8793878.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8771,760205,760205,575600,18,140547126,9780140547120.0,Mercer Mayer,1968.0,There's a Nightmare in My Closet (Pied Piper Book),There's a Nightmare in My Closet,,4.22,13413,13605,258,130,373,2441,4074,6587,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348638074l/760205.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8772,20768868,20768868,40106030,55,62325345,9780062325340.0,Patricia Cornwell,2014.0,Flesh and Blood,\"Flesh and Blood (Kay Scarpetta, #22)\",eng,3.67,8447,13068,1464,409,1282,3793,4368,3216,https://images.gr-assets.com/books/1403704254l/20768868.jpg,https://images.gr-assets.com/books/1403704254s/20768868.jpg\n8773,441618,441618,1008516,18,805445528,9780805445530.0,Beth Moore,1999.0,Breaking Free,Breaking Free: Discover the Victory of Total Surrender,,4.43,9922,10659,192,113,208,1109,2769,6460,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428870880l/441618.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8774,132609,132609,783733,52,140504206,9780140504200.0,Eric Hill,1980.0,Where's Spot? ,Where's Spot?,eng,4.05,13105,13753,329,235,818,3066,3603,6031,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700896l/132609.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8775,25772000,25772000,45620597,13,1515303942,9781515303950.0,\"Penelope Ward, Vi Keeland\",2015.0,Cocky Bastard,Cocky Bastard,eng,4.18,14964,19293,2328,205,666,2917,7111,8394,https://images.gr-assets.com/books/1436524506l/25772000.jpg,https://images.gr-assets.com/books/1436524506s/25772000.jpg\n8776,78674,78674,2682283,29,143035061,9780143035060.0,Jan Karon,1997.0,Out to Canaan (Mitford),\"Out to Canaan (Mitford Years, #4)\",eng,4.28,12491,13684,375,27,175,2019,5220,6243,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8777,2235597,2235597,2348834,42,316002925,9780316002930.0,\"James Patterson, Michael Ledwidge\",2007.0,The Dangerous Days of Daniel X,\"The Dangerous Days of Daniel X (Daniel X, #1)\",en-US,3.57,14222,15221,1529,956,1871,4056,4153,4185,https://images.gr-assets.com/books/1266659390l/2235597.jpg,https://images.gr-assets.com/books/1266659390s/2235597.jpg\n8778,10868182,10868182,1600165,86,000741949X,9780007419490.0,\"Camilla Läckberg, Tiina Nunnally\",2007.0,Tyskungen,\"The Hidden Child (Patrik Hedström, #5)\",,3.94,7998,13336,1033,130,537,3054,5924,3691,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349028349l/10868182.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8779,122212,122212,806956,45,451217454,9780451217460.0,Terry McMillan,1992.0,Waiting to Exhale,Waiting to Exhale (Waiting To Exhale #1),,3.94,11315,12299,403,185,671,2996,4281,4166,https://images.gr-assets.com/books/1309282766l/122212.jpg,https://images.gr-assets.com/books/1309282766s/122212.jpg\n8780,8369681,8369681,13225041,10,545240778,9780545240770.0,Elizabeth Eulberg,2011.0,Prom and Prejudice,Prom and Prejudice,eng,3.82,16286,16771,1805,363,1363,4502,5182,5361,https://images.gr-assets.com/books/1281991654l/8369681.jpg,https://images.gr-assets.com/books/1281991654s/8369681.jpg\n8781,13074,13074,1371155,41,044669567X,9780446695670.0,Carl Hiaasen,1993.0,Strip Tease,Strip Tease,en-US,3.82,11308,12460,578,94,580,3544,5464,2778,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428259144l/13074.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8782,22175,22175,791346,140,1400034698,9781400034700.0,Gabriel García Márquez,1992.0,Doce cuentos peregrinos,Strange Pilgrims,,4.02,5911,11691,763,80,405,2541,4818,3847,https://images.gr-assets.com/books/1411334612l/22175.jpg,https://images.gr-assets.com/books/1411334612s/22175.jpg\n8783,760110,760110,863900,25,553297988,9780553297980.0,Kevin J. Anderson,1994.0,\"Jedi Search (Star Wars: The Jedi Academy Trilogy, #1)\",\"Jedi Search (Star Wars: The Jedi Academy Trilogy, #1)\",eng,3.64,12686,13060,233,291,1110,4449,4390,2820,https://images.gr-assets.com/books/1327958212l/760110.jpg,https://images.gr-assets.com/books/1327958212s/760110.jpg\n8784,456057,456057,2507883,18,1595541810,9781595541820.0,Ted Dekker,2005.0,Showdown by Ted Dekker Signature Edition,\"Showdown (Paradise, #1)\",eng,3.93,11122,11751,466,265,805,2597,3924,4160,https://images.gr-assets.com/books/1329547365l/456057.jpg,https://images.gr-assets.com/books/1329547365s/456057.jpg\n8785,16299341,16299341,22427858,34,399164421,9780399164420.0,J.D. Robb,2013.0,Thankless in Death ,\"Thankless in Death (In Death, #37)\",eng,4.28,11740,15345,1178,85,304,2155,5428,7373,https://images.gr-assets.com/books/1371102498l/16299341.jpg,https://images.gr-assets.com/books/1371102498s/16299341.jpg\n8786,46460,46460,1176737,126,743431677,9780743431680.0,John le Carré,1961.0,Call for the Dead,Call for the Dead,,3.77,9611,13005,882,133,580,3977,5806,2509,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347597241l/46460.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8787,7999,7999,1193896,26,142501085,9780142501080.0,Brian Jacques,1998.0,Marlfox,\"Marlfox (Redwall, #11)\",,3.99,13426,13974,166,76,556,3520,5112,4710,https://images.gr-assets.com/books/1311702426l/7999.jpg,https://images.gr-assets.com/books/1311702426s/7999.jpg\n8788,14028,14028,1855151,115,679761047,9780679761040.0,\"Yasunari Kawabata, Edward G. Seidensticker\",1937.0,雪国 ,Snow Country,eng,3.7,9942,12499,1095,279,1120,3629,4562,2909,https://images.gr-assets.com/books/1474272606l/14028.jpg,https://images.gr-assets.com/books/1474272606s/14028.jpg\n8789,122574,122574,118014,16,767921992,9780767921990.0,J. Maarten Troost,2006.0,Getting Stoned with Savages: A Trip Through the Islands of Fiji and Vanuatu,Getting Stoned with Savages: A Trip Through the Islands of Fiji and Vanuatu,,3.86,10292,10543,686,192,576,2713,4126,2936,https://images.gr-assets.com/books/1320524119l/122574.jpg,https://images.gr-assets.com/books/1320524119s/122574.jpg\n8790,66470,66470,932916,49,425161242,9780425161240.0,Robin Cook,1997.0,Chromosome 6,\"Chromosome 6 (Jack Stapleton & Laurie Montgomery, #3)\",en-US,3.89,11572,12116,257,122,600,3297,4613,3484,https://images.gr-assets.com/books/1290140777l/66470.jpg,https://images.gr-assets.com/books/1290140777s/66470.jpg\n8791,893731,893731,1807862,42,425178102,9780425178100.0,Dave Barry,1999.0,Big Trouble,Big Trouble,eng,3.81,10954,11621,646,208,818,3116,4292,3187,https://images.gr-assets.com/books/1429999879l/893731.jpg,https://images.gr-assets.com/books/1429999879s/893731.jpg\n8792,17877,17877,320469,313,486434095,9780486434090.0,\"Fyodor Dostoyevsky, Ergin Altay\",1861.0,Записки из Мёртвого дома,The House of the Dead,eng,4.03,8354,12384,804,110,493,2539,4979,4263,https://images.gr-assets.com/books/1327908745l/17877.jpg,https://images.gr-assets.com/books/1327908745s/17877.jpg\n8793,342667,342667,333021,13,031234872X,9780312348720.0,Kim Gruenenfelder,2005.0,\"A Total Waste of Makeup (Charlize Edwards, #1)\",\"A Total Waste of Makeup (Charlize Edwards, #1)\",,3.69,10464,10848,435,459,1043,3025,3234,3087,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440631201l/342667._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8795,47922,47922,40089728,39,316909688,9780316909690.0,Cecily von Ziegesar,2003.0,Because I'm Worth It,\"Because I'm Worth It (Gossip Girl, #4)\",,3.57,13443,14018,302,353,1571,5054,3778,3262,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349055187l/47922.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8797,9893355,9893355,14785462,14,62081896,9780062081900.0,Sara Shepard,2012.0,\"Stunning (Pretty Little Liars, #11)\",\"Stunning (Pretty Little Liars, #11)\",en-US,3.95,13636,14426,792,229,939,3459,4449,5350,https://images.gr-assets.com/books/1320516289l/9893355.jpg,https://images.gr-assets.com/books/1320516289s/9893355.jpg\n8798,481462,481462,469830,14,449138240,9780449138240.0,Gary Brandner,1977.0,The Howling,The Howling,eng,3.92,10414,10599,140,176,652,2810,3216,3745,https://images.gr-assets.com/books/1285664467l/481462.jpg,https://images.gr-assets.com/books/1285664467s/481462.jpg\n8799,239917,239917,2425692,52,380008319,9780380008320.0,Roger Zelazny,1975.0,Sign of the Unicorn,Sign of the Unicorn (The Chronicles of Amber #3),en-US,4.14,12510,13376,262,59,384,2488,5122,5323,https://images.gr-assets.com/books/1368213756l/239917.jpg,https://images.gr-assets.com/books/1368213756s/239917.jpg\n8800,3276072,3276072,3312354,24,375834869,9780375834870.0,Carl Hiaasen,2009.0,Scat,Scat,en-US,3.94,13291,14382,1844,173,679,3421,5739,4370,https://images.gr-assets.com/books/1293763551l/3276072.jpg,https://images.gr-assets.com/books/1293763551s/3276072.jpg\n8801,22304,22304,2512697,29,743231511,9780743231510.0,Douglas Coupland,1994.0,Life after God,Life After God,eng,3.82,8659,10035,432,132,771,2733,3511,2888,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347568198l/22304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8802,12786,12786,737109,51,143036939,9780143036940.0,John Berendt,2005.0,The City of Falling Angels,The City of Falling Angels,eng,3.52,11333,12540,1559,301,1365,4425,4358,2091,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388406783l/12786.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8803,12598982,12598982,14096818,46,307716546,9780307716540.0,Rosamund Lupton,2011.0,Afterwards,Afterwards,,3.79,11041,14146,1747,359,975,3563,5634,3615,https://images.gr-assets.com/books/1330957613l/12598982.jpg,https://images.gr-assets.com/books/1330957613s/12598982.jpg\n8804,1667423,1667423,1662310,2,9792230300,,Ilana Tan,2007.0,Autumn in Paris,Autumn in Paris,ind,4.07,9355,9388,781,144,478,1909,2879,3978,https://images.gr-assets.com/books/1409579772l/1667423.jpg,https://images.gr-assets.com/books/1409579772s/1667423.jpg\n8805,50453,50453,821830,54,876855966,9780876855970.0,Charles Bukowski,1983.0,Hot Water Music,Hot Water Music,en-US,3.93,8815,10210,361,161,489,2356,4081,3123,https://images.gr-assets.com/books/1428126071l/50453.jpg,https://images.gr-assets.com/books/1428126071s/50453.jpg\n8806,37619,37619,1892269,71,312980388,9780312980380.0,Wilbur Smith,1995.0,Warlock: A Novel of Ancient Egypt,\"Warlock (Ancient Egypt, #3)\",eng,4.02,9718,11058,300,159,477,2329,4110,3983,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390193132l/37619.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8808,8575295,30123413,13444179,27,,,Amanda Hocking,2010.0,Wisdom,\"Wisdom (My Blood Approves, #4)\",eng,4.04,12933,15399,597,235,758,3150,5321,5935,https://images.gr-assets.com/books/1282281680l/8575295.jpg,https://images.gr-assets.com/books/1282281680s/8575295.jpg\n8809,13547234,13547234,19098054,48,1451688385,9781451688380.0,Colm Tóibín,2012.0,The Testament of Mary,The Testament of Mary,,3.61,9050,11289,1988,429,1092,3368,4019,2381,https://images.gr-assets.com/books/1339797728l/13547234.jpg,https://images.gr-assets.com/books/1339797728s/13547234.jpg\n8810,17406847,17406847,24246340,9,,,Sara B. Larson,2014.0,Defy,\"Defy (Defy, #1)\",eng,3.74,15160,16181,2261,757,1406,3802,5480,4736,https://images.gr-assets.com/books/1371226819l/17406847.jpg,https://images.gr-assets.com/books/1371226819s/17406847.jpg\n8812,817199,817199,803086,30,9735004100,9789735004100.0,Mircea Eliade,1933.0,Maitreyi,Maitreyi,rum,3.92,11079,11899,184,248,817,2702,3998,4134,https://images.gr-assets.com/books/1303896468l/817199.jpg,https://images.gr-assets.com/books/1303896468s/817199.jpg\n8813,13051316,2658724,2683946,9,,,Christina McKenna,2008.0,The Misremembered Man,The Misremembered Man (Tailorstown #1),eng,3.72,5804,10824,954,282,830,2968,4269,2475,https://images.gr-assets.com/books/1327875304l/13051316.jpg,https://images.gr-assets.com/books/1327875304s/13051316.jpg\n8814,4599,4599,859386,36,786886323,9780786886330.0,Glen David Gold,2001.0, Carter Beats the Devil,Carter Beats the Devil,eng,4.09,10000,10976,901,88,426,1968,4443,4051,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428327514l/4599.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8815,436806,436806,616919,58,872862097,9780872862100.0,\"Georges Bataille, Joachim Neugroschel, Dovid Bergelson\",1928.0,Histoire de l'oeil,Story of the Eye,eng,3.71,9227,10955,906,517,1009,2697,3644,3088,https://images.gr-assets.com/books/1490682356l/436806.jpg,https://images.gr-assets.com/books/1490682356s/436806.jpg\n8816,4609710,4609710,4659599,39,039915583X,9780399155830.0,Kate Jacobs,2007.0,Knit Two,\"Knit Two (Friday Night Knitting Club, #2)\",en-US,3.47,11843,13930,1613,238,1485,5585,4691,1931,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442849190l/4609710._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8817,95144,95144,2223682,27,99417472,9780099417480.0,Maurice Sendak,1970.0,In the Night Kitchen,In the Night Kitchen,eng,4.06,13263,14187,692,384,879,2623,3894,6407,https://images.gr-assets.com/books/1327934189l/95144.jpg,https://images.gr-assets.com/books/1327934189s/95144.jpg\n8818,11446,11446,1038760,55,99449897,9780099449900.0,Raymond Carver,1976.0,\"Will You Please Be Quiet, Please?\",\"Will You Please Be Quiet, Please?\",eng,4.29,8568,10505,540,82,262,1262,3804,5095,https://images.gr-assets.com/books/1360355821l/11446.jpg,https://images.gr-assets.com/books/1360355821s/11446.jpg\n8820,8843801,8843801,12799995,23,044657449X,9780446574500.0,Larissa Ione,2011.0,Eternal Rider,\"Eternal Rider (Lords of Deliverance, #1, Demonica, #6)\",eng,4.21,18214,19565,1264,321,600,2775,6811,9058,https://images.gr-assets.com/books/1305020644l/8843801.jpg,https://images.gr-assets.com/books/1305020644s/8843801.jpg\n8821,105189,105189,7893082,115,,9780140157550.0,\"Gabriel García Márquez, Randolph Hogan\",1970.0,Relato de un náufrago,The Story of a Shipwrecked Sailor,eng,3.73,5354,11279,662,199,751,3397,4503,2429,https://images.gr-assets.com/books/1450711004l/105189.jpg,https://images.gr-assets.com/books/1450711004s/105189.jpg\n8822,18079757,18079757,25387053,36,039916443X,9780399164440.0,J.D. Robb,2014.0,Concealed in Death,\"Concealed in Death (In Death, #38)\",eng,4.25,10444,14867,1180,73,286,2185,5647,6676,https://images.gr-assets.com/books/1457447121l/18079757.jpg,https://images.gr-assets.com/books/1457447121s/18079757.jpg\n8823,131830,131830,1069520,40,553384104,9780553384110.0,Christiane Northrup,1994.0,\"Women's Bodies, Women's Wisdom: Creating Physical and Emotional Health and Healing\",\"Women's Bodies, Women's Wisdom: Creating Physical and Emotional Health and Healing\",,4.32,9867,10692,308,105,238,1385,3389,5575,https://images.gr-assets.com/books/1320512401l/131830.jpg,https://images.gr-assets.com/books/1320512401s/131830.jpg\n8824,37298,37298,179738,30,425152898,9780425152900.0,John Sandford,1995.0,Mind Prey,\"Mind Prey (Lucas Davenport, #7)\",en-US,4.19,12833,14424,405,43,183,2305,6361,5532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435027890l/37298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8826,209966,209966,423192,10,1563897776,9781563897770.0,\"Warren Ellis, John Cassaday\",2000.0,\"Planetary, Volume 1: All Over the World and Other Stories\",\"Planetary, Volume 1: All Over the World and Other Stories\",eng,4.21,11808,12544,331,185,458,1833,4084,5984,https://images.gr-assets.com/books/1374683466l/209966.jpg,https://images.gr-assets.com/books/1374683466s/209966.jpg\n8827,17926775,17926775,25125333,16,1908844965,9781908844960.0,Danielle L. Jensen,2014.0,Stolen Songbird,\"Stolen Songbird (The Malediction Trilogy, #1)\",eng,3.97,15026,17304,2113,345,881,3455,6833,5790,https://images.gr-assets.com/books/1386265289l/17926775.jpg,https://images.gr-assets.com/books/1386265289s/17926775.jpg\n8829,228194,228194,9813429,25,451190521,9780451190530.0,Stephen King,1996.0,\"The Green Mile, Part 2: The Mouse on the Mile\",\"The Green Mile, Part 2: The Mouse on the Mile\",eng,4.47,11985,12569,165,35,156,1220,3561,7597,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1554913636l/228194._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8830,43345,43345,838999,67,743484355,9780743484350.0,Mary Higgins Clark,1982.0,A Cry in the Night,A Cry In The Night,eng,3.84,12157,13886,533,179,759,4025,5068,3855,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348176757l/43345.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8831,100322,100322,943760,20,1556520743,9781556520750.0,\"Assata Shakur, Angela Y. Davis, Lennox S. Hinds\",1987.0,Assata: An Autobiography,Assata: An Autobiography,eng,4.48,10518,10731,572,143,217,880,2636,6855,https://images.gr-assets.com/books/1328857268l/100322.jpg,https://images.gr-assets.com/books/1328857268s/100322.jpg\n8832,32636,32636,997754,44,60596384,9780060596380.0,Clive Barker,2004.0,\"Days of Magic, Nights of War\",\"Days of Magic, Nights of War (Abarat, #2)\",en-US,4.2,10755,12314,404,112,369,1861,4513,5459,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390436636l/32636.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8833,789559,789559,1063622,24,899190359,9780899190360.0,\"Paul Galdone, Peter Christen Asbjørnsen\",1841.0,The Three Billy Goats Gruff,The Three Billy Goats Gruff,eng,4.14,12918,13069,238,107,488,2844,3616,6014,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347326047l/789559.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8834,17166702,17166702,23593652,4,,,Willow Aster,2013.0,True Love Story,True Love Story,eng,4.08,18327,18370,1873,484,896,2993,6267,7730,https://images.gr-assets.com/books/1358169338l/17166702.jpg,https://images.gr-assets.com/books/1358169338s/17166702.jpg\n8835,27423283,27423283,22275596,23,,,\"Corina Bomann, Alison Layland\",2013.0,Der Mondscheingarten,The Moonlit Garden,eng,3.74,10944,11367,874,379,1022,2963,3843,3160,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1446600934l/27423283._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8836,6452806,6452806,6643012,23,446539252,9780446539260.0,Edward M. Kennedy,2009.0,True Compass: A Memoir,True Compass: A Memoir,en-US,3.99,10111,10504,762,176,439,2205,4133,3551,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429825997l/6452806.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8837,3760,3760,2772203,100,142002054,9780142002060.0,Ian Fleming,1956.0,Diamonds are Forever,\"Diamonds Are Forever (James Bond, #4)\",eng,3.59,10205,12359,643,113,960,4741,4602,1943,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440633220l/3760._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8838,2978,2978,1180015,128,60594527,9780060594530.0,James Hilton,1933.0,Lost Horizon,Lost Horizon,,3.9,10907,13070,1093,147,663,3367,5032,3861,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1432440004l/2978._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8839,23492288,23492288,43082571,24,,,Caroline Kepnes,2016.0,Hidden Bodies,\"Hidden Bodies (You, #2)\",eng,3.87,11777,13166,2226,276,799,3063,5255,3773,https://images.gr-assets.com/books/1437414470l/23492288.jpg,https://images.gr-assets.com/books/1437414470s/23492288.jpg\n8840,349929,349929,2369306,62,142437271,9780142437280.0,\"Nella Larsen, Ntozake Shange, Thadious M. Davis\",1929.0,Passing,Passing,eng,3.8,10544,12372,844,151,702,3481,5133,2905,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214730l/349929.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8841,47701,47701,2661,50,61238961,9780061238960.0,\"Neil Gaiman, Michael Reaves\",2007.0,InterWorld,\"InterWorld (InterWorld, #1)\",en-US,3.51,12419,14903,1641,311,1604,5460,5163,2365,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442777301l/47701._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8842,23232,23232,1009041,10,375836578,9780375836570.0,David Levithan,2004.0,The Realm of Possibility,The Realm of Possibility,en-US,3.94,13390,13768,1161,328,892,3036,4504,5008,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1407416385l/23232.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8843,428223,428223,2989134,35,345495802,9780345495810.0,Harry Bernstein,2006.0,The Invisible Wall: A Love Story That Broke Barriers,The Invisible Wall: A Love Story That Broke Barriers,en-US,4.07,9715,10809,1718,58,286,2000,4962,3503,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429978835l/428223.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8844,7507908,7507908,6911742,42,1595143378,9781595143370.0,Brenna Yovanoff,2010.0,The Replacement,The Replacement,en-US,3.56,15945,17635,2647,786,2053,5246,5588,3962,https://images.gr-assets.com/books/1360176667l/7507908.jpg,https://images.gr-assets.com/books/1360176667s/7507908.jpg\n8846,8701960,8701960,13574748,41,375423729,9780375423730.0,James Gleick,2011.0,\"The Information: A History, a Theory, a Flood\",\"The Information: A History, a Theory, a Flood\",eng,3.98,9874,11422,1167,207,610,2312,4425,3868,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348046486l/8701960.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8847,96642,96642,1068585,42,385333218,9780385333210.0,Homer Hickam,1998.0,Rocket Boys,Rocket Boys (Coalwood #1),,4.18,8768,12857,1407,118,364,1912,5119,5344,https://images.gr-assets.com/books/1320533768l/96642.jpg,https://images.gr-assets.com/books/1320533768s/96642.jpg\n8849,19001,19001,2492347,92,743457927,9780743457930.0,John le Carré,1986.0,A Perfect Spy,A Perfect Spy,,3.99,10901,12383,459,184,516,2650,4954,4079,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348765215l/19001.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8850,2049,2049,1616,105,394758269,9780394758270.0,Raymond Chandler,1942.0,The High Window,\"The High Window (Philip Marlowe, #3)\",eng,4.08,11080,12235,535,41,236,2427,5534,3997,https://images.gr-assets.com/books/1466754245l/2049.jpg,https://images.gr-assets.com/books/1466754245s/2049.jpg\n8851,15985372,15985372,21739817,15,425255700,9780425255700.0,Laurell K. Hamilton,2013.0,Affliction,\"Affliction (Anita Blake, Vampire Hunter #22)\",en-US,4.01,13828,16306,1683,387,932,3251,5251,6485,https://images.gr-assets.com/books/1350942756l/15985372.jpg,https://images.gr-assets.com/books/1350942756s/15985372.jpg\n8852,12390650,12390650,17371693,2,,,Kristen Ashley,2011.0,Wildest Dreams,\"Wildest Dreams (Fantasyland, #1)\",eng,4.19,19790,20138,1676,490,777,2662,6630,9579,https://images.gr-assets.com/books/1327913321l/12390650.jpg,https://images.gr-assets.com/books/1327913321s/12390650.jpg\n8853,168569,168569,1520707,35,425157539,9780425157530.0,John Sandford,1996.0,Sudden Prey,\"Sudden Prey (Lucas Davenport, #8)\",eng,4.15,12408,13797,363,46,209,2298,6279,4965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204671l/168569.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8854,95602,95602,920037,6,842339523,9780842339520.0,Francine Rivers,1993.0,Mark of the Lion Trilogy,Mark of the Lion Trilogy,en-US,4.76,9081,9547,731,27,61,323,1363,7773,https://images.gr-assets.com/books/1349032180l/95602.jpg,https://images.gr-assets.com/books/1349032180s/95602.jpg\n8855,198863,198863,192373,49,753510995,9780753511000.0,Richard Branson,2006.0,\"Screw It, Let's Do It\",\"Screw It, Let's Do It: Lessons In Life\",,3.93,7866,9297,569,137,524,2176,3490,2970,https://images.gr-assets.com/books/1312059228l/198863.jpg,https://images.gr-assets.com/books/1312059228s/198863.jpg\n8856,25052,25052,1279228,23,64401510,9780064401520.0,\"Betty MacDonald, Alexandra Boiger\",1949.0,Mrs. Piggle-Wiggle's Magic,\"Mrs. Piggle-Wiggle's Magic (Mrs. Piggle Wiggle, #2)\",eng,4.17,11756,12382,235,263,468,2137,3591,5923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924963l/25052.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8857,6328,6328,915031,55,142302260,9780142302260.0,\"Roald Dahl, Quentin Blake\",1982.0,Revolting Rhymes,Revolting Rhymes,,4.13,12674,13961,627,94,529,2742,4635,5961,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1312498117l/6328.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8858,459386,459386,88269,78,312983603,9780312983600.0,Val McDermid,1995.0,The Mermaids Singing ,\"The Mermaids Singing (Tony Hill & Carol Jordan, #1)\",eng,3.98,11562,13490,783,257,575,2701,5574,4383,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389270695l/459386.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8859,121715,121715,1629232,42,60653205,9780060653200.0,C.S. Lewis,1949.0,The Weight of Glory,The Weight of Glory,eng,4.41,9835,10668,588,51,152,1144,3322,5999,https://images.gr-assets.com/books/1381283728l/121715.jpg,https://images.gr-assets.com/books/1381283728s/121715.jpg\n8860,114141,114141,1615707,70,515122734,9780515122730.0,Nora Roberts,1997.0,Sanctuary,Sanctuary,eng,3.87,14219,15487,405,173,865,4365,5505,4579,https://images.gr-assets.com/books/1351342765l/114141.jpg,https://images.gr-assets.com/books/1351342765s/114141.jpg\n8861,241934,241934,951598,37,345454944,9780345454940.0,Robert Crais,1996.0,Sunset Express,\"Sunset Express (Elvis Cole, #6)\",eng,4.17,10496,11603,285,60,167,1915,5095,4366,https://images.gr-assets.com/books/1344369358l/241934.jpg,https://images.gr-assets.com/books/1344369358s/241934.jpg\n8862,23355896,23355896,42912504,25,698193032,9780698193030.0,J.R. Ward,2015.0,The Bourbon Kings,\"The Bourbon Kings (The Bourbon Kings, #1)\",eng,3.87,11476,14619,2200,575,1041,3046,5051,4906,https://images.gr-assets.com/books/1414595442l/23355896.jpg,https://images.gr-assets.com/books/1414595442s/23355896.jpg\n8863,296298,296298,854073,81,449214729,9780449214720.0,Alistair MacLean,1957.0,The Guns of Navarone,The Guns of Navarone,,4.12,11501,12237,254,47,282,2376,5032,4500,https://images.gr-assets.com/books/1381683551l/296298.jpg,https://images.gr-assets.com/books/1381683551s/296298.jpg\n8864,3762,3762,1098834,92,142003255,9780142003250.0,Ian Fleming,1963.0,On Her Majesty's Secret Service,\"On Her Majesty's Secret Service (James Bond, #11)\",eng,3.94,11612,13203,488,111,551,3350,5231,3960,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433986746l/3762._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8865,239509,239509,232009,60,671733419,9780671733410.0,Robin Norwood,1985.0,Women Who Love Too Much,Women Who Love Too Much: When You Keep Wishing and Hoping He'll Change,en-US,3.98,7903,9299,299,215,573,2093,2720,3698,https://images.gr-assets.com/books/1173029153l/239509.jpg,https://images.gr-assets.com/books/1173029153s/239509.jpg\n8867,41918,41918,729410,20,385265565,9780385265560.0,Alex Kotlowitz,1991.0,There Are No Children Here: The Story of Two Boys Growing Up in the Other America,There are No Children Here: The Story of Two Boys Growing Up in the Other America,eng,4.25,10312,10655,764,68,267,1448,4043,4829,https://images.gr-assets.com/books/1320394274l/41918.jpg,https://images.gr-assets.com/books/1320394274s/41918.jpg\n8868,16333,16333,1444048,1,2310015,9780002310020.0,Agatha Christie,1965.0,At Bertram's Hotel,\"At Bertram's Hotel (Miss Marple, #11)\",eng,3.7,14221,17292,795,190,1322,5822,6163,3795,https://images.gr-assets.com/books/1375949033l/16333.jpg,https://images.gr-assets.com/books/1375949033s/16333.jpg\n8869,24465724,24465724,44058574,17,8143676,9780062414090.0,Kiera Cass,2015.0,Happily Ever After,\"Happily Ever After (The Selection, #0.4, 0.5, 2.5, 2.6)\",eng,4.22,15230,18380,1872,153,532,3004,6186,8505,https://images.gr-assets.com/books/1427449095l/24465724.jpg,https://images.gr-assets.com/books/1427449095s/24465724.jpg\n8870,119247,119247,1933284,29,142400580,9780142400590.0,\"John D. Fitzgerald, Mercer Mayer\",1967.0,The Great Brain,The Great Brain (Great Brain #1),eng,4.16,13422,13870,776,242,389,2297,4876,6066,https://images.gr-assets.com/books/1311781413l/119247.jpg,https://images.gr-assets.com/books/1311781413s/119247.jpg\n8871,1891296,1891296,1892696,11,1846164257,9781846164260.0,Chris d'Lacey,2007.0,The Fire Eternal,\"The Fire Eternal (The Last Dragon Chronicles, #4)\",en-GB,3.99,11259,11798,329,284,813,2464,3427,4810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1189873266l/1891296._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8873,269795,269795,963859,37,749391685,9780749391680.0,Roddy Doyle,1987.0,The Commitments,The Commitments,eng,3.95,11215,12070,403,98,448,2740,5491,3293,https://images.gr-assets.com/books/1173298169l/269795.jpg,https://images.gr-assets.com/books/1173298169s/269795.jpg\n8874,6855294,6855294,7068970,37,385526350,9780385526360.0,Chuck Palahniuk,2010.0,Tell-All,Tell-All,,2.84,9733,11055,945,1274,2913,4045,1961,862,https://images.gr-assets.com/books/1320495064l/6855294.jpg,https://images.gr-assets.com/books/1320495064s/6855294.jpg\n8875,170529,170529,164669,27,689855532,9780689855540.0,Sonya Sones,2001.0,What My Mother Doesn't Know,What My Mother Doesn't Know (What My Mother Doesn't Know #1),eng,3.83,12388,13332,1457,336,1052,3440,4266,4238,https://images.gr-assets.com/books/1355585638l/170529.jpg,https://images.gr-assets.com/books/1355585638s/170529.jpg\n8876,6691426,6691426,6886872,76,670021474,9780670021480.0,Danielle Trussoni,2010.0,Angelology,\"Angelology (Angelology, #1)\",eng,3.41,12377,14808,2352,1010,2093,4451,4372,2882,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388178977l/6691426.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8877,67657,67657,65618,9,375751114,9780375751110.0,\"Paula H. Deen, John Berendt\",1998.0,The Lady & Sons Savannah Country Cookbook,The Lady & Sons Savannah Country Cookbook,,4.0,10026,10067,63,322,562,2115,2885,4183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183684l/67657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8878,23885,23885,6888141,24,60751576,9780060751580.0,\"Gabriel García Márquez, J.S. Bernstein\",1961.0,El coronel no tiene quién le escriba,No One Writes to the Colonel and Other Stories,,3.86,10480,10918,268,122,544,2956,4465,2831,https://images.gr-assets.com/books/1410130190l/23885.jpg,https://images.gr-assets.com/books/1410130190s/23885.jpg\n8879,158141,158141,152624,35,671723227,9780671723220.0,Nicholas Pileggi,1985.0,Wiseguy: Life in a Mafia Family,Wiseguy,en-US,4.14,8715,10204,454,76,261,1780,4105,3982,https://images.gr-assets.com/books/1223643389l/158141.jpg,https://images.gr-assets.com/books/1223643389s/158141.jpg\n8880,22420,22420,23446,12,1563897229,9781563897220.0,\"Warren Ellis, Darick Robertson, Rodney Ramos, Patrick Stewart\",2001.0,\"Transmetropolitan, Vol. 5: Lonely City\",\"Transmetropolitan, Vol. 5: Lonely City (Transmetropolitan, #5)\",eng,4.4,10390,11045,156,153,242,1092,3134,6424,https://images.gr-assets.com/books/1374683445l/22420.jpg,https://images.gr-assets.com/books/1374683445s/22420.jpg\n8881,15762186,15762186,21463360,18,307959880,9780307959880.0,Kent Haruf,2013.0,Benediction,\"Benediction (Plainsong, #3)\",eng,3.97,10214,12221,2033,160,559,2551,5137,3814,https://images.gr-assets.com/books/1344619032l/15762186.jpg,https://images.gr-assets.com/books/1344619032s/15762186.jpg\n8882,300905,300905,156507,10,9643113442,9789643113440.0,عباس معروفی,1989.0, سمفونی مردگان,سمفونی مردگان,per,4.08,6980,7410,590,173,321,1272,2584,3060,https://images.gr-assets.com/books/1333982726l/300905.jpg,https://images.gr-assets.com/books/1333982726s/300905.jpg\n8883,420739,420739,409872,39,671019708,9780671019710.0,Linda Howard,1995.0,After the Night,After the Night,en-GB,4.1,17345,18642,936,293,806,3342,6560,7641,https://images.gr-assets.com/books/1337053790l/420739.jpg,https://images.gr-assets.com/books/1337053790s/420739.jpg\n8884,6193923,6193923,6374360,33,230015913,9780230015910.0,Chelsea Cain,2009.0, Evil at Heart,\"Evil at Heart (Archie Sheridan & Gretchen Lowell, #3)\",eng,4.03,10884,12383,948,125,468,2654,4832,4304,https://images.gr-assets.com/books/1328137862l/6193923.jpg,https://images.gr-assets.com/books/1328137862s/6193923.jpg\n8885,22635858,22635858,42136590,29,62333003,9780062333000.0,Cynthia Swanson,2015.0,The Bookseller,The Bookseller,eng,3.66,9818,12244,1881,238,1007,3806,4831,2362,https://images.gr-assets.com/books/1421854932l/22635858.jpg,https://images.gr-assets.com/books/1421854932s/22635858.jpg\n8886,925367,925367,910376,30,312965338,9780312965330.0,\"Anatoli Boukreev, G. Weston DeWalt\",1997.0,The Climb: Tragic Ambitions on Everest,The Climb: Tragic Ambitions on Everest,,3.89,9584,10292,504,126,473,2672,4148,2873,https://images.gr-assets.com/books/1311995989l/925367.jpg,https://images.gr-assets.com/books/1311995989s/925367.jpg\n8887,15810910,15810910,21536059,18,451465105,9780451465110.0,Django Wexler,2013.0,The Thousand Names,\"The Thousand Names (The Shadow Campaigns, #1)\",en-CA,4.04,9926,11806,915,147,424,2075,5316,3844,https://images.gr-assets.com/books/1355441268l/15810910.jpg,https://images.gr-assets.com/books/1355441268s/15810910.jpg\n8888,246546,246546,3719102,316,1406501069,9781406501060.0,Louisa May Alcott,1869.0,An Old-Fashioned Girl,An Old-Fashioned Girl,,4.05,12818,15032,709,236,700,3126,4944,6026,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347469119l/246546.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8889,23714544,23714544,43324379,14,,,Jamie McGuire,2016.0,Beautiful Burn,\"Beautiful Burn (The Maddox Brothers, #4)\",eng,4.11,11884,15662,1318,258,678,2763,5384,6579,https://images.gr-assets.com/books/1452456357l/23714544.jpg,https://images.gr-assets.com/books/1452456357s/23714544.jpg\n8890,836606,836606,262961,17,1591826047,9781591826040.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",1999.0,フルーツバスケット 2,\"Fruits Basket, Vol. 2\",en-US,4.34,15859,16106,394,96,382,2234,4568,8826,https://images.gr-assets.com/books/1337807470l/836606.jpg,https://images.gr-assets.com/books/1337807470s/836606.jpg\n8891,51364,51364,50128,30,60859512,9780060859510.0,Bart D. Ehrman,2005.0,Misquoting Jesus: The Story Behind Who Changed the Bible and Why,Misquoting Jesus: The Story Behind Who Changed the Bible and Why,en-US,3.91,10075,11242,1013,360,548,2307,4596,3431,https://images.gr-assets.com/books/1407109431l/51364.jpg,https://images.gr-assets.com/books/1407109431s/51364.jpg\n8892,33288638,33288638,54007532,4,,,Mariana Zapata,2016.0,Wait for It,Wait for It,eng,4.22,18371,18415,1507,510,614,2317,5784,9190,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1481172517l/33288638._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8893,13658,13658,215093,57,044101125X,9780441011250.0,Ursula K. Le Guin,2001.0,The Other Wind,\"The Other Wind (Earthsea Cycle, #6)\",en-GB,4.06,11325,13218,597,97,467,2734,5203,4717,https://images.gr-assets.com/books/1309285821l/13658.jpg,https://images.gr-assets.com/books/1309285821s/13658.jpg\n8894,6497645,6497645,6689131,52,739329189,9780739329180.0,\"Steve Berry, Scott Brick\",2009.0,The Paris Vendetta,\"The Paris Vendetta (Cotton Malone, #5)\",en-US,3.9,11263,13095,664,122,586,3329,5477,3581,https://images.gr-assets.com/books/1320407237l/6497645.jpg,https://images.gr-assets.com/books/1320407237s/6497645.jpg\n8895,22535533,22535533,41241463,54,62377183,9780062377180.0,Anthony Horowitz,2014.0,Moriarty,Moriarty (Sherlock Holmes #2),eng,3.74,8376,11810,1809,186,854,3323,4910,2537,https://images.gr-assets.com/books/1404412525l/22535533.jpg,https://images.gr-assets.com/books/1404412525s/22535533.jpg\n8896,82397,82397,1946935,486,198320043,9780198320040.0,\"William Shakespeare, Roma Gill, Robert          Jackson\",1595.0,The tragedie of King Richard the second,Richard II,,3.76,10265,14124,628,261,1201,4043,4807,3812,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347228947l/82397.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8897,774060,774060,1299871,31,380756277,9780380756280.0,Johanna Lindsey,1991.0,Prisoner of my desire ,Prisoner of My Desire,,4.06,13391,13982,325,230,626,2921,4446,5759,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348501614l/774060.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8898,80631,80631,5951635,58,743454154,9780743454160.0,Greg Iles,2005.0,Blood Memory,Blood Memory,eng,4.09,10938,12308,776,81,370,2287,5148,4422,https://images.gr-assets.com/books/1327877256l/80631.jpg,https://images.gr-assets.com/books/1327877256s/80631.jpg\n8900,18089975,18089975,25337698,24,62083392,9780062083400.0,Laura Lippman,2014.0,After I'm Gone,After I'm Gone,eng,3.61,10905,12667,1548,278,946,4264,5106,2073,https://images.gr-assets.com/books/1383274696l/18089975.jpg,https://images.gr-assets.com/books/1383274696s/18089975.jpg\n8901,3925836,3925836,3971355,29,297853260,9780297853270.0,Jennifer Worth,2005.0,Shadows of the Workhouse: The Drama of Life in Postwar London,Shadows of the Workhouse,eng,4.12,8094,13532,1272,111,343,2380,5680,5018,https://images.gr-assets.com/books/1328216841l/3925836.jpg,https://images.gr-assets.com/books/1328216841s/3925836.jpg\n8902,47780,47780,1262306,93,159448144X,9781594481440.0,\"Anna Gavalda, Alison Anderson\",2004.0,\"Ensemble, c'est tout\",Hunting and Gathering,en-US,4.1,7318,12882,1078,194,609,2182,4618,5279,https://images.gr-assets.com/books/1327865734l/47780.jpg,https://images.gr-assets.com/books/1327865734s/47780.jpg\n8903,762462,762462,748554,21,743200403,9780743200400.0,\"Peter Lynch, John Rothchild\",1988.0,One Up On Wall Street : How To Use What You Already Know To Make Money In The Market,One Up On Wall Street: How To Use What You Already Know To Make Money In The Market,en-US,4.12,10563,11264,315,161,390,2020,4103,4590,https://images.gr-assets.com/books/1444850522l/762462.jpg,https://images.gr-assets.com/books/1444850522s/762462.jpg\n8904,422452,422452,809748,25,1857230310,9781857230310.0,Iain M. Banks,1993.0,Against a Dark Background,Against a Dark Background,en-GB,4.09,10679,12195,350,104,422,2267,4877,4525,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174599757l/422452.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8905,7897620,7897620,11141856,36,1400065933,9781400065940.0,Fannie Flagg,2010.0,I Still Dream About You,I Still Dream About You,en-US,3.55,11230,13971,2183,377,1490,4815,4671,2618,https://images.gr-assets.com/books/1320471793l/7897620.jpg,https://images.gr-assets.com/books/1320471793s/7897620.jpg\n8906,2677,2677,2854559,27,486287599,9780486287590.0,Jonathan Swift,1729.0,A Modest Proposal and Other Satirical Works,A Modest Proposal and Other Satirical Works,eng,4.04,12499,12988,168,141,514,2764,4782,4787,https://images.gr-assets.com/books/1264316062l/2677.jpg,https://images.gr-assets.com/books/1264316062s/2677.jpg\n8907,60551,60551,58910,26,679723005,9780679723000.0,Alan W. Watts,1966.0,The Book on the Taboo Against Knowing Who You Are,The Book on the Taboo Against Knowing Who You Are,,4.28,9811,10587,554,109,340,1416,3335,5387,https://images.gr-assets.com/books/1403166178l/60551.jpg,https://images.gr-assets.com/books/1403166178s/60551.jpg\n8908,85679,85679,2732306,74,155970361X,9781559703610.0,\"Bertolt Brecht, David Hare\",1941.0,Mutter Courage und ihre Kinder,Mother Courage and Her Children,eng,3.66,9705,12086,252,392,1260,3369,4096,2969,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348028154l/85679.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8909,10357792,10357792,15260779,16,62076116,9780062076110.0,Jeaniene Frost,2014.0,Up From the Grave ,\"Up from the Grave (Night Huntress, #7)\",eng,4.28,19059,22035,2229,145,563,2979,7543,10805,https://images.gr-assets.com/books/1367085937l/10357792.jpg,https://images.gr-assets.com/books/1367085937s/10357792.jpg\n8910,1210754,1210754,1199129,13,1599901099,9781599901090.0,Jessica Day George,2008.0,\"Sun and Moon, Ice and Snow\",\"Sun and Moon, Ice and Snow\",en-US,3.97,17095,17927,1868,221,902,4165,6556,6083,https://images.gr-assets.com/books/1317065700l/1210754.jpg,https://images.gr-assets.com/books/1317065700s/1210754.jpg\n8911,17570538,29467232,24509684,25,,,Brent Weeks,2016.0,The Blood Mirror,\"The Blood Mirror (Lightbringer, #4)\",eng,4.29,4528,13785,933,63,274,1678,5333,6437,https://images.gr-assets.com/books/1458663265l/17570538.jpg,https://images.gr-assets.com/books/1458663265s/17570538.jpg\n8912,7203669,7203669,7904929,50,1439166641,9781439166640.0,Nic Pizzolatto,2004.0,Galveston,Galveston,eng,3.72,7601,9871,1027,187,699,2813,4192,1980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1593570705l/7203669.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8914,10306358,10306358,15208454,33,547576722,9780547576720.0,Justin Torres,2011.0,We the Animals,We the Animals,eng,3.61,10616,11748,1820,440,1248,3282,4292,2486,https://images.gr-assets.com/books/1327900720l/10306358.jpg,https://images.gr-assets.com/books/1327900720s/10306358.jpg\n8915,2067,2067,598404,23,067003472X,9780670034730.0,Daniel C. Dennett,2006.0,Breaking the Spell: Religion as a Natural Phenomenon,Breaking the Spell: Religion as a Natural Phenomenon,en-US,3.89,8381,9366,383,312,573,2006,3457,3018,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406403613l/2067.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8916,765427,765427,19904,90,140422072,9780140422080.0,\"Edmund Spenser, Thomas P. Roche, C. Patrick O'Donnell\",1590.0,The Faerie Queene,The Faerie Queene ,eng,3.55,13239,13761,287,623,1643,4245,4017,3233,https://images.gr-assets.com/books/1328308492l/765427.jpg,https://images.gr-assets.com/books/1328308492s/765427.jpg\n8917,8142508,8142508,12939882,22,1414334095,9781414334100.0,Francine Rivers,2010.0,Her Daughter's Dream,\"Her Daughter's Dream (Marta's Legacy, #2)\",en-US,4.34,10703,11795,737,67,269,1426,3808,6225,https://images.gr-assets.com/books/1276207024l/8142508.jpg,https://images.gr-assets.com/books/1276207024s/8142508.jpg\n8919,17225311,17225311,23731028,5,62280562,9780062280560.0,Alissa Nutting,2013.0,Tampa,Tampa,,3.34,9662,12225,2619,806,1639,4018,4130,1632,https://images.gr-assets.com/books/1393784199l/17225311.jpg,https://images.gr-assets.com/books/1393784199s/17225311.jpg\n8920,25148,25148,25897,10,671027638,9780671027640.0,Arthur Nersesian,1997.0,The Fuck-Up,The Fuck-Up,en-US,3.56,8980,9164,389,381,1048,2863,2845,2027,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420653419l/25148.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8921,105744,105744,411660,36,976165910,9780976165910.0,Steve Alten,1997.0,MEG: A Novel of Deep Terror,\"Meg (MEG, #1)\",eng,3.76,9946,11419,697,370,1005,2996,3695,3353,https://images.gr-assets.com/books/1407870638l/105744.jpg,https://images.gr-assets.com/books/1407870638s/105744.jpg\n8922,289695,289695,2592744,20,803731558,9780803731550.0,Frank Beddor,2007.0,Seeing Redd,\"Seeing Redd (The Looking Glass Wars, #2)\",en-US,3.85,14540,15711,1116,230,1020,4157,5798,4506,https://images.gr-assets.com/books/1354846350l/289695.jpg,https://images.gr-assets.com/books/1354846350s/289695.jpg\n8923,126583,126583,2555382,59,375719202,9780375719200.0,John O'Hara,1933.0,Appointment in Samarra,Appointment in Samarra,eng,3.83,10663,11420,603,279,802,2811,4251,3277,https://images.gr-assets.com/books/1320446769l/126583.jpg,https://images.gr-assets.com/books/1320446769s/126583.jpg\n8924,833550,833550,819179,29,067088278X,9780670882790.0,\"Janet Ahlberg, Allan Ahlberg\",1978.0,Each Peach Pear Plum,Each Peach Pear Plum,eng,4.24,12747,13148,431,161,479,2196,3564,6748,https://images.gr-assets.com/books/1367225641l/833550.jpg,https://images.gr-assets.com/books/1367225641s/833550.jpg\n8928,47304,47304,941815,25,038549422X,9780385494230.0,\"Erin Gruwell, Zlata Filipović, The Freedom Writers\",1999.0,The Freedom Writers Diary: How a Teacher and 150 Teens Used Writing to Change Themselves and the World Around Them,The Freedom Writers Diary,eng,4.09,10567,12078,1437,175,564,2238,4124,4977,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1403027481l/47304.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8929,2120783,2120783,2126220,46,039306235X,9780393062360.0,Fareed Zakaria,2008.0,The Post-American World 2.0,The Post-American World,eng,3.86,8753,10392,1013,159,516,2529,4598,2590,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347716469l/2120783.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8930,1823,1823,5946,20,743233212,9780743233220.0,Jon Ronson,2001.0,Them: Adventures with Extremists,Them: Adventures with Extremists,en-US,3.94,9081,11362,833,71,394,2648,5284,2965,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1400199696l/1823.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8931,15161,15161,3088909,33,1596912510,9781596912520.0,\"Susanna Clarke, Charles Vess\",2006.0,The Ladies of Grace Adieu and Other Stories,The Ladies of Grace Adieu and Other Stories,en-US,3.85,12150,14037,1196,197,783,3620,5768,3669,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435241299l/15161._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8933,22609522,22609522,42099492,34,147675571X,9781476755720.0,Bill Browder,2014.0,\"Red Notice: A True Story of High Finance, Murder, and One Man’s Fight for Justice\",\"Red Notice: A True Story of High Finance, Murder, and One Man’s Fight for Justice\",en-GB,4.39,8729,12693,1398,117,239,1213,4157,6967,https://images.gr-assets.com/books/1422848658l/22609522.jpg,https://images.gr-assets.com/books/1422848658s/22609522.jpg\n8934,621,621,806311,27,767923820,9780767923830.0,David Bach,2003.0,The Automatic Millionaire: A Powerful One-Step Plan to Live and Finish Rich,The Automatic Millionaire: A Powerful One-Step Plan to Live and Finish Rich,,3.9,10091,10676,508,211,664,2680,3567,3554,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436792430l/621._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8935,9415951,9415951,13902945,40,316094617,9780316094610.0,Cat Patrick,2011.0,Forgotten,Forgotten,eng,3.79,14045,16681,2272,385,1420,4329,5718,4829,https://images.gr-assets.com/books/1327916264l/9415951.jpg,https://images.gr-assets.com/books/1327916264s/9415951.jpg\n8936,13153693,13153693,18331880,15,385529988,9780385529980.0,Jill Leovy,2015.0,Ghettoside: A True Story of Murder in America,Ghettoside: A True Story of Murder in America,,4.12,8969,10548,1433,114,383,1674,4345,4032,https://images.gr-assets.com/books/1417410395l/13153693.jpg,https://images.gr-assets.com/books/1417410395s/13153693.jpg\n8937,227570,227570,1153604,23,1857933362,9781857933370.0,\"Terry Jones, Brian Froud\",1994.0,Lady Cottington's Pressed Fairy Book,Lady Cottington's Pressed Fairy Book,eng,3.99,11518,12272,204,379,761,2556,3442,5134,https://images.gr-assets.com/books/1408938052l/227570.jpg,https://images.gr-assets.com/books/1408938052s/227570.jpg\n8938,18404248,18404248,26038108,29,1250034604,9781250034600.0,Chevy Stevens,2014.0,That Night,That Night,eng,3.92,11318,12955,1846,217,755,2804,5259,3920,https://images.gr-assets.com/books/1382569155l/18404248.jpg,https://images.gr-assets.com/books/1382569155s/18404248.jpg\n8939,1331653,1331653,1601627,60,753821788,9780753821790.0,Paul Torday,2006.0,Salmon Fishing in the Yemen,Salmon Fishing in the Yemen,eng,3.51,9299,10819,1345,285,1086,3823,4102,1523,https://images.gr-assets.com/books/1347617111l/1331653.jpg,https://images.gr-assets.com/books/1347617111s/1331653.jpg\n8940,392563,392563,2373496,33,374249393,9780374249400.0,Alex  Ross,2007.0,The Rest Is Noise: Listening to the Twentieth Century,The Rest Is Noise: Listening to the Twentieth Century,eng,4.08,9316,10007,611,381,497,1471,3236,4422,https://images.gr-assets.com/books/1311973474l/392563.jpg,https://images.gr-assets.com/books/1311973474s/392563.jpg\n8942,9403947,9403947,14287876,6,1599908441,9781599908440.0,Trish Doller,2012.0,Something Like Normal,Something like Normal,eng,3.81,15206,15769,1604,415,1124,4073,5517,4640,https://images.gr-assets.com/books/1336837143l/9403947.jpg,https://images.gr-assets.com/books/1336837143s/9403947.jpg\n8943,18213403,18213403,25637147,51,162779073X,9781627790730.0,Glenn Greenwald,2014.0,\"No Place to Hide: Edward Snowden, the NSA, and the U.S. Surveillance State\",\"No Place to Hide: Edward Snowden, the NSA, and the U.S. Surveillance State\",eng,4.08,8366,10364,1130,170,381,1772,4188,3853,https://images.gr-assets.com/books/1383352779l/18213403.jpg,https://images.gr-assets.com/books/1383352779s/18213403.jpg\n8944,40293,40293,1348187,26,812508645,9780812508640.0,Orson Scott Card,1996.0,Pastwatch: The Redemption of Christopher Columbus,Pastwatch: The Redemption of Christopher Columbus,en-US,3.96,11922,12460,867,239,685,2667,4578,4291,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431529811l/40293._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8945,32529,32529,3214115,40,752848267,9780752848270.0,Lisa Gardner,2001.0,The Next Accident,\"The Next Accident (Quincy & Rainie, #3)\",en-US,4.16,11261,13328,513,49,231,2323,5612,5113,https://images.gr-assets.com/books/1348816896l/32529.jpg,https://images.gr-assets.com/books/1348816896s/32529.jpg\n8946,46292,46292,45423,91,9646534783,9789646534780.0,Hafez,1380.0,دیوان‎‎ [Dīvān],The Divan,eng,4.63,2773,6323,286,89,116,384,872,4862,https://images.gr-assets.com/books/1327770153l/46292.jpg,https://images.gr-assets.com/books/1327770153s/46292.jpg\n8947,98250,98250,94708,22,915297019,9780915297020.0,John L. Parker Jr.,1978.0,Once a Runner,Once a Runner,,4.05,8106,9804,940,225,535,1841,3079,4124,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171408273l/98250.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8948,8879121,8879121,13754899,8,1596434465,9781596434460.0,Ben Hatke,2011.0,Zita the Spacegirl,\"Zita the Spacegirl (Zita the Spacegirl, #1)\",eng,4.04,10832,11044,941,307,615,2055,3433,4634,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388260704l/8879121.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8949,32812,32812,9771852,355,140441050,9780140441060.0,\"Dante Alighieri, Dorothy L. Sayers, Barbara Reynolds\",1320.0,Paradiso,\"Paradiso (The Divine Comedy, #3)\",eng,3.94,9701,12570,397,268,934,2867,3699,4802,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347467591l/32812.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8950,72148,72148,865487,47,747589372,9780747589370.0,William  Boyd,2006.0,Restless,Restless,eng,3.84,9308,11228,1051,128,532,2862,5202,2504,https://images.gr-assets.com/books/1330951946l/72148.jpg,https://images.gr-assets.com/books/1330951946s/72148.jpg\n8951,633270,633270,3266059,25,140376410,9780140376420.0,Nancy Farmer,1994.0,\"The Ear, the Eye, and the Arm\",\"The Ear, the Eye, and the Arm\",,3.85,12389,13107,757,396,875,3068,4762,4006,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348531082l/633270.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8952,11784281,11784281,16736232,12,,,\"Amy Lichtenhan, A.L. Jackson\",2011.0,Pulled,\"Take This Regret (Take This Regret, #1)\",eng,4.06,19241,21622,1604,399,1040,3794,8052,8337,https://images.gr-assets.com/books/1347389725l/11784281.jpg,https://images.gr-assets.com/books/1347389725s/11784281.jpg\n8953,125542,125542,120907,55,439568455,9780439568460.0,R.L. Stine,1992.0,Stay Out of the Basement,\"Stay Out of the Basement  (Goosebumps, #2)\",,3.64,11685,12845,460,374,1515,4185,3063,3708,https://images.gr-assets.com/books/1328867797l/125542.jpg,https://images.gr-assets.com/books/1328867797s/125542.jpg\n8955,18071296,18071296,25370670,7,,,Belle Aurora,2013.0,Willing Captive,Willing Captive,eng,4.11,18854,18918,1774,483,859,2974,6428,8174,https://images.gr-assets.com/books/1371600310l/18071296.jpg,https://images.gr-assets.com/books/1371600310s/18071296.jpg\n8956,125540,125540,3228379,44,439568412,9780439568420.0,R.L. Stine,1994.0,One Day at Horrorland,\"One Day at Horrorland (Goosebumps, #16)\",,3.87,11534,12433,375,284,1058,3275,3194,4622,https://images.gr-assets.com/books/1328867794l/125540.jpg,https://images.gr-assets.com/books/1328867794s/125540.jpg\n8957,6055063,6055063,6230877,18,767928881,9780767928880.0,David Lebovitz,2009.0,The Sweet Life in Paris: A Recipe for Living in the World's Most Delicious City,The Sweet Life in Paris: Delicious Adventures in the World's Most Glorious - and Perplexing - City,eng,3.85,9754,11096,1214,153,539,3032,4441,2931,https://images.gr-assets.com/books/1320533633l/6055063.jpg,https://images.gr-assets.com/books/1320533633s/6055063.jpg\n8958,17331828,17331828,24035257,41,373211392,9780373211400.0,Julie Kagawa,2014.0,Talon,\"Talon (Talon, #1)\",eng,3.77,15818,17700,2840,630,1502,4386,6045,5137,https://images.gr-assets.com/books/1397581124l/17331828.jpg,https://images.gr-assets.com/books/1397581124s/17331828.jpg\n8959,24473763,24473763,40780371,8,,,Grace Draven,2014.0,Radiance,\"Radiance (Wraith Kings, #1)\",eng,4.12,13105,16164,1738,232,667,2692,5869,6704,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422721500l/24473763.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8960,12878667,12878667,17997709,36,385535775,9780385535780.0,Mark Haddon,2012.0,The Red House,The Red House,eng,2.93,10621,12543,2215,1307,2821,4739,2827,849,https://images.gr-assets.com/books/1333578268l/12878667.jpg,https://images.gr-assets.com/books/1333578268s/12878667.jpg\n8961,116356,116356,1913289,26,345418425,9780345418420.0,\"Larry Niven, Jerry Pournelle\",1985.0,Footfall,Footfall,,3.89,11054,12202,338,153,653,3045,4831,3520,https://images.gr-assets.com/books/1320440216l/116356.jpg,https://images.gr-assets.com/books/1320440216s/116356.jpg\n8962,7818881,7818881,10800440,22,525422242,9780525422240.0,Heather Brewer,2010.0,Twelfth Grade Kills,\"Twelfth Grade Kills (The Chronicles of Vladimir Tod, #5)\",eng,4.36,13282,13845,722,179,422,1758,3420,8066,https://images.gr-assets.com/books/1268256304l/7818881.jpg,https://images.gr-assets.com/books/1268256304s/7818881.jpg\n8963,149621,149621,876040,45,6161413,9780006161420.0,Alistair MacLean,1963.0,Ice Station Zebra,Ice Station Zebra,eng,3.95,12689,13174,197,83,522,3386,5182,4001,https://images.gr-assets.com/books/1364039405l/149621.jpg,https://images.gr-assets.com/books/1364039405s/149621.jpg\n8964,4059448,4059448,4106471,19,1400064996,9781400064990.0,Ronald C. White Jr.,2009.0,A. Lincoln: A Biography,A. Lincoln,en-US,4.22,8890,9269,312,136,303,1372,3019,4439,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425598216l/4059448.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8965,58033,58033,56540,15,451527291,9780451527300.0,\"William Shakespeare, Sylvan Barnet, Alvin Kernan, Russell Fraser\",1982.0,\"Four Great Tragedies: Hamlet, Othello, King Lear, Macbeth (Signet Classics)\",Four Great Tragedies: Hamlet / Othello / King Lear / Macbeth,en-US,4.41,12700,12856,69,148,238,1383,3557,7530,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386926911l/58033.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8966,373606,373606,2538,59,749935081,9780749935080.0,Susan Elizabeth Phillips,2004.0,Ain't She Sweet?,Ain't She Sweet,en-GB,4.05,15890,17843,1000,212,784,3617,6482,6748,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348293825l/373606.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8968,1931915,1931915,1934354,14,61134104,9780061134100.0,Neal Shusterman,2010.0,Bruiser,Bruiser,en-US,4.04,12499,13161,2005,203,563,2522,5054,4819,https://images.gr-assets.com/books/1318261800l/1931915.jpg,https://images.gr-assets.com/books/1318261800s/1931915.jpg\n8970,61915,61915,2277408,33,,9781886778540.0,Lois McMaster Bujold,1987.0,Falling Free,\"Falling Free (Vorkosigan Saga, #4)\",eng,3.82,12258,13812,495,218,704,3921,5418,3551,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922931l/61915.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8972,93808,93808,1575179,72,743296788,9780743296790.0,Jeffery Deaver,2006.0,The Cold Moon,\"The Cold Moon (Lincoln Rhyme, #7)\",en-US,4.05,11231,13092,649,91,341,2733,5642,4285,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437226585l/93808._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8973,9865,9865,1003150,82,009959241X,9780099592420.0,Salman Rushdie,1995.0,The Moor's Last Sigh,The Moor's Last Sigh,eng,3.92,9459,10731,510,147,583,2410,4406,3185,https://images.gr-assets.com/books/1359386233l/9865.jpg,https://images.gr-assets.com/books/1359386233s/9865.jpg\n8974,8584913,8584913,13454225,28,61732370,9780061732380.0,Gayle Tzemach Lemmon,2011.0,\"The Dressmaker of Khair Khana: Five Sisters, One Remarkable Family, and the Woman Who Risked Everything to Keep Them Safe\",\"The Dressmaker of Khair Khana: Five Sisters, One Remarkable Family, and the Woman Who Risked Everything to Keep Them Safe\",eng,3.69,10365,12204,2007,210,973,3754,4680,2587,https://images.gr-assets.com/books/1279213493l/8584913.jpg,https://images.gr-assets.com/books/1279213493s/8584913.jpg\n8975,45760,8822819,867251,42,393313964,9780393313960.0,David Foster Wallace,1988.0,Girl with Curious Hair,Girl With Curious Hair,,3.89,5434,10005,683,113,483,2418,4399,2592,https://images.gr-assets.com/books/1350027419l/45760.jpg,https://images.gr-assets.com/books/1350027419s/45760.jpg\n8976,39664,39664,24951203,37,896214400,9780896214410.0,Stephen King,1982.0,The Shawshank Redemption,Rita Hayworth and Shawshank Redemption: A Story from Different Seasons,eng,4.52,11499,12882,788,16,115,1003,3776,7972,https://images.gr-assets.com/books/1315100686l/39664.jpg,https://images.gr-assets.com/books/1315100686s/39664.jpg\n8978,121792,121792,1429035,20,1417642122,9781417642120.0,Bill Watterson,1991.0,The Revenge of the Baby-Sat: A Calvin and Hobbes Collection,The Revenge of the Baby-Sat,,4.71,11503,12946,206,12,40,570,2428,9896,https://images.gr-assets.com/books/1384734025l/121792.jpg,https://images.gr-assets.com/books/1384734025s/121792.jpg\n8979,162823,162823,26578013,294,1904633684,9781904633690.0,Arthur Conan Doyle,1927.0,The Case-Book of Sherlock Holmes,The Case-Book of Sherlock Holmes,eng,4.2,11535,14613,575,58,320,2549,5378,6308,https://images.gr-assets.com/books/1316863480l/162823.jpg,https://images.gr-assets.com/books/1316863480s/162823.jpg\n8980,2508164,2508164,2724936,40,316113573,9780316113570.0,Tonya Hurley,2008.0,Ghostgirl,\"Ghostgirl (Ghostgirl, #1)\",eng,3.28,13779,15083,1232,1354,2476,4723,3580,2950,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442759570l/2508164._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8981,18143968,18143968,25491291,45,147674906X,9781476749070.0,\"Mary Higgins Clark, Alafair Burke\",2014.0,I've Got You Under My Skin,\"I've Got You Under My Skin (Under Suspicion, #1)\",eng,3.75,8882,11871,1222,261,936,3344,4358,2972,https://images.gr-assets.com/books/1397768065l/18143968.jpg,https://images.gr-assets.com/books/1397768065s/18143968.jpg\n8982,2147714,2147714,2153206,10,1401216862,9781401216860.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Aaron Alexovich, Andrew Pepoy\",2008.0,\"Fables, Volume 10: The Good Prince\",\"Fables, Vol. 10: The Good Prince\",eng,4.37,13566,13740,570,92,200,1541,4658,7249,https://images.gr-assets.com/books/1375393788l/2147714.jpg,https://images.gr-assets.com/books/1375393788s/2147714.jpg\n8983,1268348,1268348,3192862,31,385518684,9780385518680.0,Barbara Delinsky,2008.0,The Secret Between Us,The Secret Between Us,,3.71,12168,12674,797,197,944,3968,4839,2726,https://images.gr-assets.com/books/1320407845l/1268348.jpg,https://images.gr-assets.com/books/1320407845s/1268348.jpg\n8984,981161,981161,966050,34,446359688,9780446359690.0,\"Larry Bond, Patrick Larkin\",1989.0,Red Phoenix,Red Phoenix (Red Phoenix #1),eng,3.98,10098,10961,111,125,455,2591,4160,3630,https://images.gr-assets.com/books/1298859399l/981161.jpg,https://images.gr-assets.com/books/1298859399s/981161.jpg\n8985,6678884,6678884,6874087,46,055380717X,9780553807170.0,Linwood Barclay,2010.0,Never Look Away,Never Look Away,eng,3.99,10893,12736,1093,150,469,2683,5523,3911,https://images.gr-assets.com/books/1320510305l/6678884.jpg,https://images.gr-assets.com/books/1320510305s/6678884.jpg\n8986,2983562,2983562,3229092,53,553807137,9780553807130.0,Dean Koontz,2008.0,Your Heart Belongs to Me,Your Heart Belongs to Me,eng,3.34,12456,13630,1066,750,2150,4712,3766,2252,https://images.gr-assets.com/books/1320422724l/2983562.jpg,https://images.gr-assets.com/books/1320422724s/2983562.jpg\n8987,32428,25553227,442704,60,425136981,9780425136980.0,\"Leigh Nichols, Dean Koontz\",1987.0,Shadow Fires,Shadow Fires,eng,3.77,9490,11663,260,182,789,3662,3917,3113,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389299859l/32428.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8988,891593,891593,3102331,31,7256752,9780007256750.0,Naomi Novik,2008.0,\"Victory of Eagles (Temeraire, #5)\",\"Victory of Eagles (Temeraire, #5)\",en-GB,4.01,11444,14439,838,55,467,3136,6411,4370,https://images.gr-assets.com/books/1327942237l/891593.jpg,https://images.gr-assets.com/books/1327942237s/891593.jpg\n8989,300044,300044,853422,21,552548928,9780552548920.0,Malorie Blackman,2003.0,\"Knife Edge (Noughts and Crosses, #2)\",\"Knife Edge (Noughts & Crosses, #2)\",,4.06,11696,12396,449,84,450,2511,4896,4455,https://images.gr-assets.com/books/1364405912l/300044.jpg,https://images.gr-assets.com/books/1364405912s/300044.jpg\n8990,15818164,15818164,21545770,31,006199104X,9780061991040.0,\"James Rollins, Rebecca Cantrell\",2013.0,The Blood Gospel: The Order of the Sanguines Series,\"The Blood Gospel (The Order of the Sanguines, #1)\",en-CA,3.97,10424,12609,1480,316,695,2489,4636,4473,https://images.gr-assets.com/books/1357605320l/15818164.jpg,https://images.gr-assets.com/books/1357605320s/15818164.jpg\n8992,109520,109520,1631,24,60817321,9780060817330.0,Josh Kilmer-Purcell,2006.0,I Am Not Myself These Days,I Am Not Myself These Days,eng,3.96,9963,10661,860,179,581,2394,3873,3634,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348668501l/109520.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8994,13030356,13030356,18193670,46,1439102430,9781439102440.0,Kathy Reichs,2012.0,Bones Are Forever,\"Bones Are Forever (Temperance Brennan, #15)\",eng,3.86,12132,14929,1257,127,736,4053,6127,3886,https://images.gr-assets.com/books/1333675935l/13030356.jpg,https://images.gr-assets.com/books/1333675935s/13030356.jpg\n8995,8087,8087,2321293,10,441012396,9780441012400.0,Robin McKinley,1993.0,Deerskin,Deerskin,en-US,3.88,15982,17728,1124,620,1328,3806,5810,6164,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1405919760l/8087.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8996,4339,4339,8018,51,679735259,9780679735250.0,Michael Herr,1977.0,Dispatches,Dispatches,en-GB,4.24,10383,11599,751,141,341,1629,3982,5506,https://images.gr-assets.com/books/1343099128l/4339.jpg,https://images.gr-assets.com/books/1343099128s/4339.jpg\n8997,8755555,8755555,7165313,79,307593495,9780307593500.0,\"Henning Mankell, Laurie Thompson\",2009.0,Handen,\"The Troubled Man (Kurt Wallander, #10)\",eng,3.98,9252,11721,1208,124,479,2431,5189,3498,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388190179l/8755555.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n8998,292740,292740,2457130,37,2266071289,9782266071280.0,Lorenzo Carcaterra,1995.0,Sleepers,Sleepers,eng,4.18,9560,10772,553,73,304,1775,4088,4532,https://images.gr-assets.com/books/1327871596l/292740.jpg,https://images.gr-assets.com/books/1327871596s/292740.jpg\n8999,2474084,2474084,2481281,20,674024451,9780674024460.0,\"Walter Benjamin, Michael W. Jennings, Brigid Doherty, Edmund F.N. Jephcott, Rodney Livingstone, Howard Eiland, Thomas Y. Levin\",1936.0,Das Kunstwerk im Zeitalter seiner technischen Reproduzierbarkeit,\"The Work of Art in the Age of Its Technological Reproducibility, and Other Writings on Media\",eng,4.05,9875,10077,55,335,604,1853,2744,4541,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348198131l/2474084.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9000,43357,43357,1493470,78,743484339,9780743484340.0,Mary Higgins Clark,1997.0,Pretend You Don't See Her,Pretend You Don't See Her,eng,3.86,12508,14186,445,88,606,4256,5511,3725,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348174494l/43357.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9001,6922622,6922622,7151172,18,61939897,9780061939890.0,\"Sarah Palin, Lynn Vincent, Dewey Whetsell\",2009.0,Going Rogue: An American Life,Going Rogue: An American Life,eng,3.28,10392,10697,1237,1618,1188,2747,2901,2243,https://images.gr-assets.com/books/1380033996l/6922622.jpg,https://images.gr-assets.com/books/1380033996s/6922622.jpg\n9002,402017,402017,391419,6,761117199,9780761117190.0,\"Anne Byrn, Anthony Loew\",1999.0,The Cake Mix Doctor,The Cake Mix Doctor,,3.95,9660,9730,102,308,653,2092,2793,3884,https://images.gr-assets.com/books/1404582048l/402017.jpg,https://images.gr-assets.com/books/1404582048s/402017.jpg\n9003,6457229,6457229,6647553,32,1416984488,9781416984480.0,Rick Yancey,2009.0,The Monstrumologist,\"The Monstrumologist (The Monstrumologist, #1)\",eng,3.89,12547,14734,2388,526,1115,2999,4951,5143,https://images.gr-assets.com/books/1307409930l/6457229.jpg,https://images.gr-assets.com/books/1307409930s/6457229.jpg\n9004,86524,86524,201695,24,679729453,9780679729460.0,Robert A. Caro,1982.0,The Path to Power,\"The Path to Power (The Years of Lyndon Johnson, #1)\",eng,4.42,10779,11325,606,227,258,957,2925,6958,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349023045l/86524.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9005,24903919,24903919,44319513,9,006232540X,9780062325400.0,Patricia Cornwell,2015.0,Depraved Heart,\"Depraved Heart (Kay Scarpetta, #23)\",,3.58,6609,11697,1349,532,1372,3392,3579,2822,https://images.gr-assets.com/books/1439833245l/24903919.jpg,https://images.gr-assets.com/books/1439833245s/24903919.jpg\n9006,116236,116236,815349,58,826328091,9780826328090.0,Forrest Carter,1976.0,The Education of Little Tree,The Education of Little Tree,,4.09,10632,11941,1373,238,558,2048,4096,5001,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348789987l/116236.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9007,6344423,6344423,6530623,31,373210027,9780373210020.0,Gena Showalter,2009.0,Intertwined,\"Intertwined (Intertwined, #1)\",eng,3.87,16399,17141,1196,597,1296,3781,5574,5893,https://images.gr-assets.com/books/1388656493l/6344423.jpg,https://images.gr-assets.com/books/1388656493s/6344423.jpg\n9008,46182,46182,1388157,42,99437597,9780099437600.0,Richard Brautigan,1968.0,In Watermelon Sugar,In Watermelon Sugar,eng,4.02,8532,9883,644,236,549,1865,3317,3916,https://images.gr-assets.com/books/1482476781l/46182.jpg,https://images.gr-assets.com/books/1482476781s/46182.jpg\n9009,13580846,13580846,19165758,14,,,\"Ali Novak, Fallzswimmer\",2012.0,My Life with the Walter Boys,My Life with the Walter Boys (My Life with the Walter Boys #1),eng,3.93,13515,15051,1509,385,1002,3293,4963,5408,https://images.gr-assets.com/books/1486398662l/13580846.jpg,https://images.gr-assets.com/books/1486398662s/13580846.jpg\n9010,71869,71869,79755,45,439858038,9780439858040.0,John Marsden,1997.0,Burning For Revenge,\"Burning For Revenge (Tomorrow, #5)\",eng,4.18,11616,12913,275,44,284,2175,5207,5203,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388214820l/71869.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9011,7967299,7967299,11989242,9,1550229788,9781550229780.0,Crissy Calhoun,2010.0,Love You to Death: The Unofficial Companion to The Vampire Diaries,Love You to Death: The Unofficial Companion to the Vampire Diaries,en-US,4.38,8458,8484,44,262,289,1000,1381,5552,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442393512l/7967299._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9013,9182478,9182478,8767007,13,1606841440,9781606841440.0,Myra McEntire,2011.0,Hourglass,\"Hourglass (Hourglass, #1)\",eng,3.8,17572,18437,2474,622,1449,4501,6245,5620,https://images.gr-assets.com/books/1360175970l/9182478.jpg,https://images.gr-assets.com/books/1360175970s/9182478.jpg\n9014,760025,760025,746122,34,71373586,9780071373590.0,\"Al Ries, Jack Trout\",1980.0,Positioning: The Battle for Your Mind,Positioning: The Battle for Your Mind: How to Be Seen and Heard in the Overcrowded Marketplace,,4.06,9344,10002,252,205,448,1901,3410,4038,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348023850l/760025.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9018,2437710,2437710,2444898,24,1559363304,9781559363300.0,Tracy Letts,2008.0,August: Osage County,August: Osage County,eng,4.2,11023,11895,692,221,486,1693,3838,5657,https://images.gr-assets.com/books/1354209733l/2437710.jpg,https://images.gr-assets.com/books/1354209733s/2437710.jpg\n9019,10090,10090,1023122,20,886779065,9780886779060.0,Tad Williams,1999.0,Mountain of Black Glass,\"Mountain of Black Glass (Otherland, #3)\",en-US,4.04,11576,12284,178,124,531,2480,4750,4399,https://images.gr-assets.com/books/1309992323l/10090.jpg,https://images.gr-assets.com/books/1309992323s/10090.jpg\n9021,24929,24929,1130986,18,60988649,9780060988650.0,\"Gregory Maguire, Douglas Smith\",2001.0,Lost,Lost,eng,2.8,12534,12937,921,1749,3377,4518,2237,1056,https://images.gr-assets.com/books/1407711681l/24929.jpg,https://images.gr-assets.com/books/1407711681s/24929.jpg\n9022,239239,239239,1688160,61,312858868,9780312858860.0,Christopher Priest,1995.0,The Prestige,The Prestige,eng,3.87,11701,13806,1520,180,760,3362,5815,3689,https://images.gr-assets.com/books/1414195709l/239239.jpg,https://images.gr-assets.com/books/1414195709s/239239.jpg\n9023,1503274,1503274,2239187,49,023070395X,9780230703960.0,Donald McCaig,2007.0,Rhett Butler's People,Rhett Butler's People,,3.7,12299,14281,1671,727,1375,3588,4402,4189,https://images.gr-assets.com/books/1327920861l/1503274.jpg,https://images.gr-assets.com/books/1327920861s/1503274.jpg\n9024,72003,72003,23685785,14,1559362316,9781559362310.0,Tony Kushner,1993.0,Angels in America:  A Gay Fantasia on National Themes,Angels in America,eng,4.29,10271,11385,367,226,390,1416,3190,6163,https://images.gr-assets.com/books/1170797663l/72003.jpg,https://images.gr-assets.com/books/1170797663s/72003.jpg\n9025,5942,5942,832960,58,375724370,9780375724370.0,Michael Ondaatje,2000.0,Anil's Ghost,Anil's Ghost,eng,3.54,11184,12605,1025,338,1340,4228,4590,2109,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924095l/5942.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9026,268559,268559,2034554,52,553582933,9780553582930.0,Dean Koontz,1993.0,Winter Moon,Winter Moon,eng,3.8,12843,13694,324,195,863,4160,4680,3796,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347808490l/268559.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9027,20603820,20603820,28204900,9,,,Kristen Ashley,2014.0,The Will,\"The Will (Magdalene, #1)\",eng,4.3,11969,22347,2562,437,762,2517,6618,12013,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390276224l/20603820.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9028,20706320,20706320,26476394,32,316406813,9780316406820.0,\"Chris Colfer, Brandon Dorman\",2014.0,A Grimm Warning,\"A Grimm Warning (The Land of Stories, #3)\",eng,4.54,13695,15179,1232,87,182,1153,3749,10008,https://images.gr-assets.com/books/1391709728l/20706320.jpg,https://images.gr-assets.com/books/1391709728s/20706320.jpg\n9030,12583975,18692741,17594985,13,,,Melody Anne,2011.0,The Billionaire Wins the Game,\"The Billionaire Wins the Game (Billionaire Bachelors, #1)\",eng,3.93,11562,17585,874,447,1078,3968,5899,6193,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328316441l/12583975.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9031,10378106,10378106,15281561,24,345519515,9780345519510.0,Maya Banks,2011.0,Never Love a Highlander,\"Never Love a Highlander (McCabe Trilogy, #3)\",eng,4.25,17359,18777,1051,129,475,2781,6587,8805,https://images.gr-assets.com/books/1348707357l/10378106.jpg,https://images.gr-assets.com/books/1348707357s/10378106.jpg\n9032,4099,4099,7809,17,020161622X,9780201616220.0,\"Andrew Hunt, Dave Thomas\",1999.0,The Pragmatic Programmer: From Journeyman to Master,The Pragmatic Programmer: From Journeyman to Master,en-US,4.31,9416,10466,549,67,229,1218,3841,5111,https://images.gr-assets.com/books/1401432508l/4099.jpg,https://images.gr-assets.com/books/1401432508s/4099.jpg\n9033,1421046,1421046,6317556,4,9799822939,,Dee Lestari,2004.0,Supernova: Petir,Supernova: Petir,ind,3.85,7068,7437,626,88,444,2028,2799,2078,https://images.gr-assets.com/books/1404292897l/1421046.jpg,https://images.gr-assets.com/books/1404292897s/1421046.jpg\n9034,25877663,25877663,45754030,19,356504263,9780356504260.0,James S.A. Corey,2016.0,Babylon's Ashes,\"Babylon's Ashes (The Expanse, #6)\",eng,4.18,8397,13450,1073,57,314,1941,5978,5160,https://images.gr-assets.com/books/1442247299l/25877663.jpg,https://images.gr-assets.com/books/1442247299s/25877663.jpg\n9035,15762975,15762975,21464713,12,,,Katee Robert,2012.0,\"Wrong Bed, Right Guy\",\"Wrong Bed, Right Guy (Come Undone, #1)\",eng,3.77,17710,18475,962,370,1231,5256,7087,4531,https://images.gr-assets.com/books/1345817565l/15762975.jpg,https://images.gr-assets.com/books/1345817565s/15762975.jpg\n9036,24724,24724,3159281,24,142003808,9780142003800.0,\"T.C. Boyle, Richard Poe\",2003.0,Drop City,Drop City,eng,3.83,9313,9982,911,158,617,2465,4226,2516,https://images.gr-assets.com/books/1327936131l/24724.jpg,https://images.gr-assets.com/books/1327936131s/24724.jpg\n9037,3710603,3710603,14055293,11,1401219217,9781401219220.0,\"Brian K. Vaughan, Pia Guerra, José Marzán Jr., Pamela Rambo, Clem Robins, J.G. Jones\",2008.0,Y: The Last Man - The Deluxe Edition Book One,Y: The Last Man - The Deluxe Edition Book One,eng,4.36,10368,11304,566,78,238,1188,3807,5993,https://images.gr-assets.com/books/1288024278l/3710603.jpg,https://images.gr-assets.com/books/1288024278s/3710603.jpg\n9038,29486,29486,29939,21,1592402739,9781592401820.0,Diablo Cody,2005.0,Candy Girl,Candy Girl: A Year in the Life of an Unlikely Stripper,en-US,3.54,10669,11062,1574,291,1196,3796,3812,1967,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1425241907l/29486.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9039,3491072,3491072,3532508,7,,,أنيس منصور,1963.0,حول العالم في 200 يوم,حول العالم في 200 يوم,ara,4.08,8630,9130,710,186,442,1628,3077,3797,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1213949039l/3491072.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9040,24396884,24396884,43981459,24,316407038,9780316407040.0,\"James Patterson, Michael Ledwidge\",2015.0,Alert,\"Alert (Michael Bennett, #8)\",eng,3.93,6976,11378,889,197,603,2562,4422,3594,https://images.gr-assets.com/books/1424306640l/24396884.jpg,https://images.gr-assets.com/books/1424306640s/24396884.jpg\n9042,18310201,18310201,25807269,10,385352093,9780385352090.0,Peter Heller,2014.0,The Painter,The Painter,eng,3.76,8666,10145,1389,330,779,2455,4005,2576,https://images.gr-assets.com/books/1409595558l/18310201.jpg,https://images.gr-assets.com/books/1409595558s/18310201.jpg\n9043,975119,975119,533410,29,440114330,9780440114340.0,Steven Spielberg,1977.0,Close Encounters of the Third Kind,Close Encounters Of The Third Kind,eng,4.09,10351,10626,78,153,467,2096,3422,4488,https://images.gr-assets.com/books/1396112231l/975119.jpg,https://images.gr-assets.com/books/1396112231s/975119.jpg\n9044,43780,43780,5192748,14,679410503,9780679410510.0,\"Anne Rice, Robert O'Keefe, F. Murray Abraham, Michael York, Kate Nelligan, David Purdham\",1989.0,The Vampire Chronicles,\"Vampire Chronicles: Interview with the Vampire, The Vampire Lestat, The Queen of the Damned (Anne Rice)\",eng,4.25,9592,11241,182,201,382,1559,3320,5779,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387700911l/43780.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9046,12710035,12710035,17843529,15,1402245858,9781402245860.0,Olivia Cunning,2013.0,Hot Ticket,\"Hot Ticket (Sinners on Tour, #3)\",eng,4.28,20891,22197,1386,139,510,3031,7867,10650,https://images.gr-assets.com/books/1348005153l/12710035.jpg,https://images.gr-assets.com/books/1348005153s/12710035.jpg\n9049,395220,395220,1252977,16,895941228,9780895941220.0,Audre Lorde,1982.0,Zami: A New Spelling of My Name,Zami: A New Spelling of My Name,eng,4.2,9549,9710,417,218,347,1384,3101,4660,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388344915l/395220.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9051,1376220,1376220,1489929,4,9793210605,,Tere Liye,2005.0,Hafalan Shalat Delisa,Hafalan Shalat Delisa,ind,4.2,7737,7891,715,104,256,1281,2539,3711,https://images.gr-assets.com/books/1303475676l/1376220.jpg,https://images.gr-assets.com/books/1303475676s/1376220.jpg\n9052,16061295,16061295,21849143,13,1250045630,9781250045640.0,Darynda Jones,2014.0,Sixth Grave on the Edge,\"Sixth Grave on the Edge (Charley Davidson, #6)\",en-US,4.38,17022,19887,1941,86,238,2105,6977,10481,https://images.gr-assets.com/books/1396827029l/16061295.jpg,https://images.gr-assets.com/books/1396827029s/16061295.jpg\n9053,17465470,17465470,21984888,25,399163603,9780399163610.0,John Flanagan,2013.0,\"The Royal Ranger (Ranger's Apprentice, #12)\",\"The Royal Ranger (Ranger's Apprentice, #12)\",,4.4,11359,14710,1105,131,333,1527,4264,8455,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389661638l/17465470.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9054,10364994,10364994,15268147,36,374271569,9780374271560.0,Amy Waldman,2011.0,The Submission,The Submission,eng,3.66,10096,11169,1744,293,969,3149,4592,2166,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442936732l/10364994._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9055,25790,25790,26510,6,618640142,9780618640140.0,\"Alan Lee, Ian McKellen\",2005.0,The Lord of the Rings Sketchbook,The Lord of the Rings Sketchbook,eng,4.26,9067,9151,65,268,357,1245,2123,5158,https://images.gr-assets.com/books/1416453209l/25790.jpg,https://images.gr-assets.com/books/1416453209s/25790.jpg\n9056,7234828,7234828,8124623,15,312575939,9780312575940.0,Jenna Black,2010.0,Glimmerglass,\"Glimmerglass (Faeriewalker, #1)\",en-US,3.76,18605,19121,1293,701,1629,4846,6322,5623,https://images.gr-assets.com/books/1408500427l/7234828.jpg,https://images.gr-assets.com/books/1408500427s/7234828.jpg\n9057,6987558,6987558,7229722,45,1846054729,9781846054720.0,\"James Patterson, Howard Roughan\",2010.0,Don't Blink,Don't Blink,eng,3.79,9689,12627,1076,196,780,3685,4806,3160,https://images.gr-assets.com/books/1328433484l/6987558.jpg,https://images.gr-assets.com/books/1328433484s/6987558.jpg\n9058,320700,320700,3077645,2,345444078,9780345444070.0,\"Stephen Jones, H.P. Lovecraft, Kim Newman, Brian Mooney, Nicholas Royle, David Langford, Michael Marshall Smith, Brian Lumley, Neil Gaiman, Basil Copper, Jack Yeovil, Guy N. Smith, Adrian Cole, D.F. Lewis, Ramsey Campbell, David Sutton, Peter Tremayne\",1994.0,The Shadows Over Innsmouth,Shadows over Innsmouth,eng,4.43,10663,10727,53,33,135,1150,3328,6081,https://images.gr-assets.com/books/1293833116l/320700.jpg,https://images.gr-assets.com/books/1293833116s/320700.jpg\n9059,55018,55018,3125163,37,1416548483,9781416548480.0,James Lee Burke,2007.0,The Tin Roof Blowdown,\"The Tin Roof Blowdown (Dave Robicheaux, #16)\",eng,4.17,10432,11277,753,111,323,1786,4363,4694,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749351l/55018.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9060,6389257,6389257,6577554,62,1847673767,9781847673760.0,Nick Cave,2009.0,The Death of Bunny Munro,The Death of Bunny Munro,eng,3.43,9096,10858,817,533,1336,3622,3654,1713,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348052106l/6389257.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9061,348564,348564,1132,43,60097914,9780060097910.0,\"Jeff Brown, Scott Nash, Macky Pamintuan\",1964.0,Flat Stanley,\"Flat Stanley (Flat Stanley, #1)\",eng,3.82,11078,12139,750,363,987,3247,3367,4175,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428077431l/348564.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9062,8070049,8070049,12771315,15,1426858329,9781426858320.0,Julie Kagawa,2010.0,\"Winter's Passage (Iron Fey, #1.5)\",\"Winter's Passage (Iron Fey, #1.5)\",eng,3.96,20313,21508,1286,177,1154,5547,7100,7530,https://images.gr-assets.com/books/1271790569l/8070049.jpg,https://images.gr-assets.com/books/1271790569s/8070049.jpg\n9063,734542,734542,2324679,24,688149006,9780688149000.0,Donald Crews,1978.0,Freight Train (Caldecott Collection),Freight Train,,4.04,13380,13722,464,243,844,2931,3781,5923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348955169l/734542.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9064,23719479,23719479,43328972,12,547250258,9780547250250.0,Kate Clifford Larson,2015.0,Rosemary: The Hidden Kennedy Daughter,Rosemary: The Hidden Kennedy Daughter,en-CA,3.78,9819,12735,1590,260,670,3576,5371,2858,https://images.gr-assets.com/books/1439253720l/23719479.jpg,https://images.gr-assets.com/books/1439253720s/23719479.jpg\n9065,9592213,9592213,14479209,15,60755806,9780060755800.0,Jennifer Haigh,2011.0,Faith,Faith,en-US,3.83,10610,11866,1702,163,556,2972,5577,2598,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442288818l/9592213._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9066,38529,38529,38291,25,60774126,9780060774130.0,Lynsay Sands,2007.0,Bite Me If You Can,Bite Me If You Can (Argeneau #6),en-US,4.27,16680,17732,461,83,408,2739,5965,8537,https://images.gr-assets.com/books/1351280801l/38529.jpg,https://images.gr-assets.com/books/1351280801s/38529.jpg\n9068,237114,237114,1492888,67,743484304,9780743484300.0,Mary Higgins Clark,1996.0,Moonlight Becomes You,Moonlight Becomes You,eng,3.8,12657,13945,365,80,701,4518,5226,3420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348165304l/237114.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9069,65070,65070,63141,21,439771242,9780439771240.0,Ann M. Martin,2002.0,A Corner of the Universe,A Corner of the Universe,eng,4.06,11914,12484,1105,167,537,2563,4324,4893,https://images.gr-assets.com/books/1400681323l/65070.jpg,https://images.gr-assets.com/books/1400681323s/65070.jpg\n9070,177515,177515,4030673,27,316154385,9780316154380.0,Alice Hoffman,2005.0,The Ice Queen,The Ice Queen,en-US,3.51,12922,14141,1396,398,1632,4885,4864,2362,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684298l/177515._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9071,473623,473623,310738,33,749732105,9780749732100.0,Enid Blyton,1946.0,The Folk of Faraway Tree,\"The Folk of the Faraway Tree (The Faraway Tree, #3)\",eng,4.32,11693,12578,169,158,293,1766,3478,6883,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175048298l/473623.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9072,24189224,24189224,26690360,46,385353774,9780385353780.0,Garth Risk Hallberg,2015.0,City on Fire,City on Fire,eng,3.42,8553,10324,1891,624,1468,3045,3318,1869,https://images.gr-assets.com/books/1422969880l/24189224.jpg,https://images.gr-assets.com/books/1422969880s/24189224.jpg\n9073,896623,896623,979799,53,380005255,9780380005250.0,Kathleen E. Woodiwiss,1972.0,The Flame and the Flower,The Flame and the Flower,,4.09,12447,13904,652,383,674,2424,4263,6160,https://images.gr-assets.com/books/1305316569l/896623.jpg,https://images.gr-assets.com/books/1305316569s/896623.jpg\n9074,13809,13809,1003260,35,380803275,9780380803280.0,Raymond E. Feist,2004.0,Exile's Return,\"Exile's Return (Conclave of Shadows, #3)\",,4.0,10840,11744,104,58,430,2815,4625,3816,https://images.gr-assets.com/books/1409594776l/13809.jpg,https://images.gr-assets.com/books/1409594776s/13809.jpg\n9075,7199667,7199667,7867989,7,1599904780,9781599904790.0,Jessica Day George,2010.0,Princess of Glass,\"Princess of Glass (The Princesses of Westfalin Trilogy, #2)\",eng,4.03,17052,17729,1669,145,694,3966,6525,6399,https://images.gr-assets.com/books/1397878579l/7199667.jpg,https://images.gr-assets.com/books/1397878579s/7199667.jpg\n9076,2350129,2350129,2356840,5,402366174,9780402366170.0,The Church of Jesus Christ of Latter-day Saints,2004.0,Preach My Gospel (A Guide to Missionary Service),Preach My Gospel: A Guide To Missionary Service,,4.71,9891,10194,206,105,83,463,1365,8178,https://images.gr-assets.com/books/1399612262l/2350129.jpg,https://images.gr-assets.com/books/1399612262s/2350129.jpg\n9077,13316328,13316328,13380425,44,547738471,9780547738480.0,Jasper Fforde,2010.0,The Last Dragonslayer,\"The Last Dragonslayer (The Chronicles of Kazam, #1)\",eng,3.86,12033,15781,2408,213,722,3942,7092,3812,https://images.gr-assets.com/books/1346791460l/13316328.jpg,https://images.gr-assets.com/books/1346791460s/13316328.jpg\n9078,355190,355190,2310058,65,039474067X,9780394740680.0,Edward Said,1978.0,Orientalism,Orientalism,eng,4.07,10458,11791,648,199,527,1925,4683,4457,https://images.gr-assets.com/books/1409777781l/355190.jpg,https://images.gr-assets.com/books/1409777781s/355190.jpg\n9079,450836,19860524,2885501,6,1573458716,9781573458720.0,Gerald N. Lund,1991.0,\"The Work and the Glory, Vol. 2: Like a Fire Burning\",\"Like a Fire Burning (The Work and the Glory, #2)\",,4.27,9944,11017,251,37,235,1582,4051,5112,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1197031321l/450836.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9080,227492,227492,324932,9,451201027,9780451201030.0,Eric Jerome Dickey,1997.0,Friends and Lovers,Friends and Lovers,eng,4.21,8944,9107,125,45,258,1645,2977,4182,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391936584l/227492.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9081,807968,807968,1982773,64,60514094,9780060514100.0,Georgia Byng,2002.0,Molly Moon's Incredible Book of Hypnotism,\"Molly Moon's Incredible Book of Hypnotism (Molly Moon, #1)\",eng,3.87,16311,17405,783,539,1179,4178,5613,5896,https://images.gr-assets.com/books/1330953305l/807968.jpg,https://images.gr-assets.com/books/1330953305s/807968.jpg\n9082,144773,144773,955313,44,312286252,9780312286260.0,Matthew Reilly,1996.0,Contest,Contest,,3.95,10113,11245,510,163,660,2653,3894,3875,https://images.gr-assets.com/books/1311984048l/144773.jpg,https://images.gr-assets.com/books/1311984048s/144773.jpg\n9083,4261,4261,7951,42,1573223565,9781573223560.0,Nick Hornby,2003.0,31 Songs,Songbook,en-US,3.56,8999,11085,485,363,1032,3811,3744,2135,https://images.gr-assets.com/books/1417984618l/4261.jpg,https://images.gr-assets.com/books/1417984618s/4261.jpg\n9084,32987,32987,1040051,21,812975294,9780812975290.0,Tom Brokaw,1998.0,The Greatest Generation,The Greatest Generation,,3.99,12346,13555,908,183,643,2922,5208,4599,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924595l/32987.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9085,581125,581125,63086,40,375421874,9780375421880.0,Philip K. Dick,1956.0,The Minority Report,The Minority Report,,3.82,12245,13408,599,60,535,3945,6078,2790,https://images.gr-assets.com/books/1390719396l/581125.jpg,https://images.gr-assets.com/books/1390719396s/581125.jpg\n9086,74270,74270,2495,22,553575422,9780553575420.0,Lynn Flewelling,1996.0,Luck in the Shadows,\"Luck in the Shadows (Nightrunner, #1)\",eng,4.08,13781,14706,791,257,636,2589,5368,5856,https://images.gr-assets.com/books/1486846979l/74270.jpg,https://images.gr-assets.com/books/1486846979s/74270.jpg\n9087,1258121,1258121,1246936,25,618750436,9780618750440.0,Jacqueline Davies,2007.0,The Lemonade War,\"The Lemonade War (The Lemonade War, #1)\",en-US,3.88,10293,11285,1220,236,665,2841,3998,3545,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347342013l/1258121.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9088,948526,948526,72403,54,067982412X,9780679824120.0,\"Mary Pope Osborne, Salvatore Murdocca\",1993.0,\"The Knight at Dawn (Magic Tree House, #2)\",\"The Knight at Dawn (Magic Tree House, #2)\",eng,3.86,13606,14084,658,275,989,3968,3995,4857,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179389l/948526.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9090,4566934,4566934,4616266,3,,9789792239840.0,Ilana Tan,2008.0,Winter in Tokyo,Winter in Tokyo,ind,4.06,8935,8981,483,102,416,1879,2987,3597,https://images.gr-assets.com/books/1444921235l/4566934.jpg,https://images.gr-assets.com/books/1444921235s/4566934.jpg\n9092,13620,13620,15760,32,1421506270,9781421506270.0,\"Tsugumi Ohba, Takeshi Obata\",2005.0,デスノート #6 (Desu Nōto) Kōkan (交換),\"Death Note, Vol. 6: Give-and-Take (Death Note, #6)\",eng,4.39,14986,15664,390,62,285,1840,4778,8699,https://images.gr-assets.com/books/1485574610l/13620.jpg,https://images.gr-assets.com/books/1485574610s/13620.jpg\n9093,7736086,7736086,21446358,13,1423116968,9781423116970.0,\"Rick Riordan, Robert Venditti, José Villarrubia, Attila Futaki\",2010.0,The Lightning Thief: The Graphic Novel,\"The Lightning Thief: The Graphic Novel (Percy Jackson and the Olympians, #1)\",eng,3.95,12380,13670,1009,407,1087,3007,3500,5669,https://images.gr-assets.com/books/1347899366l/7736086.jpg,https://images.gr-assets.com/books/1347899366s/7736086.jpg\n9095,57736,57736,977324,34,078572902X,9780785729020.0,W.P. Kinsella,1982.0,Shoeless Joe,Shoeless Joe,eng,3.96,9315,11053,704,280,545,2316,4116,3796,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348958247l/57736.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9096,241387,241387,233843,18,1595540547,9781595540550.0,Charles Martin,2006.0,When Crickets Cry,When Crickets Cry,en-US,4.23,9668,11364,1731,139,377,1614,3873,5361,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437617373l/241387._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9097,21913812,21913812,41247321,47,1451697384,9781451697380.0,Naomi Klein,2014.0,This Changes Everything: Capitalism vs. The Climate,This Changes Everything: Capitalism vs. The Climate,eng,4.17,7652,10037,1187,245,352,1374,3586,4480,https://images.gr-assets.com/books/1418103804l/21913812.jpg,https://images.gr-assets.com/books/1418103804s/21913812.jpg\n9098,10439703,10439703,15344305,23,61714321,9780061714320.0,Richard Kadrey,2011.0,Aloha from Hell,\"Aloha from Hell (Sandman Slim, #3)\",en-US,4.01,10713,12770,569,48,408,2825,5639,3850,https://images.gr-assets.com/books/1302271758l/10439703.jpg,https://images.gr-assets.com/books/1302271758s/10439703.jpg\n9100,122781,122781,806366,15,006095955X,9780060959560.0,Peter Jenkins,1979.0,A Walk Across America,A Walk Across America,en-US,4.02,9218,9558,544,150,433,1974,3474,3527,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442192805l/122781._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9101,13649056,13649056,19268425,3,,2940014631810.0,Olivia Cunning,2012.0,Try Me,\"Try Me (One Night with Sole Regret, #1)\",eng,3.87,21524,22299,1167,391,1356,5670,8147,6735,https://images.gr-assets.com/books/1347142317l/13649056.jpg,https://images.gr-assets.com/books/1347142317s/13649056.jpg\n9102,105687,105687,87220,14,034544177X,9780345441780.0,Michael Patrick MacDonald,1999.0,All Souls: A Family Story from Southie,All Souls: A Family Story from Southie,eng,4.07,8344,9402,780,82,320,1815,3813,3372,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387743100l/105687.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9103,15561,15561,2587875,51,1857231031,9781857231040.0,Terry Brooks,1987.0,Wizard at Large ,\"Wizard at Large (Magic Kingdom of Landover, #3)\",,3.81,12580,13687,157,86,835,4260,4984,3522,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166673284l/15561.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9104,467032,467032,1152540,24,60795484,9780060795480.0,\"William March, Elaine Showalter\",1954.0,The Bad Seed ,The Bad Seed,eng,4.05,10765,11527,449,140,441,2471,4077,4398,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348354741l/467032.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9105,16279715,17902302,22380673,24,,9780988941910.0,Kim Karr,2013.0,Connected,\"Connected (Connections, #1)\",eng,4.11,10379,19576,2169,480,891,3004,6803,8398,https://images.gr-assets.com/books/1362012971l/16279715.jpg,https://images.gr-assets.com/books/1362012971s/16279715.jpg\n9106,9553503,9553503,14621064,32,1409522016,9781409522010.0,L.A. Weatherly,2011.0,Angel Fire,\"Angel Fire (Angel, #2)\",eng,4.06,13765,14909,852,310,813,2913,4553,6320,https://images.gr-assets.com/books/1329013097l/9553503.jpg,https://images.gr-assets.com/books/1329013097s/9553503.jpg\n9107,10870589,10870589,15785860,8,1414339364,9781414339370.0,Ira Wagler,2011.0,Growing up Amish,Growing Up Amish,eng,3.36,9085,10287,1074,445,1506,3887,2773,1676,https://images.gr-assets.com/books/1406514526l/10870589.jpg,https://images.gr-assets.com/books/1406514526s/10870589.jpg\n9109,22857396,29341925,41347747,9,,,J.  Daniels,2014.0,Sweet Addiction,\"Sweet Addiction (Sweet Addiction, #1)\",eng,4.11,10294,17613,1625,346,794,2768,6401,7304,https://images.gr-assets.com/books/1407086989l/22857396.jpg,https://images.gr-assets.com/books/1407086989s/22857396.jpg\n9110,13170021,13170021,18349336,16,1596434872,9781596434880.0,Steve Sheinkin,2012.0,Bomb: The Race to Build—and Steal—the World's Most Dangerous Weapon,Bomb: The Race to Build—and Steal—the World's Most Dangerous Weapon,eng,4.12,11164,11575,2395,346,506,1678,3946,5099,https://images.gr-assets.com/books/1424981656l/13170021.jpg,https://images.gr-assets.com/books/1424981656s/13170021.jpg\n9111,4364,4364,1121396,27,375703403,9780375703410.0,Suketu Mehta,2004.0,Maximum City: Bombay Lost and Found,Maximum City: Bombay Lost and Found,eng,3.91,7894,8417,629,126,428,1931,3523,2409,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439218170l/4364._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9113,10105,10105,12842,21,312352182,9780312352190.0,Carolly Erickson,1980.0,The Last Wife of Henry VIII,The Last Wife of Henry VIII,en-US,3.88,10172,10684,438,155,569,2798,4014,3148,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388632932l/10105.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9114,132314,132314,56399597,87,040405109X,9780404051100.0,Edgar Allan Poe,1849.0,The Complete Tales and Poems of Edgar Allan Poe,The Complete Tales and Poems,eng,4.48,3427,11869,556,47,146,1030,3493,7153,https://images.gr-assets.com/books/1388017636l/132314.jpg,https://images.gr-assets.com/books/1388017636s/132314.jpg\n9115,8286216,8286216,13134603,47,044656432X,9780446564330.0,\"Douglas Preston, Lincoln Child\",2011.0,Gideon's Sword,\"Gideon's Sword (Gideon Crew, #1)\",en-US,3.58,11227,12917,1160,439,1281,4071,4598,2528,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442260873l/8286216._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9116,31300,31300,937152,162,451199928,9780451199930.0,Agatha Christie,1964.0,A Caribbean Mystery,\"A Caribbean Mystery (Miss Marple, #10)\",eng,3.77,14459,17371,787,119,899,5710,6728,3915,https://images.gr-assets.com/books/1309280346l/31300.jpg,https://images.gr-assets.com/books/1309280346s/31300.jpg\n9119,43841,43841,6417933,13,345396685,9780345396690.0,Sharon Kay Penman,1994.0,When Christ and His Saints Slept,\"When Christ and His Saints Slept  (Henry II & Eleanor of Aquitaine, #1)\",eng,4.27,10761,11624,665,143,274,1528,4067,5612,https://images.gr-assets.com/books/1333577582l/43841.jpg,https://images.gr-assets.com/books/1333577582s/43841.jpg\n9120,533675,533675,521194,4,307021858,9780307021850.0,\"Eugene Bradley Coco, Ron Dias\",1992.0,Pinocchio (A Little Golden Book),Pinocchio,,4.33,10615,10627,25,130,358,1704,2158,6277,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561373472l/533675._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9121,13573419,13573419,19154394,4,034552666X,9780345526660.0,Peter F. Hamilton,2012.0,Great North Road,Great North Road,eng,4.06,8639,10962,1025,124,433,1948,4647,3810,https://images.gr-assets.com/books/1344371600l/13573419.jpg,https://images.gr-assets.com/books/1344371600s/13573419.jpg\n9125,502406,502406,1320588,27,1844285081,9781844285080.0,H.A. Rey,1947.0,Curious George Takes a Job,Curious George Takes a Job,,4.28,12254,12478,80,143,387,2150,2939,6859,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1175292343l/502406.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9126,106859,106859,102997,14,1563895285,9781563895290.0,\"Jeph Loeb, Tim Sale, Bjarne Hansen\",2001.0,Superman for All Seasons,Superman for All Seasons,en-US,4.08,10331,10792,316,153,492,2130,3600,4417,https://images.gr-assets.com/books/1343797123l/106859.jpg,https://images.gr-assets.com/books/1343797123s/106859.jpg\n9127,22995,22995,1144595,140,1585101435,9781585101440.0,\"Federico García Lorca, Antonio Sobejano-Moran, Paola Bianco\",1945.0,La casa de Bernarda Alba,La casa de Bernarda Alba,,3.77,9611,12070,420,248,942,3391,4274,3215,https://images.gr-assets.com/books/1328758570l/22995.jpg,https://images.gr-assets.com/books/1328758570s/22995.jpg\n9128,9065265,9065265,13943349,20,312546602,9780312546600.0,Sherrilyn Kenyon,2011.0,Retribution,\"Retribution (Dark-Hunter, #19)\",en-US,4.12,15771,18022,1097,198,822,3375,5841,7786,https://images.gr-assets.com/books/1315222730l/9065265.jpg,https://images.gr-assets.com/books/1315222730s/9065265.jpg\n9129,23960,23960,24880,34,99436922,9780099436930.0,Irvine Welsh,2001.0,Glue,Glue,eng,3.84,9184,10153,241,241,623,2605,3778,2906,https://images.gr-assets.com/books/1357448113l/23960.jpg,https://images.gr-assets.com/books/1357448113s/23960.jpg\n9130,17449197,17449197,24333509,21,1613125348,9781613125340.0,A.G. Howard,2014.0,Unhinged,\"Unhinged (Splintered, #2)\",eng,4.25,14445,16746,2387,152,545,2418,5404,8227,https://images.gr-assets.com/books/1366994000l/17449197.jpg,https://images.gr-assets.com/books/1366994000s/17449197.jpg\n9131,18161265,18161265,25521824,48,000735049X,9780007350490.0,Cecelia Ahern,2014.0,How to Fall in Love,How to Fall in Love,eng,4.02,9486,13026,1369,191,598,2694,4856,4687,https://images.gr-assets.com/books/1373279911l/18161265.jpg,https://images.gr-assets.com/books/1373279911s/18161265.jpg\n9134,132152,19169617,127292,68,310210062,9780310210060.0,\"Lettie B. Cowman, James Reimann\",1904.0,Streams in the Desert,Streams in the Desert,,4.39,5953,9335,219,104,234,1143,2249,5605,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347233117l/132152.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9136,13568619,13568619,19147213,26,,,\"Cassandra Clare, Joshua Lewis\",2013.0,The Shadowhunter's Codex,The Shadowhunter's Codex,eng,4.06,15497,18520,1575,232,895,3887,6056,7450,https://images.gr-assets.com/books/1358696072l/13568619.jpg,https://images.gr-assets.com/books/1358696072s/13568619.jpg\n9137,121809,121809,117259,6,1577344677,9781577344670.0,Chris Heimerdinger,1989.0,\"Tennis Shoes Among the Nephites (Tennis Shoes, #1)\",\"Tennis Shoes Among the Nephites (Tennis Shoes, #1)\",eng,4.01,13112,13340,679,411,574,2693,4514,5148,https://images.gr-assets.com/books/1442362440l/121809.jpg,https://images.gr-assets.com/books/1442362440s/121809.jpg\n9138,477338,477338,465559,22,738703915,9780738703920.0,Laurie Faria Stolarz,2003.0,Blue Is for Nightmares,\"Blue is for Nightmares (Blue is for Nightmares, #1)\",en-US,3.81,15848,16273,851,589,1396,3975,4919,5394,https://images.gr-assets.com/books/1350054787l/477338.jpg,https://images.gr-assets.com/books/1350054787s/477338.jpg\n9139,5417,5417,14960,4,517219026,9780517219030.0,Stephen King,1983.0,Three Complete Novels: Carrie/Salem's Lot/The Shining,Carrie / 'Salem's Lot / The Shining,eng,4.52,11063,11182,66,82,134,970,2715,7281,https://images.gr-assets.com/books/1376725117l/5417.jpg,https://images.gr-assets.com/books/1376725117s/5417.jpg\n9140,1541884,1541884,2492765,30,553806610,9780553806620.0,Kelley Armstrong,2008.0,Personal Demon,\"Personal Demon (Women of the Otherworld, #8)\",eng,4.06,16371,18169,614,109,616,3838,7043,6563,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388365750l/1541884.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9141,9329354,9329354,27679568,19,575097361,9780575097360.0,Brandon Sanderson,2011.0,\"The Way of Kings, Part 1\",\"The Way of Kings, Part 1 (The Stormlight Archive #1.1)\",eng,4.67,9792,10117,453,40,93,408,2078,7498,https://images.gr-assets.com/books/1357609842l/9329354.jpg,https://images.gr-assets.com/books/1357609842s/9329354.jpg\n9142,6517407,6517407,6709262,27,1439150001,9781439150010.0,Richard Paul Evans,2009.0,The Christmas List,The Christmas List,eng,4.17,10544,10763,899,99,363,1903,3669,4729,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442785267l/6517407._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9143,7252,7252,10385,15,60539097,9780060539090.0,\"Jenna Jameson, Neil Strauss\",2004.0,How to Make Love Like a Porn Star: A Cautionary Tale,How to Make Love Like a Porn Star: A Cautionary Tale,eng,3.75,9531,10201,820,222,913,2881,3398,2787,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924879l/7252.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9144,85321,85321,530174,47,446606243,9780446606240.0,Brad Meltzer,1997.0,The Tenth Justice,The Tenth Justice,,3.97,10037,10768,385,175,476,2326,4304,3487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348482612l/85321.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9146,7261549,7261549,8329667,27,7325940,9780007325950.0,Derek Landy,2010.0,Dark Days,\"Dark Days (Skulduggery Pleasant, #4)\",eng,4.45,12047,13263,560,43,143,1284,4148,7645,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348429914l/7261549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9147,228198,228198,9813531,25,451190548,9780451190540.0,Stephen King,1996.0,\"The Green Mile, Part 3: Coffey's Hands\",\"The Green Mile, Part 3: Coffey's Hands\",eng,4.5,12232,12698,141,30,146,1142,3464,7916,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640398l/228198.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9148,111306,111306,107202,28,821780654,9780821780660.0,Jacquelyn Frank,2006.0,Jacob,\"Jacob (Nightwalkers, #1)\",eng,4.02,17448,18356,872,490,983,3422,6187,7274,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1422991814l/111306.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9151,615233,615233,1283974,18,590442872,9780590442880.0,Norman Bridwell,1966.0,Clifford's Halloween (Clifford),Clifford's Halloween,eng,4.14,11164,11217,84,189,539,2325,2587,5577,https://images.gr-assets.com/books/1328835774l/615233.jpg,https://images.gr-assets.com/books/1328835774s/615233.jpg\n9152,531197,531197,3524192,33,375828192,9780375828200.0,\"Philip Pullman, John Lawrence\",2003.0,Lyra's Oxford,\"Lyra's Oxford (His Dark Materials, #3.5)\",en-US,3.52,12665,14684,702,201,1473,5897,4756,2357,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1524742342l/531197.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9153,8803932,8803932,13678080,19,373210329,9780373210330.0,Rachel Vincent,2011.0,\"If I Die (Soul Screamers, #5)\",\"If I Die (Soul Screamers, #5)\",eng,4.32,14153,14810,1160,216,420,1890,4240,8044,https://images.gr-assets.com/books/1304024127l/8803932.jpg,https://images.gr-assets.com/books/1304024127s/8803932.jpg\n9154,14781219,14781219,20434290,34,316211176,9780316211180.0,\"James Patterson, Mark T. Sullivan\",2013.0,Private Berlin,Private Berlin (Private #5),eng,3.9,10043,12432,1013,168,578,3137,5035,3514,https://images.gr-assets.com/books/1340758912l/14781219.jpg,https://images.gr-assets.com/books/1340758912s/14781219.jpg\n9155,227590,227590,3230132,40,553576798,9780553576800.0,Lisa Gardner,1999.0,The Other Daughter,The Other Daughter,eng,3.99,11649,13182,798,99,521,2979,5402,4181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925378l/227590.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9156,765193,765193,1831295,29,803710402,9780803710400.0,\"Mary Hoffman, Caroline Binch\",1991.0,Amazing Grace,Amazing Grace,en-US,4.33,10959,11064,667,90,291,1541,3111,6031,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347335253l/765193.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9157,110692,110692,2063379,30,345440781,9780345440780.0,\"David Eddings, Leigh Eddings\",2000.0,The Redemption of Althalus,The Redemption of Althalus,,3.82,11508,12981,419,583,1181,2823,3858,4536,https://images.gr-assets.com/books/1403185455l/110692.jpg,https://images.gr-assets.com/books/1403185455s/110692.jpg\n9158,44543,44543,220527,27,156007479,9780156007470.0,Emma Donoghue,2000.0,Slammerkin,Slammerkin,eng,3.69,11271,12483,1266,327,1063,3484,4836,2773,https://images.gr-assets.com/books/1315155075l/44543.jpg,https://images.gr-assets.com/books/1315155075s/44543.jpg\n9160,11235783,11235783,16161897,24,425246957,9780425246960.0,Julie James,2012.0,About That Night,\"About That Night (FBI/US Attorney, #3)\",eng,4.07,18193,19359,1201,105,605,3830,8177,6642,https://images.gr-assets.com/books/1342553249l/11235783.jpg,https://images.gr-assets.com/books/1342553249s/11235783.jpg\n9161,1087205,1087205,2902199,16,1421500620,9781421500620.0,Bisco Hatori,2004.0,桜蘭高校ホスト部 3,\"Ouran High School Host Club, Vol. 3 (Ouran High School Host Club, #3)\",eng,4.44,12788,12913,179,92,209,1445,3337,7830,https://images.gr-assets.com/books/1393731667l/1087205.jpg,https://images.gr-assets.com/books/1393731667s/1087205.jpg\n9162,37377,37377,37262,20,312346069,9780312346060.0,Nancy Tillman,2005.0,On the Night You Were Born,On the Night You Were Born,en-US,4.35,11125,11894,439,146,433,1522,2793,7000,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925359l/37377.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9164,20886354,20886354,40227944,21,,,\"Brandon Sanderson, Jon Foster\",2014.0,Legion: Skin Deep,\"Skin Deep (Legion, #2)\",eng,4.11,8317,11210,950,31,232,1988,5179,3780,https://images.gr-assets.com/books/1404932663l/20886354.jpg,https://images.gr-assets.com/books/1404932663s/20886354.jpg\n9166,6953500,6953500,7188482,33,006173506X,9780061735070.0,Meg Cabot,2010.0,Insatiable,\"Insatiable (Insatiable, #1)\",eng,3.44,18463,20151,2290,992,2688,6597,6224,3650,https://images.gr-assets.com/books/1479654144l/6953500.jpg,https://images.gr-assets.com/books/1479654144s/6953500.jpg\n9167,22600903,34371311,41391574,12,,,J.  Daniels,2014.0,Where I Belong,\"Where I Belong (Alabama Summer, #1)\",eng,4.05,13110,19328,1508,432,895,3527,6922,7552,https://images.gr-assets.com/books/1404019520l/22600903.jpg,https://images.gr-assets.com/books/1404019520s/22600903.jpg\n9168,366337,366337,4083757,54,778324516,9780778324520.0,Debbie Macomber,2007.0,Back on Blossom Street,\"Back on Blossom Street (Blossom Street, #4)\",eng,4.14,11757,12953,668,69,335,2476,4866,5207,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388527774l/366337.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9169,8257435,8257435,13105229,52,1615731075,9781615731080.0,\"François Lelord, Lorenza García\",2002.0,Le Voyage d’Hector ou la recherche du bonheur,Hector and the Search for Happiness,eng,3.47,8084,11195,1393,475,1400,3740,3579,2001,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347471539l/8257435.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9170,241969,241969,1345521,25,446699454,9780446699460.0,Joshilyn Jackson,2006.0,\"Between, Georgia\",\"Between, Georgia\",en-US,3.87,11098,11873,1112,130,597,3126,4902,3118,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428466106l/241969.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9171,33729,33729,726930,38,312932782,9780312932790.0,Jennifer Crusie,2002.0,Faking It ,\"Faking It (Dempseys, #2)\",eng,3.9,15216,16386,737,222,908,4193,5978,5085,https://images.gr-assets.com/books/1311973997l/33729.jpg,https://images.gr-assets.com/books/1311973997s/33729.jpg\n9172,17801,17801,6179816,53,99461099,9780099461100.0,\"Haruki Murakami, Alfred Birnbaum, Philip Gabriel\",1997.0,アンダーグラウンド [Andāguraundo],Underground: The Tokyo Gas Attack and the Japanese Psyche,eng,3.89,8405,10612,778,77,522,2761,4425,2827,https://images.gr-assets.com/books/1443692668l/17801.jpg,https://images.gr-assets.com/books/1443692668s/17801.jpg\n9173,27298,27298,27945,37,743428188,9780743428190.0,Indu Sundaresan,2002.0,The Twentieth Wife,\"The Twentieth Wife (Taj Mahal Trilogy, #1)\",en-US,4.03,9873,10772,1240,123,472,2093,4360,3724,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441836224l/27298._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9175,99461,99461,17330,16,345354915,9780345354910.0,Piers Anthony,1980.0,\"Split Infinity (Apprentice Adept, #1)\",Split Infinity  (Apprentice Adept #1),eng,3.94,13299,14043,311,169,739,3385,5242,4508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1530219700l/99461._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9176,44360,44360,425815,20,310263468,9780310263460.0,Rob Bell,2007.0,Sex God: Exploring the Endless Connections Between Sexuality And Spirituality,Sex God: Exploring the Endless Connections between Sexuality and Spirituality,en-US,3.82,8999,9487,612,322,643,2321,3374,2827,https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9177,5556595,5556595,5727718,45,7245823,9780007245830.0,Isabel Wolff,2009.0,A Vintage Affair,A Vintage Affair,en-GB,3.8,11104,13877,1892,148,764,3963,5863,3139,https://images.gr-assets.com/books/1327878847l/5556595.jpg,https://images.gr-assets.com/books/1327878847s/5556595.jpg\n9178,302998,302998,1452188,70,014013168X,9780140131680.0,Hanif Kureishi,1990.0,The Buddha of Suburbia,The Buddha of Suburbia,eng,3.72,8683,10891,609,247,812,3062,4438,2332,https://images.gr-assets.com/books/1344618639l/302998.jpg,https://images.gr-assets.com/books/1344618639s/302998.jpg\n9180,64949,64949,888389,53,425128164,9780425128170.0,\"Brian Coffey, Dean Koontz\",1980.0,The Voice of the Night ,The Voice of the Night,eng,3.91,12897,13626,311,188,793,3634,4464,4547,https://images.gr-assets.com/books/1308461608l/64949.jpg,https://images.gr-assets.com/books/1308461608s/64949.jpg\n9181,25837338,25837338,44211483,7,,,Alex Rosenberg,2015.0,The Girl from Krakow,The Girl from Krakow,eng,3.79,9585,9690,622,393,772,2207,3451,2867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441786470l/25837338._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9182,6452731,6452731,6642936,58,374180652,9780374180650.0,Michael J. Sandel,2009.0,Justice: What's the Right Thing to Do?,Justice: What's the Right Thing to Do?,en-US,4.25,8060,10065,887,83,266,1299,3843,4574,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441517195l/6452731._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9183,22608582,22608582,42145710,34,1455530093,9781455530090.0,Mitchell Zuckoff,2014.0,13 Hours: The Inside Account of What Really Happened In Benghazi,13 Hours: The Inside Account of What Really Happened In Benghazi,eng,4.26,8692,12435,1180,175,313,1575,4461,5911,https://images.gr-assets.com/books/1411493281l/22608582.jpg,https://images.gr-assets.com/books/1411493281s/22608582.jpg\n9184,6916963,6916963,6527884,23,758232004,9780758232010.0,Richelle Mead,2010.0,Succubus Shadows ,\"Succubus Shadows (Georgina Kincaid, #5)\",en-US,4.18,18822,20507,933,134,634,3436,7530,8773,https://images.gr-assets.com/books/1315977677l/6916963.jpg,https://images.gr-assets.com/books/1315977677s/6916963.jpg\n9185,6505109,6505109,6696695,50,446550000,9780446550000.0,Leila Meacham,2010.0,Roses,Roses,en-US,4.02,10837,12279,1891,268,636,2244,4509,4622,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442881426l/6505109._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9186,33726,33726,1657338,44,312932812,9780312932820.0,Jennifer Crusie,1999.0,Crazy For You,Crazy For You,,3.78,14318,15487,520,214,970,4718,5632,3953,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391554147l/33726.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9187,4016515,4016515,4062985,25,1400066124,9781400066120.0,Maya Angelou,2008.0,Letter to My Daughter,Letter to My Daughter,eng,4.08,9933,11305,1341,120,513,2199,4028,4445,https://images.gr-assets.com/books/1320448534l/4016515.jpg,https://images.gr-assets.com/books/1320448534s/4016515.jpg\n9188,393060,393060,953226,51,61187844,9780061187840.0,Lionel Shriver,2007.0,The Post-Birthday World ,The Post-Birthday World,eng,3.52,10415,11618,1758,648,1334,3315,3986,2335,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348752137l/393060.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9189,349129,349129,339403,21,439700418,9780439700410.0,Mordicai Gerstein,2003.0,The Man Who Walked Between the Towers,The Man Who Walked Between the Towers,en-GB,4.14,12022,12557,1234,192,472,2302,4021,5570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173973951l/349129._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9191,54120,54120,895682,86,151010404,9780151010400.0,\"José Saramago, Margaret Jull Costa\",2002.0,O Homem Duplicado,The Double,en-US,3.84,6430,10099,799,174,627,2492,4134,2672,https://images.gr-assets.com/books/1328876706l/54120.jpg,https://images.gr-assets.com/books/1328876706s/54120.jpg\n9192,5996209,5996209,6170488,25,553819879,9780553819880.0,Richelle Mead,2008.0,Thorn Queen,\"Thorn Queen (Dark Swan, #2)\",en-GB,4.12,17026,18859,784,176,669,3379,7118,7517,https://images.gr-assets.com/books/1304053865l/5996209.jpg,https://images.gr-assets.com/books/1304053865s/5996209.jpg\n9193,697210,697210,683528,30,61128643,9780061128650.0,Jacqueline Sheehan,2007.0,Lost & Found,\"Lost & Found (Rocky Pelligrino, #1)\",eng,3.71,9474,10777,1216,194,846,3261,4049,2427,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348899583l/697210.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9194,543505,543505,1502964,120,723247757,9780723247750.0,Beatrix Potter,1905.0,The Tale of Mrs. Tiggy-Winkle,The Tale of Mrs. Tiggy-Winkle,,4.19,12873,13247,188,151,470,2483,3702,6441,https://images.gr-assets.com/books/1311281900l/543505.jpg,https://images.gr-assets.com/books/1311281900s/543505.jpg\n9195,76668,76668,2318460,12,380752859,9780380752850.0,Piers Anthony,1988.0,For Love of Evil,\"For Love of Evil (Incarnations of Immortality, #6)\",,4.1,12399,12665,202,133,590,2379,4337,5226,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438276309l/76668._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9196,13543138,13543138,18984429,33,452298385,9780452298380.0,Sarah Jio,2012.0,Blackberry Winter,Blackberry Winter,eng,3.96,10907,12704,1813,187,710,2615,5166,4026,https://images.gr-assets.com/books/1382760152l/13543138.jpg,https://images.gr-assets.com/books/1382760152s/13543138.jpg\n9197,11318,11318,2024704,56,394757645,9780394757640.0,Raymond Chandler,,Trouble Is My Business,Trouble Is My Business,eng,4.05,9020,9466,232,286,308,1629,3666,3577,https://images.gr-assets.com/books/1388189902l/11318.jpg,https://images.gr-assets.com/books/1388189902s/11318.jpg\n9198,24761,24761,1219592,21,440208149,9780440208140.0,Madeleine L'Engle,1989.0,\"An Acceptable Time (Time Quintet, #5)\",\"An Acceptable Time (A Wrinkle in Time Quintet, #5)\",eng,3.86,13596,15174,593,208,906,4110,5507,4443,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388764061l/24761.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9199,127249,127249,72567,55,345476131,9780345476140.0,Steve Berry,2005.0,The Third Secret,The Third Secret,eng,3.84,10809,12179,622,185,687,3291,4725,3291,https://images.gr-assets.com/books/1320437464l/127249.jpg,https://images.gr-assets.com/books/1320437464s/127249.jpg\n9200,2854962,2854962,2881096,19,439846692,9780439846690.0,Jenny Nimmo,2008.0,\"Charlie Bone and the Shadow (The Children of the Red King, # 7)\",\"Charlie Bone and the Shadow (The Children of the Red King, #7)\",,4.02,13322,13669,272,206,618,3148,4478,5219,https://images.gr-assets.com/books/1328843031l/2854962.jpg,https://images.gr-assets.com/books/1328843031s/2854962.jpg\n9201,38548,38548,38310,37,505525534,9780505525540.0,Lynsay Sands,2004.0,Love Bites,Love Bites (Argeneau #2),eng,4.12,17118,19269,662,167,683,3809,6659,7951,https://images.gr-assets.com/books/1354343261l/38548.jpg,https://images.gr-assets.com/books/1354343261s/38548.jpg\n9202,17727276,17727276,24806264,45,1476751447,9781476751440.0,Hillary Rodham Clinton,2013.0,Hard Choices,Hard Choices,eng,3.57,8724,9724,1049,682,830,2699,3253,2260,https://images.gr-assets.com/books/1402198745l/17727276.jpg,https://images.gr-assets.com/books/1402198745s/17727276.jpg\n9203,137894,137894,132914,6,1563895641,9781563895650.0,\"Bob Gale, Devin Grayson, Alex Maleev, Dale Eaglesham\",1999.0,\"Batman: No Man's Land, Vol. 1\",\"Batman: No Man's Land, Vol. 1\",eng,4.11,9269,9297,91,123,465,1842,2701,4166,https://images.gr-assets.com/books/1377876110l/137894.jpg,https://images.gr-assets.com/books/1377876110s/137894.jpg\n9205,11076123,11076123,15997604,39,1846687756,9781846687750.0,Esi Edugyan,2011.0,Half Blood Blues,Half Blood Blues,eng,3.63,8911,11506,1392,256,1039,3468,4690,2053,https://images.gr-assets.com/books/1309737674l/11076123.jpg,https://images.gr-assets.com/books/1309737674s/11076123.jpg\n9206,15655,15655,17490,14,60564784,9780060564780.0,Katrina Kittle,2006.0,The Kindness of Strangers,The Kindness of Strangers,en-US,4.0,10627,11313,1452,167,420,2221,4888,3617,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442941672l/15655._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9207,13132816,13132816,18309264,18,,,Robin Benway,2015.0,Emmy & Oliver,Emmy & Oliver,eng,3.91,13260,14587,2284,281,718,3410,5811,4367,https://images.gr-assets.com/books/1414589813l/13132816.jpg,https://images.gr-assets.com/books/1414589813s/13132816.jpg\n9208,22040598,22040598,41363353,18,1596435739,9781596435740.0,Scott McCloud,2015.0,The Sculptor,The Sculptor,eng,4.0,10038,10902,1789,327,655,1981,3614,4325,https://images.gr-assets.com/books/1418629570l/22040598.jpg,https://images.gr-assets.com/books/1418629570s/22040598.jpg\n9209,22504701,22504701,41951492,11,803740166,9780803740170.0,Victoria Jamieson,2015.0,Roller Girl,Roller Girl,eng,4.27,18014,18787,2511,444,591,2116,5854,9782,https://images.gr-assets.com/books/1447914095l/22504701.jpg,https://images.gr-assets.com/books/1447914095s/22504701.jpg\n9210,160988,160988,190629,15,394800516,9780394800520.0,P.D. Eastman,1968.0,The Best Nest,The Best Nest,en-US,4.19,11906,12032,148,132,484,2300,3148,5968,https://images.gr-assets.com/books/1320398047l/160988.jpg,https://images.gr-assets.com/books/1320398047s/160988.jpg\n9211,7296271,7296271,8632949,29,143917752X,9781439177520.0,J.L. Bourne,2010.0,Day By Day Armageddon: Beyond Exile ,\"Beyond Exile (Day by Day Armageddon,# 2)\",eng,4.08,8923,9976,408,114,448,1852,3667,3895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348699328l/7296271.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9212,1105093,1105093,205014,23,671522817,9780671522810.0,Randall Wallace,1995.0,Braveheart,Braveheart,eng,4.19,10729,10837,76,218,473,1642,3230,5274,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387712208l/1105093.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9213,21327,21327,2542586,15,1401210007,9781401210010.0,\"Bill Willingham, Mark Buckingham, Steve Leialoha, Jim Fern, Jimmy Palmiotti, Andrew Pepoy\",2006.0,\"Fables, Volume 7: Arabian Nights (and Days)\",\"Fables, Vol. 7: Arabian Nights [and Days] (Fables, #7)\",eng,4.1,13772,14055,485,68,343,2821,5705,5118,https://images.gr-assets.com/books/1327962799l/21327.jpg,https://images.gr-assets.com/books/1327962799s/21327.jpg\n9214,98687,98687,1363157,34,374299218,9780374299220.0,André Aciman,2007.0,Call Me by Your Name,Call Me by Your Name,,4.13,10154,12024,1549,304,632,1799,3698,5591,https://images.gr-assets.com/books/1283737003l/98687.jpg,https://images.gr-assets.com/books/1283737003s/98687.jpg\n9215,15836,15836,253710,59,679776591,9780679776600.0,Anne Michaels,1996.0,Fugitive Pieces,Fugitive Pieces,eng,3.95,10642,11449,929,310,772,2388,3745,4234,https://images.gr-assets.com/books/1327866798l/15836.jpg,https://images.gr-assets.com/books/1327866798s/15836.jpg\n9216,15549,15549,1112930,45,345484088,9780345484090.0,Terry Brooks,2006.0,Armageddon's Children,\"Armageddon's Children (Genesis of Shannara, #1)\",,4.09,11107,12790,623,121,487,2452,4793,4937,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198012l/15549.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9217,376613,376613,817262,32,679457143,9780679457140.0,Richard   Preston,1997.0,The Cobra Event,The Cobra Event,en-US,4.0,10505,11650,504,154,505,2523,4504,3964,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388251409l/376613.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9218,13115995,13115995,18289996,15,62071165,9780062071160.0,Brodi Ashton,2013.0,Everbound,\"Everbound (Everneath, #2)\",en-US,4.06,15865,16560,1678,261,833,3136,5676,6654,https://images.gr-assets.com/books/1359138201l/13115995.jpg,https://images.gr-assets.com/books/1359138201s/13115995.jpg\n9219,5291189,5291189,5358612,23,785229183,9780785229190.0,Richard Stearns,2009.0,The Hole in Our Gospel: What does God expect of Us?  The Answer that Changed my Life and Might Just Change the World,The Hole in Our Gospel: What does God expect of Us? The Answer that Changed my Life and Might Just Change the World,en-US,4.18,9512,9982,575,219,385,1527,3108,4743,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441163281l/5291189._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9220,300650,300650,291719,28,1932740082,9781932740080.0,Gary Ezzo,1993.0,On Becoming Baby Wise: Giving Your Infant the Gift of Nighttime Sleep,On Becoming Baby Wise: Giving Your Infant the Gift of Nighttime Sleep,,3.58,5939,9356,1804,795,918,2214,2964,2465,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442952647l/300650.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9222,71984,71984,69695,18,143034669,9780143034670.0,Steve Coll,2004.0,\"Ghost Wars: The Secret History of the CIA, Afghanistan, and Bin Laden, from the Soviet Invasion to September 10, 2001\",\"Ghost Wars: The Secret History of the CIA, Afghanistan, and bin Laden from the Soviet Invasion to September 10, 2001\",eng,4.28,9066,9638,656,66,175,1276,3597,4524,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924074l/71984.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9223,61794,61794,362,413,8489163413,9788489163420.0,Anonymous,1554.0,La vida del Lazarillo de Tormes y sus fortunas y adversidades ,La vida del Lazarillo de Tormes,spa,3.49,7748,12456,475,511,1550,4166,3805,2424,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170593015l/61794._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9225,161846,161846,812592,77,345299116,9780345299120.0,John Wyndham,1957.0,The Midwich Cuckoos,The Midwich Cuckoos,eng,3.93,10841,12926,632,93,531,3167,5580,3555,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172294996l/161846.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9227,2306910,2306910,6507546,47,1416563067,9781416563070.0,Sandra Brown,2008.0,Smoke Screen,Smoke Screen,en-US,3.98,11245,12399,767,88,443,2920,5157,3791,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347853263l/2306910.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9229,19156898,19156898,27112723,22,375870644,9780375870640.0,\"Jennifer L. Holm, Tad Carpenter\",2014.0,The Fourteenth Goldfish,The Fourteenth Goldfish,eng,3.87,9532,13096,2089,383,734,3117,4836,4026,https://images.gr-assets.com/books/1386092727l/19156898.jpg,https://images.gr-assets.com/books/1386092727s/19156898.jpg\n9230,988170,988170,1952538,16,307021688,9780307021690.0,\"Kathryn Jackson, Gustav Tenggren\",1952.0,Tawny Scrawny Lion (Little Golden Book),Tawny Scrawny Lion,,4.16,12407,12632,99,138,496,2719,3138,6141,https://images.gr-assets.com/books/1395619387l/988170.jpg,https://images.gr-assets.com/books/1395619387s/988170.jpg\n9231,298816,298816,289909,20,830737847,9780830737840.0,Don Richardson,1974.0,Peace Child,Peace Child: An Unforgettable Story of Primitive Jungle Treachery in the 20th Century,,4.31,8832,9128,238,102,227,1206,2811,4782,https://images.gr-assets.com/books/1328779463l/298816.jpg,https://images.gr-assets.com/books/1328779463s/298816.jpg\n9232,400,400,1011400,65,140156046,9780140156040.0,Don DeLillo,1988.0,Libra ,Libra,eng,3.98,10195,11342,633,156,534,2312,4740,3600,https://images.gr-assets.com/books/1327935630l/400.jpg,https://images.gr-assets.com/books/1327935630s/400.jpg\n9233,18990,18990,79986,114,743457919,9780743457910.0,John le Carré,1977.0,The Honourable Schoolboy,The Honourable Schoolboy,eng,3.94,9346,11827,599,83,467,2832,5109,3336,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348762526l/18990.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9234,1593623,1593623,1202854,25,006147312X,9780061473130.0,Robin Hobb,2007.0,Renegade's Magic,\"Renegade's Magic (Soldier Son, #3)\",eng,3.46,10164,11715,402,593,1601,3693,3465,2363,https://images.gr-assets.com/books/1290919036l/1593623.jpg,https://images.gr-assets.com/books/1290919036s/1593623.jpg\n9236,13105,13105,2591755,80,446674575,9780446674580.0,James Redfield,1996.0,The Tenth Insight ,\"The Tenth Insight: Holding the Vision (Celestine Prophecy, #2)\",en-CA,3.61,8795,9485,346,355,1068,2844,2857,2361,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436971752l/13105._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9237,820394,820394,2444564,69,755331427,9780755331420.0,Jed Rubenfeld,2006.0,The Interpretation of Murder,\"The Interpretation of Murder (Freud, #1)\",eng,3.51,9781,10909,1143,299,1182,3804,3864,1760,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428789639l/820394.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9238,8172,8172,11126,16,1401202527,9781401202520.0,\"Mark Waid, Alfred Gough, Miles Millar, Dave McCaig, Gerry Alanguilan, Leinil Francis Yu\",2003.0,Superman: Birthright 1-12,Superman: Birthright,en-GB,4.12,9253,9360,355,123,403,1734,3087,4013,https://images.gr-assets.com/books/1343584198l/8172.jpg,https://images.gr-assets.com/books/1343584198s/8172.jpg\n9239,141935,141935,136898,24,618065687,9780618065680.0,\"Margret Rey, H.A. Rey, Martha Weston\",2003.0,Curious George Visits the Library,Curious George Visits the Library,en-US,4.25,10561,10629,71,134,368,1927,2486,5714,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348385224l/141935.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9240,45369,45369,2270654,16,1400097037,9781400097040.0,Julian Barnes,2005.0,Arthur & George,Arthur & George,eng,3.7,10131,12297,1291,183,891,3641,5346,2236,https://images.gr-assets.com/books/1419234701l/45369.jpg,https://images.gr-assets.com/books/1419234701s/45369.jpg\n9241,381787,20214789,371565,8,1590384989,9781590384980.0,Gerald N. Lund,1992.0,\"The Work and the Glory, Vol. 3: Truth Will Prevail\",\"Truth Will Prevail (The Work and the Glory, #3)\",,4.3,9081,10604,198,33,191,1484,3732,5164,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1206406250l/381787.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9242,16029994,16029994,21799599,20,1479359084,9781479359080.0,Karina Halle,2013.0,Sins & Needles,\"Sins & Needles (The Artists Trilogy, #1)\",eng,3.98,18391,20756,2629,650,1150,3759,7535,7662,https://images.gr-assets.com/books/1347859611l/16029994.jpg,https://images.gr-assets.com/books/1347859611s/16029994.jpg\n9243,61505,61505,59819,94,300108834,9780300108840.0,\"E.H. Gombrich, Caroline Mustill, Clifford Harper\",1936.0,Eine kurze Weltgeschichte für junge Leser: Von der Urzeit bis zur Gegenwart,A Little History of the World,eng,4.1,8297,11017,1190,120,413,1962,4245,4277,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388179842l/61505.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9244,8542839,8542839,13410545,10,,9781452365860.0,H.P. Mallory,2010.0,Fire Burn and Cauldron Bubble,\"Fire Burn and Cauldron Bubble (Jolie Wilkins, #1)\",eng,3.85,10228,13938,1110,440,922,3253,5005,4318,https://images.gr-assets.com/books/1329352960l/8542839.jpg,https://images.gr-assets.com/books/1329352960s/8542839.jpg\n9245,836611,836611,349431,15,1591826063,9781591826060.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",2000.0,フルーツバスケット 4,\"Fruits Basket, Vol. 4\",en-US,4.39,15336,15506,243,89,313,1917,4253,8934,https://images.gr-assets.com/books/1480179107l/836611.jpg,https://images.gr-assets.com/books/1480179107s/836611.jpg\n9247,762134,762134,748227,51,385264666,9780385264660.0,\"Naguib Mahfouz, William M. Hutchins, Olive E. Kenny\",1956.0,بين القصرين,Palace Walk (The Cairo Trilogy #1),eng,4.14,6423,10468,985,129,413,1687,3915,4324,https://images.gr-assets.com/books/1327882172l/762134.jpg,https://images.gr-assets.com/books/1327882172s/762134.jpg\n9248,6630751,6630751,3976550,20,,,Andrew  Peterson,2008.0,First to Kill ,\"First to Kill (Nathan McBride, #1)\",eng,4.03,7849,10179,437,165,426,1927,4099,3562,https://images.gr-assets.com/books/1356545953l/6630751.jpg,https://images.gr-assets.com/books/1356545953s/6630751.jpg\n9249,109515,109515,105537,23,067179437X,9780671794380.0,Frank Bettger,1947.0,How I Raised Myself from Failure to Success in Selling,How I Raised Myself from Failure to Success in Selling,,4.25,9438,9761,219,161,366,1465,2617,5152,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348184877l/109515.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9252,24938,24938,25705,16,063407881X,9780634078810.0,\"Stephen Schwartz, Gregory Maguire\",2004.0,Wicked - Piano/Vocal Arrangement,Wicked - Piano/Vocal Arrangement,,4.45,10729,10757,38,87,175,1068,2879,6548,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388198250l/24938.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9253,432283,432283,1933283,21,449208397,9780449208400.0,Erma Bombeck,1971.0,If Life Is a Bowl of Cherries—What Am I Doing in the Pits?,If Life Is a Bowl of Cherries What Am I Doing in the Pits?,en-US,4.07,10861,11186,241,69,378,2469,4029,4241,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348835773l/432283.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9254,68530,68530,6418603,66,60935782,9780060935790.0,Bernard Cornwell,2002.0,Vagabond,\"Vagabond (The Grail Quest, #2)\",en-US,4.09,9680,11666,343,36,272,2246,5169,3943,https://images.gr-assets.com/books/1407707722l/68530.jpg,https://images.gr-assets.com/books/1407707722s/68530.jpg\n9255,275247,275247,1085162,442,1934169234,9781934169230.0,Frances Hodgson Burnett,1886.0,Little Lord Fauntleroy,Little Lord Fauntleroy,,3.81,12712,14964,680,309,1101,4201,4935,4418,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386745618l/275247.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9256,16762211,16762211,23013398,6,1481268503,9781481268510.0,Cheryl McIntyre,2012.0,Sometimes Never,\"Sometimes Never (Sometimes Never, #1)\",eng,3.94,15306,16854,785,327,879,3664,6572,5412,https://images.gr-assets.com/books/1361989778l/16762211.jpg,https://images.gr-assets.com/books/1361989778s/16762211.jpg\n9257,11350430,11350430,16280157,15,,,George R.R. Martin,2010.0,The Mystery Knight,\"The Mystery Knight (The Tales of Dunk and Egg, #3)\",eng,4.2,11058,11445,387,30,189,1731,4973,4522,https://images.gr-assets.com/books/1397654538l/11350430.jpg,https://images.gr-assets.com/books/1397654538s/11350430.jpg\n9258,12710106,12710106,17843610,12,1402271514,9781402271520.0,Olivia Cunning,2012.0,Double Time,\"Double Time (Sinners on Tour, #5)\",en-US,4.14,20484,22130,1507,321,945,3759,7360,9745,https://images.gr-assets.com/books/1352579615l/12710106.jpg,https://images.gr-assets.com/books/1352579615s/12710106.jpg\n9260,13237327,13237327,18435172,29,1451673442,9781451673450.0,Rhonda Byrne,2012.0,The Magic (The Secret #3),\"The Magic (The Secret, #3)\",eng,4.14,8066,9540,597,325,513,1427,2472,4803,https://images.gr-assets.com/books/1358271749l/13237327.jpg,https://images.gr-assets.com/books/1358271749s/13237327.jpg\n9262,44399,44399,1251970,28,830819711,9780830819710.0,\"Bill Hybels, Lavonne Neff\",1988.0,Too Busy Not to Pray: Slowing Down to Be With God,Too Busy Not to Pray: Slowing Down to Be With God,en-US,4.14,8422,8880,244,93,329,1637,3017,3804,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388242367l/44399.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9263,3015764,3015764,3046305,93,054705484X,9780547054840.0,Philip Roth,2008.0,Indignation,Indignation,eng,3.69,8585,10831,1191,185,808,3228,4575,2035,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348256144l/3015764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9264,8526694,8526694,13393712,33,1400068096,9781400068100.0,Teju Cole,2011.0,Open City,Open City,eng,3.5,9132,10624,1446,420,1379,3165,3736,1924,https://images.gr-assets.com/books/1327935192l/8526694.jpg,https://images.gr-assets.com/books/1327935192s/8526694.jpg\n9265,822989,822989,808792,7,752853716,9780752853710.0,Dave Pelzer,1995.0,\"My Story: \"\"A Child Called It\"\", \"\"The Lost Boy\"\", \"\"A Man Named Dave\"\"\",\"My Story: \"\"A Child Called It\"\", \"\"The Lost Boy\"\", \"\"A Man Named Dave\"\"\",en-US,4.18,8201,9204,590,137,380,1553,2798,4336,https://images.gr-assets.com/books/1408928892l/822989.jpg,https://images.gr-assets.com/books/1408928892s/822989.jpg\n9266,8113940,8113940,12909181,31,,,Melissa de la Cruz,2011.0,Witches of East End,\"Witches of East End (The Beauchamp Family, #1)\",eng,3.51,13806,16562,2147,600,2064,5428,5208,3262,https://images.gr-assets.com/books/1294433454l/8113940.jpg,https://images.gr-assets.com/books/1294433454s/8113940.jpg\n9267,443540,443540,3037523,45,316010367,9780316010370.0,Anita Shreve,2003.0,All He Ever Wanted,All He Ever Wanted,eng,3.18,11514,12519,936,728,2077,5164,3251,1299,https://images.gr-assets.com/books/1358594609l/443540.jpg,https://images.gr-assets.com/books/1358594609s/443540.jpg\n9269,18080889,18080889,25389285,19,,,Vi Keeland,2013.0,Worth the Fight,\"Worth the Fight (MMA Fighter, #1)\",eng,4.06,20451,20571,1436,294,763,3810,8335,7369,https://images.gr-assets.com/books/1376730892l/18080889.jpg,https://images.gr-assets.com/books/1376730892s/18080889.jpg\n9270,8089,8089,2321287,14,441005837,9780441005830.0,Robin McKinley,1997.0,Rose Daughter,Rose Daughter,eng,3.77,15696,16624,973,269,1302,4754,5988,4311,https://images.gr-assets.com/books/1398552029l/8089.jpg,https://images.gr-assets.com/books/1398552029s/8089.jpg\n9271,6433344,6433344,6622835,7,800733428,9780800733420.0,Janice  Thompson,2009.0,\"Fools Rush In (Weddings by Bella, #1)\",\"Fools Rush In (Weddings by Bella, #1)\",en-US,3.59,8692,11535,923,605,1289,3349,3302,2990,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441264484l/6433344._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9272,712807,712807,2991394,35,60560150,9780060560160.0,Sharon Creech,2002.0,Ruby Holler,Ruby Holler,,4.01,12438,13168,1010,135,570,3061,4720,4682,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347257250l/712807.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9274,17853024,17853024,24989806,40,7331908,9780007331900.0,Bernard Cornwell,2013.0,The Pagan Lord,\"The Pagan Lord (The Saxon Stories, #7)\",en-US,4.34,8218,11684,787,28,131,1235,4791,5499,https://images.gr-assets.com/books/1370529803l/17853024.jpg,https://images.gr-assets.com/books/1370529803s/17853024.jpg\n9275,161415,161415,155787,29,1565547063,9781565547060.0,\"Zig Ziglar, Al Mayton\",1974.0,See You at the Top: 25th Anniversary Edition,See You at the Top,,4.25,8888,9314,209,160,319,1345,2687,4803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348628729l/161415.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9276,25666046,25666046,45489184,26,1627795944,9781627795940.0,Ian McGuire,2016.0,The North Water,The North Water,eng,4.01,8732,13592,1861,229,563,2410,5987,4403,https://images.gr-assets.com/books/1456351800l/25666046.jpg,https://images.gr-assets.com/books/1456351800s/25666046.jpg\n9277,64732,64732,2235106,30,765301075,9780765301080.0,Greg Bear,1987.0,The Forge of God,\"The Forge of God (Forge of God, #1)\",eng,3.86,10085,11294,381,131,556,3076,4532,2999,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388465357l/64732.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9279,16130723,16130723,21955333,20,1476717095,9781476717100.0,Brad Thor,2013.0,Hidden Order,\"Hidden Order (Scot Harvath, #12)\",eng,4.1,7857,10835,724,116,351,1956,4317,4095,https://images.gr-assets.com/books/1362517340l/16130723.jpg,https://images.gr-assets.com/books/1362517340s/16130723.jpg\n9281,1524,1524,1881648,190,521010756,9780521010760.0,\"Aeschylus, Judith Affleck, Philip de May, Patricia E. Easterling, John     Harrison\",-458.0,Ἀγαμέμνων,\"Agamemnon (Oresteia, #1)\",eng,3.82,11515,11932,187,140,749,3486,4253,3304,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347406392l/1524.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9282,16280689,16280689,22382333,13,345548515,9780345548510.0,Kevin Hearne,2016.0,Staked,\"Staked (The Iron Druid Chronicles, #8)\",eng,4.23,9082,11879,904,55,256,1714,4789,5065,https://images.gr-assets.com/books/1434745650l/16280689.jpg,https://images.gr-assets.com/books/1434745650s/16280689.jpg\n9283,31819,31819,32035,10,812694554,9780812694550.0,\"David Baggett, Shawn E. Klein\",2004.0,Harry Potter and Philosophy: If Aristotle Ran Hogwarts,Harry Potter and Philosophy: If Aristotle Ran Hogwarts,,4.45,9264,9316,82,197,274,955,1641,6249,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386749170l/31819.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9284,4800764,4800764,4865877,19,425227707,9780425227700.0,Maya Banks,2009.0,\"Sweet Persuasion (Sweet Series, #2)\",\"Sweet Persuasion (Sweet, #2)\",eng,4.09,16437,17668,671,255,843,3246,6041,7283,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390878386l/4800764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9285,16136599,16136599,21965206,48,312594445,9780312594440.0,\"P.C. Cast, Kristin Cast\",2014.0,Redeemed,\"Redeemed (House of Night, #12)\",eng,3.95,11604,13962,1294,524,997,2851,3881,5709,https://images.gr-assets.com/books/1403302625l/16136599.jpg,https://images.gr-assets.com/books/1403302625s/16136599.jpg\n9286,21086818,21086818,40447706,27,297869876,9780297869870.0,Henry Marsh,2014.0,\"Do No Harm: Stories of Life, Death and Brain Surgery\",\"Do No Harm: Stories of Life, Death and Brain Surgery\",eng,4.22,7978,11850,1291,120,298,1689,4534,5209,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1424398117l/21086818.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9287,33356,33356,1647,35,349117624,9780349117620.0,Max Barry,2002.0,Jennifer Government,Jennifer Government,eng,3.65,9722,11600,1038,272,1010,3536,4450,2332,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386919578l/33356.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9288,126185,126185,3181772,63,446615757,9780446615750.0,David Baldacci,2001.0,The Christmas Train,The Christmas Train,,3.56,11424,13604,1652,445,1407,4566,4497,2689,https://images.gr-assets.com/books/1354941481l/126185.jpg,https://images.gr-assets.com/books/1354941481s/126185.jpg\n9289,313267,313267,3140586,20,843950501,9780843950500.0,Christine Feehan,2004.0,\"Dark Destiny (Carpathians, #13)\",\"Dark Destiny (Dark, #13)\",eng,4.29,14613,15410,236,83,370,2322,4828,7807,https://images.gr-assets.com/books/1327896698l/313267.jpg,https://images.gr-assets.com/books/1327896698s/313267.jpg\n9290,52367,52367,1385264,19,1563899299,9781563899290.0,\"Frank Miller, Lynn Varley\",2001.0,Batman: The Dark Knight Strikes Again,\"Batman: The Dark Knight Strikes Again (The Dark Knight Saga, #2)\",eng,3.21,11065,11603,641,1354,2085,3179,2769,2216,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1506374653l/52367._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9291,145397,145397,297491,37,345410092,9780345410090.0,Katharine Hepburn,1991.0,Me: Stories of My Life,Me: Stories of My Life,eng,3.87,9312,10704,509,301,643,2640,3724,3396,https://images.gr-assets.com/books/1403186270l/145397.jpg,https://images.gr-assets.com/books/1403186270s/145397.jpg\n9292,95708,95708,92244,29,1585425524,9781585425520.0,Neil A. Fiore,1988.0,The Now Habit: A Strategic Program for Overcoming Procrastination and Enjoying Guilt-Free Play,The Now Habit: A Strategic Program for Overcoming Procrastination and Enjoying Guilt-Free Play,eng,3.88,9396,10074,458,282,632,2435,3426,3299,https://images.gr-assets.com/books/1421795425l/95708.jpg,https://images.gr-assets.com/books/1421795425s/95708.jpg\n9293,23214408,23214408,42756714,22,1501106406,9781501106410.0,Anna Todd,2015.0,After Ever Happy,\"After Ever Happy (After, #4)\",en-US,4.08,12671,15124,1073,565,943,2339,4093,7184,https://images.gr-assets.com/books/1417454456l/23214408.jpg,https://images.gr-assets.com/books/1417454456s/23214408.jpg\n9294,18232495,18232495,25675111,19,1414336241,9781414336240.0,Joel C. Rosenberg,2014.0,The Auschwitz Escape,The Auschwitz Escape,eng,4.32,7844,9534,1149,129,257,1062,3113,4973,https://images.gr-assets.com/books/1415118326l/18232495.jpg,https://images.gr-assets.com/books/1415118326s/18232495.jpg\n9295,10541,10541,412584,28,380713810,9780380713810.0,Bill Bryson,1994.0,Made in America: An Informal History of the English Language in the United States,Made in America: An Informal History of the English Language in the United States,en-US,3.89,9638,10865,655,91,468,2844,4592,2870,https://images.gr-assets.com/books/1388209927l/10541.jpg,https://images.gr-assets.com/books/1388209927s/10541.jpg\n9296,4887,4887,821815,75,465016901,9780465016910.0,\"Alice  Miller, Ruth Ward\",1979.0,Das Drama des begabten Kindes und die Suche nach dem wahren Selbst: eine Um- und Fortschreibung,The Drama of the Gifted Child: The Search for the True Self,en-GB,4.09,9563,10830,537,189,490,2025,3548,4578,https://images.gr-assets.com/books/1339395245l/4887.jpg,https://images.gr-assets.com/books/1339395245s/4887.jpg\n9297,827497,827497,813221,3,573613435,9780573613430.0,Dale Wasserman,1970.0,One Flew Over the Cuckoo's Nest (script),One Flew Over the Cuckoo's Nest,,4.28,11142,11181,90,106,253,1432,3961,5429,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347988688l/827497.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9298,129327,129327,124552,156,345354907,9780345354910.0,H.P. Lovecraft,1941.0,The Case of Charles Dexter Ward,The Case of Charles Dexter Ward,eng,4.2,10153,11366,436,75,318,1817,4227,4929,https://images.gr-assets.com/books/1385837737l/129327.jpg,https://images.gr-assets.com/books/1385837737s/129327.jpg\n9299,645180,645180,955983,21,375424865,9780375424860.0,Austin Grossman,2007.0,Soon I Will Be Invincible,Soon I Will Be Invincible,eng,3.68,9878,11359,1701,216,1022,3240,4548,2333,https://images.gr-assets.com/books/1320554514l/645180.jpg,https://images.gr-assets.com/books/1320554514s/645180.jpg\n9300,33144,33144,1881683,46,316182745,9780316182740.0,Janet Fitch,2006.0,Paint It Black,Paint it Black,eng,3.47,9092,9779,1027,568,1426,2871,2714,2200,https://images.gr-assets.com/books/1288972477l/33144.jpg,https://images.gr-assets.com/books/1288972477s/33144.jpg\n9301,11429,11429,13886,19,031024756X,9780310247560.0,Karen Kingsbury,2006.0,Ever After,\"Ever After (Lost Love, #2)\",en-US,4.31,9685,9949,357,118,318,1303,2811,5399,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1404966508l/11429.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9302,5068,5068,958782,49,330489674,9780330489680.0,Graham Swift,1996.0,Last Orders,Last Orders,,3.68,9349,10394,375,268,871,3042,3971,2242,https://images.gr-assets.com/books/1457623323l/5068.jpg,https://images.gr-assets.com/books/1457623323s/5068.jpg\n9303,51715,51715,882883,82,374521506,9780374521510.0,\"Roland Barthes, Annette Lavers\",1957.0,Mythologies,Mythologies,eng,4.11,9325,10470,373,130,370,1838,4051,4081,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440640494l/51715._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9304,13270,13270,2301058,456,140446362,9780140446360.0,\"Aristotle, Malcolm Heath\",-335.0,Περὶ ποιητικῆς,Poetics,eng,3.81,10347,13141,557,231,982,3658,4502,3768,https://images.gr-assets.com/books/1348161995l/13270.jpg,https://images.gr-assets.com/books/1348161995s/13270.jpg\n9305,12737118,12737118,17875348,41,034552795X,9780345527950.0,Melanie Gideon,2008.0,Wife 22,Wife 22,,3.51,10793,11967,2343,362,1229,3998,4690,1688,https://images.gr-assets.com/books/1333577694l/12737118.jpg,https://images.gr-assets.com/books/1333577694s/12737118.jpg\n9307,394841,394841,384365,19,142404624,9780142404620.0,Mike Lupica,2004.0,Travel Team,Travel Team,,4.06,8356,8484,728,157,356,1664,2946,3361,https://images.gr-assets.com/books/1309210198l/394841.jpg,https://images.gr-assets.com/books/1309210198s/394841.jpg\n9308,11306,11306,1504838,18,20425651,9780020425660.0,Susan Cooper,1984.0,\"The Dark Is Rising Sequence (The Dark Is Rising, #1-5)\",The Dark Is Rising Sequence  (The Dark Is Rising #1-5),eng,4.29,11988,13225,642,169,386,1758,4102,6810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386921699l/11306.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9310,125959,125959,681577,27,1595540067,9781595540060.0,Ted Dekker,2006.0,Saint,\"Saint (Paradise, #2)\",en-US,4.04,10594,10881,373,117,562,2196,3873,4133,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439004991l/125959._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9311,60080,60080,375997,276,521626951,9780521626960.0,\"Immanuel Kant, Mary J. Gregor, Christine M. Korsgaard\",1785.0,Grundlegung zur Metaphysik der Sitten,Groundwork of the Metaphysics of Morals,eng,3.78,9104,10618,271,312,859,2736,3638,3073,https://images.gr-assets.com/books/1398209445l/60080.jpg,https://images.gr-assets.com/books/1398209445s/60080.jpg\n9312,25614598,25614598,45310657,34,1455525928,9781455525930.0,\"Douglas Preston, Lincoln Child\",2015.0,Crimson Shore,\"Crimson Shore (Pendergast, #15)\",eng,4.0,7174,10726,1307,115,510,2200,4338,3563,https://images.gr-assets.com/books/1435611577l/25614598.jpg,https://images.gr-assets.com/books/1435611577s/25614598.jpg\n9313,541024,541024,988613,79,375703713,9780375703710.0,Theodore Sturgeon,1953.0,More Than Human,More Than Human,eng,3.98,10733,12048,544,188,634,2515,4548,4163,https://images.gr-assets.com/books/1403192694l/541024.jpg,https://images.gr-assets.com/books/1403192694s/541024.jpg\n9316,426030,426030,415088,13,1414310609,9781414310600.0,Dee Henderson,2002.0,The Healer,The Healer (O'Malley #5),eng,4.4,11245,11831,260,43,176,1428,3516,6668,https://images.gr-assets.com/books/1406510508l/426030.jpg,https://images.gr-assets.com/books/1406510508s/426030.jpg\n9317,4633,4633,1153954,97,743253426,9780743253420.0,Ernest Hemingway,1970.0,Islands in the Stream,Islands in the Stream,,3.86,9608,10717,513,168,659,2792,3933,3165,https://images.gr-assets.com/books/1400891142l/4633.jpg,https://images.gr-assets.com/books/1400891142s/4633.jpg\n9319,8163161,8163161,7051029,11,1421536706,9781421536700.0,Bisco Hatori,2009.0,桜蘭高校ホスト部 15,\"Ouran High School Host Club, Vol. 15 (Ouran High School Host Club, #15)\",eng,4.54,10743,10823,92,75,167,947,2233,7401,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348574192l/8163161.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9320,604635,604635,950536,69,1841956724,9781841956720.0,\"Erlend Loe, Tor Ketil Solberg\",1996.0,Naiv.Super.,Naïve. Super,eng,3.89,8642,11338,502,243,721,2559,4346,3469,https://images.gr-assets.com/books/1328731029l/604635.jpg,https://images.gr-assets.com/books/1328731029s/604635.jpg\n9321,8110748,8110748,12905719,11,4592184718,9784592184710.0,\"Meca Tanaka, 田中メカ\",2007.0,キスよりも早く1,キスよりも早く1 [Kisu Yorimo Hayaku 1] (Faster than a Kiss #1),jpn,4.23,11232,11437,90,182,550,1880,2691,6134,https://images.gr-assets.com/books/1272593631l/8110748.jpg,https://images.gr-assets.com/books/1272593631s/8110748.jpg\n9322,6261270,6261270,6444479,31,785229213,9780785229220.0,Andy Andrews,2009.0,\"The Noticer: Sometimes, all a person needs is a little perspective.\",\"The Noticer: Sometimes, All a Person Needs Is a Little Perspective\",eng,4.17,8335,9980,1369,142,530,1628,2870,4810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1572401261l/6261270._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9323,11324,11324,3257831,47,140014454,9780140014460.0,Iris Murdoch,1954.0,Under The Net,Under the Net,eng,3.76,9506,10082,434,274,790,2716,3618,2684,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388423609l/11324.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9324,12039943,16241160,17006585,37,571234607,9780571234610.0,John Lanchester,2012.0,Capital,Capital,,3.68,4961,9885,1198,217,731,2865,4229,1843,https://images.gr-assets.com/books/1336769492l/12039943.jpg,https://images.gr-assets.com/books/1336769492s/12039943.jpg\n9325,11551045,11551045,16491019,17,1250000246,9781250000250.0,\"P.C. Cast, Kristin Cast\",2012.0,Lenobia's Vow,\"Lenobia's Vow (House of Night Novellas, #2)\",en-US,4.16,12649,13524,636,163,561,2520,3946,6334,https://images.gr-assets.com/books/1317849415l/11551045.jpg,https://images.gr-assets.com/books/1317849415s/11551045.jpg\n9327,2358870,2358870,37441,2,545010098,9780545010090.0,Eoin Colfer,2003.0,\"Artemis Fowl Boxed Set (Artemis Fowl, #1-5)\",\"Artemis Fowl Boxed Set, Bks 1-5 (Artemis Fowl, #1-5)\",en-US,4.29,10692,10940,121,198,367,1466,2973,5936,https://images.gr-assets.com/books/1279206196l/2358870.jpg,https://images.gr-assets.com/books/1279206196s/2358870.jpg\n9329,12782865,12782865,17929545,39,857382209,9780857382210.0,Peter  May,2011.0,The Lewis Man,\"The Lewis Man (The Lewis Trilogy, #2)\",eng,4.2,7870,11467,1091,66,230,1582,5081,4508,https://images.gr-assets.com/books/1328645011l/12782865.jpg,https://images.gr-assets.com/books/1328645011s/12782865.jpg\n9330,62233,62233,60460,43,345484118,9780345484120.0,Terry Brooks,2007.0,The Elves of Cintra ,\"The Elves of Cintra (Genesis of Shannara, #2)\",eng,4.09,10663,11920,340,78,364,2333,4773,4372,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1406940629l/62233.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9331,28248,28248,1293083,37,60815701,9780060815710.0,Trudi Canavan,2005.0,Priestess of the White,\"Priestess of the White (Age of the Five, #1)\",eng,3.84,10552,12754,397,260,884,3194,4702,3714,https://images.gr-assets.com/books/1410130842l/28248.jpg,https://images.gr-assets.com/books/1410130842s/28248.jpg\n9333,763594,763594,1020651,52,553282093,9780553282090.0,Robert Ludlum,1976.0,The Gemini Contenders,The Gemini Contenders,eng,3.87,10428,10763,110,92,505,3032,4231,2903,https://images.gr-assets.com/books/1320401784l/763594.jpg,https://images.gr-assets.com/books/1320401784s/763594.jpg\n9334,330944,330944,2422355,48,440240964,9780440240970.0,Conn Iggulden,2005.0,\"The Field of Swords (Emperor, #3)\",\"The Field of Swords (Emperor, #3)\",en-US,4.26,9293,10673,211,50,173,1397,4345,4708,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388213205l/330944.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9336,85425,85425,3236458,38,671010123,9780671010130.0,Linda Fairstein,1996.0,Final Jeopardy,\"Final Jeopardy (Alexandra Cooper, #1)\",en-US,3.9,11250,11952,371,236,559,3002,4556,3599,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388337674l/85425.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9337,55229,55229,53827,12,60899689,9780060899680.0,Jay Winik,2001.0,April 1865: The Month That Saved America (P.S.),April 1865: The Month That Saved America,,4.15,8850,9240,359,156,379,1458,3184,4063,https://images.gr-assets.com/books/1407706523l/55229.jpg,https://images.gr-assets.com/books/1407706523s/55229.jpg\n9338,7159016,7159016,7461960,18,141697895X,9781416978950.0,Jessica Verday,2010.0,The Haunted,\"The Haunted (The Hollow, #2)\",en-CA,4.15,12890,13480,626,258,682,2271,3829,6440,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388458635l/7159016.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9340,25893582,25893582,43223043,33,553535641,9780553535650.0,Julie Buxbaum,2016.0,Tell Me Three Things,Tell Me Three Things,eng,4.1,15565,18097,3127,218,573,3140,7359,6807,https://images.gr-assets.com/books/1448596179l/25893582.jpg,https://images.gr-assets.com/books/1448596179s/25893582.jpg\n9341,561403,561403,1744923,24,316011851,9780316011850.0,Cecily von Ziegesar,2005.0,\"The It Girl (It Girl, Book 1)\",\"The It Girl (It Girl, #1)\",eng,3.66,11929,12276,416,484,1215,3672,3547,3358,https://images.gr-assets.com/books/1344263385l/561403.jpg,https://images.gr-assets.com/books/1344263385s/561403.jpg\n9342,263149,263149,255087,37,505525526,9780505525530.0,Lynsay Sands,2003.0,Single White Vampire,Single White Vampire (Argeneau #3),eng,4.16,16618,18616,696,159,602,3365,6388,8102,https://images.gr-assets.com/books/1354343077l/263149.jpg,https://images.gr-assets.com/books/1354343077s/263149.jpg\n9343,1111600,1111600,1098573,2,312875045,9780312875050.0,Robert Jordan,1990.0,\"The Wheel of Time: Boxed Set  (Wheel of Time, #1-8)\",\"The Wheel of Time: Boxed Set  (Wheel of Time, #1-8)\",,4.37,9031,9139,129,166,257,970,2360,5386,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223631389l/1111600.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9344,26324,26324,1386563,52,553803522,9780553803520.0,Daniel Goleman,2006.0,Social Intelligence: The New Science of Human Relationships,Social Intelligence: The New Science of Human Relationships,,3.97,8670,9395,315,141,465,2095,3566,3128,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441586645l/26324._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9346,8437379,8437379,13300953,30,61351520,9780061351520.0,Susan Elizabeth Phillips,2010.0,Call Me Irresistible,\"Call Me Irresistible (Wynette, Texas #5)\",eng,4.07,15449,17558,1327,160,661,3445,6836,6456,https://images.gr-assets.com/books/1327880626l/8437379.jpg,https://images.gr-assets.com/books/1327880626s/8437379.jpg\n9347,289029,289029,24948200,38,1401900127,9781401900120.0,Robin S. Sharma,1999.0,Who Will Cry When You Die? Life Lessons from the Monk Who Sold His Ferrari,Who Will Cry When You Die? Life Lessons from the Monk Who Sold His Ferrari,eng,3.93,7174,10056,586,181,542,2261,3889,3183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173447069l/289029._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9348,659546,659546,3057249,31,61143316,9780061143310.0,Jennifer McMahon,2007.0,Promise Not to Tell,Promise Not to Tell,eng,3.62,11775,12785,1478,176,1137,4278,4915,2279,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442684006l/659546._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9349,10790376,10790376,15702658,16,,,Debora Geary,2011.0,A Modern Witch,\"A Modern Witch (A Modern Witch, #1)\",eng,3.73,11264,11475,1018,571,1155,2728,3407,3614,https://images.gr-assets.com/books/1334346928l/10790376.jpg,https://images.gr-assets.com/books/1334346928s/10790376.jpg\n9350,56466,56466,55027,36,785273220,9780785273230.0,Andy Andrews,2002.0,The Traveler's Gift: Seven Decisions that Determine Personal Success,The Traveler's Gift: Seven Decisions that Determine Personal Success,eng,4.1,8055,9715,1330,265,547,1647,2795,4461,https://images.gr-assets.com/books/1380857528l/56466.jpg,https://images.gr-assets.com/books/1380857528s/56466.jpg\n9351,17973653,25943219,25197486,13,,,Elle Casey,2013.0,Shine Not Burn,\"Shine Not Burn (Shine Not Burn, #1)\",eng,4.07,14739,19553,1873,318,812,3343,7807,7273,https://images.gr-assets.com/books/1369392331l/17973653.jpg,https://images.gr-assets.com/books/1369392331s/17973653.jpg\n9352,155370,155370,1264290,11,689873794,9780689873800.0,Margaret Peterson Haddix,2005.0,Double Identity,Double Identity,,4.01,12978,13848,1287,144,782,3061,4623,5238,https://images.gr-assets.com/books/1344394478l/155370.jpg,https://images.gr-assets.com/books/1344394478s/155370.jpg\n9354,10803806,10803806,15717191,19,1419700278,9781419700280.0,Tom Angleberger,2011.0,Darth Paper Strikes Back,\"Darth Paper Strikes Back (Origami Yoda, #2)\",eng,4.12,10798,11099,847,322,467,1811,3461,5038,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388189866l/10803806.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9355,9166877,9166877,14046028,27,373210337,9780373210340.0,Kady Cross,2011.0,The Girl in the Steel Corset,\"The Girl in the Steel Corset (Steampunk Chronicles, #1)\",eng,3.81,17825,19547,2460,665,1590,4603,6659,6030,https://images.gr-assets.com/books/1297987541l/9166877.jpg,https://images.gr-assets.com/books/1297987541s/9166877.jpg\n9356,1820716,1820716,1820311,96,3552060413,9783552060420.0,Daniel Glattauer,2006.0,Gut gegen Nordwind,\"Gut gegen Nordwind (Gut gegen Nordwind, #1)\",ger,3.88,6874,13682,1513,402,1018,2983,4676,4603,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1188801960l/1820716._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9357,122756,122756,1207057,26,439783607,9780439783610.0,\"James Lincoln Collier, Christopher Collier\",1974.0,My Brother Sam Is Dead,My Brother Sam Is Dead,eng,3.39,12817,13445,1556,920,1776,4368,3894,2487,https://images.gr-assets.com/books/1328867125l/122756.jpg,https://images.gr-assets.com/books/1328867125s/122756.jpg\n9358,72623,72623,70297,42,671019759,9780671019750.0,Linda Howard,1994.0,Dream Man,Dream Man,eng,4.04,14604,15373,504,201,674,3219,5478,5801,https://images.gr-assets.com/books/1349066255l/72623.jpg,https://images.gr-assets.com/books/1349066255s/72623.jpg\n9359,91017,91017,87825,39,1400078970,9781400078970.0,Tom Holland,2003.0,Rubicon: The Last Years of the Roman Republic,Rubicon: The Last Years of the Roman Republic,eng,4.17,9224,10596,652,94,283,1609,4369,4241,https://images.gr-assets.com/books/1320470983l/91017.jpg,https://images.gr-assets.com/books/1320470983s/91017.jpg\n9360,71823,71823,9813536,26,140258612,9780140258620.0,Stephen King,1996.0,\"The Green Mile, Part 6: Coffey on the Mile\",\"The Green Mile, Part 6: Coffey on the Mile\",eng,4.55,11936,12572,180,34,124,976,3237,8201,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1557066721l/71823.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9362,5618698,5618698,5790090,13,1416589422,9781416589430.0,Molly Harper,2009.0,\"Nice Girls Don't Have Fangs (Jane Jameson, #1)\",\"Nice Girls Don't Have Fangs (Jane Jameson, #1)\",en-US,3.92,18122,19307,1578,425,1067,4412,7074,6329,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194048l/5618698.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9363,31334,31334,1006203,15,425176657,9780425176660.0,\"Anne Rice, Anne Rampling\",1986.0,Belinda,Belinda,en-US,3.6,10018,12053,290,565,1467,3507,3187,3327,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442192796l/31334._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9364,8449698,8449698,13313623,30,62021273,9780062021270.0,Eloisa James,2011.0,When Beauty Tamed the Beast,\"When Beauty Tamed the Beast (Fairy Tales, #2)\",eng,4.06,16245,18119,1627,206,706,3524,7015,6668,https://images.gr-assets.com/books/1282320694l/8449698.jpg,https://images.gr-assets.com/books/1282320694s/8449698.jpg\n9365,8720415,8720415,13593335,18,1439191379,9781439191380.0,Richard Paul Evans,2011.0,Miles to Go,\"Miles to Go (The Walk, #2)\",,4.27,9654,10767,1196,60,179,1468,4190,4870,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442185783l/8720415._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9367,12959045,12959045,18116420,13,1419702173,9781419702170.0,Derf Backderf,2012.0,My Friend Dahmer,My Friend Dahmer,eng,3.88,11563,12333,1874,232,683,2802,5190,3426,https://images.gr-assets.com/books/1325285515l/12959045.jpg,https://images.gr-assets.com/books/1325285515s/12959045.jpg\n9368,107783,107783,3245791,40,067173783X,9780671737830.0,Julie Garwood,1988.0,The Lion's Lady,\"The Lion's Lady (Crown's Spies, #1)\",eng,4.16,15614,17150,564,123,586,3129,5929,7383,https://images.gr-assets.com/books/1348750925l/107783.jpg,https://images.gr-assets.com/books/1348750925s/107783.jpg\n9370,10295484,10295484,15197369,6,,,Cindy C. Bennett,2010.0,Heart on a Chain,Heart on a Chain,en-GB,4.04,16007,16339,1003,455,878,2906,5429,6671,https://images.gr-assets.com/books/1326962009l/10295484.jpg,https://images.gr-assets.com/books/1326962009s/10295484.jpg\n9371,7987,7987,801181,25,142501093,9780142501090.0,Brian Jacques,1999.0,The Legend of Luke,\"The Legend of Luke (Redwall, #12)\",,3.99,12658,13412,165,88,567,3365,4817,4575,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442546166l/7987._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9372,646195,646195,632345,54,375829709,9780375829700.0,\"Dick King-Smith, Maggie Kneen\",1983.0,The Sheep-Pig,Babe: The Gallant Pig,eng,4.05,11229,11965,319,204,531,2647,3659,4924,https://images.gr-assets.com/books/1320498616l/646195.jpg,https://images.gr-assets.com/books/1320498616s/646195.jpg\n9373,8152697,8152697,6683959,17,,,Wally Lamb,2009.0,Wishin' and Hopin': A Christmas Story,Wishin' and Hopin',eng,3.52,10966,11900,1775,256,1282,4327,4062,1973,https://images.gr-assets.com/books/1328017040l/8152697.jpg,https://images.gr-assets.com/books/1328017040s/8152697.jpg\n9374,13152668,13152668,18330806,14,345520483,9780345520490.0,Jack McCallum,2012.0,Dream Team,\"Dream Team: How Michael, Magic, Larry, Charles, and the Greatest Team of All Time Conquered the World and Changed the Game of Basketball Forever\",eng,4.16,8000,8420,402,175,297,1302,2846,3800,https://images.gr-assets.com/books/1344619142l/13152668.jpg,https://images.gr-assets.com/books/1344619142s/13152668.jpg\n9375,914211,914211,899306,23,007148499X,9780071484990.0,\"Kerry Patterson, Joseph Grenny, David Maxfield, Ron McMillan, Al Switzler\",2007.0,Influencer: The Power to Change Anything,Influencer: The Power to Change Anything,en-GB,3.98,8036,8696,470,150,453,1877,3133,3083,https://images.gr-assets.com/books/1393217540l/914211.jpg,https://images.gr-assets.com/books/1393217540s/914211.jpg\n9376,116982,116982,1837346,56,380016648,9780380016650.0,Roger Zelazny,1976.0,The Hand of Oberon - The Courts of Chaos ,The Hand of Oberon (The Chronicles of Amber #4),eng,4.19,12627,13401,231,48,311,2292,5090,5660,https://images.gr-assets.com/books/1417644788l/116982.jpg,https://images.gr-assets.com/books/1417644788s/116982.jpg\n9377,7828781,7828781,10885390,18,425238199,9780425238200.0,Maya Banks,2010.0,No Place to Run,\"No Place to Run (KGI, #2)\",eng,4.29,16649,17974,804,82,364,2378,6569,8581,https://images.gr-assets.com/books/1390878373l/7828781.jpg,https://images.gr-assets.com/books/1390878373s/7828781.jpg\n9378,106124,106124,1851224,27,439706378,9780439706380.0,\"Jeff Smith, Steve Hamaker\",1997.0,\"The Dragonslayer (Bone, #4)\",\"The Dragonslayer (Bone, #4)\",eng,4.33,11044,11356,416,78,270,1520,3450,6038,https://images.gr-assets.com/books/1497684403l/106124.jpg,https://images.gr-assets.com/books/1497684403s/106124.jpg\n9379,34451,34451,389572,43,316735507,9780316735510.0,Joel Fuhrman,2003.0,Eat to Live,Eat to Live: The Revolutionary Formula for Fast and Sustained Weight Loss,,4.12,7274,10743,1193,137,480,1819,3818,4489,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441067692l/34451._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9380,11738128,11738128,16687336,28,62049879,9780062049870.0,Tessa Dare,2012.0,A Week to Be Wicked,\"A Week to Be Wicked (Spindle Cove, #2)\",eng,4.12,14615,16273,1381,176,561,2896,6130,6510,https://images.gr-assets.com/books/1321335382l/11738128.jpg,https://images.gr-assets.com/books/1321335382s/11738128.jpg\n9382,207365,207365,200700,28,451461525,9780451461520.0,Karen Chance,2007.0,Claimed By Shadow,\"Claimed By Shadow (Cassandra Palmer, #2)\",en-US,3.98,18318,19203,610,243,917,4419,7039,6585,https://images.gr-assets.com/books/1307391261l/207365.jpg,https://images.gr-assets.com/books/1307391261s/207365.jpg\n9383,200963,200963,1284559,11,937295809,9780937295810.0,\"Susan S. Adler, Renée Graef, Nancy Niles\",1986.0,\"Meet Samantha: An American Girl (American Girls: Samantha, #1)\",\"Meet Samantha: An American Girl (American Girls: Samantha, #1)\",eng,3.95,15460,15997,266,336,921,4091,4510,6139,https://images.gr-assets.com/books/1424726132l/200963.jpg,https://images.gr-assets.com/books/1424726132s/200963.jpg\n9384,3419808,3419808,3460278,60,571215289,9780571215290.0,Sebastian Barry,2008.0,The Secret Scripture,The Secret Scripture,eng,3.75,9565,12710,2117,324,973,3210,5189,3014,https://images.gr-assets.com/books/1325714117l/3419808.jpg,https://images.gr-assets.com/books/1325714117s/3419808.jpg\n9385,6911529,6911529,7137063,9,1401226922,9781401226920.0,\"Greg Rucka, J.H. Williams III, Rachel Maddow\",2010.0,Batwoman: Elegy,Batwoman: Elegy,eng,4.16,11001,11494,591,291,477,1761,3557,5408,https://images.gr-assets.com/books/1492568441l/6911529.jpg,https://images.gr-assets.com/books/1492568441s/6911529.jpg\n9386,764073,764073,2592921,39,385721811,9780385721810.0,Julie Otsuka,2002.0,When the Emperor Was Divine,When the Emperor Was Divine,eng,3.7,11529,13268,2079,182,900,4049,5737,2400,https://images.gr-assets.com/books/1368314069l/764073.jpg,https://images.gr-assets.com/books/1368314069s/764073.jpg\n9387,17254035,17254035,23845708,12,62279874,9780062279870.0,Sophie Jordan,2013.0,Foreplay,\"Foreplay (The Ivy Chronicles, #1)\",eng,3.94,14461,15668,1491,298,795,3385,6232,4958,https://images.gr-assets.com/books/1367338814l/17254035.jpg,https://images.gr-assets.com/books/1367338814s/17254035.jpg\n9388,37296,37296,1387061,33,6478964,9780006478970.0,John Sandford,1994.0,Night Prey,\"Night Prey (Lucas Davenport, #6)\",eng,4.14,11975,13885,297,39,183,2447,6298,4918,https://images.gr-assets.com/books/1341920902l/37296.jpg,https://images.gr-assets.com/books/1341920902s/37296.jpg\n9389,192888,192888,1576206,122,61043532,9780061043540.0,Dorothy L. Sayers,1926.0,Clouds of Witness,\"Clouds of Witness (Lord Peter Wimsey, #2)\",eng,4.04,12013,13682,717,83,364,3076,5618,4541,https://images.gr-assets.com/books/1287510321l/192888.jpg,https://images.gr-assets.com/books/1287510321s/192888.jpg\n9390,1176884,1176884,1164674,22,778324826,9780778324830.0,Stephanie Bond,2006.0,Body Movers ,\"Body Movers (Body Movers, #1)\",eng,3.84,10719,11615,583,277,707,3007,4218,3406,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388204391l/1176884.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9391,40136,40136,3089003,17,1582344515,9781582344520.0,Anthony Bourdain,2005.0,\"The Nasty Bits: Collected Varietal Cuts, Useable Trim, Scraps, and Bones\",\"The Nasty Bits: Collected Varietal Cuts, Usable Trim, Scraps, and Bones\",,3.75,8021,9260,734,68,504,2944,3941,1803,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442020661l/40136._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9392,29906980,29906980,50281866,2,812995341,9780812995340.0,George Saunders,2017.0,Lincoln in the Bardo,Lincoln in the Bardo,eng,3.93,20373,24013,5354,996,1809,4186,7887,9135,https://images.gr-assets.com/books/1492130850l/29906980.jpg,https://images.gr-assets.com/books/1492130850s/29906980.jpg\n9393,7745031,7745031,10567916,30,399156828,9780399156820.0,William Gibson,2010.0,Zero History,\"Zero History (Blue Ant, #3)\",eng,3.93,10394,11730,1017,172,573,2530,5049,3406,https://images.gr-assets.com/books/1282769471l/7745031.jpg,https://images.gr-assets.com/books/1282769471s/7745031.jpg\n9394,12021559,12021559,16796680,9,1935089447,9781935089440.0,Chelsea Fine,2011.0,Sophie & Carter,Sophie & Carter,eng,3.83,11849,13418,772,356,1114,3390,4184,4374,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349021443l/12021559.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9395,38703,38703,575142,43,385733143,9780385733140.0,Louis Sachar,2006.0,Small Steps,\"Small Steps (Holes, #2)\",eng,3.69,11837,13095,1387,267,1177,4066,4471,3114,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390281380l/38703.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9396,11940384,11940384,16901602,35,1847445209,9781847445210.0,Alex Marwood,2008.0,The Wicked Girls,The Wicked Girls,eng,3.48,9180,11921,1292,402,1342,4175,4161,1841,https://images.gr-assets.com/books/1340853882l/11940384.jpg,https://images.gr-assets.com/books/1340853882s/11940384.jpg\n9397,155291,155291,149899,21,441011136,9780441011130.0,Simon R. Green,2003.0,Agents of Light and Darkness,\"Agents of Light and Darkness (Nightside, #2)\",eng,4.0,12827,13425,404,148,474,2982,5461,4360,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388212740l/155291.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9398,41069,41069,2184253,55,1857988361,9781857988370.0,John Brunner,1968.0,Stand on Zanzibar,Stand on Zanzibar,eng,3.96,11021,11817,438,298,712,2423,4070,4314,https://images.gr-assets.com/books/1360613921l/41069.jpg,https://images.gr-assets.com/books/1360613921s/41069.jpg\n9399,6261477,6261477,6444699,33,038534385X,9780385343860.0,Gwen Cooper,2009.0,Homer's Odyssey ,Homer's Odyssey,en-US,4.18,9907,11609,1595,238,422,1831,3681,5437,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442887803l/6261477._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9400,433035,433035,2019627,174,7120710,9780007120710.0,Agatha Christie,1940.0,Sad Cypress,\"Sad Cypress (Hercule Poirot, #21)\",eng,3.83,12538,15306,754,98,679,4619,6215,3695,https://images.gr-assets.com/books/1396229541l/433035.jpg,https://images.gr-assets.com/books/1396229541s/433035.jpg\n9401,1070527,1070527,1057213,8,1595328912,9781595328920.0,\"Michael Dante DiMartino, Bryan Konietzko\",2006.0,Avatar: Last Airbender v. 1 (Avatar (Graphic Novels)),Avatar Volume 1: The Last Airbender (Avatar #1),eng,4.52,8261,8382,62,53,171,897,1519,5742,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391088764l/1070527.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9402,17478,17478,6478850,81,340796189,9780340796180.0,Enid Blyton,1942.0,Five Go to Smuggler's Top,\"Five Go to Smuggler's Top (Famous Five, #4)\",eng,4.03,10441,12094,196,86,456,2939,4192,4421,https://images.gr-assets.com/books/1408924745l/17478.jpg,https://images.gr-assets.com/books/1408924745s/17478.jpg\n9403,643988,643988,1945003,47,440210690,9780440210700.0,Sara Paretsky,1982.0,Indemnity Only,\"Indemnity Only (V.I. Warshawski, #1)\",eng,3.89,11954,12647,378,154,496,3388,5118,3491,https://images.gr-assets.com/books/1388939553l/643988.jpg,https://images.gr-assets.com/books/1388939553s/643988.jpg\n9404,74997,74997,1075923,79,340796170,9780340796180.0,Enid Blyton,1944.0,Five Run Away Together,\"Five Run Away Together (Famous Five, #3)\",en-US,4.03,10698,12064,226,88,462,2928,4128,4458,https://images.gr-assets.com/books/1319213384l/74997.jpg,https://images.gr-assets.com/books/1319213384s/74997.jpg\n9405,59887,59887,1453178,43,751505544,9780751505540.0,Danielle Steel,1977.0,The Promise,The Promise,en-US,3.93,9836,10716,367,186,648,2703,3352,3827,https://images.gr-assets.com/books/1408930765l/59887.jpg,https://images.gr-assets.com/books/1408930765s/59887.jpg\n9406,199532,199532,6789865,34,345480260,9780345480260.0,Fannie Flagg,2004.0,A Redbird Christmas,A Redbird Christmas,eng,3.86,11101,12611,1541,147,752,3441,4703,3568,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388886661l/199532.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9407,42691,42691,798555,37,553248642,9780553248650.0,Leon Uris,1984.0,The Haj,The Haj,eng,3.99,10060,10645,389,150,453,2360,4030,3652,https://images.gr-assets.com/books/1359743182l/42691.jpg,https://images.gr-assets.com/books/1359743182s/42691.jpg\n9408,290628,290628,807305,46,451451805,9780451451800.0,Guy Gavriel Kay,1986.0,The Darkest Road,\"The Darkest Road (The Fionavar Tapestry, #3)\",eng,4.18,11755,13328,419,135,472,2181,4571,5969,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388894721l/290628.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9409,18580,18580,816350,51,440900565,9780440900570.0,Bette Greene,1973.0,Summer of My German Soldier,\"Summer of My German Soldier (Summer of My German Soldier, #1)\",,3.66,12108,14177,902,452,1268,4203,4973,3281,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1166975959l/18580.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9410,20168816,20168816,27565413,24,345537262,9780345537260.0,\"George R.R. Martin, Gardner R. Dozois, Joe Abercrombie, Gillian Flynn, Matthew Hughes, Joe R. Lansdale, Michael Swanwick, David  Ball, Carrie Vaughn, Scott Lynch, Bradley Denton, Cherie Priest, Daniel Abraham, Paul Cornell, Steven Saylor, Garth Nix, Walter Jon Williams, Phyllis Eisenstein, Lisa Tuttle, Neil Gaiman, Connie Willis, Patrick Rothfuss\",2014.0,Rogues,Rogues,eng,3.86,10135,12239,1502,103,522,3259,5415,2940,https://images.gr-assets.com/books/1404616147l/20168816.jpg,https://images.gr-assets.com/books/1404616147s/20168816.jpg\n9412,23357188,23357188,42913619,5,,9781311736420.0,Cora Reilly,2014.0,Bound by Honor,\"Bound by Honor (Born in Blood Mafia Chronicles, #1)\",eng,4.14,15138,17384,1173,324,701,2712,6063,7584,https://images.gr-assets.com/books/1418481477l/23357188.jpg,https://images.gr-assets.com/books/1418481477s/23357188.jpg\n9414,8150317,8150317,11649990,32,440246113,9780440246110.0,Lara Adrian,2011.0,Deeper than Midnight,\"Deeper Than Midnight (Midnight Breed, #9)\",en-US,4.29,16679,18406,964,72,401,2558,6444,8931,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433194408l/8150317._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9415,8100979,8100979,10885471,12,451463722,9780451463720.0,Faith Hunter,2011.0,Mercy Blade,\"Mercy Blade (Jane Yellowrock, #3)\",eng,4.21,14856,16350,579,121,327,2611,6261,7030,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388337237l/8100979.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9416,227280,227280,220153,12,743496973,9780743496970.0,Cara Lockwood,2003.0,I Do (But I Don't),I Do -- But I Don't,,3.66,9151,9388,163,337,895,2923,2719,2514,https://images.gr-assets.com/books/1480111926l/227280.jpg,https://images.gr-assets.com/books/1480111926s/227280.jpg\n9417,244115,244115,2264278,13,525477543,9780525477550.0,Judy Schachner,2006.0,Skippyjon Jones in Mummy Trouble (Skippyjon Jones),\"Skippyjon Jones in Mummy Trouble (Skippyjon Jones, #3)\",en-US,4.25,11076,11311,220,251,464,1708,2653,6235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435812618l/244115._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9418,15799151,15799151,21522116,35,307273601,9780307273600.0,Mason Currey,2013.0,Daily Rituals: How Artists Work,Daily Rituals: How Artists Work,eng,3.66,8565,9824,966,375,874,2848,3374,2353,https://images.gr-assets.com/books/1344618847l/15799151.jpg,https://images.gr-assets.com/books/1344618847s/15799151.jpg\n9419,8100288,8100288,12873090,19,1414336063,9781414336060.0,\"Kevin Malarkey, Alex Malarkey\",2010.0,The Boy Who Came Back from Heaven,\"The Boy Who Came Back from Heaven: A Remarkable Account of Miracles, Angels, and Life beyond This World\",eng,3.89,8945,9801,698,367,726,2178,2882,3648,https://images.gr-assets.com/books/1406510843l/8100288.jpg,https://images.gr-assets.com/books/1406510843s/8100288.jpg\n9421,1468706,1468706,2476793,18,719569516,9780719569520.0,Jacqueline Winspear,2008.0,An Incomplete Revenge,\"An Incomplete Revenge (Maisie Dobbs, #5)\",en-GB,4.09,11579,13525,1098,53,214,2517,6470,4271,https://images.gr-assets.com/books/1329547507l/1468706.jpg,https://images.gr-assets.com/books/1329547507s/1468706.jpg\n9422,24040551,24040551,43627601,17,385538510,9780385538510.0,Jennifer McMahon,2015.0,The Night Sister,The Night Sister,eng,3.67,10219,11841,1647,239,911,3647,4811,2233,https://images.gr-assets.com/books/1427845722l/24040551.jpg,https://images.gr-assets.com/books/1427845722s/24040551.jpg\n9424,13659,13659,65982,58,441011241,9780441011250.0,Ursula K. Le Guin,2001.0,Tales from Earthsea,\"Tales from Earthsea (Earthsea Cycle, #5)\",eng,4.0,11530,13238,465,70,474,3080,5434,4180,https://images.gr-assets.com/books/1309202073l/13659.jpg,https://images.gr-assets.com/books/1309202073s/13659.jpg\n9425,16171259,16171259,16294155,54,1594487480,9781594487480.0,\"Juan Gabriel Vásquez, Anne McLean\",2011.0,El ruido de las cosas al caer,The Sound of Things Falling,eng,3.74,6113,9262,1042,148,613,2647,3943,1911,https://images.gr-assets.com/books/1356199047l/16171259.jpg,https://images.gr-assets.com/books/1356199047s/16171259.jpg\n9427,25241477,25241477,44960908,27,345545966,9780345545960.0,Dean Koontz,2015.0,Ashley Bell,Ashley Bell,eng,3.59,8118,11732,1886,601,1330,3166,3851,2784,https://images.gr-assets.com/books/1428081712l/25241477.jpg,https://images.gr-assets.com/books/1428081712s/25241477.jpg\n9428,313998,313998,304846,18,000224618X,9780002246190.0,\"William Gibson, Terry Bisson\",1981.0,Johnny Mnemonic,Johnny Mnemonic,en-US,3.75,9564,9793,90,166,636,3030,3622,2339,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922726l/313998.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9429,513176,513176,987443,20,553568019,9780553568010.0,Michael A. Stackpole,1996.0,Rogue Squadron,\"Rogue Squadron (Star Wars: X-Wing, #1)\",en-GB,4.02,11405,11953,323,115,548,2594,4416,4280,https://images.gr-assets.com/books/1327860341l/513176.jpg,https://images.gr-assets.com/books/1327860341s/513176.jpg\n9430,457457,457457,1461285,43,440244056,9780440244060.0,Danielle Steel,1987.0,Fine Things,Fine Things,,3.92,10519,10903,204,121,568,3027,3583,3604,https://images.gr-assets.com/books/1320501112l/457457.jpg,https://images.gr-assets.com/books/1320501112s/457457.jpg\n9432,74034,74034,2337731,35,014303653X,9780143036530.0,\"Neil Postman, Andrew Postman\",1985.0,Amusing Ourselves to Death: Public Discourse in the Age of Show Business,Amusing Ourselves to Death: Public Discourse in the Age of Show Business,eng,4.14,9736,11145,1344,162,444,1754,4095,4690,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1568871230l/74034.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9433,61974,61974,339591,25,345419588,9780345419580.0,Anne McCaffrey,1986.0,\"Nerilka's Story (Pern: Dragonriders of Pern, #5)\",\"Nerilka's Story (Pern, #8)\",eng,3.78,12936,14399,195,146,1031,4581,4769,3872,https://images.gr-assets.com/books/1296104206l/61974.jpg,https://images.gr-assets.com/books/1296104206s/61974.jpg\n9434,153175,153175,2930911,33,380803267,9780380803260.0,Raymond E. Feist,2003.0,King of Foxes,\"King of Foxes (Conclave of Shadows, #2)\",,3.95,10684,11552,98,85,493,2876,4563,3535,https://images.gr-assets.com/books/1409600307l/153175.jpg,https://images.gr-assets.com/books/1409600307s/153175.jpg\n9435,1153709,1153709,1141200,29,670913502,9780670913500.0,Lynley Dodd,1983.0,Hairy Maclary from Donaldson's Dairy,Hairy Maclary from Donaldson's Dairy,eng,4.28,11051,11285,171,164,363,1676,3063,6019,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348010249l/1153709.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9436,764063,764063,2128192,21,307393844,9780307393840.0,\"Pattie Boyd, Penny Junor\",2007.0,Wonderful Tonight: An Autobiography,Wonderful Tonight,en-US,3.65,8254,9450,942,244,977,2884,3050,2295,https://images.gr-assets.com/books/1320426628l/764063.jpg,https://images.gr-assets.com/books/1320426628s/764063.jpg\n9437,17573684,17573684,19340161,15,393346773,9780393346770.0,Ann Hood,2013.0,The Obituary Writer,The Obituary Writer,eng,3.7,5178,11328,1676,184,740,3487,4800,2117,https://images.gr-assets.com/books/1364851286l/17573684.jpg,https://images.gr-assets.com/books/1364851286s/17573684.jpg\n9438,1175893,1175893,1163669,60,1905294425,9781905294430.0,\"Roderick Gordon, Brian  Williams\",2007.0,Tunnels,\"Tunnels (Tunnels, #1)\",en-CA,3.57,11678,13324,1406,737,1543,3730,4029,3285,https://images.gr-assets.com/books/1320969639l/1175893.jpg,https://images.gr-assets.com/books/1320969639s/1175893.jpg\n9439,35539,35539,1654509,17,316013315,9780316013310.0,Bob Spitz,2005.0,The Beatles: The Biography,The Beatles: The Biography,en-US,4.13,8120,8464,390,205,314,1270,3020,3655,https://images.gr-assets.com/books/1327951066l/35539.jpg,https://images.gr-assets.com/books/1327951066s/35539.jpg\n9440,92371,92371,2450187,102,451210468,9780451210460.0,Ken Follett,1985.0,Lie Down With Lions,Lie Down with Lions,,3.78,9822,11731,493,113,654,3481,4920,2563,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347348567l/92371.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9441,630621,630621,616941,9,785122451,9780785122460.0,\"Greg Pak, Aaron Lopresti, Carlo Pagulayan, Juan Santacruz, Gary Frank, Takeshi Miyazawa\",2007.0,Hulk: Planet Hulk,The Incredible Hulk: Planet Hulk,eng,4.23,8680,9426,333,89,305,1460,3039,4533,https://images.gr-assets.com/books/1312315970l/630621.jpg,https://images.gr-assets.com/books/1312315970s/630621.jpg\n9442,134958,134958,130044,19,60959517,9780060959520.0,David Starkey,2000.0,Elizabeth: The Struggle for the Throne,Elizabeth: The Struggle for the Throne,,4.06,11163,11537,257,153,395,2312,4390,4287,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1402027586l/134958.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9443,571508,571508,2514798,7,1573451991,9781573451990.0,Dean Hughes,1997.0,\"Rumors of War (Children of the Promise, Vol 1)\",\"Rumors of War (Children of the Promise, #1)\",en-US,4.25,9995,10147,875,89,160,1419,3945,4534,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388973926l/571508.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9444,10008056,10008056,14903228,75,8756795459,9788756795460.0,Jussi Adler-Olsen,2010.0,Journal 64,\"Journal 64 (Afdeling Q, #4)\",dan,4.04,5044,12025,995,95,316,2249,5752,3613,https://images.gr-assets.com/books/1424299324l/10008056.jpg,https://images.gr-assets.com/books/1424299324s/10008056.jpg\n9445,13151283,13151283,18329307,3,,,محمد صادق,2012.0,بضع ساعات في يوم ما,بضع ساعات في يوم ما,ara,3.14,7806,7875,855,1222,1338,2021,1671,1623,https://images.gr-assets.com/books/1410703596l/13151283.jpg,https://images.gr-assets.com/books/1410703596s/13151283.jpg\n9446,10049436,10049436,14945405,20,7345631,9780007345630.0,Lindsey Kelk,2011.0,The Single Girl's To-Do List,The Single Girl's To-Do List,eng,3.94,9829,10581,480,210,602,2519,3495,3755,https://images.gr-assets.com/books/1327955203l/10049436.jpg,https://images.gr-assets.com/books/1327955203s/10049436.jpg\n9447,112517,112517,828267,43,1857232526,9781857232520.0,\"Arthur C. Clarke, Gentry Lee\",1993.0,Rama Revealed: The Ultimate Encounter,\"Rama Revealed (Rama, #4)\",eng,3.72,9015,10468,256,314,959,2888,3492,2815,https://images.gr-assets.com/books/1375814909l/112517.jpg,https://images.gr-assets.com/books/1375814909s/112517.jpg\n9448,9399336,9399336,14283194,12,1936305380,9781936305380.0,Alice Clayton,2010.0,The Redhead Revealed,\"The Redhead Revealed (Redhead, #2)\",eng,4.2,15464,17359,1030,155,488,2589,6600,7527,https://images.gr-assets.com/books/1285470017l/9399336.jpg,https://images.gr-assets.com/books/1285470017s/9399336.jpg\n9449,125958,125958,121314,20,1595542779,9781595542780.0,Ted Dekker,2006.0,Skin,Skin,,3.8,10590,10901,637,272,919,2845,3593,3272,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441147725l/125958._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9450,20662728,20662728,6125574,21,006156155X,9780061561560.0,Garth Nix,2014.0,Clariel: The Lost Abhorsen,\"Clariel (Abhorsen, #4)\",eng,3.79,10616,14173,1810,178,908,4069,5640,3378,https://images.gr-assets.com/books/1393877442l/20662728.jpg,https://images.gr-assets.com/books/1393877442s/20662728.jpg\n9451,68099,68099,1245618,75,006074068X,9780060740690.0,Donna Leon,1992.0,Death at La Fenice,\"Death at La Fenice (Commissario Brunetti, #1)\",en-US,3.81,11705,14654,1493,151,692,4119,6471,3221,https://images.gr-assets.com/books/1441466744l/68099.jpg,https://images.gr-assets.com/books/1441466744s/68099.jpg\n9452,36058,36058,972626,53,99366614,9780099366610.0,James Ellroy,1988.0,The Big Nowhere,\"The Big Nowhere (L.A. Quartet, #2)\",eng,4.11,9249,10487,341,99,292,1853,4381,3862,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348561244l/36058.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9453,71787,71787,2719920,25,143035088,9780143035080.0,Jan Karon,2002.0,In This Mountain (Mitford),\"In This Mountain (Mitford Years, #7)\",,4.32,11015,12225,328,35,149,1623,4452,5966,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388629068l/71787.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9454,5052,5052,2879976,87,451216725,9780451216720.0,Ken Follett,2000.0,Code to Zero,Code to Zero,,3.64,9071,11467,666,151,848,3949,4531,1988,https://images.gr-assets.com/books/1309209804l/5052.jpg,https://images.gr-assets.com/books/1309209804s/5052.jpg\n9455,429024,429024,5246858,440,140437428,9780140437420.0,\"Charles Dickens, Norman Page\",1840.0,The Old Curiosity Shop,The Old Curiosity Shop,,3.75,11092,13299,792,308,997,3819,4764,3411,https://images.gr-assets.com/books/1332523435l/429024.jpg,https://images.gr-assets.com/books/1332523435s/429024.jpg\n9456,73860,73860,71457,33,345339258,9780345339260.0,Virginia M. Axline,1964.0,Dibs in Search of Self: Personality Development in Play Therapy,Dibs in Search of Self,en-US,4.13,8905,9218,341,78,301,1788,3206,3845,https://images.gr-assets.com/books/1403187565l/73860.jpg,https://images.gr-assets.com/books/1403187565s/73860.jpg\n9457,46908,46908,45979,12,1595324097,9781595324090.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",2004.0,フルーツバスケット 14,\"Fruits Basket, Vol. 14\",en-US,4.46,13072,13206,126,76,242,1425,3204,8259,https://images.gr-assets.com/books/1393736589l/46908.jpg,https://images.gr-assets.com/books/1393736589s/46908.jpg\n9458,17277800,17277800,23580688,8,785165630,9780785165640.0,\"Matt Fraction, David Aja, Francesco Francavilla, Steve Lieber, Jesse Hamm, Annie Wu, Matt Hollingsworth, Chris Eliopoulos\",2013.0,\"Hawkeye, Volume 2: Little Hits\",\"Hawkeye, Volume 2: Little Hits\",eng,4.27,15547,15836,858,257,444,2007,5169,7959,https://images.gr-assets.com/books/1384620904l/17277800.jpg,https://images.gr-assets.com/books/1384620904s/17277800.jpg\n9459,18420,18420,2126028,24,553345397,9780553345390.0,\"Barbara Ann Brennan, Jos. A. Smith\",1987.0,Hands of Light: A Guide to Healing Through the Human Energy Field,Hands Of Light,,4.27,9016,9183,116,105,278,1400,2684,4716,https://images.gr-assets.com/books/1320544153l/18420.jpg,https://images.gr-assets.com/books/1320544153s/18420.jpg\n9460,87280,87280,284719,62,349102627,9780349102630.0,Bohumil Hrabal,1976.0,Příliš hlučná samota,Too Loud a Solitude,eng,4.17,5468,9656,945,119,391,1541,3302,4303,https://images.gr-assets.com/books/1359996651l/87280.jpg,https://images.gr-assets.com/books/1359996651s/87280.jpg\n9461,65113,65113,2393728,24,61119067,9780061119060.0,\"Lemony Snicket, Brett Helquist\",2006.0,\"The Complete Wreck (A Series of Unfortunate Events, Books 1-13)\",A Series of Unfortunate Events Box: The Complete Wreck (Books 1-13),en-GB,4.28,11240,11806,911,121,367,1606,3744,5968,https://images.gr-assets.com/books/1307655939l/65113.jpg,https://images.gr-assets.com/books/1307655939s/65113.jpg\n9463,41820,41820,1621390,15,553293427,9780553293420.0,Isaac Asimov,1950.0,Pebble in the Sky,Pebble in the Sky (Galactic Empire #3),eng,3.85,11335,13463,522,60,587,3960,5511,3345,https://images.gr-assets.com/books/1335782053l/41820.jpg,https://images.gr-assets.com/books/1335782053s/41820.jpg\n9464,5024334,5024334,5090918,37,373773552,9780373773560.0,Kristan Higgins,2009.0,Too Good To Be True,Too Good to Be True,eng,3.9,14745,16143,1073,197,864,4049,6336,4697,https://images.gr-assets.com/books/1388920769l/5024334.jpg,https://images.gr-assets.com/books/1388920769s/5024334.jpg\n9465,105920,105920,102101,24,078510786X,9780785107870.0,\"Brian Michael Bendis, Mark Bagley\",2001.0,\"Ultimate Spider-Man, Volume 1: Power and Responsibility\",\"Ultimate Spider-Man, Volume 1: Power and Responsibility\",eng,4.06,10462,10929,268,225,531,2105,3607,4461,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273050l/105920.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9468,85310,85310,3107820,39,425189864,9780425189860.0,John Sandford,2002.0,Mortal Prey,\"Mortal Prey (Lucas Davenport, #13)\",en-US,4.2,11272,12613,382,36,159,1954,5540,4924,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1421292490l/85310.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9469,16312,16312,519419,147,1572703857,9781572703860.0,\"Agatha Christie, Hugh Fraser\",1940.0,\"One, Two, Buckle My Shoe\",\"One, Two, Buckle My Shoe (Hercule Poirot, #22)\",eng,3.74,11285,14936,644,93,808,5185,5720,3130,https://images.gr-assets.com/books/1328750172l/16312.jpg,https://images.gr-assets.com/books/1328750172s/16312.jpg\n9470,29236299,29236299,44560442,21,553499165,9780553499160.0,\"Amie Kaufman, Jay Kristoff, Marie Lu\",2016.0,Gemina,\"Gemina (The Illuminae Files, #2)\",eng,4.56,10960,17426,4612,92,169,972,4803,11390,https://images.gr-assets.com/books/1480097137l/29236299.jpg,https://images.gr-assets.com/books/1480097137s/29236299.jpg\n9471,51740,51740,2291172,22,60094893,9780060094900.0,Chris Crutcher,1993.0,Staying Fat for Sarah Byrnes,Staying Fat for Sarah Byrnes,en-US,3.94,11544,12026,1038,261,658,2531,4653,3923,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435028275l/51740._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9472,73960,73960,2406767,277,143039326,9780143039330.0,\"R.D. Blackmore, Michelle Allen\",1869.0,Lorna Doone: A Romance of Exmoor,Lorna Doone,eng,3.71,11716,12859,487,436,1113,3664,4188,3458,https://images.gr-assets.com/books/1299346797l/73960.jpg,https://images.gr-assets.com/books/1299346797s/73960.jpg\n9473,53809,53809,464034,68,8408057235,9788408057240.0,Paulo Coelho,1994.0,Maktub,Maktub,spa,3.41,5902,8793,592,602,1274,2721,2330,1866,https://images.gr-assets.com/books/1361293164l/53809.jpg,https://images.gr-assets.com/books/1361293164s/53809.jpg\n9474,10599302,10599302,15506975,20,,,Jill Shalvis,2011.0,\"Head Over Heels (Lucky Harbor, #3)\",\"Head Over Heels (Lucky Harbor, #3)\",eng,4.16,16560,17472,1019,100,433,3016,6992,6931,https://images.gr-assets.com/books/1302052809l/10599302.jpg,https://images.gr-assets.com/books/1302052809s/10599302.jpg\n9475,1866046,1866046,2666000,35,1595540075,9781595540070.0,Ted Dekker,2008.0,Adam,Adam,eng,3.93,9903,10655,753,219,647,2415,3731,3643,https://images.gr-assets.com/books/1364953816l/1866046.jpg,https://images.gr-assets.com/books/1364953816s/1866046.jpg\n9476,388018,388018,2655944,155,1572703938,9781572703930.0,\"Agatha Christie, Robin Bailey\",1963.0,The Clocks,\"The Clocks (Hercule Poirot, #34)\",eng,3.71,12335,15410,661,154,1045,5219,5703,3289,https://images.gr-assets.com/books/1375949009l/388018.jpg,https://images.gr-assets.com/books/1375949009s/388018.jpg\n9477,15818278,15818278,21545889,10,006212255X,9780062122550.0,Jennifer McMahon,2013.0,The one I left behind,The One I Left Behind,en-US,3.76,10266,11274,1165,194,646,3177,4871,2386,https://images.gr-assets.com/books/1348689472l/15818278.jpg,https://images.gr-assets.com/books/1348689472s/15818278.jpg\n9478,89370,29554877,6113696,13,014095144X,9780140951450.0,Benjamin Hoff,1992.0,Tao of Pooh and Te of Piglet Boxed Set,Tao of Pooh and Te of Piglet Boxed Set,eng,4.15,8206,9821,463,97,375,1719,3428,4202,https://images.gr-assets.com/books/1444316923l/89370.jpg,https://images.gr-assets.com/books/1444316923s/89370.jpg\n9479,21433251,21433251,40743791,6,1927925169,9781927925160.0,\"Stacy King, SunNeko Lee, Crystal S. Chan, Victor Hugo\",2014.0,Manga Classics: Les Misérables,Manga Classics: Les Misérables,eng,4.1,6691,6823,288,305,316,1017,1953,3232,https://images.gr-assets.com/books/1421108133l/21433251.jpg,https://images.gr-assets.com/books/1421108133s/21433251.jpg\n9480,280125,280125,2347015,20,786943408,9780786943400.0,R.A. Salvatore,2007.0,The Orc King,\"The Orc King (Forgotten Realms: Transitions, #1; Legend of Drizzt, #17)\",en-US,4.11,9012,10187,190,80,403,1965,3605,4134,https://images.gr-assets.com/books/1474922224l/280125.jpg,https://images.gr-assets.com/books/1474922224s/280125.jpg\n9481,127567,127567,1104950,42,345419383,9780345419380.0,Anne McCaffrey,1994.0,The Dolphins of Pern,\"The Dolphins of Pern (Pern, #13)\",eng,3.94,12938,14529,197,117,816,3767,4925,4904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1204646934l/127567.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9482,164836,164836,159149,5,068483376X,9780684833770.0,S.A.R.K.,1997.0,Succulent Wild Woman,Succulent Wild Woman,,4.12,9365,9417,271,166,432,1692,2933,4194,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441651299l/164836._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9483,77866,77866,2237564,47,1400031001,9781400031010.0,William  Boyd,2002.0,Any Human Heart,Any Human Heart,en-GB,4.26,8365,10207,1045,94,335,1298,3615,4865,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386912980l/77866.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9484,10720733,10720733,14450688,47,1444736930,9781444736940.0,John Grisham,2010.0,The Abduction,\"The Abduction (Theodore Boone, #2)\",eng,3.76,9346,11766,1217,228,943,3443,4011,3141,https://images.gr-assets.com/books/1328093951l/10720733.jpg,https://images.gr-assets.com/books/1328093951s/10720733.jpg\n9485,15776904,15776904,21489210,29,,,\"Oliver Pötzsch, Lee Chadeayne\",2010.0,\"Die Henkerstochter und der König der Bettler (Band 3 aus der Reihe \"\"Die Henkerstochter-Saga\"\")\",\"The Beggar King (The Hangman's Daughter, #3)\",eng,3.95,10271,11295,796,72,380,2594,5221,3028,https://images.gr-assets.com/books/1346669999l/15776904.jpg,https://images.gr-assets.com/books/1346669999s/15776904.jpg\n9487,8710484,8710484,13583341,82,2081246333,9782081246330.0,Michel Houellebecq,2010.0,La Carte et le territoire,La Carte et le territoire,fre,3.93,5631,10484,761,151,539,2189,4594,3011,https://images.gr-assets.com/books/1498812783l/8710484.jpg,https://images.gr-assets.com/books/1498812783s/8710484.jpg\n9488,20821249,20821249,26830332,29,399164448,9780399164450.0,J.D. Robb,2014.0,Festive in Death,\"Festive in Death (In Death, #39)\",eng,4.26,9784,14096,1171,92,286,2035,5158,6525,https://images.gr-assets.com/books/1458263204l/20821249.jpg,https://images.gr-assets.com/books/1458263204s/20821249.jpg\n9489,94064,94064,90674,10,689857705,9780689857710.0,Alex   Sanchez,2001.0,Rainbow Boys,\"Rainbow Boys (Rainbow Trilogy, #1)\",eng,3.85,11146,11349,484,371,892,2774,3346,3966,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388281942l/94064.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9490,1838166,1838166,3328784,30,375840907,9780375840910.0,Jeanne Birdsall,2008.0,The Penderwicks on Gardam Street,\"The Penderwicks on Gardam Street (The Penderwicks, #2)\",,4.23,13423,14067,1392,136,380,2050,5081,6420,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1538403953l/1838166._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9491,38562,38562,38324,29,006077407X,9780060774070.0,Lynsay Sands,2006.0,A Bite to Remember,A Bite to Remember (Argeneau #5),eng,4.23,16516,17514,403,69,404,2969,5979,8093,https://images.gr-assets.com/books/1351280715l/38562.jpg,https://images.gr-assets.com/books/1351280715s/38562.jpg\n9492,13722526,13722526,14080417,86,1250024102,9781250024110.0,\"Lars Kepler, Laura A. Wideburg\",2010.0,Paganinikontraktet,\"The Nightmare (Joona Linna, #2)\",en-US,3.78,6917,10832,851,176,708,2920,4542,2486,https://images.gr-assets.com/books/1340909323l/13722526.jpg,https://images.gr-assets.com/books/1340909323s/13722526.jpg\n9493,114143,114143,2444464,62,051512608X,9780515126080.0,Nora Roberts,1998.0,The Reef,The Reef,en-US,3.89,13932,15031,426,149,878,4040,5323,4641,https://images.gr-assets.com/books/1309201310l/114143.jpg,https://images.gr-assets.com/books/1309201310s/114143.jpg\n9494,68930,68930,1113256,169,451199901,9780451199900.0,Agatha Christie,1952.0,They Do it with Mirrors,\"They Do It with Mirrors (Miss Marple, #6)\",eng,3.74,13214,16035,695,96,864,5433,6288,3354,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389760572l/68930.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9495,9260507,9260507,10891357,6,1449401163,9781449401160.0,Matthew Inman,2010.0,5 Very Good Reasons to Punch a Dolphin in the Mouth (and Other Useful Guides),5 Very Good Reasons to Punch a Dolphin in the Mouth and Other Useful Guides,eng,4.11,9469,10075,569,188,443,1806,3316,4322,https://images.gr-assets.com/books/1309685137l/9260507.jpg,https://images.gr-assets.com/books/1309685137s/9260507.jpg\n9496,239381,239381,231881,5,307119483,9780307119480.0,Mercer Mayer,1987.0,Just a Mess (Look-Look),Just a Mess (Little Critter),eng,4.23,10772,10776,49,121,314,2129,2580,5632,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388273675l/239381.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9497,835155,835155,124782,18,373250118,9780373250110.0,Melissa Senate,2001.0,See Jane Date,See Jane Date,,3.49,9292,9427,131,494,1083,3210,2561,2079,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328049767l/835155.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9498,221298,221298,1689961,50,044024160X,9780440241610.0,Conn Iggulden,2006.0,The Gods of War,\"The Gods of War (Emperor, #4)\",en-US,4.29,8984,10236,212,48,173,1294,4019,4702,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388851086l/221298.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9499,89186,89186,2622804,25,441014011,9780441014020.0,Alastair Reynolds,2005.0,Pushing Ice,Pushing Ice,,4.02,9365,10855,586,87,396,2179,4781,3412,https://images.gr-assets.com/books/1309197028l/89186.jpg,https://images.gr-assets.com/books/1309197028s/89186.jpg\n9501,17285330,17285330,23904471,27,62318470,9780062318470.0,Cynthia Hand,2015.0,The Last Time We Say Goodbye,The Last Time We Say Goodbye,eng,4.11,11063,12424,2033,134,444,2173,4869,4804,https://images.gr-assets.com/books/1403710453l/17285330.jpg,https://images.gr-assets.com/books/1403710453s/17285330.jpg\n9502,7780,7780,10830,2,679434488,9780679434480.0,\"Dr. Seuss, Maurice Sendak, Audrey Geisel\",1995.0,The Secret Art of Dr. Seuss,The Secret Art of Dr. Seuss,,4.05,8461,8467,92,325,498,1527,2174,3943,https://images.gr-assets.com/books/1320429156l/7780.jpg,https://images.gr-assets.com/books/1320429156s/7780.jpg\n9503,25347,25347,2926176,57,345436830,9780345436830.0,Anne Rice,2005.0,Christ the Lord: Out of Egypt,\"Out of Egypt (Christ the Lord, #1)\",eng,3.56,10729,12263,1176,743,1424,3255,3874,2967,https://images.gr-assets.com/books/1381744119l/25347.jpg,https://images.gr-assets.com/books/1381744119s/25347.jpg\n9504,26228034,26228034,46213537,10,356508366,9780356508370.0,N.K. Jemisin,2016.0,The Obelisk Gate,\"The Obelisk Gate (The Broken Earth, #2)\",eng,4.36,9481,12826,1502,45,137,1214,5164,6266,https://images.gr-assets.com/books/1441406262l/26228034.jpg,https://images.gr-assets.com/books/1441406262s/26228034.jpg\n9505,23363874,23363874,42923140,41,1782115080,9781782115080.0,Matt Haig,2015.0,Reasons To Stay Alive ,Reasons to Stay Alive,eng,4.17,11307,14295,1980,234,548,2209,4823,6481,https://images.gr-assets.com/books/1418674667l/23363874.jpg,https://images.gr-assets.com/books/1418674667s/23363874.jpg\n9506,6280379,6280379,5768221,49,307272095,9780307272100.0,A.S. Byatt,2009.0,The Children's Book,The Children's Book,eng,3.66,10985,12705,2055,656,1264,3139,4337,3309,https://images.gr-assets.com/books/1320548114l/6280379.jpg,https://images.gr-assets.com/books/1320548114s/6280379.jpg\n9508,961831,961831,960794,30,515124648,9780515124640.0,Susanna Kearsley,1997.0,The Shadowy Horses,The Shadowy Horses,eng,3.92,10640,13938,1492,106,646,3414,5897,3875,https://images.gr-assets.com/books/1428617658l/961831.jpg,https://images.gr-assets.com/books/1428617658s/961831.jpg\n9509,820517,820517,218134,33,64408337,9780064408330.0,Jack Gantos,1998.0,Joey Pigza Swallowed the Key (Joey Pigza Books),\"Joey Pigza Swallowed the Key (Joey Pigza, #1)\",eng,3.74,12985,13420,864,613,1146,3380,4222,4059,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348826578l/820517.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9510,3690427,3690427,3733869,20,1427206058,9781427206050.0,\"Jacqueline Winspear, Orlagh Cassidy\",2009.0,Among the Mad,\"Among the Mad (Maisie Dobbs, #6)\",eng,4.1,11363,13709,1168,63,267,2456,6382,4541,https://images.gr-assets.com/books/1422084387l/3690427.jpg,https://images.gr-assets.com/books/1422084387s/3690427.jpg\n9512,3692151,3692151,3735626,1,9773990494,,عمر طاهر,2003.0,شكلها باظت,شكلها باظت,ara,3.52,8257,8257,482,355,948,2675,2644,1635,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1215585555l/3692151.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9513,4530,4530,12948648,55,143035363,9780143035370.0,Helen Fielding,2003.0,Olivia Joules And The Overactive Imagination,Olivia Joules and the Overactive Imagination,en-US,3.1,10687,11651,793,1023,2350,4114,2721,1443,https://images.gr-assets.com/books/1408588694l/4530.jpg,https://images.gr-assets.com/books/1408588694s/4530.jpg\n9514,8857310,8857310,13594625,11,1594487871,9781594487870.0,Sarah Vowell,2011.0,Unfamiliar Fishes,Unfamiliar Fishes,,3.6,10389,11569,1819,222,987,3932,4499,1929,https://images.gr-assets.com/books/1311706005l/8857310.jpg,https://images.gr-assets.com/books/1311706005s/8857310.jpg\n9515,5750628,5750628,3565583,24,385528086,9780385528080.0,Jonathan L. Howard,2009.0,Johannes Cabal the Necromancer,\"Johannes Cabal the Necromancer (Johannes Cabal, #1)\",eng,3.94,10603,12391,1315,207,667,2631,5020,3866,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442673488l/5750628._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9516,7199,7199,2547473,40,60586370,9780060586380.0,Ann-Marie MacDonald,2003.0,The Way the Crow Flies,The Way the Crow Flies,en-US,4.08,10227,11055,1021,184,474,1875,4317,4205,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433037834l/7199._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9517,17810,17810,856346,39,,9780143035700.0,\"Ryū Murakami, Ralph McCarthy\",1997.0,イン ザ・ミソスープ,In the Miso Soup,eng,3.61,9285,11545,950,313,1107,3586,4346,2193,https://images.gr-assets.com/books/1309282509l/17810.jpg,https://images.gr-assets.com/books/1309282509s/17810.jpg\n9518,6403690,6403690,6592533,28,525951369,9780525951360.0,Timothy J. Keller,2009.0,\"Counterfeit Gods: The Empty Promises of Money, Sex, and Power, and the Only Hope That Matters\",\"Counterfeit Gods: The Empty Promises of Money, Sex, and Power, and the Only Hope that Matters\",eng,4.32,8783,9430,554,114,202,1048,3228,4838,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347522118l/6403690.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9519,167216,167216,3356874,47,375705198,9780375705200.0,Elizabeth Strout,1998.0,Amy & Isabelle,Amy and Isabelle ,,3.73,10602,12350,1430,179,839,3587,5287,2458,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348311763l/167216.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9520,15803037,15803037,21526451,25,1476706123,9781476706120.0,Jason  Matthews,2013.0,Red Sparrow,Red Sparrow (Red Sparrow Trilogy #1),eng,4.02,6998,10701,1242,201,481,1946,4329,3744,https://images.gr-assets.com/books/1361806944l/15803037.jpg,https://images.gr-assets.com/books/1361806944s/15803037.jpg\n9521,7632329,7632329,10138518,34,747598681,9780747598690.0,Ben Macintyre,2010.0,Operation Mincemeat: The True Spy Story That Changed the Course of World War II,Operation Mincemeat: How a Dead Man and a Bizarre Plan Fooled the Nazis and Assured an Allied Victory,eng,3.95,8112,10431,1084,185,447,2223,4469,3107,https://images.gr-assets.com/books/1327448835l/7632329.jpg,https://images.gr-assets.com/books/1327448835s/7632329.jpg\n9522,487666,487666,475942,28,425208133,9780425208140.0,\"Dick Winters, Cole C. Kingseed\",2006.0,Beyond Band of Brothers: The War Memoirs of Major Dick Winters,Beyond Band of Brothers: The War Memoirs of Major Dick Winters,eng,4.24,9712,10427,412,73,251,1587,3717,4799,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442890529l/487666._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9523,19523454,19523454,25747377,47,385538030,9780385538040.0,Chuck Palahniuk,2014.0,Beautiful You,Beautiful You,eng,2.98,8507,10035,1612,1230,2150,3339,2240,1076,https://images.gr-assets.com/books/1399667103l/19523454.jpg,https://images.gr-assets.com/books/1399667103s/19523454.jpg\n9524,232268,232268,303001,11,671004239,9780671004230.0,Richard Paul Evans,1998.0,The Locket,\"The Locket (The Locket, #1)\",en-US,4.1,10147,10389,343,155,317,2054,3667,4196,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437616427l/232268._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9525,400881,400881,1761500,24,812508424,9780812508420.0,Glen Cook,1984.0,Shadows Linger,\"Shadows Linger (The Chronicles of the Black Company, #2)\",en-US,4.15,10975,11763,336,47,237,1928,5186,4365,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436464351l/400881._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9526,77739,77739,4363,22,671877836,9780671877840.0,David Weber,1996.0,Honor Among Enemies,\"Honor Among Enemies (Honor Harrington, #6)\",,4.24,12506,13494,205,29,205,2040,5444,5776,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923993l/77739.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9527,10859509,10859509,15774461,20,316197084,9780316197080.0,Jennifer Rush,2013.0,Altered,\"Altered (Altered, #1)\",en-CA,4.04,15692,16988,2108,230,807,3336,6315,6300,https://images.gr-assets.com/books/1344445982l/10859509.jpg,https://images.gr-assets.com/books/1344445982s/10859509.jpg\n9528,22571696,22571696,42038145,32,399170871,9780399170870.0,J.D. Robb,2015.0,Obsession in Death,\"Obsession in Death (In Death, #40)\",eng,4.33,9565,13842,1338,85,244,1667,4907,6939,https://images.gr-assets.com/books/1406509523l/22571696.jpg,https://images.gr-assets.com/books/1406509523s/22571696.jpg\n9530,139176,139176,901444,53,312939167,9780312939170.0,M.C. Beaton,1992.0,Agatha Raisin and the Quiche of Death,\"The Quiche of Death (Agatha Raisin, #1)\",eng,3.75,10925,13409,1325,222,801,4148,5113,3125,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388271281l/139176.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9532,179565,179565,21430714,316,140350411,9780140350420.0,\"L. Frank Baum, David McKee\",1904.0,\"Marvelous Land of Oz, The\",\"The Marvelous Land of Oz (Oz, #2)\",eng,3.82,11402,14831,1098,128,845,4513,5381,3964,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172470286l/179565._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9533,6159,6159,1781,21,802141900,9780802141900.0,Sherman Alexie,1995.0,Reservation Blues,Reservation Blues,eng,3.98,9919,10754,766,106,441,2313,4603,3291,https://images.gr-assets.com/books/1398195783l/6159.jpg,https://images.gr-assets.com/books/1398195783s/6159.jpg\n9536,46906,46906,45977,12,1598160230,9781598160240.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",2004.0,フルーツバスケット 15,\"Fruits Basket, Vol. 15\",en-US,4.45,12888,13020,136,94,272,1422,3092,8140,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441381006l/46906._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9537,8086216,8086216,12820406,16,91933684,9780091933680.0,Yotam Ottolenghi,2010.0,Plenty,Plenty,eng,4.32,8023,9742,318,194,292,1074,2871,5311,https://images.gr-assets.com/books/1327921381l/8086216.jpg,https://images.gr-assets.com/books/1327921381s/8086216.jpg\n9538,88072,88072,18280048,25,1596060204,9781596060200.0,John Scalzi,2004.0,Agent to the stars,Agent to the Stars,eng,3.91,10086,12632,1285,118,457,3099,5784,3174,https://images.gr-assets.com/books/1303914309l/88072.jpg,https://images.gr-assets.com/books/1303914309s/88072.jpg\n9539,15707526,15707526,21372021,34,615651011,9780615651020.0,Terry Goodkind,2012.0,The First Confessor,\"The First Confessor (The Legend of Magda Searus, #1)\",eng,4.19,9311,11814,844,292,483,1712,3563,5764,https://images.gr-assets.com/books/1340889153l/15707526.jpg,https://images.gr-assets.com/books/1340889153s/15707526.jpg\n9540,581552,581552,13722925,149,,,Franz Kafka,1919.0,In der Strafkolonie,In the Penal Colony,eng,4.0,8974,11270,575,139,534,2321,4457,3819,https://images.gr-assets.com/books/1480867517l/581552.jpg,https://images.gr-assets.com/books/1480867517s/581552.jpg\n9541,6344534,6344534,6530755,18,981546269,9780981546260.0,Richard   Phillips,2006.0,The Second Ship,\"The Second Ship (The Rho Agenda, #1)\",,3.73,4281,9322,571,291,775,2375,3569,2312,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348493301l/6344534.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9542,91439,91439,159793,28,60835273,9780060835280.0,Louise Erdrich,1985.0,The Beet Queen,The Beet Queen,en-US,3.89,10495,10865,442,155,539,2628,4554,2989,https://images.gr-assets.com/books/1358758806l/91439.jpg,https://images.gr-assets.com/books/1358758806s/91439.jpg\n9544,481743,481743,840805,61,440993717,9780440993710.0,\"Morton Rhue, Todd Strasser\",1981.0,The Wave,The Wave,eng,3.54,9392,13141,1429,429,1554,4242,4346,2570,https://images.gr-assets.com/books/1320402950l/481743.jpg,https://images.gr-assets.com/books/1320402950s/481743.jpg\n9545,576666,576666,1480967,13,425174409,9780425174400.0,Helen Hooven Santmyer,1982.0,\"\"\"...And Ladies of the Club\"\"\",And Ladies of the Club,en-US,4.12,10177,10804,470,262,489,1849,3256,4948,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388243144l/576666.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9546,23460830,23460830,42753848,19,61779784,9780061779790.0,Christopher Moore,2015.0,Secondhand Souls,\"Secondhand Souls (Grim Reaper, #2)\",eng,3.92,7925,9987,1298,60,435,2456,4375,2661,https://images.gr-assets.com/books/1434397134l/23460830.jpg,https://images.gr-assets.com/books/1434397134s/23460830.jpg\n9547,21535784,21535784,40864743,42,1476763127,9781476763120.0,\"Mary Higgins Clark, Alafair Burke\",2014.0,The Cinderella Murder ,\"The Cinderella Murder (Under Suspicion, #2)\",eng,3.81,8641,11546,1165,180,633,3233,4655,2845,https://images.gr-assets.com/books/1403544444l/21535784.jpg,https://images.gr-assets.com/books/1403544444s/21535784.jpg\n9549,18266,18266,2663468,283,140445501,9780140445500.0,\"François Rabelais, M.A. Screech\",1532.0,La vie de Gargantua et de Pantagruel,Gargantua and Pantagruel,eng,3.71,10379,11298,334,526,1133,2929,3255,3455,https://images.gr-assets.com/books/1336964698l/18266.jpg,https://images.gr-assets.com/books/1336964698s/18266.jpg\n9550,93453,93453,833245,27,140130821X,9781401308220.0,George Carlin,2004.0,When Will Jesus Bring the Pork Chops?,When Will Jesus Bring the Pork Chops?,en-US,3.84,9139,9876,516,295,734,2416,3270,3161,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442702106l/93453._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9552,9532302,9532302,14418429,45,1847679447,9781847679440.0,Glen Duncan,2011.0,The Last Werewolf,\"The Last Werewolf (The Last Werewolf, #1)\",eng,3.47,10986,13300,2341,762,1599,3960,4609,2370,https://images.gr-assets.com/books/1287572224l/9532302.jpg,https://images.gr-assets.com/books/1287572224s/9532302.jpg\n9553,19138879,19138879,27173228,16,1612629415,9781612629410.0,\"Hajime Isayama, Hikaru Suruga, Gan Sunaaku\",2014.0,進撃の巨人 悔いなき選択 1,\"Attack on Titan: No Regrets, Volume 01\",eng,4.52,9032,9253,204,134,175,743,1873,6328,https://images.gr-assets.com/books/1398033046l/19138879.jpg,https://images.gr-assets.com/books/1398033046s/19138879.jpg\n9554,54666,54666,74517,18,080507774X,9780805077740.0,Thomas Frank,2004.0,What's the Matter with Kansas? How Conservatives Won the Heart of America,What's the Matter with Kansas? How Conservatives Won the Heart of America,en-US,3.83,9003,9679,658,182,566,2409,4043,2479,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440704979l/54666._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9555,11942408,11942408,16903753,1,,9789776337590.0,عمرو سلامة,2011.0,شاب كشك في رحلة البحث عن الجادون,شاب كشك في رحلة البحث عن الجادون,ara,3.66,8128,8128,846,358,825,2179,2610,2156,https://images.gr-assets.com/books/1309784315l/11942408.jpg,https://images.gr-assets.com/books/1309784315s/11942408.jpg\n9556,14460,14460,16494,23,446616427,9780446616420.0,Carrie Vaughn,2006.0,Kitty Goes to Washington,\"Kitty Goes to Washington (Kitty Norville, #2)\",eng,3.87,16725,17533,663,264,910,4656,6690,5013,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1420989109l/14460.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9557,857418,857418,842871,28,694004928,9780694004930.0,\"Ruth Krauss, Crockett Johnson\",1945.0,The Carrot Seed,The Carrot Seed,,4.07,12420,12753,394,145,642,2874,3636,5456,https://images.gr-assets.com/books/1394411446l/857418.jpg,https://images.gr-assets.com/books/1394411446s/857418.jpg\n9558,21857294,21857294,41130420,8,,,Whitney G.,2014.0,Reasonable Doubt: Volume 3,\"Reasonable Doubt: Volume 3 (Reasonable Doubt, #3)\",eng,4.19,19933,20234,1845,191,644,3131,7383,8885,https://images.gr-assets.com/books/1407412246l/21857294.jpg,https://images.gr-assets.com/books/1407412246s/21857294.jpg\n9559,11605,11605,1396971,26,743525876,9780743525880.0,\"Stephen King, Josh Hamilton\",2000.0,Riding the Bullet,Riding the Bullet,eng,3.6,9809,11338,306,144,1082,4235,3528,2349,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348419476l/11605.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9560,5292173,5292173,5359599,26,441017088,9780441017090.0,Jack Campbell,2009.0,\"Relentless (The Lost Fleet, #5)\",\"Relentless (The Lost Fleet, #5)\",,4.05,10864,12321,247,53,349,2448,5567,3904,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348632822l/5292173.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9561,19106,19106,1265588,133,688104649,9780688104640.0,\"Nikolai Gogol, Kevin Hawkes\",1836.0,Нос,The Nose,eng,3.92,10202,12102,516,182,692,2986,4239,4003,https://images.gr-assets.com/books/1360321953l/19106.jpg,https://images.gr-assets.com/books/1360321953s/19106.jpg\n9562,1624920,1624920,1618940,18,446618756,9780446618760.0,Carrie Vaughn,2008.0,Kitty and the Silver Bullet,\"Kitty and the Silver Bullet (Kitty Norville, #4)\",eng,3.99,15300,15942,468,214,667,3549,6209,5303,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429677880l/1624920.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9563,381440,381440,371226,57,942299795,9780942299790.0,\"Guy Debord, Donald Nicholson-Smith\",1967.0,La Société du Spectacle,The Society of the Spectacle,eng,4.04,9309,10669,305,248,506,2083,3567,4265,https://images.gr-assets.com/books/1370746722l/381440.jpg,https://images.gr-assets.com/books/1370746722s/381440.jpg\n9564,603911,603911,2435731,45,078683661X,9780786836610.0,Charlie Higson,2005.0,SilverFin,\"SilverFin (Young Bond, #1)\",eng,3.8,10189,10920,537,265,833,2805,3952,3065,https://images.gr-assets.com/books/1404538648l/603911.jpg,https://images.gr-assets.com/books/1404538648s/603911.jpg\n9565,24819476,24819476,44460264,18,316261130,9780316261140.0,Elin Hilderbrand,2015.0,Winter Stroll,Winter Stroll (Winter #2),,3.7,8397,9754,979,133,640,3133,3971,1877,https://images.gr-assets.com/books/1431957489l/24819476.jpg,https://images.gr-assets.com/books/1431957489s/24819476.jpg\n9566,70487,70487,2244439,24,1417642165,9781417642170.0,Bill Watterson,1992.0,Attack of the Deranged Mutant Killer Monster Snow Goons: A Calvin and Hobbes Collection,Attack of the Deranged Mutant Killer Monster Snow Goons,eng,4.72,9713,12197,233,15,30,514,2292,9346,https://images.gr-assets.com/books/1384735429l/70487.jpg,https://images.gr-assets.com/books/1384735429s/70487.jpg\n9567,11556960,11556960,16497151,22,374316414,9780374316420.0,Gennifer Albin,2012.0,Crewel,\"Crewel (Crewel World, #1)\",eng,3.74,14101,16145,2322,526,1367,4146,5804,4302,https://images.gr-assets.com/books/1376228331l/11556960.jpg,https://images.gr-assets.com/books/1376228331s/11556960.jpg\n9568,1207980,1207980,1196341,35,743413075,9780743413080.0,Robert Leckie,1957.0,Helmet For My Pillow (Military History (Ibooks)),Helmet for My Pillow,,4.13,7907,10000,506,121,312,1700,3849,4018,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1181874286l/1207980.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9569,32075671,32075671,49638190,36,62498533,9780062498530.0,Angie Thomas,2017.0,The Hate U Give,The Hate U Give,eng,4.62,32610,38333,9038,208,321,1814,9207,26783,https://images.gr-assets.com/books/1476284759l/32075671.jpg,https://images.gr-assets.com/books/1476284759s/32075671.jpg\n9570,16170625,16170625,22017733,3,,9789992195840.0,مصطفى إبراهيم,2013.0,المانيفستو,المانيفستو,ara,4.21,7943,7956,1112,229,280,1041,2477,3929,https://images.gr-assets.com/books/1356926142l/16170625.jpg,https://images.gr-assets.com/books/1356926142s/16170625.jpg\n9573,12075886,12075886,17043623,6,670012254,9780670012250.0,Susane Colasanti,2012.0,Keep Holding On,Keep Holding On,en-US,3.85,11397,11697,924,376,937,2972,3195,4217,https://images.gr-assets.com/books/1319236713l/12075886.jpg,https://images.gr-assets.com/books/1319236713s/12075886.jpg\n9574,4162673,4162673,3271184,57,571242448,9780571242440.0,P.D. James,2008.0,The Private Patient,The Private Patient (Adam Dalgliesh #14),eng,3.78,10461,12406,1259,181,750,3609,4918,2948,https://images.gr-assets.com/books/1409269308l/4162673.jpg,https://images.gr-assets.com/books/1409269308s/4162673.jpg\n9575,77738,77738,4360,23,671876813,9780671876810.0,David Weber,1995.0,Flag in Exile,\"Flag in Exile (Honor Harrington, #5)\",eng,4.22,11587,13231,243,43,223,2043,5424,5498,https://images.gr-assets.com/books/1321561696l/77738.jpg,https://images.gr-assets.com/books/1321561696s/77738.jpg\n9576,25955,25955,1003854,23,1584230703,9781584230700.0,\"Marshall McLuhan, Quentin Fiore, Jerome Agel\",1967.0,The medium is the massage,The Medium is the Massage,en-US,3.95,8351,8990,288,286,569,1902,2746,3487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1598544928l/25955._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9577,96463,96463,6191271,28,552139130,9780552139140.0,Anne McCaffrey,1993.0,The Chronicles of Pern: First Fall,\"The Chronicles of Pern: First Fall (Pern, #12)\",eng,4.02,11762,13485,193,53,491,3324,4895,4722,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348975559l/96463.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9578,248871,248871,241146,19,1593070209,9781593070200.0,\"Kentaro Miura, Jason DeAngelis\",1990.0,ベルセルク 1,\"Berserk, Vol. 1 (Berserk, #1)\",eng,4.37,10362,10510,334,158,329,1191,2579,6253,https://images.gr-assets.com/books/1501000017l/248871.jpg,https://images.gr-assets.com/books/1501000017s/248871.jpg\n9579,3710,3710,1196277,49,037570387X,9780375703870.0,Zadie Smith,2002.0,The Autograph Man,The Autograph Man,eng,3.14,8317,9456,635,482,1800,3883,2510,781,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388292766l/3710.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9581,1372055,1372055,1361919,30,441015670,9780441015670.0,Jack Campbell,2006.0,\"Courageous (Lost Fleet Series, #3)\",\"Courageous (The Lost Fleet, #3)\",,3.96,10933,12509,338,55,425,2966,5601,3462,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348383516l/1372055.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9582,24902492,24902492,25756743,23,804188246,9780804188240.0,Cynthia Bond,2014.0,Ruby,Ruby,,3.63,6749,9807,1975,600,1048,2322,3255,2582,https://images.gr-assets.com/books/1423586473l/24902492.jpg,https://images.gr-assets.com/books/1423586473s/24902492.jpg\n9583,8487363,8487363,13352685,21,373210272,9780373210280.0,Rachel Vincent,2010.0,My Soul to Steal,\"My Soul to Steal (Soul Screamers, #4)\",en-US,4.13,14593,15236,873,181,612,2802,5036,6605,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388801616l/8487363.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9584,110388,110388,1981453,44,60531258,9780060531260.0,Julia Quinn,2006.0,On the Way to Wedding,\"On the Way to the Wedding (Bridgertons, #8)\",eng,3.83,16310,17826,866,239,1248,4892,6371,5076,https://images.gr-assets.com/books/1368840197l/110388.jpg,https://images.gr-assets.com/books/1368840197s/110388.jpg\n9585,7433,7433,868405,18,805078983,9780805078980.0,Jacqueline Winspear,2006.0,Messenger of Truth,\"Messenger of Truth (Maisie Dobbs, #4)\",,3.99,12454,13956,1076,54,340,3166,6595,3801,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442323066l/7433._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9586,8411749,8411749,13273241,47,184149593X,9781841495930.0,Trudi Canavan,2011.0,The Rogue,\"The Rogue (Traitor Spy Trilogy, #2)\",eng,4.02,9739,11495,292,78,429,2521,4607,3860,https://images.gr-assets.com/books/1328375255l/8411749.jpg,https://images.gr-assets.com/books/1328375255s/8411749.jpg\n9587,175078,175078,982713,48,156010860,9780156010860.0,\"Thomas Merton, Robert Giroux, William H. Shannon\",1948.0,The Seven Storey Mountain,The Seven Storey Mountain,en-US,4.16,9232,10241,758,147,400,1587,3632,4475,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347432281l/175078.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9588,86655,86655,1046035,38,1400043921,9781400043930.0,Jennifer Egan,2006.0,The Keep,The Keep,eng,3.43,9113,10425,1517,432,1256,3582,3710,1445,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171075825l/86655._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9589,562763,562763,549907,9,1553379594,9781553379590.0,Mélanie Watt,2006.0,Scaredy Squirrel,Scaredy Squirrel (Scaredy Squirrel),eng,4.25,11638,12009,625,168,453,1849,3309,6230,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1515376032l/562763._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9590,97084,97084,93582,6,312351747,9780312351750.0,Paul Neilan,2006.0,Apathy and Other Small Victories,Apathy and Other Small Victories,,3.83,7171,7999,713,215,619,1984,2653,2528,https://images.gr-assets.com/books/1311996129l/97084.jpg,https://images.gr-assets.com/books/1311996129s/97084.jpg\n9591,17342700,17342700,24080409,25,1101623209,9781101623210.0,\"Morgan Rhodes, Michelle Rowen\",2014.0,Gathering Darkness,\"Gathering Darkness (Falling Kingdoms, #3)\",eng,4.33,13072,15199,2178,99,313,1695,5484,7608,https://images.gr-assets.com/books/1419103977l/17342700.jpg,https://images.gr-assets.com/books/1419103977s/17342700.jpg\n9592,51362,51362,3118596,42,553589458,9780553589450.0,Lisa Gardner,2002.0,The Survivors Club,The Survivors Club,eng,4.05,11458,12802,556,76,407,2659,5323,4337,https://images.gr-assets.com/books/1298426240l/51362.jpg,https://images.gr-assets.com/books/1298426240s/51362.jpg\n9595,25387202,25387202,45137868,38,1101965509,9781101965500.0,\"Alan Dean Foster, Lawrence Kasdan, J.J. Abrams, Michael Arndt\",2015.0,Star Wars: The Force Awakens,The Force Awakens (Star Wars),eng,3.73,7514,10893,1763,231,911,3058,4058,2635,https://images.gr-assets.com/books/1450520344l/25387202.jpg,https://images.gr-assets.com/books/1450520344s/25387202.jpg\n9596,7707538,7707538,10419205,25,61767638,9780061767630.0,Lauren Conrad,2010.0,Sugar and Spice (L.A. Candy #3),\"Sugar and Spice (L.A. Candy, #3)\",en-US,3.54,10488,11775,559,278,1367,4264,3444,2422,https://images.gr-assets.com/books/1277830544l/7707538.jpg,https://images.gr-assets.com/books/1277830544s/7707538.jpg\n9597,9565574,9565574,14452325,15,451464095,9780451464100.0,Kalayna Price,2011.0,Grave Dance,\"Grave Dance (Alex Craft, #2)\",eng,4.11,16435,17746,809,128,448,3261,7425,6484,https://images.gr-assets.com/books/1327953315l/9565574.jpg,https://images.gr-assets.com/books/1327953315s/9565574.jpg\n9598,6448482,6448482,6638574,12,759530483,9780759530480.0,Atsushi Ohkubo,2004.0, ソウルイーター 2,\"Soul Eater, Vol. 02 (Soul Eater, #2)\",eng,4.47,9443,9540,76,51,200,1048,2180,6061,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388262830l/6448482.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9599,69477,69477,2070709,14,435122118,9780435122120.0,Robert C. O'Brien,1974.0,Z for Zachariah,Z for Zachariah,eng,3.64,9332,11496,1390,428,1029,3318,4253,2468,https://images.gr-assets.com/books/1420324231l/69477.jpg,https://images.gr-assets.com/books/1420324231s/69477.jpg\n9600,6251222,6251222,6434098,20,345476026,9780345476030.0,Dan Chaon,2009.0,Await Your Reply,Await Your Reply,eng,3.54,10598,11733,2131,342,1322,3691,4434,1944,https://images.gr-assets.com/books/1320525555l/6251222.jpg,https://images.gr-assets.com/books/1320525555s/6251222.jpg\n9601,161275,161275,155647,6,1563893150,9781563893160.0,\"Alan Moore, Curt Swan, George Pérez, Kurt Schaffenberger\",1985.0,Superman: Whatever Happened to the Man of Tomorrow?,Superman: Whatever Happened to the Man of Tomorrow?,eng,4.14,10472,10501,157,186,432,1901,3213,4769,https://images.gr-assets.com/books/1308365122l/161275.jpg,https://images.gr-assets.com/books/1308365122s/161275.jpg\n9602,76706,76706,954916,19,380721643,9780380721640.0,Nevada Barr,1993.0,Track of the Cat,\"Track of the Cat (Anna Pigeon, #1)\",en-GB,3.86,12113,13103,788,197,626,3529,5218,3533,https://images.gr-assets.com/books/1326365792l/76706.jpg,https://images.gr-assets.com/books/1326365792s/76706.jpg\n9603,341027,341027,3687996,22,758220367,9780758220360.0,Shelly Laurenston,2007.0,The Mane Event,\"The Mane Event (Pride, #1)\",eng,3.96,17968,19486,931,662,1119,3849,6468,7388,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388627011l/341027.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9604,17262206,17262206,23859199,25,038553292X,9780385532920.0,Scott Anderson,2013.0,Lawrence in Arabia,\"Lawrence in Arabia: War, Deceit, Imperial Folly, and the Making of the Modern Middle East\",eng,4.12,7654,9085,1066,133,315,1413,3661,3563,https://images.gr-assets.com/books/1363837257l/17262206.jpg,https://images.gr-assets.com/books/1363837257s/17262206.jpg\n9605,139004,139004,133989,13,159308076X,9781593080760.0,\"Ralph Waldo Emerson, Peter Norberg\",1856.0,Essays and Poems,Essays and Poems,,3.98,11864,11967,62,307,700,2449,3925,4586,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388761686l/139004.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9606,31741,31741,778026,144,60751584,9780060751590.0,\"Gabriel García Márquez, Gregory Rabassa\",1972.0,La increíble y triste historia de la cándida Eréndira y de su abuela desalmada,Innocent Erendira and Other Stories,,3.89,5497,10216,531,179,579,2470,3944,3044,https://images.gr-assets.com/books/1410129032l/31741.jpg,https://images.gr-assets.com/books/1410129032s/31741.jpg\n9607,81992,81992,1192005,26,1841493341,9781841493340.0,Charles Stross,2003.0,Singularity Sky,\"Singularity Sky (Eschaton, #1)\",eng,3.81,9887,11169,442,151,687,2924,4749,2658,https://images.gr-assets.com/books/1446324638l/81992.jpg,https://images.gr-assets.com/books/1446324638s/81992.jpg\n9608,404562,404562,393934,1,871297485,9780871297490.0,Cynthia J. McGean,1997.0,Henry & Ramona,Henry & Ramona,,4.14,11106,11106,3,125,277,2425,3384,4895,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1266545191l/404562.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9609,400906,400906,390332,23,812508440,9780812508440.0,Glen Cook,1985.0,The White Rose,\"The White Rose (The Chronicles of the Black Company, #3)\",en-US,4.19,11501,12063,298,52,256,1901,5044,4810,https://images.gr-assets.com/books/1327901074l/400906.jpg,https://images.gr-assets.com/books/1327901074s/400906.jpg\n9610,17339590,17339590,24074646,4,,9789774881300.0,حسن الجندي,2013.0,\"\"\"حكايات فرغلي المستكاوي \"\"حكايتى مع كفر السحلاوية\",\"\"\"حكايات فرغلي المستكاوي \"\"حكايتى مع كفر السحلاوية\",ara,3.57,7443,8288,1220,532,970,2188,2404,2194,https://images.gr-assets.com/books/1360260051l/17339590.jpg,https://images.gr-assets.com/books/1360260051s/17339590.jpg\n9611,22571275,22571275,25442975,18,545654742,9780545654750.0,Ally Carter,2015.0,All Fall Down,\"All Fall Down (Embassy Row, #1)\",eng,3.82,13821,16384,2541,317,1221,4414,5645,4787,https://images.gr-assets.com/books/1411070285l/22571275.jpg,https://images.gr-assets.com/books/1411070285s/22571275.jpg\n9612,14680,14680,1378789,398,679783180,9780679783180.0,\"Stendhal, Richard Howard, Robert Andrew Parker\",1839.0,La Chartreuse de Parme,The Charterhouse of Parma,eng,3.83,9252,11182,381,324,881,2712,3770,3495,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390088245l/14680.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9613,18722887,18722887,26591587,23,778316335,9780778316340.0,Heather Gudenkauf,2014.0,Little Mercies,Little Mercies,eng,3.99,10268,11533,1281,149,416,2396,4962,3610,https://images.gr-assets.com/books/1399313845l/18722887.jpg,https://images.gr-assets.com/books/1399313845s/18722887.jpg\n9614,341553,341553,2890073,40,345478991,9780345478990.0,Alex Berenson,2006.0,The Faithful Spy,\"The Faithful Spy (John Wells, #1)\",en-US,3.97,9316,11095,713,146,427,2377,4792,3353,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431174843l/341553.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9615,348489,348489,338774,15,395861624,9780395861620.0,\"Jacqueline Briggs Martin, Mary Azarian\",1998.0,Snowflake Bentley (Caldecott Medal Book),Snowflake Bentley,en-US,4.16,11362,11503,767,180,437,1992,3659,5235,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428451682l/348489.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9616,562930,562930,550071,7,1416520406,9781416520400.0,Jenny O'Connell,2007.0,The Book of Luke,The Book of Luke,en-US,3.73,12623,12757,355,382,1169,3725,3697,3784,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438632292l/562930._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9617,182683,182683,2611332,24,842387439,9780842387440.0,Karen Kingsbury,2005.0,Fame,\"Fame (Firstborn, #1)\",en-US,4.34,10509,11011,282,82,247,1464,3282,5936,https://images.gr-assets.com/books/1406506537l/182683.jpg,https://images.gr-assets.com/books/1406506537s/182683.jpg\n9618,3295695,3295695,3332311,19,1420103733,9781420103730.0,G.A. Aiken,2004.0,To Challenge a Dragon,\"Dragon Actually (Dragon Kin, #1)\",eng,3.96,18622,20371,1187,629,1237,4089,6703,7713,https://images.gr-assets.com/books/1317852862l/3295695.jpg,https://images.gr-assets.com/books/1317852862s/3295695.jpg\n9619,21411058,21411058,40711672,29,,,Leisa Rayven,2014.0,Bad Romeo,\"Bad Romeo (Starcrossed, #1)\",eng,4.1,14286,16113,2720,406,753,2568,5490,6896,https://images.gr-assets.com/books/1413547825l/21411058.jpg,https://images.gr-assets.com/books/1413547825s/21411058.jpg\n9621,6330323,6330323,6515977,21,743299841,9780743299850.0,Anita Diamant,2009.0,Day After Night,Day After Night,en-US,3.65,10587,11764,1563,160,944,3859,4664,2137,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442372776l/6330323._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9622,15557,15557,2568912,36,345483898,9780345483900.0,Terry Brooks,2003.0,\"High Druid of Shannara, vol. 1: Jarka Ruus\",\"Jarka Ruus (High Druid of Shannara, #1)\",eng,3.96,11017,11895,164,81,492,3021,4491,3810,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390718941l/15557.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9623,12448,12448,1156378,83,743297318,9780743297320.0,Thomas Wolfe,1929.0,\"Look Homeward, Angel\",\"Look Homeward, Angel\",eng,3.94,9630,10430,716,312,708,2051,3601,3758,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388247436l/12448.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9624,5571,5571,1589115,23,865475873,9780865475880.0,\"William McDonough, Michael Braungart\",2002.0,Cradle to Cradle: Remaking the Way We Make Things,Cradle to Cradle: Remaking the Way We Make Things,en-US,4.1,7625,8012,770,54,291,1479,3134,3054,https://images.gr-assets.com/books/1417605547l/5571.jpg,https://images.gr-assets.com/books/1417605547s/5571.jpg\n9625,831635,831635,2374146,24,449004023,9780449004030.0,Marc Weissbluth,1987.0,\"Healthy Sleep Habits, Happy Child\",\"Healthy Sleep Habits, Happy Child\",en-US,3.9,7742,8776,1586,260,630,1871,2954,3061,https://images.gr-assets.com/books/1380493934l/831635.jpg,https://images.gr-assets.com/books/1380493934s/831635.jpg\n9626,22421,22421,978454,11,1563896273,9781563896280.0,\"Warren Ellis, Darick Robertson, Rodney Ramos, Keith Akin\",2000.0,Transmetropolitan Vol. 4: The New Scum,\"Transmetropolitan, Vol. 4: The New Scum (Transmetropolitan, #4)\",eng,4.41,11094,11780,160,103,225,1258,3304,6890,https://images.gr-assets.com/books/1452027299l/22421.jpg,https://images.gr-assets.com/books/1452027299s/22421.jpg\n9627,6939939,6939939,7172565,50,547330790,9780547330790.0,Maggie O'Farrell,2009.0,The Hand That First Held Mine,The Hand That First Held Mine,eng,3.87,8513,10741,1216,160,571,2643,4527,2840,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441937443l/6939939._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9628,78972,78972,76253,43,61092037,9780061092040.0,Jeffrey Archer,1996.0,The Fourth Estate,The Fourth Estate,eng,3.72,8829,9739,300,133,647,3033,3886,2040,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347661492l/78972.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9629,8515,8515,3038432,31,034542705X,9780345427050.0,\"Monty Roberts, Lucy Grealy, Lawrence Scanlan\",1997.0,The Man Who Listens to Horses,The Man Who Listens to Horses,en-US,4.1,9021,9513,221,152,338,1822,3325,3876,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388300266l/8515.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9630,6749,6749,2080870,38,316010766,9780316010760.0,David Foster Wallace,2004.0,Oblivion,Oblivion,en-US,4.07,9196,10044,717,124,372,1690,4321,3537,https://images.gr-assets.com/books/1311905400l/6749.jpg,https://images.gr-assets.com/books/1311905400s/6749.jpg\n9631,606818,606818,130686,72,,,\"Michael Baigent, Richard Leigh, Henry Lincoln\",1982.0,The Holy Blood and the Holy Grail,\"Holy Blood, Holy Grail\",eng,3.47,8450,10229,684,632,1323,3098,2992,2184,https://images.gr-assets.com/books/1320394892l/606818.jpg,https://images.gr-assets.com/books/1320394892s/606818.jpg\n9632,28700,28700,941585,56,1416546022,9781416546020.0,\"Don DeLillo, محمدصادق رئیسی\",2007.0,Falling Man,Falling Man,eng,3.2,9081,10399,1207,634,1771,3904,3060,1030,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441139502l/28700._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9633,20510241,20510241,35441994,56,62332589,9780062332580.0,\"James Frey, Nils Johnson-Shelton\",2014.0,Endgame: The Calling,\"The Calling (Endgame, #1)\",eng,3.77,10900,12934,1900,538,1078,2900,4668,3750,https://images.gr-assets.com/books/1411272821l/20510241.jpg,https://images.gr-assets.com/books/1411272821s/20510241.jpg\n9634,15820492,15820492,21549524,9,62237381,9780062237380.0,Lauren Oliver,2012.0,Annabel,\"Annabel (Delirium, #0.5)\",,3.78,13619,14287,915,157,1033,4460,4731,3906,https://images.gr-assets.com/books/1348079378l/15820492.jpg,https://images.gr-assets.com/books/1348079378s/15820492.jpg\n9635,8765012,8765012,13638399,36,345505697,9780345505700.0,Jonathan Kellerman,2011.0,Mystery,\"Mystery (Alex Delaware, #26)\",en-US,3.87,9396,11279,662,109,525,3163,4378,3104,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1391389001l/8765012.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9636,100476,100476,2769926,42,689867468,9780689867460.0,Nancy Farmer,2004.0, The Sea of Trolls,\"The Sea of Trolls (Sea of Trolls, #1)\",eng,4.0,12069,12956,956,232,598,2730,4826,4570,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389840959l/100476.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9637,6596542,6596542,2670220,79,307271862,9780307271860.0,\"Henning Mankell, Laurie Thompson\",2008.0,Kinesen,The Man from Beijing,eng,3.47,9106,11585,1640,387,1519,3826,3986,1867,https://images.gr-assets.com/books/1320494101l/6596542.jpg,https://images.gr-assets.com/books/1320494101s/6596542.jpg\n9638,20454076,20454076,32057056,35,316234559,9780316234560.0,Kass Morgan,2014.0,Day 21,\"Day 21 (The 100, #2)\",eng,3.75,11860,14457,1583,287,1140,4134,5214,3682,https://images.gr-assets.com/books/1403530593l/20454076.jpg,https://images.gr-assets.com/books/1403530593s/20454076.jpg\n9639,199531,199531,1483450,34,345485602,9780345485600.0,Fannie Flagg,1981.0,Daisy Fay and the Miracle Man,Daisy Fay and the Miracle Man ,eng,3.94,10292,11725,872,129,565,2901,4369,3761,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388196924l/199531.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9640,10931321,10931321,17029041,49,399157301,9780399157300.0,\"Tom Clancy, Peter Telep\",2011.0,Against All Enemies,\"Against All Enemies (Max Moore, #1)\",eng,3.95,8471,9459,515,153,492,2123,3556,3135,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393635550l/10931321.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9641,23289469,23289469,42846804,28,571313248,9780571313240.0,Kate Hamer,2015.0,The Girl in the Red Coat,The Girl in the Red Coat,eng,3.53,8027,11005,1507,338,1176,3576,4106,1809,https://images.gr-assets.com/books/1412251739l/23289469.jpg,https://images.gr-assets.com/books/1412251739s/23289469.jpg\n9642,9648,9648,3226250,99,141183721,9780141183720.0,George Orwell,1936.0,Keep the Aspidistra Flying,Keep the Aspidistra Flying,eng,3.87,9599,11261,746,121,615,2926,4556,3043,https://images.gr-assets.com/books/1331244097l/9648.jpg,https://images.gr-assets.com/books/1331244097s/9648.jpg\n9643,15793068,15793068,16909239,16,765326582,9780765326580.0,Orson Scott Card,2013.0,The Gate Thief,\"The Gate Thief (Mither Mages, #2)\",en-US,3.77,9209,10796,884,183,736,2963,4413,2501,https://images.gr-assets.com/books/1360823446l/15793068.jpg,https://images.gr-assets.com/books/1360823446s/15793068.jpg\n9644,22840421,22840421,42397220,18,,,\"Cynthia Hand, Brodi Ashton, Jodi Meadows\",2016.0,My Lady Jane,\"My Lady Jane (The Lady Janies, #1)\",eng,4.12,12794,15433,4228,181,557,2533,6090,6072,https://images.gr-assets.com/books/1444923765l/22840421.jpg,https://images.gr-assets.com/books/1444923765s/22840421.jpg\n9645,23031,23031,700149,47,679735720,9780679735720.0,Martin Amis,1991.0,Time’s Arrow,Time's Arrow,eng,3.78,9400,10724,863,248,810,2820,4018,2828,https://images.gr-assets.com/books/1353213337l/23031.jpg,https://images.gr-assets.com/books/1353213337s/23031.jpg\n9647,48974,48974,958210,37,141300515,9780141300510.0,Robert Cormier,1977.0,I Am the Cheese,I Am the Cheese,en-GB,3.74,11099,12684,1221,431,1010,3286,4616,3341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1170356988l/48974.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9648,75162,75162,1949545,22,038533379X,9780385333800.0,Eldridge Cleaver,1968.0,Soul On Ice,Soul on Ice,en-GB,3.95,10123,10285,268,258,513,2356,3509,3649,https://images.gr-assets.com/books/1417410878l/75162.jpg,https://images.gr-assets.com/books/1417410878s/75162.jpg\n9649,205218,205218,1218789,228,140435719,9780140435720.0,\"Baruch Spinoza, Edwin M. Curley, Stuart Hampshire, Edwin Curley\",1677.0,Ethica: Ordine geometrico demonstrata,Ethics,,4.01,9342,9913,252,210,572,2091,3122,3918,https://images.gr-assets.com/books/1462223700l/205218.jpg,https://images.gr-assets.com/books/1462223700s/205218.jpg\n9650,337615,337615,3094971,33,385475772,9780385475780.0,Geraldine Brooks,1994.0,Nine Parts of Desire: The Hidden World of Islamic Women,Nine Parts of Desire: The Hidden World of Islamic Women,,4.04,10308,11010,1117,127,364,2175,4654,3690,https://images.gr-assets.com/books/1403182793l/337615.jpg,https://images.gr-assets.com/books/1403182793s/337615.jpg\n9651,27170141,27170141,47207022,15,1455531189,9781455531190.0,Jessi Klein,2016.0,You'll Grow Out of It,You'll Grow Out of It,eng,3.83,9480,10769,1297,155,597,2809,4576,2632,https://images.gr-assets.com/books/1462261735l/27170141.jpg,https://images.gr-assets.com/books/1462261735s/27170141.jpg\n9652,17352874,17352874,24095561,7,988573229,9780988573220.0,R.L. Mathewson,2013.0,Truce,\"Truce (Neighbor from Hell, #4)\",eng,4.34,18854,21343,1422,164,432,2463,7298,10986,https://images.gr-assets.com/books/1378997763l/17352874.jpg,https://images.gr-assets.com/books/1378997763s/17352874.jpg\n9653,176892,176892,2202795,25,812511751,9780812511760.0,\"Andre Norton, Mercedes Lackey\",1991.0,\"The Elvenbane (Halfblood Chronicles, #1)\",\"The Elvenbane (Halfblood Chronicles, #1)\",eng,3.94,13092,13271,214,177,721,3300,4572,4501,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1562450703l/176892.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9654,9440324,9440324,3104479,80,316044733,9780316044740.0,\"Carlos Ruiz Zafón, Lucia Graves\",1998.0,El palacio de la medianoche,\"The Midnight Palace (Niebla, #2)\",,3.58,7784,12137,959,267,1301,4047,4117,2405,https://images.gr-assets.com/books/1290459336l/9440324.jpg,https://images.gr-assets.com/books/1290459336s/9440324.jpg\n9655,85737,85737,3041094,60,671704656,9780671704650.0,Clive Cussler,1988.0,Treasure,\"Treasure (Dirk Pitt, #9)\",en-US,3.92,10784,11717,219,50,381,3200,4916,3170,https://images.gr-assets.com/books/1314486012l/85737.jpg,https://images.gr-assets.com/books/1314486012s/85737.jpg\n9656,1422252,1422252,3678073,20,61229776,9780061229770.0,Lynsay Sands,2008.0,\"Vampire, Interrupted\",\"Vampire, Interrupted (Argeneau #9)\",eng,4.32,15899,16784,441,75,339,2384,5254,8732,https://images.gr-assets.com/books/1410758592l/1422252.jpg,https://images.gr-assets.com/books/1410758592s/1422252.jpg\n9657,22411,22411,1065728,34,399154213,9780399154220.0,John Sandford,2007.0,Invisible Prey,\"Invisible Prey (Lucas Davenport, #17)\",eng,4.11,11162,12519,499,51,199,2357,5597,4315,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442274826l/22411._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9658,89195,89195,3102565,31,575077166,9780575077160.0,Alastair Reynolds,2007.0,The Prefect,\"The Prefect (Prefect Dreyfus Emergency, #1)\",eng,4.15,9946,11119,407,67,234,1733,5037,4048,https://images.gr-assets.com/books/1327988786l/89195.jpg,https://images.gr-assets.com/books/1327988786s/89195.jpg\n9659,20505127,20505127,34868729,39,1405915293,9781405915300.0,Jane Shemilt,2014.0,Daughter,Daughter,en-US,3.51,7462,10943,1345,303,1239,3706,3911,1784,https://images.gr-assets.com/books/1403779092l/20505127.jpg,https://images.gr-assets.com/books/1403779092s/20505127.jpg\n9660,107172,107172,2732008,10,1401203507,9781401203500.0,\"Darwyn Cooke, Dave Stewart, Jared K. Fletcher\",2004.0,\"DC: The New Frontier, Volume 1\",\"DC: The New Frontier, Volume 1\",eng,4.17,9601,9632,169,125,377,1639,3099,4392,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348010421l/107172.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9661,25053,25053,1279206,20,64401499,9780064401490.0,\"Betty MacDonald, Alexandra Boiger\",1955.0,\"Hello, Mrs. Piggle-Wiggle\",\"Hello, Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle, #4)\",eng,4.24,13000,13313,188,170,391,2233,3807,6712,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924054l/25053.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9662,6933152,6933152,7164540,14,143914799X,9781439147990.0,Jennifer Estep,2010.0,Web of Lies,\"Web of Lies (Elemental Assassin, #2)\",en-US,4.1,17312,18640,888,149,568,3427,7670,6826,https://images.gr-assets.com/books/1262902266l/6933152.jpg,https://images.gr-assets.com/books/1262902266s/6933152.jpg\n9663,137792,137792,1358863,34,7201095,9780007201100.0,Rebecca Wells,2005.0,Ya-Yas in Bloom,Ya Yas in Bloom,,3.6,10200,11369,522,238,1123,3958,3648,2402,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172090848l/137792.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9664,179174,179174,1275077,68,316358320,9780316358320.0,Hergé,1943.0,Le secret de la Licorne,\"The Secret of the Unicorn (Tintin, #11)\",eng,4.26,8925,10820,234,36,214,1679,3880,5011,https://images.gr-assets.com/books/1344263637l/179174.jpg,https://images.gr-assets.com/books/1344263637s/179174.jpg\n9665,930612,930612,3061490,49,763612316,9780763612310.0,\"Megan McDonald, Peter H. Reynolds\",2000.0,Judy Moody,\"Judy Moody (Judy Moody, # 1)\",eng,3.92,11289,12349,743,330,812,3016,3542,4649,https://images.gr-assets.com/books/1320540601l/930612.jpg,https://images.gr-assets.com/books/1320540601s/930612.jpg\n9666,21480734,21480734,40787528,27,385347375,9780385347370.0,Christian Rudder,2014.0,Dataclysm: Who We Are (When We Think No One's Looking),Dataclysm: Who We Are (When We Think No One's Looking),eng,3.72,7204,8409,952,217,576,2347,3435,1834,https://images.gr-assets.com/books/1407763834l/21480734.jpg,https://images.gr-assets.com/books/1407763834s/21480734.jpg\n9667,94578,94578,2382792,176,394719859,9780394719860.0,\"Friedrich Nietzsche, Walter Kaufmann\",1882.0,Die fröhliche Wissenschaft,The Gay Science,eng,4.26,8655,9776,295,110,290,1422,3119,4835,https://images.gr-assets.com/books/1374735026l/94578.jpg,https://images.gr-assets.com/books/1374735026s/94578.jpg\n9668,7904453,7904453,11165787,37,316043966,9780316043960.0,N.K. Jemisin,2010.0,The Broken Kingdoms,\"The Broken Kingdoms (Inheritance, #2)\",eng,4.04,12259,13774,1203,99,429,2606,6326,4314,https://images.gr-assets.com/books/1282522268l/7904453.jpg,https://images.gr-assets.com/books/1282522268s/7904453.jpg\n9669,18453110,18453110,26098356,51,031624290X,9780316242900.0,Sarah Lotz,2014.0,The Three,\"The Three (The Three, #1)\",eng,3.32,7990,10416,1673,648,1574,3467,3211,1516,https://images.gr-assets.com/books/1379897631l/18453110.jpg,https://images.gr-assets.com/books/1379897631s/18453110.jpg\n9670,1032,1032,1224415,26,345479173,9780345479170.0,\"Donald J. Trump, Tony Schwartz\",1987.0,Trump: The Art of the Deal,Trump: The Art of the Deal,en-US,3.66,8768,10055,650,614,965,2595,2948,2933,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442705949l/1032._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9671,190344,190344,1026679,47,749744812,9780749744820.0,Enid Blyton,1946.0,First Term at Malory Towers,\"First Term at Malory Towers (Malory Towers, #1)\",eng,4.07,10274,11994,418,122,435,2613,4150,4674,https://images.gr-assets.com/books/1300285044l/190344.jpg,https://images.gr-assets.com/books/1300285044s/190344.jpg\n9672,82553,82553,79699,41,439858046,9780439858040.0,John Marsden,1998.0,The Night is for Hunting,\"The Night Is for Hunting (Tomorrow, #6)\",eng,4.15,10908,12132,256,33,299,2211,4868,4721,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390021601l/82553.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9673,836607,836607,2267602,16,1591826055,9781591826060.0,\"Natsuki Takaya, Alethea Nibley, Athena Nibley\",1999.0,フルーツバスケット 3,\"Fruits Basket, Vol. 3\",en-US,4.38,14593,14817,297,78,314,1941,4102,8382,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438768062l/836607._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9674,25801299,25801299,45654942,12,,,Alex Lake,2015.0,After Anna,After Anna,en-US,3.7,11029,11335,857,340,1040,3058,4089,2808,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437545761l/25801299._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9675,20252,20252,705991,40,553580337,9780553580330.0,\"Brian Herbert, Kevin J. Anderson\",2001.0,Dune: House Corrino,House Corrino (Prelude to Dune #3),eng,3.64,10682,11947,179,492,1123,3497,3930,2905,https://images.gr-assets.com/books/1298689043l/20252.jpg,https://images.gr-assets.com/books/1298689043s/20252.jpg\n9676,6542645,6542645,6734901,41,399156240,9780399156240.0,J.D. Robb,2010.0,Fantasy In Death,\"Fantasy in Death (In Death, #30)\",eng,4.25,14244,16368,884,87,354,2518,5860,7549,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441757879l/6542645._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9677,663098,663098,1936254,39,446580309,9780446580300.0,Mike Carey,2006.0,The Devil You Know,\"The Devil You Know (Felix Castor, #1)\",en-US,3.8,11375,12879,1013,227,756,3389,5499,3008,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442602181l/663098._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9678,16031679,16031679,21801801,20,1622668995,9781622668990.0,\"J. Lynn, Jennifer L. Armentrout\",2012.0,Tempting the Player,\"Tempting the Player (Gamble Brothers, #2)\",,4.06,16997,18126,992,124,597,3732,7277,6396,https://images.gr-assets.com/books/1351035223l/16031679.jpg,https://images.gr-assets.com/books/1351035223s/16031679.jpg\n9679,290882,290882,162727,112,140441638,9780140441640.0,\"Anonymous, Juan Mascaró\",-500.0,उपनिषद [Upaniṣad],The Upanishads: Translations from the Sanskrit,eng,4.2,7365,9667,258,87,341,1669,2993,4577,https://images.gr-assets.com/books/1327881361l/290882.jpg,https://images.gr-assets.com/books/1327881361s/290882.jpg\n9680,18594634,18594634,32695230,26,804140847,9780804140840.0,Arianna Huffington,2014.0,\"Thrive: The Third Metric to Redefining Success and Creating a Life of Well-Being, Wisdom, and Wonder\",\"Thrive: The Third Metric to Redefining Success and Creating a Life of Well-Being, Wisdom, and Wonder\",eng,3.68,8261,9591,963,328,860,2733,3316,2354,https://images.gr-assets.com/books/1400873884l/18594634.jpg,https://images.gr-assets.com/books/1400873884s/18594634.jpg\n9682,1008231,1008231,994357,26,1416935711,9781416935710.0,Mark Walden,2006.0,H.I.V.E.: Higher Institute of Villainous Education,\"H.I.V.E. Higher Institute of Villainous Education (H.I.V.E., #1)\",en-US,4.06,10881,12195,766,277,589,2327,3987,5015,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348389331l/1008231.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9683,16170522,16170522,22017575,2,,9789992195760.0,تامر إبراهيم,2012.0,صانع الظلام,صانع الظلام,ara,3.81,8825,8886,1045,340,651,2088,3122,2685,https://images.gr-assets.com/books/1353871855l/16170522.jpg,https://images.gr-assets.com/books/1353871855s/16170522.jpg\n9684,6311614,6311614,6496787,38,399156046,9780399156040.0,Terry Goodkind,2009.0,The Law of Nines,The Law of Nines,en-US,3.6,9421,10361,788,531,1182,2862,3155,2631,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348444602l/6311614.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9685,434229,434229,423167,27,,,John D. MacDonald,1958.0,The Executioners,Cape Fear,,4.07,10006,10475,183,119,394,2117,3840,4005,https://images.gr-assets.com/books/1396110398l/434229.jpg,https://images.gr-assets.com/books/1396110398s/434229.jpg\n9686,17487,17487,1075882,84,340796154,9780340796150.0,Enid Blyton,1943.0,Five Go Adventuring Again,\"Five Go Adventuring Again (Famous Five, #2)\",eng,3.99,10362,11833,222,85,490,3028,4133,4097,https://images.gr-assets.com/books/1408923873l/17487.jpg,https://images.gr-assets.com/books/1408923873s/17487.jpg\n9687,8534899,8534899,13402207,24,330519476,9780330519470.0,Jana Oliver,2011.0,The Demon Trapper's Daughter,\"Forsaken (The Demon Trappers, #1)\",eng,4.0,13585,16952,1452,474,946,3323,5587,6622,https://images.gr-assets.com/books/1282919119l/8534899.jpg,https://images.gr-assets.com/books/1282919119s/8534899.jpg\n9688,136977,136977,183281,32,1590304497,9781590304500.0,Pema Chödrön,2001.0,The Places That Scare You: A Guide to Fearlessness in Difficult Times,The Places That Scare You: A Guide to Fearlessness in Difficult Times,,4.3,8344,9813,482,97,275,1197,3236,5008,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1172087249l/136977._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9689,113091,113091,2115367,66,375701230,9780375701240.0,James Agee,1957.0,A Death in the Family,A Death in the Family,eng,3.92,10900,11678,843,257,759,2634,4060,3968,https://images.gr-assets.com/books/1327885315l/113091.jpg,https://images.gr-assets.com/books/1327885315s/113091.jpg\n9690,772976,772976,759027,16,3822859834,9783822859830.0,Andrea Kettenmann,2001.0,Frida Kahlo 1907-1954: Pain and Passion ,Frida Kahlo: 1907-1954 Pain and Passion,,4.15,8260,8401,57,159,350,1470,2482,3940,https://images.gr-assets.com/books/1365526293l/772976.jpg,https://images.gr-assets.com/books/1365526293s/772976.jpg\n9691,94669,94669,25128285,48,385482388,9780385482390.0,Chitra Banerjee Divakaruni,1997.0,The Mistress of Spices,The Mistress of Spices,,3.48,9263,10598,822,445,1317,3504,3356,1976,https://images.gr-assets.com/books/1488839181l/94669.jpg,https://images.gr-assets.com/books/1488839181s/94669.jpg\n9692,7948945,7948945,11557579,11,451232682,9780451232690.0,Gwen Hayes,2011.0,Falling Under,\"Falling Under (Falling Under, #1)\",eng,3.78,15637,15873,1304,628,1488,3827,4670,5260,https://images.gr-assets.com/books/1326079906l/7948945.jpg,https://images.gr-assets.com/books/1326079906s/7948945.jpg\n9694,4505161,4505161,4554187,13,451225090,9780451225090.0,Karen   White,2008.0,The House On Tradd Street,\"The House on Tradd Street (Tradd Street, #1)\",eng,3.96,12311,13523,1496,201,606,3011,5411,4294,https://images.gr-assets.com/books/1344586077l/4505161.jpg,https://images.gr-assets.com/books/1344586077s/4505161.jpg\n9695,2309720,2309720,2316136,3,1421515881,9781421515880.0,Kiyo Fujiwara,2005.0,アラクレ 1,\"Wild Ones, Vol. 1 (Wild Ones, #1)\",en-US,4.03,10738,10759,110,312,675,2190,2745,4837,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390594067l/2309720.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9696,10843036,10843036,15757439,18,316196487,9780316196480.0,Brent Weeks,2011.0,Perfect Shadow,\"Perfect Shadow (Night Angel, #0.5)\",eng,4.18,9029,10846,312,55,265,1944,4013,4569,https://images.gr-assets.com/books/1360569222l/10843036.jpg,https://images.gr-assets.com/books/1360569222s/10843036.jpg\n9697,10468258,10468258,15353639,8,,2940011191210.0,Nicky Charles,2011.0,The Finding,\"The Finding (Law of the Lycans, #5)\",eng,4.18,11174,13477,750,114,446,2227,4764,5926,https://images.gr-assets.com/books/1344881680l/10468258.jpg,https://images.gr-assets.com/books/1344881680s/10468258.jpg\n9698,7785,7785,2333951,16,7158513,9780007158520.0,Dr. Seuss,1978.0,I Can Read with My Eyes Shut!,I Can Read With My Eyes Shut!,en-GB,4.17,13821,14465,437,164,615,2894,3787,7005,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348870328l/7785.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9700,15824358,15824358,72363,27,1422188612,9781422188610.0,Michael D. Watkins,2003.0,The First 90 Days: Critical Success Strategies for New Leaders at All Levels,\"The First 90 Days, Updated and Expanded: Critical Success Strategies for New Leaders at All Levels\",eng,3.81,5490,9105,493,151,609,2482,3473,2390,https://images.gr-assets.com/books/1354903827l/15824358.jpg,https://images.gr-assets.com/books/1354903827s/15824358.jpg\n9701,25067046,25067046,44751860,22,1484724984,9781484724990.0,Claudia Gray,2015.0,Star Wars: Lost Stars,Lost Stars (Star Wars: Journey to the Force Awakens),eng,4.25,8861,10718,1652,63,262,1369,4224,4800,https://images.gr-assets.com/books/1462731623l/25067046.jpg,https://images.gr-assets.com/books/1462731623s/25067046.jpg\n9702,128048,128048,871691,15,618250743,9780618250740.0,Jean Lee Latham,1955.0,\"Carry On, Mr. Bowditch\",\"Carry On, Mr. Bowditch\",eng,4.11,11933,12308,789,263,504,2218,3970,5353,https://images.gr-assets.com/books/1480110382l/128048.jpg,https://images.gr-assets.com/books/1480110382s/128048.jpg\n9703,22474626,25519820,41917394,31,,,Meredith Wild,2014.0,Hard Limit,\"Hard Limit (Hacker, #4)\",,4.34,4754,12742,645,88,271,1571,4041,6771,https://images.gr-assets.com/books/1414594976l/22474626.jpg,https://images.gr-assets.com/books/1414594976s/22474626.jpg\n9704,95660,95660,3313248,16,316115002,9780316115000.0,Lisi Harrison,2006.0,\"The Pretty Committee Strikes Back (The Clique, #5)\",\"The Pretty Committee Strikes Back (The Clique, #5)\",,3.84,12307,12480,521,369,1110,3215,3278,4508,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442262429l/95660._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9707,171201,171201,2206,11,571198775,9780571198770.0,Margaret Edson,1995.0,Wit : A Play,Wit,en-US,4.2,10601,10901,417,167,383,1659,3563,5129,https://images.gr-assets.com/books/1327908183l/171201.jpg,https://images.gr-assets.com/books/1327908183s/171201.jpg\n9708,261161,261161,2936727,18,316115045,9780316115050.0,Lisi Harrison,2006.0,\"Dial L for Loser (The Clique, #6)\",\"Dial L for Loser (The Clique, #6)\",,3.8,11736,11892,508,397,1114,3113,3104,4164,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441395661l/261161._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9710,397867,397867,2452726,50,333761189,9780333761180.0,James Herbert,1974.0,The Rats,\"The Rats (Rats, #1)\",eng,3.92,10517,11972,496,209,692,2899,4173,3999,https://images.gr-assets.com/books/1356454885l/397867.jpg,https://images.gr-assets.com/books/1356454885s/397867.jpg\n9711,104088,104088,1136221,47,451458265,9780451458260.0,Guy Gavriel Kay,1986.0,The Wandering Fire,\"The Wandering Fire (The Fionavar Tapestry, #2)\",en-US,4.11,11935,12918,394,118,504,2391,4747,5158,https://images.gr-assets.com/books/1389962006l/104088.jpg,https://images.gr-assets.com/books/1389962006s/104088.jpg\n9712,17333174,17333174,24064358,14,425270696,9780425270690.0,Ilona Andrews,2016.0,Magic Binds,\"Magic Binds (Kate Daniels, #9)\",eng,4.57,10983,14525,1656,28,66,894,4089,9448,https://images.gr-assets.com/books/1454609590l/17333174.jpg,https://images.gr-assets.com/books/1454609590s/17333174.jpg\n9713,15761241,15761241,21461918,26,,,M. Leighton,2012.0,The Wild Ones,\"The Wild Ones (The Wild Ones, #1)\",eng,3.94,16160,16900,877,277,859,3850,6528,5386,https://images.gr-assets.com/books/1343215803l/15761241.jpg,https://images.gr-assets.com/books/1343215803s/15761241.jpg\n9714,23196,23196,993607,24,553344862,9780553344870.0,David James Duncan,1983.0,The River Why,The River Why,,4.24,7735,8375,787,120,330,1116,2696,4113,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1385086992l/23196.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9716,586516,586516,1321310,17,425182134,9780425182130.0,Stephen Davis,1985.0,Hammer of the Gods,Hammer of the Gods,en-US,3.83,8226,8997,379,169,543,2464,3277,2544,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388429932l/586516.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9717,891671,891671,2114967,54,330411985,9780330411980.0,C.J. Sansom,2006.0,Winter in Madrid,Winter in Madrid,eng,3.79,8629,10072,987,196,703,2545,4229,2399,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347651080l/891671.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9718,13414599,13414599,18713712,25,449014398,9780449014390.0,\"Gretchen Rubin, Käthe Mazur\",2012.0,\"Happier at Home: Kiss More, Jump More, Abandon a Project, Read Samuel Johnson, and My Other Experiments in the Practice of Everyday Life\",\"Happier at Home: Kiss More, Jump More, Abandon a Project, Read Samuel Johnson, and My Other Experiments in the Practice of Everyday Life\",eng,3.48,6058,12025,1630,372,1563,4144,3844,2102,https://images.gr-assets.com/books/1344014249l/13414599.jpg,https://images.gr-assets.com/books/1344014249s/13414599.jpg\n9719,2895896,2895896,1188617,46,340895934,9780340895930.0,Jojo Moyes,2007.0,Silver Bay,Silver Bay,eng,3.62,9008,12033,1162,229,981,4096,4594,2133,https://images.gr-assets.com/books/1415583591l/2895896.jpg,https://images.gr-assets.com/books/1415583591s/2895896.jpg\n9720,94486,94486,2302985,86,1590170571,9781590170570.0,\"Adolfo Bioy Casares, Suzanne Jill Levine, Jorge Luis Borges, Ruth L.C. Simms, Norah Borges de Torre\",1940.0,La invención de Morel,The Invention of Morel,eng,4.05,8669,11042,911,120,497,2091,4282,4052,https://images.gr-assets.com/books/1327960951l/94486.jpg,https://images.gr-assets.com/books/1327960951s/94486.jpg\n9721,42661,42661,300328,61,142002801,9780142002800.0,Antony Beevor,1998.0,Berlin: The Downfall 1945,The Fall of Berlin 1945,eng,4.27,8443,9576,340,59,149,1255,3843,4270,https://images.gr-assets.com/books/1312049741l/42661.jpg,https://images.gr-assets.com/books/1312049741s/42661.jpg\n9722,4657,4657,2342047,49,034541800X,9780345418000.0,John Irving,1972.0,The Water-Method Man,The Water-Method Man,,3.34,9725,10384,284,285,1524,4253,3031,1291,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925069l/4657.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9723,552987,552987,2239193,20,765312824,9780765312820.0,Orson Scott Card,2007.0,\"A War of Gifts (The Ender Quintet, #1.5)\",\"A War of Gifts (Ender's Saga, #1.1)\",en-US,3.66,11643,12590,820,194,1041,4302,4429,2624,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442969720l/552987._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9724,153866,153866,207481,43,439998190,9780439998190.0,Dav Pilkey,2000.0,Captain Underpants and the Perilous Plot of Professor Poopypants (Captain Underpants),\"Captain Underpants and the Perilous Plot of Professor Poopypants (Captain Underpants, #4)\",en-GB,4.12,9566,10409,368,276,594,1890,2474,5175,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348805751l/153866.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9725,17950614,17950614,25166874,21,,,Neal Shusterman,2014.0,UnDivided,\"UnDivided (Unwind, #4)\",eng,4.48,11403,13031,1833,47,133,1076,3981,7794,https://images.gr-assets.com/books/1392097377l/17950614.jpg,https://images.gr-assets.com/books/1392097377s/17950614.jpg\n9726,17934655,17934655,25142547,18,1555976719,9781555976710.0,Leslie Jamison,2014.0,The Empathy Exams: Essays,The Empathy Exams: Essays,eng,3.62,9280,9744,1256,478,1154,2408,3217,2487,https://images.gr-assets.com/books/1405924561l/17934655.jpg,https://images.gr-assets.com/books/1405924561s/17934655.jpg\n9727,261083,261083,927167,61,006053284X,9780060532840.0,Bernard Cornwell,2003.0,Heretic,\"Heretic (The Grail Quest, #3)\",,4.11,8916,11059,295,42,252,2070,4737,3958,https://images.gr-assets.com/books/1382119406l/261083.jpg,https://images.gr-assets.com/books/1382119406s/261083.jpg\n9728,27209407,27209407,47250889,35,042528011X,9780425280120.0,Nora Roberts,2016.0,Bay of Sighs,\"Bay of Sighs (The Guardians Trilogy, #2)\",eng,4.15,6822,11200,895,104,345,2033,4033,4685,https://images.gr-assets.com/books/1458263001l/27209407.jpg,https://images.gr-assets.com/books/1458263001s/27209407.jpg\n9729,13489919,13489919,19028791,19,1937248097,9781937248090.0,Courtney Milan,2012.0,The Duchess War,\"The Duchess War (Brothers Sinister, #1)\",eng,3.82,12494,15981,1700,369,987,4012,6339,4274,https://images.gr-assets.com/books/1363009176l/13489919.jpg,https://images.gr-assets.com/books/1363009176s/13489919.jpg\n9730,484167,484167,472487,8,1421512025,9781421512020.0,Bisco Hatori,2001.0,\"千年の雪, 1\",\"Millennium Snow, Vol. 1\",en-US,4.04,11293,11359,138,376,745,2266,2617,5355,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347658110l/484167.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9731,13068,13068,817138,21,446695661,9780446695660.0,Carl Hiaasen,1987.0,Double Whammy,Double Whammy,eng,3.92,9622,10738,596,86,388,2687,4763,2814,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1434472587l/13068._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9732,3028,3028,6894,53,517548233,9780517548230.0,Henry Hazlitt,1946.0,Economics in One Lesson,Economics in One Lesson: The Shortest & Surest Way to Understand Basic Economics,,4.22,9028,10129,823,200,393,1425,3069,5042,https://images.gr-assets.com/books/1320423284l/3028.jpg,https://images.gr-assets.com/books/1320423284s/3028.jpg\n9733,12042279,12042279,12985451,24,1849013764,9781849013760.0,Lara Adrian,2012.0,Darker After Midnight,\"Darker After Midnight (Midnight Breed, #10)\",eng,4.37,14264,16748,1039,76,240,1966,5635,8831,https://images.gr-assets.com/books/1313987798l/12042279.jpg,https://images.gr-assets.com/books/1313987798s/12042279.jpg\n9734,2025787,2025787,4413359,18,340911719,9780340911720.0,Robert Muchamore,2007.0,Mad Dogs,\"Mad Dogs (Cherub, #8)\",eng,4.25,10258,10713,193,64,279,1663,3585,5122,https://images.gr-assets.com/books/1417330634l/2025787.jpg,https://images.gr-assets.com/books/1417330634s/2025787.jpg\n9735,20329634,18476102,26144200,14,,,Marko Kloos,2014.0,Lines of Departure,\"Lines of Departure (Frontlines, #2)\",eng,4.08,5110,10157,505,35,237,1892,4734,3259,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1438779556l/20329634._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9736,25817528,25817528,45584351,20,62413716,9780062413710.0,Julia Claiborne Johnson,2016.0,Be Frank With Me,Be Frank With Me,eng,3.9,9044,11284,2001,112,540,2588,5197,2847,https://images.gr-assets.com/books/1449425543l/25817528.jpg,https://images.gr-assets.com/books/1449425543s/25817528.jpg\n9737,73051,73051,1181789,16,451452313,9780451452310.0,Grant Naylor,1990.0,Better Than Life,Better than Life (Red Dwarf #2),eng,4.05,9213,10069,135,59,344,2216,3881,3569,https://images.gr-assets.com/books/1301794541l/73051.jpg,https://images.gr-assets.com/books/1301794541s/73051.jpg\n9738,25671827,25671827,44995729,20,1250083214,9781250083210.0,Kylie Scott,2016.0,Dirty,\"Dirty (Dive Bar, #1)\",eng,3.92,13948,17347,2169,268,874,4007,7074,5124,https://images.gr-assets.com/books/1444317627l/25671827.jpg,https://images.gr-assets.com/books/1444317627s/25671827.jpg\n9739,94798,94798,1267619,18,765354705,9780765354710.0,Eric S. Nylund,2006.0,Ghosts of Onyx,Halo: Ghosts of Onyx,en-US,4.15,7997,8949,279,55,305,1627,3260,3702,https://images.gr-assets.com/books/1317792529l/94798.jpg,https://images.gr-assets.com/books/1317792529s/94798.jpg\n9740,4837112,4837112,4902357,6,955944686,9780955944680.0,Rick Riordan,2009.0,Percy Jackson and the Sword of Hades,\"Percy Jackson and the Sword of Hades (Percy Jackson and the Olympians, #4.5)\",,4.28,14502,14622,357,125,368,2272,4327,7530,https://images.gr-assets.com/books/1327349413l/4837112.jpg,https://images.gr-assets.com/books/1327349413s/4837112.jpg\n9741,9018370,9018370,13895892,21,1607063298,9781607063290.0,\"Robert Kirkman, Charlie Adlard, Cliff Rathburn\",2010.0,\"The Walking Dead, Vol. 13: Too Far Gone\",\"The Walking Dead, Vol. 13: Too Far Gone\",,4.23,11521,12070,450,43,211,1882,4758,5176,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1393479579l/9018370.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9742,710969,710969,2967374,39,689855443,9780689855440.0,Cathy Hopkins,2001.0,\"Mates, Dates, and Inflatable Bras\",\"Mates, Dates, and Inflatable Bras (Mates, Dates, #1)\",eng,3.73,10270,10572,202,246,908,3411,2912,3095,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388982559l/710969.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9743,3446,3446,2242784,38,767904427,9780767904420.0,Tim O'Brien,1978.0,Going After Cacciato,Going After Cacciato,eng,3.9,9188,9686,597,113,499,2317,4052,2705,https://images.gr-assets.com/books/1399498199l/3446.jpg,https://images.gr-assets.com/books/1399498199s/3446.jpg\n9744,854252,854252,1206964,9,64404781,9780064404780.0,\"Roger Lea MacBride, David Gilleece\",1993.0,Little House on Rocky Ridge,\"Little House on Rocky Ridge (Little House: The Rocky Ridge Years, #1)\",en-US,3.83,14135,14248,135,211,914,4243,4638,4242,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348247752l/854252.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9745,15954546,15954546,21706071,17,1612187145,9781612187140.0,Catherine Bybee,2012.0,Not Quite Dating,\"Not Quite Dating (Not Quite, #1)\",eng,3.88,7880,13459,778,232,730,3347,5244,3906,https://images.gr-assets.com/books/1350588787l/15954546.jpg,https://images.gr-assets.com/books/1350588787s/15954546.jpg\n9746,934700,934700,919688,6,394823958,9780394823960.0,\"Dr. Seuss, Theo LeSieg, Roy McKie\",1972.0,In a People House,In a People House,eng,4.13,11977,12178,163,113,607,2675,3009,5774,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348082534l/934700.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9747,5943970,5943970,6116483,41,749928999,9780749929000.0,J.D. Robb,2009.0,Kindred in Death ,\"Kindred in Death (In Death, #29)\",eng,4.31,13207,16129,735,50,214,2151,6031,7683,https://images.gr-assets.com/books/1348954491l/5943970.jpg,https://images.gr-assets.com/books/1348954491s/5943970.jpg\n9748,294430,294430,5912677,36,330369032,9780330369040.0,Carl Hiaasen,1991.0,Lucky You,Lucky You,en-GB,3.84,9144,10804,683,85,456,3068,4712,2483,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348961015l/294430.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9749,20249,20249,4911,30,765312921,9780765312920.0,\"Brian Herbert, Kevin J. Anderson\",2006.0,Hunters of Dune,Hunters of Dune (Dune Chronicles #7),en-US,3.62,9121,10086,298,517,933,2922,3190,2524,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1429681489l/20249.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9750,20575440,20575440,40015927,28,374280606,9780374280600.0,Héctor Tobar,2014.0,\"Deep Down Dark: The Untold Stories of 33 Men Buried in a Chilean Mine, and the Miracle That Set Them Free\",\"Deep Down Dark: The Untold Stories of 33 Men Buried in a Chilean Mine, and the Miracle That Set Them Free\",eng,3.9,6123,8806,1341,145,373,2084,3863,2341,https://images.gr-assets.com/books/1398199578l/20575440.jpg,https://images.gr-assets.com/books/1398199578s/20575440.jpg\n9751,535494,535494,522965,13,891072926,9780891072930.0,Francis A. Schaeffer,1975.0,How Should We Then Live? The Rise and Decline of Western Thought and Culture,How Should We Then Live? The Rise and Decline of Western Thought and Culture,,4.16,9124,9639,319,182,382,1566,3059,4450,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1387666014l/535494.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9753,14403,14403,1952010,12,439598443,9780439598450.0,\"Robert Coles, George Ford\",1995.0,The Story of Ruby Bridges,The Story of Ruby Bridges,eng,4.41,9703,9908,495,64,166,1214,2677,5787,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389666928l/14403.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9754,376561,376561,4479600,81,679725318,9780679725310.0,Vladimir Nabokov,1936.0,Приглашение на казнь,Invitation to a Beheading,eng,3.94,8812,10060,612,145,553,2300,3844,3218,https://images.gr-assets.com/books/1405182507l/376561.jpg,https://images.gr-assets.com/books/1405182507s/376561.jpg\n9755,21400356,21400356,40698052,6,1500607533,9781500607530.0,Pepper Winters,2014.0,Debt Inheritance,\"Debt Inheritance (Indebted, #1)\",eng,3.79,14713,18441,2150,1252,1458,3769,5465,6497,https://images.gr-assets.com/books/1395175825l/21400356.jpg,https://images.gr-assets.com/books/1395175825s/21400356.jpg\n9756,13508021,13508021,19059809,28,62198890,9780062198890.0,Patricia Harman,2012.0,The Midwife of Hope River ,The Midwife of Hope River,eng,4.0,7736,10992,1304,76,380,2216,5070,3250,https://images.gr-assets.com/books/1344449564l/13508021.jpg,https://images.gr-assets.com/books/1344449564s/13508021.jpg\n9757,1145862,1145862,159813,8,399234160,9780399234160.0,\"Patty Lovell, David Catrow\",1994.0,\"Stand Tall, Molly Lou Melon\",\"Stand Tall, Molly Lou Melon\",en-US,4.39,11397,11479,734,134,318,1327,2839,6861,https://images.gr-assets.com/books/1314105738l/1145862.jpg,https://images.gr-assets.com/books/1314105738s/1145862.jpg\n9758,50091,50091,2361910,36,586057242,9780586057250.0,Isaac Asimov,1982.0,The Complete Robot,The Complete Robot (Robot #0.3),eng,4.34,10362,11162,286,30,112,1351,4169,5500,https://images.gr-assets.com/books/1405467461l/50091.jpg,https://images.gr-assets.com/books/1405467461s/50091.jpg\n9759,386,386,3328037,22,393329402,9780393329410.0,Nick Flynn,2004.0,Another Bullshit Night in Suck City: A Memoir,Another Bullshit Night in Suck City,eng,3.77,8441,8963,909,221,718,2302,3340,2382,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388177754l/386.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9761,40496,40496,2329482,81,141185856,9780141185860.0,Richard Llewellyn,1939.0,How Green Was My Valley,How Green Was My Valley,eng,4.16,10648,11777,1058,148,432,1935,4155,5107,https://images.gr-assets.com/books/1440708862l/40496.jpg,https://images.gr-assets.com/books/1440708862s/40496.jpg\n9762,142108,142108,1055295,58,446677469,9780446677460.0,\"Robert T. Kiyosaki, Sharon L. Lechter\",2000.0,\"Rich Dad's Guide to Investing: What the Rich Invest in, That the Poor and the Middle Class Do Not!\",Rich Dad's Guide to Investing: What the Rich Invest in That the Poor and Middle Class Do Not!,,3.94,7950,8619,232,222,546,1929,2759,3163,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388183306l/142108.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9763,5303373,5303373,5370813,23,312555113,9780312555120.0,Carol Lynch Williams,2009.0,The Chosen One,The Chosen One,eng,3.85,12865,13426,2166,290,902,3243,5073,3918,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440277077l/5303373._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9765,68985,68985,66847,29,743226755,9780743226750.0,\"Jim Loehr, Tony Schwartz\",2003.0,\"The Power of Full Engagement: Managing Energy, Not Time, Is the Key to High Performance and Personal Renewal\",\"The Power of Full Engagement: Managing Energy, Not Time, Is the Key to High Performance and Personal Renewal\",eng,4.03,8437,9136,446,162,445,1908,3092,3529,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1431760957l/68985._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9766,19400,19400,3209631,281,375758119,9780375758120.0,\"Edward Gibbon, Daniel J. Boorstin, Gian Battista Piranesi, Hans-Friedrich Mueller\",1776.0,The History of the Decline and Fall of the Roman Empire,The Decline and Fall of the Roman Empire,eng,3.96,8182,9750,382,217,520,2141,3405,3467,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1435759367l/19400._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9767,608601,608601,1361097,18,140504419,9780140504420.0,\"Donald Hall, Barbara Cooney\",1979.0,Ox-Cart Man,Ox-Cart Man (Picture Puffin),eng,4.03,12019,12191,397,295,723,2555,3416,5202,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348191605l/608601.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9768,52318,52318,1330000,20,446676977,9780446676980.0,Octavia E. Butler,1980.0,\"Wild Seed (Patternmaster, #1)\",\"Wild Seed (Patternmaster, #1)\",eng,4.22,9711,11000,1003,81,301,1605,4150,4863,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388462753l/52318.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9769,11410104,11410104,16342920,16,144244228X,9781442442280.0,Jenny Han,2009.0,The summer I turned pretty,The Summer I Turned Pretty Trilogy: The Summer I Turned Pretty; It's Not Summer Without You; We'll Always Have Summer,eng,4.46,9308,10084,652,101,259,922,2423,6379,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1309117333l/11410104.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9770,10088913,10088913,14985850,3,,9789776297060.0,حسن الجندي,2009.0,مخطوطة بن إسحاق: مدينة الموتى,مخطوطة بن إسحاق: مدينة الموتى,ara,3.76,8103,8562,952,350,776,2051,2760,2625,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1293877585l/10088913.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9772,15764,15764,838459,48,345472454,9780345472460.0,Anne Tyler,2004.0,The Amateur Marriage,The Amateur Marriage,,3.59,11527,12705,1072,188,1072,4431,5070,1944,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389486880l/15764.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9773,325416,325416,518536,190,60776005,9780060776010.0,\"Hugh Lofting, Michael Hague\",1922.0,The Voyages of Doctor Dolittle,\"The Voyages of Doctor Dolittle (Doctor Dolittle, #2)\",,4.0,11534,12997,460,154,618,3134,4318,4773,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173762814l/325416._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9774,8113344,8113344,12908561,29,7325983,9780007325990.0,Derek Landy,2010.0,Mortal Coil,\"Mortal Coil (Skulduggery Pleasant, #5)\",eng,4.48,10972,12063,494,49,133,1069,3544,7268,https://images.gr-assets.com/books/1442456495l/8113344.jpg,https://images.gr-assets.com/books/1442456495s/8113344.jpg\n9775,6954438,6954438,7189635,8,1401226965,9781401226960.0,\"Jeff Lemire, José Villarrubia, Carlos M. Mangual\",2010.0,\"Sweet Tooth, Volume 1: Out of the Deep Woods\",\"Sweet Tooth, Volume 1: Out of the Deep Woods\",eng,3.9,11306,11441,756,305,661,2479,4414,3582,https://images.gr-assets.com/books/1406510539l/6954438.jpg,https://images.gr-assets.com/books/1406510539s/6954438.jpg\n9778,158446,158446,2125579,269,1406800163,9781406800170.0,Rafael Sabatini,1922.0,Captain Blood: His Odyssey,Captain Blood,eng,4.16,9714,11354,629,109,348,2034,3975,4888,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347258939l/158446.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9779,43739,43739,1389158,33,785122583,9780785122590.0,\"Warren Ellis, Adi Granov\",2004.0,Iron Man: Extremis,Iron Man: Extremis,eng,4.08,9338,10214,331,132,442,2052,3461,4127,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1503693014l/43739._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9780,1335019,1335019,1324548,44,575081562,9780575081570.0,\"H.P. Lovecraft, Les Edwards, Stephen Jones\",1930.0,The Necronomicon,Necronomicon: The Best Weird Tales,en-GB,4.29,8344,9520,409,124,280,1243,2959,4914,https://images.gr-assets.com/books/1264059645l/1335019.jpg,https://images.gr-assets.com/books/1264059645s/1335019.jpg\n9781,6081686,6081686,6258393,15,142781404X,9781427814040.0,Hiro Fujiwara,2007.0,会長はメイド様! 2,Maid-sama! Vol. 02 (Maid-sama! #2),eng,4.53,9843,10514,123,60,186,992,2175,7101,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388452778l/6081686.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9783,17671913,17671913,24171337,17,1401242340,9781401242340.0,\"Scott Snyder, Greg Capullo, Jonathan Glapion\",2013.0,\"Batman, Volume 3: Death of the Family\",\"Batman, Volume 3: Death of the Family\",eng,4.33,8229,10619,839,88,271,1223,3484,5553,https://images.gr-assets.com/books/1376507913l/17671913.jpg,https://images.gr-assets.com/books/1376507913s/17671913.jpg\n9785,2133827,2133827,2139309,72,2081208164,9782081208160.0,Mathias Malzieu,2007.0,La Mécanique du cœur,La Mécanique du cœur,fre,3.6,5497,13236,1531,537,1540,3787,4163,3209,https://images.gr-assets.com/books/1327407179l/2133827.jpg,https://images.gr-assets.com/books/1327407179s/2133827.jpg\n9786,13035050,13035050,18198649,27,778313468,9780778313460.0,Diane Chamberlain,2012.0,The Good Father,The Good Father,eng,3.94,10068,11400,1131,103,422,2715,4947,3213,https://images.gr-assets.com/books/1328218551l/13035050.jpg,https://images.gr-assets.com/books/1328218551s/13035050.jpg\n9787,18271235,20385637,25734842,12,1476738963,9781476738960.0,Laura  McBride,2014.0,We Are Called to Rise,We Are Called to Rise,eng,3.94,5687,9458,1555,100,389,2094,4241,2634,https://images.gr-assets.com/books/1403347563l/18271235.jpg,https://images.gr-assets.com/books/1403347563s/18271235.jpg\n9788,23399022,23399022,42955411,21,525427651,9780525427650.0,\"Amanda Berry, Gina DeJesus, Mary Jordan, Kevin Sullivan\",2015.0,Hope,Hope: A Memoir of Survival in Cleveland,eng,4.27,3799,9102,927,101,195,1180,3301,4325,https://images.gr-assets.com/books/1421708177l/23399022.jpg,https://images.gr-assets.com/books/1421708177s/23399022.jpg\n9789,818372,818372,1689755,52,553277405,9780553277400.0,Clive Cussler,1981.0,Night Probe!,\"Night Probe! (Dirk Pitt, #6)\",eng,3.89,10705,11306,226,64,419,3261,4487,3075,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388278191l/818372.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9790,214579,214579,91360,17,553379011,9780553379010.0,Daniel Quinn,1996.0,The Story of B: An Adventure of the Mind and Spirit,The Story of B: An Adventure of the Mind and Spirit,eng,4.11,7730,8088,450,116,380,1454,2694,3444,https://images.gr-assets.com/books/1403169485l/214579.jpg,https://images.gr-assets.com/books/1403169485s/214579.jpg\n9791,23569783,23569783,43168213,11,1501105434,9781501105430.0,Elisabeth Egan,2015.0,A Window Opens,A Window Opens,eng,3.53,8544,9610,1400,220,907,3464,3597,1422,https://images.gr-assets.com/books/1440378428l/23569783.jpg,https://images.gr-assets.com/books/1440378428s/23569783.jpg\n9793,15677,15677,1187279,77,393321983,9780393321980.0,Patricia Highsmith,1950.0,Strangers on a Train,Strangers on a Train,eng,3.82,9788,11500,1055,195,720,2843,4922,2820,https://images.gr-assets.com/books/1331234879l/15677.jpg,https://images.gr-assets.com/books/1331234879s/15677.jpg\n9794,74462,74462,1344971,54,7154615,9780007154620.0,Carol Shields,2002.0,Unless,Unless,eng,3.63,9822,11014,915,402,1074,3133,3984,2421,https://images.gr-assets.com/books/1327970989l/74462.jpg,https://images.gr-assets.com/books/1327970989s/74462.jpg\n9795,267869,267869,259684,34,778324109,9780778324100.0,Deanna Raybourn,2006.0,Silent in the Grave,\"Silent in the Grave (Lady Julia Grey, #1)\",eng,3.91,13731,15847,1839,313,770,3505,6622,4637,https://images.gr-assets.com/books/1483424891l/267869.jpg,https://images.gr-assets.com/books/1483424891s/267869.jpg\n9796,201145,201145,2563528,25,64440508,9780064440510.0,\"Else Holmelund Minarik, Maurice Sendak\",1968.0,A Kiss for Little Bear,\"A Kiss for Little Bear (An I Can Read Book) by Minarik, Else Holmelund [1984]\",,4.31,11063,11604,126,87,284,1898,3053,6282,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388252472l/201145.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9797,18342283,18342283,25897610,31,399160477,9780399160480.0,\"Tom Clancy, Mark Greaney\",2013.0,Command Authority,\"Command Authority (Jack Ryan Universe, #16)\",eng,4.08,6805,10290,769,100,314,1828,4457,3591,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388194682l/18342283.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9798,271264,271264,262983,25,1591164435,9781591164430.0,Tite Kubo,2002.0,BLEACH―ブリーチ―　3,\"Bleach, Volume 03\",eng,4.31,11365,11555,172,103,317,1723,3207,6205,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1428789642l/271264.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9800,209631,209631,617184,5,735814864,9780735814870.0,\"Loek Koopmans, Charles Perrault, Anthea Bell\",1812.0,Cinderella,Cinderella,eng,4.22,9836,9842,169,110,356,1861,2428,5087,https://images.gr-assets.com/books/1393792231l/209631.jpg,https://images.gr-assets.com/books/1393792231s/209631.jpg\n9801,82817,82817,3032953,58,,9789875661610.0,Danielle Steel,1988.0,Zoya,Zoya,,3.95,10358,11222,350,155,616,2823,3643,3985,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1171026179l/82817._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9803,201138,201138,2876768,13,394865707,9780394865710.0,\"Stan Berenstain, Jan Berenstain\",1984.0,The Berenstain Bears and Too Much TV,The Berenstain Bears and Too Much TV,eng,4.0,11036,11242,126,243,669,2671,2952,4707,https://images.gr-assets.com/books/1457297865l/201138.jpg,https://images.gr-assets.com/books/1457297865s/201138.jpg\n9804,7027569,7027569,7275140,40,230711251,9780230711260.0,C.J. Sansom,2010.0,Heartstone,\"Heartstone (Matthew Shardlake, #5)\",eng,4.31,8297,10834,799,26,152,1317,4275,5064,https://images.gr-assets.com/books/1272182205l/7027569.jpg,https://images.gr-assets.com/books/1272182205s/7027569.jpg\n9806,6801614,6801614,7008132,18,1421534541,9781421534540.0,Eiichirō Oda,2005.0,ONE PIECE 38,\"One Piece, Volume 38: Rocketman!! (One Piece, #38)\",,4.63,8441,8706,34,61,112,589,1435,6509,https://images.gr-assets.com/books/1397155647l/6801614.jpg,https://images.gr-assets.com/books/1397155647s/6801614.jpg\n9808,1098486,1098486,1085345,17,140130138X,9781401301380.0,Elyn R. Saks,2007.0,The Center Cannot Hold,The Center Cannot Hold: My Journey Through Madness,eng,4.22,7533,8974,883,93,286,1282,3168,4145,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347528604l/1098486.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9810,109509,109509,3003265,72,399153942,9780399153940.0,Frederick Forsyth,2006.0,The Afghan,The Afghan,eng,3.64,7792,9012,503,184,767,2931,3389,1741,https://images.gr-assets.com/books/1309198395l/109509.jpg,https://images.gr-assets.com/books/1309198395s/109509.jpg\n9811,10518110,10518110,15424160,15,62101315,9780062101310.0,\"Lynsay Sands, Jeaniene Frost\",2011.0,The Bite Before Christmas,\"The Bite Before Christmas (Argeneau, #15.5; Night Huntress, #6.5)\",eng,4.16,14209,15449,839,114,471,2937,5162,6765,https://images.gr-assets.com/books/1328313295l/10518110.jpg,https://images.gr-assets.com/books/1328313295s/10518110.jpg\n9812,311196,311196,2128291,44,99465647,9780099465640.0,Georgette Heyer,1965.0,Frederica,Frederica,eng,4.15,12198,13926,1119,127,391,2365,5430,5613,https://images.gr-assets.com/books/1395082866l/311196.jpg,https://images.gr-assets.com/books/1395082866s/311196.jpg\n9814,513207,513207,501182,22,055329802X,9780553298020.0,Kevin J. Anderson,1994.0,\"Star Wars: The Jedi Academy Trilogy, Volume III - Champions of the Force\",\"Champions of the Force (Star Wars: The Jedi Academy Trilogy, #3)\",eng,3.67,10605,10910,131,238,922,3586,3647,2517,https://images.gr-assets.com/books/1327008722l/513207.jpg,https://images.gr-assets.com/books/1327008722s/513207.jpg\n9815,5103512,5103512,5170276,5,307460444,9780307460450.0,Martha Stewart,2009.0,Martha Stewart's Cupcakes: 175 Inspired Ideas for Everyone's Favorite Treats,Martha Stewart's Cupcakes: 175 Inspired Ideas for Everyone's Favorite Treat,,4.11,8317,8336,111,229,369,1493,2404,3841,https://images.gr-assets.com/books/1320443899l/5103512.jpg,https://images.gr-assets.com/books/1320443899s/5103512.jpg\n9817,1422250,1422250,2968948,22,61229695,9780061229700.0,Lynsay Sands,2008.0,Vampires are Forever,Vampires are Forever (Argeneau #8),en-US,4.25,15403,16305,378,61,380,2697,5372,7795,https://images.gr-assets.com/books/1351280934l/1422250.jpg,https://images.gr-assets.com/books/1351280934s/1422250.jpg\n9819,335397,335397,325869,343,1402179626,9781402179620.0,Richard Henry Dana Jr.,1840.0,Two Years Before the Mast,Two Years Before the Mast: A Sailor's Life at Sea,eng,3.96,8492,10179,515,203,487,2354,3598,3537,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1173843539l/335397._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9820,7078265,7078265,7332789,30,312380755,9780312380760.0,Lisa Scottoline,2010.0,Think Twice,\"Think Twice (Rosato & Associates, #11)\",en-US,3.62,10211,11534,1215,398,1093,3479,4077,2487,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441689787l/7078265._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9821,245700,245700,238058,4,974461229,9780974461230.0,\"Amy Brown, Charles  de Lint\",2003.0,The Art of Amy Brown,The Art of Amy Brown,,4.04,8637,8721,43,299,538,1718,2117,4049,https://images.gr-assets.com/books/1328765892l/245700.jpg,https://images.gr-assets.com/books/1328765892s/245700.jpg\n9822,716944,716944,2961469,51,744592704,9780744592700.0,\"Martin Waddell, Patrick Benson\",1975.0,Owl Babies,Owl Babies,en-GB,4.19,11299,11904,561,126,449,2193,3355,5781,https://images.gr-assets.com/books/1408930554l/716944.jpg,https://images.gr-assets.com/books/1408930554s/716944.jpg\n9823,22749750,22749750,42295144,12,544303164,9780544303160.0,Angela Flournoy,2015.0,The Turner House,The Turner House,eng,3.64,8645,10660,1493,180,755,3453,4627,1645,https://images.gr-assets.com/books/1408469614l/22749750.jpg,https://images.gr-assets.com/books/1408469614s/22749750.jpg\n9824,359463,359463,349585,28,1414310552,9781414310560.0,Dee Henderson,1999.0,Danger in the Shadows,Danger in the Shadows (O'Malley #0.5),eng,4.33,10333,11527,628,73,306,1483,3508,6157,https://images.gr-assets.com/books/1406507237l/359463.jpg,https://images.gr-assets.com/books/1406507237s/359463.jpg\n9825,17257484,17257484,23851721,13,,,Samantha Towle,2013.0,Trouble,Trouble,eng,4.0,13959,17036,1335,243,778,3446,6753,5816,https://images.gr-assets.com/books/1363602953l/17257484.jpg,https://images.gr-assets.com/books/1363602953s/17257484.jpg\n9826,67863,67863,65810,10,875420281,9780875420290.0,\"Ted Andrews, Winston Allen, Margaret K. Andrews\",1996.0,Animal Speak: The Spiritual & Magical Powers of Creatures Great & Small,Animal-Speak: The Spiritual & Magical Powers of Creatures Great & Small,eng,4.25,8581,8750,196,114,281,1338,2559,4458,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347311507l/67863.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9827,5981415,5981415,3676745,8,778326438,9780778326430.0,Debbie Macomber,2009.0,Summer On Blossom Street (Blossom Street #6),\"Summer on Blossom Street (Blossom Street, #6)\",eng,4.19,10681,11667,632,52,248,2092,4300,4975,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442703061l/5981415._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9828,34295,34295,12911598,57,307265781,9780307265780.0,Maeve Binchy,2006.0,Whitethorn Woods,Whitethorn Woods,eng,3.59,10409,11652,1103,180,1040,4215,4210,2007,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388347440l/34295.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9829,13151637,13151637,18329688,2,,,محمد صادق,2010.0,\"رواية \"\" طه الغريب \"\"\",طه الغريب,ara,3.67,7662,7735,964,577,886,1626,2098,2548,https://images.gr-assets.com/books/1421427887l/13151637.jpg,https://images.gr-assets.com/books/1421427887s/13151637.jpg\n9830,96702,96702,1673024,20,802142109,9780802142110.0,Stephanie Kallos,2004.0,Broken for You,Broken for You,eng,3.8,10014,10434,1537,210,771,2689,4037,2727,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442278943l/96702._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9832,130260,130260,925576,72,440236169,9780440236160.0,Mo Hayder,1999.0,Birdman,\"Birdman (Jack Caffery, #1)\",,3.88,9726,12143,1204,250,688,2830,4934,3441,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388725583l/130260.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9834,25014,25014,1413457,27,60931809,9780060931800.0,Simon Winchester,2001.0,The Map That Changed the World: William Smith and the Birth of Modern Geology,The Map That Changed the World,eng,3.81,9131,9788,515,158,597,2684,3817,2532,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436981852l/25014._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9835,72855,72855,845657,21,553582798,9780553582800.0,Sara Donati,2002.0,Lake in the Clouds,\"Lake in the Clouds (Wilderness, #3)\",eng,4.31,9223,10182,329,43,128,1239,3962,4810,https://images.gr-assets.com/books/1367533032l/72855.jpg,https://images.gr-assets.com/books/1367533032s/72855.jpg\n9837,18079719,18079719,19209831,24,525426035,9780525426040.0,Andrew  Smith,2014.0,Grasshopper Jungle,Grasshopper Jungle,eng,3.66,11890,13077,2898,752,1360,3093,4229,3643,https://images.gr-assets.com/books/1373059909l/18079719.jpg,https://images.gr-assets.com/books/1373059909s/18079719.jpg\n9838,65633,65633,63667,5,60827874,9780060827880.0,\"Perry Moore, Andrew Adamson, C.S. Lewis\",2005.0,\"The Chronicles of Narnia - The Lion, the Witch, and the Wardrobe Official Illustrated Movie Companion\",\"The Chronicles of Narnia - The Lion, the Witch, and the Wardrobe Official Illustrated Movie Companion\",en-US,4.48,7328,7353,66,44,84,780,1815,4630,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441420339l/65633._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9839,352383,352383,823316,35,041330860X,9780413308600.0,Jean Anouilh,1944.0,Antigone,Antigone,,3.8,10449,12655,287,271,1022,3380,4282,3700,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1174001536l/352383.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9841,15101,15101,876908,55,380815923,9780380815920.0,Joanne Harris,1999.0,Blackberry Wine,Blackberry Wine,en-US,3.78,9558,11107,699,163,755,3215,4220,2754,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442203288l/15101._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9842,24019187,24019187,43618137,12,1250058902,9781250058900.0,Brandon Stanton,2015.0,Humans of New York: Stories,Humans of New York: Stories,eng,4.5,12527,12852,1210,191,211,901,3231,8318,https://images.gr-assets.com/books/1430176879l/24019187.jpg,https://images.gr-assets.com/books/1430176879s/24019187.jpg\n9843,71867,71867,1964436,43,439858054,9780439858050.0,John Marsden,1999.0,The Other Side of Dawn,\"The Other Side of Dawn (Tomorrow, #7)\",,4.21,10443,11682,341,47,265,1895,4448,5027,https://images.gr-assets.com/books/1331588583l/71867.jpg,https://images.gr-assets.com/books/1331588583s/71867.jpg\n9844,17235347,17235347,23753691,13,,,Marie Lu,2012.0,Life Before Legend,\"Life Before Legend: Stories of the Criminal and the Prodigy (Legend, #0.5)\",eng,4.02,13933,14256,1169,234,619,3205,4786,5412,https://images.gr-assets.com/books/1358952957l/17235347.jpg,https://images.gr-assets.com/books/1358952957s/17235347.jpg\n9845,13360101,13360101,18588471,22,345533232,9780345533230.0,Maya Banks,2012.0,Never Seduce a Scot,\"Never Seduce a Scot (The Montgomerys and Armstrongs, #1)\",eng,4.19,15968,17875,1502,222,566,2727,6442,7918,https://images.gr-assets.com/books/1328116176l/13360101.jpg,https://images.gr-assets.com/books/1328116176s/13360101.jpg\n9846,1099097,1099097,1059246,41,6640613,9780006640620.0,Judith Kerr,1968.0,The Tiger Who Came to Tea,The Tiger Who Came to Tea,,4.23,10229,10965,356,172,417,1741,3030,5605,https://images.gr-assets.com/books/1369858732l/1099097.jpg,https://images.gr-assets.com/books/1369858732s/1099097.jpg\n9847,20685373,20685373,40000267,18,307720659,9780307720660.0,Suki Kim,2014.0,\"Without You, There Is No Us: My Time with the Sons of North Korea's Elite\",\"Without You, There Is No Us: My Time with the Sons of North Korea's Elite\",,3.85,8164,10002,1426,145,523,2526,4328,2480,https://images.gr-assets.com/books/1405292426l/20685373.jpg,https://images.gr-assets.com/books/1405292426s/20685373.jpg\n9848,61899,61899,1093445,21,671578855,9780671578860.0,Lois McMaster Bujold,1999.0,A Civil Campaign,\"A Civil Campaign (Vorkosigan Saga, #12)\",eng,4.43,11823,12802,584,33,152,1305,4124,7188,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924032l/61899.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9849,36638,36638,856203,48,385327900,9780385327910.0,\"Joan Aiken, Pat Marriott\",1962.0,The Wolves of Willoughby Chase ,\"The Wolves of Willoughby Chase (The Wolves Chronicles, #1)\",,4.08,13463,14743,947,193,581,2901,5305,5763,https://images.gr-assets.com/books/1441688212l/36638.jpg,https://images.gr-assets.com/books/1441688212s/36638.jpg\n9850,17563539,17563539,24496290,8,,,Andy Weir,2009.0,The Egg,The Egg,eng,4.13,10238,10285,1403,212,408,1608,3678,4379,https://images.gr-assets.com/books/1431492647l/17563539.jpg,https://images.gr-assets.com/books/1431492647s/17563539.jpg\n9851,784222,784222,770224,19,1421513242,9781421513250.0,\"Matsuri Hino, Tomo Kimura\",2006.0,ヴァンパイア騎士 3 ,\"Vampire Knight, Vol. 3 (Vampire Knight, #3)\",eng,4.27,13327,13559,241,170,478,2146,3464,7301,https://images.gr-assets.com/books/1317879553l/784222.jpg,https://images.gr-assets.com/books/1317879553s/784222.jpg\n9852,31266,31266,3248998,67,752858653,9780752858650.0,Robert Ludlum,1971.0,The Scarlatti Inheritance,The Scarlatti Inheritance,,3.82,9934,10632,153,80,505,3172,4342,2533,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1168273131l/31266.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9853,690955,690955,682105,11,1596430699,9781596430690.0,Nick Bruel,2005.0,Bad Kitty,Bad Kitty,en-US,4.18,10884,11013,462,243,492,1884,2774,5620,https://images.gr-assets.com/books/1403422027l/690955.jpg,https://images.gr-assets.com/books/1403422027s/690955.jpg\n9854,15398,15398,1723715,27,743225740,9780743225750.0,Anita Diamant,2005.0,The Last Days of Dogtown,The Last Days of Dogtown,,3.39,8216,9621,1241,313,1215,3632,3286,1175,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442805466l/15398._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9855,5266667,5266667,5333984,22,60874198,9780060874190.0,Alex Flinn,2008.0,A Kiss in Time,A Kiss in Time,en-US,3.77,15684,17889,1767,386,1493,4944,6108,4958,https://images.gr-assets.com/books/1355870076l/5266667.jpg,https://images.gr-assets.com/books/1355870076s/5266667.jpg\n9857,10461,10461,2956030,38,1573225053,9781573225050.0,\"Jack Kerouac, Joyce Johnson\",1958.0,Desolation Angels,Desolation Angels,en-US,3.92,8861,9172,278,104,467,2345,3400,2856,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386924204l/10461.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9858,383196,383196,1881330,18,9649007903,,سهراب سپهری,1977.0,هشت کتاب: مرگِ رنگ. زندگیِ خواب‌ه. آوارِ آفتاب. شرقِ اندوه. صدای پای آب. مسافر. حجمِ سبز. ما هیچ، ما نگاه,هشت کتاب,per,4.08,4769,5510,197,110,276,1052,1692,2380,https://images.gr-assets.com/books/1485890816l/383196.jpg,https://images.gr-assets.com/books/1485890816s/383196.jpg\n9859,26771521,26771521,46093269,10,1516865871,9781516865870.0,Hugh Howey,2015.0,Beacon 23: The Complete Novel,\"Beacon 23: The Complete Novel (Beacon 23, #1-5)\",eng,3.9,5140,9909,877,84,491,2423,4289,2622,https://images.gr-assets.com/books/1444683708l/26771521.jpg,https://images.gr-assets.com/books/1444683708s/26771521.jpg\n9860,50051,50051,1069014,34,752837214,9780752837220.0,Larry McMurtry,1966.0,The Last Picture Show,The Last Picture Show,eng,3.95,9727,11072,554,126,479,2492,4656,3319,https://images.gr-assets.com/books/1344275927l/50051.jpg,https://images.gr-assets.com/books/1344275927s/50051.jpg\n9861,714569,714569,2225943,29,142408654,9780142408650.0,Eva Ibbotson,1981.0,A Countess Below Stairs,A Countess Below Stairs,en-US,3.88,14422,16219,1661,336,1090,3934,5764,5095,https://images.gr-assets.com/books/1311649247l/714569.jpg,https://images.gr-assets.com/books/1311649247s/714569.jpg\n9862,4772110,4772110,4836931,77,307397874,9780307397870.0,Kazuo Ishiguro,2009.0,Nocturnes: Five Stories of Music and Nightfall,Nocturnes: Five Stories of Music and Nightfall,eng,3.4,8729,11243,1252,250,1413,4480,3771,1329,https://images.gr-assets.com/books/1320430211l/4772110.jpg,https://images.gr-assets.com/books/1320430211s/4772110.jpg\n9863,64394,64394,824589,51,1857984986,9781857984990.0,Harry Harrison,1961.0,The Stainless Steel Rat,\"The Stainless Steel Rat (Stainless Steel Rat, #4)\",eng,3.93,10285,11237,378,106,528,2791,4447,3365,https://images.gr-assets.com/books/1328073906l/64394.jpg,https://images.gr-assets.com/books/1328073906s/64394.jpg\n9864,88442,88442,2193696,47,140297995,9780140298000.0,\"W.G. Sebald, Anthea Bell\",2001.0,Austerlitz,Austerlitz,en-GB,4.04,8267,9877,837,301,604,1681,3133,4158,https://images.gr-assets.com/books/1327920142l/88442.jpg,https://images.gr-assets.com/books/1327920142s/88442.jpg\n9865,2505836,2505836,2513204,22,1401918743,9781401918740.0,\"Esther Hicks, Jerry Hicks\",2006.0,\"Money, and the Law of Attraction: Learning to Attract Wealth, Health, and Happiness\",\"Money, and the Law of Attraction: Learning to Attract Wealth, Health, and Happiness\",,4.24,8099,8534,127,156,343,1287,2260,4488,https://images.gr-assets.com/books/1418105485l/2505836.jpg,https://images.gr-assets.com/books/1418105485s/2505836.jpg\n9866,78976,78976,1952679,40,312933525,9780312933520.0,Jeffrey Archer,1988.0,A Twist in the Tale,A Twist in the Tale,en-US,3.85,8978,9608,244,92,415,2725,3942,2434,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386922973l/78976.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9867,90420,90420,87264,10,689821816,9780689821810.0,Sharon M. Draper,2006.0,Copper Sun,Copper Sun,eng,4.3,9795,10251,1392,107,312,1313,3178,5341,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1347621809l/90420.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9871,55019,55019,1509542,36,380712040,9780380712040.0,James Lee Burke,1989.0,Black Cherry Blues,\"Black Cherry Blues (Dave Robicheaux, #3)\",en-US,4.17,9658,10548,352,67,217,1772,4322,4170,https://images.gr-assets.com/books/1314479487l/55019.jpg,https://images.gr-assets.com/books/1314479487s/55019.jpg\n9872,24480276,24480276,44074400,45,,9781474600160.0,Laura  Barnett,2015.0,The Versions of Us,The Versions of Us,eng,3.57,8477,11346,1685,382,1170,3457,4250,2087,https://images.gr-assets.com/books/1423155390l/24480276.jpg,https://images.gr-assets.com/books/1423155390s/24480276.jpg\n9874,64794,64794,1237369,32,60959681,9780060959680.0,Gary Zukav,1979.0,The Dancing Wu Li Masters: An Overview of the New Physics,Dancing Wu Li Masters: An Overview of the New Physics (Perennial Classics),en-US,4.02,7739,8403,358,184,397,1691,2931,3200,https://images.gr-assets.com/books/1410138626l/64794.jpg,https://images.gr-assets.com/books/1410138626s/64794.jpg\n9875,226315,226315,219207,8,425200280,9780425200280.0,Johanna Edwards,2005.0,The Next Big Thing,The Next Big Thing,,3.68,8907,8954,223,301,768,2753,2769,2363,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442602425l/226315._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9876,10165727,10165727,15064442,22,670076082,9780670076090.0,Melina Marchetta,2011.0,Froi of the Exiles,\"Froi of the Exiles (Lumatere Chronicles, #2)\",eng,4.3,12775,14215,1775,259,453,1657,4221,7625,https://images.gr-assets.com/books/1306866851l/10165727.jpg,https://images.gr-assets.com/books/1306866851s/10165727.jpg\n9877,536790,536790,16179287,46,,,Roger Zelazny,1985.0,Trumps of Doom,\"Trumps of Doom (The Chronicles of Amber, #6)\",eng,4.06,11282,11798,175,67,446,2595,4333,4357,https://images.gr-assets.com/books/1418027077l/536790.jpg,https://images.gr-assets.com/books/1418027077s/536790.jpg\n9878,13426114,13426114,18912407,52,62183591,9780062183590.0,Dan Ariely,2012.0,The Honest Truth About Dishonesty: How We Lie to Everyone - Especially Ourselves,The Honest Truth About Dishonesty: How We Lie to Everyone - Especially Ourselves,eng,3.91,8423,9646,803,142,449,2282,4014,2759,https://images.gr-assets.com/books/1331070373l/13426114.jpg,https://images.gr-assets.com/books/1331070373s/13426114.jpg\n9879,12687461,12687461,17884037,53,039915731X,9780399157320.0,\"Tom Clancy, Mark Greaney\",2011.0,Locked On,\"Locked On (Jack Ryan Universe, #14)\",eng,3.99,7974,9976,620,126,406,2059,4193,3192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390233962l/12687461.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9880,11721314,11721314,16669543,17,385741774,9780385741770.0,Lauren Morrill,2012.0,Meant to Be,Meant to Be,eng,3.72,13803,14588,1974,456,1211,4120,4964,3837,https://images.gr-assets.com/books/1331322901l/11721314.jpg,https://images.gr-assets.com/books/1331322901s/11721314.jpg\n9881,511684,511684,499669,40,440863686,9780440863690.0,\"Jacqueline Wilson, Nick Sharratt\",1999.0,The Illustrated Mum,The Illustrated Mum,eng,3.74,10763,11341,321,290,977,3319,3554,3201,https://images.gr-assets.com/books/1320392229l/511684.jpg,https://images.gr-assets.com/books/1320392229s/511684.jpg\n9882,18367581,18367581,25974633,24,1481422340,9781481422340.0,Scott Westerfeld,2014.0,Afterworlds,Afterworlds (Afterworlds #1),eng,3.72,13813,15054,2727,595,1306,3785,5349,4019,https://images.gr-assets.com/books/1396118779l/18367581.jpg,https://images.gr-assets.com/books/1396118779s/18367581.jpg\n9883,16158563,16158563,21998979,26,670026476,9780670026470.0,Charlie Lovett,2013.0,The Bookman’s Tale,The Bookman’s Tale,eng,3.74,10154,12102,2019,222,804,3418,5097,2561,https://images.gr-assets.com/books/1360573276l/16158563.jpg,https://images.gr-assets.com/books/1360573276s/16158563.jpg\n9884,97390,97390,93879,32,5080039159,9785080039160.0,\"Aleksandr Griboyedov, Александр Сергеевич Грибоедов\",1825.0,Горе от ума ,Горе от ума,rus,4.13,9287,9690,36,159,553,1674,2791,4513,https://images.gr-assets.com/books/1342993233l/97390.jpg,https://images.gr-assets.com/books/1342993233s/97390.jpg\n9885,8682579,8682579,13554747,53,1439180962,9781439180970.0,Mary Higgins Clark,2011.0,I'll Walk Alone,I'll Walk Alone,en-US,3.78,9794,11891,1199,220,849,3365,4366,3091,https://images.gr-assets.com/books/1327879369l/8682579.jpg,https://images.gr-assets.com/books/1327879369s/8682579.jpg\n9887,503248,503248,491309,21,307381269,9780307381260.0,\"Howard Dully, Charles Fleming\",2007.0,My Lobotomy,My Lobotomy,eng,3.7,8068,9615,1247,142,788,2979,3585,2121,https://images.gr-assets.com/books/1320449273l/503248.jpg,https://images.gr-assets.com/books/1320449273s/503248.jpg\n9888,31087,31087,31417,11,307237907,9780307237900.0,Karen Harper,1983.0,Passion's Reign,The Last Boleyn,eng,4.04,8514,8928,205,129,345,1859,3309,3286,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388255167l/31087.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9889,22923997,22923997,42492108,15,,,Emma Chase,2015.0,Overruled,\"Overruled (The Legal Briefs, #1)\",eng,3.83,16931,17667,1710,621,1129,4045,6697,5175,https://images.gr-assets.com/books/1417712844l/22923997.jpg,https://images.gr-assets.com/books/1417712844s/22923997.jpg\n9890,481335,481335,442738,58,425098605,9780425098610.0,Dean Koontz,1977.0,The Vision,The Vision,eng,3.79,10682,11444,246,169,824,3533,3605,3313,https://images.gr-assets.com/books/1350747881l/481335.jpg,https://images.gr-assets.com/books/1350747881s/481335.jpg\n9891,1365225,1365225,1355045,24,9684114737,9789684114740.0,José Emilio Pacheco,1981.0,Las batallas en el desierto,Las batallas en el desierto,spa,4.1,8509,9513,598,105,383,1670,3606,3749,https://images.gr-assets.com/books/1304602212l/1365225.jpg,https://images.gr-assets.com/books/1304602212s/1365225.jpg\n9892,2494204,2494204,2888281,45,749908904,9780749908900.0,J.D. Robb,2008.0,Salvation in Death,\"Salvation in Death (In Death, #27)\",eng,4.26,14153,16574,649,43,305,2544,6100,7582,https://images.gr-assets.com/books/1328026886l/2494204.jpg,https://images.gr-assets.com/books/1328026886s/2494204.jpg\n9893,16081202,17978160,21880142,11,,,Emery Lord,2014.0,Open Road Summer,Open Road Summer,eng,3.91,5017,11408,1335,271,674,2663,4002,3798,https://images.gr-assets.com/books/1405104324l/16081202.jpg,https://images.gr-assets.com/books/1405104324s/16081202.jpg\n9894,12017,12017,21864462,25,074341196X,9780743411970.0,Iain M. Banks,1998.0,Inversions,\"Inversions (Culture, #6)\",,3.9,9068,10804,390,76,452,2784,4691,2801,https://images.gr-assets.com/books/1288930844l/12017.jpg,https://images.gr-assets.com/books/1288930844s/12017.jpg\n9895,27152124,27152124,45357589,7,,,Ilsa Madden-Mills,2015.0,Dirty English,\"Dirty English (English, #1)\",eng,3.95,16115,16230,1768,332,891,3473,6167,5367,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1444604859l/27152124._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9896,9639197,9639197,14526602,41,385669852,9780385669860.0,Alice LaPlante,2011.0,Turn of Mind,Turn of Mind,,3.65,10954,12742,2116,290,1027,3857,5253,2315,https://images.gr-assets.com/books/1320547877l/9639197.jpg,https://images.gr-assets.com/books/1320547877s/9639197.jpg\n9897,655601,655601,4413361,22,1416927247,9781416927240.0,Robert Muchamore,2006.0,Divine Madness,\"Divine Madness (Cherub, #5)\",eng,4.17,9640,10694,273,77,378,1861,3729,4649,https://images.gr-assets.com/books/1283561989l/655601.jpg,https://images.gr-assets.com/books/1283561989s/655601.jpg\n9898,12977172,12977172,18135995,13,758272820,9780758272830.0,Brigid Kemmerer,2012.0,Spark,\"Spark (Elemental, #2)\",en-US,4.16,13537,14469,1293,205,494,2396,5058,6316,https://images.gr-assets.com/books/1329524396l/12977172.jpg,https://images.gr-assets.com/books/1329524396s/12977172.jpg\n9899,25813921,27213329,45670634,32,1442397144,9781442397150.0,Angela Duckworth,2016.0,\"Grit: Passion, Perseverance, and the Science of Success\",\"Grit: Passion, Perseverance, and the Science of Success\",eng,4.08,7971,17123,1634,303,657,3023,6540,6600,https://images.gr-assets.com/books/1458533580l/25813921.jpg,https://images.gr-assets.com/books/1458533580s/25813921.jpg\n9900,6395833,6395833,6584446,2,,,Chuck Palahniuk,2004.0,Guts,Guts,eng,3.93,10300,10332,492,384,701,2047,3302,3898,https://images.gr-assets.com/books/1273235556l/6395833.jpg,https://images.gr-assets.com/books/1273235556s/6395833.jpg\n9901,7257982,7257982,8310627,53,446562424,9780446562420.0,Scott Turow,2005.0,Innocent,\"Innocent (Kindle County Legal Thriller, #8)\",eng,3.9,9827,11177,1130,120,499,2731,4842,2985,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441429707l/7257982._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9902,236862,236862,229421,22,143038389,9780143038380.0,Craig Johnson,2006.0,Death Without Company,\"Death Without Company (Walt Longmire, #2)\",eng,4.23,9114,11174,1041,17,106,1469,5293,4289,https://images.gr-assets.com/books/1349807862l/236862.jpg,https://images.gr-assets.com/books/1349807862s/236862.jpg\n9903,625603,625603,611957,28,184416294X,9781844162950.0,Dan Abnett,2006.0,Horus Rising,Horus Rising,eng,4.17,9152,9839,501,55,244,1540,4120,3880,https://images.gr-assets.com/books/1414166935l/625603.jpg,https://images.gr-assets.com/books/1414166935s/625603.jpg\n9904,18680106,18680106,24034716,12,,,Laura Kaye,2013.0,Hard As It Gets,\"Hard as It Gets (Hard Ink, #1)\",eng,4.01,12205,15117,1428,321,678,2902,5919,5297,https://images.gr-assets.com/books/1381840319l/18680106.jpg,https://images.gr-assets.com/books/1381840319s/18680106.jpg\n9905,449,449,1344597,45,312263996,9780312264000.0,Paul Auster,1999.0,Timbuktu,Timbuktu,eng,3.66,8272,9588,741,240,916,2828,3502,2102,https://images.gr-assets.com/books/1355142497l/449.jpg,https://images.gr-assets.com/books/1355142497s/449.jpg\n9906,1087207,1087207,2902197,16,1421501929,9781421501920.0,Bisco Hatori,1999.0,桜蘭高校ホスト部 4,\"Ouran High School Host Club, Vol. 4 (Ouran High School Host Club, #4)\",eng,4.45,11280,11392,137,53,191,1264,2942,6942,https://images.gr-assets.com/books/1416398307l/1087207.jpg,https://images.gr-assets.com/books/1416398307s/1087207.jpg\n9907,7914058,7914058,11199829,32,316020729,9780316020720.0,Anita Shreve,2010.0,Rescue,Rescue,eng,3.3,10993,12417,1661,331,1768,5396,3729,1193,https://images.gr-assets.com/books/1289520228l/7914058.jpg,https://images.gr-assets.com/books/1289520228s/7914058.jpg\n9908,10009,10009,691697,105,156421356,9780156421360.0,Max Frisch,1957.0,Homo faber: Ein Bericht,Homo Faber,eng,3.75,9401,12097,340,454,1109,2883,4264,3387,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399843869l/10009.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9909,24612624,24612624,44165520,27,545812542,9780545812540.0,Alex Gino,2015.0,George,George,eng,4.01,13093,14218,3174,387,518,2657,5726,4930,https://images.gr-assets.com/books/1423358952l/24612624.jpg,https://images.gr-assets.com/books/1423358952s/24612624.jpg\n9910,714380,714380,743199,28,394726251,9780394726250.0,Daniel J. Boorstin,1983.0,The Discoverers: A History of Man's Search to Know His World and Himself,The Discoverers: A History of Man's Search to Know His World and Himself,,4.12,9117,9452,261,115,365,1707,3375,3890,https://images.gr-assets.com/books/1321817832l/714380.jpg,https://images.gr-assets.com/books/1321817832s/714380.jpg\n9911,420496,420496,1936434,37,345424646,9780345424650.0,Terry Brooks,1998.0,A Knight of the Word ,\"A Knight of the Word (Word & Void, #2)\",en-US,4.04,10745,11991,244,83,472,2588,4549,4299,https://images.gr-assets.com/books/1403811542l/420496.jpg,https://images.gr-assets.com/books/1403811542s/420496.jpg\n9913,25912358,25912358,45800086,19,,,Tillie Cole,2016.0,A Thousand Boy Kisses,A Thousand Boy Kisses,eng,4.29,10586,13885,3018,440,708,1604,2816,8317,https://images.gr-assets.com/books/1453299050l/25912358.jpg,https://images.gr-assets.com/books/1453299050s/25912358.jpg\n9915,10196362,10196362,13867623,43,553807188,9780553807190.0,Linwood Barclay,2011.0,The Accident,The Accident,eng,3.93,9638,11559,1205,128,541,2619,4968,3303,https://images.gr-assets.com/books/1320390347l/10196362.jpg,https://images.gr-assets.com/books/1320390347s/10196362.jpg\n9916,25809756,25809756,45665763,42,812998251,9780812998250.0,Sophie Kinsella,2015.0,Shopaholic to the Rescue,\"Shopaholic to the Rescue (Shopaholic, #8)\",eng,3.55,8168,11089,1297,277,1146,3904,3756,2006,https://images.gr-assets.com/books/1439942710l/25809756.jpg,https://images.gr-assets.com/books/1439942710s/25809756.jpg\n9917,12989112,12989112,15502516,16,145165801X,9781451658020.0,Jennifer Echols,2012.0,Such a Rush,Such a Rush,eng,3.84,13370,13796,1149,429,1014,3207,4845,4301,https://images.gr-assets.com/books/1345851913l/12989112.jpg,https://images.gr-assets.com/books/1345851913s/12989112.jpg\n9918,5053547,5053547,5120159,13,505527847,9780505527840.0,Jana Deleon,2009.0,Trouble in Mudbug,\"Trouble in Mudbug (Ghost-in-Law, #1)\",en-US,3.92,6249,11302,872,221,583,2642,4241,3615,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1389664517l/5053547.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9919,762288,762288,748381,22,140344438,9780140344430.0,Barthe DeClements,1981.0,Nothing's Fair in Fifth Grade,Nothing's Fair in Fifth Grade,,3.94,10276,10633,170,362,582,2496,3062,4131,https://images.gr-assets.com/books/1458976419l/762288.jpg,https://images.gr-assets.com/books/1458976419s/762288.jpg\n9920,11568316,11568316,16508966,18,316197041,9780316197040.0,\"Kami Garcia, Margaret Stohl\",2011.0,Dream Dark,\"Dream Dark (Caster Chronicles, #2.5)\",eng,3.76,12142,14458,888,252,1211,4517,4317,4161,https://images.gr-assets.com/books/1307480317l/11568316.jpg,https://images.gr-assets.com/books/1307480317s/11568316.jpg\n9921,99713,99713,1101090,10,811200418,9780811200420.0,Lawrence Ferlinghetti,1958.0,A Coney Island of the Mind: Poems,A Coney Island of the Mind,eng,4.16,9376,9445,297,105,348,1620,3231,4141,https://images.gr-assets.com/books/1327958248l/99713.jpg,https://images.gr-assets.com/books/1327958248s/99713.jpg\n9922,10092,10092,1629048,20,641645473,9780641645470.0,Tad Williams,2001.0,Sea of Silver Light,\"Sea of Silver Light (Otherland, #4)\",,4.11,9758,11017,230,107,458,1974,4015,4463,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1587631380l/10092._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9923,228200,228200,9813455,26,451190564,9780451190570.0,Stephen King,1996.0,\"The Green Mile, Part 5: Night Journey\",\"The Green Mile, Part 5: Night Journey\",eng,4.51,11442,11918,111,26,122,1015,3282,7473,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1223640401l/228200.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9924,24769,24769,25576,33,60519592,9780060519600.0,Scott Westerfeld,2006.0,\"Blue Noon (Midnighters, #3)\",\"Blue Noon (Midnighters, #3)\",eng,3.85,14053,15120,830,204,958,4140,5370,4448,https://images.gr-assets.com/books/1315537301l/24769.jpg,https://images.gr-assets.com/books/1315537301s/24769.jpg\n9925,86737,86737,3877968,52,1582349177,9781582349180.0,Mary Hoffman,2002.0,City of Masks,\"City of Masks (Stravaganza, #1)\",eng,3.9,12048,13385,555,314,758,3154,4872,4287,https://images.gr-assets.com/books/1294870497l/86737.jpg,https://images.gr-assets.com/books/1294870497s/86737.jpg\n9927,40465,40465,1183297,25,812976525,9780812976530.0,Christopher Buckley,1994.0,Thank You for Smoking,Thank You for Smoking,,3.92,9054,9951,635,81,398,2361,4534,2577,https://images.gr-assets.com/books/1350349077l/40465.jpg,https://images.gr-assets.com/books/1350349077s/40465.jpg\n9928,33896,33896,2414732,46,375509321,9780375509320.0,Charles Frazier,2006.0,Thirteen Moons,Thirteen Moons,en-US,3.64,9028,10124,1539,298,976,2956,3700,2194,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1440046095l/33896._SX318_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9930,16128105,16128105,21952608,34,61458570,9780061458580.0,Lionel Shriver,2013.0,Big Brother,Big Brother,en-US,3.4,8795,10462,1779,403,1314,3618,3901,1226,https://images.gr-assets.com/books/1359981310l/16128105.jpg,https://images.gr-assets.com/books/1359981310s/16128105.jpg\n9931,10940958,10940958,15858219,45,718154959,9780718154950.0,Nicci French,2011.0,Blue Monday,\"Blue Monday (Frieda Klein, #1)\",eng,3.77,8535,11260,1112,224,697,3068,4765,2506,https://images.gr-assets.com/books/1377323978l/10940958.jpg,https://images.gr-assets.com/books/1377323978s/10940958.jpg\n9933,1197646,1197646,2988563,13,140565337,9780140565330.0,Tedd Arnold,1997.0,Parts,\"Parts (Parts, #1)\",eng,4.25,10608,10766,298,156,411,1699,2783,5717,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348332418l/1197646.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9934,117835,117835,113438,7,967089735,9780967089740.0,Sally Fallon Morell,1995.0,Nourishing Traditions:  The Cookbook that Challenges Politically Correct Nutrition and the Diet Dictocrats,Nourishing Traditions: The Cookbook That Challenges Politically Correct Nutrition and the Diet Dictocrats,,4.23,9534,9780,596,161,365,1385,3069,4800,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1349063789l/117835.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9935,37300,37300,4077284,38,425204308,9780425204310.0,John Sandford,2005.0,Broken Prey,\"Broken Prey (Lucas Davenport, #16)\",eng,4.15,10827,12330,429,41,201,2126,5503,4459,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388245666l/37300.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9936,29948,29948,172963,45,61148482,9780061148480.0,Richard Bach,1982.0,The Bridge Across Forever: A True Love Story,The Bridge Across Forever: A True Love Story,,3.88,8239,9267,395,268,675,2101,3042,3181,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1427935854l/29948.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9937,13010211,13010211,18171867,22,1596435712,9781596435710.0,Caragh M. O'Brien,2012.0,Promised,\"Promised (Birthmarked, #3)\",en-US,3.77,11766,12884,1260,256,1098,3565,4392,3573,https://images.gr-assets.com/books/1330546217l/13010211.jpg,https://images.gr-assets.com/books/1330546217s/13010211.jpg\n9938,18089900,18089900,25337586,19,61779768,9780061779760.0,Christopher Moore,2014.0,The Serpent of Venice,\"The Serpent of Venice (The Fool, #2)\",eng,3.86,8573,10356,1432,209,521,2542,4296,2788,https://images.gr-assets.com/books/1376934009l/18089900.jpg,https://images.gr-assets.com/books/1376934009s/18089900.jpg\n9940,53168,53168,3214256,34,316012386,9780316012390.0,Darren Shan,2005.0,Demon Thief,\"Demon Thief (The Demonata, #2)\",,4.14,10535,11733,485,94,514,2140,3858,5127,https://images.gr-assets.com/books/1344268460l/53168.jpg,https://images.gr-assets.com/books/1344268460s/53168.jpg\n9941,61266,61266,59587,72,8807813025,9788807813020.0,Alessandro Baricco,1994.0,Novecento,Novecento. Un monologo,ita,4.19,9991,11676,575,121,448,1784,4052,5271,https://images.gr-assets.com/books/1346326152l/61266.jpg,https://images.gr-assets.com/books/1346326152s/61266.jpg\n9942,16074758,16074758,21869436,18,1442486597,9781442486590.0,\"Abigail Haas, Abby McDonald\",2013.0,Dangerous Girls,Dangerous Girls,eng,4.14,10439,12970,2631,203,553,2029,4567,5618,https://images.gr-assets.com/books/1356513050l/16074758.jpg,https://images.gr-assets.com/books/1356513050s/16074758.jpg\n9944,16158498,16158498,21998914,26,670026557,9780670026560.0,Adam M. Grant,2013.0,Give and Take: A Revolutionary Approach to Success,Give and Take: A Revolutionary Approach to Success,eng,4.06,9918,11262,839,217,489,2051,4144,4361,https://images.gr-assets.com/books/1356136579l/16158498.jpg,https://images.gr-assets.com/books/1356136579s/16158498.jpg\n9946,3559,3559,304487,31,385413726,9780385413720.0,Thomas L. Friedman,1989.0,From Beirut to Jerusalem,From Beirut to Jerusalem,en-US,4.1,8057,8600,704,83,282,1457,3667,3111,https://images.gr-assets.com/books/1328295618l/3559.jpg,https://images.gr-assets.com/books/1328295618s/3559.jpg\n9947,21393526,21393526,40690062,19,62320521,9780062320520.0,Maria Dahvana Headley,2015.0,Magonia,\"Magonia (Magonia, #1)\",eng,3.6,12510,13652,2910,577,1440,3881,4772,2982,https://images.gr-assets.com/books/1413479866l/21393526.jpg,https://images.gr-assets.com/books/1413479866s/21393526.jpg\n9948,263173,263173,255111,19,1421511304,9781421511310.0,\"Matsuri Hino, Tomo Kimura\",2005.0,ヴァンパイア騎士 2,\"Vampire Knight, Vol. 2 (Vampire Knight, #2)\",eng,4.25,13455,13704,300,178,489,2244,3606,7187,https://images.gr-assets.com/books/1329259095l/263173.jpg,https://images.gr-assets.com/books/1329259095s/263173.jpg\n9949,1824,1824,819599,53,743270606,9780743270600.0,Jon Ronson,2004.0,The Men Who Stare at Goats,The Men Who Stare at Goats,en-US,3.58,8245,10662,1025,235,976,3538,4152,1761,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437183381l/1824._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9950,23341855,23341855,42901335,14,145553322X,9781455533220.0,Kristen Ashley,2015.0,Ride Steady,\"Ride Steady (Chaos, #3)\",eng,4.45,15388,19405,2136,112,324,1779,5731,11459,https://images.gr-assets.com/books/1424262600l/23341855.jpg,https://images.gr-assets.com/books/1424262600s/23341855.jpg\n9951,2227371,2227371,1008826,76,61431621,9780061431620.0,Joanne Harris,2007.0,The Lollipop Shoes,\"The Girl with No Shadow (Chocolat, #2)\",en-US,3.8,8565,12931,1483,163,894,3478,5204,3192,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1437862062l/2227371._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9952,76248,76248,73768,16,051703817X,9780517038180.0,William S. Baring-Gould,1962.0,\"Sherlock Holmes of Baker Street, the life of the world’s first consulting detective.\",Sherlock Holmes of Baker Street: A Life of the World's First Consulting Detective,,4.4,8642,8719,36,101,169,1009,2269,5171,https://images.gr-assets.com/books/1355676228l/76248.jpg,https://images.gr-assets.com/books/1355676228s/76248.jpg\n9953,22062202,22062202,41392342,14,451474473,9780451474480.0,Anne Bishop,2016.0,Marked in Flesh,\"Marked in Flesh (The Others, #4)\",eng,4.31,11056,13823,1628,67,307,1759,4852,6838,https://images.gr-assets.com/books/1438874868l/22062202.jpg,https://images.gr-assets.com/books/1438874868s/22062202.jpg\n9954,13129925,13129925,18306052,22,1594745269,9781594745260.0,\"Grady Hendrix, Michael Rogalski\",2014.0,Horrorstör,Horrorstör,,3.59,10313,12003,2529,261,1057,3944,4854,1887,https://images.gr-assets.com/books/1414314217l/13129925.jpg,https://images.gr-assets.com/books/1414314217s/13129925.jpg\n9955,13065327,13065327,18230950,25,802734375,9780802734370.0,Simone Elkeles,2013.0,Wild Cards,\"Wild Cards (Wild Cards, #1)\",eng,3.95,13954,15400,1514,406,965,3331,5038,5660,https://images.gr-assets.com/books/1420836321l/13065327.jpg,https://images.gr-assets.com/books/1420836321s/13065327.jpg\n9956,31975,31975,32190,15,078511677X,9780785116780.0,\"Joss Whedon, John Cassaday\",2005.0,\"Astonishing X-Men, Volume 2: Dangerous\",\"Astonishing X-Men, Volume 2: Dangerous\",eng,4.19,9796,10006,261,66,279,1631,3709,4321,https://images.gr-assets.com/books/1500464823l/31975.jpg,https://images.gr-assets.com/books/1500464823s/31975.jpg\n9959,13178410,13178410,18358443,10,,,Hugh Howey,2011.0,Wool 2: Proper Gauge,\"Proper Gauge (Wool, #2)\",eng,4.15,10140,10268,536,54,312,1713,4128,4061,https://images.gr-assets.com/books/1323761382l/13178410.jpg,https://images.gr-assets.com/books/1323761382s/13178410.jpg\n9960,127970,127970,1066433,26,739416383,9780739416390.0,Terry Ryan,2001.0,\"The Prize Winner of Defiance, Ohio: How My Mother Raised 10 Kids on 25 Words or Less\",\"The Prize Winner of Defiance, Ohio: How My Mother Raised 10 Kids on 25 Words or Less\",,3.9,9380,11151,1849,118,498,2739,4816,2980,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561961260l/127970.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9961,6872,6872,1084689,73,679749845,9780679749840.0,Ian McEwan,1981.0,The Comfort of Strangers,The Comfort of Strangers,eng,3.44,8843,10431,902,423,1232,3623,3627,1526,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388197584l/6872.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9962,52588,52588,1135362,6,1580050751,9781580050750.0,\"Inga Muscio, Betty Dodson\",1998.0,Cunt: A Declaration of Independence,Cunt: A Declaration of Independence,en-GB,3.88,8203,8627,841,279,676,1864,2805,3003,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388333495l/52588.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9963,92918,92918,2960496,36,380795272,9780380795280.0,Raymond E. Feist,1998.0,Krondor: The Betrayal,\"Krondor: The Betrayal (The Riftwar Legacy, #1)\",en-US,3.81,10631,11472,128,175,807,3254,4053,3183,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923712l/92918.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9964,17901125,17901125,25076284,36,1408857391,9781408857400.0,Samantha Shannon,2015.0,The Mime Order,\"The Mime Order (The Bone Season, #2)\",eng,4.2,11042,13266,1961,86,369,1947,5279,5585,https://images.gr-assets.com/books/1421696237l/17901125.jpg,https://images.gr-assets.com/books/1421696237s/17901125.jpg\n9965,1011632,1011632,2851045,34,60182989,9780060182980.0,Clive Barker,2007.0,Mister B. Gone,Mister B. Gone,eng,3.32,9535,10528,932,816,1666,3378,2692,1976,https://images.gr-assets.com/books/1429998358l/1011632.jpg,https://images.gr-assets.com/books/1429998358s/1011632.jpg\n9966,9864,9864,3279710,72,312254997,9780312255000.0,Salman Rushdie,1999.0,The Ground Beneath Her Feet,The Ground Beneath Her Feet,eng,3.77,8673,9541,535,264,803,2450,3360,2664,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386923893l/9864.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9967,5295735,5295735,7087982,23,,,\"Naguib Mahfouz, نجيب محفوظ\",1977.0,ملحمة الحرافيش,الحرافيش,ara,4.34,8572,10079,1216,139,297,1174,2859,5610,https://images.gr-assets.com/books/1347915841l/5295735.jpg,https://images.gr-assets.com/books/1347915841s/5295735.jpg\n9968,554674,554674,548132,34,60005777,9780060005770.0,Maria Augusta von Trapp,1949.0,The Story of the Trapp Family Singers,The Story of the Trapp Family Singers,,3.94,9027,10234,599,297,518,2345,3406,3668,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348398085l/554674.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9969,23013953,23013953,40087473,67,1771641495,9781771641490.0,\"Giulia Enders, Jill Enders\",2014.0,Darm mit Charme,Gut: The Inside Story of Our Body’s Most Underrated Organ,eng,3.99,5973,12156,1394,92,452,2588,5329,3695,https://images.gr-assets.com/books/1435168687l/23013953.jpg,https://images.gr-assets.com/books/1435168687s/23013953.jpg\n9970,6131786,6131786,6310341,24,676979564,9780676979560.0,Ami McKay,2011.0,The Virgin Cure,The Virgin Cure,,3.74,9635,10883,1178,100,676,3218,4813,2076,https://images.gr-assets.com/books/1320443329l/6131786.jpg,https://images.gr-assets.com/books/1320443329s/6131786.jpg\n9972,4984,4984,6558445,28,99282968,9780099282970.0,Kurt Vonnegut Jr.,1999.0,Bagombo Snuff Box,Bagombo Snuff Box,en-GB,3.72,7407,8597,316,78,548,2817,3430,1724,https://images.gr-assets.com/books/1327353727l/4984.jpg,https://images.gr-assets.com/books/1327353727s/4984.jpg\n9973,849380,849380,4370,52,609805797,9780609805790.0,\"John M. Gottman, Nan Silver\",1999.0,The Seven Principles for Making Marriage Work: A Practical Guide from the Country's Foremost Relationship Expert,The Seven Principles for Making Marriage Work: A Practical Guide from the Country's Foremost Relationship Expert,,4.19,8868,10017,749,126,334,1604,3446,4507,https://images.gr-assets.com/books/1320521960l/849380.jpg,https://images.gr-assets.com/books/1320521960s/849380.jpg\n9974,116494,116494,827585,38,553153382,9780553153380.0,Lois Lowry,1978.0,Anastasia Krupnik,\"Anastasia Krupnik (Anastasia Krupnik, #1)\",,3.89,11914,12519,389,440,603,3062,4185,4229,https://images.gr-assets.com/books/1476942137l/116494.jpg,https://images.gr-assets.com/books/1476942137s/116494.jpg\n9975,613991,613991,835285,40,1857236653,9781857236650.0,David Gemmell,1985.0,The King Beyond the Gate,\"The King Beyond the Gate (The Drenai Saga, #2)\",eng,4.12,9305,10307,149,49,249,1968,4174,3867,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348566494l/613991.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9977,202948,202948,851165,55,804113475,9780804113470.0,Anne Tyler,1995.0,Ladder of Years,Ladder of Years,,3.72,11209,12229,949,214,854,3714,4827,2620,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388451272l/202948.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9978,162332,162332,880874,70,679750150,9780679750150.0,\"Yukio Mishima, John Nathan\",1963.0,午後の曳航 [Gogo no eikō],The Sailor Who Fell from Grace with the Sea,en-US,3.89,8810,10541,755,142,590,2414,4551,2844,https://images.gr-assets.com/books/1327629352l/162332.jpg,https://images.gr-assets.com/books/1327629352s/162332.jpg\n9979,16951,16951,891697,57,312940661,9780312940670.0,Wilbur Smith,1964.0,When the Lion Feeds,\"When the Lion Feeds (Courtney, #1)\",eng,4.16,8440,9581,322,64,268,1648,3732,3869,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388892414l/16951.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9980,946899,946899,88345,11,764200739,9780764200730.0,Deeanne Gist,2006.0,The Measure of a Lady,The Measure of a Lady,en-US,3.94,9583,9963,489,187,608,2337,3355,3476,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441841061l/946899._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9981,106312,106312,29083,58,739455834,9780739455840.0,Jeffery Deaver,2005.0,The Twelfth Card,\"The Twelfth Card (Lincoln Rhyme, #6)\",eng,3.98,10188,12134,495,72,390,2874,5155,3643,https://images.gr-assets.com/books/1328407138l/106312.jpg,https://images.gr-assets.com/books/1328407138s/106312.jpg\n9982,12444298,12444298,21900571,1,385344422,9780385344420.0,Karen Marie Moning,2016.0,Feverborn,\"Feverborn (Fever, #8)\",eng,4.18,11570,14194,1891,179,521,2308,4779,6407,https://images.gr-assets.com/books/1435195536l/12444298.jpg,https://images.gr-assets.com/books/1435195536s/12444298.jpg\n9983,8539798,8539798,8097499,16,2849659266,9782849659270.0,Kazue Kato,2009.0,青の祓魔師 2,\"Blue exorcist, Tome 2\",fre,4.48,8972,9859,153,32,152,1025,2479,6171,https://images.gr-assets.com/books/1278403940l/8539798.jpg,https://images.gr-assets.com/books/1278403940s/8539798.jpg\n9984,764165,764165,1824318,39,140255087,9780140255090.0,Peter Matthiessen,1978.0,The Snow Leopard,The Snow Leopard,eng,4.12,8502,9532,686,145,406,1586,3393,4002,https://images.gr-assets.com/books/1309211772l/764165.jpg,https://images.gr-assets.com/books/1309211772s/764165.jpg\n9985,19688,19688,17028947,24,425176932,9780425176930.0,\"Steve Perry, Tom Clancy, Steve Pieczenik\",2000.0,Tom Clancy's Net Force: Breaking Point,\"Breaking Point (Tom Clancy's Net Force, #4)\",eng,3.69,7693,7825,26,268,684,2349,2456,2068,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1390174862l/19688.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9986,183092,183092,176939,16,310257689,9780310257680.0,Terri Blackstock,2006.0,Night Light: A Restoration Novel,Night Light (Restoration #2),,4.35,8471,8862,218,96,172,1115,2658,4821,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1433648319l/183092._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9987,8087038,8087038,12823536,29,312651198,9780312651190.0,Iris Johansen,2010.0,Chasing The Night,\"Chasing The Night (Eve Duncan, #11; Catherine Ling, #1)\",en-US,4.12,10129,10964,411,113,331,2127,3957,4436,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1439520031l/8087038._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9988,129237,129237,1383130,44,674017722,9780674017730.0,John Rawls,1971.0,A Theory of Justice,A Theory of Justice,eng,3.91,8472,9108,168,234,607,2001,3171,3095,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1348730096l/129237.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9989,13489518,13489518,19028216,9,,2940014746150.0,Quinn Loftis,2012.0,Out of the Dark ,\"Out of the Dark (The Grey Wolves, #4)\",eng,4.5,11994,13614,595,72,229,1263,3280,8770,https://images.gr-assets.com/books/1334785691l/13489518.jpg,https://images.gr-assets.com/books/1334785691s/13489518.jpg\n9990,294081,294081,14081,40,140143912,9780140143910.0,Oscar Hijuelos,1989.0,The Mambo Kings Play Songs of Love,The Mambo Kings Play Songs of Love,eng,3.68,9107,9776,421,374,836,2692,3513,2361,https://images.gr-assets.com/books/1330072994l/294081.jpg,https://images.gr-assets.com/books/1330072994s/294081.jpg\n9991,101094,101094,1198275,37,385425139,9780385425130.0,Ben Okri,1991.0,The Famished Road,The Famished Road,eng,3.73,8251,8875,586,465,815,2046,2895,2654,https://images.gr-assets.com/books/1344396715l/101094.jpg,https://images.gr-assets.com/books/1344396715s/101094.jpg\n9992,13616278,13616278,19217996,26,575113294,9780575113300.0,Miles  Cameron,2012.0,The Red Knight,\"The Red Knight (The Traitor Son Cycle, #1)\",eng,4.12,8556,10102,742,232,491,1375,3712,4292,https://images.gr-assets.com/books/1348037761l/13616278.jpg,https://images.gr-assets.com/books/1348037761s/13616278.jpg\n9993,4936457,4936457,5002120,27,224079948,9780224079940.0,Ian Mortimer,2008.0,The Time-Traveller's Guide to Medieval England: A Handbook for Visitors to the Fourteenth Century,The Time Traveller's Guide to Medieval England: A Handbook for Visitors to the Fourteenth Century,eng,3.99,9824,12115,970,236,521,2497,4790,4071,https://images.gr-assets.com/books/1328167619l/4936457.jpg,https://images.gr-assets.com/books/1328167619s/4936457.jpg\n9994,4769651,4769651,4834466,2,810983559,9780810983560.0,\"Michael Buckley, Peter Ferguson\",2009.0,\"The Everafter War (The Sisters Grimm, #7)\",\"The Everafter War (The Sisters Grimm, #7)\",eng,4.32,12493,12965,455,110,289,1745,3989,6832,https://images.gr-assets.com/books/1388278230l/4769651.jpg,https://images.gr-assets.com/books/1388278230s/4769651.jpg\n9995,15613,15613,2764239,199,1416523723,9781416523730.0,Herman Melville,1924.0,\"Billy Budd, Sailor\",\"Billy Budd, Sailor\",eng,3.09,10866,12110,681,1478,2225,3805,2985,1617,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1441739909l/15613._SY475_.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9996,7130616,7130616,7392860,19,441019455,9780441019460.0,Ilona Andrews,2010.0,Bayou Moon,\"Bayou Moon (The Edge, #2)\",eng,4.09,17204,18856,1180,105,575,3538,7860,6778,https://images.gr-assets.com/books/1307445460l/7130616.jpg,https://images.gr-assets.com/books/1307445460s/7130616.jpg\n9997,208324,208324,1084709,19,067973371X,9780679733710.0,Robert A. Caro,1990.0,Means of Ascent ,\"Means of Ascent (The Years of Lyndon Johnson, #2)\",eng,4.25,12582,12952,395,303,551,1737,3389,6972,https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1561669087l/208324.jpg,https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png\n9998,77431,77431,2393986,60,039330762X,9780393307630.0,Patrick O'Brian,1977.0,The Mauritius Command,The Mauritius Command,eng,4.35,9421,10733,374,11,111,1191,4240,5180,https://images.gr-assets.com/books/1455373531l/77431.jpg,https://images.gr-assets.com/books/1455373531s/77431.jpg\n9999,8565083,8565083,13433613,7,61711527,9780061711530.0,Peggy Orenstein,2011.0,Cinderella Ate My Daughter: Dispatches from the Frontlines of the New Girlie-Girl Culture,Cinderella Ate My Daughter: Dispatches from the Frontlines of the New Girlie-Girl Culture,eng,3.65,11279,11994,1988,275,1002,3765,4577,2375,https://images.gr-assets.com/books/1279214118l/8565083.jpg,https://images.gr-assets.com/books/1279214118s/8565083.jpg\n10000,8914,8914,11817,31,375700455,9780375700450.0,John Keegan,1998.0,The First World War,The First World War,,4.0,9162,9700,364,117,345,2031,4138,3069,https://images.gr-assets.com/books/1403194704l/8914.jpg,https://images.gr-assets.com/books/1403194704s/8914.jpg\n"
  },
  {
    "path": "templates/account/login.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load i18n %}\n{% load static %}\n{% load account socialaccount %}\n{% get_providers as socialaccount_providers %}\n\n{% block title %}\nLogin\n{% endblock title %}\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/login.css' %}\">\n{% endblock head %}\n\n{% block main %}\n<div class=\"container account-block \">\n    <div class=\"h-100 row\">\n        <div class=\"h-100 col-12 col-sm-12 col-xl-8 signin-block\">\n            <h3 class=\"welcome\">Welcome Back!</h3>\n            <form method=\"POST\" action=\"{% url 'account_login' %}\">\n                {% csrf_token %}\n                <div class=\"form-group\">\n                    <!-- <label for=\"id_login\">Username</label><br> -->\n                    {{ form.login }}<br><br>\n                    {% if redirect_field_value %}\n                    <input type=\"hidden\" name=\"{{ redirect_field_name }}\" value=\"{{ redirect_field_value }}\" />\n                    {% endif %}\n                    <!-- <label for=\"id_password\"> Password</label><br> -->\n                    {{ form.password }}<br>\n                    <a class=\"forgotpassword\" href=\"{% url 'account_reset_password' %}\">{% trans \"Forgot Password?\" %}</a>\n                    <br>\n                    {% if form.errors %}\n                    {% for field in form %}\n                    {% for error in field.errors %}\n                    <br><strong>{{ error|escape }}</strong><br>\n                    {% endfor %}\n                    {% endfor %}\n                    {% for error in form.non_field_errors %}\n                    <br><strong>{{ error|escape }}</strong><br>\n                    {% endfor %}\n                    {% endif %}\n                    <button class=\"loginbutton primaryAction\" type=\"submit\">{% trans \"Sign In\" %}</button>\n                    <br>\n                </div>\n            </form>\n            <a href=\"{% provider_login_url 'google' %}\"><button class=\"googlebutton\"><i class=\"fa fa-google fa-x\"\n                aria-hidden=\"true\"></i> Sign In With Google</button></a>\n\n        </div>\n        <div class=\"h-100 hidden-sm col-xl-4 img-block mw-100\" style=\"background-image : url('{% static \"mainapp/png/BookSignUp.webp\" %}')\">\n            <a class=\"btn-bot\" href=\"{% url 'account_signup' %}\">SIGN UP</a>\n        </div>\n    </div>\n</div>\n{% endblock main %}"
  },
  {
    "path": "templates/account/password_reset.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load static %}\n{% load i18n %}\n{% load account %}\n\n{% block title %}\nPassword Reset\n{% endblock title %}\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/password_reset.css' %}\">\n{% endblock head %}\n\n{% block main %}\n\n    <div class=\"text-center heading\">{% trans \"Password Reset\" %}</div>\n    {% if user.is_authenticated %}\n    {% include \"account/snippets/already_logged_in.html\" %}\n    {% endif %}\n\n    <p div class=\"content\">{% trans \"Forgotten your password?\"  %}</p>\n   <p div class=\"content head2\">{% trans \"Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it.\" %}</p>\n\n    <form class=\"form-content\" method=\"POST\" action=\"{% url 'account_reset_password' %}\" class=\"password_reset\">\n        {% csrf_token %}\n        {{ form.as_p }}\n        <input class=\"resetButton\" type=\"submit\" value=\"{% trans 'Reset My Password' %}\" />\n    </form>\n\n    <p  class=\"content head3\">{% blocktrans %}Please contact us if you have any trouble resetting your password.{% endblocktrans %}</p>\n{% endblock main %}"
  },
  {
    "path": "templates/account/password_reset_done.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load static %}\n\n{% load i18n %}\n{% load account %}\n\n{% block title %}\nPassword Reset Done\n{% endblock title%}\n\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/password_reset.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n    <div class=\"text-center heading\" style=\"padding-top:5%\">{% trans \"Password Reset\" %}</div>\n    \n    {% if user.is_authenticated %}\n    {% include \"account/snippets/already_logged_in.html\" %}\n    {% endif %}\n    \n    <p class=\"content reset\">{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>\n{% endblock main %}"
  },
  {
    "path": "templates/account/password_reset_from_key.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load static %}\n{% load i18n %}\n\n{% block title %}\nChange Password\n{% endblock title%}\n\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/password_reset.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n<div class=\"main-content text-center\">\n    <div class=\"heading\">{% if token_fail %}{% trans \"Bad Token\" %}{% else %}{% trans \"Change Password\" %}{% endif %}</div>\n\n    {% if token_fail %}\n        {% url 'account_reset_password' as passwd_reset_url %}\n        <p>{% blocktrans %}The password reset link was invalid, possibly because it has already been used.  Please request a <a href=\"{{ passwd_reset_url }}\">new password reset</a>.{% endblocktrans %}</p>\n    {% else %}\n        {% if form %}\n            <form class=\"pass-form\" method=\"POST\" action=\"{{ action_url }}\">\n                {% csrf_token %}\n                {{ form.as_p }}\n                <input class=\"resetButton\" type=\"submit\" name=\"action\" value=\"{% trans 'change password' %}\"/>\n            </form>\n        {% else %}\n            <p>{% trans 'Your password is now changed.' %}</p>\n        {% endif %}\n    {% endif %}\n</div>\n{% endblock main %}"
  },
  {
    "path": "templates/account/password_reset_from_key_done.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load static %}\n{% load i18n %}\n\n{% block title %}\nChange Password\n{% endblock title %}\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/password_reset.css' %}\">\n{% endblock head %}\n\n{% block main %}\n    <div class=\"content\" style=\"padding-top:3%\">\n    Your password is now changed.\n    </div>\n   <div class=\"content done\" style=\"padding-bottom:25%\" > Click on <strong><a href='/'>Kitabe</a></strong> to continue your reading journey again !\n    </div> \n{% endblock main%}"
  },
  {
    "path": "templates/account/signup.html",
    "content": "{% extends 'mainapp/layout.html' %}\n{% load i18n %}\n{% load static %}\n{% load account socialaccount %}\n{% get_providers as socialaccount_providers %}\n\n{% block title %}\nSign Up\n{% endblock title %}\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/signup.css' %}\">\n{% endblock head %}\n\n{% block main %}\n<div class=\"container account-block \">\n    <div class=\"h-100 row\">\n        <div class=\"h-100 col-12 col-sm-12 col-xl-8 signup-block\">\n            <h3 class=\"welcome\">Welcome!</h3>\n            <form method=\"POST\" action=\"{% url 'account_signup' %}\">\n                {% csrf_token %}\n                <div class=\"form-group\">\n                    {% if redirect_field_value %}\n                    <input type=\"hidden\" name=\"{{ redirect_field_name }}\" value=\"{{ redirect_field_value }}\" />\n                    {% endif %}\n                    {{ form.email }}\n                    <br><br>\n                    {{ form.username }}\n                    <br><br>\n                    {{ form.password1 }}\n                    <br><br>\n                    {{ form.password2 }}\n                    <div class=\"error_div\">\n                    {% if form.errors %}\n                    {% for field in form %}\n                    {% for error in field.errors %}\n                    <strong>{{ error|escape }}</strong>\n                    {% endfor %}\n                    {% endfor %}\n                    {% for error in form.non_field_errors %}\n                    <strong>{{ error|escape }}</strong>\n                    {% endfor %}\n                    <br>\n                    {% endif %}\n                    <button class=\"signupbutton\" type=\"submit\">{% trans \"Sign Up\" %}</button>\n                    <br>\n                    </div>\n                </div>\n\n            </form>\n            <a href=\"{% provider_login_url 'google' %}\"><button class=\"googlebutton\"><i class=\"fa fa-google fa-x\"\n                aria-hidden=\"true\"></i> Sign Up With Google</button></a>\n\n        </div>\n        <div class=\"h-100 hidden-sm col-xl-4 img-block mw-100\" style=\"background-image : url('{% static \"mainapp/png/BookSignIn.webp\" %}')\">\n            <a class=\"btn-bot\" href=\"{% url 'account_login' %}\">SIGN IN</a>\n        </div>\n    </div>\n</div>\n{% endblock main %}"
  },
  {
    "path": "templates/mainapp/error_handler.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n{% load static %}\n<head>\n\t<!-- Required meta tags -->\n\t<meta charset=\"utf-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n\t<!-- Bootstrap CSS -->\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css\" rel=\"stylesheet\"\n\t\tintegrity=\"sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6\" crossorigin=\"anonymous\">\n\n\t<title>404 page not found</title>\n</head>\n<style>\n\tbody {\n\t\tbackground-color: #f9ce84;\n\t\tcolor: #d7722c;\n\t}\n\n\t#mygif img {\n\t\tmargin-top: 5vh;\n\t\theight: 80vh;\n\t\twidth: 80vh;\n\t}\n\n\t.page_404 {\n\t\tpadding: 10vh 0;\n\t}\n\n\t.four_zero_four_bg h1 {\n\t\tfont-size: 18rem;\n\t\tfont-family: \"Pacifico\", cursive;\n\t\tmargin-bottom: 8vh;\n\t\tfont-weight: 900;\n\t}\n\n\t.four_zero_four_bg h3 {\n\t\tfont-size: 80px;\n\t\tfont-family: \"Sora\", sans-serif;\n\t\tfont-weight: 900;\n\t}\n\n\t.link_404 {\n\t\tcolor: #fff !important;\n\t\tpadding: 10px 20px;\n\t\tbackground: #74603d;\n\t\tmargin: 20px 0;\n\t\tborder-radius: 20px;\n\t\tborder-bottom: 4px solid #eaaa3c;\n\t\tfont-family: \"Sora\", sans-serif;\n\t\tdisplay: inline-block;\n\t\toutline: none;\n\t\tfont-weight: 900;\n\t}\n\n\t.contant_box_404 {\n\t\tmargin-top: -50px;\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\t\tfont-family: \"Sora\", sans-serif;\n\t}\n\n\tp {\n\t\tfont-weight: 800;\n\t\tfont-family: \"Sora\", sans-serif;\n\t}\n\n\t.h2,\n\th2 {\n\t\tfont-weight: 900;\n\t\tfont-family: \"Sora\", sans-serif;\n\t}\n\n\t@media screen and (max-width: 992px) {\n\t\t.four_zero_four_bg h1 {\n\t\t\tfont-size: 9rem;\n\t\t\tmargin-bottom: 5vh;\n\t\t}\n\n\t\t#mygif img {\n\t\t\tmargin-top: 1vh;\n\t\t\theight: 50vh;\n\t\t\twidth: 50vh;\n\t\t\tmargin-left: 5vw;\n\t\t}\n\n\t\t.page_404 {\n\t\t\twidth: 97vw;\n\t\t\tpadding: 0vh 0;\n\t\t}\n\n\t\t.link_404 {\n\t\t\tmargin: 1px 0;\n\t\t}\n\t}\n</style>\n\n<body>\n\t<div class=\"container-fluid\">\n\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col col-lg-6 col-12 \">\n\t\t\t\t<div id=\"mygif\">\n\t\t\t\t\t<img src=\"{% static 'mainapp/gif/book.gif' %}\">\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div class=\"col col-lg-6 col-12\">\n\t\t\t\t<section class=\"page_404\">\n\t\t\t\t\t<div class=\"container\">\n\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t<div class=\"col-sm-12 \">\n\t\t\t\t\t\t\t\t<div class=\"col-sm-10 col-sm-offset-1  text-center\">\n\t\t\t\t\t\t\t\t\t<div class=\"four_zero_four_bg\">\n\t\t\t\t\t\t\t\t\t\t<h1 class=\"text-center \">404</h1>\n\n\n\t\t\t\t\t\t\t\t\t</div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"contant_box_404\">\n\t\t\t\t\t\t\t\t\t\t<h3 class=\"h2\">\n\t\t\t\t\t\t\t\t\t\t\tLook like you're lost\n\t\t\t\t\t\t\t\t\t\t</h3>\n\n\t\t\t\t\t\t\t\t\t\t<p>The page you are looking for is not available!</p>\n\n\t\t\t\t\t\t\t\t\t\t<a href=\"{% url 'index' %}\" class=\"link_404\">Go to Home</a>\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\n\n\t<!-- Optional JavaScript; choose one of the two! -->\n\n\t<!-- Option 1: Bootstrap Bundle with Popper -->\n\t<script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js\"\n\t\tintegrity=\"sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf\"\n\t\tcrossorigin=\"anonymous\"></script>\n\n</body>\n\n</html>"
  },
  {
    "path": "templates/mainapp/explore.html",
    "content": "{% extends \"mainapp/layout.html\" %}\n{% load static %}\n\n{% block title %}\nExplore\n{% endblock title %}\n\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/explore.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n\n<div class=\"large-screen\" style=\"width:1200px; margin:0 auto;\">\n    <div class=\"centre, card-deck\">\n        {% for book in book %}\n        <div class=\"card col-sm-12 col-lg-3 \" style=\"width: 300px;\">\n            <div class=\"row no-gutters\">\n                <img class=\" card-img  mt-4 \" src=\"{{book.image_url}}\" alt=\"book Card\">\n                \n                <div class=\"content text-center\">\n                    <div class=\"card-title\">{{ book.original_title|truncatechars:30 }}</div>\n                    <div class=\"card-text\">by {{ book.authors|truncatechars:25}}</div>\n                </div>\n            </div><br>\n            <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                data-book-id=\"{{ book.book_id }}\">More Details</a>\n            {% if user.is_authenticated %}\n            <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                onclick='rateBook(this)' onmouseout='finishRate(this)' data-book-id=\"{{ book.book_id }}\">\n                <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This\n                    Book\n                    </a>\n                </div>\n                <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n            </div>\n            {% else %}\n            <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n                </div>\n            </div>\n            {% endif %}\n        </div>\n        {% if forloop.counter|divisibleby:\"4\"  %}\n    </div>\n    <div class=\"card-deck  \">\n        {% endif %}\n        {% endfor %}\n    </div>\n</div>\n\n<!------------------------------------------- for small screens ------------------------------------------------------------------------>\n<div class=\"small-screen\">\n    <div id=\"demo\" class=\"carousel slide\" data-ride=\"carousel\">\n        <!------------------------------------- carousel first row -------------------------->\n        <div class=\" carousel-inner \" class=\"ml-auto\">\n            <div class=\"card-deck\">\n                <div class=\"carousel-item active\">\n                    {% for book in book|slice:\":50\"%}\n                    <div class=\"card col-sm-12 col-lg-3 \" style=\"width: 300px;\">\n                        <div class=\"row no-gutters\">\n                            <br>\n                            <img class=\" cover-img-size\" src=\"{{book.image_url}}\" alt=\"book Card\">\n                            \n                            <div class=\"card-body text-center\">\n                                <div class=\"card-title\">{{ book.original_title|truncatechars:30 }}</div>\n                                <div class=\"card-text\">by {{ book.authors|truncatechars:30}}</div>\n                            </div>\n                        </div><br>\n                        <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                            data-book-id=\"{{ book.book_id }}\">More Details</a>\n                        {% if user.is_authenticated %}\n                        <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                            onclick='rateBook(this)' onmouseout='finishRate(this)'\n                            data-book-id=\"{{ book.book_id }}\">\n                            <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\"\n                                    style=\"color:red\"></i> This Book\n                                </a>\n                            </div>\n                            <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n                        </div>\n                        {% else %}\n                        <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                            <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n                            </div>\n                        </div>\n                        {% endif %}\n                    </div>\n                    {% if forloop.counter|divisibleby:5 and forloop.counter > 0 and not forloop.last %}\n                </div>\n                <div class=\"carousel-item\">\n                    {% endif %} {% endfor %}\n                </div>\n            </div>\n        </div>\n        <a class=\"carousel-control-prev top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"prev\">\n            <span class=\"carousel-control-prev-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Previous</span>\n        </a>\n        <a class=\"carousel-control-next top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"next\">\n            <span class=\"carousel-control-next-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Next</span>\n        </a>\n    </div>\n\n\n    <div id=\"demo2\" class=\"carousel slide\" data-ride=\"carousel\">\n        <!------------------------------------- carousel first row -------------------------->\n        <div class=\" carousel-inner \" class=\"ml-auto\">\n            <div class=\"card-deck\">\n                <div class=\"carousel-item active\">\n                    {% for book in book|slice:\"50:100\" %}\n                    <div class=\"card col-sm-12 col-lg-3 \" style=\"width: 300px;\">\n                        <div class=\"row no-gutters\">\n                            <br>\n                            <img class=\" cover-img-size\" src=\"{{book.image_url}}\" alt=\"book Card\">\n                            \n                            <div class=\"card-body text-center\">\n                                <div class=\"card-title\">{{ book.original_title|truncatechars:30 }}</div>\n                                <div class=\"card-text\">by {{ book.authors|truncatechars:30}}</div>\n                            </div>\n                        </div><br>\n                        <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                            data-book-id=\"{{ book.book_id }}\">More Details</a>\n                        {% if user.is_authenticated %}\n                        <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                            onclick='rateBook(this)' onmouseout='finishRate(this)'\n                            data-book-id=\"{{ book.book_id }}\">\n                            <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\"\n                                    style=\"color:red\"></i> This Book\n                                </a>\n                            </div>\n                            <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n                        </div>\n                        {% else %}\n                        <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                            <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n                            </div>\n                        </div>\n                        {% endif %}\n                    </div>\n                    {% if forloop.counter|divisibleby:5 and forloop.counter > 0 and not forloop.last %}\n                </div>\n                <div class=\"carousel-item\">\n                    {% endif %} {% endfor %}\n                </div>\n            </div>\n        </div>\n        <a class=\"carousel-control-prev top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"prev\">\n            <span class=\"carousel-control-prev-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Previous</span>\n        </a>\n        <a class=\"carousel-control-next top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"next\">\n            <span class=\"carousel-control-next-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Next</span>\n        </a>\n    </div>\n\n    <div id=\"demo3\" class=\"carousel slide\" data-ride=\"carousel\">\n        <!------------------------------------- carousel first row -------------------------->\n        <div class=\" carousel-inner \" class=\"ml-auto\">\n            <div class=\"card-deck\">\n                <div class=\"carousel-item active\">\n                    {% for book in book|slice:\"100:150\" %}\n                    <div class=\"card col-sm-12 col-lg-3 \" style=\"width: 300px;\">\n                        <div class=\"row no-gutters\">\n                            <br>\n                            <img class=\" cover-img-size\" src=\"{{book.image_url}}\" alt=\"book Card\">\n                            \n                            <div class=\"card-body text-center\">\n                                <div class=\"card-title\">{{ book.original_title |truncatechars:30}}</div>\n                                <div class=\"card-text\">by {{ book.authors|truncatechars:30}}</div>\n                            </div>\n                        </div><br>\n                        <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                            data-book-id=\"{{ book.book_id }}\">More Details</a>\n                        {% if user.is_authenticated %}\n                        <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                            onclick='rateBook(this)' onmouseout='finishRate(this)'\n                            data-book-id=\"{{ book.book_id }}\">\n                            <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\"\n                                    style=\"color:red\"></i> This Book\n                                </a>\n                            </div>\n                            <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n                        </div>\n                        {% else %}\n                        <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                            <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n                            </div>\n                        </div>\n                        {% endif %}\n                    </div>\n                    {% if forloop.counter|divisibleby:5 and forloop.counter > 0 and not forloop.last %}\n                </div>\n                <div class=\"carousel-item\">\n                    {% endif %} {% endfor %}\n                </div>\n            </div>\n        </div>\n        <a class=\"carousel-control-prev top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"prev\">\n            <span class=\"carousel-control-prev-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Previous</span>\n        </a>\n        <a class=\"carousel-control-next top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"next\">\n            <span class=\"carousel-control-next-icon \" aria-hidden=\"true\"></span>\n            <span class=\"sr-only\">Next</span>\n        </a>\n    </div>\n</div>\n\n\n{% endblock main %}"
  },
  {
    "path": "templates/mainapp/genre.html",
    "content": "{% extends \"mainapp/layout.html\" %}\n{% load static %}\n\n{% block title  %}\nGenre\n{% endblock title %} \n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/genre.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n\n<h1 class=\"genre-head text-center pt-3 pb-3\">{{ genre }}</h1>\n\n\n<div class=\"card-deck \">\n    {% for book in genre_topbook %}\n\n    <div class=\"card col-sm-12 col-lg-3 \" style=\"width: 300px;\">\n        <div class=\"row no-gutters\">\n            <img class=\"card-img  mt-4 \" src=\"{{book.image_url}}\" alt=\"book Card\">\n            <div class=\"card-body text-center\">\n                <h5 class=\"card-title\">{{book.original_title|truncatechars:35}}</h5>\n                <p class=\"card-text\"><i>by {{book.authors|truncatechars:25}}</i></p>\n            </div>\n        </div><br>\n        <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n            data-book-id=\"{{ book.book_id }}\">More Details</a>\n        {% if user.is_authenticated %}\n        <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\" onclick='rateBook(this)' onmouseout='finishRate(this)'\n            data-book-id=\"{{ book.book_id }}\">\n            <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n            </div>\n            <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n        </div>\n        {% else %}\n        <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n            <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n            </div>\n        </div>\n        {% endif %}\n    </div>\n\n\n\n    {% if forloop.counter|divisibleby:\"4\"  %}\n</div>\n<div class=\"card-deck  \">\n    {% endif %}\n    {% endfor %}\n</div><!-- The final deck is closed here, outside the loop -->\n\n{% endblock main %}\n"
  },
  {
    "path": "templates/mainapp/index.html",
    "content": "{% extends \"mainapp/layout.html\" %}\n{% load static %}\n{% block title %} Home {% endblock title %}\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/index.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n\n<!-- preloader -->\n<div class=\"preloader-container\">\n    <div class=\"spinner\">\n        <div class=\"rec\">\n            <div class=\"rect1\"><img src=\"{% static 'mainapp/png/book.svg' %}\" alt=\"book\"></div>\n            <div class=\"rect2\"><img src=\"{% static 'mainapp/png/book.svg' %}\" alt=\"book\"></div>\n            <div class=\"rect3\"><img src=\"{% static 'mainapp/png/book.svg' %}\" alt=\"book\"></div>\n            <div class=\"rect4\"><img src=\"{% static 'mainapp/png/book.svg' %}\" alt=\"book\"></div>\n            <div class=\"rect5\"><img src=\"{% static 'mainapp/png/book.svg' %}\" alt=\"book\"></div>\n        </div>\n        <div class=\"stand\"> </div>\n    </div>\n</div>\n\n<!---------------------------------------------------------------   adding Carousel (sliding banner) -------------------------------------------------------------------->\n<!-- carousel 1 -->\n\n<!-- ################### carousel 1   -->\n\n<section class=\"banner\">\n    <div id=\"carouselExampleSlidesOnly\" class=\"carousel slide\" data-ride=\"carousel\">\n        <div class=\"carousel-inner\" role=\"listbox\">\n            \n            <div class=\"carousel-item active\">\n                <picture>\n                    <source class=\"banner-img\" media=\"(max-width: 710px)\" srcset=\"{% static 'mainapp/png/banner/Kitabe-about-small.webp' %}\">\n                    <source class=\"banner-img\" media=\"(max-width: 1700px)\" srcset=\"{% static 'mainapp/png/banner/Kitabe-about.webp' %}\">\n                    <img class=\"banner-img\"  src=\"{% static 'mainapp/png/banner/Kitabe-about.webp' %}\" alt=\"Slide\">\n                </picture>\n            </div>\n\n            <div class=\"carousel-item\">\n                <img class=\"d-block img-fluid banner-img\" src=\"{% static 'mainapp/png/banner/1.webp' %}\" alt=\"slide\">\n            </div>\n\n            <div class=\"carousel-item\">\n                <img class=\"d-block img-fluid banner-img\" src=\"{% static 'mainapp/png/banner/2.webp' %}\" alt=\"Slide\">\n            </div>\n\n            <div class=\"carousel-item\">\n                <img class=\"d-block img-fluid banner-img\" src=\"{% static 'mainapp/png/banner/3.webp' %}\" alt=\"Slide\">\n            </div>\n\n            <div class=\"carousel-item\">\n                <img class=\"d-block img-fluid banner-img\" src=\"{% static 'mainapp/png/banner/4.webp' %}\" alt=\"Slide\">\n            </div>\n\n        </div>\n        <!-- e carousel-inner -->\n\n    </div>\n    <!-- e carousel -->\n</section>\n<!-- e section -->\n\n<!---------------------------------------------------------------   Genre wise  -------------------------------------------------------------------->\n\n<section class=\"text-center \">\n    <div class=\"container genre-head\">\n        <div class=\"row\">\n\n            <div class=\"col heading-genre\">\n                Read Genre Wise\n            </div>\n            <!-- e col -->\n\n        </div>\n        <!-- e row -->\n    </div>\n    <!-- e container -->\n</section>\n<!-- e section -->\n\n\n\n\n<section class=\" genre-container\">\n    <div class=\"container py-4 py-lg-0 pb-lg-2 mb-5\">\n        <div class=\"row\">\n\n            <div id=\"carousel-2\" class=\"carousel slide\" data-ride=\"carousel\">\n\n                <ol class=\"carousel-indicators\">\n                    <li data-target=\"#carousel-2\" data-slide-to=\"0\" class=\"active\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"1\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"2\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"3\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"4\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"5\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"6\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"7\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"8\"></li>\n                    <li data-target=\"#carousel-2\" data-slide-to=\"9\"></li>\n                  </ol>\n\n                <div class=\"carousel-inner px-3 px-sm-0\" role=\"listbox\">\n            \n                    <div class=\"carousel-item active\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='art' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/1.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='biography' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/2.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='business' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/3.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Christian' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/6.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Comics' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/7.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Contemporary' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/8.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Cookbooks' %}\"><img class=\"genre-img genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/9.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Crime' %}\"><img class=\"genre-img genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/10.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Fantasy' %}\"><img class=\"genre-img genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/12.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Fiction' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/13.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='History' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/17.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Horror' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/18.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Manga' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/20.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Memoir' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/21.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Mystery' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/23.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Nonfiction' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/24.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Paranormal' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/25.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Philosophy' %}\"><img class=\"genre-img d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/26.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n\n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Poetry' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/27.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Psychology' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/28.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Religion' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/29.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Science' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/31.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Suspense' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/34.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Spirituality' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/35.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Sports' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/36.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Thriller' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/37.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                             <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Travel' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/38.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                      <div class=\"carousel-item\">\n                        <div class=\"row inner-row\">\n                            <div class=\"  col-lg-3 m-2\">\n                                <a href=\"{% url 'genre_books' genre='Classics' %}\"><img class=\"d-block img-fluid\"\n                                    src=\"{% static 'mainapp/png/genre/40.webp' %}\" alt=\"slide\"></a>\n                            </div>\n                        </div> \n                      </div>\n            \n                </div>\n                <!-- e carousel-inner -->\n                <a class=\"carousel-control-prev\" href=\"#carousel-2\" role=\"button\" data-slide=\"prev\">\n                    <span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\n                    <span class=\"sr-only\">prev</span>\n                </a>\n        \n                <a class=\"carousel-control-next\" href=\"#carousel-2\" role=\"button\" data-slide=\"next\">\n                    <span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\n                    <span class=\"sr-only\">next</span>\n                </a>\n            \n            </div>\n            <!-- e carousel -->\n\n        </div>\n        <!-- e row -->\n    </div>\n    <!-- e container -->\n</section>\n<!-- e section -->\n\n\n<!---------------------------------------------------------------   Top books this week -------------------------------------------------------------------->\n\n<section class=\"topbook-head text-center \">\n    <div class=\"container\">\n        <div class=\"row\">\n\n            <div class=\"col heading-genre\">\n                Popular Among Users\n            </div>\n            <!-- e col -->\n\n        </div>\n        <!-- e row -->\n    </div>\n    <!-- e container -->\n</section>\n<!-- e section -->\n\n<section class=\"bg-danger top-books pt-5 pb-5\">\n    <div class=\"container\">\n        <div id=\"demo\" class=\"carousel slide\" data-ride=\"carousel\">\n            <div class=\" carousel-inner \" class=\"ml-auto\">\n                <div class=\"carousel-item active\">\n                    {% for book in books %}\n                    <div class=\"card col-sm-6 col-md-6 col-md-3point9 mb-4\">\n                        <div class=\"row no-gutters\">\n                            <div class=\"col-sm-4\">\n                                <img class=\"card-img mr-4 mt-2 mb-2\" src=\"{{book.image_url}}\" alt=\"book Card\">\n                            </div>\n                            <div class=\"col-sm-8\">\n                                <div class=\"card-body\">\n                                    <div class=\"card-title\">{{book.original_title|truncatechars:30 }}</div>\n                                    <p class=\"card-text\"><i>by {{book.authors|truncatechars:15}}</i></p>\n                                </div>\n                            </div>\n                        </div>\n                        <br><br>\n                        <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                            data-book-id=\"{{ book.book_id }}\">More Details</a> {% if user.is_authenticated %}\n                        <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                            onclick='rateBook(this)' onmouseout='finishRate(this)' data-book-id=\"{{ book.book_id }}\">\n                            <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i>\n                                This Book</a>\n                            </div>\n                            <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n                        </div>\n                        {% else %}\n                        <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                            <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book\n                                </a>\n                            </div>\n                        </div>\n                        {% endif %}\n                    </div>\n                    {% if forloop.counter|divisibleby:3 and forloop.counter > 0 and not forloop.last %}\n                </div>\n                <div class=\"carousel-item \">\n                    {% endif %} {% endfor %}\n                </div>\n            </div>\n            <a class=\"carousel-control-prev top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"prev\">\n                <span class=\"carousel-control-prev-icon \" aria-hidden=\"true\"></span>\n                <span class=\"sr-only\">Previous</span>\n            </a>\n\n            <a class=\"carousel-control-next top-books-carousel\" href=\"#demo\" role=\"button\" data-slide=\"next\">\n                <span class=\"carousel-control-next-icon \" aria-hidden=\"true\"></span>\n                <span class=\"sr-only\">Next</span>\n            </a>\n        </div>\n    </div>\n</section>\n\n\n{% endblock main %} {% block script %}\n\n<script type=\"text/javascript\">\n\n/* preloader */\n$(window).on('load', function () {\n        if (readCookie('referer') == null) {\n            $('.preloader-container').delay(700).fadeOut('slow');\n            createCookie('referer', 1, 0);\n\n        }\n\n        if (readCookie('referer') != null) {\n\n            $('.preloader-container').hide();\n        }\n    });\n\n/* functions to create and read cookies */\n    function createCookie(name, value, days) {\n        if (days) {\n            var date = new Date();\n            date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));\n            var expires = \"; expires=\" + date.toGMTString();\n        } else var expires = \"\";\n        document.cookie = name + \"=\" + value + expires + \"; path=/\";\n    }\n\n    function readCookie(name) {\n        var nameEQ = name + \"=\";\n        var ca = document.cookie.split(';');\n        for (var i = 0; i < ca.length; i++) {\n            var c = ca[i];\n            while (c.charAt(0) == ' ') c = c.substring(1, c.length);\n            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);\n        }\n        return null;\n    }\n\n    \n    /* 2 carousel */\n    $('#carousel-2').carousel({\n        interval: 6000,\n        wrap: true,\n        keyboard: true\n    });\n\n    $('#demo').carousel({\n        interval: 5000,\n        wrap: true,\n        keyboard: true\n    });\n</script>\n\n{% endblock script %}"
  },
  {
    "path": "templates/mainapp/layout.html",
    "content": "<!doctype html> \n{% load static %}\n<html lang=\"en\">\n\n<head>\n    <!-- Required meta tags -->\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0\" />\n    <!-- fonts -->\n    <link href=\"https://fonts.googleapis.com/css2?family=Sora&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Pacifico&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Lobster&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Pacifico&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Kalam&display=swap\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap\" rel=\"stylesheet\">\n\n    <!-- Bootstrap CSS -->\n    <link rel=\"stylesheet\" href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\" integrity=\"sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z\" crossorigin=\"anonymous\">\n    <!-- font awesome ion-->\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css\">\n    <!-- icon from google-->\n    <link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/icon?family=Material+Icons\">\n    <!-- Rating CSS -->\n    <!-- Reset styles -->\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/rateYo/2.3.2/jquery.rateyo.min.css\">\n    <!-- css -->\n    <link rel=\"stylesheet\" href=\"{% static 'mainapp/css/layout.css' %}\">\n    <!-- icon -->\n    <link rel=\"icon\" href=\"{% static 'mainapp/png/logo.webp' %}\" />\n    <title>\n        {% block title %} \n        {% endblock title %}\n    </title>\n    {% block head %} \n    {% endblock head %}\n</head>\n\n<body>\n    <header>\n        <a name='top'>\n            <div id=\"topheader\">\n                <nav class=\"navbar navbar-expand-md navbar-light\">\n                    <a class=\"navbar-brand\" href=\"/\"><img class=\"navbrandimg\" src=\"{% static 'mainapp/png/brand-img.webp' %}\"></a>\n                    <!-- Search Bar -->\n                    <div class=\"searchbar\" id=\"searchdropdown\">\n                        <input type=\"text\" id=\"bookName\" onkeyup=\"myFunction()\" placeholder=\"&#xf002    Search for books\" title=\"Type in a name\" style=\"outline: none;font-family:FontAwesome, kumbh sans;\">\n                        <div class=\"dropdown-content\" id=\"search-dropdown\">\n                        </div>\n                    </div>\n                    <!-- End Search Bar -->\n                    <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarNav\" aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n                    <span class=\"navbar-toggler-icon\"></span>\n                </button>\n                    </button>\n                    <div class=\"collapse navbar-collapse justify-content-end\" id=\"navbarNav\">\n                        <ul class=\"navbar-nav text-center\">\n                            <li class=\"nav-item\">\n                                <a class=\"nav-link\" href=\"{% url 'index' %}\">\n                                    <i class=\"nav-icon-s fa fa-home fa-2x\" aria-hidden=\"true\"></i><br>Home\n                                </a>\n                            </li>\n                            <li class=\"nav-item\">\n                                <a class=\"nav-link\" href=\"{% url 'explore_books' %}\">\n                                    <i class=\"nav-icon-s fa fa-globe fa-2x\" aria-hidden=\"true\"></i><br>Explore\n                                </a>\n                            </li>\n                            {% if user.is_authenticated %}\n                            <li class=\"nav-item\">\n                                <div class=\"dropdown\">\n                                    <a class=\"nav-link dropdown-toggle\" href=\"#\" id=\"navbarDropdownMenuLink\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n                                        <i class=\"nav-icon-s fa fa-bookmark fa-2x\" aria-hidden=\"true\"></i><br>Library\n                                    </a>\n                                    <div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"navbarDropdownMenuLink\">\n                                        <a class=\"dropdown-item\" href=\"{% url 'book_recommendations' %}\"><i class=\"material-icons\" style=\"vertical-align: -6px;\">auto_stories</i>&nbsp; Your Read</a>\n                                        <div class=\"dropdown-divider\"></div>\n                                        <a class=\"dropdown-item\" href=\"{% url 'to_read' %}\"><i class=\"material-icons\" style=\"vertical-align: -6px;\">push_pin</i>&nbsp; Saved for Later</a>\n                                        <div class=\"dropdown-divider\"></div>\n                                        <a class=\"dropdown-item\" href=\"{% url 'read_books' %}\"><i class=\"material-icons\" style=\"vertical-align: -6px;\">star</i>&nbsp; Rated Books</a>\n                                    </div>\n                                </div>\n                            </li>\n                            <li class=\"nav-item\">\n                                <a class=\"nav-link\" href=\"{% url 'account_logout' %}\">\n                                    <i class=\"nav-icon-s fa fa-sign-in fa-2x\" aria-hidden=\"true\"></i><br>Logout\n                                </a>\n                            </li>\n                            {% else %}\n                            <li class=\"nav-item\">\n                                <a class=\"nav-link\" href=\"{% url 'account_login' %}\">\n                                    <i class=\"nav-icon-s fa fa-sign-in fa-2x\" aria-hidden=\"true\"></i><br>Login\n                                </a>\n                            </li>\n                            <li class=\"nav-item\">\n                                <a class=\"nav-link\" href=\"{% url 'account_signup' %}\">\n                                    <i class=\"nav-icon-s fa fa-user fa-2x\" aria-hidden=\"true\"></i><br>Signup\n                                </a>\n                            </li>\n                            {% endif %}\n                        </ul>\n                    </div>\n                </nav>\n            </div>\n    </header>\n    <!-- Messages -->\n    {% for message in messages %}\n    <div class=\"alert {{ message.tags }} alert-dismissible text-center\" role=\"alert\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">\n            <span aria-hidden=\"true\">&times;</span>\n        </button> \n        {{ message }}\n    </div>\n    {% endfor %}\n    <!-- Bootstrap modal -->\n    <div class=\"modal fade\" id=\"bookModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"basicModal\" aria-hidden=\"true\">\n        <div class=\"modal-dialog\">\n            <div class=\"modal-content\">\n                <div class=\"modal-header\">\n                    <h4 class=\"modal-title\" id=\"booktitle\">Basic Modal</h4>\n                    <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                        <span aria-hidden=\"true\">&times;</span>\n                    </button>\n                </div>\n                <div class=\"modal-body\">\n                    <div class=\"row\">\n\n                        <div class=\"col-8\">\n                            <strong>Summary: </strong><br>\n                            <img id=\"loading\" src=\"{% static 'mainapp/gif/loading.gif' %}\">\n                            <p id=\"booksummary\">\n\n                            </p>\n                            <strong>Authors:</strong>\n                            <p id=\"bookauthors\">\n                            </p>\n\n                            <div id=\"bookrating\"></div>\n                        </div>\n\n                        <div class=\"col-4\">\n                            <img class=\"img-book\" src=\"\" id=\"bookimage\">\n                        </div>\n                        {% if user.is_authenticated %}\n                        <button id=\"save-book-button\" class=\"btn\">Save for Later</button> \n                        {%endif%}\n                    </div>\n                </div>\n                <div class=\"modal-footer\">\n                    <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\n                </div>\n            </div>\n        </div>\n    </div>\n    </div>\n\n    <a href='#top'>\n        <button id=\"topBtn\" title=\"Go to top\"><i class=\"fa fa-angle-up\"></i></button></a>\n    <!-- End boostrap modal -->\n    {% block main %} \n    {% endblock main %}\n\n    <footer class=\"mainfooter\" role=\"contentinfo\">\n\n        <div class=\"footer-content\">\n            <div class=\"footer-icon\">\n                <a href=\"mailto:kitabeaurkahaniya@gmail.com\" target=\"_blank\"><i class=\"fa fa-google fa-2x\"\n                        aria-hidden=\"true\"></i></a>\n                <a href=\"https://github.com/Praful932/Kitabe\"><i class=\"fa fa-github fa-2x\" aria-hidden=\"true\"></i></a>\n                <div class=\" copy pt-1\">\n                    <p class=\"text-center\">&copy; Copyright 2020 - <strong>Kitabe</strong> All rights reserved.</p>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js\"></script>\n    <script src=\"https://code.jquery.com/jquery-3.4.1.js\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js\" integrity=\"sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js\" integrity=\"sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js\"></script>\n    <!-- Rating JS -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/rateYo/2.3.2/jquery.rateyo.min.js\"></script>\n    <!-- Search Bar Script -->\n    <script>\n        // clear forms\n        function init() {\n            document.getElementById('bookName').value = \"\";\n        }\n        $(document).ready(init);\n\n        // get book summary\n        function getsummary(bookid) {\n            $.ajax({\n                data: {\n                    'bookid': bookid,\n                    'csrfmiddlewaretoken': Cookies.get('csrftoken')\n                },\n                dataType: 'json',\n                url: \"{% url 'summary_ajax' %}\",\n                type: 'POST',\n                success: function(response) {\n                    $('#loading').hide();\n                    $('#booksummary').text(response['booksummary']);\n                },\n                error: function(response) {\n                    console.log(response)\n                }\n            })\n        }\n        // display book boostrap modal when clicked\n        function openModal(obj) {\n            $('#booksummary').text(\"\");\n            $('#loading').show();\n            var bookid = obj.getAttribute('data-bookid');\n            var summary = getsummary(bookid);\n            var bookName = obj.innerHTML;\n            var authors = obj.getAttribute('data-authors');\n            var imageurl = obj.getAttribute('data-imageurl');\n            var averagerating = obj.getAttribute('data-averagerating');\n            $('#booktitle').text(bookName);\n            $('#bookauthors').text(authors);\n            $('#bookimage').attr('src', imageurl);\n            $(\"#bookrating\").rateYo({\n                rating: averagerating,\n                readOnly: true\n            });\n            $('#bookModal').modal('show');\n            $('#search-dropdown').empty();\n        }\n\n        // add search results\n        function displayResults(books) {\n            var searchdiv = document.getElementById('search-dropdown');\n            if (books.length == 0 && searchdiv.childElementCount == 0) {\n                var info = document.createElement('a');\n                info.innerHTML = 'No search results match your query';\n                info.setAttribute('href', '#');\n                searchdiv.appendChild(info);\n            } \n            else if (searchdiv.childElementCount <= 5) {\n                $('#search-dropdown').empty();\n                books.forEach(function(book, index, array) {\n                    var booktoadd = document.createElement('a');\n                    booktoadd.innerHTML = book['original_title'];\n                    booktoadd.setAttribute('data-bookid', book['book_id']);\n                    booktoadd.setAttribute('data-authors', book['authors']);\n                    booktoadd.setAttribute('data-imageurl', book['image_url']);\n                    booktoadd.setAttribute('data-averagerating', book['average_rating']);\n                    booktoadd.setAttribute('href', 'javascript:;');\n                    booktoadd.setAttribute('onclick', 'openModal(this)');\n                    searchdiv.appendChild(booktoadd);\n                });\n            }\n        }\n        // get search results\n\n        function myFunction() {\n            var input = document.getElementById('bookName');\n            var text = input.value.toLowerCase();\n            if (text != '') {\n                $.ajax({\n                    data: {\n                        'bookName': text,\n                        'csrfmiddlewaretoken': Cookies.get('csrftoken')\n                    },\n                    dataType: 'json',\n                    url: \"{% url 'search_ajax' %}\",\n                    type: 'POST',\n                    success: function(response) {\n                        displayResults(JSON.parse(response['top5_result']));\n                    },\n                    error: function(response) {\n                        console.log(response);\n                    }\n                });\n            } \n            else\n                $('#search-dropdown').empty();\n        }\n\n        $(\"#bookName\").focus(function() {\n                $('#search-dropdown').show();\n            }).blur(function() {\n                $('#search-dropdown').hide(150);\n            })\n            //for rating a book\n        $(function() {\n\n            $(\".rateYo\").rateYo({\n                rating: 0,\n                starWidth: \"20px\",\n                fullStar: true\n            });\n\n        });\n        // when hover over rate\n        function rateStart(obj) {\n            var bookid = obj.getAttribute('data-book-id');\n            $('#button-text-' + bookid).css('display', 'none');\n            $('#rate-' + bookid).css('display', 'block');\n        }\n        // onclick rate\n        function rateBook(obj) {\n            var bookid = obj.getAttribute('data-book-id');\n            var bookrating = $('#rate-' + bookid).rateYo('rating');\n            $('#rating-block-' + bookid).css('transition', 'background-color 2s ease');\n            $('#rating-block-' + bookid).css('background-color', '#29BF12');\n            console.log('#rating-block-' + bookid);\n            $.ajax({\n                data: {\n                    'bookid': bookid,\n                    'bookrating': bookrating,\n                    'csrfmiddlewaretoken': Cookies.get('csrftoken')\n                },\n                dataType: 'json',\n                url: \"{% url 'user_rate_book' %}\",\n                type: 'POST',\n                success: function(response) {\n\n                },\n                error: function(response) {\n                    console.log(response);\n                }\n            });\n        }\n        // when hover out rate\n        function finishRate(obj) {\n            var bookid = obj.getAttribute('data-book-id');\n            setTimeout(function() {\n                $('#rate-' + bookid).css('display', 'none');\n                $('#button-text-' + bookid).css('display', 'block');\n                $('#rating-block-' + bookid).css('transition', 'background-color 2s ease');\n                $('#rating-block-' + bookid).css('background-color', '#31c2cf');\n            }, 4000);\n        }\n\n        // Retrieve and display book details in Modal\n        function bookDetails(obj) {\n            var bookid = obj.getAttribute('data-book-id');\n            $.ajax({\n                data: {\n                    'bookid': bookid,\n                    'csrfmiddlewaretoken': Cookies.get('csrftoken')\n                },\n                dataType: 'json',\n                url: \"{% url 'book_details' %}\",\n                type: 'POST',\n                success: function(response) {\n                    var book_details = JSON.parse(response['book_details'])[0];\n                    $('#booksummary').text(\"\");\n                    $('#loading').show();\n                    var summary = getsummary(bookid);\n                    var bookName = book_details.original_title;\n                    var authors = book_details.authors;\n                    var imageurl = book_details.image_url;\n                    var averagerating = book_details.average_rating;\n                    $('#booktitle').text(bookName);\n                    $('#bookauthors').text(authors);\n                    $('#bookimage').attr('src', imageurl);\n                    $(\"#bookrating\").rateYo({\n                        rating: averagerating,\n                        readOnly: true\n                    });\n                    $('#bookModal').modal('show');\n                    $('#search-dropdown').empty();\n                    $('#save-book-button').on('click', function() {\n                        var bookid = obj.getAttribute('data-book-id');\n                        $('#save-book-button').css('transition', 'background-color 2s ease');\n                        $('#save-book-button').css('background-color', '#ffa007');\n                        $('#save-book-button').text('Saved !');\n                        setTimeout(function() {\n                            $('#save-book-button').text('Save for Later');\n                            $('#save-book-button').css('transition', 'background-color 2s ease');\n                            $('#save-book-button').css('background-color', '#ffc107');\n                        }, 3000);\n                        $.ajax({\n                            data: {\n                                'bookid': bookid,\n                                'csrfmiddlewaretoken': Cookies.get('csrftoken')\n                            },\n                            dataType: 'json',\n                            url: \"{% url 'save_book' %}\",\n                            type: 'POST',\n                            success: function(response) {\n\n                            },\n                            error: function(response) {\n                                console.log(response);\n                            }\n                        })\n                    })\n                },\n                error: function(response) {\n                    console.log(response);\n                }\n            });\n        }\n\n        document.body.addEventListener('scroll', ()=>{\n            if (document.body.scrollTop > 0 || document.documentElement.scrollTop > 0) {\n                document.getElementById(\"topBtn\").style.display = \"block\";\n            } else {\n                document.getElementById(\"topBtn\").style.display = \"none\";\n            }\n        });\n    </script>\n    <!-- End Search Bar Script -->\n    {% block script %} \n    {% endblock script %}\n</body>\n\n</html>"
  },
  {
    "path": "templates/mainapp/read.html",
    "content": "{% extends \"mainapp/layout.html\" %} \n{% load static %} \n{% block title %} \n Library \n{% endblock title %} \n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/read.css' %}\"> \n{% endblock head %} \n{% block main %}\n\n<h1 class=\"genre-head text-center pt-3 pb-3\">Rated Books({{num}})</h1>\n<div class=\"card-deck pb-3\" style=\"margin:0 auto;\">\n{% for book in page_obj %}\n\n<div class=\"card  mb-4\" style=\"max-width:600px;\">\n    <div class=\"row g-0\">\n        <div class=\"col-md-4 \">\n            <img class=\"img-fluid card-img\" src=\"{{book.image_url}}\" alt=\"book Card\">\n        </div>\n        <div class=\"text-center col-md-8\">\n            <div class=\"card-body\">\n                <h5 class=\" card-title\">{{book.original_title}}</h5>\n                <p class=\" card-text\"><i>by {{book.authors}}</i></p>\n                <div class=\" rating-block\" id=\"rating-block-{{ book.book_id }}\" onmouseover=\"rateStart(this)\" onclick='rateBook(this)' onmouseout='finishRate(this)' data-book-id=\"{{ book.book_id }}\">\n                    <div id=\"button-text-{{ book.book_id }}\">Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book\n                    </div>\n                    <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n                </div>\n                <a href=\"javascript:;\" onclick='bookDetails(this)' class=\" btn more-details\" data-book-id=\"{{ book.book_id }}\">More Details</a>\n            </div>\n        </div><br>\n    </div>\n</div>\n{% if forloop.counter|divisibleby:\"2\"  %}\n</div>\n<div class=\"card-deck pb-3\" style=\"margin:0 auto;\">\n    {% endif %}\n    {% endfor %}\n</div>\n<nav aria-label=\"...\">\n    <ul class=\"pagination justify-content-center\">\n        {% if page_obj.has_previous %}\n        <li class=\"page-item\"><a class=\"btn link\" href=\"?page={{ page_obj.previous_page_number }}\">&laquo; Previous</a>\n        </li>\n        {% endif %}\n\n        <li class=\"page-item \"><span class=\"btn des\">\n                Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}\n            </span></li>\n        {% if page_obj.has_next %}\n        <li class=\"page-item \"><a class=\"btn link\" href=\"?page={{ page_obj.next_page_number }}\"> Next &raquo;</a></li>\n        {% endif %}\n</nav>\n\n\n{% endblock main %}"
  },
  {
    "path": "templates/mainapp/recommendation.html",
    "content": "{% extends \"mainapp/layout.html\" %}\n{% load static %}\n\n{% block title  %}\nPersonalized Read\n{% endblock title %}\n\n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/recommendation.css' %}\">\n{% endblock head %}\n\n\n{% block main %}\n\n<h1 class=\"heading text-center pt-3 pb-3\">Personalized Recommendations</h1>\n\n\n<div class=\"card-deck pb-4 mb-5\" style=\"margin: 0 auto;\">\n    {% for book in books %}\n    <div class=\"book-cell\">\n        <div class=\"book-img\">\n            <img src=\"{{book.image_url}}\" alt=\"book-image\" class=\"book-photo cover-img\">\n        </div>\n        <div class=\"book-content\">\n            <div class=\"book-title\">{{book.original_title}}</div>\n            <div class=\"book-author\">by {{book.authors}}</div>\n            <span class=\"book-voters\">{{book.average_rating}} rating &#11088;</span>\n            <a href=\"javascript:;\" onclick='bookDetails(this)' class=\"btn more-details\"\n                data-book-id=\"{{ book.book_id }}\">More Details</a>\n            {% if user.is_authenticated %}\n            <div class='rating-block' id='rating-block-{{ book.book_id }}' onmouseover=\"rateStart(this)\"\n                onclick='rateBook(this)' onmouseout='finishRate(this)' data-book-id=\"{{ book.book_id }}\">\n                <div id='button-text-{{ book.book_id }}'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This\n                    Book</a>\n                </div>\n                <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n            </div>\n            {% else %}\n            <div class='rating-block btn' onclick=\"location.href='{% url 'account_signup' %}'\">\n                <div id='button-text'>Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book</a>\n                </div>\n            </div>\n            {% endif %}\n        </div>\n    </div>\n    {% if forloop.counter|divisibleby:\"3\"  %}\n</div>\n<div class=\"card-deck  pb-4  mb-5\" style=\"margin: 0 auto;\">\n    {% endif %}\n    {% endfor %}\n</div><!-- The final deck is closed here, outside the loop -->\n\n{% endblock main %}"
  },
  {
    "path": "templates/mainapp/saved_book.html",
    "content": "{% extends \"mainapp/layout.html\" %} \n{% load static %} \n{% block title %} \nLibrary \n{% endblock title %} \n{% block head %}\n<link rel=\"stylesheet\" href=\"{% static 'mainapp/css/saved_book.css' %}\">\n{% endblock head %} \n{% block main %}\n\n<h1 id=\"title\" class=\"genre-head text-center pt-3 pb-3\">Saved for Later({{num}})</h1>\n<div class=\"card-deck pt-3\">\n{% for book in page_obj %}\n<div id=\"book-{{book.book_id}}\" class=\"obsu\">\n    <div id=\"sekil\">\n        <img src=\"{{book.image_url}}\" alt=\"book Card\" />\n    </div>\n    <div id=\"book_name\">\n        {{book.original_title}}\n    </div>\n    <div id=\"author_name\">\n        by {{book.authors}}\n    </div>\n    <div id=\"content\">\n            <a href=\"javascript:;\" onclick='bookDetails(this)' class=\" btn more-details\" data-book-id=\"{{ book.book_id }}\">More Details</a>\n            <div class=\" rating-block\" id=\"rating-block-{{ book.book_id }}\" onmouseover=\"rateStart(this)\" onclick='rateBook(this)' onmouseout='finishRate(this)' data-book-id=\"{{ book.book_id }}\">\n                <div id=\"button-text-{{ book.book_id }}\">Rate <i class=\"fa fa-heart\" style=\"color:red\"></i> This Book\n                </div>\n                <div class='rateYo' id='rate-{{ book.book_id }}'></div>\n            </div><br>\n            <a href=\"javascript:;\" class=\"btn remove\" onclick='removeBook(this)' data-book-id=\"{{ book.book_id }}\">Remove from List</a>\n    </div>\n</div>\n{% if forloop.counter|divisibleby:\"2\"  %}\n</div>\n<div class=\"card-deck pt-3\">\n    {% endif %}\n    {% endfor %}\n</div>\n<nav aria-label=\"...\">\n    <ul class=\"pagination justify-content-center\">\n        {% if page_obj.has_previous %}\n        <li class=\"page-item\"><a class=\"btn link\" href=\"?page={{ page_obj.previous_page_number }}\">&laquo; Previous</a></li>\n        {% endif %}\n\n        <li class=\"page-item \"><span class=\"btn des\">\n                Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}\n            </span></li>\n        {% if page_obj.has_next %}\n        <li class=\"page-item \"><a class=\"btn link\" href=\"?page={{ page_obj.next_page_number }}\"> Next &raquo;</a></li>\n        {% endif %}\n</nav>\n\n\n{% endblock main %} \n{% block script %}\n<script>\n    function removeBook(obj) {\n        var bookid = obj.getAttribute('data-book-id');\n        console.log(bookid)\n        $.ajax({\n            data: {\n                'bookid': bookid,\n                'csrfmiddlewaretoken': Cookies.get('csrftoken')\n            },\n            dataType: 'json',\n            url: '{%url \"remove_saved_book\" %}',\n            type: 'POST',\n            success: function(response) {\n                $(\"#book-\" + bookid).remove();\n            },\n            error: function(response) {\n                console.log(response);\n            }\n        })\n\n    }\n</script>\n{% endblock script %}\n"
  }
]